diff --git a/.github/workflows/appstore-build-publish.yml b/.github/workflows/appstore-build-publish.yml index 236404c34707eb3ca411f29bf28f6127d37fe1df..fc04383c6b4f1a023a8d7a4f506f98ce162ad73a 100644 --- a/.github/workflows/appstore-build-publish.yml +++ b/.github/workflows/appstore-build-publish.yml @@ -20,6 +20,11 @@ jobs: if: ${{ github.repository_owner == 'nextcloud-releases' }} steps: + - name: Check actor permission + uses: skjnldsv/check-actor-permission@v2 + with: + require: write + - name: Set app env run: | # Split and keep last @@ -27,7 +32,7 @@ jobs: echo "APP_VERSION=${GITHUB_REF##*/}" >> $GITHUB_ENV - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: ${{ env.APP_NAME }} @@ -39,7 +44,7 @@ jobs: expression: "//info//dependencies//nextcloud/@min-version" - name: Read package.json node and npm engines version - uses: skjnldsv/read-package-engines-version-actions@v1.1 + uses: skjnldsv/read-package-engines-version-actions@v1.2 id: versions # Continue if no package.json continue-on-error: true @@ -51,7 +56,7 @@ jobs: - name: Set up node ${{ steps.versions.outputs.nodeVersion }} # Skip if no package.json if: ${{ steps.versions.outputs.nodeVersion }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ steps.versions.outputs.nodeVersion }} @@ -86,16 +91,29 @@ jobs: npm ci npm run build + - name: Check Krankerl config + id: krankerl + uses: andstor/file-existence-action@v1 + with: + files: ${{ env.APP_NAME }}/krankerl.toml + - name: Install Krankerl + if: steps.krankerl.outputs.files_exists == 'true' run: | wget https://github.com/ChristophWurst/krankerl/releases/download/v0.13.0/krankerl_0.13.0_amd64.deb sudo dpkg -i krankerl_0.13.0_amd64.deb - - name: Package ${{ env.APP_NAME }} ${{ env.APP_VERSION }} - # Try krankerl, fallback to makefile + - name: Package ${{ env.APP_NAME }} ${{ env.APP_VERSION }} with krankerl + if: steps.krankerl.outputs.files_exists == 'true' + run: | + cd ${{ env.APP_NAME }} + krankerl package + + - name: Package ${{ env.APP_NAME }} ${{ env.APP_VERSION }} with makefile + if: steps.krankerl.outputs.files_exists != 'true' run: | cd ${{ env.APP_NAME }} - krankerl package || make appstore + make appstore - name: Checkout server ${{ fromJSON(steps.appinfo.outputs.result).nextcloud.min-version }} continue-on-error: true @@ -106,7 +124,7 @@ jobs: unzip latest-$NCVERSION.zip - name: Checkout server master fallback - uses: actions/checkout@v2 + uses: actions/checkout@v3 if: ${{ steps.server-checkout.outcome != 'success' }} with: repository: nextcloud/server diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5edb010352f722c2413cfabe8ed5dcba463cac74..cfeec97c30842d1f327f0becb503d17846160b0c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ['7.2', '7.3', '7.4', '8.0'] + php-versions: ['7.3', '7.4', '8.0', '8.1', '8.2'] name: php${{ matrix.php-versions }} lint steps: - name: Checkout diff --git a/.github/workflows/php-test.yml b/.github/workflows/php-test.yml index 2fd76f2e8f0628396a16a3ee6a742bdd48aa7833..06b2cfa69755c948ed05ac86a9594f5d920fce25 100644 --- a/.github/workflows/php-test.yml +++ b/.github/workflows/php-test.yml @@ -16,10 +16,18 @@ jobs: include: - php-versions: '7.3' nextcloud-versions: 'stable20' + - php-versions: '7.4' + nextcloud-versions: 'stable24' + - php-versions: '8.0' + nextcloud-versions: 'stable24' + - php-versions: '8.1' + nextcloud-versions: 'stable24' - php-versions: '7.4' nextcloud-versions: 'master' - php-versions: '8.0' nextcloud-versions: 'master' + - php-versions: '8.1' + nextcloud-versions: 'master' name: php${{ matrix.php-versions }} on ${{ matrix.nextcloud-versions }} unit tests env: CI: true diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d272c59262d13b9574dab8af33c35b13f88c4cc2..8dcab0d80c44f468ce0fffb88b06233b628b4a3c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,10 +1,121 @@ -variables: - TO_PACKAGE: 'appinfo css img l10n lib templates js' - -include: - - project: "e/infra/ecloud/nextcloud-apps/ci-templates" - ref: main - file: "nc-apps-lint-build-frontend.yml" - - project: "e/infra/ecloud/nextcloud-apps/ci-templates" - ref: main - file: "nc-apps-deploy.yml" +stages: + - prepare + - test + - build + - deploy + +default: + image: node:15.14.0-stretch + before_script: + - npm set cache .npm + - npm install --prefer-offline --no-audit + cache: + key: ${CI_COMMIT_REF_SLUG} + paths: + - .npm/ + - node_modules/ + +install-node-deps: + stage: prepare + before_script: + - node --version + - npm --version + script: + - npm set cache .npm + - npm ci + only: + changes: + - package*.json + +lint: + stage: test + script: + - npm run lint + +build-frontend: + stage: build + script: + - npm run build + - mkdir -p dist/$CI_PROJECT_NAME + - cp -a appinfo css img l10n lib templates js dist/$CI_PROJECT_NAME + artifacts: + paths: + - dist/ + +.deploy:nextcloud-app: + image: ubuntu:focal + stage: deploy + dependencies: + - build-frontend + before_script: + - mkdir $HOME/.ssh + - chmod 700 ~/.ssh + - echo "$SSH_PRIVATE_KEY_ED" > $HOME/.ssh/id_ed25519 + - echo "$SSH_PUBKEY_ED" > $HOME/.ssh/id_ed25519.pub + - echo "$SSH_KNOWN_HOSTS" > $HOME/.ssh/known_hosts + - chmod 600 ~/.ssh/id_ed25519 + - chmod 644 ~/.ssh/known_hosts ~/.ssh/id_ed25519.pub + - apt-get update && apt-get install -y openssh-client rsync + script: + - echo "Deploying $CI_PROJECT_NAME of $CI_PROJECT_PATH_SLUG to $CI_ENVIRONMENT_NAME ($DEPLOYMENT_HOST)" + - rsync -avzh dist/ $SSH_USER@$DEPLOYMENT_HOST:/tmp/${CI_JOB_ID} + - ssh $SSH_USER@$DEPLOYMENT_HOST "sudo rsync -avzh --chown www-data:www-data --delete /tmp/${CI_JOB_ID}/$CI_PROJECT_NAME ${DEPLOYMENT_PATH}/html/custom_apps/ && rm -rf /tmp/${CI_JOB_ID} && sudo docker exec -u www-data $CONTAINER_NAME /var/www/html/occ app:enable $CI_PROJECT_NAME" + + +deploy:dev01: + extends: .deploy:nextcloud-app + only: + - master + - main + - production + - calendar-invitation-suggestions + environment: + name: dev/01 + url: https://dev.eeo.one/ + variables: + DEPLOYMENT_BRANCH: $CI_COMMIT_BRANCH + CONTAINER_NAME: dev01_nextcloud + +deploy:dev02: + extends: .deploy:nextcloud-app + when: manual + only: + - master + - main + - production + - calendar-invitation-suggestions + environment: + name: dev/02 + url: https://ecloud02.dev.eeo.one + variables: + DEPLOYMENT_BRANCH: $CI_COMMIT_BRANCH + CONTAINER_NAME: dev02_nextcloud + +deploy:dev03: + extends: .deploy:nextcloud-app + when: manual + only: + - master + - main + - production + - calendar-invitation-suggestions + environment: + name: dev/03 + url: https://ecloud03.dev.eeo.one + variables: + DEPLOYMENT_BRANCH: $CI_COMMIT_BRANCH + CONTAINER_NAME: dev03_nextcloud + +deploy:staging: + extends: .deploy:nextcloud-app + when: manual + only: + - master + - main + - production + environment: + name: staging/01 + url: https://eeo.one + variables: + DEPLOYMENT_BRANCH: $CI_COMMIT_BRANCH + CONTAINER_NAME: nextcloud diff --git a/CHANGELOG.md b/CHANGELOG.md index ed3fbc319a13234c2a867f89f1c9b526c96c3a80..a28722a1ee6354c70e5dd0bcb1e0f7c969527ab1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## 3.3.2 – 2022-06-02 +### Fixed +- Squished settings checkbox label + +## 3.3.1 – 2022-05-19 +### Fixed +- Free/busy view rendering +- Switching view modes +- Search term casing +- Sidebar scrolling + +## 3.3.0 - 2022-05-05 +### Added +- PHP8.1 compatability +- More uses for the popover modal +### Changed +- Rename "Download" to "Export" +### Fixed +- Crash on Chrome / Chromium for Simple Editor URL +- Invitation response button for readonly events + +## 3.2.2 - 2022-03-16 +### Fixed +- Email Validation for appointment booking +- Calendar resource attendance state display +- Alarm type selection + ## 3.2.1 - 2022-03-14 ### Fixed - Public Calendar Link diff --git a/appinfo/info.xml b/appinfo/info.xml index fa86498d369c54d9f127a347e625b507c8e62d9e..973a8ff875b7696275652388338e1728ec4224d7 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -15,7 +15,7 @@ * ☑️ Tasks! See tasks with a due date directly in the calendar * 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries. ]]> - 3.2.4 + 3.4.0-alpha.1 agpl Anna Larch Nextcloud Groupware Team @@ -32,8 +32,8 @@ https://raw.githubusercontent.com/nextcloud/calendar/main/screenshots/week_room_suggestion.png https://raw.githubusercontent.com/nextcloud/calendar/main/screenshots/week_sidebar.png - - + + OCA\Calendar\BackgroundJob\CleanUpOutdatedBookingsJob diff --git a/composer.json b/composer.json index 258cd074357549dc802e60d3fc88cb781746e6cc..ac4442b47ea138238e3a1e287ed645a30e7b3bbb 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "sort-packages": true }, "require": { - "php": "^7.2|^8.0" + "php": ">=7.3 <=8.1" }, "require-dev": { "christophwurst/nextcloud_testing": "0.12.4", diff --git a/composer.lock b/composer.lock index 78070441f044ea9d3ca6c7e1940a22f250787cc2..98316fef778f8f24d005843be66f6df081093fd8 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "12dfa8a3be938b8be321b00d47c337c2", + "content-hash": "bbde2eca49163a0f4852b85fb25d6040", "packages": [], "packages-dev": [ { @@ -4281,11 +4281,11 @@ "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": "^7.2|^8.0" + "php": ">=7.3 <=8.1" }, "platform-dev": [], "platform-overrides": { "php": "7.3" }, - "plugin-api-version": "2.1.0" + "plugin-api-version": "2.2.0" } diff --git a/css/app-modal.scss b/css/app-modal.scss index a0c6b207c6dbaaf9ae1343081b9afd123862f18d..9aacbff5ed241a5260489f0060fa907fa102bf65 100644 --- a/css/app-modal.scss +++ b/css/app-modal.scss @@ -21,12 +21,7 @@ */ .appointment-config-modal { - overflow: auto; padding: 2vw; - max-width: 900px; - - // Subtract padding twice from max height of modal - max-height: calc(90vh - 4vw); &__form { display: flex; diff --git a/css/app-navigation.scss b/css/app-navigation.scss index 151c916375f165210aa4a3d97a2346640f03456e..ede0733ced910499a621715757b822419a944da1 100644 --- a/css/app-navigation.scss +++ b/css/app-navigation.scss @@ -86,6 +86,7 @@ background-size: 10px; flex-grow: 0 !important; width: 34px; + padding: 0 6px !important; } } diff --git a/css/app-settings.scss b/css/app-settings.scss index 4debe208560c68e173b5a0706acacb0dedcb1862..cb36c2301d7c00747ea06c4b86ce5ce5b2ed31c3 100644 --- a/css/app-settings.scss +++ b/css/app-settings.scss @@ -26,9 +26,11 @@ .action-checkbox { line-height: unset !important; + white-space: unset !important; &__label::before { margin: 0 6px 3px 3px !important; + flex-shrink: 0; } } @@ -87,7 +89,6 @@ .shortcut-overview-modal { .modal-container { - min-width: 600px; display: flex !important; flex-wrap: wrap; padding: 0 12px 12px 12px !important; @@ -130,3 +131,10 @@ } } } + +// Fix the shortcut overview on smaller screens +@media screen and (max-width: 800px) { + .shortcut-overview-modal .modal-container .shortcut-section { + width: 100%; + } +} diff --git a/css/app-sidebar.scss b/css/app-sidebar.scss index 666f04334d2f233feb0a52279f85e70200f18e4a..d2cb1a6345f219fcac6113d0a1311fb089fc5858 100644 --- a/css/app-sidebar.scss +++ b/css/app-sidebar.scss @@ -108,6 +108,7 @@ justify-content: space-between; overflow: unset !important; max-height: unset !important; + height: auto !important; &__buttons { padding-top: 14px; diff --git a/l10n/af.js b/l10n/af.js index 100eec8800bcfb9b94d71d1bd4ea569664d84029..adf3913e83d522cde058b1002f0ad2082e2b8e44 100644 --- a/l10n/af.js +++ b/l10n/af.js @@ -6,49 +6,81 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Ons wil u graag inlig dat %s die kalender »%s« gepubliseer het.", "Open »%s«" : "Open »%s«", "Cheers!" : "Geluk!", + "Confirm" : "Bevestig", "Calendar" : "Kalender", "A Calendar app for Nextcloud" : "'n Kalendertoep vir Nextcloud", + "New event" : "Nuwe geleentheid", "Today" : "Vandag", "Day" : "Dag", "Week" : "Week", "Month" : "Maand", "List" : "Lys", + "Preview" : "Voorskou", + "Copy link" : "Kopieer skakel", + "Edit" : "Wysig", "Delete" : "Skrap", + "Export" : "Voer uit", "Share link" : "Deel skakel", "Share with users or groups" : "Deel met gebruikers of groepe", "No users or groups" : "Geen gebruikers of groepe", "can edit" : "kan wysig", "New calendar" : "Nuwe kalender", + "Name" : "Naam", + "Deleted" : "Geskrap", + "Restore" : "Herstel", + "Delete permanently" : "Skrap permanent", "Filename" : "Lêernaam", "Cancel" : "Kanselleer", "Automatic" : "Outomaties", + "List view" : "Lysaansig", "Actions" : "Aksies", "Show week numbers" : "Toon weeknommers", "Location" : "Ligging", "Description" : "Beskrywing", + "Duration" : "Duur", + "to" : "aan", + "Add" : "Voeg by", "Monday" : "Maandag", + "Tuesday" : "Dinsdag", + "Wednesday" : "Woensdag", + "Thursday" : "Donderdag", + "Friday" : "Vrydag", + "Saturday" : "Saterdag", + "Sunday" : "Sondag", "Save" : "Stoor", "Update" : "Werk by", + "Your email address" : "U e-posadres", "Notification" : "Kennisgewing", "Email" : "E-pos", + "Available" : "Beskikbaar", + "Not available" : "Onbeskikbaar", "Unknown" : "Onbekend", + "Accept" : "Aanvaar", "Tentative" : "Tentatief", "All day" : "Heeldag", "Repeat" : "Herhaal", "never" : "nooit", "after" : "na", + "available" : "beskikbaar", "More" : "Nog", "Global" : "Globaal", "Personal" : "Persoonlik", "Details" : "Details", "Attendees" : "Bywoners", + "Resources" : "Hulpbronne", "Close" : "Sluit", "Anniversary" : "Herdenking", "Week {number} of {year}" : "Week {number} van {year}", "Daily" : "Daagliks", "Weekly" : "Weekliks", + "Prev" : "Vorige", + "Next" : "Volgende", + "Other" : "Ander", + "Status" : "Status", "Confirmed" : "Bevestig", "Categories" : "Kategorieë", - "Mail" : "Pos" + "Commuting" : "In die verkeer", + "Mail" : "Pos", + "Birthday" : "Verjaardag" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/af.json b/l10n/af.json index b64dd5af48e4ec4da3ee6c5a3768b772bcb449d6..acef5140d9ff9941aa676853be5bbf391c95f03d 100644 --- a/l10n/af.json +++ b/l10n/af.json @@ -4,49 +4,81 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Ons wil u graag inlig dat %s die kalender »%s« gepubliseer het.", "Open »%s«" : "Open »%s«", "Cheers!" : "Geluk!", + "Confirm" : "Bevestig", "Calendar" : "Kalender", "A Calendar app for Nextcloud" : "'n Kalendertoep vir Nextcloud", + "New event" : "Nuwe geleentheid", "Today" : "Vandag", "Day" : "Dag", "Week" : "Week", "Month" : "Maand", "List" : "Lys", + "Preview" : "Voorskou", + "Copy link" : "Kopieer skakel", + "Edit" : "Wysig", "Delete" : "Skrap", + "Export" : "Voer uit", "Share link" : "Deel skakel", "Share with users or groups" : "Deel met gebruikers of groepe", "No users or groups" : "Geen gebruikers of groepe", "can edit" : "kan wysig", "New calendar" : "Nuwe kalender", + "Name" : "Naam", + "Deleted" : "Geskrap", + "Restore" : "Herstel", + "Delete permanently" : "Skrap permanent", "Filename" : "Lêernaam", "Cancel" : "Kanselleer", "Automatic" : "Outomaties", + "List view" : "Lysaansig", "Actions" : "Aksies", "Show week numbers" : "Toon weeknommers", "Location" : "Ligging", "Description" : "Beskrywing", + "Duration" : "Duur", + "to" : "aan", + "Add" : "Voeg by", "Monday" : "Maandag", + "Tuesday" : "Dinsdag", + "Wednesday" : "Woensdag", + "Thursday" : "Donderdag", + "Friday" : "Vrydag", + "Saturday" : "Saterdag", + "Sunday" : "Sondag", "Save" : "Stoor", "Update" : "Werk by", + "Your email address" : "U e-posadres", "Notification" : "Kennisgewing", "Email" : "E-pos", + "Available" : "Beskikbaar", + "Not available" : "Onbeskikbaar", "Unknown" : "Onbekend", + "Accept" : "Aanvaar", "Tentative" : "Tentatief", "All day" : "Heeldag", "Repeat" : "Herhaal", "never" : "nooit", "after" : "na", + "available" : "beskikbaar", "More" : "Nog", "Global" : "Globaal", "Personal" : "Persoonlik", "Details" : "Details", "Attendees" : "Bywoners", + "Resources" : "Hulpbronne", "Close" : "Sluit", "Anniversary" : "Herdenking", "Week {number} of {year}" : "Week {number} van {year}", "Daily" : "Daagliks", "Weekly" : "Weekliks", + "Prev" : "Vorige", + "Next" : "Volgende", + "Other" : "Ander", + "Status" : "Status", "Confirmed" : "Bevestig", "Categories" : "Kategorieë", - "Mail" : "Pos" + "Commuting" : "In die verkeer", + "Mail" : "Pos", + "Birthday" : "Verjaardag" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/ar.js b/l10n/ar.js index 0b1edaea1b81df893776d9c4c9965eec24e43cb3..437fa7a80812aaed7a44cb49abaf8b0203d02051 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -10,6 +10,9 @@ OC.L10N.register( "Open »%s«" : "فتح »%s«", "Cheers!" : "تحياتي!", "Upcoming events" : "الفعاليات القادمة", + "Appointments" : "المواعيد", + "Confirm" : "تأكيد", + "Date:" : "التاريخ:", "Calendar" : "التقويم", "A Calendar app for Nextcloud" : "تطبيق التقويم لـ نكست كلاود", "Previous day" : "اليوم الماضي", @@ -18,11 +21,15 @@ OC.L10N.register( "Next day" : "اليوم القادم", "Next week" : "الاسبوع القادم", "Next month" : "الشهر القادم", + "New event" : "حدث جديد", "Today" : "اليوم", "Day" : "يوم", "Week" : "أسبوع", "Month" : "شهر", "List" : "قائمة", + "Preview" : "معاينة", + "Copy link" : "انسخ الرابط", + "Edit" : "تعديل", "Delete" : "حذف ", "Untitled calendar" : "تقويم بدون اسم", "Edit name" : "تعديل الاسم", @@ -30,6 +37,7 @@ OC.L10N.register( "Edit color" : "تعديل اللون", "Saving color …" : "جاري حفظ اللون    …", "Copy private link" : "نسخ الرابط الخاص", + "Export" : "تصدير", "Unshare from me" : "أنت ألغيت المشاركة", "An error occurred, unable to change visibility of the calendar." : "حدث خطأ، لا يمكن تعديل وضعية ظهور التقويم.", "An error occurred, unable to delete the calendar." : "حدث خطأ، لا يمكن حذف التقويم.", @@ -73,6 +81,11 @@ OC.L10N.register( "Creating subscription …" : "جاري انشاء اشتراك  …", "An error occurred, unable to create the calendar." : "حدث خطأ، لا يمكن انشاء التقويم.", "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "يرجى ادخال رابط صحيح (يبدأ بـ https://, http://, webcals://, webcal://)", + "Name" : "الاسم", + "Deleted" : "تم حذفه", + "Restore" : "استعادة ", + "Delete permanently" : "حذف بشكل دائم", + "Empty trash bin" : "تفريغ سلة المهملات", "Could not update calendar order." : "لا يمكن تحديث ترتيب التقويم.", "Import calendars" : "استيراد التقويم", "Please select a calendar to import into …" : "يرجى اختيار تقويم للاستيراد اليه  …", @@ -92,6 +105,7 @@ OC.L10N.register( "Day view" : "مشاهدات يومية", "Week view" : "مشاهدات اسبوعية", "Month view" : "مشاهدات شهرية", + "List view" : "عرض على شكل قائمة", "Actions" : "الإجراءات", "Create event" : "انشاء فعالية", "Show shortcuts" : "انشاء اختصارات", @@ -105,13 +119,24 @@ OC.L10N.register( "Copy iOS/macOS CalDAV address" : "نسخ عنوان CalDAV لأجهزة الماك/الأيفون", "Show keyboard shortcuts" : "اظهار اختصارات لوحة المفاتيح", "Settings & import" : "الإعدادات و الإستيراد", + "No reminder" : "لا يوجد تذكير ", "CalDAV link copied to clipboard." : "تم نسخ CalDAV.", "CalDAV link could not be copied to clipboard." : "لا يمكن نسخ CalDAV.", "Location" : "الموقع", "Description" : "الوصف", + "Duration" : "المدة الزمنية", + "to" : "إلى", + "Add" : "إضافة", "Monday" : "الإثنين", + "Tuesday" : "الثلاثاء", + "Wednesday" : "الأربعاء", + "Thursday" : "الخميس", + "Friday" : "الجمعة", + "Saturday" : "السبت", + "Sunday" : "الأحد", "Save" : "حفظ", "Update" : "حدث", + "Your email address" : "عنوان بريديك الإلكتروني", "before at" : "قبل", "Notification" : "تنبيه", "Email" : "البريد الإلكتروني", @@ -126,18 +151,23 @@ OC.L10N.register( "at" : "في", "+ Add reminder" : "+ اضافة تذكير", "_second_::_seconds_" : ["ثانية","ثانية","ثانية","ثواني","ثواني","ثواني"], + "Available" : "متوفر", + "Not available" : "غير متوفر", "Availability of attendees, resources and rooms" : "متوفرين من الحضور والموارد والغرف", "Free" : "متوفر", "Busy (tentative)" : "مشغول (حاليا)", "Busy" : "مشغول", "Out of office" : "خارج المكتب", "Unknown" : "غير معروف", + "Accept" : "قبول", + "Decline" : "رفض", "Tentative" : "مؤقت", "Create Talk room for this event" : "انشاء غرفة تحدث لهذه الفعالية.", "Show busy times" : "اظهار الاوقات الممتلئة", "No attendees yet" : "لا يوجد حضور بعد", "Successfully appended link to talk room to description." : "تم اضافة الرابط في وصف غرفة التحدث بنجاح.", "Error creating Talk room" : "خطأ في انشاء غرفة تحدث", + "Send email" : "إرسال بريد", "Chairperson" : "الرئيس", "Required participant" : "مشارك مطلوب", "Optional participant" : "مشارك اختياري", @@ -242,12 +272,14 @@ OC.L10N.register( "Untitled event" : "فعالية بدون اسم", "Untitled task" : "مهمة بدون اسم", "Please ask your administrator to enable the Tasks App." : "تواصل مع مسؤول النظام لاستخدام تطبيق المهام.", + "Next" : "التالي", "%n more" : "%n المزيد", "No events to display" : "لا يوجد فعاليات", "No events" : "لا يوجد فعاليات", "Create a new event or change the visible time-range" : "اصنع فعالية جديدة أو قم بتغيير عامل الوقت", "It might have been deleted, or there was a typo in a link" : "لربما انحذفت، أو الحروف غير مطابقة في الرابط", "It might have been deleted, or there was a typo in the link" : "لربما انحذفت، أو الحروف غير مطابقة في الرابط", + "Other" : "آخر", "When shared show" : "عندما تظهر المشاركة", "When shared show full event" : "عرض الفعالية كاملة عند مشاركته", "When shared show only busy" : "عرض الازدحام عند مشاركة الفعالية", @@ -272,7 +304,9 @@ OC.L10N.register( "Meditation" : "تفكير", "Relaxing" : "لحظة راحة", "Relax" : "راحة", + "Commuting" : "تجوال", "Presentation" : "عرض تقديمي", + "Talk" : "التحدث", "Camping" : "تخيم", "Camp" : "مخيم", "Movie" : "فلم", @@ -309,6 +343,7 @@ OC.L10N.register( "Doctor" : "دكتور", "Health" : "صحة", "Dentist" : "طبيب أسنان", + "Hospital" : "مستشفى", "Interview" : "مقابلة", "Training" : "تدريب", "Practice" : "ممارسة", @@ -347,12 +382,14 @@ OC.L10N.register( "Party" : "حفله", "Celebration" : "احتفال", "Celebrate" : "احتفال", + "Birthday" : "عيد ميلاد", "Shopping" : "تسوق", "Skate" : "تزلج", "Skateboard" : "لوح تزلج", "Wine tasting" : "تذوق", "Golf" : "الجولف", "Dinner" : "عشاء", - "Lunch" : "غداء" + "Lunch" : "غداء", + "User not found" : "لم يتم العثور على المستخدم" }, "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"); diff --git a/l10n/ar.json b/l10n/ar.json index b4717c5a3fcfbf089c540f0c467405802008ec16..07176a50ad7f74a1c2652c7a5d7f6e3949b4e48f 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -8,6 +8,9 @@ "Open »%s«" : "فتح »%s«", "Cheers!" : "تحياتي!", "Upcoming events" : "الفعاليات القادمة", + "Appointments" : "المواعيد", + "Confirm" : "تأكيد", + "Date:" : "التاريخ:", "Calendar" : "التقويم", "A Calendar app for Nextcloud" : "تطبيق التقويم لـ نكست كلاود", "Previous day" : "اليوم الماضي", @@ -16,11 +19,15 @@ "Next day" : "اليوم القادم", "Next week" : "الاسبوع القادم", "Next month" : "الشهر القادم", + "New event" : "حدث جديد", "Today" : "اليوم", "Day" : "يوم", "Week" : "أسبوع", "Month" : "شهر", "List" : "قائمة", + "Preview" : "معاينة", + "Copy link" : "انسخ الرابط", + "Edit" : "تعديل", "Delete" : "حذف ", "Untitled calendar" : "تقويم بدون اسم", "Edit name" : "تعديل الاسم", @@ -28,6 +35,7 @@ "Edit color" : "تعديل اللون", "Saving color …" : "جاري حفظ اللون    …", "Copy private link" : "نسخ الرابط الخاص", + "Export" : "تصدير", "Unshare from me" : "أنت ألغيت المشاركة", "An error occurred, unable to change visibility of the calendar." : "حدث خطأ، لا يمكن تعديل وضعية ظهور التقويم.", "An error occurred, unable to delete the calendar." : "حدث خطأ، لا يمكن حذف التقويم.", @@ -71,6 +79,11 @@ "Creating subscription …" : "جاري انشاء اشتراك  …", "An error occurred, unable to create the calendar." : "حدث خطأ، لا يمكن انشاء التقويم.", "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "يرجى ادخال رابط صحيح (يبدأ بـ https://, http://, webcals://, webcal://)", + "Name" : "الاسم", + "Deleted" : "تم حذفه", + "Restore" : "استعادة ", + "Delete permanently" : "حذف بشكل دائم", + "Empty trash bin" : "تفريغ سلة المهملات", "Could not update calendar order." : "لا يمكن تحديث ترتيب التقويم.", "Import calendars" : "استيراد التقويم", "Please select a calendar to import into …" : "يرجى اختيار تقويم للاستيراد اليه  …", @@ -90,6 +103,7 @@ "Day view" : "مشاهدات يومية", "Week view" : "مشاهدات اسبوعية", "Month view" : "مشاهدات شهرية", + "List view" : "عرض على شكل قائمة", "Actions" : "الإجراءات", "Create event" : "انشاء فعالية", "Show shortcuts" : "انشاء اختصارات", @@ -103,13 +117,24 @@ "Copy iOS/macOS CalDAV address" : "نسخ عنوان CalDAV لأجهزة الماك/الأيفون", "Show keyboard shortcuts" : "اظهار اختصارات لوحة المفاتيح", "Settings & import" : "الإعدادات و الإستيراد", + "No reminder" : "لا يوجد تذكير ", "CalDAV link copied to clipboard." : "تم نسخ CalDAV.", "CalDAV link could not be copied to clipboard." : "لا يمكن نسخ CalDAV.", "Location" : "الموقع", "Description" : "الوصف", + "Duration" : "المدة الزمنية", + "to" : "إلى", + "Add" : "إضافة", "Monday" : "الإثنين", + "Tuesday" : "الثلاثاء", + "Wednesday" : "الأربعاء", + "Thursday" : "الخميس", + "Friday" : "الجمعة", + "Saturday" : "السبت", + "Sunday" : "الأحد", "Save" : "حفظ", "Update" : "حدث", + "Your email address" : "عنوان بريديك الإلكتروني", "before at" : "قبل", "Notification" : "تنبيه", "Email" : "البريد الإلكتروني", @@ -124,18 +149,23 @@ "at" : "في", "+ Add reminder" : "+ اضافة تذكير", "_second_::_seconds_" : ["ثانية","ثانية","ثانية","ثواني","ثواني","ثواني"], + "Available" : "متوفر", + "Not available" : "غير متوفر", "Availability of attendees, resources and rooms" : "متوفرين من الحضور والموارد والغرف", "Free" : "متوفر", "Busy (tentative)" : "مشغول (حاليا)", "Busy" : "مشغول", "Out of office" : "خارج المكتب", "Unknown" : "غير معروف", + "Accept" : "قبول", + "Decline" : "رفض", "Tentative" : "مؤقت", "Create Talk room for this event" : "انشاء غرفة تحدث لهذه الفعالية.", "Show busy times" : "اظهار الاوقات الممتلئة", "No attendees yet" : "لا يوجد حضور بعد", "Successfully appended link to talk room to description." : "تم اضافة الرابط في وصف غرفة التحدث بنجاح.", "Error creating Talk room" : "خطأ في انشاء غرفة تحدث", + "Send email" : "إرسال بريد", "Chairperson" : "الرئيس", "Required participant" : "مشارك مطلوب", "Optional participant" : "مشارك اختياري", @@ -240,12 +270,14 @@ "Untitled event" : "فعالية بدون اسم", "Untitled task" : "مهمة بدون اسم", "Please ask your administrator to enable the Tasks App." : "تواصل مع مسؤول النظام لاستخدام تطبيق المهام.", + "Next" : "التالي", "%n more" : "%n المزيد", "No events to display" : "لا يوجد فعاليات", "No events" : "لا يوجد فعاليات", "Create a new event or change the visible time-range" : "اصنع فعالية جديدة أو قم بتغيير عامل الوقت", "It might have been deleted, or there was a typo in a link" : "لربما انحذفت، أو الحروف غير مطابقة في الرابط", "It might have been deleted, or there was a typo in the link" : "لربما انحذفت، أو الحروف غير مطابقة في الرابط", + "Other" : "آخر", "When shared show" : "عندما تظهر المشاركة", "When shared show full event" : "عرض الفعالية كاملة عند مشاركته", "When shared show only busy" : "عرض الازدحام عند مشاركة الفعالية", @@ -270,7 +302,9 @@ "Meditation" : "تفكير", "Relaxing" : "لحظة راحة", "Relax" : "راحة", + "Commuting" : "تجوال", "Presentation" : "عرض تقديمي", + "Talk" : "التحدث", "Camping" : "تخيم", "Camp" : "مخيم", "Movie" : "فلم", @@ -307,6 +341,7 @@ "Doctor" : "دكتور", "Health" : "صحة", "Dentist" : "طبيب أسنان", + "Hospital" : "مستشفى", "Interview" : "مقابلة", "Training" : "تدريب", "Practice" : "ممارسة", @@ -345,12 +380,14 @@ "Party" : "حفله", "Celebration" : "احتفال", "Celebrate" : "احتفال", + "Birthday" : "عيد ميلاد", "Shopping" : "تسوق", "Skate" : "تزلج", "Skateboard" : "لوح تزلج", "Wine tasting" : "تذوق", "Golf" : "الجولف", "Dinner" : "عشاء", - "Lunch" : "غداء" + "Lunch" : "غداء", + "User not found" : "لم يتم العثور على المستخدم" },"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;" } \ No newline at end of file diff --git a/l10n/ast.js b/l10n/ast.js index 7dc3c883db123b3036365366ffc6189047b610e1..3187500b4e2d143928f0af4538de995bffe9e70b 100644 --- a/l10n/ast.js +++ b/l10n/ast.js @@ -5,45 +5,72 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Quiximos informate de que %s espublizó'l calendariu «%s»", "Open »%s«" : "Abrir «%s»", "Cheers!" : "¡Salú!", + "Confirm" : "Confirmar", "Calendar" : "Calendariu", + "New event" : "Eventu nuevu", "Today" : "Güei", "Day" : "Día", "Week" : "Selmana", "Month" : "Mes", + "Preview" : "Previsualizar", + "Copy link" : "Copiar enllaz", + "Edit" : "Editar", "Delete" : "Desaniciar", + "Export" : "Esportar", "Share link" : "Share link", "Share with users or groups" : "Compartir con usuarios y grupos", "can edit" : "pue editar", "New calendar" : "Calendariu nuevu", + "Name" : "Nome", + "Deleted" : "Desanicióse", + "Restore" : "Respaldar", + "Delete permanently" : "Desaniciar dafechu", "Filename" : "Nome de ficheru", "Cancel" : "Encaboxar", "Automatic" : "Automáticu", + "List view" : "Vista de llista", "Actions" : "Aiciones", "Show week numbers" : "Amosar númberos de la selmana", "Settings & import" : "Axustes ya importación", "Location" : "Llocalización", "Description" : "Descripción", + "to" : "hasta", + "Add" : "Amestar", "Monday" : "Llunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Xueves", + "Friday" : "Vienres", + "Saturday" : "Sábadu", + "Sunday" : "Domingu", "Save" : "Guardar", "Update" : "Anovar", + "Your email address" : "Direición de corréu-e", "Notification" : "Avisu", "Email" : "email", "Unknown" : "Desconozse", + "Accept" : "Aceutar", + "Decline" : "Refugar", "Tentative" : "Tentativa", + "Send email" : "Unviar mensaxe", "All day" : "Tol día", "Repeat" : "Repitir", "never" : "enxamás", "after" : "dempués", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Zarrar", "Anniversary" : "Aniversariu", "Week {number} of {year}" : "Selmana {number} del {year}", "Daily" : "Caldía", "Weekly" : "Selmanalmente", + "Next" : "Siguiente", + "Other" : "Otru", "When shared show full event" : "Amosar l'eventu completu al compartir", "When shared show only busy" : "Amosar namás ocupáu al compartir", "When shared hide this event" : "Anubrir l'eventu al compartir", @@ -52,6 +79,7 @@ OC.L10N.register( "Categories" : "Estayes", "Presentation" : "Presentación", "Office" : "Oficina", - "Mail" : "Corréu" + "Mail" : "Corréu", + "Birthday" : "Data de nacencia" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/ast.json b/l10n/ast.json index 2026f5d40d0b7738dced988a191554b94dacdd8d..43ed519a789ea46cb0470930ec2b8a5f66e0d1b5 100644 --- a/l10n/ast.json +++ b/l10n/ast.json @@ -3,45 +3,72 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Quiximos informate de que %s espublizó'l calendariu «%s»", "Open »%s«" : "Abrir «%s»", "Cheers!" : "¡Salú!", + "Confirm" : "Confirmar", "Calendar" : "Calendariu", + "New event" : "Eventu nuevu", "Today" : "Güei", "Day" : "Día", "Week" : "Selmana", "Month" : "Mes", + "Preview" : "Previsualizar", + "Copy link" : "Copiar enllaz", + "Edit" : "Editar", "Delete" : "Desaniciar", + "Export" : "Esportar", "Share link" : "Share link", "Share with users or groups" : "Compartir con usuarios y grupos", "can edit" : "pue editar", "New calendar" : "Calendariu nuevu", + "Name" : "Nome", + "Deleted" : "Desanicióse", + "Restore" : "Respaldar", + "Delete permanently" : "Desaniciar dafechu", "Filename" : "Nome de ficheru", "Cancel" : "Encaboxar", "Automatic" : "Automáticu", + "List view" : "Vista de llista", "Actions" : "Aiciones", "Show week numbers" : "Amosar númberos de la selmana", "Settings & import" : "Axustes ya importación", "Location" : "Llocalización", "Description" : "Descripción", + "to" : "hasta", + "Add" : "Amestar", "Monday" : "Llunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Xueves", + "Friday" : "Vienres", + "Saturday" : "Sábadu", + "Sunday" : "Domingu", "Save" : "Guardar", "Update" : "Anovar", + "Your email address" : "Direición de corréu-e", "Notification" : "Avisu", "Email" : "email", "Unknown" : "Desconozse", + "Accept" : "Aceutar", + "Decline" : "Refugar", "Tentative" : "Tentativa", + "Send email" : "Unviar mensaxe", "All day" : "Tol día", "Repeat" : "Repitir", "never" : "enxamás", "after" : "dempués", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Zarrar", "Anniversary" : "Aniversariu", "Week {number} of {year}" : "Selmana {number} del {year}", "Daily" : "Caldía", "Weekly" : "Selmanalmente", + "Next" : "Siguiente", + "Other" : "Otru", "When shared show full event" : "Amosar l'eventu completu al compartir", "When shared show only busy" : "Amosar namás ocupáu al compartir", "When shared hide this event" : "Anubrir l'eventu al compartir", @@ -50,6 +77,7 @@ "Categories" : "Estayes", "Presentation" : "Presentación", "Office" : "Oficina", - "Mail" : "Corréu" + "Mail" : "Corréu", + "Birthday" : "Data de nacencia" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/az.js b/l10n/az.js new file mode 100644 index 0000000000000000000000000000000000000000..213733898d354bde1d57c8c1e0b80e5b47bd0d06 --- /dev/null +++ b/l10n/az.js @@ -0,0 +1,54 @@ +OC.L10N.register( + "calendar", + { + "Cheers!" : "Şərəfə!", + "Calendar" : "Təqvim", + "Today" : "Bu gün", + "Day" : "Gün", + "Week" : "Həftə", + "Month" : "Ay", + "Copy link" : "linki nüsxələ", + "Edit" : "Dəyişiklik et", + "Delete" : "Sil", + "Export" : "Çıxarış", + "Share link" : "Linki yayımla", + "can edit" : "dəyişmək olar", + "New calendar" : "Yeni təqvim", + "Name" : "Ad", + "Deleted" : "Silinib", + "Restore" : "Geri qaytar", + "Delete permanently" : "Həmişəlik sil", + "Cancel" : "Dayandır", + "Automatic" : "Avtomatik", + "Actions" : "İşlər", + "Location" : "Yerləşdiyiniz ünvan", + "Description" : "Açıqlanma", + "to" : "doğru", + "Add" : "Əlavə etmək", + "Monday" : "Bazar ertəsi", + "Tuesday" : "Çərşənbə axşamı", + "Wednesday" : "Çərşənbə", + "Thursday" : "Cümə axşamı", + "Friday" : "Cümə", + "Saturday" : "Şənbə", + "Sunday" : "Bazar", + "Save" : "Saxla", + "Update" : "Yenilənmə", + "Your email address" : "Sizin email ünvanı", + "Email" : "Email", + "Send email" : "Email yolla", + "Repeat" : "Təkrar", + "never" : "heç vaxt", + "More" : "Daha da", + "Personal" : "Şəxsi", + "Details" : "Detallar", + "Attendees" : "İştirakçılar", + "Close" : "Bağla", + "Daily" : "Günlük", + "Weekly" : "Həftəlik", + "Next" : "Növbəti", + "Other" : "Digər", + "Mail" : "Məktub", + "Birthday" : "Ad günü" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/l10n/az.json b/l10n/az.json new file mode 100644 index 0000000000000000000000000000000000000000..84c2802e6e92b2f3799960bd0d07bb01c1f2183d --- /dev/null +++ b/l10n/az.json @@ -0,0 +1,52 @@ +{ "translations": { + "Cheers!" : "Şərəfə!", + "Calendar" : "Təqvim", + "Today" : "Bu gün", + "Day" : "Gün", + "Week" : "Həftə", + "Month" : "Ay", + "Copy link" : "linki nüsxələ", + "Edit" : "Dəyişiklik et", + "Delete" : "Sil", + "Export" : "Çıxarış", + "Share link" : "Linki yayımla", + "can edit" : "dəyişmək olar", + "New calendar" : "Yeni təqvim", + "Name" : "Ad", + "Deleted" : "Silinib", + "Restore" : "Geri qaytar", + "Delete permanently" : "Həmişəlik sil", + "Cancel" : "Dayandır", + "Automatic" : "Avtomatik", + "Actions" : "İşlər", + "Location" : "Yerləşdiyiniz ünvan", + "Description" : "Açıqlanma", + "to" : "doğru", + "Add" : "Əlavə etmək", + "Monday" : "Bazar ertəsi", + "Tuesday" : "Çərşənbə axşamı", + "Wednesday" : "Çərşənbə", + "Thursday" : "Cümə axşamı", + "Friday" : "Cümə", + "Saturday" : "Şənbə", + "Sunday" : "Bazar", + "Save" : "Saxla", + "Update" : "Yenilənmə", + "Your email address" : "Sizin email ünvanı", + "Email" : "Email", + "Send email" : "Email yolla", + "Repeat" : "Təkrar", + "never" : "heç vaxt", + "More" : "Daha da", + "Personal" : "Şəxsi", + "Details" : "Detallar", + "Attendees" : "İştirakçılar", + "Close" : "Bağla", + "Daily" : "Günlük", + "Weekly" : "Həftəlik", + "Next" : "Növbəti", + "Other" : "Digər", + "Mail" : "Məktub", + "Birthday" : "Ad günü" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/l10n/bg.js b/l10n/bg.js index acd95e9b3939198095d170e4fdfdd6dc1c276628..f72e2d876f30e0d09e185273892c7a2d2b32f90f 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -14,6 +14,9 @@ OC.L10N.register( "Appointments" : "Срещи", "Schedule appointment \"%s\"" : "Насрочване на среща „%s“", "Schedule an appointment" : "Насрочване на среща", + "Prepare for %s" : "Подгответе се за %s", + "Follow up for %s" : "Последващо действие за %s", + "Your appointment \"%s\" needs confirmation" : "Вашата среща „%s“ се нуждае от потвърждение", "Dear %s, please confirm your booking" : "Уважаеми %s, моля, потвърдете резервацията си", "Confirm" : "Потвърдете", "This confirmation link expires in %s hours." : "Тази връзка за потвърждение изтича след %s часа.", @@ -31,6 +34,7 @@ OC.L10N.register( "Next day" : "Утре", "Next week" : "Следваща седмица", "Next month" : "Следващия месец", + "New event" : "Ново събитие", "Today" : "Днес", "Day" : "Ден", "Week" : "Седмица", @@ -40,13 +44,18 @@ OC.L10N.register( "Copy link" : "Копиране на връзката", "Edit" : "Редакция", "Delete" : "Изтриване", + "Appointment link was copied to clipboard" : "Връзката за среща е копирана в клипборда", + "Appointment link could not be copied to clipboard" : "Връзката за среща не можа да бъде копирана в клипборда", "Add new" : "Добави нов", "Untitled calendar" : "Нов календар", + "Disable calendar" : "Деактивиране на календар", + "Enable calendar" : "Активиране на календар", "Edit name" : "Редактирай името", "Saving name …" : "Запазване...", "Edit color" : "Смени цвета", "Saving color …" : "Запазване на цвета ...", "Copy private link" : "Копирай скритата връзка", + "Export" : "Експорт /изнасям/", "Unshare from me" : "Прекратяване на споделянето от мен", "An error occurred, unable to change visibility of the calendar." : "Възникна грешка, невъзможност да се промени видимостта на календара.", "An error occurred, unable to delete the calendar." : "Възникна грешка, невъзможност да се изтрие календара.", @@ -86,6 +95,7 @@ OC.L10N.register( "An error occurred, unable to change the permission of the share." : "Възникна грешка, невъзможност да се промени разрешението за споделяне ", "+ New calendar" : "Нов календар", "New calendar" : "Нов календар", + "Name for new calendar" : "Име за нов календар", "Creating calendar …" : "Създаване на календар", "New calendar with task list" : "Нов календар със списък със задачи", "New subscription from link (read-only)" : "Нов абонамент от връзка (само за четене)", @@ -101,6 +111,7 @@ OC.L10N.register( "Delete permanently" : "Изтрий завинаги", "Empty trash bin" : "Изпразване на кошчето за боклук", "Untitled element" : "Неозаглавен елемент", + "Unknown calendar" : "Неизвестен календар", "Could not load deleted calendars and objects" : "Не можаха да се заредят изтритите календари и обекти", "Could not restore calendar or event" : "Не можа да се възстанови календар или събитие", "Do you really want to empty the trash bin?" : "Наистина ли искате да изпразните кошчето за боклук?", @@ -116,6 +127,7 @@ OC.L10N.register( "{filename} could not be parsed" : "{filename} не можа да бъде анализиран", "No valid files found, aborting import" : "Не са намерени валидни файлове, прекъсване на импортирането", "Import partially failed. Imported {accepted} out of {total}." : "Импортирането е частично неуспешно. Импортирани {accepted} от {total}.", + "_Successfully imported %n event_::_Successfully imported %n events_" : ["Успешно импортиране на %n събития","Успешно импортиране на %n събития"], "Automatic" : "Автоматично", "Automatic ({detected})" : "Автоматично (detected})", "New setting was not saved successfully." : " Неуспешно запазване на новата настройка.", @@ -150,7 +162,13 @@ OC.L10N.register( "CalDAV link could not be copied to clipboard." : "CalDAV връзката не може да бъде копирана в клипборда", "Appointment was created successfully" : "Срещата е създадена успешно", "Appointment was updated successfully" : "Срещата е актуализирана успешно", + "_{duration} minute_::_{duration} minutes_" : ["{duration} минути","{duration} минути"], "0 minutes" : "0 минути", + "_{duration} hour_::_{duration} hours_" : ["{duration} часа","{duration} минути"], + "_{duration} day_::_{duration} days_" : ["{duration} дни","{duration} дни"], + "_{duration} week_::_{duration} weeks_" : ["{duration} минути","{duration} седмици"], + "_{duration} month_::_{duration} months_" : ["{duration} месеца","{duration} минути"], + "_{duration} year_::_{duration} years_" : ["{duration} години","{duration} минути"], "To configure appointments, add your email address in personal settings." : "За конфигуриране на срещи, добавете своя имейл адрес в личните настройки.", "Public – shown on the profile page" : "Публичен – показва се на страницата на профила", "Private – only accessible via secret link" : "Частен – достъпен само чрез тайна връзка", @@ -159,6 +177,7 @@ OC.L10N.register( "Visibility" : "Видимост", "Duration" : "Продължителност", "Increments" : "Стъпки", + "Additional calendars to check for conflicts" : "Допълнителни календари за проверка за конфликти", "Pick time ranges where appointments are allowed" : "Избор на периоди от време, в които срещите са разрешени", "to" : "до", "Delete slot" : "Изтриване на слот", @@ -177,11 +196,11 @@ OC.L10N.register( "Planning restrictions" : "Ограничения за планиране", "Minimum time before next available slot" : "Минимално време преди следващия наличен слот", "Max slots per day" : "Максимален брой слотове на ден", + "Limit how far in the future appointments can be booked" : "Ограничение, колко далеч в бъдеще могат да бъдат резервирани срещи", "Create appointment" : "Създаване на среща", "Edit appointment" : "Редактиране на среща", "Save" : "Запазване", "Update" : "Обновяване", - "Your appointment is booked" : "Срещата ви е резервирана", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Изпратихме ви имейл с подробности. Моля, потвърдете вашата среща, като използвате връзката в имейла. Можете да затворите тази страница сега.", "Your name" : "Вашето име", "Your email address" : "Вашият имейл адрес", @@ -208,7 +227,18 @@ OC.L10N.register( "_hour_::_hours_" : ["час","часове"], "_day_::_days_" : ["ден","дни"], "_week_::_weeks_" : ["седмица","седмици"], + "Suggested" : "Препоръчан", "Available" : "Наличен.", + "Not available" : "Не е наличен", + "Checking availability" : "Проверка на наличността", + "Invitation accepted" : "Поканата е приета", + "Accepted {organizerName}'s invitation" : "Поканата на {organizerName} е приета", + "Invitation declined" : "Поканата е отхвърлена", + "Declined {organizerName}'s invitation" : "Поканата на {organizerName} е отхвърлена", + "Invitation is delegated" : "Поканата е делегирана", + "Participation marked as tentative" : "Участието е отбелязано като условно", + "Invitation sent" : "Изпратена е покана", + "Has not responded to {organizerName}'s invitation yet" : "Все още няма отговор на поканата на {organizerName}", "Availability of attendees, resources and rooms" : "Наличие на присъстващи, ресурси и стаи", "{organizer} (organizer)" : "{organizer} (organizer)", "Free" : " Свободни", @@ -216,7 +246,15 @@ OC.L10N.register( "Busy" : "Зает", "Out of office" : "Извън офиса", "Unknown" : "Непознат", + "Accept" : "Приемам", + "Decline" : "Отхвърляне", "Tentative" : "Несигурно", + "The invitation has been accepted successfully." : "Поканата е приета успешно.", + "Failed to accept the invitation." : "Неуспешно приемане на поканата.", + "The invitation has been declined successfully." : "Поканата е отхвърлена успешно.", + "Failed to decline the invitation." : "Неуспешно отхвърляне на поканата.", + "Your participation has been marked as tentative." : "Участието ви е отбелязано като условно.", + "Failed to set the participation status to tentative." : "Неуспешно задаване на състоянието за участие на условно.", "Create Talk room for this event" : "Създаване на стая за разговори за това събитие", "Show busy times" : "Показване на натоварените часове", "No attendees yet" : "Все още няма участващи", @@ -332,6 +370,7 @@ OC.L10N.register( "Close" : "Затвори", "Show more details" : "Показване на повече подробности", "Subscribe to {name}" : "Абониране за {name}", + "Export {name}" : "Експортиране /изнасям/ на {name}", "Anniversary" : "Годишнина", "Appointment" : "Среща", "Business" : "Бизнес", @@ -419,14 +458,43 @@ OC.L10N.register( "Meditation" : "Медитация", "Relaxing" : "Релаксиращ", "Relax" : "Почивка", + "Break" : "Прекъсване", + "Commute" : "Замяна", + "Commuting" : "Работно пътуване", + "Shuttle" : "Трансфер", + "Invoice" : "Фактура", + "Finance" : "Финанси", + "Bank" : "Банка", + "Money" : "Пари", + "Wedding" : "Сватба", + "Dog" : "Куче", + "Concert" : "Концерт", + "Festival" : "Фестивал", + "Theater" : "Театър", + "Theatre" : "Театър", "Presentation" : "Презентация", + "Talk" : "Разговор", + "Speech" : "Реч", + "Deadline" : "Краен срок", + "Submission" : " Подаване", + "Reporting" : "Докладване", "Camping" : "Къмпинг", "Camp" : "Лагер", + "Election" : "Избори", + "Voting" : "Гласуване", + "Vote" : "Глас", + "Barbecue" : "Барбекю", + "Barbeque" : "Барбекю", + "Garden" : "Градина", + "Farm" : "Ферма", "Movie" : "Филм", "Cinema" : "Кино", "Graduation" : "Дипломиране", "Brainstorm" : "Мозъчна атака", "Review" : "Преглед", + "Audit" : "Одит", + "Inspection" : "Проверка", + "Proofreading" : "Корекция", "Baseball" : "Бейзбол", "Meet" : "Среща", "Planning" : "Планиране", @@ -439,8 +507,10 @@ OC.L10N.register( "Football" : "Футбол", "Gaming" : "Игри", "Drive" : "Шофиране", + "Driving" : "Шофиране", "Bicycle" : "Велосипед", "Cycle" : "Колело", + "Cycling" : "Колоездене", "Biking" : "Колоездене", "Bike" : "Велосипед", "Podcast" : "Подкаст", @@ -453,10 +523,12 @@ OC.L10N.register( "Museum" : "Музей", "Pilates" : "Пилатес", "Park" : "Парк", + "Walk" : "Разходка", "Studying" : "Изучаване", "Doctor" : "Доктор", "Health" : "Здраве", "Dentist" : "Зъболекар", + "Hospital" : "Болница", "Interview" : "Интервю", "Training" : "Обучение", "Practice" : "Практика", @@ -467,6 +539,7 @@ OC.L10N.register( "Gym" : "Фитнес", "Barber" : "Бръснар", "Haircut" : "Подстрижка", + "Hairdresser" : "Фризьор", "Exam" : "Изпит", "Written test" : "Писмен тест", "Oral test" : "Устен изпит", @@ -488,16 +561,20 @@ OC.L10N.register( "Conference" : "Конференция", "Pizza" : "Пица", "Travelling" : "Пътуване", + "Trip" : "Пътуване", "Journey" : "Пътешествие", - "Collaborate" : "Сътрудействие", + "Collaborate" : "Сътрудничество", "Pair" : "Двойка", "Lecture" : "Лекция", "Seminar" : "Семинар", + "Teaching" : "Преподаване", "Photograph" : "Фотограф", "Party" : "Купон", "Celebration" : "Празненство", "Celebrate" : "Празнуване", + "Birthday" : "Рожден ден", "Shopping" : "Пазаруване", + "Groceries" : "Бакалия", "Skate" : "Каране на кънки", "Skateboard" : "Скейтборд", "Wine tasting" : "Дегустация на вино", diff --git a/l10n/bg.json b/l10n/bg.json index 94412c269f42e654aaa373ce9bad6e0bc6c39d11..f27cadbcddff8a37b7851713b46e0d082517e79d 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -12,6 +12,9 @@ "Appointments" : "Срещи", "Schedule appointment \"%s\"" : "Насрочване на среща „%s“", "Schedule an appointment" : "Насрочване на среща", + "Prepare for %s" : "Подгответе се за %s", + "Follow up for %s" : "Последващо действие за %s", + "Your appointment \"%s\" needs confirmation" : "Вашата среща „%s“ се нуждае от потвърждение", "Dear %s, please confirm your booking" : "Уважаеми %s, моля, потвърдете резервацията си", "Confirm" : "Потвърдете", "This confirmation link expires in %s hours." : "Тази връзка за потвърждение изтича след %s часа.", @@ -29,6 +32,7 @@ "Next day" : "Утре", "Next week" : "Следваща седмица", "Next month" : "Следващия месец", + "New event" : "Ново събитие", "Today" : "Днес", "Day" : "Ден", "Week" : "Седмица", @@ -38,13 +42,18 @@ "Copy link" : "Копиране на връзката", "Edit" : "Редакция", "Delete" : "Изтриване", + "Appointment link was copied to clipboard" : "Връзката за среща е копирана в клипборда", + "Appointment link could not be copied to clipboard" : "Връзката за среща не можа да бъде копирана в клипборда", "Add new" : "Добави нов", "Untitled calendar" : "Нов календар", + "Disable calendar" : "Деактивиране на календар", + "Enable calendar" : "Активиране на календар", "Edit name" : "Редактирай името", "Saving name …" : "Запазване...", "Edit color" : "Смени цвета", "Saving color …" : "Запазване на цвета ...", "Copy private link" : "Копирай скритата връзка", + "Export" : "Експорт /изнасям/", "Unshare from me" : "Прекратяване на споделянето от мен", "An error occurred, unable to change visibility of the calendar." : "Възникна грешка, невъзможност да се промени видимостта на календара.", "An error occurred, unable to delete the calendar." : "Възникна грешка, невъзможност да се изтрие календара.", @@ -84,6 +93,7 @@ "An error occurred, unable to change the permission of the share." : "Възникна грешка, невъзможност да се промени разрешението за споделяне ", "+ New calendar" : "Нов календар", "New calendar" : "Нов календар", + "Name for new calendar" : "Име за нов календар", "Creating calendar …" : "Създаване на календар", "New calendar with task list" : "Нов календар със списък със задачи", "New subscription from link (read-only)" : "Нов абонамент от връзка (само за четене)", @@ -99,6 +109,7 @@ "Delete permanently" : "Изтрий завинаги", "Empty trash bin" : "Изпразване на кошчето за боклук", "Untitled element" : "Неозаглавен елемент", + "Unknown calendar" : "Неизвестен календар", "Could not load deleted calendars and objects" : "Не можаха да се заредят изтритите календари и обекти", "Could not restore calendar or event" : "Не можа да се възстанови календар или събитие", "Do you really want to empty the trash bin?" : "Наистина ли искате да изпразните кошчето за боклук?", @@ -114,6 +125,7 @@ "{filename} could not be parsed" : "{filename} не можа да бъде анализиран", "No valid files found, aborting import" : "Не са намерени валидни файлове, прекъсване на импортирането", "Import partially failed. Imported {accepted} out of {total}." : "Импортирането е частично неуспешно. Импортирани {accepted} от {total}.", + "_Successfully imported %n event_::_Successfully imported %n events_" : ["Успешно импортиране на %n събития","Успешно импортиране на %n събития"], "Automatic" : "Автоматично", "Automatic ({detected})" : "Автоматично (detected})", "New setting was not saved successfully." : " Неуспешно запазване на новата настройка.", @@ -148,7 +160,13 @@ "CalDAV link could not be copied to clipboard." : "CalDAV връзката не може да бъде копирана в клипборда", "Appointment was created successfully" : "Срещата е създадена успешно", "Appointment was updated successfully" : "Срещата е актуализирана успешно", + "_{duration} minute_::_{duration} minutes_" : ["{duration} минути","{duration} минути"], "0 minutes" : "0 минути", + "_{duration} hour_::_{duration} hours_" : ["{duration} часа","{duration} минути"], + "_{duration} day_::_{duration} days_" : ["{duration} дни","{duration} дни"], + "_{duration} week_::_{duration} weeks_" : ["{duration} минути","{duration} седмици"], + "_{duration} month_::_{duration} months_" : ["{duration} месеца","{duration} минути"], + "_{duration} year_::_{duration} years_" : ["{duration} години","{duration} минути"], "To configure appointments, add your email address in personal settings." : "За конфигуриране на срещи, добавете своя имейл адрес в личните настройки.", "Public – shown on the profile page" : "Публичен – показва се на страницата на профила", "Private – only accessible via secret link" : "Частен – достъпен само чрез тайна връзка", @@ -157,6 +175,7 @@ "Visibility" : "Видимост", "Duration" : "Продължителност", "Increments" : "Стъпки", + "Additional calendars to check for conflicts" : "Допълнителни календари за проверка за конфликти", "Pick time ranges where appointments are allowed" : "Избор на периоди от време, в които срещите са разрешени", "to" : "до", "Delete slot" : "Изтриване на слот", @@ -175,11 +194,11 @@ "Planning restrictions" : "Ограничения за планиране", "Minimum time before next available slot" : "Минимално време преди следващия наличен слот", "Max slots per day" : "Максимален брой слотове на ден", + "Limit how far in the future appointments can be booked" : "Ограничение, колко далеч в бъдеще могат да бъдат резервирани срещи", "Create appointment" : "Създаване на среща", "Edit appointment" : "Редактиране на среща", "Save" : "Запазване", "Update" : "Обновяване", - "Your appointment is booked" : "Срещата ви е резервирана", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Изпратихме ви имейл с подробности. Моля, потвърдете вашата среща, като използвате връзката в имейла. Можете да затворите тази страница сега.", "Your name" : "Вашето име", "Your email address" : "Вашият имейл адрес", @@ -206,7 +225,18 @@ "_hour_::_hours_" : ["час","часове"], "_day_::_days_" : ["ден","дни"], "_week_::_weeks_" : ["седмица","седмици"], + "Suggested" : "Препоръчан", "Available" : "Наличен.", + "Not available" : "Не е наличен", + "Checking availability" : "Проверка на наличността", + "Invitation accepted" : "Поканата е приета", + "Accepted {organizerName}'s invitation" : "Поканата на {organizerName} е приета", + "Invitation declined" : "Поканата е отхвърлена", + "Declined {organizerName}'s invitation" : "Поканата на {organizerName} е отхвърлена", + "Invitation is delegated" : "Поканата е делегирана", + "Participation marked as tentative" : "Участието е отбелязано като условно", + "Invitation sent" : "Изпратена е покана", + "Has not responded to {organizerName}'s invitation yet" : "Все още няма отговор на поканата на {organizerName}", "Availability of attendees, resources and rooms" : "Наличие на присъстващи, ресурси и стаи", "{organizer} (organizer)" : "{organizer} (organizer)", "Free" : " Свободни", @@ -214,7 +244,15 @@ "Busy" : "Зает", "Out of office" : "Извън офиса", "Unknown" : "Непознат", + "Accept" : "Приемам", + "Decline" : "Отхвърляне", "Tentative" : "Несигурно", + "The invitation has been accepted successfully." : "Поканата е приета успешно.", + "Failed to accept the invitation." : "Неуспешно приемане на поканата.", + "The invitation has been declined successfully." : "Поканата е отхвърлена успешно.", + "Failed to decline the invitation." : "Неуспешно отхвърляне на поканата.", + "Your participation has been marked as tentative." : "Участието ви е отбелязано като условно.", + "Failed to set the participation status to tentative." : "Неуспешно задаване на състоянието за участие на условно.", "Create Talk room for this event" : "Създаване на стая за разговори за това събитие", "Show busy times" : "Показване на натоварените часове", "No attendees yet" : "Все още няма участващи", @@ -330,6 +368,7 @@ "Close" : "Затвори", "Show more details" : "Показване на повече подробности", "Subscribe to {name}" : "Абониране за {name}", + "Export {name}" : "Експортиране /изнасям/ на {name}", "Anniversary" : "Годишнина", "Appointment" : "Среща", "Business" : "Бизнес", @@ -417,14 +456,43 @@ "Meditation" : "Медитация", "Relaxing" : "Релаксиращ", "Relax" : "Почивка", + "Break" : "Прекъсване", + "Commute" : "Замяна", + "Commuting" : "Работно пътуване", + "Shuttle" : "Трансфер", + "Invoice" : "Фактура", + "Finance" : "Финанси", + "Bank" : "Банка", + "Money" : "Пари", + "Wedding" : "Сватба", + "Dog" : "Куче", + "Concert" : "Концерт", + "Festival" : "Фестивал", + "Theater" : "Театър", + "Theatre" : "Театър", "Presentation" : "Презентация", + "Talk" : "Разговор", + "Speech" : "Реч", + "Deadline" : "Краен срок", + "Submission" : " Подаване", + "Reporting" : "Докладване", "Camping" : "Къмпинг", "Camp" : "Лагер", + "Election" : "Избори", + "Voting" : "Гласуване", + "Vote" : "Глас", + "Barbecue" : "Барбекю", + "Barbeque" : "Барбекю", + "Garden" : "Градина", + "Farm" : "Ферма", "Movie" : "Филм", "Cinema" : "Кино", "Graduation" : "Дипломиране", "Brainstorm" : "Мозъчна атака", "Review" : "Преглед", + "Audit" : "Одит", + "Inspection" : "Проверка", + "Proofreading" : "Корекция", "Baseball" : "Бейзбол", "Meet" : "Среща", "Planning" : "Планиране", @@ -437,8 +505,10 @@ "Football" : "Футбол", "Gaming" : "Игри", "Drive" : "Шофиране", + "Driving" : "Шофиране", "Bicycle" : "Велосипед", "Cycle" : "Колело", + "Cycling" : "Колоездене", "Biking" : "Колоездене", "Bike" : "Велосипед", "Podcast" : "Подкаст", @@ -451,10 +521,12 @@ "Museum" : "Музей", "Pilates" : "Пилатес", "Park" : "Парк", + "Walk" : "Разходка", "Studying" : "Изучаване", "Doctor" : "Доктор", "Health" : "Здраве", "Dentist" : "Зъболекар", + "Hospital" : "Болница", "Interview" : "Интервю", "Training" : "Обучение", "Practice" : "Практика", @@ -465,6 +537,7 @@ "Gym" : "Фитнес", "Barber" : "Бръснар", "Haircut" : "Подстрижка", + "Hairdresser" : "Фризьор", "Exam" : "Изпит", "Written test" : "Писмен тест", "Oral test" : "Устен изпит", @@ -486,16 +559,20 @@ "Conference" : "Конференция", "Pizza" : "Пица", "Travelling" : "Пътуване", + "Trip" : "Пътуване", "Journey" : "Пътешествие", - "Collaborate" : "Сътрудействие", + "Collaborate" : "Сътрудничество", "Pair" : "Двойка", "Lecture" : "Лекция", "Seminar" : "Семинар", + "Teaching" : "Преподаване", "Photograph" : "Фотограф", "Party" : "Купон", "Celebration" : "Празненство", "Celebrate" : "Празнуване", + "Birthday" : "Рожден ден", "Shopping" : "Пазаруване", + "Groceries" : "Бакалия", "Skate" : "Каране на кънки", "Skateboard" : "Скейтборд", "Wine tasting" : "Дегустация на вино", diff --git a/l10n/bn_BD.js b/l10n/bn_BD.js index 7ba7ce12db555eb2c5b9e9f33f2087f9855a006a..c038121c92cd7c29b6dbb1ebf165523634689144 100644 --- a/l10n/bn_BD.js +++ b/l10n/bn_BD.js @@ -7,20 +7,36 @@ OC.L10N.register( "Day" : "দিবস", "Week" : "সপ্তাহ", "Month" : "মাস", + "Copy link" : "লিঙ্ক কপি করো", + "Edit" : "সম্পাদনা", "Delete" : "মুছে", + "Export" : "রপ্তানি", "Share link" : "লিংক ভাগাভাগি করেন", "can edit" : "সম্পাদনা করতে পারবেন", "New calendar" : "নতুন দিনপঞ্জী", + "Name" : "নাম", + "Deleted" : "মুছে ফেলা", + "Restore" : "ফিরিয়ে দাও", "Cancel" : "বাতিল", "Automatic" : "স্বয়ংক্রিয়", "Actions" : "পদক্ষেপসমূহ", "Location" : "অবস্থান", "Description" : "বিবরণ", + "to" : "প্রতি", + "Add" : "যোগ করুন", "Monday" : "সোমবার", + "Tuesday" : "মঙ্গলবার", + "Wednesday" : "বুধবার", + "Thursday" : "বৃহস্পতিবার", + "Friday" : "শুক্রবার", + "Saturday" : "শনিবার", + "Sunday" : "রবিবার", "Save" : "সংরক্ষণ", "Update" : "পরিবর্ধন", + "Your email address" : "আপনার ই-মেইল ঠিকানা", "Email" : "ইমেইল", "Unknown" : "অজানা", + "Send email" : "ইমেইল পাঠান ", "Repeat" : "পূনঃসংঘটন", "never" : "কখনোই নয়", "More" : "বেশী", @@ -30,6 +46,9 @@ OC.L10N.register( "Close" : "বন্ধ", "Daily" : "দৈনিক", "Weekly" : "সাপ্তাহিক", - "Mail" : "মেইল" + "Next" : "পরবর্তী", + "Other" : "অন্যান্য", + "Mail" : "মেইল", + "Birthday" : "জন্মদিন" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/bn_BD.json b/l10n/bn_BD.json index 91d64eadf06b694de4e0e7d7b6996d7fa86b1343..b26a382ca9ed48014573812eddc9bb35c3fc7f99 100644 --- a/l10n/bn_BD.json +++ b/l10n/bn_BD.json @@ -5,20 +5,36 @@ "Day" : "দিবস", "Week" : "সপ্তাহ", "Month" : "মাস", + "Copy link" : "লিঙ্ক কপি করো", + "Edit" : "সম্পাদনা", "Delete" : "মুছে", + "Export" : "রপ্তানি", "Share link" : "লিংক ভাগাভাগি করেন", "can edit" : "সম্পাদনা করতে পারবেন", "New calendar" : "নতুন দিনপঞ্জী", + "Name" : "নাম", + "Deleted" : "মুছে ফেলা", + "Restore" : "ফিরিয়ে দাও", "Cancel" : "বাতিল", "Automatic" : "স্বয়ংক্রিয়", "Actions" : "পদক্ষেপসমূহ", "Location" : "অবস্থান", "Description" : "বিবরণ", + "to" : "প্রতি", + "Add" : "যোগ করুন", "Monday" : "সোমবার", + "Tuesday" : "মঙ্গলবার", + "Wednesday" : "বুধবার", + "Thursday" : "বৃহস্পতিবার", + "Friday" : "শুক্রবার", + "Saturday" : "শনিবার", + "Sunday" : "রবিবার", "Save" : "সংরক্ষণ", "Update" : "পরিবর্ধন", + "Your email address" : "আপনার ই-মেইল ঠিকানা", "Email" : "ইমেইল", "Unknown" : "অজানা", + "Send email" : "ইমেইল পাঠান ", "Repeat" : "পূনঃসংঘটন", "never" : "কখনোই নয়", "More" : "বেশী", @@ -28,6 +44,9 @@ "Close" : "বন্ধ", "Daily" : "দৈনিক", "Weekly" : "সাপ্তাহিক", - "Mail" : "মেইল" + "Next" : "পরবর্তী", + "Other" : "অন্যান্য", + "Mail" : "মেইল", + "Birthday" : "জন্মদিন" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/br.js b/l10n/br.js index 78be584fbd037f27fb8ebb094c000effb0a5b4b1..57ad6bece552ba1f1855524b5777a8870d0b78ec 100644 --- a/l10n/br.js +++ b/l10n/br.js @@ -10,6 +10,7 @@ OC.L10N.register( "Open »%s«" : "Digeriñ »%s«", "Cheers!" : "A galon !", "Upcoming events" : "Darvoudoù da zont", + "Confirm" : "Kadarnañ", "Calendar" : "Deiziataer", "A Calendar app for Nextcloud" : "Un arload Deiziataerioù evit Nextcloud", "Previous day" : "Deizioù kent", @@ -23,6 +24,9 @@ OC.L10N.register( "Week" : "Sizhun", "Month" : "Miz", "List" : "Roll", + "Preview" : "Ragwell", + "Copy link" : "Kopiañ al liamm", + "Edit" : "Cheñch", "Delete" : "Dilemel", "Untitled calendar" : "Deiziataer hep titl", "Edit name" : "Embann an anv", @@ -75,6 +79,10 @@ OC.L10N.register( "Creating subscription …" : "Krouiñ ur goumanant ...", "An error occurred, unable to create the calendar." : "Ur fazi a zo bet, dibosupl eo krouiñ an deizataer", "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "Lakait ul liamm mat (o kregiñ gant http://, https://, webcal://, or webcals://)", + "Name" : "Anv", + "Deleted" : "Lamet", + "Restore" : "Adkrouiñ", + "Delete permanently" : "Lamet da viken", "Could not update calendar order." : "Dibosupl eo adnevesaat urzh an deizataerioù", "Import calendars" : "Emporzhiañ deizataerioù", "Please select a calendar to import into …" : "Choazit un deizataer de emporzhiañ e-barzh ...", @@ -86,18 +94,25 @@ OC.L10N.register( "{filename} could not be parsed" : "{filename} na c'hell ket bezhañ dielfennet", "No valid files found, aborting import" : "Restr mat kavet ebet, arrestet e vez an emporzhiañ", "Import partially failed. Imported {accepted} out of {total}." : "Emporzhiañ damc'hwitet. Emporzhiet {accepted} diwar {total}.", + "List view" : "Gwelidik listenn", "Actions" : "Oberoù", "Location" : "Lec'hiadur", "Description" : "Deskrivadur", + "Add" : "Ouzhpennañ", "Monday" : "Lun", "Save" : "Enrollañ", "Update" : "Hizivaat", + "Your email address" : "O chom-lec'h postel", "Notification" : "Kemenadenn", "Email" : "Postel", + "Available" : "Vak", + "Not available" : "Divak", "Free" : "Digoust", "Busy" : "O labourat", "Unknown" : "Dianv", + "Accept" : "Asantiñ", "Tentative" : "Taol-esae", + "Send email" : "Kas postel", "never" : "james", "after" : "goude", "first" : "kentañ", @@ -119,9 +134,11 @@ OC.L10N.register( "_Every %n month_::_Every %n months_" : ["Bep miz","Bep %n viz","Bep %n miz","Bep %n miz","Bep %n miz"], "_Every %n year_::_Every %n years_" : ["Bep bloaz","Bep %n vloaz","Bep %n bloaz","Bep %n bloaz","Bep %n bloaz"], "_on {weekday}_::_on {weekdays}_" : ["d'al {weekday}","d'ar {weekday}","d'ar {weekday}","d'ar {weekday}","d'ar {weekday}"], + "Next" : "Da heul", "%n more" : "%n ouzhpenn", "No events to display" : "Darvoud ebet da ziskouez", "No events" : "Darvoud ebet", + "Other" : "All", "When shared show" : "Diskouez pa vez lodet", "When shared show full event" : "Diskouez an darvoud a-bezh pa vez lodet", "When shared show only busy" : "Diskouez hepken ar re pres warno pa vez lodet", @@ -147,6 +164,7 @@ OC.L10N.register( "Relaxing" : "Distanañ", "Relax" : "Distanañ", "Presentation" : "Kinnigadenn", + "Talk" : "Komz", "Camping" : "Kampiñ", "Camp" : "Kamp", "Movie" : "Film", @@ -221,6 +239,7 @@ OC.L10N.register( "Party" : "Fest", "Celebration" : "Lid", "Celebrate" : "Lid", + "Birthday" : "Deiz-ha-bloaz", "Shopping" : "Staliaoua", "Skate" : "Plankenn-ruilh", "Skateboard" : "Plankenn-ruilh", diff --git a/l10n/br.json b/l10n/br.json index 57a7ec027afd35f3050b1430a10e4314f3ca4f2b..1b5aa0a6ad32f1cd96547d5eeb27cbe524e92d28 100644 --- a/l10n/br.json +++ b/l10n/br.json @@ -8,6 +8,7 @@ "Open »%s«" : "Digeriñ »%s«", "Cheers!" : "A galon !", "Upcoming events" : "Darvoudoù da zont", + "Confirm" : "Kadarnañ", "Calendar" : "Deiziataer", "A Calendar app for Nextcloud" : "Un arload Deiziataerioù evit Nextcloud", "Previous day" : "Deizioù kent", @@ -21,6 +22,9 @@ "Week" : "Sizhun", "Month" : "Miz", "List" : "Roll", + "Preview" : "Ragwell", + "Copy link" : "Kopiañ al liamm", + "Edit" : "Cheñch", "Delete" : "Dilemel", "Untitled calendar" : "Deiziataer hep titl", "Edit name" : "Embann an anv", @@ -73,6 +77,10 @@ "Creating subscription …" : "Krouiñ ur goumanant ...", "An error occurred, unable to create the calendar." : "Ur fazi a zo bet, dibosupl eo krouiñ an deizataer", "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "Lakait ul liamm mat (o kregiñ gant http://, https://, webcal://, or webcals://)", + "Name" : "Anv", + "Deleted" : "Lamet", + "Restore" : "Adkrouiñ", + "Delete permanently" : "Lamet da viken", "Could not update calendar order." : "Dibosupl eo adnevesaat urzh an deizataerioù", "Import calendars" : "Emporzhiañ deizataerioù", "Please select a calendar to import into …" : "Choazit un deizataer de emporzhiañ e-barzh ...", @@ -84,18 +92,25 @@ "{filename} could not be parsed" : "{filename} na c'hell ket bezhañ dielfennet", "No valid files found, aborting import" : "Restr mat kavet ebet, arrestet e vez an emporzhiañ", "Import partially failed. Imported {accepted} out of {total}." : "Emporzhiañ damc'hwitet. Emporzhiet {accepted} diwar {total}.", + "List view" : "Gwelidik listenn", "Actions" : "Oberoù", "Location" : "Lec'hiadur", "Description" : "Deskrivadur", + "Add" : "Ouzhpennañ", "Monday" : "Lun", "Save" : "Enrollañ", "Update" : "Hizivaat", + "Your email address" : "O chom-lec'h postel", "Notification" : "Kemenadenn", "Email" : "Postel", + "Available" : "Vak", + "Not available" : "Divak", "Free" : "Digoust", "Busy" : "O labourat", "Unknown" : "Dianv", + "Accept" : "Asantiñ", "Tentative" : "Taol-esae", + "Send email" : "Kas postel", "never" : "james", "after" : "goude", "first" : "kentañ", @@ -117,9 +132,11 @@ "_Every %n month_::_Every %n months_" : ["Bep miz","Bep %n viz","Bep %n miz","Bep %n miz","Bep %n miz"], "_Every %n year_::_Every %n years_" : ["Bep bloaz","Bep %n vloaz","Bep %n bloaz","Bep %n bloaz","Bep %n bloaz"], "_on {weekday}_::_on {weekdays}_" : ["d'al {weekday}","d'ar {weekday}","d'ar {weekday}","d'ar {weekday}","d'ar {weekday}"], + "Next" : "Da heul", "%n more" : "%n ouzhpenn", "No events to display" : "Darvoud ebet da ziskouez", "No events" : "Darvoud ebet", + "Other" : "All", "When shared show" : "Diskouez pa vez lodet", "When shared show full event" : "Diskouez an darvoud a-bezh pa vez lodet", "When shared show only busy" : "Diskouez hepken ar re pres warno pa vez lodet", @@ -145,6 +162,7 @@ "Relaxing" : "Distanañ", "Relax" : "Distanañ", "Presentation" : "Kinnigadenn", + "Talk" : "Komz", "Camping" : "Kampiñ", "Camp" : "Kamp", "Movie" : "Film", @@ -219,6 +237,7 @@ "Party" : "Fest", "Celebration" : "Lid", "Celebrate" : "Lid", + "Birthday" : "Deiz-ha-bloaz", "Shopping" : "Staliaoua", "Skate" : "Plankenn-ruilh", "Skateboard" : "Plankenn-ruilh", diff --git a/l10n/bs.js b/l10n/bs.js index 3707cf37c42ea0d1e58d63474162e0c1042cc4e1..5cb05503b3862c5320e28e59be6dc642932ac8f4 100644 --- a/l10n/bs.js +++ b/l10n/bs.js @@ -7,20 +7,36 @@ OC.L10N.register( "Day" : "Dan", "Week" : "Sedmica", "Month" : "Mjesec", + "Edit" : "Izmjeni", "Delete" : "Obriši", + "Export" : "Izvezi", "Share link" : "Podijelite vezu", "can edit" : "mogu mijenjati", "New calendar" : "Novi kalendar", + "Name" : "Ime", + "Restore" : "Obnovi", "Cancel" : "Odustani", "Actions" : "Radnje", "Location" : "Lokacija", "Description" : "Opis", + "to" : "do", + "Add" : "Dodaj", "Monday" : "Ponedjeljak", + "Tuesday" : "Utorak", + "Wednesday" : "Srijeda", + "Thursday" : "Četvrtak", + "Friday" : "Petak", + "Saturday" : "Subota", + "Sunday" : "Nedjelja", "Save" : "Spremi", "Update" : "Ažuriraj", + "Your email address" : "Vaša adresa e-pošte", "Email" : "E-pošta", "Busy" : "Zauzet", "Unknown" : "Nepoznato", + "Accept" : "Prihvati", + "Decline" : "Odbij", + "Send email" : "Pošalji e-poštu", "Repeat" : "Ponovi", "never" : "nikad", "More" : "Više", @@ -29,7 +45,10 @@ OC.L10N.register( "Close" : "Zatvori", "Daily" : "Dnevno", "Weekly" : "Sedmično", + "Next" : "Sljedeće", + "Other" : "Ostali", "Status" : "Status", - "Mail" : "E-Pošta" + "Mail" : "E-Pošta", + "Birthday" : "Rođendan" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/l10n/bs.json b/l10n/bs.json index d6453d2962598ea812831a570c3213db4823b738..89d603847c13a7e5070bd330ee3fa8a278b51213 100644 --- a/l10n/bs.json +++ b/l10n/bs.json @@ -5,20 +5,36 @@ "Day" : "Dan", "Week" : "Sedmica", "Month" : "Mjesec", + "Edit" : "Izmjeni", "Delete" : "Obriši", + "Export" : "Izvezi", "Share link" : "Podijelite vezu", "can edit" : "mogu mijenjati", "New calendar" : "Novi kalendar", + "Name" : "Ime", + "Restore" : "Obnovi", "Cancel" : "Odustani", "Actions" : "Radnje", "Location" : "Lokacija", "Description" : "Opis", + "to" : "do", + "Add" : "Dodaj", "Monday" : "Ponedjeljak", + "Tuesday" : "Utorak", + "Wednesday" : "Srijeda", + "Thursday" : "Četvrtak", + "Friday" : "Petak", + "Saturday" : "Subota", + "Sunday" : "Nedjelja", "Save" : "Spremi", "Update" : "Ažuriraj", + "Your email address" : "Vaša adresa e-pošte", "Email" : "E-pošta", "Busy" : "Zauzet", "Unknown" : "Nepoznato", + "Accept" : "Prihvati", + "Decline" : "Odbij", + "Send email" : "Pošalji e-poštu", "Repeat" : "Ponovi", "never" : "nikad", "More" : "Više", @@ -27,7 +43,10 @@ "Close" : "Zatvori", "Daily" : "Dnevno", "Weekly" : "Sedmično", + "Next" : "Sljedeće", + "Other" : "Ostali", "Status" : "Status", - "Mail" : "E-Pošta" + "Mail" : "E-Pošta", + "Birthday" : "Rođendan" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/l10n/ca.js b/l10n/ca.js index 9bf074059756284a76fb2f6a8ebb2a5e392b5137..375734457bcfdacd97df17f380117a2fe3339777 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -30,6 +30,9 @@ OC.L10N.register( "Week" : "Setmana", "Month" : "Mes", "List" : "Llista", + "Preview" : "Previsualitza", + "Copy link" : "Copia l'enllaç", + "Edit" : "Edita", "Delete" : "Suprimeix", "Untitled calendar" : "Calendari sense títol", "Edit name" : "Edita el nom", @@ -37,6 +40,7 @@ OC.L10N.register( "Edit color" : "Edita el color", "Saving color …" : "S'està desant el color...", "Copy private link" : "Copia l'enllaç privat", + "Export" : "Exporta", "Unshare from me" : "Deixa de compartir", "An error occurred, unable to change visibility of the calendar." : "S'ha produït un error. No s'ha canviat la visibilitat del calendari.", "An error occurred, unable to delete the calendar." : "S'ha produït un error. No s'ha suprimit el calendari.", @@ -84,6 +88,10 @@ OC.L10N.register( "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "Escriviu un enllaç vàlid (que comenci amb http://, https://, webcal://, o webcals://)", "Trash bin" : "Paperera", "Name" : "Nom", + "Deleted" : "S'ha suprimit", + "Restore" : "Restaura", + "Delete permanently" : "Suprimeix de manera permanent", + "Empty trash bin" : "Buida la paperera", "Could not update calendar order." : "No s'ha pogut actualitzar l'ordre del calendari.", "Import calendars" : "Importar calendaris", "Please select a calendar to import into …" : "Escolliu un calendari per ser importat …", @@ -107,9 +115,11 @@ OC.L10N.register( "Day view" : "Vista de dia", "Week view" : "Vista de setmana", "Month view" : "Vista de mes", + "List view" : "Vista de llista", "Actions" : "Accions", "Create event" : "Crea un esdeveniment", "Show shortcuts" : "Mostra les dreceres", + "Editor" : "Editor", "Enable birthday calendar" : "Activa el calendari d'aniversaris", "Show tasks in calendar" : "Mostra les tasques en el calendari", "Enable simplified editor" : "Habilita l'editor simplificat", @@ -120,6 +130,7 @@ OC.L10N.register( "Copy iOS/macOS CalDAV address" : "Copia l'adreça CalDAV iOS/macOS", "Show keyboard shortcuts" : "Mostra les dreceres del teclat", "Settings & import" : "Paràmetres i importació", + "No reminder" : "Sense recordatoris", "CalDAV link copied to clipboard." : "S'ha copiat al porta-retalls l'enllaç CalDAV.", "CalDAV link could not be copied to clipboard." : "No s'ha pogut copiar al porta-retalls l'enllaç CalDAV.", "_{duration} minute_::_{duration} minutes_" : ["{duration} minut","{duration} minuts"], @@ -133,6 +144,8 @@ OC.L10N.register( "Description" : "Descripció", "Visibility" : "Visibilitat", "Duration" : "Durada", + "to" : "a", + "Add" : "Afegeix", "Monday" : "Dilluns", "Tuesday" : "Dimarts", "Wednesday" : "Dimecres", @@ -142,6 +155,7 @@ OC.L10N.register( "Sunday" : "Diumenge", "Save" : "Desa", "Update" : "Actualitza", + "Your email address" : "La vostra adreça de correu", "before at" : "abans a les", "Notification" : "Notificació", "Email" : "Correu", @@ -160,6 +174,8 @@ OC.L10N.register( "_hour_::_hours_" : ["hora","hores"], "_day_::_days_" : ["dia","dies"], "_week_::_weeks_" : ["setmana","setmanes"], + "Available" : "Disponible", + "Not available" : "No disponible", "Availability of attendees, resources and rooms" : "Disponibilitat d'assistents, recursos i espais", "Free" : "Disponible", "Busy (tentative)" : "Ocupat (provisional)", @@ -174,6 +190,7 @@ OC.L10N.register( "No attendees yet" : "Encara no hi ha cap participant", "Successfully appended link to talk room to description." : "S'ha afegit l'enllaç d'una nova sala del Talk a la descripció de l'event.", "Error creating Talk room" : "Ha succeït un error tractant de crear la sala a Talk", + "Send email" : "Enviar correu", "Chairperson" : "Organització", "Required participant" : "Participació obligatòria", "Optional participant" : "Participació opcional", @@ -211,6 +228,7 @@ OC.L10N.register( "weekend day" : "dia de cap de setmana", "The recurrence definition of this event is not fully supported by Nextcloud. If you edit the recurrence-options, certain recurrences may be lost." : "La definició de recurrència d'aquest event no es del tot compatible amb Nextcloud. Si canvieu les opcions de recurrència, es poden perdre certes recurrències.", "Suggestions" : "Suggeriments", + "available" : "disponible", "More" : "Més", "Update this occurrence" : "Actualitza aquesta ocurrència", "Update this and all future" : "Actualitza aquesta i les futures", @@ -228,6 +246,7 @@ OC.L10N.register( "Please enter a valid date" : "Indiqueu una data vàlida", "Please enter a valid date and time" : "Indiqueu una data i hora vàlides", "Global" : "Global", + "Time:" : "Hora:", "Personal" : "Personal", "No more events today" : "Avui no hi ha més esdeveniments", "No upcoming events" : "No hi ha propers esdeveniments", @@ -291,6 +310,8 @@ OC.L10N.register( "Untitled event" : "Esdeveniment sense títol", "Untitled task" : "Tasca sense títol", "Please ask your administrator to enable the Tasks App." : "Demaneu al vostre administrador que habiliti l'aplicació de Tasques.", + "Prev" : "Anterior", + "Next" : "Següent", "Year" : "Any", "W" : "S", "%n more" : "%n més", @@ -301,6 +322,7 @@ OC.L10N.register( "It might have been deleted, or there was a typo in a link" : "Pot ser que s'hagi suprimit o que hi hagi un error tipogràfic en un enllaç", "It might have been deleted, or there was a typo in the link" : "Pot ser que s'hagi suprimit o que hi hagi un error tipogràfic a l'enllaç", "Meeting room" : "Sala de reunions", + "Other" : "Altres", "When shared show" : "Mostrar a compartits", "When shared show full event" : "Quan es comparteix, mostra l'esdeveniment complet", "When shared show only busy" : "Quan es comparteix, mostra només si està ocupat", @@ -325,7 +347,9 @@ OC.L10N.register( "Meditation" : "Meditació", "Relaxing" : "Relax", "Relax" : "Relax", + "Commuting" : "Trajecte", "Presentation" : "Presentació", + "Talk" : "Parla", "Camping" : "Acampada", "Camp" : "Campament", "Garden" : "Jardí", @@ -366,6 +390,7 @@ OC.L10N.register( "Doctor" : "Doctor", "Health" : "Salut", "Dentist" : "Dentista", + "Hospital" : "Hospital", "Interview" : "Entrevista", "Training" : "Entrenament", "Practice" : "Pràctica", @@ -408,6 +433,7 @@ OC.L10N.register( "Party" : "Festa", "Celebration" : "Celebració", "Celebrate" : "Celebrar", + "Birthday" : "Aniversari", "Shopping" : "Anar de compres", "Skate" : "Patinar", "Skateboard" : "Skateboard", diff --git a/l10n/ca.json b/l10n/ca.json index 71efa69852526dcef4dc79c0673f93de9e49ac27..857305e801601d05a1c1ad185b606241a4424af8 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -28,6 +28,9 @@ "Week" : "Setmana", "Month" : "Mes", "List" : "Llista", + "Preview" : "Previsualitza", + "Copy link" : "Copia l'enllaç", + "Edit" : "Edita", "Delete" : "Suprimeix", "Untitled calendar" : "Calendari sense títol", "Edit name" : "Edita el nom", @@ -35,6 +38,7 @@ "Edit color" : "Edita el color", "Saving color …" : "S'està desant el color...", "Copy private link" : "Copia l'enllaç privat", + "Export" : "Exporta", "Unshare from me" : "Deixa de compartir", "An error occurred, unable to change visibility of the calendar." : "S'ha produït un error. No s'ha canviat la visibilitat del calendari.", "An error occurred, unable to delete the calendar." : "S'ha produït un error. No s'ha suprimit el calendari.", @@ -82,6 +86,10 @@ "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "Escriviu un enllaç vàlid (que comenci amb http://, https://, webcal://, o webcals://)", "Trash bin" : "Paperera", "Name" : "Nom", + "Deleted" : "S'ha suprimit", + "Restore" : "Restaura", + "Delete permanently" : "Suprimeix de manera permanent", + "Empty trash bin" : "Buida la paperera", "Could not update calendar order." : "No s'ha pogut actualitzar l'ordre del calendari.", "Import calendars" : "Importar calendaris", "Please select a calendar to import into …" : "Escolliu un calendari per ser importat …", @@ -105,9 +113,11 @@ "Day view" : "Vista de dia", "Week view" : "Vista de setmana", "Month view" : "Vista de mes", + "List view" : "Vista de llista", "Actions" : "Accions", "Create event" : "Crea un esdeveniment", "Show shortcuts" : "Mostra les dreceres", + "Editor" : "Editor", "Enable birthday calendar" : "Activa el calendari d'aniversaris", "Show tasks in calendar" : "Mostra les tasques en el calendari", "Enable simplified editor" : "Habilita l'editor simplificat", @@ -118,6 +128,7 @@ "Copy iOS/macOS CalDAV address" : "Copia l'adreça CalDAV iOS/macOS", "Show keyboard shortcuts" : "Mostra les dreceres del teclat", "Settings & import" : "Paràmetres i importació", + "No reminder" : "Sense recordatoris", "CalDAV link copied to clipboard." : "S'ha copiat al porta-retalls l'enllaç CalDAV.", "CalDAV link could not be copied to clipboard." : "No s'ha pogut copiar al porta-retalls l'enllaç CalDAV.", "_{duration} minute_::_{duration} minutes_" : ["{duration} minut","{duration} minuts"], @@ -131,6 +142,8 @@ "Description" : "Descripció", "Visibility" : "Visibilitat", "Duration" : "Durada", + "to" : "a", + "Add" : "Afegeix", "Monday" : "Dilluns", "Tuesday" : "Dimarts", "Wednesday" : "Dimecres", @@ -140,6 +153,7 @@ "Sunday" : "Diumenge", "Save" : "Desa", "Update" : "Actualitza", + "Your email address" : "La vostra adreça de correu", "before at" : "abans a les", "Notification" : "Notificació", "Email" : "Correu", @@ -158,6 +172,8 @@ "_hour_::_hours_" : ["hora","hores"], "_day_::_days_" : ["dia","dies"], "_week_::_weeks_" : ["setmana","setmanes"], + "Available" : "Disponible", + "Not available" : "No disponible", "Availability of attendees, resources and rooms" : "Disponibilitat d'assistents, recursos i espais", "Free" : "Disponible", "Busy (tentative)" : "Ocupat (provisional)", @@ -172,6 +188,7 @@ "No attendees yet" : "Encara no hi ha cap participant", "Successfully appended link to talk room to description." : "S'ha afegit l'enllaç d'una nova sala del Talk a la descripció de l'event.", "Error creating Talk room" : "Ha succeït un error tractant de crear la sala a Talk", + "Send email" : "Enviar correu", "Chairperson" : "Organització", "Required participant" : "Participació obligatòria", "Optional participant" : "Participació opcional", @@ -209,6 +226,7 @@ "weekend day" : "dia de cap de setmana", "The recurrence definition of this event is not fully supported by Nextcloud. If you edit the recurrence-options, certain recurrences may be lost." : "La definició de recurrència d'aquest event no es del tot compatible amb Nextcloud. Si canvieu les opcions de recurrència, es poden perdre certes recurrències.", "Suggestions" : "Suggeriments", + "available" : "disponible", "More" : "Més", "Update this occurrence" : "Actualitza aquesta ocurrència", "Update this and all future" : "Actualitza aquesta i les futures", @@ -226,6 +244,7 @@ "Please enter a valid date" : "Indiqueu una data vàlida", "Please enter a valid date and time" : "Indiqueu una data i hora vàlides", "Global" : "Global", + "Time:" : "Hora:", "Personal" : "Personal", "No more events today" : "Avui no hi ha més esdeveniments", "No upcoming events" : "No hi ha propers esdeveniments", @@ -289,6 +308,8 @@ "Untitled event" : "Esdeveniment sense títol", "Untitled task" : "Tasca sense títol", "Please ask your administrator to enable the Tasks App." : "Demaneu al vostre administrador que habiliti l'aplicació de Tasques.", + "Prev" : "Anterior", + "Next" : "Següent", "Year" : "Any", "W" : "S", "%n more" : "%n més", @@ -299,6 +320,7 @@ "It might have been deleted, or there was a typo in a link" : "Pot ser que s'hagi suprimit o que hi hagi un error tipogràfic en un enllaç", "It might have been deleted, or there was a typo in the link" : "Pot ser que s'hagi suprimit o que hi hagi un error tipogràfic a l'enllaç", "Meeting room" : "Sala de reunions", + "Other" : "Altres", "When shared show" : "Mostrar a compartits", "When shared show full event" : "Quan es comparteix, mostra l'esdeveniment complet", "When shared show only busy" : "Quan es comparteix, mostra només si està ocupat", @@ -323,7 +345,9 @@ "Meditation" : "Meditació", "Relaxing" : "Relax", "Relax" : "Relax", + "Commuting" : "Trajecte", "Presentation" : "Presentació", + "Talk" : "Parla", "Camping" : "Acampada", "Camp" : "Campament", "Garden" : "Jardí", @@ -364,6 +388,7 @@ "Doctor" : "Doctor", "Health" : "Salut", "Dentist" : "Dentista", + "Hospital" : "Hospital", "Interview" : "Entrevista", "Training" : "Entrenament", "Practice" : "Pràctica", @@ -406,6 +431,7 @@ "Party" : "Festa", "Celebration" : "Celebració", "Celebrate" : "Celebrar", + "Birthday" : "Aniversari", "Shopping" : "Anar de compres", "Skate" : "Patinar", "Skateboard" : "Skateboard", diff --git a/l10n/cs.js b/l10n/cs.js index ef7d829aaf88c4de21ebf7ec5e8901ba0910ad22..1cde737570d39bdb9facf846e1c41fc37b90ccec 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -144,6 +144,10 @@ OC.L10N.register( "Actions" : "Akce", "Create event" : "Vytvořit událost", "Show shortcuts" : "Zobrazit zkratky", + "Editor" : "Editor", + "Close editor" : "Zavřít editor", + "Save edited event" : "Uložit upravenou událost", + "Delete edited event" : "Smazat upravenou událost", "Enable birthday calendar" : "Zobrazovat kalendář s narozeninami", "Show tasks in calendar" : "Zobrazovat úkoly v kalendáři", "Enable simplified editor" : "Používat zjednodušený editor", @@ -201,7 +205,7 @@ OC.L10N.register( "Edit appointment" : "Upravit schůzku", "Save" : "Uložit", "Update" : "Aktualizovat", - "Your appointment is booked" : "Vaše schůzka je zarezervována", + "Please confirm your reservation" : "Potvrďte svou rezervaci", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "V e-mailu vám pošleme podrobnosti. Prosíme, potvrďte schůzku kliknutím na odkaz v e-mailu. Tuto stránku nyní můžete zavřít.", "Your name" : "Vaše jméno", "Your email address" : "Vaše e-mailová adresa", diff --git a/l10n/cs.json b/l10n/cs.json index 89abeca3f4088444c794b1d3c237053351cc3c9e..889540dee56165cb0197d49a4eecf9d675985601 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -142,6 +142,10 @@ "Actions" : "Akce", "Create event" : "Vytvořit událost", "Show shortcuts" : "Zobrazit zkratky", + "Editor" : "Editor", + "Close editor" : "Zavřít editor", + "Save edited event" : "Uložit upravenou událost", + "Delete edited event" : "Smazat upravenou událost", "Enable birthday calendar" : "Zobrazovat kalendář s narozeninami", "Show tasks in calendar" : "Zobrazovat úkoly v kalendáři", "Enable simplified editor" : "Používat zjednodušený editor", @@ -199,7 +203,7 @@ "Edit appointment" : "Upravit schůzku", "Save" : "Uložit", "Update" : "Aktualizovat", - "Your appointment is booked" : "Vaše schůzka je zarezervována", + "Please confirm your reservation" : "Potvrďte svou rezervaci", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "V e-mailu vám pošleme podrobnosti. Prosíme, potvrďte schůzku kliknutím na odkaz v e-mailu. Tuto stránku nyní můžete zavřít.", "Your name" : "Vaše jméno", "Your email address" : "Vaše e-mailová adresa", diff --git a/l10n/cy_GB.js b/l10n/cy_GB.js index d1d54e9f0823e416a2a0ad4fcd2a34e28a462d9d..1302ac592f84da0d53374380d03d38cb63f5e226 100644 --- a/l10n/cy_GB.js +++ b/l10n/cy_GB.js @@ -8,23 +8,41 @@ OC.L10N.register( "Cheers!" : "Hwyl!", "Calendar" : "Calendr", "A Calendar app for Nextcloud" : "Ap Calendr ar gyfer Nextcloud", + "New event" : "Digwyddiad newydd", "Today" : "Heddiw", "Day" : "Diwrnod", "Week" : "Wythnos", "Month" : "Mis", + "Preview" : "Rhagolwg", + "Copy link" : "Copïo dolen", + "Edit" : "Golygu", "Delete" : "Dileu", + "Export" : "Allforio", "Share link" : "Rhannu dolen", "Share with users or groups" : "Rhannwch gyda defnyddwyr neu grwpiau", "No users or groups" : "Dim defnyddwyr na grwpiau", "can edit" : "yn gallu golygu", "New calendar" : "Calendr newydd", + "Name" : "Enw", + "Deleted" : "Wedi dileu", + "Restore" : "Adfer", + "Delete permanently" : "Dileu'n barhaol", "Cancel" : "Diddymu", + "List view" : "Golwg rhestr", "Actions" : "Gweithredoedd", "Show week numbers" : "Dangos rhifau wythnosau", "Settings & import" : "Gosodiadau a mewnforio", "Location" : "Lleoliad", "Description" : "Disgrifiad", + "to" : "at", + "Add" : "Ychwanegu", "Monday" : "Llun", + "Tuesday" : "Mawrth", + "Wednesday" : "Mercher", + "Thursday" : "Iau", + "Friday" : "Gwener", + "Saturday" : "Sadwrn", + "Sunday" : "Sul", "Save" : "Cadw", "Update" : "Diweddaru", "Email" : "E-bost", @@ -41,10 +59,13 @@ OC.L10N.register( "Close" : "Cau", "Anniversary" : "Dathliad", "Week {number} of {year}" : "Wythnos {number} o {year}", + "Next" : "Nesaf", + "Other" : "Arall", "When shared show full event" : "Pan wedi ei rannu, yn dangos y digwyddiad llawn", "When shared show only busy" : "Pan wedi ei rannu, yn dangos dim ond prysur", "When shared hide this event" : "Pan wedi ei rannu, yn cuddio'r digwyddiad hwn", "Confirmed" : "Cadarnhawyd", - "Mail" : "E-bost" + "Mail" : "E-bost", + "Birthday" : "Pen-blwydd" }, "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"); diff --git a/l10n/cy_GB.json b/l10n/cy_GB.json index 690149c34a03d95cb0432df38702481970a7eca6..7ade5234b559697713f93b15f4f20546004d14f6 100644 --- a/l10n/cy_GB.json +++ b/l10n/cy_GB.json @@ -6,23 +6,41 @@ "Cheers!" : "Hwyl!", "Calendar" : "Calendr", "A Calendar app for Nextcloud" : "Ap Calendr ar gyfer Nextcloud", + "New event" : "Digwyddiad newydd", "Today" : "Heddiw", "Day" : "Diwrnod", "Week" : "Wythnos", "Month" : "Mis", + "Preview" : "Rhagolwg", + "Copy link" : "Copïo dolen", + "Edit" : "Golygu", "Delete" : "Dileu", + "Export" : "Allforio", "Share link" : "Rhannu dolen", "Share with users or groups" : "Rhannwch gyda defnyddwyr neu grwpiau", "No users or groups" : "Dim defnyddwyr na grwpiau", "can edit" : "yn gallu golygu", "New calendar" : "Calendr newydd", + "Name" : "Enw", + "Deleted" : "Wedi dileu", + "Restore" : "Adfer", + "Delete permanently" : "Dileu'n barhaol", "Cancel" : "Diddymu", + "List view" : "Golwg rhestr", "Actions" : "Gweithredoedd", "Show week numbers" : "Dangos rhifau wythnosau", "Settings & import" : "Gosodiadau a mewnforio", "Location" : "Lleoliad", "Description" : "Disgrifiad", + "to" : "at", + "Add" : "Ychwanegu", "Monday" : "Llun", + "Tuesday" : "Mawrth", + "Wednesday" : "Mercher", + "Thursday" : "Iau", + "Friday" : "Gwener", + "Saturday" : "Sadwrn", + "Sunday" : "Sul", "Save" : "Cadw", "Update" : "Diweddaru", "Email" : "E-bost", @@ -39,10 +57,13 @@ "Close" : "Cau", "Anniversary" : "Dathliad", "Week {number} of {year}" : "Wythnos {number} o {year}", + "Next" : "Nesaf", + "Other" : "Arall", "When shared show full event" : "Pan wedi ei rannu, yn dangos y digwyddiad llawn", "When shared show only busy" : "Pan wedi ei rannu, yn dangos dim ond prysur", "When shared hide this event" : "Pan wedi ei rannu, yn cuddio'r digwyddiad hwn", "Confirmed" : "Cadarnhawyd", - "Mail" : "E-bost" + "Mail" : "E-bost", + "Birthday" : "Pen-blwydd" },"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;" } \ No newline at end of file diff --git a/l10n/da.js b/l10n/da.js index 395a8862f4f142acc32679933be042cef4073e2d..6d157ea781056bea6048bcf4b5a351b97593ab94 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -9,6 +9,11 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Vi ønkser at informerer dig om at %s har oprettet en begivenhed i kalenderen »%s«.", "Open »%s«" : "Åbn »%s«", "Cheers!" : "Hav en fortsat god dag.", + "Appointments" : "Aftaler", + "Confirm" : "Bekræft", + "Date:" : "Dato:", + "Where:" : "Hvor:", + "Description:" : "Beskrivelse:", "Calendar" : "Kalender", "A Calendar app for Nextcloud" : "En kalender-app til Nextcloud", "Previous day" : "Forrige dag", @@ -17,10 +22,15 @@ OC.L10N.register( "Next day" : "Næste dag", "Next week" : "Næste uge", "Next month" : "Næste måned", + "New event" : "Opret begivenhed", "Today" : "I dag", "Day" : "Dag", "Week" : "Uge", "Month" : "Måned", + "List" : "Liste", + "Preview" : "Forhåndsvisning", + "Copy link" : "Kopiér link", + "Edit" : "Rediger", "Delete" : "Slet", "Untitled calendar" : "Unanvngiven kalender", "Edit name" : "Rediger navn", @@ -28,6 +38,7 @@ OC.L10N.register( "Edit color" : "Rediger farve", "Saving color …" : "Gemmer farve…", "Copy private link" : "Kopier privat link", + "Export" : "Eksportér", "Unshare from me" : "Fjern deling fra mig", "An error occurred, unable to change visibility of the calendar." : "Kalenderens synlighed kunne ikke ændres.", "An error occurred, unable to delete the calendar." : "Kalenderen kunne ikke slettes.", @@ -62,24 +73,43 @@ OC.L10N.register( "Creating calendar …" : "Opretter kalender…", "New calendar with task list" : "Ny kalender med opgaveliste", "Creating subscription …" : "Opretter abonnement…", + "Name" : "Navn", + "Deleted" : "Slettet", + "Restore" : "Gendan", + "Delete permanently" : "Slet permanent", + "Empty trash bin" : "Tom papirkurv", "Import calendars" : "Importer kalendere", "Filename" : "Filnavn", "Cancel" : "Annullér", "_Import calendar_::_Import calendars_" : ["Importer kalender","Importer kalendere"], "Automatic" : "Automatisk", "or" : "eller", + "List view" : "Vis som liste", "Actions" : "Handlinger", "Enable birthday calendar" : "Slå fødselsdagskalender til", "Enable simplified editor" : "Slå simpel editor til", "Show weekends" : "Vis weekender", "Show week numbers" : "Vis ugenummer ", "Copy primary CalDAV address" : "Kopier primær CalDAV-adresse", + "Show keyboard shortcuts" : "Vis tastaturgenveje", "Settings & import" : "Indstillinger & importer", + "No reminder" : "Ingen påmindelse", "Location" : "Sted", "Description" : "Beskrivelse", + "Visibility" : "Synlighed", + "Duration" : "Varighed", + "to" : "til", + "Add" : "Tilføj", "Monday" : "Mandag", + "Tuesday" : "Tirsdag", + "Wednesday" : "Onsdag", + "Thursday" : "Torsdag", + "Friday" : "Fredag", + "Saturday" : "Lørdag", + "Sunday" : "Søndag", "Save" : "Gem", "Update" : "Opdatér", + "Your email address" : "Din email adresse", "Notification" : "Notifikation", "Email" : "E-mail", "_second_::_seconds_" : ["sekund","sekunder"], @@ -87,10 +117,14 @@ OC.L10N.register( "_hour_::_hours_" : ["time","timer"], "_day_::_days_" : ["dag","dage"], "_week_::_weeks_" : ["uge","uger"], + "Available" : "Tilgængelig", "Busy" : "Optaget", "Unknown" : "Ukendt", + "Accept" : "Accepter", + "Decline" : "Afvis", "Tentative" : "Foreløbig", "Create Talk room for this event" : "Opret Snak rum for denne begivenhed", + "Send email" : "Send e-mail", "Event title" : "Titel", "All day" : "Hele dagen", "from {startDate}" : "fra {startDate}", @@ -110,27 +144,38 @@ OC.L10N.register( "_year_::_years_" : ["år","år"], "weekday" : "hverdag", "weekend day" : "weekenddag", + "available" : "tilgængelig", "More" : "Mere", + "Pick a date" : "Vælg en dato", "Global" : "Global", + "Time:" : "Tid:", "Personal" : "Personlig", "Details" : "Detaljer", "Attendees" : "Deltagere", + "Resources" : "Resourcer", "Close" : "Luk", "Anniversary" : "Årsdag", "Week {number} of {year}" : "Uge {number} i {year}", "Daily" : "Dagligt", "Weekly" : "Ugentligt", "Untitled event" : "Unavngiven begivenhed", + "Next" : "Næste", + "Year" : "År", + "Other" : "Andet", "When shared show full event" : "Når delt, vis den fulde begivenhed", "When shared show only busy" : "Når delt, vis kun optaget", "When shared hide this event" : "Når delt, skjul denne begivenhed", "Status" : "Status", "Confirmed" : "Bekræftet", + "Canceled" : "Annulleret", "Categories" : "Kategorier", "Presentation" : "Præsentation", + "Talk" : "Snak", "Movie" : "Film", "Review" : "Gennemse", "Office" : "Kontor", - "Mail" : "Mail" + "Mail" : "Mail", + "Birthday" : "Fødselsdag", + "User not found" : "Bruger ikke fundet" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/da.json b/l10n/da.json index 3597e66de827b3efbdf5ed38d9877314eebe9917..2f5d1adf491888ba377e8d3e9c5adcd1ad8af271 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -7,6 +7,11 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Vi ønkser at informerer dig om at %s har oprettet en begivenhed i kalenderen »%s«.", "Open »%s«" : "Åbn »%s«", "Cheers!" : "Hav en fortsat god dag.", + "Appointments" : "Aftaler", + "Confirm" : "Bekræft", + "Date:" : "Dato:", + "Where:" : "Hvor:", + "Description:" : "Beskrivelse:", "Calendar" : "Kalender", "A Calendar app for Nextcloud" : "En kalender-app til Nextcloud", "Previous day" : "Forrige dag", @@ -15,10 +20,15 @@ "Next day" : "Næste dag", "Next week" : "Næste uge", "Next month" : "Næste måned", + "New event" : "Opret begivenhed", "Today" : "I dag", "Day" : "Dag", "Week" : "Uge", "Month" : "Måned", + "List" : "Liste", + "Preview" : "Forhåndsvisning", + "Copy link" : "Kopiér link", + "Edit" : "Rediger", "Delete" : "Slet", "Untitled calendar" : "Unanvngiven kalender", "Edit name" : "Rediger navn", @@ -26,6 +36,7 @@ "Edit color" : "Rediger farve", "Saving color …" : "Gemmer farve…", "Copy private link" : "Kopier privat link", + "Export" : "Eksportér", "Unshare from me" : "Fjern deling fra mig", "An error occurred, unable to change visibility of the calendar." : "Kalenderens synlighed kunne ikke ændres.", "An error occurred, unable to delete the calendar." : "Kalenderen kunne ikke slettes.", @@ -60,24 +71,43 @@ "Creating calendar …" : "Opretter kalender…", "New calendar with task list" : "Ny kalender med opgaveliste", "Creating subscription …" : "Opretter abonnement…", + "Name" : "Navn", + "Deleted" : "Slettet", + "Restore" : "Gendan", + "Delete permanently" : "Slet permanent", + "Empty trash bin" : "Tom papirkurv", "Import calendars" : "Importer kalendere", "Filename" : "Filnavn", "Cancel" : "Annullér", "_Import calendar_::_Import calendars_" : ["Importer kalender","Importer kalendere"], "Automatic" : "Automatisk", "or" : "eller", + "List view" : "Vis som liste", "Actions" : "Handlinger", "Enable birthday calendar" : "Slå fødselsdagskalender til", "Enable simplified editor" : "Slå simpel editor til", "Show weekends" : "Vis weekender", "Show week numbers" : "Vis ugenummer ", "Copy primary CalDAV address" : "Kopier primær CalDAV-adresse", + "Show keyboard shortcuts" : "Vis tastaturgenveje", "Settings & import" : "Indstillinger & importer", + "No reminder" : "Ingen påmindelse", "Location" : "Sted", "Description" : "Beskrivelse", + "Visibility" : "Synlighed", + "Duration" : "Varighed", + "to" : "til", + "Add" : "Tilføj", "Monday" : "Mandag", + "Tuesday" : "Tirsdag", + "Wednesday" : "Onsdag", + "Thursday" : "Torsdag", + "Friday" : "Fredag", + "Saturday" : "Lørdag", + "Sunday" : "Søndag", "Save" : "Gem", "Update" : "Opdatér", + "Your email address" : "Din email adresse", "Notification" : "Notifikation", "Email" : "E-mail", "_second_::_seconds_" : ["sekund","sekunder"], @@ -85,10 +115,14 @@ "_hour_::_hours_" : ["time","timer"], "_day_::_days_" : ["dag","dage"], "_week_::_weeks_" : ["uge","uger"], + "Available" : "Tilgængelig", "Busy" : "Optaget", "Unknown" : "Ukendt", + "Accept" : "Accepter", + "Decline" : "Afvis", "Tentative" : "Foreløbig", "Create Talk room for this event" : "Opret Snak rum for denne begivenhed", + "Send email" : "Send e-mail", "Event title" : "Titel", "All day" : "Hele dagen", "from {startDate}" : "fra {startDate}", @@ -108,27 +142,38 @@ "_year_::_years_" : ["år","år"], "weekday" : "hverdag", "weekend day" : "weekenddag", + "available" : "tilgængelig", "More" : "Mere", + "Pick a date" : "Vælg en dato", "Global" : "Global", + "Time:" : "Tid:", "Personal" : "Personlig", "Details" : "Detaljer", "Attendees" : "Deltagere", + "Resources" : "Resourcer", "Close" : "Luk", "Anniversary" : "Årsdag", "Week {number} of {year}" : "Uge {number} i {year}", "Daily" : "Dagligt", "Weekly" : "Ugentligt", "Untitled event" : "Unavngiven begivenhed", + "Next" : "Næste", + "Year" : "År", + "Other" : "Andet", "When shared show full event" : "Når delt, vis den fulde begivenhed", "When shared show only busy" : "Når delt, vis kun optaget", "When shared hide this event" : "Når delt, skjul denne begivenhed", "Status" : "Status", "Confirmed" : "Bekræftet", + "Canceled" : "Annulleret", "Categories" : "Kategorier", "Presentation" : "Præsentation", + "Talk" : "Snak", "Movie" : "Film", "Review" : "Gennemse", "Office" : "Kontor", - "Mail" : "Mail" + "Mail" : "Mail", + "Birthday" : "Fødselsdag", + "User not found" : "Bruger ikke fundet" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/de.js b/l10n/de.js index 94b4682bd197c4e97af51f41ca8284150b415584..e30cf69e0efd72343d208b254c768c0a6f155070 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -34,7 +34,7 @@ OC.L10N.register( "Next day" : "Nächster Tag", "Next week" : "Nächste Woche", "Next month" : "Nächster Monat", - "New event" : "Neues Ereignis", + "New event" : "Neuer Termin", "Today" : "Heute", "Day" : "Tag", "Week" : "Woche", @@ -144,6 +144,10 @@ OC.L10N.register( "Actions" : "Aktionen", "Create event" : "Termin erstellen", "Show shortcuts" : "Tastaturkürzel anzeigen", + "Editor" : "Editor", + "Close editor" : "Bearbeitung schließen", + "Save edited event" : "Bearbeitetes Ereignis speichern", + "Delete edited event" : "Bearbeitetes Ereignis löschen", "Enable birthday calendar" : "Geburtstagskalender aktivieren", "Show tasks in calendar" : "Aufgaben im Kalender anzeigen", "Enable simplified editor" : "Einfachen Editor aktivieren", @@ -201,7 +205,7 @@ OC.L10N.register( "Edit appointment" : "Termin bearbeiten", "Save" : "Speichern", "Update" : "Aktualisieren", - "Your appointment is booked" : "Dein Termin ist gebucht", + "Please confirm your reservation" : "Bitte bestätige Deine Reservierung", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Wir haben Dir eine E-Mail mit Details gesendet. Bitte bestätige Deinen Termin über den Link in der E-Mail. Du kannst diese Seite jetzt schließen.", "Your name" : "Dein Name", "Your email address" : "Deine E-Mail-Adresse", @@ -231,15 +235,15 @@ OC.L10N.register( "Suggested" : "Vorgeschlagen", "Available" : "Verfügbar", "Not available" : "Nicht verfügbar", - "Checking availability" : "Verfügbarkeit wird überprüft", + "Checking availability" : "Verfügbarkeit prüfen", "Invitation accepted" : "Einladung angenommen", - "Accepted {organizerName}'s invitation" : "{organizerName} Einladung angenommen", + "Accepted {organizerName}'s invitation" : "Einladung von {organizerName} angenommen", "Invitation declined" : "Einladung abgelehnt", - "Declined {organizerName}'s invitation" : "{organizerName} Einladung abgelehnt", - "Invitation is delegated" : "Einladung ist delegiert", - "Participation marked as tentative" : "Teilnahme als möglich eingetragen", - "Invitation sent" : "Einladung gesendet", - "Has not responded to {organizerName}'s invitation yet" : "Hat noch nicht auf {organizerName} Einladung geantwortet", + "Declined {organizerName}'s invitation" : "Einladung von {organizerName} abgelehnt", + "Invitation is delegated" : "Einladung ist weitergeleitet", + "Participation marked as tentative" : "Teilnahme als vorläufig markiert", + "Invitation sent" : "Einladung verschickt", + "Has not responded to {organizerName}'s invitation yet" : "Hat noch nicht auf die Einladung von {organizerName} geantwortet", "Availability of attendees, resources and rooms" : "Verfügbarkeit von Teilnehmern, Resourcen und Räumen", "{organizer} (organizer)" : "{organizer} (Organisator)", "Free" : "Frei", diff --git a/l10n/de.json b/l10n/de.json index 644db5b2fcdfda918154dca9ba02a79b66a7e0d9..5f786cd0ce9f1d5c20a709a6659b7ebaa57ad807 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -32,7 +32,7 @@ "Next day" : "Nächster Tag", "Next week" : "Nächste Woche", "Next month" : "Nächster Monat", - "New event" : "Neues Ereignis", + "New event" : "Neuer Termin", "Today" : "Heute", "Day" : "Tag", "Week" : "Woche", @@ -142,6 +142,10 @@ "Actions" : "Aktionen", "Create event" : "Termin erstellen", "Show shortcuts" : "Tastaturkürzel anzeigen", + "Editor" : "Editor", + "Close editor" : "Bearbeitung schließen", + "Save edited event" : "Bearbeitetes Ereignis speichern", + "Delete edited event" : "Bearbeitetes Ereignis löschen", "Enable birthday calendar" : "Geburtstagskalender aktivieren", "Show tasks in calendar" : "Aufgaben im Kalender anzeigen", "Enable simplified editor" : "Einfachen Editor aktivieren", @@ -199,7 +203,7 @@ "Edit appointment" : "Termin bearbeiten", "Save" : "Speichern", "Update" : "Aktualisieren", - "Your appointment is booked" : "Dein Termin ist gebucht", + "Please confirm your reservation" : "Bitte bestätige Deine Reservierung", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Wir haben Dir eine E-Mail mit Details gesendet. Bitte bestätige Deinen Termin über den Link in der E-Mail. Du kannst diese Seite jetzt schließen.", "Your name" : "Dein Name", "Your email address" : "Deine E-Mail-Adresse", @@ -229,6 +233,17 @@ "Suggested" : "Vorgeschlagen", "Available" : "Verfügbar", "Not available" : "Nicht verfügbar", +<<<<<<< HEAD + "Checking availability" : "Verfügbarkeit prüfen", + "Invitation accepted" : "Einladung angenommen", + "Accepted {organizerName}'s invitation" : "Einladung von {organizerName} angenommen", + "Invitation declined" : "Einladung abgelehnt", + "Declined {organizerName}'s invitation" : "Einladung von {organizerName} abgelehnt", + "Invitation is delegated" : "Einladung ist weitergeleitet", + "Participation marked as tentative" : "Teilnahme als vorläufig markiert", + "Invitation sent" : "Einladung verschickt", + "Has not responded to {organizerName}'s invitation yet" : "Hat noch nicht auf die Einladung von {organizerName} geantwortet", +======= "Checking availability" : "Verfügbarkeit wird überprüft", "Invitation accepted" : "Einladung angenommen", "Accepted {organizerName}'s invitation" : "{organizerName} Einladung angenommen", @@ -238,6 +253,7 @@ "Participation marked as tentative" : "Teilnahme als möglich eingetragen", "Invitation sent" : "Einladung gesendet", "Has not responded to {organizerName}'s invitation yet" : "Hat noch nicht auf {organizerName} Einladung geantwortet", +>>>>>>> ec6343eb80c41e1d86450b931d2dfdbee54baab5 "Availability of attendees, resources and rooms" : "Verfügbarkeit von Teilnehmern, Resourcen und Räumen", "{organizer} (organizer)" : "{organizer} (Organisator)", "Free" : "Frei", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 16a7c59dcba0d8edc1bec9026da59895fceccb9d..5cb5f4cad4a8e0d58e9a031e4c8d45d2ae92874d 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -144,6 +144,10 @@ OC.L10N.register( "Actions" : "Aktionen", "Create event" : "Termin erstellen", "Show shortcuts" : "Tastaturkürzel anzeigen", + "Editor" : "Editor", + "Close editor" : "Bearbeitung schließen", + "Save edited event" : "Bearbeitetes Ereignis speichern", + "Delete edited event" : "Bearbeitetes Ereignis löschen", "Enable birthday calendar" : "Geburtstagskalender aktivieren", "Show tasks in calendar" : "Aufgaben im Kalender anzeigen", "Enable simplified editor" : "Einfachen Editor aktivieren", @@ -201,7 +205,7 @@ OC.L10N.register( "Edit appointment" : "Termin bearbeiten", "Save" : "Speichern", "Update" : "Aktualisieren", - "Your appointment is booked" : "Ihr Termin ist gebucht", + "Please confirm your reservation" : "Bitte bestätigen Sie Ihre Reservierung", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Wir haben Ihnen eine E-Mail mit Details gesendet. Bitte bestätigen Sie Ihren Termin über den Link in der E-Mail. Sie können diese Seite jetzt schließen.", "Your name" : "Ihr Name", "Your email address" : "Ihre E-Mail-Adresse", @@ -215,7 +219,7 @@ OC.L10N.register( "Audio notification" : "Audio-Benachrichtigung", "Other notification" : "Andere Benachrichtigung", "Relative to event" : "Bezogen auf Termin", - "On date" : "Am Datum", + "On date" : "Zum Datum", "Edit time" : "Zeit ändern", "Save time" : "Zeit speichern", "Remove reminder" : "Erinnerung entfernen", @@ -283,7 +287,7 @@ OC.L10N.register( "End repeat" : "Wiederholung beenden", "Select to end repeat" : "Auswählen um Wiederholung beenden", "never" : "Niemals", - "on date" : "am Datum", + "on date" : "zum Datum", "after" : "Nach", "_time_::_times_" : ["Mal","Mal"], "This event is the recurrence-exception of a recurrence-set. You cannot add a recurrence-rule to it." : "Dieser Termin ist die Wiederholungsausnahme eines sich wiederholenden Termins. Sie können keine Wiederholungsregel hinzufügen.", @@ -371,7 +375,7 @@ OC.L10N.register( "Close" : "Schließen", "Show more details" : "Weitere Einzelheiten anzeigen", "Subscribe to {name}" : "{name} abonnieren", - "Export {name}" : "Exportiere {name}", + "Export {name}" : "{name} exportieren", "Anniversary" : "Jahrestag", "Appointment" : "Verabredung", "Business" : "Geschäftlich", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index ff70df984248702e260540435de729191ed7141c..eacbf3eb4b030b9a08b40ad9f211d4ed51c7414d 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -142,6 +142,10 @@ "Actions" : "Aktionen", "Create event" : "Termin erstellen", "Show shortcuts" : "Tastaturkürzel anzeigen", + "Editor" : "Editor", + "Close editor" : "Bearbeitung schließen", + "Save edited event" : "Bearbeitetes Ereignis speichern", + "Delete edited event" : "Bearbeitetes Ereignis löschen", "Enable birthday calendar" : "Geburtstagskalender aktivieren", "Show tasks in calendar" : "Aufgaben im Kalender anzeigen", "Enable simplified editor" : "Einfachen Editor aktivieren", @@ -199,7 +203,7 @@ "Edit appointment" : "Termin bearbeiten", "Save" : "Speichern", "Update" : "Aktualisieren", - "Your appointment is booked" : "Ihr Termin ist gebucht", + "Please confirm your reservation" : "Bitte bestätigen Sie Ihre Reservierung", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Wir haben Ihnen eine E-Mail mit Details gesendet. Bitte bestätigen Sie Ihren Termin über den Link in der E-Mail. Sie können diese Seite jetzt schließen.", "Your name" : "Ihr Name", "Your email address" : "Ihre E-Mail-Adresse", @@ -213,7 +217,7 @@ "Audio notification" : "Audio-Benachrichtigung", "Other notification" : "Andere Benachrichtigung", "Relative to event" : "Bezogen auf Termin", - "On date" : "Am Datum", + "On date" : "Zum Datum", "Edit time" : "Zeit ändern", "Save time" : "Zeit speichern", "Remove reminder" : "Erinnerung entfernen", @@ -281,7 +285,7 @@ "End repeat" : "Wiederholung beenden", "Select to end repeat" : "Auswählen um Wiederholung beenden", "never" : "Niemals", - "on date" : "am Datum", + "on date" : "zum Datum", "after" : "Nach", "_time_::_times_" : ["Mal","Mal"], "This event is the recurrence-exception of a recurrence-set. You cannot add a recurrence-rule to it." : "Dieser Termin ist die Wiederholungsausnahme eines sich wiederholenden Termins. Sie können keine Wiederholungsregel hinzufügen.", @@ -369,7 +373,7 @@ "Close" : "Schließen", "Show more details" : "Weitere Einzelheiten anzeigen", "Subscribe to {name}" : "{name} abonnieren", - "Export {name}" : "Exportiere {name}", + "Export {name}" : "{name} exportieren", "Anniversary" : "Jahrestag", "Appointment" : "Verabredung", "Business" : "Geschäftlich", diff --git a/l10n/el.js b/l10n/el.js index 2e2cf5d10017e205f1f27a781391e7c60ad34a88..bae8c8313fc31e004f56388be57044d03971da4d 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -17,10 +17,10 @@ OC.L10N.register( "Prepare for %s" : "Προετοιμασία για %s", "Follow up for %s" : "Επόμενο για %s", "Your appointment \"%s\" needs confirmation" : "Το ραντεβού σας \"%s\" χρειάζεται επιβεβαίωση.", - "Dear %s, please confirm your booking" : "Αγαπητέ %s, παρακαλω επιβεβαιώστε την κράτησή σας", + "Dear %s, please confirm your booking" : "Αγαπητέ/ή %s, παρακαλώ επιβεβαιώστε την κράτησή σας", "Confirm" : "Επιβεβαιώνω", "This confirmation link expires in %s hours." : "Αυτός ο σύνδεσμος επιβεβαίωσης λήγει σε %s ώρες", - "If you wish to cancel the appointment after all, please contact your organizer." : "Εάν τελικά επιθυμείτε να ακυρώσετε την κράτησή σας, παρακαλούμε να ενημερώσετε τον διοργανωτή σας.", + "If you wish to cancel the appointment after all, please contact your organizer." : "Εάν τελικά επιθυμείτε να ακυρώσετε το ραντεβού σας, παρακαλούμε να ενημερώσετε τον διοργανωτή σας.", "Appointment:" : "Ραντεβού:", "Date:" : "Ημερομηνία:", "Where:" : "Που:", @@ -44,8 +44,8 @@ OC.L10N.register( "Copy link" : "Αντιγραφή συνδέσμου", "Edit" : "Επεξεργασία", "Delete" : "Διαγραφή", - "Appointment link was copied to clipboard" : "Ο σύνδεσμος λίστας αντιγράφηκε στο πρόχειρο.", - "Appointment link could not be copied to clipboard" : "Δεν ήταν δυνατή η αντιγραφή του συνδέσμου λίστας στο πρόχειρο.", + "Appointment link was copied to clipboard" : "Ο σύνδεσμος του ραντεβού αντιγράφηκε στο πρόχειρο.", + "Appointment link could not be copied to clipboard" : "Δεν ήταν δυνατή η αντιγραφή του συνδέσμου ραντεβού στο πρόχειρο.", "Add new" : "Προσθήκη νέου", "Untitled calendar" : "Ημερολόγιο χωρίς τίτλο", "Disable calendar" : "Απενεργοποιήστε το ημερολόγιο", @@ -150,7 +150,7 @@ OC.L10N.register( "Limit visible events per view" : "Περιορισμός ορατών γεγονότων ανά σελίδα", "Show weekends" : "Εμφάνιση σαββατοκύριακων", "Show week numbers" : "Εμφάνιση αριθμού εβδομάδας", - "Time increments" : "Χρονικές προσαυξήσεις", + "Time increments" : "Χρόνος μεταξύ δυο ραντεβού", "Default reminder" : "Προεπιλεγμένη υπενθύμιση", "Copy primary CalDAV address" : "Αντιγραφή κύριας διεύθυνσης CalDAV", "Copy iOS/macOS CalDAV address" : "Αντιγραφή διεύθυνσης iOS/macOS CalDAV", @@ -169,7 +169,7 @@ OC.L10N.register( "_{duration} week_::_{duration} weeks_" : ["{duration} εβδομάδα","{duration} εβδομάδες"], "_{duration} month_::_{duration} months_" : ["{duration} μήνα","{duration} μήνες"], "_{duration} year_::_{duration} years_" : ["{duration} χρόνο","{duration} χρόνια"], - "To configure appointments, add your email address in personal settings." : "Για να ρυθμίσετε τα ραντεβού σας, προσθέστε την διέυθυνση email στις προσωπικές ρυθμίσεις", + "To configure appointments, add your email address in personal settings." : "Για να ρυθμίσετε τα ραντεβού σας, προσθέστε την διεύθυνση email στις προσωπικές ρυθμίσεις", "Public – shown on the profile page" : "Δημόσιο - εμφανίζεται στο προφίλ", "Private – only accessible via secret link" : "Ιδιωτικό - προσβάσιμο μόνο μέσω κρυφού συνδέσμου", "Location" : "Τοποθεσία", @@ -190,24 +190,23 @@ OC.L10N.register( "Friday" : "Παρασκευή", "Saturday" : "Σάββατο", "Sunday" : "Κυριακή", - "Add time before and after the event" : "Προσθέστε χρόνο πρίν και μετά απο το γεγονός", - "Before the event" : "Πρίν το γεγονός", + "Add time before and after the event" : "Προσθέστε χρόνο πριν και μετά από το γεγονός", + "Before the event" : "Πριν το γεγονός", "After the event" : "Μετά το γεγονός", "Planning restrictions" : "Περιορισμοί σχεδιασμού", "Minimum time before next available slot" : "Ελάχιστος χρόνος πριν το επόμενο διαθέσιμο κενό", - "Max slots per day" : "Μέγιστες θέσεις ανα ημέρα", + "Max slots per day" : "Μέγιστες θέσεις ανά ημέρα", "Limit how far in the future appointments can be booked" : "Περιορίστε πόσο μακριά μπορούν να κανονιστούν μελλοντικά ραντεβού", "Create appointment" : "Δημιουργία ραντεβού", "Edit appointment" : "Επεξεργασία ραντεβού", "Save" : "Αποθήκευση", "Update" : "Ενημέρωση", - "Your appointment is booked" : "Το ραντεβού σας έχει κανονιστεί", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Σας στείλαμε ενα email με τις λεπτομέρειες. Παρακαλούμε να επιβεβαιώσετε το ραντεβού κάνοντας χρήση του συνδέσμου στο email. Μπορείτε να κλείσετε αυτή την σελίδα ", "Your name" : "Το όνομά σας", "Your email address" : "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας", "Please share anything that will help prepare for our meeting" : "Παρακαλούμε να μοιραστείτε οτιδήποτε θα βοηθούσε στην προετοιμασία της συνάντησης", "Could not book the appointment. Please try again later or contact the organizer." : "Δεν μπορέσαμε να κανουμε την κράτηση του ραντεβού. Παρακαλώ δοκιμάστε ξανά αργότερα ή επικοινωνήστε με τον διοργανωτή", - "Book the appointment" : "Κλείστε το Ραντεβού Σας", + "Book the appointment" : "Κλείστε το ραντεβού", "Reminder" : "Υπενθύμιση", "before at" : "πριν από το", "Notification" : "Ειδοποίηση", @@ -237,7 +236,7 @@ OC.L10N.register( "Invitation declined" : "Η πρόσκληση απορρίφθηκε.", "Declined {organizerName}'s invitation" : "Απόρριψη της πρόσκλησης του {organizerName}", "Invitation is delegated" : "Η πρόσκληση παραπέμφθηκε", - "Participation marked as tentative" : "Η συμμετοχή χαρακτηρίστηκε ως δοκιμαστική", + "Participation marked as tentative" : "Η συμμετοχή χαρακτηρίστηκε ως με επιφύλαξη", "Invitation sent" : "Η πρόσκληση εστάλη", "Has not responded to {organizerName}'s invitation yet" : "Δεν έχετε απαντήσει ακόμα στην πρόσκληση του/της {organizerName}", "Availability of attendees, resources and rooms" : "Διαθεσιμότητα των συμμετεχόντων, των πόρων και των δωματίων", @@ -459,8 +458,8 @@ OC.L10N.register( "Meditation" : "Διαλογισμός", "Relaxing" : "Χαλάρωση", "Relax" : "Ξεκούραση", - "Break" : "Διάλλειμα", - "Commute" : "Μετακίνούμαι", + "Break" : "Διάλειμμα", + "Commute" : "Μετακίνηση προς την εργασία", "Commuting" : "Μετακίνηση", "Invoice" : "Tιμολόγιο", "Finance" : "Χρηματοοικονομικά", diff --git a/l10n/el.json b/l10n/el.json index 35ac24a868304bf1d8d8225f8185866b13f7ae05..0b7ad7ee5b78642a7e04af8e97e8f6b396f4f9bd 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -15,10 +15,10 @@ "Prepare for %s" : "Προετοιμασία για %s", "Follow up for %s" : "Επόμενο για %s", "Your appointment \"%s\" needs confirmation" : "Το ραντεβού σας \"%s\" χρειάζεται επιβεβαίωση.", - "Dear %s, please confirm your booking" : "Αγαπητέ %s, παρακαλω επιβεβαιώστε την κράτησή σας", + "Dear %s, please confirm your booking" : "Αγαπητέ/ή %s, παρακαλώ επιβεβαιώστε την κράτησή σας", "Confirm" : "Επιβεβαιώνω", "This confirmation link expires in %s hours." : "Αυτός ο σύνδεσμος επιβεβαίωσης λήγει σε %s ώρες", - "If you wish to cancel the appointment after all, please contact your organizer." : "Εάν τελικά επιθυμείτε να ακυρώσετε την κράτησή σας, παρακαλούμε να ενημερώσετε τον διοργανωτή σας.", + "If you wish to cancel the appointment after all, please contact your organizer." : "Εάν τελικά επιθυμείτε να ακυρώσετε το ραντεβού σας, παρακαλούμε να ενημερώσετε τον διοργανωτή σας.", "Appointment:" : "Ραντεβού:", "Date:" : "Ημερομηνία:", "Where:" : "Που:", @@ -42,8 +42,8 @@ "Copy link" : "Αντιγραφή συνδέσμου", "Edit" : "Επεξεργασία", "Delete" : "Διαγραφή", - "Appointment link was copied to clipboard" : "Ο σύνδεσμος λίστας αντιγράφηκε στο πρόχειρο.", - "Appointment link could not be copied to clipboard" : "Δεν ήταν δυνατή η αντιγραφή του συνδέσμου λίστας στο πρόχειρο.", + "Appointment link was copied to clipboard" : "Ο σύνδεσμος του ραντεβού αντιγράφηκε στο πρόχειρο.", + "Appointment link could not be copied to clipboard" : "Δεν ήταν δυνατή η αντιγραφή του συνδέσμου ραντεβού στο πρόχειρο.", "Add new" : "Προσθήκη νέου", "Untitled calendar" : "Ημερολόγιο χωρίς τίτλο", "Disable calendar" : "Απενεργοποιήστε το ημερολόγιο", @@ -148,7 +148,7 @@ "Limit visible events per view" : "Περιορισμός ορατών γεγονότων ανά σελίδα", "Show weekends" : "Εμφάνιση σαββατοκύριακων", "Show week numbers" : "Εμφάνιση αριθμού εβδομάδας", - "Time increments" : "Χρονικές προσαυξήσεις", + "Time increments" : "Χρόνος μεταξύ δυο ραντεβού", "Default reminder" : "Προεπιλεγμένη υπενθύμιση", "Copy primary CalDAV address" : "Αντιγραφή κύριας διεύθυνσης CalDAV", "Copy iOS/macOS CalDAV address" : "Αντιγραφή διεύθυνσης iOS/macOS CalDAV", @@ -167,7 +167,7 @@ "_{duration} week_::_{duration} weeks_" : ["{duration} εβδομάδα","{duration} εβδομάδες"], "_{duration} month_::_{duration} months_" : ["{duration} μήνα","{duration} μήνες"], "_{duration} year_::_{duration} years_" : ["{duration} χρόνο","{duration} χρόνια"], - "To configure appointments, add your email address in personal settings." : "Για να ρυθμίσετε τα ραντεβού σας, προσθέστε την διέυθυνση email στις προσωπικές ρυθμίσεις", + "To configure appointments, add your email address in personal settings." : "Για να ρυθμίσετε τα ραντεβού σας, προσθέστε την διεύθυνση email στις προσωπικές ρυθμίσεις", "Public – shown on the profile page" : "Δημόσιο - εμφανίζεται στο προφίλ", "Private – only accessible via secret link" : "Ιδιωτικό - προσβάσιμο μόνο μέσω κρυφού συνδέσμου", "Location" : "Τοποθεσία", @@ -188,24 +188,23 @@ "Friday" : "Παρασκευή", "Saturday" : "Σάββατο", "Sunday" : "Κυριακή", - "Add time before and after the event" : "Προσθέστε χρόνο πρίν και μετά απο το γεγονός", - "Before the event" : "Πρίν το γεγονός", + "Add time before and after the event" : "Προσθέστε χρόνο πριν και μετά από το γεγονός", + "Before the event" : "Πριν το γεγονός", "After the event" : "Μετά το γεγονός", "Planning restrictions" : "Περιορισμοί σχεδιασμού", "Minimum time before next available slot" : "Ελάχιστος χρόνος πριν το επόμενο διαθέσιμο κενό", - "Max slots per day" : "Μέγιστες θέσεις ανα ημέρα", + "Max slots per day" : "Μέγιστες θέσεις ανά ημέρα", "Limit how far in the future appointments can be booked" : "Περιορίστε πόσο μακριά μπορούν να κανονιστούν μελλοντικά ραντεβού", "Create appointment" : "Δημιουργία ραντεβού", "Edit appointment" : "Επεξεργασία ραντεβού", "Save" : "Αποθήκευση", "Update" : "Ενημέρωση", - "Your appointment is booked" : "Το ραντεβού σας έχει κανονιστεί", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Σας στείλαμε ενα email με τις λεπτομέρειες. Παρακαλούμε να επιβεβαιώσετε το ραντεβού κάνοντας χρήση του συνδέσμου στο email. Μπορείτε να κλείσετε αυτή την σελίδα ", "Your name" : "Το όνομά σας", "Your email address" : "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας", "Please share anything that will help prepare for our meeting" : "Παρακαλούμε να μοιραστείτε οτιδήποτε θα βοηθούσε στην προετοιμασία της συνάντησης", "Could not book the appointment. Please try again later or contact the organizer." : "Δεν μπορέσαμε να κανουμε την κράτηση του ραντεβού. Παρακαλώ δοκιμάστε ξανά αργότερα ή επικοινωνήστε με τον διοργανωτή", - "Book the appointment" : "Κλείστε το Ραντεβού Σας", + "Book the appointment" : "Κλείστε το ραντεβού", "Reminder" : "Υπενθύμιση", "before at" : "πριν από το", "Notification" : "Ειδοποίηση", @@ -235,7 +234,7 @@ "Invitation declined" : "Η πρόσκληση απορρίφθηκε.", "Declined {organizerName}'s invitation" : "Απόρριψη της πρόσκλησης του {organizerName}", "Invitation is delegated" : "Η πρόσκληση παραπέμφθηκε", - "Participation marked as tentative" : "Η συμμετοχή χαρακτηρίστηκε ως δοκιμαστική", + "Participation marked as tentative" : "Η συμμετοχή χαρακτηρίστηκε ως με επιφύλαξη", "Invitation sent" : "Η πρόσκληση εστάλη", "Has not responded to {organizerName}'s invitation yet" : "Δεν έχετε απαντήσει ακόμα στην πρόσκληση του/της {organizerName}", "Availability of attendees, resources and rooms" : "Διαθεσιμότητα των συμμετεχόντων, των πόρων και των δωματίων", @@ -457,8 +456,8 @@ "Meditation" : "Διαλογισμός", "Relaxing" : "Χαλάρωση", "Relax" : "Ξεκούραση", - "Break" : "Διάλλειμα", - "Commute" : "Μετακίνούμαι", + "Break" : "Διάλειμμα", + "Commute" : "Μετακίνηση προς την εργασία", "Commuting" : "Μετακίνηση", "Invoice" : "Tιμολόγιο", "Finance" : "Χρηματοοικονομικά", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 6367cfbe14c4149bf0671cb526cc710a93e15bf5..45ec12e2b5fa99e61cb41e72f733717aa74ee693 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -10,6 +10,9 @@ OC.L10N.register( "Open »%s«" : "Open »%s«", "Cheers!" : "Cheers!", "Upcoming events" : "Upcoming events", + "Confirm" : "Confirm", + "Where:" : "Where:", + "Description:" : "Description:", "Calendar" : "Calendar", "A Calendar app for Nextcloud" : "A Calendar app for Nextcloud", "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s match days in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events.\n* ⌚️ **Free/Busy!** See when your attendees are available to meet.\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email.\n* 🔍 Search! Find your events at ease.\n* ☑️ Tasks! See tasks with a due date directly in the calendar.\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries.", @@ -19,15 +22,20 @@ OC.L10N.register( "Next day" : "Next day", "Next week" : "Next week", "Next month" : "Next month", + "New event" : "New event", "Today" : "Today", "Day" : "Day", "Week" : "Week", "Month" : "Month", "List" : "List", + "Preview" : "Preview", + "Copy link" : "Copy link", + "Edit" : "Edit", "Delete" : "Delete", "Untitled calendar" : "Untitled calendar", "Edit color" : "Edit colour", "Copy private link" : "Copy private link", + "Export" : "Export", "An error occurred, unable to change visibility of the calendar." : "An error occurred, unable to change visibility of the calendar.", "An error occurred, unable to delete the calendar." : "An error occurred, unable to delete the calendar.", "Calendar link copied to clipboard." : "Calendar link copied to clipboard.", @@ -39,37 +47,61 @@ OC.L10N.register( "Share with users or groups" : "Share with users or groups", "can edit" : "can edit", "New calendar" : "New calendar", + "Name" : "Surname", + "Deleted" : "Deleted", + "Restore" : "Restore", + "Delete permanently" : "Delete permanently", + "Empty trash bin" : "Empty trash bin", "Filename" : "Filename", "Cancel" : "Cancel", "Automatic" : "Automatic", "or" : "or", + "List view" : "List view", "Actions" : "Actions", "Show week numbers" : "Show week numbers", "Settings & import" : "Settings & import", "Location" : "Location", "Description" : "Description", + "to" : "to", + "Add" : "Add", "Monday" : "Monday", + "Tuesday" : "Tuesday", + "Wednesday" : "Wednesday", + "Thursday" : "Thursday", + "Friday" : "Friday", + "Saturday" : "Saturday", + "Sunday" : "Sunday", "Save" : "Save", "Update" : "Update", + "Your email address" : "Your email address", "Notification" : "Notification", "Email" : "Email", + "Available" : "Available", "Busy" : "Busy", "Unknown" : "Unknown", + "Accept" : "Accept", + "Decline" : "Decline", "Tentative" : "Tentative", + "Send email" : "Send email", "All day" : "All day", "Repeat" : "Repeat", "never" : "never", "after" : "after", + "available" : "available", "More" : "More", "Global" : "Global", "Personal" : "Personal", "Details" : "Details", "Attendees" : "Attendees", + "Resources" : "Resources", "Close" : "Close", "Anniversary" : "Anniversary", "Week {number} of {year}" : "Week {number} of {year}", "Daily" : "Daily", "Weekly" : "Weekly", + "Prev" : "Prev", + "Next" : "Next", + "Other" : "Other", "When shared show full event" : "When shared show full event", "When shared show only busy" : "When shared show only busy", "When shared hide this event" : "When shared hide this event", @@ -78,15 +110,12 @@ OC.L10N.register( "Categories" : "Categories", "Custom color" : "Custom colour", "Presentation" : "Presentation", + "Talk" : "Talk", "Review" : "Review", "Office" : "Office", "Mail" : "Mail", - "Invitation Tentatively Accepted: %s": "Invitation Tentatively Accepted: %s", - "Tentatively Accepted": "Tentatively Accepted", - "Accepted": "Accepted", - "Declined": "Declined", - "%s has declined your invitation to %s on %s" : "%s has declined your invitation to %s on %s", - "%s has accepted your invitation to %s on %s" : "%s has accepted your invitation to %s on %s", - "%s has tentatively accepted your invitation to %s on %s" : "%s has tentatively accepted your invitation to %s on %s" + "Health" : "Health", + "Birthday" : "Birthday", + "User not found" : "User not found" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 7c863649e8cc0554fb645e822ec5c0dcdfc36da3..09e8f691661994d45cc9af4d2d5b39144245242e 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -1,90 +1,119 @@ { "translations": { - "Provided email-address is not valid" : "Provided email address is not valid", - "%s has published the calendar »%s«" : "%s has published the calendar »%s«", - "Unexpected error sending email. Please contact your administrator." : "Unexpected error sending email. Please contact your administrator.", - "Successfully sent email to %1$s" : "Successfully sent email to %1$s", - "Hello," : "Hello,", - "We wanted to inform you that %s has published the calendar »%s«." : "We wanted to inform you that %s has published the calendar »%s«.", - "Open »%s«" : "Open »%s«", - "Cheers!" : "Cheers!", - "Upcoming events" : "Upcoming events", - "Calendar" : "Calendar", - "A Calendar app for Nextcloud" : "A Calendar app for Nextcloud", - "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s match days in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events.\n* ⌚️ **Free/Busy!** See when your attendees are available to meet.\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email.\n* 🔍 Search! Find your events at ease.\n* ☑️ Tasks! See tasks with a due date directly in the calendar.\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries.", - "Previous day" : "Previous day", - "Previous week" : "Previous week", - "Previous month" : "Previous month", - "Next day" : "Next day", - "Next week" : "Next week", - "Next month" : "Next month", - "Today" : "Today", - "Day" : "Day", - "Week" : "Week", - "Month" : "Month", - "List" : "List", - "Delete" : "Delete", - "Untitled calendar" : "Untitled calendar", - "Edit color" : "Edit colour", - "Copy private link" : "Copy private link", - "An error occurred, unable to change visibility of the calendar." : "An error occurred, unable to change visibility of the calendar.", - "An error occurred, unable to delete the calendar." : "An error occurred, unable to delete the calendar.", - "Calendar link copied to clipboard." : "Calendar link copied to clipboard.", - "Calendar link could not be copied to clipboard." : "Calendar link could not be copied to clipboard.", - "An error occurred, unable to change the calendar's color." : "An error occurred, unable to change the calendar's colour.", - "Share link" : "Share link", - "Publish calendar" : "Publish calendar", - "Publishing calendar" : "Publishing calendar", - "Share with users or groups" : "Share with users or groups", - "can edit" : "can edit", - "New calendar" : "New calendar", - "Filename" : "Filename", - "Cancel" : "Cancel", - "Automatic" : "Automatic", - "or" : "or", - "Actions" : "Actions", - "Show week numbers" : "Show week numbers", - "Settings & import" : "Settings & import", - "Location" : "Location", - "Description" : "Description", - "Monday" : "Monday", - "Save" : "Save", - "Update" : "Update", - "Notification" : "Notification", - "Email" : "Email", - "Busy" : "Busy", - "Unknown" : "Unknown", - "Tentative" : "Tentative", - "All day" : "All day", - "Repeat" : "Repeat", - "never" : "never", - "after" : "after", - "More" : "More", - "Global" : "Global", - "Personal" : "Personal", - "Details" : "Details", - "Attendees" : "Attendees", - "Close" : "Close", - "Anniversary" : "Anniversary", - "Week {number} of {year}" : "Week {number} of {year}", - "Daily" : "Daily", - "Weekly" : "Weekly", - "When shared show full event" : "When shared show full event", - "When shared show only busy" : "When shared show only busy", - "When shared hide this event" : "When shared hide this event", - "Status" : "Status", - "Confirmed" : "Confirmed", - "Categories" : "Categories", - "Custom color" : "Custom colour", - "Presentation" : "Presentation", - "Review" : "Review", - "Office" : "Office", - "Mail" : "Mail", - "Invitation Tentatively Accepted: %s": "Invitation Tentatively Accepted: %s", - "Tentatively Accepted": "Tentatively Accepted", - "Accepted": "Accepted", - "Declined": "Declined", - "%s has declined your invitation to %s on %s" : "%s has declined your invitation to %s on %s", - "%s has accepted your invitation to %s on %s" : "%s has accepted your invitation to %s on %s", - "%s has tentatively accepted your invitation to %s on %s" : "%s has tentatively accepted your invitation to %s on %s" + "Provided email-address is not valid" : "Provided email address is not valid", + "%s has published the calendar »%s«" : "%s has published the calendar »%s«", + "Unexpected error sending email. Please contact your administrator." : "Unexpected error sending email. Please contact your administrator.", + "Successfully sent email to %1$s" : "Successfully sent email to %1$s", + "Hello," : "Hello,", + "We wanted to inform you that %s has published the calendar »%s«." : "We wanted to inform you that %s has published the calendar »%s«.", + "Open »%s«" : "Open »%s«", + "Cheers!" : "Cheers!", + "Upcoming events" : "Upcoming events", + "Confirm" : "Confirm", + "Where:" : "Where:", + "Description:" : "Description:", + "Calendar" : "Calendar", + "A Calendar app for Nextcloud" : "A Calendar app for Nextcloud", + "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s match days in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events.\n* ⌚️ **Free/Busy!** See when your attendees are available to meet.\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email.\n* 🔍 Search! Find your events at ease.\n* ☑️ Tasks! See tasks with a due date directly in the calendar.\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries.", + "Previous day" : "Previous day", + "Previous week" : "Previous week", + "Previous month" : "Previous month", + "Next day" : "Next day", + "Next week" : "Next week", + "Next month" : "Next month", + "New event" : "New event", + "Today" : "Today", + "Day" : "Day", + "Week" : "Week", + "Month" : "Month", + "List" : "List", + "Preview" : "Preview", + "Copy link" : "Copy link", + "Edit" : "Edit", + "Delete" : "Delete", + "Untitled calendar" : "Untitled calendar", + "Edit color" : "Edit colour", + "Copy private link" : "Copy private link", + "Export" : "Export", + "An error occurred, unable to change visibility of the calendar." : "An error occurred, unable to change visibility of the calendar.", + "An error occurred, unable to delete the calendar." : "An error occurred, unable to delete the calendar.", + "Calendar link copied to clipboard." : "Calendar link copied to clipboard.", + "Calendar link could not be copied to clipboard." : "Calendar link could not be copied to clipboard.", + "An error occurred, unable to change the calendar's color." : "An error occurred, unable to change the calendar's colour.", + "Share link" : "Share link", + "Publish calendar" : "Publish calendar", + "Publishing calendar" : "Publishing calendar", + "Share with users or groups" : "Share with users or groups", + "can edit" : "can edit", + "New calendar" : "New calendar", + "Name" : "Surname", + "Deleted" : "Deleted", + "Restore" : "Restore", + "Delete permanently" : "Delete permanently", + "Empty trash bin" : "Empty trash bin", + "Filename" : "Filename", + "Cancel" : "Cancel", + "Automatic" : "Automatic", + "or" : "or", + "List view" : "List view", + "Actions" : "Actions", + "Show week numbers" : "Show week numbers", + "Settings & import" : "Settings & import", + "Location" : "Location", + "Description" : "Description", + "to" : "to", + "Add" : "Add", + "Monday" : "Monday", + "Tuesday" : "Tuesday", + "Wednesday" : "Wednesday", + "Thursday" : "Thursday", + "Friday" : "Friday", + "Saturday" : "Saturday", + "Sunday" : "Sunday", + "Save" : "Save", + "Update" : "Update", + "Your email address" : "Your email address", + "Notification" : "Notification", + "Email" : "Email", + "Available" : "Available", + "Busy" : "Busy", + "Unknown" : "Unknown", + "Accept" : "Accept", + "Decline" : "Decline", + "Tentative" : "Tentative", + "Send email" : "Send email", + "All day" : "All day", + "Repeat" : "Repeat", + "never" : "never", + "after" : "after", + "available" : "available", + "More" : "More", + "Global" : "Global", + "Personal" : "Personal", + "Details" : "Details", + "Attendees" : "Attendees", + "Resources" : "Resources", + "Close" : "Close", + "Anniversary" : "Anniversary", + "Week {number} of {year}" : "Week {number} of {year}", + "Daily" : "Daily", + "Weekly" : "Weekly", + "Prev" : "Prev", + "Next" : "Next", + "Other" : "Other", + "When shared show full event" : "When shared show full event", + "When shared show only busy" : "When shared show only busy", + "When shared hide this event" : "When shared hide this event", + "Status" : "Status", + "Confirmed" : "Confirmed", + "Categories" : "Categories", + "Custom color" : "Custom colour", + "Presentation" : "Presentation", + "Talk" : "Talk", + "Review" : "Review", + "Office" : "Office", + "Mail" : "Mail", + "Health" : "Health", + "Birthday" : "Birthday", + "User not found" : "User not found" },"pluralForm" :"nplurals=2; plural=(n != 1);" } diff --git a/l10n/eo.js b/l10n/eo.js index b02e387264747b07b3f27472da7c8240bf8e6705..13465b94d8cc51e2cf391a006696252f43b03bb4 100644 --- a/l10n/eo.js +++ b/l10n/eo.js @@ -6,14 +6,23 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Ni volis sciigi vin, ke %s publikigis la kalendaron „%s“.", "Open »%s«" : "Malfermi „%s“", "Cheers!" : "Ĝis!", + "Confirm" : "Konfirmi", + "Date:" : "Dato:", + "Where:" : "Kie:", + "Description:" : "Priskribo:", "Calendar" : "Kalendaro", "A Calendar app for Nextcloud" : "Aplikaĵo pri kalendaro por Nextcloud", + "New event" : "Nova okazaĵo", "Today" : "Hodiaŭ", "Day" : "Tago", "Week" : "Semajno", "Month" : "Monato", + "Preview" : "Antaŭvidi", + "Copy link" : "Kopii ligilon", + "Edit" : "Modifi", "Delete" : "Forigi", "Copy private link" : "Kopii privatan ligilon", + "Export" : "Eksporti", "Calendar link copied to clipboard." : "Kalendara ligilo kopiita al tondujo", "Calendar link could not be copied to clipboard." : "Kalendara ligilo ne eblis esti kopiita al tondujo", "Share link" : "Kunhavigi ligilon", @@ -22,21 +31,39 @@ OC.L10N.register( "No users or groups" : "Neniu uzanto aŭ grupo", "can edit" : "povas redakti", "New calendar" : "Nova kalendaro", + "Name" : "Nomo", + "Deleted" : "Forigita", + "Restore" : "Restaŭri", + "Delete permanently" : "Forigi por ĉiam", "Filename" : "Dosiernomo", "Cancel" : "Nuligi", "Automatic" : "Aŭtomata", + "List view" : "Lista vido", "Actions" : "Agoj", "Show week numbers" : "Montri numerojn de semajno", "Settings & import" : "Agordoj kaj enporto", "Location" : "Loko", "Description" : "Priskribo", + "to" : "al", + "Add" : "Aldoni", "Monday" : "lundo", + "Tuesday" : "mardo", + "Wednesday" : "merkredo", + "Thursday" : "ĵaŭdo", + "Friday" : "vendredo", + "Saturday" : "sabato", + "Sunday" : "dimanĉo", "Save" : "Konservi", "Update" : "Ĝisdatigi", + "Your email address" : "Via retpoŝta adreso", "Email" : "Retpoŝto", + "Available" : "Disponeblaj", "Busy" : "Okupita", "Unknown" : "Nekonata", + "Accept" : "Akcepti", + "Decline" : "Malakcepti", "Tentative" : "Nekonfirmita", + "Send email" : "Sendi retpoŝtmesaĝon", "All day" : "Tuttage", "Repeat" : "Ripeti", "never" : "neniam", @@ -49,12 +76,15 @@ OC.L10N.register( "[Yesterday]" : "[Hieraŭ]", "Details" : "Detaloj", "Attendees" : "Ĉeestontoj", + "Resources" : "Rimedoj", "Close" : "Fermi", "Anniversary" : "Datreveno", "Week {number} of {year}" : "Semajno {number} en {year}", "Daily" : "Ĉiutage", "Weekly" : "Ĉiusemajne", "Untitled event" : "Sentitola okazaĵo", + "Next" : "Sekva", + "Other" : "Alia", "When shared show full event" : "Kiam kunhavigita, montri plenajn detalojn", "When shared show only busy" : "Kiam kunhavigita, montri nur kiel okupita", "When shared hide this event" : "Kiam kunhavigita, kaŝi tiun okazaĵon", @@ -63,6 +93,9 @@ OC.L10N.register( "Canceled" : "Nuligita", "Categories" : "Kategorioj", "Add this as a new category" : "Aldoni tion kiel novan kategorion", - "Mail" : "Retpoŝtilo" + "Talk" : "Paroli", + "Mail" : "Retpoŝtilo", + "Birthday" : "Naskiĝotago", + "User not found" : "Netrovita uzanto" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/eo.json b/l10n/eo.json index 3a63e817161c08f7594ecfde591e6119ffbc77cb..87eb33e94c2373955ea1c6bf710ae6c47f396288 100644 --- a/l10n/eo.json +++ b/l10n/eo.json @@ -4,14 +4,23 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Ni volis sciigi vin, ke %s publikigis la kalendaron „%s“.", "Open »%s«" : "Malfermi „%s“", "Cheers!" : "Ĝis!", + "Confirm" : "Konfirmi", + "Date:" : "Dato:", + "Where:" : "Kie:", + "Description:" : "Priskribo:", "Calendar" : "Kalendaro", "A Calendar app for Nextcloud" : "Aplikaĵo pri kalendaro por Nextcloud", + "New event" : "Nova okazaĵo", "Today" : "Hodiaŭ", "Day" : "Tago", "Week" : "Semajno", "Month" : "Monato", + "Preview" : "Antaŭvidi", + "Copy link" : "Kopii ligilon", + "Edit" : "Modifi", "Delete" : "Forigi", "Copy private link" : "Kopii privatan ligilon", + "Export" : "Eksporti", "Calendar link copied to clipboard." : "Kalendara ligilo kopiita al tondujo", "Calendar link could not be copied to clipboard." : "Kalendara ligilo ne eblis esti kopiita al tondujo", "Share link" : "Kunhavigi ligilon", @@ -20,21 +29,39 @@ "No users or groups" : "Neniu uzanto aŭ grupo", "can edit" : "povas redakti", "New calendar" : "Nova kalendaro", + "Name" : "Nomo", + "Deleted" : "Forigita", + "Restore" : "Restaŭri", + "Delete permanently" : "Forigi por ĉiam", "Filename" : "Dosiernomo", "Cancel" : "Nuligi", "Automatic" : "Aŭtomata", + "List view" : "Lista vido", "Actions" : "Agoj", "Show week numbers" : "Montri numerojn de semajno", "Settings & import" : "Agordoj kaj enporto", "Location" : "Loko", "Description" : "Priskribo", + "to" : "al", + "Add" : "Aldoni", "Monday" : "lundo", + "Tuesday" : "mardo", + "Wednesday" : "merkredo", + "Thursday" : "ĵaŭdo", + "Friday" : "vendredo", + "Saturday" : "sabato", + "Sunday" : "dimanĉo", "Save" : "Konservi", "Update" : "Ĝisdatigi", + "Your email address" : "Via retpoŝta adreso", "Email" : "Retpoŝto", + "Available" : "Disponeblaj", "Busy" : "Okupita", "Unknown" : "Nekonata", + "Accept" : "Akcepti", + "Decline" : "Malakcepti", "Tentative" : "Nekonfirmita", + "Send email" : "Sendi retpoŝtmesaĝon", "All day" : "Tuttage", "Repeat" : "Ripeti", "never" : "neniam", @@ -47,12 +74,15 @@ "[Yesterday]" : "[Hieraŭ]", "Details" : "Detaloj", "Attendees" : "Ĉeestontoj", + "Resources" : "Rimedoj", "Close" : "Fermi", "Anniversary" : "Datreveno", "Week {number} of {year}" : "Semajno {number} en {year}", "Daily" : "Ĉiutage", "Weekly" : "Ĉiusemajne", "Untitled event" : "Sentitola okazaĵo", + "Next" : "Sekva", + "Other" : "Alia", "When shared show full event" : "Kiam kunhavigita, montri plenajn detalojn", "When shared show only busy" : "Kiam kunhavigita, montri nur kiel okupita", "When shared hide this event" : "Kiam kunhavigita, kaŝi tiun okazaĵon", @@ -61,6 +91,9 @@ "Canceled" : "Nuligita", "Categories" : "Kategorioj", "Add this as a new category" : "Aldoni tion kiel novan kategorion", - "Mail" : "Retpoŝtilo" + "Talk" : "Paroli", + "Mail" : "Retpoŝtilo", + "Birthday" : "Naskiĝotago", + "User not found" : "Netrovita uzanto" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es.js b/l10n/es.js index cd83d1e757b6e359bbf7fa28f8d064691a0c11c6..1f0df70c68584ee3ea813561d8ebba20446bccb3 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -34,6 +34,7 @@ OC.L10N.register( "Next day" : "Día siguiente", "Next week" : "Semana siguiente", "Next month" : "Mes siguiente", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", @@ -47,11 +48,14 @@ OC.L10N.register( "Appointment link could not be copied to clipboard" : "No se ha podido copiar el enlace de la cita al portapapeles", "Add new" : "Añadir nuevo", "Untitled calendar" : "Calendario sin título", + "Disable calendar" : "Deshabilitar calendario", + "Enable calendar" : "Habilitar calendario", "Edit name" : "Editar el nombre", "Saving name …" : "Guardando nombre…", "Edit color" : "Editar color", "Saving color …" : "Guardando color…", "Copy private link" : "Copiar enlace privado", + "Export" : "Exportar", "Unshare from me" : "Dejar de compartir conmigo", "An error occurred, unable to change visibility of the calendar." : "Se ha producido un error, no se ha podido cambiar la visibilidad del calendario.", "An error occurred, unable to delete the calendar." : "Se ha producido un error, no se ha podido borrar el calendario.", @@ -59,8 +63,8 @@ OC.L10N.register( "Calendar link could not be copied to clipboard." : "El enlace de calendario no se ha podido copiar al portapapeles. ", "An error occurred, unable to rename the calendar." : "Se ha producido un error, no se ha podido renombrar el calendario.", "An error occurred, unable to change the calendar's color." : "Se ha producido un error, no se ha podido cambiar el color del calendario.", - "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Dejando de compartir el calendario en {countdown} segundo","Dejando de compartir el calendario en {countdown} segundos"], - "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Borrando el calendario en {countdown} segundo","Eliminando el calendario en {countdown} segundos"], + "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Dejando de compartir el calendario en {countdown} segundo","Dejando de compartir el calendario en {countdown} segundos","Dejando de compartir el calendario en {countdown} segundos"], + "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Borrando el calendario en {countdown} segundo","Eliminando el calendario en {countdown} segundos","Eliminando el calendario en {countdown} segundos"], "Share link" : "Compartir enlace", "Publish calendar" : "Publicar calendario", "Publishing calendar" : "Publicando calendario", @@ -111,18 +115,19 @@ OC.L10N.register( "Could not load deleted calendars and objects" : "No es posible cargar calendarios u objetos eliminados", "Could not restore calendar or event" : "No es posible restaurar el calendario o evento", "Do you really want to empty the trash bin?" : "¿De verdad quieres vaciar la papelera?", - "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["Los elementos de la papelera se eliminarán tras pasar {numDays} día","Los elementos de la papelera se eliminarán tras pasar {numDays} días"], + "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["Los elementos de la papelera se eliminarán tras pasar {numDays} día","Los elementos de la papelera se eliminarán tras pasar {numDays} días","Los elementos de la papelera se eliminarán tras pasar {numDays} días"], "Could not update calendar order." : "No se puede actualizar el orden del calendario.", "Import calendars" : "Importar calendarios", "Please select a calendar to import into …" : "Por favor, selecciona un calendario al que importar…", "Filename" : "Nombre de archivo", "Calendar to import into" : "Calendario en el cual importar", "Cancel" : "Cancelar", - "_Import calendar_::_Import calendars_" : ["Importar calendario","Importar calendarios"], + "_Import calendar_::_Import calendars_" : ["Importar calendario","Importar calendarios","Importar calendarios"], "{filename} is an unsupported file-type" : "{filename} es un tipo de archivo no soportado", "{filename} could not be parsed" : "{filename} no pudo ser analizado", "No valid files found, aborting import" : "No se han encontrado archivos válidos, cancelando la importación", "Import partially failed. Imported {accepted} out of {total}." : "La importación ha fallado parcialmente. Importados {accepted} sobre {total}.", + "_Successfully imported %n event_::_Successfully imported %n events_" : ["Se ha importado con éxito %n evento.","Se han importado con éxito %n eventos.","Se han importado con éxito %n eventos."], "Automatic" : "Automático", "Automatic ({detected})" : "Automático ({detected})", "New setting was not saved successfully." : "El nuevo ajuste no ha podido ser guardado correctamente.", @@ -139,6 +144,10 @@ OC.L10N.register( "Actions" : "Acciones", "Create event" : "Crear evento", "Show shortcuts" : "Mostrar atajos", + "Editor" : "Editor", + "Close editor" : "Cerrar editor", + "Save edited event" : "Guardar el evento editado", + "Delete edited event" : "Borrar el evento editado", "Enable birthday calendar" : "Permitir calendario de cumpleaños", "Show tasks in calendar" : "Ver tareas en el calendario", "Enable simplified editor" : "Activar editor simplificado", @@ -157,13 +166,13 @@ OC.L10N.register( "CalDAV link could not be copied to clipboard." : "El enlace CalDAV no se puede copiar al portapapeles", "Appointment was created successfully" : "Se ha creado la cita exitosamente", "Appointment was updated successfully" : "Se ha actualizado la cita exitosamente", - "_{duration} minute_::_{duration} minutes_" : ["{duración} minuto","{duración} minutos"], + "_{duration} minute_::_{duration} minutes_" : ["{duración} minuto","{duración} minutos","{duración} minutos"], "0 minutes" : "0 minutos", - "_{duration} hour_::_{duration} hours_" : ["{duration} hora","{duration} horas"], - "_{duration} day_::_{duration} days_" : ["{duration} día","{duration} días"], - "_{duration} week_::_{duration} weeks_" : ["{duration} semana","{duration} semanas"], - "_{duration} month_::_{duration} months_" : ["{duration} mes","{duration} meses"], - "_{duration} year_::_{duration} years_" : ["{duration} año","{duration} años"], + "_{duration} hour_::_{duration} hours_" : ["{duration} hora","{duration} horas","{duration} horas"], + "_{duration} day_::_{duration} days_" : ["{duration} día","{duration} días","{duration} días"], + "_{duration} week_::_{duration} weeks_" : ["{duration} semana","{duration} semanas","{duration} semanas"], + "_{duration} month_::_{duration} months_" : ["{duration} mes","{duration} meses","{duration} meses"], + "_{duration} year_::_{duration} years_" : ["{duration} año","{duration} años","{duration} años"], "To configure appointments, add your email address in personal settings." : "Para configurar citas, añade tu dirección de correo en ajustes personales.", "Public – shown on the profile page" : "Público - visible en la página de perfil", "Private – only accessible via secret link" : "Privado - solamente accesible vía enlace secreto", @@ -196,7 +205,7 @@ OC.L10N.register( "Edit appointment" : "Editar cita", "Save" : "Guardar", "Update" : "Actualizar", - "Your appointment is booked" : "Tu cita está reservada", + "Please confirm your reservation" : "Por favor, confirme su reserva", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Te hemos enviado un correo con los detalles. Por favor, confirma tu cita usando el enlace del correo. Ahora puedes cerrar esta página.", "Your name" : "Tu nombre", "Your email address" : "Tu dirección de correo", @@ -218,12 +227,23 @@ OC.L10N.register( "at" : "a", "+ Add reminder" : "+ Añadir recordatorio", "Add reminder" : "Añadir recordatorio", - "_second_::_seconds_" : ["segundo","segundos"], - "_minute_::_minutes_" : ["minuto","minutos"], - "_hour_::_hours_" : ["hora","horas"], - "_day_::_days_" : ["día","días"], - "_week_::_weeks_" : ["semana","semanas"], + "_second_::_seconds_" : ["segundo","segundos","segundos"], + "_minute_::_minutes_" : ["minuto","minutos","minutos"], + "_hour_::_hours_" : ["hora","horas","horas"], + "_day_::_days_" : ["día","días","días"], + "_week_::_weeks_" : ["semana","semanas","semanas"], + "Suggested" : "Sugerido", "Available" : "Disponible", + "Not available" : "No disponible", + "Checking availability" : "Comprobando disponibilidad", + "Invitation accepted" : "Invitación aceptada", + "Accepted {organizerName}'s invitation" : "Aceptada la invitación de {organizerName}", + "Invitation declined" : "Invitación rechazada", + "Declined {organizerName}'s invitation" : "Se ha rechazado la invitación de {organizerName}", + "Invitation is delegated" : "Se ha delegado la invitación", + "Participation marked as tentative" : "Participación marcada como provisional", + "Invitation sent" : "Invitación enviada", + "Has not responded to {organizerName}'s invitation yet" : "Todavía no ha respondido a la invitación de {organizerName}.", "Availability of attendees, resources and rooms" : "Disponibilidad de asistentes, recursos y habitaciones", "{organizer} (organizer)" : "{organizer} (organizador)", "Free" : "Libre", @@ -269,7 +289,7 @@ OC.L10N.register( "never" : "nunca", "on date" : "en fecha", "after" : "después de", - "_time_::_times_" : ["vez","veces"], + "_time_::_times_" : ["vez","veces","veces"], "This event is the recurrence-exception of a recurrence-set. You cannot add a recurrence-rule to it." : "Este evento es la excepción a la serie recurrente. No le puedes añadir una regla recurrente.", "first" : "primero", "third" : "tercero", @@ -281,8 +301,8 @@ OC.L10N.register( "Repeat every" : "Repetir cada", "By day of the month" : "Por día del mes", "On the" : "En el", - "_month_::_months_" : ["mes","meses"], - "_year_::_years_" : ["año","años"], + "_month_::_months_" : ["mes","meses","meses"], + "_year_::_years_" : ["año","años","años"], "weekday" : "día laborable", "weekend day" : "día de fin de semana", "No recurrence" : "No recurrente", @@ -294,7 +314,7 @@ OC.L10N.register( "Has a whiteboard" : "Tiene una pizarra", "Wheelchair accessible" : "Accesible en silla de ruedas", "Remove resource" : "Quitar recurso", - "_{seatingCapacity} seat_::_{seatingCapacity} seats_" : ["{seatingCapacity} asiento","{seatingCapacity} asientos"], + "_{seatingCapacity} seat_::_{seatingCapacity} seats_" : ["{seatingCapacity} asiento","{seatingCapacity} asientos","{seatingCapacity} asientos"], "Projector" : "Proyector", "Whiteboard" : "Pizarra blanca", "Search for resources or rooms" : "Buscar recursos o salas", @@ -355,6 +375,7 @@ OC.L10N.register( "Close" : "Cerrar", "Show more details" : "Ver más detalles", "Subscribe to {name}" : "Subscribir a {name}", + "Export {name}" : "Exportar {name}", "Anniversary" : "Aniversario", "Appointment" : "Cita", "Business" : "Empresa", @@ -370,8 +391,8 @@ OC.L10N.register( "Travel" : "Viaje", "Vacation" : "Vacaciones", "Midnight on the day the event starts" : "Medianoche del día en el que comienza el evento", - "_%n day before the event at {formattedHourMinute}_::_%n days before the event at {formattedHourMinute}_" : ["%n día antes del evento, a las {formattedHourMinute}","%n días antes del evento, a las {formattedHourMinute}"], - "_%n week before the event at {formattedHourMinute}_::_%n weeks before the event at {formattedHourMinute}_" : ["%n semana antes del evento, a las {formattedHourMinute}","%n semanas antes del evento, a las {formattedHourMinute}"], + "_%n day before the event at {formattedHourMinute}_::_%n days before the event at {formattedHourMinute}_" : ["%n día antes del evento, a las {formattedHourMinute}","%n días antes del evento, a las {formattedHourMinute}","%n días antes del evento, a las {formattedHourMinute}"], + "_%n week before the event at {formattedHourMinute}_::_%n weeks before the event at {formattedHourMinute}_" : ["%n semana antes del evento, a las {formattedHourMinute}","%n semanas antes del evento, a las {formattedHourMinute}","%n semanas antes del evento, a las {formattedHourMinute}"], "on the day of the event at {formattedHourMinute}" : "en el día del evento, a las {formattedHourMinute}", "at the event's start" : "al comienzo del evento", "at the event's end" : "al final del evento", @@ -387,17 +408,17 @@ OC.L10N.register( "Weekly" : "Semanalmente", "Monthly" : "Mensualmente", "Yearly" : "Anualmente", - "_Every %n day_::_Every %n days_" : ["Cada %n día","Cada %n días"], - "_Every %n week_::_Every %n weeks_" : ["Cada %n semana","Cada %n semanas"], - "_Every %n month_::_Every %n months_" : ["Cada %n mes","Cada %n meses"], - "_Every %n year_::_Every %n years_" : ["Cada %n año","Cada %n años"], - "_on {weekday}_::_on {weekdays}_" : ["en {weekday}","en {weekdays}"], - "_on day {dayOfMonthList}_::_on days {dayOfMonthList}_" : ["en día {dayOfMonthList}","en los días {dayOfMonthList}"], + "_Every %n day_::_Every %n days_" : ["Cada %n día","Cada %n días","Cada %n días"], + "_Every %n week_::_Every %n weeks_" : ["Cada %n semana","Cada %n semanas","Cada %n semanas"], + "_Every %n month_::_Every %n months_" : ["Cada %n mes","Cada %n meses","Cada %n meses"], + "_Every %n year_::_Every %n years_" : ["Cada %n año","Cada %n años","Cada %n años"], + "_on {weekday}_::_on {weekdays}_" : ["en {weekday}","en {weekdays}","en {weekdays}"], + "_on day {dayOfMonthList}_::_on days {dayOfMonthList}_" : ["en día {dayOfMonthList}","en los días {dayOfMonthList}","en los días {dayOfMonthList}"], "on the {ordinalNumber} {byDaySet}" : "en el {ordinalNumber} {byDaySet}", "in {monthNames}" : "n {monthNames}", "in {monthNames} on the {ordinalNumber} {byDaySet}" : "el {ordinalNumber} {byDaySet} de {monthNames} ", "until {untilDate}" : "hasta {untilDate}", - "_%n time_::_%n times_" : ["%n vez","%n veces"], + "_%n time_::_%n times_" : ["%n vez","%n veces","%n veces"], "Untitled event" : "Evento sin título", "Untitled task" : "Tarea sin título", "Please ask your administrator to enable the Tasks App." : "Por favor, solicite a su administrador que permita la aplicación de tareas.", @@ -409,7 +430,7 @@ OC.L10N.register( "W" : "S", "%n more" : "%n más", "No events to display" : "No hay eventos que mostrar", - "_+%n more_::_+%n more_" : ["+%n más","+%n más"], + "_+%n more_::_+%n more_" : ["+%n más","+%n más","+%n más"], "No events" : "No hay eventos", "Create a new event or change the visible time-range" : "Crea un evento nuevo o cambia el rango de horas visibles", "It might have been deleted, or there was a typo in a link" : "Puede haber sido borrado, o había una errata en el enlace", @@ -577,4 +598,4 @@ OC.L10N.register( "%s has accepted your invitation to %s on %s" : "%s ha aceptado tu invitación a %s el %s", "%s has tentatively accepted your invitation to %s on %s" : "%s ha provisionalmente aceptado tu invitación a %s el %s" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es.json b/l10n/es.json index 7b69fd4ba9caea648347945abe89a985943ca607..640d63c33973889655ec23340ad96f8add88b079 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -32,6 +32,7 @@ "Next day" : "Día siguiente", "Next week" : "Semana siguiente", "Next month" : "Mes siguiente", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", @@ -45,11 +46,14 @@ "Appointment link could not be copied to clipboard" : "No se ha podido copiar el enlace de la cita al portapapeles", "Add new" : "Añadir nuevo", "Untitled calendar" : "Calendario sin título", + "Disable calendar" : "Deshabilitar calendario", + "Enable calendar" : "Habilitar calendario", "Edit name" : "Editar el nombre", "Saving name …" : "Guardando nombre…", "Edit color" : "Editar color", "Saving color …" : "Guardando color…", "Copy private link" : "Copiar enlace privado", + "Export" : "Exportar", "Unshare from me" : "Dejar de compartir conmigo", "An error occurred, unable to change visibility of the calendar." : "Se ha producido un error, no se ha podido cambiar la visibilidad del calendario.", "An error occurred, unable to delete the calendar." : "Se ha producido un error, no se ha podido borrar el calendario.", @@ -57,8 +61,8 @@ "Calendar link could not be copied to clipboard." : "El enlace de calendario no se ha podido copiar al portapapeles. ", "An error occurred, unable to rename the calendar." : "Se ha producido un error, no se ha podido renombrar el calendario.", "An error occurred, unable to change the calendar's color." : "Se ha producido un error, no se ha podido cambiar el color del calendario.", - "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Dejando de compartir el calendario en {countdown} segundo","Dejando de compartir el calendario en {countdown} segundos"], - "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Borrando el calendario en {countdown} segundo","Eliminando el calendario en {countdown} segundos"], + "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Dejando de compartir el calendario en {countdown} segundo","Dejando de compartir el calendario en {countdown} segundos","Dejando de compartir el calendario en {countdown} segundos"], + "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Borrando el calendario en {countdown} segundo","Eliminando el calendario en {countdown} segundos","Eliminando el calendario en {countdown} segundos"], "Share link" : "Compartir enlace", "Publish calendar" : "Publicar calendario", "Publishing calendar" : "Publicando calendario", @@ -109,18 +113,19 @@ "Could not load deleted calendars and objects" : "No es posible cargar calendarios u objetos eliminados", "Could not restore calendar or event" : "No es posible restaurar el calendario o evento", "Do you really want to empty the trash bin?" : "¿De verdad quieres vaciar la papelera?", - "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["Los elementos de la papelera se eliminarán tras pasar {numDays} día","Los elementos de la papelera se eliminarán tras pasar {numDays} días"], + "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["Los elementos de la papelera se eliminarán tras pasar {numDays} día","Los elementos de la papelera se eliminarán tras pasar {numDays} días","Los elementos de la papelera se eliminarán tras pasar {numDays} días"], "Could not update calendar order." : "No se puede actualizar el orden del calendario.", "Import calendars" : "Importar calendarios", "Please select a calendar to import into …" : "Por favor, selecciona un calendario al que importar…", "Filename" : "Nombre de archivo", "Calendar to import into" : "Calendario en el cual importar", "Cancel" : "Cancelar", - "_Import calendar_::_Import calendars_" : ["Importar calendario","Importar calendarios"], + "_Import calendar_::_Import calendars_" : ["Importar calendario","Importar calendarios","Importar calendarios"], "{filename} is an unsupported file-type" : "{filename} es un tipo de archivo no soportado", "{filename} could not be parsed" : "{filename} no pudo ser analizado", "No valid files found, aborting import" : "No se han encontrado archivos válidos, cancelando la importación", "Import partially failed. Imported {accepted} out of {total}." : "La importación ha fallado parcialmente. Importados {accepted} sobre {total}.", + "_Successfully imported %n event_::_Successfully imported %n events_" : ["Se ha importado con éxito %n evento.","Se han importado con éxito %n eventos.","Se han importado con éxito %n eventos."], "Automatic" : "Automático", "Automatic ({detected})" : "Automático ({detected})", "New setting was not saved successfully." : "El nuevo ajuste no ha podido ser guardado correctamente.", @@ -137,6 +142,10 @@ "Actions" : "Acciones", "Create event" : "Crear evento", "Show shortcuts" : "Mostrar atajos", + "Editor" : "Editor", + "Close editor" : "Cerrar editor", + "Save edited event" : "Guardar el evento editado", + "Delete edited event" : "Borrar el evento editado", "Enable birthday calendar" : "Permitir calendario de cumpleaños", "Show tasks in calendar" : "Ver tareas en el calendario", "Enable simplified editor" : "Activar editor simplificado", @@ -155,13 +164,13 @@ "CalDAV link could not be copied to clipboard." : "El enlace CalDAV no se puede copiar al portapapeles", "Appointment was created successfully" : "Se ha creado la cita exitosamente", "Appointment was updated successfully" : "Se ha actualizado la cita exitosamente", - "_{duration} minute_::_{duration} minutes_" : ["{duración} minuto","{duración} minutos"], + "_{duration} minute_::_{duration} minutes_" : ["{duración} minuto","{duración} minutos","{duración} minutos"], "0 minutes" : "0 minutos", - "_{duration} hour_::_{duration} hours_" : ["{duration} hora","{duration} horas"], - "_{duration} day_::_{duration} days_" : ["{duration} día","{duration} días"], - "_{duration} week_::_{duration} weeks_" : ["{duration} semana","{duration} semanas"], - "_{duration} month_::_{duration} months_" : ["{duration} mes","{duration} meses"], - "_{duration} year_::_{duration} years_" : ["{duration} año","{duration} años"], + "_{duration} hour_::_{duration} hours_" : ["{duration} hora","{duration} horas","{duration} horas"], + "_{duration} day_::_{duration} days_" : ["{duration} día","{duration} días","{duration} días"], + "_{duration} week_::_{duration} weeks_" : ["{duration} semana","{duration} semanas","{duration} semanas"], + "_{duration} month_::_{duration} months_" : ["{duration} mes","{duration} meses","{duration} meses"], + "_{duration} year_::_{duration} years_" : ["{duration} año","{duration} años","{duration} años"], "To configure appointments, add your email address in personal settings." : "Para configurar citas, añade tu dirección de correo en ajustes personales.", "Public – shown on the profile page" : "Público - visible en la página de perfil", "Private – only accessible via secret link" : "Privado - solamente accesible vía enlace secreto", @@ -194,7 +203,7 @@ "Edit appointment" : "Editar cita", "Save" : "Guardar", "Update" : "Actualizar", - "Your appointment is booked" : "Tu cita está reservada", + "Please confirm your reservation" : "Por favor, confirme su reserva", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Te hemos enviado un correo con los detalles. Por favor, confirma tu cita usando el enlace del correo. Ahora puedes cerrar esta página.", "Your name" : "Tu nombre", "Your email address" : "Tu dirección de correo", @@ -216,12 +225,23 @@ "at" : "a", "+ Add reminder" : "+ Añadir recordatorio", "Add reminder" : "Añadir recordatorio", - "_second_::_seconds_" : ["segundo","segundos"], - "_minute_::_minutes_" : ["minuto","minutos"], - "_hour_::_hours_" : ["hora","horas"], - "_day_::_days_" : ["día","días"], - "_week_::_weeks_" : ["semana","semanas"], + "_second_::_seconds_" : ["segundo","segundos","segundos"], + "_minute_::_minutes_" : ["minuto","minutos","minutos"], + "_hour_::_hours_" : ["hora","horas","horas"], + "_day_::_days_" : ["día","días","días"], + "_week_::_weeks_" : ["semana","semanas","semanas"], + "Suggested" : "Sugerido", "Available" : "Disponible", + "Not available" : "No disponible", + "Checking availability" : "Comprobando disponibilidad", + "Invitation accepted" : "Invitación aceptada", + "Accepted {organizerName}'s invitation" : "Aceptada la invitación de {organizerName}", + "Invitation declined" : "Invitación rechazada", + "Declined {organizerName}'s invitation" : "Se ha rechazado la invitación de {organizerName}", + "Invitation is delegated" : "Se ha delegado la invitación", + "Participation marked as tentative" : "Participación marcada como provisional", + "Invitation sent" : "Invitación enviada", + "Has not responded to {organizerName}'s invitation yet" : "Todavía no ha respondido a la invitación de {organizerName}.", "Availability of attendees, resources and rooms" : "Disponibilidad de asistentes, recursos y habitaciones", "{organizer} (organizer)" : "{organizer} (organizador)", "Free" : "Libre", @@ -267,7 +287,7 @@ "never" : "nunca", "on date" : "en fecha", "after" : "después de", - "_time_::_times_" : ["vez","veces"], + "_time_::_times_" : ["vez","veces","veces"], "This event is the recurrence-exception of a recurrence-set. You cannot add a recurrence-rule to it." : "Este evento es la excepción a la serie recurrente. No le puedes añadir una regla recurrente.", "first" : "primero", "third" : "tercero", @@ -279,8 +299,8 @@ "Repeat every" : "Repetir cada", "By day of the month" : "Por día del mes", "On the" : "En el", - "_month_::_months_" : ["mes","meses"], - "_year_::_years_" : ["año","años"], + "_month_::_months_" : ["mes","meses","meses"], + "_year_::_years_" : ["año","años","años"], "weekday" : "día laborable", "weekend day" : "día de fin de semana", "No recurrence" : "No recurrente", @@ -292,7 +312,7 @@ "Has a whiteboard" : "Tiene una pizarra", "Wheelchair accessible" : "Accesible en silla de ruedas", "Remove resource" : "Quitar recurso", - "_{seatingCapacity} seat_::_{seatingCapacity} seats_" : ["{seatingCapacity} asiento","{seatingCapacity} asientos"], + "_{seatingCapacity} seat_::_{seatingCapacity} seats_" : ["{seatingCapacity} asiento","{seatingCapacity} asientos","{seatingCapacity} asientos"], "Projector" : "Proyector", "Whiteboard" : "Pizarra blanca", "Search for resources or rooms" : "Buscar recursos o salas", @@ -353,6 +373,7 @@ "Close" : "Cerrar", "Show more details" : "Ver más detalles", "Subscribe to {name}" : "Subscribir a {name}", + "Export {name}" : "Exportar {name}", "Anniversary" : "Aniversario", "Appointment" : "Cita", "Business" : "Empresa", @@ -368,8 +389,8 @@ "Travel" : "Viaje", "Vacation" : "Vacaciones", "Midnight on the day the event starts" : "Medianoche del día en el que comienza el evento", - "_%n day before the event at {formattedHourMinute}_::_%n days before the event at {formattedHourMinute}_" : ["%n día antes del evento, a las {formattedHourMinute}","%n días antes del evento, a las {formattedHourMinute}"], - "_%n week before the event at {formattedHourMinute}_::_%n weeks before the event at {formattedHourMinute}_" : ["%n semana antes del evento, a las {formattedHourMinute}","%n semanas antes del evento, a las {formattedHourMinute}"], + "_%n day before the event at {formattedHourMinute}_::_%n days before the event at {formattedHourMinute}_" : ["%n día antes del evento, a las {formattedHourMinute}","%n días antes del evento, a las {formattedHourMinute}","%n días antes del evento, a las {formattedHourMinute}"], + "_%n week before the event at {formattedHourMinute}_::_%n weeks before the event at {formattedHourMinute}_" : ["%n semana antes del evento, a las {formattedHourMinute}","%n semanas antes del evento, a las {formattedHourMinute}","%n semanas antes del evento, a las {formattedHourMinute}"], "on the day of the event at {formattedHourMinute}" : "en el día del evento, a las {formattedHourMinute}", "at the event's start" : "al comienzo del evento", "at the event's end" : "al final del evento", @@ -385,17 +406,17 @@ "Weekly" : "Semanalmente", "Monthly" : "Mensualmente", "Yearly" : "Anualmente", - "_Every %n day_::_Every %n days_" : ["Cada %n día","Cada %n días"], - "_Every %n week_::_Every %n weeks_" : ["Cada %n semana","Cada %n semanas"], - "_Every %n month_::_Every %n months_" : ["Cada %n mes","Cada %n meses"], - "_Every %n year_::_Every %n years_" : ["Cada %n año","Cada %n años"], - "_on {weekday}_::_on {weekdays}_" : ["en {weekday}","en {weekdays}"], - "_on day {dayOfMonthList}_::_on days {dayOfMonthList}_" : ["en día {dayOfMonthList}","en los días {dayOfMonthList}"], + "_Every %n day_::_Every %n days_" : ["Cada %n día","Cada %n días","Cada %n días"], + "_Every %n week_::_Every %n weeks_" : ["Cada %n semana","Cada %n semanas","Cada %n semanas"], + "_Every %n month_::_Every %n months_" : ["Cada %n mes","Cada %n meses","Cada %n meses"], + "_Every %n year_::_Every %n years_" : ["Cada %n año","Cada %n años","Cada %n años"], + "_on {weekday}_::_on {weekdays}_" : ["en {weekday}","en {weekdays}","en {weekdays}"], + "_on day {dayOfMonthList}_::_on days {dayOfMonthList}_" : ["en día {dayOfMonthList}","en los días {dayOfMonthList}","en los días {dayOfMonthList}"], "on the {ordinalNumber} {byDaySet}" : "en el {ordinalNumber} {byDaySet}", "in {monthNames}" : "n {monthNames}", "in {monthNames} on the {ordinalNumber} {byDaySet}" : "el {ordinalNumber} {byDaySet} de {monthNames} ", "until {untilDate}" : "hasta {untilDate}", - "_%n time_::_%n times_" : ["%n vez","%n veces"], + "_%n time_::_%n times_" : ["%n vez","%n veces","%n veces"], "Untitled event" : "Evento sin título", "Untitled task" : "Tarea sin título", "Please ask your administrator to enable the Tasks App." : "Por favor, solicite a su administrador que permita la aplicación de tareas.", @@ -407,7 +428,7 @@ "W" : "S", "%n more" : "%n más", "No events to display" : "No hay eventos que mostrar", - "_+%n more_::_+%n more_" : ["+%n más","+%n más"], + "_+%n more_::_+%n more_" : ["+%n más","+%n más","+%n más"], "No events" : "No hay eventos", "Create a new event or change the visible time-range" : "Crea un evento nuevo o cambia el rango de horas visibles", "It might have been deleted, or there was a typo in a link" : "Puede haber sido borrado, o había una errata en el enlace", diff --git a/l10n/es_419.js b/l10n/es_419.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..503ca87d27d310ed64906a1300b8614d79173020 100644 --- a/l10n/es_419.js +++ b/l10n/es_419.js @@ -6,53 +6,85 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_419.json b/l10n/es_419.json index ab409b760a8710001961e06e87ba45656fb4bd0d..5a8a95bbf5d11ee38c9867ca39fed295cb67f26e 100644 --- a/l10n/es_419.json +++ b/l10n/es_419.json @@ -4,53 +4,85 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_AR.js b/l10n/es_AR.js index 79da9f76598838892eb1ba71ff5226566ef33b34..5056ea35a79b38ae290ad1a9a3a0d7efe95f25e7 100644 --- a/l10n/es_AR.js +++ b/l10n/es_AR.js @@ -6,6 +6,7 @@ OC.L10N.register( "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", "Upcoming events" : "Próximos eventos", + "Confirm" : "Confirmar", "Calendar" : "Calendario", "A Calendar app for Nextcloud" : "Una aplicación de calendario para Nextcloud", "Previous day" : "Día previo", @@ -14,14 +15,19 @@ OC.L10N.register( "Next day" : "Proximo día", "Next week" : "Proxima semana", "Next month" : "Proximo mes", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Vista previa", + "Copy link" : "Copiar enlace", + "Edit" : "Editar", "Delete" : "Borrar", "Edit name" : "Editar nombre", "Edit color" : "Editar color", + "Export" : "Exportar", "Share link" : "Compartir link", "Copy public link" : "Copiar link publico", "Copied link" : "Link copiado", @@ -31,35 +37,58 @@ OC.L10N.register( "can edit" : "puede editar", "New calendar" : "Nuevo calendario", "New calendar with task list" : "Nuevo calendario con listado de tareas", + "Name" : "Nombre", + "Deleted" : "Eliminado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre de archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Añadir", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Su dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", + "Available" : "Disponible", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", @@ -67,6 +96,7 @@ OC.L10N.register( "Confirmed" : "Confirmado", "Categories" : "Categoría", "Movie" : "Película", - "Mail" : "Correo Electrónico" + "Mail" : "Correo Electrónico", + "Birthday" : "Fecha de nacimiento" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_AR.json b/l10n/es_AR.json index cd9986f2f896f50c34fad6aaa17ceee584e6ecca..85d9e35e053f8133ad5cb1e67972221b470102e7 100644 --- a/l10n/es_AR.json +++ b/l10n/es_AR.json @@ -4,6 +4,7 @@ "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", "Upcoming events" : "Próximos eventos", + "Confirm" : "Confirmar", "Calendar" : "Calendario", "A Calendar app for Nextcloud" : "Una aplicación de calendario para Nextcloud", "Previous day" : "Día previo", @@ -12,14 +13,19 @@ "Next day" : "Proximo día", "Next week" : "Proxima semana", "Next month" : "Proximo mes", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Vista previa", + "Copy link" : "Copiar enlace", + "Edit" : "Editar", "Delete" : "Borrar", "Edit name" : "Editar nombre", "Edit color" : "Editar color", + "Export" : "Exportar", "Share link" : "Compartir link", "Copy public link" : "Copiar link publico", "Copied link" : "Link copiado", @@ -29,35 +35,58 @@ "can edit" : "puede editar", "New calendar" : "Nuevo calendario", "New calendar with task list" : "Nuevo calendario con listado de tareas", + "Name" : "Nombre", + "Deleted" : "Eliminado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre de archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Añadir", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Su dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", + "Available" : "Disponible", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", @@ -65,6 +94,7 @@ "Confirmed" : "Confirmado", "Categories" : "Categoría", "Movie" : "Película", - "Mail" : "Correo Electrónico" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Mail" : "Correo Electrónico", + "Birthday" : "Fecha de nacimiento" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_CL.js b/l10n/es_CL.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..a6e52fc574ddf823af9ff37a7b68109b596d8ca0 100644 --- a/l10n/es_CL.js +++ b/l10n/es_CL.js @@ -6,53 +6,86 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_CL.json b/l10n/es_CL.json index ab409b760a8710001961e06e87ba45656fb4bd0d..7eacc18bd25918c383386d78cd424adb3266654e 100644 --- a/l10n/es_CL.json +++ b/l10n/es_CL.json @@ -4,53 +4,86 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_CO.js b/l10n/es_CO.js index b356c687d2636e8756578dcf313dfdb063db8e51..85ff46d20e77b0e86303f67d82374b3f9b1fcf12 100644 --- a/l10n/es_CO.js +++ b/l10n/es_CO.js @@ -8,53 +8,87 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar enlace", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir enlace", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", + "Empty trash bin" : "Vacíar la papelera", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_CO.json b/l10n/es_CO.json index 067a6a521780457fc1e87e09454c5fc99910ff3c..3e7f33edcb7b210b8c62106e951cc1f7cf103b0b 100644 --- a/l10n/es_CO.json +++ b/l10n/es_CO.json @@ -6,53 +6,87 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar enlace", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir enlace", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", + "Empty trash bin" : "Vacíar la papelera", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_CR.js b/l10n/es_CR.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..a6e52fc574ddf823af9ff37a7b68109b596d8ca0 100644 --- a/l10n/es_CR.js +++ b/l10n/es_CR.js @@ -6,53 +6,86 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_CR.json b/l10n/es_CR.json index ab409b760a8710001961e06e87ba45656fb4bd0d..7eacc18bd25918c383386d78cd424adb3266654e 100644 --- a/l10n/es_CR.json +++ b/l10n/es_CR.json @@ -4,53 +4,86 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_DO.js b/l10n/es_DO.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..a6e52fc574ddf823af9ff37a7b68109b596d8ca0 100644 --- a/l10n/es_DO.js +++ b/l10n/es_DO.js @@ -6,53 +6,86 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_DO.json b/l10n/es_DO.json index ab409b760a8710001961e06e87ba45656fb4bd0d..7eacc18bd25918c383386d78cd424adb3266654e 100644 --- a/l10n/es_DO.json +++ b/l10n/es_DO.json @@ -4,53 +4,86 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_EC.js b/l10n/es_EC.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..a6e52fc574ddf823af9ff37a7b68109b596d8ca0 100644 --- a/l10n/es_EC.js +++ b/l10n/es_EC.js @@ -6,53 +6,86 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_EC.json b/l10n/es_EC.json index ab409b760a8710001961e06e87ba45656fb4bd0d..7eacc18bd25918c383386d78cd424adb3266654e 100644 --- a/l10n/es_EC.json +++ b/l10n/es_EC.json @@ -4,53 +4,86 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_GT.js b/l10n/es_GT.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..cf81e0c11e572b485708ed29bcf8a5306312bc2a 100644 --- a/l10n/es_GT.js +++ b/l10n/es_GT.js @@ -6,53 +6,87 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", + "Show keyboard shortcuts" : "Mostrar atajos de teclado", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_GT.json b/l10n/es_GT.json index ab409b760a8710001961e06e87ba45656fb4bd0d..777607c7565d829c302b28994524c743d559481b 100644 --- a/l10n/es_GT.json +++ b/l10n/es_GT.json @@ -4,53 +4,87 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", + "Show keyboard shortcuts" : "Mostrar atajos de teclado", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_HN.js b/l10n/es_HN.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..503ca87d27d310ed64906a1300b8614d79173020 100644 --- a/l10n/es_HN.js +++ b/l10n/es_HN.js @@ -6,53 +6,85 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_HN.json b/l10n/es_HN.json index ab409b760a8710001961e06e87ba45656fb4bd0d..5a8a95bbf5d11ee38c9867ca39fed295cb67f26e 100644 --- a/l10n/es_HN.json +++ b/l10n/es_HN.json @@ -4,53 +4,85 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_MX.js b/l10n/es_MX.js index b31cf107d9f17b5bfe289249e417628803055b33..4a9025a2b39b73356feae12c3d846faecda8e1f6 100644 --- a/l10n/es_MX.js +++ b/l10n/es_MX.js @@ -6,49 +6,82 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Appointments" : "Citas", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", "A Calendar app for Nextcloud" : "Una aplicación de Calendario para Nextcloud", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Copy public link" : "Copiar enlace público", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Eliminado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", + "Empty trash bin" : "Vaciar la papelera de reciclaje", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", + "Available" : "Disponible", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Rechazar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", @@ -57,7 +90,10 @@ OC.L10N.register( "Canceled" : "Cancelada", "Categories" : "Categorías", "Presentation" : "Presentación", + "Talk" : "Hablar", "Office" : "Office", - "Mail" : "Correo" + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_MX.json b/l10n/es_MX.json index e7259004d292189ff70aa76a6c201106036802da..ad3e9c02b68113a21d4187d9e6ea5bc7e8e7d83d 100644 --- a/l10n/es_MX.json +++ b/l10n/es_MX.json @@ -4,49 +4,82 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Appointments" : "Citas", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", "A Calendar app for Nextcloud" : "Una aplicación de Calendario para Nextcloud", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Copy public link" : "Copiar enlace público", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Eliminado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", + "Empty trash bin" : "Vaciar la papelera de reciclaje", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", + "Available" : "Disponible", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Rechazar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", @@ -55,7 +88,10 @@ "Canceled" : "Cancelada", "Categories" : "Categorías", "Presentation" : "Presentación", + "Talk" : "Hablar", "Office" : "Office", - "Mail" : "Correo" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_NI.js b/l10n/es_NI.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..503ca87d27d310ed64906a1300b8614d79173020 100644 --- a/l10n/es_NI.js +++ b/l10n/es_NI.js @@ -6,53 +6,85 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_NI.json b/l10n/es_NI.json index ab409b760a8710001961e06e87ba45656fb4bd0d..5a8a95bbf5d11ee38c9867ca39fed295cb67f26e 100644 --- a/l10n/es_NI.json +++ b/l10n/es_NI.json @@ -4,53 +4,85 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_PA.js b/l10n/es_PA.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..503ca87d27d310ed64906a1300b8614d79173020 100644 --- a/l10n/es_PA.js +++ b/l10n/es_PA.js @@ -6,53 +6,85 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_PA.json b/l10n/es_PA.json index ab409b760a8710001961e06e87ba45656fb4bd0d..5a8a95bbf5d11ee38c9867ca39fed295cb67f26e 100644 --- a/l10n/es_PA.json +++ b/l10n/es_PA.json @@ -4,53 +4,85 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_PE.js b/l10n/es_PE.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..503ca87d27d310ed64906a1300b8614d79173020 100644 --- a/l10n/es_PE.js +++ b/l10n/es_PE.js @@ -6,53 +6,85 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_PE.json b/l10n/es_PE.json index ab409b760a8710001961e06e87ba45656fb4bd0d..5a8a95bbf5d11ee38c9867ca39fed295cb67f26e 100644 --- a/l10n/es_PE.json +++ b/l10n/es_PE.json @@ -4,53 +4,85 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_PR.js b/l10n/es_PR.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..503ca87d27d310ed64906a1300b8614d79173020 100644 --- a/l10n/es_PR.js +++ b/l10n/es_PR.js @@ -6,53 +6,85 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_PR.json b/l10n/es_PR.json index ab409b760a8710001961e06e87ba45656fb4bd0d..5a8a95bbf5d11ee38c9867ca39fed295cb67f26e 100644 --- a/l10n/es_PR.json +++ b/l10n/es_PR.json @@ -4,53 +4,85 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_PY.js b/l10n/es_PY.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..503ca87d27d310ed64906a1300b8614d79173020 100644 --- a/l10n/es_PY.js +++ b/l10n/es_PY.js @@ -6,53 +6,85 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_PY.json b/l10n/es_PY.json index ab409b760a8710001961e06e87ba45656fb4bd0d..5a8a95bbf5d11ee38c9867ca39fed295cb67f26e 100644 --- a/l10n/es_PY.json +++ b/l10n/es_PY.json @@ -4,53 +4,85 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_SV.js b/l10n/es_SV.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..2bdeaabf36e11106f10a2686bf515c5f1bc7cdf7 100644 --- a/l10n/es_SV.js +++ b/l10n/es_SV.js @@ -6,53 +6,86 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_SV.json b/l10n/es_SV.json index ab409b760a8710001961e06e87ba45656fb4bd0d..60d5aba553085e4e172407e05a6b11b00d068e1e 100644 --- a/l10n/es_SV.json +++ b/l10n/es_SV.json @@ -4,53 +4,86 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" +},"pluralForm" :"nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_UY.js b/l10n/es_UY.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..13d9ac86948c1fc73e6ffd5189f33e72804144d0 100644 --- a/l10n/es_UY.js +++ b/l10n/es_UY.js @@ -6,53 +6,86 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", + "Empty trash bin" : "Vaciar la papelera de reciclaje", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_UY.json b/l10n/es_UY.json index ab409b760a8710001961e06e87ba45656fb4bd0d..40753358776f43bc8d438eebf7335d1962ee2786 100644 --- a/l10n/es_UY.json +++ b/l10n/es_UY.json @@ -4,53 +4,86 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Queremos informarte que %s ha publicado el calendario »%s«.", "Open »%s«" : "Abrir »%s«", "Cheers!" : "¡Saludos!", + "Confirm" : "Confirmar", + "Where:" : "Dónde:", + "Description:" : "Descripción:", "Calendar" : "Calendario", + "New event" : "Nuevo evento", "Today" : "Hoy", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Previsualizar", + "Copy link" : "Copiar liga", + "Edit" : "Editar", "Delete" : "Borrar", + "Export" : "Exportar", "Share link" : "Compartir liga", "Share with users or groups" : "Compartir con otros usuarios o grupos", "can edit" : "puede editar", "New calendar" : "Nuevo calendario", + "Name" : "Nombre", + "Deleted" : "Borrado", + "Restore" : "Restaurar", + "Delete permanently" : "Borrar permanentemente", + "Empty trash bin" : "Vaciar la papelera de reciclaje", "Filename" : "Nombre del archivo", "Cancel" : "Cancelar", "Automatic" : "Automático", "or" : "o", + "List view" : "Vista de lista", "Actions" : "Acciones", "Show week numbers" : "Mostrar número de semana", "Settings & import" : "Configuraciones & importar", "Location" : "Ubicación", "Description" : "Descripción", + "to" : "para", + "Add" : "Agregar", "Monday" : "Lunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Jueves", + "Friday" : "Viernes", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Actualizar", + "Your email address" : "Tu dirección de correo electrónico", "Notification" : "Notificación", "Email" : "Correo electrónico", "Unknown" : "Desconocido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativo", + "Send email" : "Enviar correo electrónico", "All day" : "Todo el día", "Repeat" : "Repetir", "never" : "nunca", "after" : "después", + "available" : "disponible", "More" : "Más", "Global" : "Global", "Personal" : "Personal", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Cerrar", "Anniversary" : "Aniversario", "Week {number} of {year}" : "Semana {number} de {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Prev" : "Prev", + "Next" : "Siguiente", + "Other" : "Otro", "When shared show full event" : "Al compartir, mostrar el evento completo", "When shared show only busy" : "Al compartir, mostrar sólo como ocupado ", "When shared hide this event" : "Al compartir, ocultar este evento ", "Status" : "Estatus", "Confirmed" : "Confirmado", "Categories" : "Categorías", - "Mail" : "Correo" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 1e33289d6cd79f626d5a354e689f228477631e0f..71b9c2a466542bb67939a02a160ca46547d02319 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -6,6 +6,9 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Tahtsime Sind informeerida, et %s on avaldanud kalendri»%s«.", "Open »%s«" : "Ava »%s«", "Cheers!" : "Tervist!", + "Confirm" : "Kinnita", + "Where:" : "Kus:", + "Description:" : "Kirjeldus:", "Calendar" : "Kalender", "Previous day" : "Eelmine päev", "Previous week" : "Eelmine nädal", @@ -13,10 +16,14 @@ OC.L10N.register( "Next day" : "Järgmine päev", "Next week" : "Järgmine nädal", "Next month" : "Järgmine kuu", + "New event" : "Uus sündmus", "Today" : "Täna", "Day" : "Päev", "Week" : "Nädal", "Month" : "Kuu", + "Preview" : "Eelvaade", + "Copy link" : "Kopeeri link", + "Edit" : "Redigeeri", "Delete" : "Kustuta", "Untitled calendar" : "Nimetu kalender", "Edit name" : "Muuda nime", @@ -24,6 +31,7 @@ OC.L10N.register( "Edit color" : "Muuda värvi", "Saving color …" : "Salvestan värvi ...", "Copy private link" : "Kopeeri privaatne link", + "Export" : "Ekspordi", "Share link" : "Jaga link", "Publish calendar" : "Avalda kalender", "Copy public link" : "Kopeeri avalik link", @@ -34,22 +42,39 @@ OC.L10N.register( "Unshare with {displayName}" : "Lõpeta jagamine kasutajaga: {displayName}", "+ New calendar" : "+ Uus kalender", "New calendar" : "Uus kalender", + "Name" : "Nimi", + "Deleted" : "Kustutatud", + "Restore" : "Taasta", + "Delete permanently" : "Kustuta jäädavalt", "Import calendars" : "Impordi kalendrid", "Filename" : "Faili nimi", "Cancel" : "Loobu", "Automatic" : "Automaatne", + "List view" : "Nimekirjavaade", "Actions" : "Tegevused", "Show week numbers" : "Näita nädalanumberid", "Settings & import" : "Sätted & importimine", "Location" : "Asukoht", "Description" : "Kirjeldus", + "to" : "saaja", + "Add" : "Lisa", "Monday" : "Esmaspäev", + "Tuesday" : "Teisipäev", + "Wednesday" : "Kolmapäev", + "Thursday" : "Neljapäev", + "Friday" : "Reede", + "Saturday" : "Laupäev", + "Sunday" : "Pühapäev", "Save" : "Salvesta", "Update" : "Uuenda", + "Your email address" : "Sinu e-posti aadress", "Email" : "Epost", "On date" : "Kuupäeval", "Unknown" : "Teadmata", + "Accept" : "Nõustu", + "Decline" : "Keeldu", "Tentative" : "Esialgne", + "Send email" : "Saada kiri", "All day" : "Kogu päev", "Repeat" : "Korda", "never" : "mitte kunagi", @@ -59,6 +84,7 @@ OC.L10N.register( "Personal" : "Isiklik", "Details" : "Üksikasjad", "Attendees" : "Osalejad", + "Resources" : "Ressursid", "Close" : "Sulge", "Anniversary" : "Aastapäev", "Appointment" : "Kohtumine", @@ -69,6 +95,8 @@ OC.L10N.register( "Weekly" : "Iga nädal", "Monthly" : "Igakuine", "Yearly" : "Igaastane", + "Next" : "Järgmine", + "Other" : "Muu", "When shared show full event" : "Kui on jagatud, siis näita kogu sündmust", "When shared show only busy" : "Kui on jagatud, siis näita ainult, kas on hõivatud", "When shared hide this event" : "Kui on jagatud, siis peida see sündmus", @@ -76,6 +104,7 @@ OC.L10N.register( "Confirmed" : "Kinnitatud", "Categories" : "Kategooriad", "Presentation" : "Esitlus", + "Talk" : "Talk", "Camping" : "Telkimine", "Camp" : "Laager", "Movie" : "Film", @@ -129,10 +158,12 @@ OC.L10N.register( "Party" : "Pidu", "Celebration" : "Tähistamine", "Celebrate" : "Tähista", + "Birthday" : "Sünnipäev", "Skate" : "Uisutamine", "Skateboard" : "Rula", "Wine tasting" : "Veini degusteerimine", "Golf" : "Golf", - "Dinner" : "Õhtusöök" + "Dinner" : "Õhtusöök", + "User not found" : "Kasutajat ei leitud" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 90422c4cf7207de5eaf73e6354f3ad5bdb3a14ee..a4f49597d21db06d3a01b9dc9e929de381de828e 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -4,6 +4,9 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Tahtsime Sind informeerida, et %s on avaldanud kalendri»%s«.", "Open »%s«" : "Ava »%s«", "Cheers!" : "Tervist!", + "Confirm" : "Kinnita", + "Where:" : "Kus:", + "Description:" : "Kirjeldus:", "Calendar" : "Kalender", "Previous day" : "Eelmine päev", "Previous week" : "Eelmine nädal", @@ -11,10 +14,14 @@ "Next day" : "Järgmine päev", "Next week" : "Järgmine nädal", "Next month" : "Järgmine kuu", + "New event" : "Uus sündmus", "Today" : "Täna", "Day" : "Päev", "Week" : "Nädal", "Month" : "Kuu", + "Preview" : "Eelvaade", + "Copy link" : "Kopeeri link", + "Edit" : "Redigeeri", "Delete" : "Kustuta", "Untitled calendar" : "Nimetu kalender", "Edit name" : "Muuda nime", @@ -22,6 +29,7 @@ "Edit color" : "Muuda värvi", "Saving color …" : "Salvestan värvi ...", "Copy private link" : "Kopeeri privaatne link", + "Export" : "Ekspordi", "Share link" : "Jaga link", "Publish calendar" : "Avalda kalender", "Copy public link" : "Kopeeri avalik link", @@ -32,22 +40,39 @@ "Unshare with {displayName}" : "Lõpeta jagamine kasutajaga: {displayName}", "+ New calendar" : "+ Uus kalender", "New calendar" : "Uus kalender", + "Name" : "Nimi", + "Deleted" : "Kustutatud", + "Restore" : "Taasta", + "Delete permanently" : "Kustuta jäädavalt", "Import calendars" : "Impordi kalendrid", "Filename" : "Faili nimi", "Cancel" : "Loobu", "Automatic" : "Automaatne", + "List view" : "Nimekirjavaade", "Actions" : "Tegevused", "Show week numbers" : "Näita nädalanumberid", "Settings & import" : "Sätted & importimine", "Location" : "Asukoht", "Description" : "Kirjeldus", + "to" : "saaja", + "Add" : "Lisa", "Monday" : "Esmaspäev", + "Tuesday" : "Teisipäev", + "Wednesday" : "Kolmapäev", + "Thursday" : "Neljapäev", + "Friday" : "Reede", + "Saturday" : "Laupäev", + "Sunday" : "Pühapäev", "Save" : "Salvesta", "Update" : "Uuenda", + "Your email address" : "Sinu e-posti aadress", "Email" : "Epost", "On date" : "Kuupäeval", "Unknown" : "Teadmata", + "Accept" : "Nõustu", + "Decline" : "Keeldu", "Tentative" : "Esialgne", + "Send email" : "Saada kiri", "All day" : "Kogu päev", "Repeat" : "Korda", "never" : "mitte kunagi", @@ -57,6 +82,7 @@ "Personal" : "Isiklik", "Details" : "Üksikasjad", "Attendees" : "Osalejad", + "Resources" : "Ressursid", "Close" : "Sulge", "Anniversary" : "Aastapäev", "Appointment" : "Kohtumine", @@ -67,6 +93,8 @@ "Weekly" : "Iga nädal", "Monthly" : "Igakuine", "Yearly" : "Igaastane", + "Next" : "Järgmine", + "Other" : "Muu", "When shared show full event" : "Kui on jagatud, siis näita kogu sündmust", "When shared show only busy" : "Kui on jagatud, siis näita ainult, kas on hõivatud", "When shared hide this event" : "Kui on jagatud, siis peida see sündmus", @@ -74,6 +102,7 @@ "Confirmed" : "Kinnitatud", "Categories" : "Kategooriad", "Presentation" : "Esitlus", + "Talk" : "Talk", "Camping" : "Telkimine", "Camp" : "Laager", "Movie" : "Film", @@ -127,10 +156,12 @@ "Party" : "Pidu", "Celebration" : "Tähistamine", "Celebrate" : "Tähista", + "Birthday" : "Sünnipäev", "Skate" : "Uisutamine", "Skateboard" : "Rula", "Wine tasting" : "Veini degusteerimine", "Golf" : "Golf", - "Dinner" : "Õhtusöök" + "Dinner" : "Õhtusöök", + "User not found" : "Kasutajat ei leitud" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/eu.js b/l10n/eu.js index 18b223af57604542ca98b3e228e0bf7458db9a2a..58241391049b0dedf89693a7fac7810ccf829dd1 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -127,6 +127,7 @@ OC.L10N.register( "{filename} could not be parsed" : "{filename} ezin da analizatu", "No valid files found, aborting import" : "Ez da baliodun fitxategirik aurkitu, inportazioa bertan behera uzten", "Import partially failed. Imported {accepted} out of {total}." : "Inportazioak huts egin du hein batean. Guztira {total} ziren, {accepted} inportatu dira.", + "_Successfully imported %n event_::_Successfully imported %n events_" : ["%n gertaera behar bezala inportatu dira","%n gertaera behar bezala inportatu dira"], "Automatic" : "Automatikoa", "Automatic ({detected})" : "Automatikoa ({detected})", "New setting was not saved successfully." : "Ezarpen berria ez da behar bezala gorde.", @@ -143,6 +144,10 @@ OC.L10N.register( "Actions" : "Ekintzak", "Create event" : "Sortu gertaera", "Show shortcuts" : "Erakutsi lasterbideak", + "Editor" : "Editorea", + "Close editor" : "Itxi editorea", + "Save edited event" : "Gorde editatutako gertaera", + "Delete edited event" : "Ezabatu editatutako gertaera", "Enable birthday calendar" : "Gaitu urtebetetzeen egutegia", "Show tasks in calendar" : "Erakutsi zereginak egutegian", "Enable simplified editor" : "Gaitu editore sinplifikatua", @@ -200,7 +205,7 @@ OC.L10N.register( "Edit appointment" : "Editatu hitzordua", "Save" : "Gorde", "Update" : "Eguneratu", - "Your appointment is booked" : "Zure hitzordua erreserbatuta dago", + "Please confirm your reservation" : "Berretsi zure erreserba", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Mezu elektroniko bat bidali dizugu xehetasunekin. Mesedez, berretsi zure hitzordua mezu elektronikoaren esteka erabiliz. Orrialde hau itxi dezakezu orain.", "Your name" : "Zure izena", "Your email address" : "Zure e-posta", @@ -227,7 +232,18 @@ OC.L10N.register( "_hour_::_hours_" : ["ordu","ordu"], "_day_::_days_" : ["egun","egun"], "_week_::_weeks_" : ["aste","aste"], + "Suggested" : "Iradokituta", "Available" : "Erabilgarri", + "Not available" : "Ez dago erabilgarri", + "Checking availability" : "Erabilgarritasuna egiaztatzen", + "Invitation accepted" : "Gonbidapena onartuta", + "Accepted {organizerName}'s invitation" : "{organizerName}(r)en gonbidapena onartuta", + "Invitation declined" : "Gonbidapena ukatuta", + "Declined {organizerName}'s invitation" : "{organizerName}(r)en gonbidapena ukatuta", + "Invitation is delegated" : "Gonbidapena eskuordetuta dago", + "Participation marked as tentative" : "Partaidetza behin-behineko gisa markatu da", + "Invitation sent" : "Gonbidapena bidalita", + "Has not responded to {organizerName}'s invitation yet" : "Oraindik ez dio {organizerName} erabiltzailearen gonbidapenari erantzun", "Availability of attendees, resources and rooms" : "Partaide, baliabide eta gelen eskuragarritasuna", "{organizer} (organizer)" : "{organizer} (kudeatzailea)", "Free" : "Libre", @@ -359,6 +375,7 @@ OC.L10N.register( "Close" : "Itxi", "Show more details" : "Erakutsi xehetasun gehiago", "Subscribe to {name}" : "Harpidetu {name}", + "Export {name}" : "Esportatu {name}", "Anniversary" : "Urtebetetzea", "Appointment" : "Hitzordua", "Business" : "Lana", @@ -449,6 +466,7 @@ OC.L10N.register( "Break" : "Atsedena", "Commute" : "Lanerako bidea", "Commuting" : "Lanerako bidean", + "Shuttle" : "Anezka", "Invoice" : "Faktura", "Finance" : "Finantzak", "Bank" : "Bankua", @@ -461,19 +479,27 @@ OC.L10N.register( "Theatre" : "Aretoa", "Presentation" : "Aurkezpena", "Talk" : "Hizketaldia", + "Speech" : "Diskurtsoa", "Deadline" : "Epemuga", + "Submission" : "Bidalketa", + "Reporting" : "Txostena egiten", "Camping" : "Kanpina", "Camp" : "Kanpatu", + "Election" : "Hauteskundea", "Voting" : "Bozkatzen", "Vote" : "Bozkatu", "Barbecue" : "Barbakoa", "Barbeque" : "Barbakoa", + "Garden" : "Lorategia", + "Farm" : "Baserria", "Movie" : "Filma", "Cinema" : "Zinema", "Graduation" : "Graduazioa", "Brainstorm" : "Ideia-jasa", "Review" : "Berrikusi", + "Audit" : "Auditoretza", "Inspection" : "Inspekzioa", + "Proofreading" : "Testu-azterketa", "Baseball" : "Beisbola", "Meet" : "Topaketa", "Planning" : "Plangintza", @@ -540,6 +566,7 @@ OC.L10N.register( "Conference" : "Biltzarra", "Pizza" : "Pizza", "Travelling" : "Bidaiatzen", + "Trip" : "Bidaia", "Journey" : "Bidaia", "Collaborate" : "Elkarlana", "Pair" : "Parekatu", @@ -552,6 +579,7 @@ OC.L10N.register( "Celebrate" : "Ospatu", "Birthday" : "Jaioteguna", "Shopping" : "Erosketak", + "Groceries" : "Erosketak", "Skate" : "Patinatu", "Skateboard" : "Patinetea", "Wine tasting" : "Ardo dastaketa", diff --git a/l10n/eu.json b/l10n/eu.json index 9aefb0c1c7b5a2424237e1eaa5bfa5ee0dd7aeb5..1a0ceb9866d98c9a11b9a116088ed6675a60ba3d 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -125,6 +125,7 @@ "{filename} could not be parsed" : "{filename} ezin da analizatu", "No valid files found, aborting import" : "Ez da baliodun fitxategirik aurkitu, inportazioa bertan behera uzten", "Import partially failed. Imported {accepted} out of {total}." : "Inportazioak huts egin du hein batean. Guztira {total} ziren, {accepted} inportatu dira.", + "_Successfully imported %n event_::_Successfully imported %n events_" : ["%n gertaera behar bezala inportatu dira","%n gertaera behar bezala inportatu dira"], "Automatic" : "Automatikoa", "Automatic ({detected})" : "Automatikoa ({detected})", "New setting was not saved successfully." : "Ezarpen berria ez da behar bezala gorde.", @@ -141,6 +142,10 @@ "Actions" : "Ekintzak", "Create event" : "Sortu gertaera", "Show shortcuts" : "Erakutsi lasterbideak", + "Editor" : "Editorea", + "Close editor" : "Itxi editorea", + "Save edited event" : "Gorde editatutako gertaera", + "Delete edited event" : "Ezabatu editatutako gertaera", "Enable birthday calendar" : "Gaitu urtebetetzeen egutegia", "Show tasks in calendar" : "Erakutsi zereginak egutegian", "Enable simplified editor" : "Gaitu editore sinplifikatua", @@ -198,7 +203,7 @@ "Edit appointment" : "Editatu hitzordua", "Save" : "Gorde", "Update" : "Eguneratu", - "Your appointment is booked" : "Zure hitzordua erreserbatuta dago", + "Please confirm your reservation" : "Berretsi zure erreserba", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Mezu elektroniko bat bidali dizugu xehetasunekin. Mesedez, berretsi zure hitzordua mezu elektronikoaren esteka erabiliz. Orrialde hau itxi dezakezu orain.", "Your name" : "Zure izena", "Your email address" : "Zure e-posta", @@ -225,7 +230,18 @@ "_hour_::_hours_" : ["ordu","ordu"], "_day_::_days_" : ["egun","egun"], "_week_::_weeks_" : ["aste","aste"], + "Suggested" : "Iradokituta", "Available" : "Erabilgarri", + "Not available" : "Ez dago erabilgarri", + "Checking availability" : "Erabilgarritasuna egiaztatzen", + "Invitation accepted" : "Gonbidapena onartuta", + "Accepted {organizerName}'s invitation" : "{organizerName}(r)en gonbidapena onartuta", + "Invitation declined" : "Gonbidapena ukatuta", + "Declined {organizerName}'s invitation" : "{organizerName}(r)en gonbidapena ukatuta", + "Invitation is delegated" : "Gonbidapena eskuordetuta dago", + "Participation marked as tentative" : "Partaidetza behin-behineko gisa markatu da", + "Invitation sent" : "Gonbidapena bidalita", + "Has not responded to {organizerName}'s invitation yet" : "Oraindik ez dio {organizerName} erabiltzailearen gonbidapenari erantzun", "Availability of attendees, resources and rooms" : "Partaide, baliabide eta gelen eskuragarritasuna", "{organizer} (organizer)" : "{organizer} (kudeatzailea)", "Free" : "Libre", @@ -357,6 +373,7 @@ "Close" : "Itxi", "Show more details" : "Erakutsi xehetasun gehiago", "Subscribe to {name}" : "Harpidetu {name}", + "Export {name}" : "Esportatu {name}", "Anniversary" : "Urtebetetzea", "Appointment" : "Hitzordua", "Business" : "Lana", @@ -447,6 +464,7 @@ "Break" : "Atsedena", "Commute" : "Lanerako bidea", "Commuting" : "Lanerako bidean", + "Shuttle" : "Anezka", "Invoice" : "Faktura", "Finance" : "Finantzak", "Bank" : "Bankua", @@ -459,19 +477,27 @@ "Theatre" : "Aretoa", "Presentation" : "Aurkezpena", "Talk" : "Hizketaldia", + "Speech" : "Diskurtsoa", "Deadline" : "Epemuga", + "Submission" : "Bidalketa", + "Reporting" : "Txostena egiten", "Camping" : "Kanpina", "Camp" : "Kanpatu", + "Election" : "Hauteskundea", "Voting" : "Bozkatzen", "Vote" : "Bozkatu", "Barbecue" : "Barbakoa", "Barbeque" : "Barbakoa", + "Garden" : "Lorategia", + "Farm" : "Baserria", "Movie" : "Filma", "Cinema" : "Zinema", "Graduation" : "Graduazioa", "Brainstorm" : "Ideia-jasa", "Review" : "Berrikusi", + "Audit" : "Auditoretza", "Inspection" : "Inspekzioa", + "Proofreading" : "Testu-azterketa", "Baseball" : "Beisbola", "Meet" : "Topaketa", "Planning" : "Plangintza", @@ -538,6 +564,7 @@ "Conference" : "Biltzarra", "Pizza" : "Pizza", "Travelling" : "Bidaiatzen", + "Trip" : "Bidaia", "Journey" : "Bidaia", "Collaborate" : "Elkarlana", "Pair" : "Parekatu", @@ -550,6 +577,7 @@ "Celebrate" : "Ospatu", "Birthday" : "Jaioteguna", "Shopping" : "Erosketak", + "Groceries" : "Erosketak", "Skate" : "Patinatu", "Skateboard" : "Patinetea", "Wine tasting" : "Ardo dastaketa", diff --git a/l10n/fa.js b/l10n/fa.js index 672452f9fb7cbe770cc5a4fa4e394318a3ef3c9b..d42ea6af212887d37380899afcfb9b3c6a7e61c9 100644 --- a/l10n/fa.js +++ b/l10n/fa.js @@ -11,6 +11,7 @@ OC.L10N.register( "Cheers!" : "سلامتی!", "Upcoming events" : "رویدادهای پیش‌رو", "Appointments" : "قرارها", + "Confirm" : "تائید", "Date:" : "تاریخ:", "Where:" : "مکان:", "Calendar" : "تقویم", @@ -21,11 +22,15 @@ OC.L10N.register( "Next day" : "روز بعد", "Next week" : "هفته بعد", "Next month" : "ماه بعد", + "New event" : "رویداد جدید", "Today" : "امروز", "Day" : "روز", "Week" : "هفته", "Month" : "ماه", "List" : "لیست", + "Preview" : "پیش‌نمایش", + "Copy link" : "کپی کردن لینک", + "Edit" : "ویرایش", "Delete" : "حذف", "Untitled calendar" : "تقویم بدون عنوان", "Edit name" : "ویرایش نام", @@ -33,6 +38,7 @@ OC.L10N.register( "Edit color" : "ویرایش رنگ", "Saving color …" : "ذخیره رنگ", "Copy private link" : "کپی کردن پیوند خصوصی", + "Export" : "گرفتن خروجی", "Unshare from me" : "بی خبر از من", "An error occurred, unable to change visibility of the calendar." : "خطایی روی داد ، قادر به تغییر دیدگاه تقویم نیست.", "An error occurred, unable to delete the calendar." : "خطایی روی داد ، قادر به حذف تقویم نیست.", @@ -80,6 +86,10 @@ OC.L10N.register( "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "لطفاً یک پیوند معتبر وارد کنید (با شروع http: // ، https: // ، webcal: // ، یا صفحات وب: //)", "Trash bin" : "زباله‌دان", "Name" : "نام", + "Deleted" : "حذف شده", + "Restore" : "بازیابی", + "Delete permanently" : "حذف قطعی", + "Empty trash bin" : "خالی کردن سطل زباله", "Import calendars" : "وارد کردن تقویم ها", "Please select a calendar to import into …" : "لطفاً یک تقویم را برای وارد کردن به… انتخاب کنید", "Filename" : "نام فایل", @@ -90,6 +100,7 @@ OC.L10N.register( "Automatic" : "خودکار", "Automatic ({detected})" : "خودکار ({شناسایی})", "New setting was not saved successfully." : "تنظیم جدید با موفقیت ذخیره نشد.", + "List view" : "نمایش لیست", "Actions" : "فعالیت ها", "Enable birthday calendar" : "تقویم تولد را فعال کنید", "Enable simplified editor" : "ویرایشگر ساده شده را فعال کنید", @@ -102,9 +113,19 @@ OC.L10N.register( "CalDAV link could not be copied to clipboard." : "پیوند CalDAV در کلیپ بورد قابل کپی نیست.", "Location" : "محل", "Description" : "توضیحات", + "Duration" : "مدت زمان", + "to" : "به", + "Add" : "افزودن", "Monday" : "دوشنبه", + "Tuesday" : "سه شنبه", + "Wednesday" : "چهارشنبه", + "Thursday" : "پنجشنبه", + "Friday" : "جمعه", + "Saturday" : "شنبه", + "Sunday" : "یکشنبه", "Save" : "ذخیره", "Update" : "به روز رسانی", + "Your email address" : "پست الکترونیکی شما", "before at" : "قبل از در", "Notification" : "اطلاع", "Email" : "ایمیل", @@ -123,18 +144,22 @@ OC.L10N.register( "_hour_::_hours_" : ["ساعت","ساعت ها"], "_day_::_days_" : ["روز","روز ها"], "_week_::_weeks_" : ["هفته","هفته ها"], + "Available" : "در دسترس", "Availability of attendees, resources and rooms" : "در دسترس بودن شرکت کنندگان ، منابع و اتاق ها", "Free" : "رایگان", "Busy (tentative)" : "مشغول (آزمایشی)", "Busy" : "مشغول", "Out of office" : "بیرون از دفتر", "Unknown" : "نامشخص", + "Accept" : "تایید", + "Decline" : "کاهش می یابد", "Tentative" : "آزمایشی", "Create Talk room for this event" : "اتاق گفتگو را برای این رویداد ایجاد کنید", "Show busy times" : " نمایش زمان‌های شلوغ", "No attendees yet" : "هنوز هیچ حضوری وجود ندارد", "Successfully appended link to talk room to description." : "پیوند موفقیت آمیز پیوند به اتاق گفتگو به توضیحات.", "Error creating Talk room" : "خطا در ایجاد اتاق گفتگو", + "Send email" : "ارسال ایمیل", "Chairperson" : "رئیس", "Required participant" : "شرکت کننده مورد نیاز", "Optional participant" : "شرکت کننده اختیاری", @@ -170,6 +195,7 @@ OC.L10N.register( "weekday" : "روز هفته", "weekend day" : " آخر هفته", "The recurrence definition of this event is not fully supported by Nextcloud. If you edit the recurrence-options, certain recurrences may be lost." : "تعریف بازگشتی از این رویداد توسط نکست کلود کاملاً پشتیبانی نمی شود. اگر گزینه های بازگشتی را ویرایش کنید ، ممکن است بازگشتی های خاصی از بین بروند.", + "available" : "در دسترس", "More" : "بیش‌تر", "Update this occurrence" : "این رویداد را به روز کنید", "Update this and all future" : "این و همه آینده را به روز کنید", @@ -190,6 +216,7 @@ OC.L10N.register( "Delete this and all future" : "این و همه آینده را حذف کنید", "Details" : "جزئیات", "Attendees" : "شرکت کنندگان", + "Resources" : "منابع", "Close" : "بستن", "Show more details" : "جزئیات بیشتر را نشان دهید", "Subscribe to {name}" : "اشتراک در {name}", @@ -237,7 +264,11 @@ OC.L10N.register( "until {untilDate}" : "تا زمان {untilDate}", "_%n time_::_%n times_" : ["%n بار","%n بارها"], "Untitled event" : "رویداد بدون عنوان", + "Prev" : "مقدمه", + "Next" : "بعدی", + "Year" : "سال", "_+%n more_::_+%n more_" : ["+%n بیشتر","+%n بیشتر"], + "Other" : "اعلان‌ها", "When shared show" : "هنگام نمایش مشترک", "When shared show full event" : "هنگام اشتراک گذاری ، رویداد کامل را نشان می دهد", "When shared show only busy" : "وقتی نمایش اشتراکی فقط مشغول است", @@ -262,6 +293,7 @@ OC.L10N.register( "Relaxing" : "آرامش بخش", "Relax" : "آروم باش", "Presentation" : "ارائه", + "Talk" : "گفتگو", "Camping" : "چادر زدن", "Camp" : "اردوگاه", "Movie" : "فیلم", @@ -298,6 +330,7 @@ OC.L10N.register( "Doctor" : "دکتر", "Health" : "سلامتی", "Dentist" : "دندانپزشک", + "Hospital" : "بیمارستان", "Interview" : "مصاحبه", "Training" : "آموزش", "Practice" : "تمرین", @@ -331,12 +364,14 @@ OC.L10N.register( "Party" : "مهمانی - جشن", "Celebration" : "جشن", "Celebrate" : "جشن گرفتن", + "Birthday" : "روزتولد", "Shopping" : "خريد كردن", "Skate" : "اسکیت", "Skateboard" : "صفحه اسکیت", "Wine tasting" : "مزه کردن شراب", "Golf" : "گلف", "Dinner" : "شام", - "Lunch" : "ناهار" + "Lunch" : "ناهار", + "User not found" : "کاربر یافت نشد" }, "nplurals=2; plural=(n > 1);"); diff --git a/l10n/fa.json b/l10n/fa.json index 99915028f1cbda2648b3dbf4af510f7c77e88b0c..22cb7b6be09e62c8b2bbfb1be69a562820952dfe 100644 --- a/l10n/fa.json +++ b/l10n/fa.json @@ -9,6 +9,7 @@ "Cheers!" : "سلامتی!", "Upcoming events" : "رویدادهای پیش‌رو", "Appointments" : "قرارها", + "Confirm" : "تائید", "Date:" : "تاریخ:", "Where:" : "مکان:", "Calendar" : "تقویم", @@ -19,11 +20,15 @@ "Next day" : "روز بعد", "Next week" : "هفته بعد", "Next month" : "ماه بعد", + "New event" : "رویداد جدید", "Today" : "امروز", "Day" : "روز", "Week" : "هفته", "Month" : "ماه", "List" : "لیست", + "Preview" : "پیش‌نمایش", + "Copy link" : "کپی کردن لینک", + "Edit" : "ویرایش", "Delete" : "حذف", "Untitled calendar" : "تقویم بدون عنوان", "Edit name" : "ویرایش نام", @@ -31,6 +36,7 @@ "Edit color" : "ویرایش رنگ", "Saving color …" : "ذخیره رنگ", "Copy private link" : "کپی کردن پیوند خصوصی", + "Export" : "گرفتن خروجی", "Unshare from me" : "بی خبر از من", "An error occurred, unable to change visibility of the calendar." : "خطایی روی داد ، قادر به تغییر دیدگاه تقویم نیست.", "An error occurred, unable to delete the calendar." : "خطایی روی داد ، قادر به حذف تقویم نیست.", @@ -78,6 +84,10 @@ "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "لطفاً یک پیوند معتبر وارد کنید (با شروع http: // ، https: // ، webcal: // ، یا صفحات وب: //)", "Trash bin" : "زباله‌دان", "Name" : "نام", + "Deleted" : "حذف شده", + "Restore" : "بازیابی", + "Delete permanently" : "حذف قطعی", + "Empty trash bin" : "خالی کردن سطل زباله", "Import calendars" : "وارد کردن تقویم ها", "Please select a calendar to import into …" : "لطفاً یک تقویم را برای وارد کردن به… انتخاب کنید", "Filename" : "نام فایل", @@ -88,6 +98,7 @@ "Automatic" : "خودکار", "Automatic ({detected})" : "خودکار ({شناسایی})", "New setting was not saved successfully." : "تنظیم جدید با موفقیت ذخیره نشد.", + "List view" : "نمایش لیست", "Actions" : "فعالیت ها", "Enable birthday calendar" : "تقویم تولد را فعال کنید", "Enable simplified editor" : "ویرایشگر ساده شده را فعال کنید", @@ -100,9 +111,19 @@ "CalDAV link could not be copied to clipboard." : "پیوند CalDAV در کلیپ بورد قابل کپی نیست.", "Location" : "محل", "Description" : "توضیحات", + "Duration" : "مدت زمان", + "to" : "به", + "Add" : "افزودن", "Monday" : "دوشنبه", + "Tuesday" : "سه شنبه", + "Wednesday" : "چهارشنبه", + "Thursday" : "پنجشنبه", + "Friday" : "جمعه", + "Saturday" : "شنبه", + "Sunday" : "یکشنبه", "Save" : "ذخیره", "Update" : "به روز رسانی", + "Your email address" : "پست الکترونیکی شما", "before at" : "قبل از در", "Notification" : "اطلاع", "Email" : "ایمیل", @@ -121,18 +142,22 @@ "_hour_::_hours_" : ["ساعت","ساعت ها"], "_day_::_days_" : ["روز","روز ها"], "_week_::_weeks_" : ["هفته","هفته ها"], + "Available" : "در دسترس", "Availability of attendees, resources and rooms" : "در دسترس بودن شرکت کنندگان ، منابع و اتاق ها", "Free" : "رایگان", "Busy (tentative)" : "مشغول (آزمایشی)", "Busy" : "مشغول", "Out of office" : "بیرون از دفتر", "Unknown" : "نامشخص", + "Accept" : "تایید", + "Decline" : "کاهش می یابد", "Tentative" : "آزمایشی", "Create Talk room for this event" : "اتاق گفتگو را برای این رویداد ایجاد کنید", "Show busy times" : " نمایش زمان‌های شلوغ", "No attendees yet" : "هنوز هیچ حضوری وجود ندارد", "Successfully appended link to talk room to description." : "پیوند موفقیت آمیز پیوند به اتاق گفتگو به توضیحات.", "Error creating Talk room" : "خطا در ایجاد اتاق گفتگو", + "Send email" : "ارسال ایمیل", "Chairperson" : "رئیس", "Required participant" : "شرکت کننده مورد نیاز", "Optional participant" : "شرکت کننده اختیاری", @@ -168,6 +193,7 @@ "weekday" : "روز هفته", "weekend day" : " آخر هفته", "The recurrence definition of this event is not fully supported by Nextcloud. If you edit the recurrence-options, certain recurrences may be lost." : "تعریف بازگشتی از این رویداد توسط نکست کلود کاملاً پشتیبانی نمی شود. اگر گزینه های بازگشتی را ویرایش کنید ، ممکن است بازگشتی های خاصی از بین بروند.", + "available" : "در دسترس", "More" : "بیش‌تر", "Update this occurrence" : "این رویداد را به روز کنید", "Update this and all future" : "این و همه آینده را به روز کنید", @@ -188,6 +214,7 @@ "Delete this and all future" : "این و همه آینده را حذف کنید", "Details" : "جزئیات", "Attendees" : "شرکت کنندگان", + "Resources" : "منابع", "Close" : "بستن", "Show more details" : "جزئیات بیشتر را نشان دهید", "Subscribe to {name}" : "اشتراک در {name}", @@ -235,7 +262,11 @@ "until {untilDate}" : "تا زمان {untilDate}", "_%n time_::_%n times_" : ["%n بار","%n بارها"], "Untitled event" : "رویداد بدون عنوان", + "Prev" : "مقدمه", + "Next" : "بعدی", + "Year" : "سال", "_+%n more_::_+%n more_" : ["+%n بیشتر","+%n بیشتر"], + "Other" : "اعلان‌ها", "When shared show" : "هنگام نمایش مشترک", "When shared show full event" : "هنگام اشتراک گذاری ، رویداد کامل را نشان می دهد", "When shared show only busy" : "وقتی نمایش اشتراکی فقط مشغول است", @@ -260,6 +291,7 @@ "Relaxing" : "آرامش بخش", "Relax" : "آروم باش", "Presentation" : "ارائه", + "Talk" : "گفتگو", "Camping" : "چادر زدن", "Camp" : "اردوگاه", "Movie" : "فیلم", @@ -296,6 +328,7 @@ "Doctor" : "دکتر", "Health" : "سلامتی", "Dentist" : "دندانپزشک", + "Hospital" : "بیمارستان", "Interview" : "مصاحبه", "Training" : "آموزش", "Practice" : "تمرین", @@ -329,12 +362,14 @@ "Party" : "مهمانی - جشن", "Celebration" : "جشن", "Celebrate" : "جشن گرفتن", + "Birthday" : "روزتولد", "Shopping" : "خريد كردن", "Skate" : "اسکیت", "Skateboard" : "صفحه اسکیت", "Wine tasting" : "مزه کردن شراب", "Golf" : "گلف", "Dinner" : "شام", - "Lunch" : "ناهار" + "Lunch" : "ناهار", + "User not found" : "کاربر یافت نشد" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/l10n/fi.js b/l10n/fi.js index 646791f43986124e4265c4d91c118a55a1212171..04f9594de6d66f3e565228922bee007fa65e91d3 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -33,6 +33,7 @@ OC.L10N.register( "Next day" : "Seuraava päivä", "Next week" : "Seuraava viikko", "Next month" : "Seuraava kuukausi", + "New event" : "Uusi tapahtuma", "Today" : "Tänään", "Day" : "Päivä", "Week" : "Viikko", @@ -46,11 +47,14 @@ OC.L10N.register( "Appointment link could not be copied to clipboard" : "Linkkiä tapaamiseen ei voitu kopioida leikepöydälle", "Add new" : "Lisää uusi", "Untitled calendar" : "Nimetön kalenteri", + "Disable calendar" : "Poista kalenteri käytöstä", + "Enable calendar" : "Ota kalenteri käyttöön", "Edit name" : "Muokkaa nimeä", "Saving name …" : "Tallennetaan nimi …", "Edit color" : "Muokkaa väriä", "Saving color …" : "Tallennetaan väri …", "Copy private link" : "Kopioi yksityinen linkki", + "Export" : "Vie", "Unshare from me" : "Lopeta jako minulle", "An error occurred, unable to change visibility of the calendar." : "Tapahtui virhe. Kalenterin näkyvyyttä ei voitu muuttaa.", "An error occurred, unable to delete the calendar." : "Tapahtui virhe, kalenteria ei voitu poistaa.", @@ -90,6 +94,7 @@ OC.L10N.register( "An error occurred, unable to change the permission of the share." : "Tapahtui virhe, jaon käyttöoikeuksia ei pysty muokkaamaan.", "+ New calendar" : "+ Uusi kalenteri", "New calendar" : "Uusi kalenteri", + "Name for new calendar" : "Uuden kalenterin nimi", "Creating calendar …" : "Luodaan kalenteri …", "New calendar with task list" : "Uusi kalenteri tehtävälistan kera", "New subscription from link (read-only)" : "Uusi tilaus linkistä (vain luku)", @@ -105,6 +110,7 @@ OC.L10N.register( "Delete permanently" : "Poista pysyvästi", "Empty trash bin" : "Tyhjennä roskakori", "Untitled element" : "Nimetön elementti", + "Unknown calendar" : "Tuntematon kalenteri", "Could not load deleted calendars and objects" : "Poistettuja kalentereita tai objekteja ei voitu ladata", "Could not restore calendar or event" : "Kalenteria tai tapahtumaa ei voitu palauttaa", "Do you really want to empty the trash bin?" : "Haluatko varmasti tyhjentää roskakorin?", @@ -120,6 +126,7 @@ OC.L10N.register( "{filename} could not be parsed" : "Tiedostoa {filename} ei voitu jäsentää", "No valid files found, aborting import" : "Kelvollisia tiedostoja ei löytynyt, lopetetaan tuonti", "Import partially failed. Imported {accepted} out of {total}." : "Tuonti epäonnistui osittain. Tuotiin {accepted}/{total}.", + "_Successfully imported %n event_::_Successfully imported %n events_" : ["Tuotiin onnistuneesti %n tapahtuma","Tuotiin onnistuneesti %n tapahtumaa"], "Automatic" : "Automaattinen", "Automatic ({detected})" : "Automaattinen ({detected})", "New setting was not saved successfully." : "Uutta asetusta ei tallennettu onnistuneesti.", @@ -170,6 +177,8 @@ OC.L10N.register( "Duration" : "Kesto", "Increments" : "Aikaväli", "Pick time ranges where appointments are allowed" : "Valitse aikavälit joihin sallitaan tapaamisia", + "to" : "Vastaanottaja", + "Delete slot" : "Poista aikarako", "No times set" : "Ei asetettuja aikoja", "Add" : "Lisää", "Monday" : "Maanantai", @@ -182,11 +191,11 @@ OC.L10N.register( "Before the event" : "Ennen tapahtumaa", "After the event" : "Tapahtuman jälkeen", "Planning restrictions" : "Suunnittelurajoitukset", + "Max slots per day" : "Aikarakoja enintään päivää kohden", "Create appointment" : "Luo tapaaminen", "Edit appointment" : "Muokkaa tapaamista", "Save" : "Tallenna", "Update" : "Päivitä", - "Your appointment is booked" : "Tapaamisesi on kirjattu", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Lähetimme sinulle sähköpostin yksityiskohtien kera. Ole hyvä ja hyväksy tapaamisesi käyttäen linkkiä sähköpostissa. Voit sulkea tämän sivun.", "Your name" : "Nimesi", "Your email address" : "Sähköpostiosoitteesi", @@ -210,7 +219,13 @@ OC.L10N.register( "_hour_::_hours_" : ["tunti","tuntia"], "_day_::_days_" : ["päivä","päivää"], "_week_::_weeks_" : ["viikko","viikkoa"], + "Suggested" : "Ehdotettu", "Available" : "Saatavilla", + "Not available" : "Ei saatavilla", + "Checking availability" : "Tarkistetaan saatavuutta", + "Invitation accepted" : "Kutsu hyväksytty", + "Accepted {organizerName}'s invitation" : "Hyväksytty järjestäjän {organizerName} kutsu", + "Invitation sent" : "Kutsu lähetetty", "Availability of attendees, resources and rooms" : "Osallistujien, resurssien ja huoneiden saatavuus", "{organizer} (organizer)" : "{organizer} (järjestäjä)", "Free" : "Vapaa", @@ -218,7 +233,11 @@ OC.L10N.register( "Busy" : "Varattu", "Out of office" : "Ulkona toimistolta", "Unknown" : "Tuntematon", + "Accept" : "Hyväksy", + "Decline" : "Kieltäydy", "Tentative" : "Alustava", + "The invitation has been accepted successfully." : "Kutsu on hyväksytty.", + "Failed to accept the invitation." : "Kutsun hyväksyminen epäonnistui.", "Create Talk room for this event" : "Luo Talk-huone tälle tapahtumalle", "Show busy times" : "Näytä varatut ajat", "No attendees yet" : "Ei vielä osallistujia", @@ -301,10 +320,14 @@ OC.L10N.register( "Type to search time zone" : "Kirjoita etsiäksesi aikavyöhykettä", "Global" : "Julkinen", "Select date" : "Valitse päivämäärä", + "Select slot" : "Valitse aikarako", + "No slots available" : "Aikarakoja ei ole saatavilla", "Appointment Details:" : "Tapaamisen yksityiskohdat:", "Time:" : "Aika:", "Thank you. Your booking from {startDate} to {endDate} has been confirmed." : "Kiitos. varauksesi {startDate} - {endDate} on vahvistettu.", "Book another appointment:" : "Varaa toinen tapaaminen:", + "See all available slots" : "Näytä kaikki saatavilla olevat aikaraot", + "Please book a different slot:" : "Varaa muu aikarako:", "Personal" : "Henkilökohtainen", "The automatic time zone detection determined your time zone to be UTC.\nThis is most likely the result of security measures of your web browser.\nPlease set your time zone manually in the calendar settings." : "Automaattinen aikavyöhykkeentunnistus määritti aikavyöhykkeesi olevan UTC. \nTämä johtuu todennäköisesti selaimesi tietoturva-asetuksista.\nOle hyvä ja aseta aikavyöhykkeesi manuaalisesti kalenterin asetuksista.", "Your configured time zone ({timezoneId}) was not found. Falling back to UTC.\nPlease change your time zone in the settings and report this issue." : "Asettamaasi aikavyöhykettä ({timezoneId}) ei löytynyt. Vaihdetaan takaisin UTC:hen.\nOle hyvä ja vaihda aikavyöhykkeesi asetuksista ja ilmoita tästä ongelmasta.", @@ -324,6 +347,7 @@ OC.L10N.register( "Close" : "Sulje", "Show more details" : "Näytä lisää tietoja", "Subscribe to {name}" : "Tilaa {name}", + "Export {name}" : "Vie {name}", "Anniversary" : "Vuosipäivä", "Appointment" : "Tapaaminen", "Business" : "Business", @@ -409,14 +433,28 @@ OC.L10N.register( "Meditation" : "Meditaatio", "Relaxing" : "Rentoutumista", "Relax" : "Rentoutumista", + "Commuting" : "Työmatkalla", + "Invoice" : "Lasku", + "Bank" : "Pankki", + "Wedding" : "Häät", + "Dog" : "Koira", + "Concert" : "Konsertti", + "Festival" : "Festivaali", + "Theater" : "Teatteri", + "Theatre" : "Teatteri", "Presentation" : "Esitys", + "Talk" : "Puhe", + "Speech" : "Puhe", "Camping" : "Telttailua", "Camp" : "Leiri", + "Barbecue" : "Grillaus", + "Barbeque" : "Grillaus", "Movie" : "Elokuva", "Cinema" : "Elokuvateatteri", "Graduation" : "Valmistujaiset", "Brainstorm" : "Brainstorm", "Review" : "Esikatsele", + "Proofreading" : "Oikoluku", "Baseball" : "Pesäpallo", "Meet" : "Liity", "Planning" : "Suunnittelua", @@ -429,8 +467,10 @@ OC.L10N.register( "Football" : "Jalkapallo", "Gaming" : "Pelailua", "Drive" : "Ajo", + "Driving" : "Ajaminen", "Bicycle" : "Polkupyöräily", "Cycle" : "Polkupyöräily", + "Cycling" : "Pyöräily", "Biking" : "Polkupyöräily", "Bike" : "Polkupyörä", "Podcast" : "Podcast", @@ -443,10 +483,12 @@ OC.L10N.register( "Museum" : "Museo", "Pilates" : "Pilates", "Park" : "Puisto", + "Walk" : "Kävely", "Studying" : "Opiskelua", "Doctor" : "Lääkäri", "Health" : "Terveys", "Dentist" : "Hammaslääkäri", + "Hospital" : "Sairaala", "Interview" : "Haastattelu", "Training" : "Treenit", "Practice" : "Harjoittele", @@ -457,6 +499,7 @@ OC.L10N.register( "Gym" : "Sali", "Barber" : "Parturi", "Haircut" : "Kampaamo", + "Hairdresser" : "Kampaaja", "Exam" : "Koe", "Working" : "Töitä", "New Years Eve" : "Uudenvuodenaatto", @@ -485,12 +528,15 @@ OC.L10N.register( "Party" : "Juhlat", "Celebration" : "Juhlintaa", "Celebrate" : "Juhli", + "Birthday" : "Syntymäpäivä", "Shopping" : "Ostokset", "Skate" : "Skeittausta", "Skateboard" : "Skeittaus", "Wine tasting" : "Viininmaistelu", "Golf" : "Golf", "Dinner" : "Illallinen", - "Lunch" : "Lounas" + "Lunch" : "Lounas", + "Appointment not found" : "Tapaamista ei löydy", + "User not found" : "Käyttäjää ei löydy" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/fi.json b/l10n/fi.json index f75834fa1f75c04a9d753e824e70a6ff3d57f31c..a56339f339101fbaec625901f289f453d7e141c8 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -31,6 +31,7 @@ "Next day" : "Seuraava päivä", "Next week" : "Seuraava viikko", "Next month" : "Seuraava kuukausi", + "New event" : "Uusi tapahtuma", "Today" : "Tänään", "Day" : "Päivä", "Week" : "Viikko", @@ -44,11 +45,14 @@ "Appointment link could not be copied to clipboard" : "Linkkiä tapaamiseen ei voitu kopioida leikepöydälle", "Add new" : "Lisää uusi", "Untitled calendar" : "Nimetön kalenteri", + "Disable calendar" : "Poista kalenteri käytöstä", + "Enable calendar" : "Ota kalenteri käyttöön", "Edit name" : "Muokkaa nimeä", "Saving name …" : "Tallennetaan nimi …", "Edit color" : "Muokkaa väriä", "Saving color …" : "Tallennetaan väri …", "Copy private link" : "Kopioi yksityinen linkki", + "Export" : "Vie", "Unshare from me" : "Lopeta jako minulle", "An error occurred, unable to change visibility of the calendar." : "Tapahtui virhe. Kalenterin näkyvyyttä ei voitu muuttaa.", "An error occurred, unable to delete the calendar." : "Tapahtui virhe, kalenteria ei voitu poistaa.", @@ -88,6 +92,7 @@ "An error occurred, unable to change the permission of the share." : "Tapahtui virhe, jaon käyttöoikeuksia ei pysty muokkaamaan.", "+ New calendar" : "+ Uusi kalenteri", "New calendar" : "Uusi kalenteri", + "Name for new calendar" : "Uuden kalenterin nimi", "Creating calendar …" : "Luodaan kalenteri …", "New calendar with task list" : "Uusi kalenteri tehtävälistan kera", "New subscription from link (read-only)" : "Uusi tilaus linkistä (vain luku)", @@ -103,6 +108,7 @@ "Delete permanently" : "Poista pysyvästi", "Empty trash bin" : "Tyhjennä roskakori", "Untitled element" : "Nimetön elementti", + "Unknown calendar" : "Tuntematon kalenteri", "Could not load deleted calendars and objects" : "Poistettuja kalentereita tai objekteja ei voitu ladata", "Could not restore calendar or event" : "Kalenteria tai tapahtumaa ei voitu palauttaa", "Do you really want to empty the trash bin?" : "Haluatko varmasti tyhjentää roskakorin?", @@ -118,6 +124,7 @@ "{filename} could not be parsed" : "Tiedostoa {filename} ei voitu jäsentää", "No valid files found, aborting import" : "Kelvollisia tiedostoja ei löytynyt, lopetetaan tuonti", "Import partially failed. Imported {accepted} out of {total}." : "Tuonti epäonnistui osittain. Tuotiin {accepted}/{total}.", + "_Successfully imported %n event_::_Successfully imported %n events_" : ["Tuotiin onnistuneesti %n tapahtuma","Tuotiin onnistuneesti %n tapahtumaa"], "Automatic" : "Automaattinen", "Automatic ({detected})" : "Automaattinen ({detected})", "New setting was not saved successfully." : "Uutta asetusta ei tallennettu onnistuneesti.", @@ -168,6 +175,8 @@ "Duration" : "Kesto", "Increments" : "Aikaväli", "Pick time ranges where appointments are allowed" : "Valitse aikavälit joihin sallitaan tapaamisia", + "to" : "Vastaanottaja", + "Delete slot" : "Poista aikarako", "No times set" : "Ei asetettuja aikoja", "Add" : "Lisää", "Monday" : "Maanantai", @@ -180,11 +189,11 @@ "Before the event" : "Ennen tapahtumaa", "After the event" : "Tapahtuman jälkeen", "Planning restrictions" : "Suunnittelurajoitukset", + "Max slots per day" : "Aikarakoja enintään päivää kohden", "Create appointment" : "Luo tapaaminen", "Edit appointment" : "Muokkaa tapaamista", "Save" : "Tallenna", "Update" : "Päivitä", - "Your appointment is booked" : "Tapaamisesi on kirjattu", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Lähetimme sinulle sähköpostin yksityiskohtien kera. Ole hyvä ja hyväksy tapaamisesi käyttäen linkkiä sähköpostissa. Voit sulkea tämän sivun.", "Your name" : "Nimesi", "Your email address" : "Sähköpostiosoitteesi", @@ -208,7 +217,13 @@ "_hour_::_hours_" : ["tunti","tuntia"], "_day_::_days_" : ["päivä","päivää"], "_week_::_weeks_" : ["viikko","viikkoa"], + "Suggested" : "Ehdotettu", "Available" : "Saatavilla", + "Not available" : "Ei saatavilla", + "Checking availability" : "Tarkistetaan saatavuutta", + "Invitation accepted" : "Kutsu hyväksytty", + "Accepted {organizerName}'s invitation" : "Hyväksytty järjestäjän {organizerName} kutsu", + "Invitation sent" : "Kutsu lähetetty", "Availability of attendees, resources and rooms" : "Osallistujien, resurssien ja huoneiden saatavuus", "{organizer} (organizer)" : "{organizer} (järjestäjä)", "Free" : "Vapaa", @@ -216,7 +231,11 @@ "Busy" : "Varattu", "Out of office" : "Ulkona toimistolta", "Unknown" : "Tuntematon", + "Accept" : "Hyväksy", + "Decline" : "Kieltäydy", "Tentative" : "Alustava", + "The invitation has been accepted successfully." : "Kutsu on hyväksytty.", + "Failed to accept the invitation." : "Kutsun hyväksyminen epäonnistui.", "Create Talk room for this event" : "Luo Talk-huone tälle tapahtumalle", "Show busy times" : "Näytä varatut ajat", "No attendees yet" : "Ei vielä osallistujia", @@ -299,10 +318,14 @@ "Type to search time zone" : "Kirjoita etsiäksesi aikavyöhykettä", "Global" : "Julkinen", "Select date" : "Valitse päivämäärä", + "Select slot" : "Valitse aikarako", + "No slots available" : "Aikarakoja ei ole saatavilla", "Appointment Details:" : "Tapaamisen yksityiskohdat:", "Time:" : "Aika:", "Thank you. Your booking from {startDate} to {endDate} has been confirmed." : "Kiitos. varauksesi {startDate} - {endDate} on vahvistettu.", "Book another appointment:" : "Varaa toinen tapaaminen:", + "See all available slots" : "Näytä kaikki saatavilla olevat aikaraot", + "Please book a different slot:" : "Varaa muu aikarako:", "Personal" : "Henkilökohtainen", "The automatic time zone detection determined your time zone to be UTC.\nThis is most likely the result of security measures of your web browser.\nPlease set your time zone manually in the calendar settings." : "Automaattinen aikavyöhykkeentunnistus määritti aikavyöhykkeesi olevan UTC. \nTämä johtuu todennäköisesti selaimesi tietoturva-asetuksista.\nOle hyvä ja aseta aikavyöhykkeesi manuaalisesti kalenterin asetuksista.", "Your configured time zone ({timezoneId}) was not found. Falling back to UTC.\nPlease change your time zone in the settings and report this issue." : "Asettamaasi aikavyöhykettä ({timezoneId}) ei löytynyt. Vaihdetaan takaisin UTC:hen.\nOle hyvä ja vaihda aikavyöhykkeesi asetuksista ja ilmoita tästä ongelmasta.", @@ -322,6 +345,7 @@ "Close" : "Sulje", "Show more details" : "Näytä lisää tietoja", "Subscribe to {name}" : "Tilaa {name}", + "Export {name}" : "Vie {name}", "Anniversary" : "Vuosipäivä", "Appointment" : "Tapaaminen", "Business" : "Business", @@ -407,14 +431,28 @@ "Meditation" : "Meditaatio", "Relaxing" : "Rentoutumista", "Relax" : "Rentoutumista", + "Commuting" : "Työmatkalla", + "Invoice" : "Lasku", + "Bank" : "Pankki", + "Wedding" : "Häät", + "Dog" : "Koira", + "Concert" : "Konsertti", + "Festival" : "Festivaali", + "Theater" : "Teatteri", + "Theatre" : "Teatteri", "Presentation" : "Esitys", + "Talk" : "Puhe", + "Speech" : "Puhe", "Camping" : "Telttailua", "Camp" : "Leiri", + "Barbecue" : "Grillaus", + "Barbeque" : "Grillaus", "Movie" : "Elokuva", "Cinema" : "Elokuvateatteri", "Graduation" : "Valmistujaiset", "Brainstorm" : "Brainstorm", "Review" : "Esikatsele", + "Proofreading" : "Oikoluku", "Baseball" : "Pesäpallo", "Meet" : "Liity", "Planning" : "Suunnittelua", @@ -427,8 +465,10 @@ "Football" : "Jalkapallo", "Gaming" : "Pelailua", "Drive" : "Ajo", + "Driving" : "Ajaminen", "Bicycle" : "Polkupyöräily", "Cycle" : "Polkupyöräily", + "Cycling" : "Pyöräily", "Biking" : "Polkupyöräily", "Bike" : "Polkupyörä", "Podcast" : "Podcast", @@ -441,10 +481,12 @@ "Museum" : "Museo", "Pilates" : "Pilates", "Park" : "Puisto", + "Walk" : "Kävely", "Studying" : "Opiskelua", "Doctor" : "Lääkäri", "Health" : "Terveys", "Dentist" : "Hammaslääkäri", + "Hospital" : "Sairaala", "Interview" : "Haastattelu", "Training" : "Treenit", "Practice" : "Harjoittele", @@ -455,6 +497,7 @@ "Gym" : "Sali", "Barber" : "Parturi", "Haircut" : "Kampaamo", + "Hairdresser" : "Kampaaja", "Exam" : "Koe", "Working" : "Töitä", "New Years Eve" : "Uudenvuodenaatto", @@ -483,12 +526,15 @@ "Party" : "Juhlat", "Celebration" : "Juhlintaa", "Celebrate" : "Juhli", + "Birthday" : "Syntymäpäivä", "Shopping" : "Ostokset", "Skate" : "Skeittausta", "Skateboard" : "Skeittaus", "Wine tasting" : "Viininmaistelu", "Golf" : "Golf", "Dinner" : "Illallinen", - "Lunch" : "Lounas" + "Lunch" : "Lounas", + "Appointment not found" : "Tapaamista ei löydy", + "User not found" : "Käyttäjää ei löydy" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/fr.js b/l10n/fr.js index 8d300e97c34c0ad5112ca0e6f08481dd078d7ce2..ea286ff1cbcdf84c535b37a1911591e13c1483f1 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -63,8 +63,8 @@ OC.L10N.register( "Calendar link could not be copied to clipboard." : "Impossible de copier le lien de l'agenda dans le presse-papier.", "An error occurred, unable to rename the calendar." : "Une erreur est survenue, impossible de renommer l'agenda.", "An error occurred, unable to change the calendar's color." : "Une erreur est survenue, impossible de modifier la couleur de l'agenda.", - "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Suppression du partage de l'agenda dans {countdown} seconde","Suppression du partage de l'agenda dans {countdown} secondes"], - "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Suppression de l'agenda dans {countdown} seconde","Suppression de l'agenda dans {countdown} secondes"], + "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Suppression du partage de l'agenda dans {countdown} seconde","Suppression du partage de l'agenda dans {countdown} secondes","Suppression du partage de l'agenda dans {countdown} secondes"], + "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Suppression de l'agenda dans {countdown} seconde","Suppression de l'agenda dans {countdown} secondes","Suppression de l'agenda dans {countdown} secondes"], "Share link" : "Lien de partage", "Publish calendar" : "Publier l'agenda", "Publishing calendar" : "Publication de l'agenda en cours", @@ -115,18 +115,19 @@ OC.L10N.register( "Could not load deleted calendars and objects" : "Impossible de charger les calendriers et objets supprimés", "Could not restore calendar or event" : "Impossible de restaurer le calendrier ou l'événement", "Do you really want to empty the trash bin?" : "Voulez-vous vraiment vider la corbeille ?", - "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["Les éléments dans la corbeille sont supprimés après {numDays} jours","Les éléments dans la corbeille sont supprimés après {numDays} jours"], + "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["Les éléments dans la corbeille sont supprimés après {numDays} jours","Les éléments dans la corbeille sont supprimés après {numDays} jours","Les éléments dans la corbeille sont supprimés après {numDays} jours"], "Could not update calendar order." : "Impossible de mettre à jour l'ordre du calendrier.", "Import calendars" : "Importer des calendriers", "Please select a calendar to import into …" : "Veuillez sélectionner un agenda dans lequel importer  …", "Filename" : "Nom du fichier", "Calendar to import into" : "Agenda dans lequel importer", "Cancel" : "Annuler", - "_Import calendar_::_Import calendars_" : ["Importer un agenda","Importer des agendas"], + "_Import calendar_::_Import calendars_" : ["Importer un agenda","Importer des agendas","Importer des agendas"], "{filename} is an unsupported file-type" : "Le fichier {filename} est dans un format non pris en charge", "{filename} could not be parsed" : "{filename} n'a pas pu être analysé", "No valid files found, aborting import" : "Aucun fichier valide trouvé, annulation de l’importation", "Import partially failed. Imported {accepted} out of {total}." : "Échec partiel de l’importation. Import de {accepted} sur {total}.", + "_Successfully imported %n event_::_Successfully imported %n events_" : [" %n évènement importé avec succès","%n évènements importés avec succès","%n évènements importés avec succès"], "Automatic" : "Automatique", "Automatic ({detected})" : "Automatique ({detected})", "New setting was not saved successfully." : "Le nouveau paramètre n'a pas pu être enregistré.", @@ -143,6 +144,10 @@ OC.L10N.register( "Actions" : "Actions", "Create event" : "Créer un événement", "Show shortcuts" : "Afficher les raccourcis", + "Editor" : "Éditeur", + "Close editor" : "Fermer l'éditeur", + "Save edited event" : "Sauvegarder l'événement édité", + "Delete edited event" : "Supprimer l'événement édité", "Enable birthday calendar" : "Activer l'agenda des anniversaires", "Show tasks in calendar" : "Afficher les tâches dans l'agenda", "Enable simplified editor" : "Activer l'éditeur simplifié", @@ -161,13 +166,13 @@ OC.L10N.register( "CalDAV link could not be copied to clipboard." : "Impossible de copier le lien CalDAV dans le presse-papier.", "Appointment was created successfully" : "Le rendez-vous a été créé avec succès", "Appointment was updated successfully" : "Le rendez-vous a été modifié avec succès", - "_{duration} minute_::_{duration} minutes_" : ["{duration} minute","{duration} minutes"], + "_{duration} minute_::_{duration} minutes_" : ["{duration} minute","{duration} minutes","{duration} minutes"], "0 minutes" : "0 minutes", - "_{duration} hour_::_{duration} hours_" : ["{duration} heure","{duration} heures"], - "_{duration} day_::_{duration} days_" : ["{duration} jour","{duration} jours"], - "_{duration} week_::_{duration} weeks_" : ["{duration} semaine","{duration} semaines"], - "_{duration} month_::_{duration} months_" : ["{duration} mois","{duration} mois"], - "_{duration} year_::_{duration} years_" : ["{duration} année","{duration} années"], + "_{duration} hour_::_{duration} hours_" : ["{duration} heure","{duration} heures","{duration} heures"], + "_{duration} day_::_{duration} days_" : ["{duration} jour","{duration} jours","{duration} jours"], + "_{duration} week_::_{duration} weeks_" : ["{duration} semaine","{duration} semaines","{duration} semaines"], + "_{duration} month_::_{duration} months_" : ["{duration} mois","{duration} mois","{duration} mois"], + "_{duration} year_::_{duration} years_" : ["{duration} année","{duration} années","{duration} années"], "To configure appointments, add your email address in personal settings." : "Pour configurer les rendez-vous, ajouter votre adresse e-mail dans les paramètres personnels.", "Public – shown on the profile page" : "Public - affiché sur la page du profil", "Private – only accessible via secret link" : "Privé - uniquement accessible via un lien secret", @@ -200,7 +205,6 @@ OC.L10N.register( "Edit appointment" : "Modifier le rendez-vous", "Save" : "Enregistrer", "Update" : "Mettre à jour", - "Your appointment is booked" : "Votre rendez-vous est réservé", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Nous vous avons envoyé un email avec les détails. Veuillez confirmer votre rendez-vous en utilisant le lien dans l'email. Vous pouvez maintenant fermer cette page.", "Your name" : "Votre nom", "Your email address" : "Votre e-mail", @@ -214,20 +218,31 @@ OC.L10N.register( "Audio notification" : "Notification sonore", "Other notification" : "Autre notification", "Relative to event" : "Par rapport à l’événement", - "On date" : "À jour", + "On date" : "Échéance", "Edit time" : "Modifier l'heure", "Save time" : "Enregistrer l'heure", "Remove reminder" : "Supprimer le rappel", "on" : "le", - "at" : "à", + "at" : "le", "+ Add reminder" : "+ Ajouter un rappel", "Add reminder" : "Ajouter un rappel", - "_second_::_seconds_" : ["seconde","secondes"], - "_minute_::_minutes_" : ["minute","minutes"], - "_hour_::_hours_" : ["heure","heures"], - "_day_::_days_" : ["jour","jours"], - "_week_::_weeks_" : ["semaine","semaines"], + "_second_::_seconds_" : ["seconde","secondes","secondes"], + "_minute_::_minutes_" : ["minute","minutes","minutes"], + "_hour_::_hours_" : ["heure","heures","heures"], + "_day_::_days_" : ["jour","jours","jours"], + "_week_::_weeks_" : ["semaine","semaines","semaines"], + "Suggested" : "Suggéré", "Available" : "Disponible", + "Not available" : "Non disponible", + "Checking availability" : "Vérification de la disponiblité", + "Invitation accepted" : "Invitation acceptée", + "Accepted {organizerName}'s invitation" : "Invitation de {organizerName} acceptée", + "Invitation declined" : "Invitation refusée", + "Declined {organizerName}'s invitation" : "Invitation de {organizerName} refusée", + "Invitation is delegated" : "L'invitation est déléguée", + "Participation marked as tentative" : "Participation marquée comme provisoire", + "Invitation sent" : "Invitation envoyée", + "Has not responded to {organizerName}'s invitation yet" : "N'a pas encore répondu à l'invitation de {organizerName}", "Availability of attendees, resources and rooms" : "Disponibilité des participants, ressources et salles.", "{organizer} (organizer)" : "{organizer} (organizer)", "Free" : "Libre", @@ -273,7 +288,7 @@ OC.L10N.register( "never" : "jamais", "on date" : "à jour", "after" : "après ", - "_time_::_times_" : ["fois","fois"], + "_time_::_times_" : ["fois","fois","fois"], "This event is the recurrence-exception of a recurrence-set. You cannot add a recurrence-rule to it." : "Cet événement est une exception dans un ensemble de récurrence. Vous ne pouvez pas y ajouter une règle de récurrence.", "first" : "premier", "third" : "troisième", @@ -285,8 +300,8 @@ OC.L10N.register( "Repeat every" : "Répéter chaque", "By day of the month" : "Par jour du mois", "On the" : "Le", - "_month_::_months_" : ["mois","mois"], - "_year_::_years_" : ["année","années"], + "_month_::_months_" : ["mois","mois","mois"], + "_year_::_years_" : ["année","années","années"], "weekday" : "jour de la semaine", "weekend day" : "jour de weekend", "No recurrence" : "Pas de récurrence ", @@ -298,7 +313,7 @@ OC.L10N.register( "Has a whiteboard" : "Dispose d'un tableau blanc", "Wheelchair accessible" : "Accessible en fauteuil roulant", "Remove resource" : "Supprimer la ressource", - "_{seatingCapacity} seat_::_{seatingCapacity} seats_" : ["{seatingCapacity} place assise","{seatingCapacity} places assises"], + "_{seatingCapacity} seat_::_{seatingCapacity} seats_" : ["{seatingCapacity} place assise","{seatingCapacity} places assises","{seatingCapacity} places assises"], "Projector" : "Projecteur", "Whiteboard" : "Tableau blanc", "Search for resources or rooms" : "Rechercher une ressource ou un lieu", @@ -359,6 +374,7 @@ OC.L10N.register( "Close" : "Fermer", "Show more details" : "Afficher plus de détails", "Subscribe to {name}" : "S'abonner à {name}", + "Export {name}" : "Exporter {name}", "Anniversary" : "Anniversaire", "Appointment" : "Rendez-vous", "Business" : "Entreprise", @@ -374,8 +390,8 @@ OC.L10N.register( "Travel" : "Voyage", "Vacation" : "Congé", "Midnight on the day the event starts" : "Dès minuit, le jour de l'évènement", - "_%n day before the event at {formattedHourMinute}_::_%n days before the event at {formattedHourMinute}_" : ["%n jour avant l'évènement, à {formattedHourMinute}","%n jours avant l'évènement, à {formattedHourMinute}"], - "_%n week before the event at {formattedHourMinute}_::_%n weeks before the event at {formattedHourMinute}_" : ["%n semaine avant l'évènement, à {formattedHourMinute}","%n semaines avant l'évènement, à {formattedHourMinute}"], + "_%n day before the event at {formattedHourMinute}_::_%n days before the event at {formattedHourMinute}_" : ["%n jour avant l'évènement, à {formattedHourMinute}","%n jours avant l'évènement, à {formattedHourMinute}","%n jours avant l'évènement, à {formattedHourMinute}"], + "_%n week before the event at {formattedHourMinute}_::_%n weeks before the event at {formattedHourMinute}_" : ["%n semaine avant l'évènement, à {formattedHourMinute}","%n semaines avant l'évènement, à {formattedHourMinute}","%n semaines avant l'évènement, à {formattedHourMinute}"], "on the day of the event at {formattedHourMinute}" : "le jour de l'évènement, à {formattedHourMinute}", "at the event's start" : "au début de l'évènement", "at the event's end" : "à la fin de l'évènement", @@ -391,17 +407,17 @@ OC.L10N.register( "Weekly" : "Hebdomadaire", "Monthly" : "Mensuel", "Yearly" : "Annuel", - "_Every %n day_::_Every %n days_" : ["Tout les %n jour","Tous les %n jours"], - "_Every %n week_::_Every %n weeks_" : ["Toute les %n semaine","Toutes les %n semaines"], - "_Every %n month_::_Every %n months_" : ["Tous les %n mois","Tous les %n mois"], - "_Every %n year_::_Every %n years_" : ["Tous les %n ans","Tous les %n ans"], - "_on {weekday}_::_on {weekdays}_" : ["le {weekday}","les {weekdays}"], - "_on day {dayOfMonthList}_::_on days {dayOfMonthList}_" : ["le {dayOfMonthList}","les {dayOfMonthList}"], + "_Every %n day_::_Every %n days_" : ["Tout les %n jour","Tous les %n jours","Tous les %n jours"], + "_Every %n week_::_Every %n weeks_" : ["Toute les %n semaine","Toutes les %n semaines","Toutes les %n semaines"], + "_Every %n month_::_Every %n months_" : ["Tous les %n mois","Tous les %n mois","Tous les %n mois"], + "_Every %n year_::_Every %n years_" : ["Tous les %n ans","Tous les %n ans","Tous les %n ans"], + "_on {weekday}_::_on {weekdays}_" : ["le {weekday}","les {weekdays}","les {weekdays}"], + "_on day {dayOfMonthList}_::_on days {dayOfMonthList}_" : ["le {dayOfMonthList}","les {dayOfMonthList}","les {dayOfMonthList}"], "on the {ordinalNumber} {byDaySet}" : "le {ordinalNumber} {byDaySet}", "in {monthNames}" : "en {monthNames}", "in {monthNames} on the {ordinalNumber} {byDaySet}" : "en {monthNames}, le {ordinalNumber} {byDaySet}", "until {untilDate}" : "jusqu'au {untilDate}", - "_%n time_::_%n times_" : ["%n fois","%n fois"], + "_%n time_::_%n times_" : ["%n fois","%n fois","%n fois"], "Untitled event" : "Événement sans titre", "Untitled task" : "Tâche sans titre", "Please ask your administrator to enable the Tasks App." : "Veuillez demander à votre administrateur d’activer l'application Tasks.", @@ -413,7 +429,7 @@ OC.L10N.register( "W" : "S", "%n more" : "%n de plus", "No events to display" : "Aucun événement à afficher", - "_+%n more_::_+%n more_" : ["+%n de plus","+%n de plus"], + "_+%n more_::_+%n more_" : ["+%n de plus","+%n de plus","+%n de plus"], "No events" : "Pas d'évènements", "Create a new event or change the visible time-range" : "Créer un nouvel évènement ou modifier la période visible", "It might have been deleted, or there was a typo in a link" : "Il a peut-être été supprimé, ou il y a une erreur dans le lien", @@ -581,4 +597,4 @@ OC.L10N.register( "%s has accepted your invitation to %s on %s" : "%s a accepté votre invitation %s du %s", "%s has tentatively accepted your invitation to %s on %s" : "%s a provisoirement accepté votre invitation %s du %s" }, -"nplurals=2; plural=(n > 1);"); +"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/fr.json b/l10n/fr.json index a6d40db2d9f6fa984ec0aad9dde36cca8d86d557..60a8a476e7b40332bf3e46e3c4c26e1b68379c0f 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -61,8 +61,8 @@ "Calendar link could not be copied to clipboard." : "Impossible de copier le lien de l'agenda dans le presse-papier.", "An error occurred, unable to rename the calendar." : "Une erreur est survenue, impossible de renommer l'agenda.", "An error occurred, unable to change the calendar's color." : "Une erreur est survenue, impossible de modifier la couleur de l'agenda.", - "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Suppression du partage de l'agenda dans {countdown} seconde","Suppression du partage de l'agenda dans {countdown} secondes"], - "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Suppression de l'agenda dans {countdown} seconde","Suppression de l'agenda dans {countdown} secondes"], + "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Suppression du partage de l'agenda dans {countdown} seconde","Suppression du partage de l'agenda dans {countdown} secondes","Suppression du partage de l'agenda dans {countdown} secondes"], + "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Suppression de l'agenda dans {countdown} seconde","Suppression de l'agenda dans {countdown} secondes","Suppression de l'agenda dans {countdown} secondes"], "Share link" : "Lien de partage", "Publish calendar" : "Publier l'agenda", "Publishing calendar" : "Publication de l'agenda en cours", @@ -113,18 +113,19 @@ "Could not load deleted calendars and objects" : "Impossible de charger les calendriers et objets supprimés", "Could not restore calendar or event" : "Impossible de restaurer le calendrier ou l'événement", "Do you really want to empty the trash bin?" : "Voulez-vous vraiment vider la corbeille ?", - "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["Les éléments dans la corbeille sont supprimés après {numDays} jours","Les éléments dans la corbeille sont supprimés après {numDays} jours"], + "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["Les éléments dans la corbeille sont supprimés après {numDays} jours","Les éléments dans la corbeille sont supprimés après {numDays} jours","Les éléments dans la corbeille sont supprimés après {numDays} jours"], "Could not update calendar order." : "Impossible de mettre à jour l'ordre du calendrier.", "Import calendars" : "Importer des calendriers", "Please select a calendar to import into …" : "Veuillez sélectionner un agenda dans lequel importer  …", "Filename" : "Nom du fichier", "Calendar to import into" : "Agenda dans lequel importer", "Cancel" : "Annuler", - "_Import calendar_::_Import calendars_" : ["Importer un agenda","Importer des agendas"], + "_Import calendar_::_Import calendars_" : ["Importer un agenda","Importer des agendas","Importer des agendas"], "{filename} is an unsupported file-type" : "Le fichier {filename} est dans un format non pris en charge", "{filename} could not be parsed" : "{filename} n'a pas pu être analysé", "No valid files found, aborting import" : "Aucun fichier valide trouvé, annulation de l’importation", "Import partially failed. Imported {accepted} out of {total}." : "Échec partiel de l’importation. Import de {accepted} sur {total}.", + "_Successfully imported %n event_::_Successfully imported %n events_" : [" %n évènement importé avec succès","%n évènements importés avec succès","%n évènements importés avec succès"], "Automatic" : "Automatique", "Automatic ({detected})" : "Automatique ({detected})", "New setting was not saved successfully." : "Le nouveau paramètre n'a pas pu être enregistré.", @@ -141,6 +142,10 @@ "Actions" : "Actions", "Create event" : "Créer un événement", "Show shortcuts" : "Afficher les raccourcis", + "Editor" : "Éditeur", + "Close editor" : "Fermer l'éditeur", + "Save edited event" : "Sauvegarder l'événement édité", + "Delete edited event" : "Supprimer l'événement édité", "Enable birthday calendar" : "Activer l'agenda des anniversaires", "Show tasks in calendar" : "Afficher les tâches dans l'agenda", "Enable simplified editor" : "Activer l'éditeur simplifié", @@ -159,13 +164,13 @@ "CalDAV link could not be copied to clipboard." : "Impossible de copier le lien CalDAV dans le presse-papier.", "Appointment was created successfully" : "Le rendez-vous a été créé avec succès", "Appointment was updated successfully" : "Le rendez-vous a été modifié avec succès", - "_{duration} minute_::_{duration} minutes_" : ["{duration} minute","{duration} minutes"], + "_{duration} minute_::_{duration} minutes_" : ["{duration} minute","{duration} minutes","{duration} minutes"], "0 minutes" : "0 minutes", - "_{duration} hour_::_{duration} hours_" : ["{duration} heure","{duration} heures"], - "_{duration} day_::_{duration} days_" : ["{duration} jour","{duration} jours"], - "_{duration} week_::_{duration} weeks_" : ["{duration} semaine","{duration} semaines"], - "_{duration} month_::_{duration} months_" : ["{duration} mois","{duration} mois"], - "_{duration} year_::_{duration} years_" : ["{duration} année","{duration} années"], + "_{duration} hour_::_{duration} hours_" : ["{duration} heure","{duration} heures","{duration} heures"], + "_{duration} day_::_{duration} days_" : ["{duration} jour","{duration} jours","{duration} jours"], + "_{duration} week_::_{duration} weeks_" : ["{duration} semaine","{duration} semaines","{duration} semaines"], + "_{duration} month_::_{duration} months_" : ["{duration} mois","{duration} mois","{duration} mois"], + "_{duration} year_::_{duration} years_" : ["{duration} année","{duration} années","{duration} années"], "To configure appointments, add your email address in personal settings." : "Pour configurer les rendez-vous, ajouter votre adresse e-mail dans les paramètres personnels.", "Public – shown on the profile page" : "Public - affiché sur la page du profil", "Private – only accessible via secret link" : "Privé - uniquement accessible via un lien secret", @@ -198,7 +203,6 @@ "Edit appointment" : "Modifier le rendez-vous", "Save" : "Enregistrer", "Update" : "Mettre à jour", - "Your appointment is booked" : "Votre rendez-vous est réservé", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Nous vous avons envoyé un email avec les détails. Veuillez confirmer votre rendez-vous en utilisant le lien dans l'email. Vous pouvez maintenant fermer cette page.", "Your name" : "Votre nom", "Your email address" : "Votre e-mail", @@ -212,20 +216,31 @@ "Audio notification" : "Notification sonore", "Other notification" : "Autre notification", "Relative to event" : "Par rapport à l’événement", - "On date" : "À jour", + "On date" : "Échéance", "Edit time" : "Modifier l'heure", "Save time" : "Enregistrer l'heure", "Remove reminder" : "Supprimer le rappel", "on" : "le", - "at" : "à", + "at" : "le", "+ Add reminder" : "+ Ajouter un rappel", "Add reminder" : "Ajouter un rappel", - "_second_::_seconds_" : ["seconde","secondes"], - "_minute_::_minutes_" : ["minute","minutes"], - "_hour_::_hours_" : ["heure","heures"], - "_day_::_days_" : ["jour","jours"], - "_week_::_weeks_" : ["semaine","semaines"], + "_second_::_seconds_" : ["seconde","secondes","secondes"], + "_minute_::_minutes_" : ["minute","minutes","minutes"], + "_hour_::_hours_" : ["heure","heures","heures"], + "_day_::_days_" : ["jour","jours","jours"], + "_week_::_weeks_" : ["semaine","semaines","semaines"], + "Suggested" : "Suggéré", "Available" : "Disponible", + "Not available" : "Non disponible", + "Checking availability" : "Vérification de la disponiblité", + "Invitation accepted" : "Invitation acceptée", + "Accepted {organizerName}'s invitation" : "Invitation de {organizerName} acceptée", + "Invitation declined" : "Invitation refusée", + "Declined {organizerName}'s invitation" : "Invitation de {organizerName} refusée", + "Invitation is delegated" : "L'invitation est déléguée", + "Participation marked as tentative" : "Participation marquée comme provisoire", + "Invitation sent" : "Invitation envoyée", + "Has not responded to {organizerName}'s invitation yet" : "N'a pas encore répondu à l'invitation de {organizerName}", "Availability of attendees, resources and rooms" : "Disponibilité des participants, ressources et salles.", "{organizer} (organizer)" : "{organizer} (organizer)", "Free" : "Libre", @@ -271,7 +286,7 @@ "never" : "jamais", "on date" : "à jour", "after" : "après ", - "_time_::_times_" : ["fois","fois"], + "_time_::_times_" : ["fois","fois","fois"], "This event is the recurrence-exception of a recurrence-set. You cannot add a recurrence-rule to it." : "Cet événement est une exception dans un ensemble de récurrence. Vous ne pouvez pas y ajouter une règle de récurrence.", "first" : "premier", "third" : "troisième", @@ -283,8 +298,8 @@ "Repeat every" : "Répéter chaque", "By day of the month" : "Par jour du mois", "On the" : "Le", - "_month_::_months_" : ["mois","mois"], - "_year_::_years_" : ["année","années"], + "_month_::_months_" : ["mois","mois","mois"], + "_year_::_years_" : ["année","années","années"], "weekday" : "jour de la semaine", "weekend day" : "jour de weekend", "No recurrence" : "Pas de récurrence ", @@ -296,7 +311,7 @@ "Has a whiteboard" : "Dispose d'un tableau blanc", "Wheelchair accessible" : "Accessible en fauteuil roulant", "Remove resource" : "Supprimer la ressource", - "_{seatingCapacity} seat_::_{seatingCapacity} seats_" : ["{seatingCapacity} place assise","{seatingCapacity} places assises"], + "_{seatingCapacity} seat_::_{seatingCapacity} seats_" : ["{seatingCapacity} place assise","{seatingCapacity} places assises","{seatingCapacity} places assises"], "Projector" : "Projecteur", "Whiteboard" : "Tableau blanc", "Search for resources or rooms" : "Rechercher une ressource ou un lieu", @@ -357,6 +372,7 @@ "Close" : "Fermer", "Show more details" : "Afficher plus de détails", "Subscribe to {name}" : "S'abonner à {name}", + "Export {name}" : "Exporter {name}", "Anniversary" : "Anniversaire", "Appointment" : "Rendez-vous", "Business" : "Entreprise", @@ -372,8 +388,8 @@ "Travel" : "Voyage", "Vacation" : "Congé", "Midnight on the day the event starts" : "Dès minuit, le jour de l'évènement", - "_%n day before the event at {formattedHourMinute}_::_%n days before the event at {formattedHourMinute}_" : ["%n jour avant l'évènement, à {formattedHourMinute}","%n jours avant l'évènement, à {formattedHourMinute}"], - "_%n week before the event at {formattedHourMinute}_::_%n weeks before the event at {formattedHourMinute}_" : ["%n semaine avant l'évènement, à {formattedHourMinute}","%n semaines avant l'évènement, à {formattedHourMinute}"], + "_%n day before the event at {formattedHourMinute}_::_%n days before the event at {formattedHourMinute}_" : ["%n jour avant l'évènement, à {formattedHourMinute}","%n jours avant l'évènement, à {formattedHourMinute}","%n jours avant l'évènement, à {formattedHourMinute}"], + "_%n week before the event at {formattedHourMinute}_::_%n weeks before the event at {formattedHourMinute}_" : ["%n semaine avant l'évènement, à {formattedHourMinute}","%n semaines avant l'évènement, à {formattedHourMinute}","%n semaines avant l'évènement, à {formattedHourMinute}"], "on the day of the event at {formattedHourMinute}" : "le jour de l'évènement, à {formattedHourMinute}", "at the event's start" : "au début de l'évènement", "at the event's end" : "à la fin de l'évènement", @@ -389,17 +405,17 @@ "Weekly" : "Hebdomadaire", "Monthly" : "Mensuel", "Yearly" : "Annuel", - "_Every %n day_::_Every %n days_" : ["Tout les %n jour","Tous les %n jours"], - "_Every %n week_::_Every %n weeks_" : ["Toute les %n semaine","Toutes les %n semaines"], - "_Every %n month_::_Every %n months_" : ["Tous les %n mois","Tous les %n mois"], - "_Every %n year_::_Every %n years_" : ["Tous les %n ans","Tous les %n ans"], - "_on {weekday}_::_on {weekdays}_" : ["le {weekday}","les {weekdays}"], - "_on day {dayOfMonthList}_::_on days {dayOfMonthList}_" : ["le {dayOfMonthList}","les {dayOfMonthList}"], + "_Every %n day_::_Every %n days_" : ["Tout les %n jour","Tous les %n jours","Tous les %n jours"], + "_Every %n week_::_Every %n weeks_" : ["Toute les %n semaine","Toutes les %n semaines","Toutes les %n semaines"], + "_Every %n month_::_Every %n months_" : ["Tous les %n mois","Tous les %n mois","Tous les %n mois"], + "_Every %n year_::_Every %n years_" : ["Tous les %n ans","Tous les %n ans","Tous les %n ans"], + "_on {weekday}_::_on {weekdays}_" : ["le {weekday}","les {weekdays}","les {weekdays}"], + "_on day {dayOfMonthList}_::_on days {dayOfMonthList}_" : ["le {dayOfMonthList}","les {dayOfMonthList}","les {dayOfMonthList}"], "on the {ordinalNumber} {byDaySet}" : "le {ordinalNumber} {byDaySet}", "in {monthNames}" : "en {monthNames}", "in {monthNames} on the {ordinalNumber} {byDaySet}" : "en {monthNames}, le {ordinalNumber} {byDaySet}", "until {untilDate}" : "jusqu'au {untilDate}", - "_%n time_::_%n times_" : ["%n fois","%n fois"], + "_%n time_::_%n times_" : ["%n fois","%n fois","%n fois"], "Untitled event" : "Événement sans titre", "Untitled task" : "Tâche sans titre", "Please ask your administrator to enable the Tasks App." : "Veuillez demander à votre administrateur d’activer l'application Tasks.", @@ -411,7 +427,7 @@ "W" : "S", "%n more" : "%n de plus", "No events to display" : "Aucun événement à afficher", - "_+%n more_::_+%n more_" : ["+%n de plus","+%n de plus"], + "_+%n more_::_+%n more_" : ["+%n de plus","+%n de plus","+%n de plus"], "No events" : "Pas d'évènements", "Create a new event or change the visible time-range" : "Créer un nouvel évènement ou modifier la période visible", "It might have been deleted, or there was a typo in a link" : "Il a peut-être été supprimé, ou il y a une erreur dans le lien", diff --git a/l10n/gl.js b/l10n/gl.js index 9bcb9f67836baa705459fb1bf7834f58cb7adc5e..11bbe10556355d6f22d675b5e808d40b0a3abfca 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -10,6 +10,11 @@ OC.L10N.register( "Open »%s«" : "Abrir «%s»", "Cheers!" : "Saúdos!", "Upcoming events" : "Próximos eventos", + "Appointments" : "Cita", + "Confirm" : "Confirmar", + "Date:" : "Data:", + "Where:" : "Onde:", + "Description:" : "Descrición:", "Calendar" : "Calendario", "A Calendar app for Nextcloud" : "Unha aplicación de calendario para o Nextcloud", "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "A aplicación de Calendario é unha interface de usuario para o servidor CalDAV do Nextcloud. Sincronice doadamente eventos en varios dispositivos co seu Nextcloud e edíteos en líña.\n\n* 🚀 **Integración con outras aplicación do Nextcloud!** Actualmente Contactos – outras por chegar.\n* 🌐 **Compatibilidade con WebCal!** Quere ver os partidos do seu equipo favorito no seu calendario? Non hai problema!\n* 🙋 **Asistentes** Convide á xente aos seus eventos.\n* ⌚️ **Libre/Ocupado:** Verá cando os asistentes están dispoñíbeis\n* ⏰ **Lembretes!** Obteña alarmas para eventos no navegador e por correo-e.\n* 🔍 Busca! Atopa os teus eventos ao teu gusto\n* ☑️ Tarefas! Vexa as tarefas con data de vencemento directamente no calendario\n* 🙈 **Non reinventamos a roda!** Baseada nas grandes bibliotecas [davclient.js](https://github.com/evert/davclient.js), [ical.js](https://github.com/mozilla-comm/ical.js) e [fullcalendar](https://github.com/fullcalendar/fullcalendar).", @@ -19,11 +24,15 @@ OC.L10N.register( "Next day" : "Día seguinte", "Next week" : "Semana seguinte", "Next month" : "Mes seguinte", + "New event" : "Novo evento", "Today" : "Hoxe", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Vista previa", + "Copy link" : "Copiar a ligazón", + "Edit" : "Editar", "Delete" : "Eliminar", "Untitled calendar" : "Calendario sen título", "Edit name" : "Editar o nome", @@ -31,6 +40,7 @@ OC.L10N.register( "Edit color" : "Editar a cor", "Saving color …" : "Gardando a cor …", "Copy private link" : "Copiar a ligazón privada", + "Export" : "Exportar", "Unshare from me" : "Deixar de compartir", "An error occurred, unable to change visibility of the calendar." : "Produciuse un erro, non é posíbel cambiar a visibilidade do calendario.", "An error occurred, unable to delete the calendar." : "Produciuse un erro, non é posíbel eliminar o calendario.", @@ -76,6 +86,10 @@ OC.L10N.register( "Creating subscription …" : "Creando subscrición …", "An error occurred, unable to create the calendar." : "Produciuse un erro, non é posíbel crear o calendario.", "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "Introduza unha ligazón correcta (comezando con http://, https://, webcal://, or webcals://)", + "Name" : "Nome", + "Deleted" : "Eliminada", + "Restore" : "Restaurar", + "Delete permanently" : "Eliminar de xeito permanente", "Could not update calendar order." : "Non foi posíbel actualizar a orde do calendario.", "Import calendars" : "Importar calendarios", "Please select a calendar to import into …" : "Seleccione un calendario para importalo a …", @@ -103,6 +117,7 @@ OC.L10N.register( "Actions" : "Accións", "Create event" : "Crear evento", "Show shortcuts" : "Amosar atallos", + "Editor" : "Editor", "Enable birthday calendar" : "Activar o calendario de aniversarios", "Show tasks in calendar" : "Amosar as tarefas no calendario", "Enable simplified editor" : "Activar o editor simplificado", @@ -113,13 +128,24 @@ OC.L10N.register( "Copy iOS/macOS CalDAV address" : "Copiar o enderezo CalDAV de iOS/macOS", "Show keyboard shortcuts" : "Amosar os atallos de teclado", "Settings & import" : "Axustes e importar", + "No reminder" : "Non hai lembretes", "CalDAV link copied to clipboard." : "Copiada a ligazón CalDAV ao portapapeis.", "CalDAV link could not be copied to clipboard." : "Non foi posíbel copiar a ligazón CalDAV ao portapapeis.", "Location" : "Localización", "Description" : "Descrición", + "Duration" : "Duración", + "to" : "para", + "Add" : "Engadir", "Monday" : "luns", + "Tuesday" : "martes", + "Wednesday" : "mércores", + "Thursday" : "xoves", + "Friday" : "venres", + "Saturday" : "sábado", + "Sunday" : "domingo", "Save" : "Gardar", "Update" : "Actualizar", + "Your email address" : "O seu enderezo de correo", "before at" : "antes dás", "Notification" : "Notificación", "Email" : "Correo-e", @@ -133,17 +159,22 @@ OC.L10N.register( "on" : "o", "at" : "ás", "+ Add reminder" : "+ Engadir lembrete", + "Add reminder" : "Engadir recordatorio", "_second_::_seconds_" : ["segundo","segundos"], "_minute_::_minutes_" : ["minuto","minutos"], "_hour_::_hours_" : ["hora","horas"], "_day_::_days_" : ["día","días"], "_week_::_weeks_" : ["semana","semanas"], + "Available" : "Dispoñíbel", + "Not available" : "Non dispoñíbel", "Availability of attendees, resources and rooms" : "Dispoñibilidade de asistentes, recursos e salas", "Free" : "Libre", "Busy (tentative)" : "Ocupado (tentativa)", "Busy" : "Ocupado", "Out of office" : "Fóra da oficina", "Unknown" : "Descoñecido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativa", "Create Talk room for this event" : "Crear sala de conversas para este evento", "Show busy times" : "Amosar as horas ocupadas", @@ -188,6 +219,7 @@ OC.L10N.register( "weekday" : "día da semana", "weekend day" : "día da fin de semana", "The recurrence definition of this event is not fully supported by Nextcloud. If you edit the recurrence-options, certain recurrences may be lost." : "Nextcloud non é totalmente compatíbel coa definición de recorrencia deste evento. Se edita as opcións de recorrencia, pódense perder certas recorrencias.", + "available" : "dispoñíbel", "More" : "Máis", "Update this occurrence" : "Actualizar esta recorrencia", "Update this and all future" : "Actualizar esta e todas as futuras", @@ -205,6 +237,7 @@ OC.L10N.register( "Please enter a valid date" : "Introduza unha data válida", "Please enter a valid date and time" : "Introduza unha data e hora válidas", "Global" : "Global", + "Time:" : "Hora:", "Personal" : "Persoal", "No more events today" : "Hoxe non hai máis eventos", "No upcoming events" : "Non hai eventos próximos", @@ -218,6 +251,7 @@ OC.L10N.register( "Delete this and all future" : "Eliminar esta e todas as futuras", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Pechar", "Show more details" : "Amosar máis detalles", "Subscribe to {name}" : "Subscribirse a {name}", @@ -267,6 +301,9 @@ OC.L10N.register( "Untitled event" : "Evento sen título", "Untitled task" : "Tarefa sen título", "Please ask your administrator to enable the Tasks App." : "Pregúntelle ao seu administrador pola activación da aplicación de tarefas.", + "Prev" : "Previo", + "Next" : "Seguinte", + "Year" : "Ano", "W" : "S", "%n more" : "%n máis", "No events to display" : "Non hai eventos para amosar", @@ -275,6 +312,7 @@ OC.L10N.register( "Create a new event or change the visible time-range" : "Crear un novo evento ou cambiar o intervalo de tempo visíbel", "It might have been deleted, or there was a typo in a link" : "Pode que fose eliminado ou houbese un erro de dixitación nunha ligazón", "It might have been deleted, or there was a typo in the link" : "Pode que fose eliminado ou houbese un erro de dixitación na ligazón", + "Other" : "Outro", "When shared show" : "Amosar ao compartir", "When shared show full event" : "Amosar o evento completo ao compartir", "When shared show only busy" : "Amosar só o ocupado ao compartir", @@ -299,7 +337,9 @@ OC.L10N.register( "Meditation" : "Meditación", "Relaxing" : "Relaxante", "Relax" : "Relaxamento", + "Commuting" : "De casa ao traballo ou ao revés", "Presentation" : "Presentación", + "Talk" : "Talk", "Camping" : "Campismo", "Camp" : "Campo", "Movie" : "Filme", @@ -337,6 +377,7 @@ OC.L10N.register( "Doctor" : "Médico", "Health" : "Saúde", "Dentist" : "Dentista", + "Hospital" : "Hospital", "Interview" : "Entrevista", "Training" : "Adestramento", "Practice" : "Práctica", @@ -375,12 +416,14 @@ OC.L10N.register( "Party" : "Festa", "Celebration" : "Celebración", "Celebrate" : "Celebrar", + "Birthday" : "Aniversario (nacemento)", "Shopping" : "Compras", "Skate" : "Patinar", "Skateboard" : "Monopatín", "Wine tasting" : "Cata de viños", "Golf" : "Golf", "Dinner" : "Cea", - "Lunch" : "Xantar" + "Lunch" : "Xantar", + "User not found" : "Non se atopou o usuario" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/gl.json b/l10n/gl.json index d2bef551d52a830fcfaddef09c6890b9365e0342..67bd08329422d88119024a60893f1c3d248ee5e0 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -8,6 +8,11 @@ "Open »%s«" : "Abrir «%s»", "Cheers!" : "Saúdos!", "Upcoming events" : "Próximos eventos", + "Appointments" : "Cita", + "Confirm" : "Confirmar", + "Date:" : "Data:", + "Where:" : "Onde:", + "Description:" : "Descrición:", "Calendar" : "Calendario", "A Calendar app for Nextcloud" : "Unha aplicación de calendario para o Nextcloud", "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "A aplicación de Calendario é unha interface de usuario para o servidor CalDAV do Nextcloud. Sincronice doadamente eventos en varios dispositivos co seu Nextcloud e edíteos en líña.\n\n* 🚀 **Integración con outras aplicación do Nextcloud!** Actualmente Contactos – outras por chegar.\n* 🌐 **Compatibilidade con WebCal!** Quere ver os partidos do seu equipo favorito no seu calendario? Non hai problema!\n* 🙋 **Asistentes** Convide á xente aos seus eventos.\n* ⌚️ **Libre/Ocupado:** Verá cando os asistentes están dispoñíbeis\n* ⏰ **Lembretes!** Obteña alarmas para eventos no navegador e por correo-e.\n* 🔍 Busca! Atopa os teus eventos ao teu gusto\n* ☑️ Tarefas! Vexa as tarefas con data de vencemento directamente no calendario\n* 🙈 **Non reinventamos a roda!** Baseada nas grandes bibliotecas [davclient.js](https://github.com/evert/davclient.js), [ical.js](https://github.com/mozilla-comm/ical.js) e [fullcalendar](https://github.com/fullcalendar/fullcalendar).", @@ -17,11 +22,15 @@ "Next day" : "Día seguinte", "Next week" : "Semana seguinte", "Next month" : "Mes seguinte", + "New event" : "Novo evento", "Today" : "Hoxe", "Day" : "Día", "Week" : "Semana", "Month" : "Mes", "List" : "Lista", + "Preview" : "Vista previa", + "Copy link" : "Copiar a ligazón", + "Edit" : "Editar", "Delete" : "Eliminar", "Untitled calendar" : "Calendario sen título", "Edit name" : "Editar o nome", @@ -29,6 +38,7 @@ "Edit color" : "Editar a cor", "Saving color …" : "Gardando a cor …", "Copy private link" : "Copiar a ligazón privada", + "Export" : "Exportar", "Unshare from me" : "Deixar de compartir", "An error occurred, unable to change visibility of the calendar." : "Produciuse un erro, non é posíbel cambiar a visibilidade do calendario.", "An error occurred, unable to delete the calendar." : "Produciuse un erro, non é posíbel eliminar o calendario.", @@ -74,6 +84,10 @@ "Creating subscription …" : "Creando subscrición …", "An error occurred, unable to create the calendar." : "Produciuse un erro, non é posíbel crear o calendario.", "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "Introduza unha ligazón correcta (comezando con http://, https://, webcal://, or webcals://)", + "Name" : "Nome", + "Deleted" : "Eliminada", + "Restore" : "Restaurar", + "Delete permanently" : "Eliminar de xeito permanente", "Could not update calendar order." : "Non foi posíbel actualizar a orde do calendario.", "Import calendars" : "Importar calendarios", "Please select a calendar to import into …" : "Seleccione un calendario para importalo a …", @@ -101,6 +115,7 @@ "Actions" : "Accións", "Create event" : "Crear evento", "Show shortcuts" : "Amosar atallos", + "Editor" : "Editor", "Enable birthday calendar" : "Activar o calendario de aniversarios", "Show tasks in calendar" : "Amosar as tarefas no calendario", "Enable simplified editor" : "Activar o editor simplificado", @@ -111,13 +126,24 @@ "Copy iOS/macOS CalDAV address" : "Copiar o enderezo CalDAV de iOS/macOS", "Show keyboard shortcuts" : "Amosar os atallos de teclado", "Settings & import" : "Axustes e importar", + "No reminder" : "Non hai lembretes", "CalDAV link copied to clipboard." : "Copiada a ligazón CalDAV ao portapapeis.", "CalDAV link could not be copied to clipboard." : "Non foi posíbel copiar a ligazón CalDAV ao portapapeis.", "Location" : "Localización", "Description" : "Descrición", + "Duration" : "Duración", + "to" : "para", + "Add" : "Engadir", "Monday" : "luns", + "Tuesday" : "martes", + "Wednesday" : "mércores", + "Thursday" : "xoves", + "Friday" : "venres", + "Saturday" : "sábado", + "Sunday" : "domingo", "Save" : "Gardar", "Update" : "Actualizar", + "Your email address" : "O seu enderezo de correo", "before at" : "antes dás", "Notification" : "Notificación", "Email" : "Correo-e", @@ -131,17 +157,22 @@ "on" : "o", "at" : "ás", "+ Add reminder" : "+ Engadir lembrete", + "Add reminder" : "Engadir recordatorio", "_second_::_seconds_" : ["segundo","segundos"], "_minute_::_minutes_" : ["minuto","minutos"], "_hour_::_hours_" : ["hora","horas"], "_day_::_days_" : ["día","días"], "_week_::_weeks_" : ["semana","semanas"], + "Available" : "Dispoñíbel", + "Not available" : "Non dispoñíbel", "Availability of attendees, resources and rooms" : "Dispoñibilidade de asistentes, recursos e salas", "Free" : "Libre", "Busy (tentative)" : "Ocupado (tentativa)", "Busy" : "Ocupado", "Out of office" : "Fóra da oficina", "Unknown" : "Descoñecido", + "Accept" : "Aceptar", + "Decline" : "Declinar", "Tentative" : "Tentativa", "Create Talk room for this event" : "Crear sala de conversas para este evento", "Show busy times" : "Amosar as horas ocupadas", @@ -186,6 +217,7 @@ "weekday" : "día da semana", "weekend day" : "día da fin de semana", "The recurrence definition of this event is not fully supported by Nextcloud. If you edit the recurrence-options, certain recurrences may be lost." : "Nextcloud non é totalmente compatíbel coa definición de recorrencia deste evento. Se edita as opcións de recorrencia, pódense perder certas recorrencias.", + "available" : "dispoñíbel", "More" : "Máis", "Update this occurrence" : "Actualizar esta recorrencia", "Update this and all future" : "Actualizar esta e todas as futuras", @@ -203,6 +235,7 @@ "Please enter a valid date" : "Introduza unha data válida", "Please enter a valid date and time" : "Introduza unha data e hora válidas", "Global" : "Global", + "Time:" : "Hora:", "Personal" : "Persoal", "No more events today" : "Hoxe non hai máis eventos", "No upcoming events" : "Non hai eventos próximos", @@ -216,6 +249,7 @@ "Delete this and all future" : "Eliminar esta e todas as futuras", "Details" : "Detalles", "Attendees" : "Asistentes", + "Resources" : "Recursos", "Close" : "Pechar", "Show more details" : "Amosar máis detalles", "Subscribe to {name}" : "Subscribirse a {name}", @@ -265,6 +299,9 @@ "Untitled event" : "Evento sen título", "Untitled task" : "Tarefa sen título", "Please ask your administrator to enable the Tasks App." : "Pregúntelle ao seu administrador pola activación da aplicación de tarefas.", + "Prev" : "Previo", + "Next" : "Seguinte", + "Year" : "Ano", "W" : "S", "%n more" : "%n máis", "No events to display" : "Non hai eventos para amosar", @@ -273,6 +310,7 @@ "Create a new event or change the visible time-range" : "Crear un novo evento ou cambiar o intervalo de tempo visíbel", "It might have been deleted, or there was a typo in a link" : "Pode que fose eliminado ou houbese un erro de dixitación nunha ligazón", "It might have been deleted, or there was a typo in the link" : "Pode que fose eliminado ou houbese un erro de dixitación na ligazón", + "Other" : "Outro", "When shared show" : "Amosar ao compartir", "When shared show full event" : "Amosar o evento completo ao compartir", "When shared show only busy" : "Amosar só o ocupado ao compartir", @@ -297,7 +335,9 @@ "Meditation" : "Meditación", "Relaxing" : "Relaxante", "Relax" : "Relaxamento", + "Commuting" : "De casa ao traballo ou ao revés", "Presentation" : "Presentación", + "Talk" : "Talk", "Camping" : "Campismo", "Camp" : "Campo", "Movie" : "Filme", @@ -335,6 +375,7 @@ "Doctor" : "Médico", "Health" : "Saúde", "Dentist" : "Dentista", + "Hospital" : "Hospital", "Interview" : "Entrevista", "Training" : "Adestramento", "Practice" : "Práctica", @@ -373,12 +414,14 @@ "Party" : "Festa", "Celebration" : "Celebración", "Celebrate" : "Celebrar", + "Birthday" : "Aniversario (nacemento)", "Shopping" : "Compras", "Skate" : "Patinar", "Skateboard" : "Monopatín", "Wine tasting" : "Cata de viños", "Golf" : "Golf", "Dinner" : "Cea", - "Lunch" : "Xantar" + "Lunch" : "Xantar", + "User not found" : "Non se atopou o usuario" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/he.js b/l10n/he.js index f30484977c8dfc914f66164a04c17d51ede4c48d..8f8df084f1ba0de05117f4e21ca4df097cac373a 100644 --- a/l10n/he.js +++ b/l10n/he.js @@ -10,6 +10,11 @@ OC.L10N.register( "Open »%s«" : "פתיחת „%s”", "Cheers!" : "ברכותינו!", "Upcoming events" : "אירועים הבאים בקרוב", + "Appointments" : "פגישות", + "Confirm" : "אימות", + "Date:" : "תאריך:", + "Where:" : "איפה:", + "Description:" : "תיאור:", "Calendar" : "יומן", "A Calendar app for Nextcloud" : "יישומון לוח שנה ל־Nextcloud", "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "אפליקציית לוח השנה היא ממשק משתמש לשרת CalDAV של Nextcloud. סנכרן בקלות אירועים ממכשירים שונים עם Nextcloud שלך, וערוך אותם באופן מקוון.\n\n* 🚀 **אינטגרציה עם אפליקציות Nextcloud אחרות!** כרגע אנשי קשר - עוד יבוא.\n* 🌐 **תמיכה ב- WebCal!** רוצה לראות את ימי המשחק של הקבוצה האהובה עליך ביומן שלך? אין בעיה!\n* 🙋 **משתתפים!** הזמן אנשים לאירועים שלך\n* ⌚️ **חינם/עסוק!** ראה מתי המשתתפים שלך זמינים להיפגש\n* ⏰ **תזכורות!** קבל אזעקות לאירועים בתוך הדפדפן שלך ודרך אי-מייל\n* 🔍 חפש! מצא את האירועים שלך בנחת\n* ☑️ משימות! ראה משימות עם תאריך יעד ישירות בלוח השנה\n* 🙈 **אנחנו לא ממציאים את הגלגל מחדש!** בהתבסס על [ספריית c-dav] הנהדרת, וספריות \n(https://github.com/nextcloud/cdav-library), [ical.js] (https: // github.com/mozilla-comm/ical.js) ו- [fullcalendar] (https://github.com/fullcalendar/fullcalendar).", @@ -19,11 +24,15 @@ OC.L10N.register( "Next day" : "היום הבא", "Next week" : "השבוע הבא", "Next month" : "החודש הבא", + "New event" : "אירוע חדש", "Today" : "היום", "Day" : "יום", "Week" : "שבוע", "Month" : "חודש", "List" : "רשימה", + "Preview" : "תצוגה מקדימה", + "Copy link" : "העתקת קישור", + "Edit" : "עריכה", "Delete" : "מחיקה", "Untitled calendar" : "לוח שנה ללא כותרת", "Edit name" : "ערוך שם", @@ -31,6 +40,7 @@ OC.L10N.register( "Edit color" : "ערוך צבע", "Saving color …" : "שמירת הצבע ...", "Copy private link" : "העתקת קישור פרטי", + "Export" : "ייצוא", "Unshare from me" : "ביטול השיתוף איתי", "An error occurred, unable to change visibility of the calendar." : "אירעה שגיאה--לא מצליחים לשנות את הראות של לוח השנה.", "An error occurred, unable to delete the calendar." : "אירעה שגיאה, לא ניתן למחוק את היומן.", @@ -76,6 +86,11 @@ OC.L10N.register( "Creating subscription …" : "יוצר מנוי …", "An error occurred, unable to create the calendar." : "אירעה שגיאה--לא ניתן ליצור את לוח השנה.", "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "נא למלא קישור תקני (מתחיל ב־‎http://‎,‏ https://‎,‏ webcal://‎, או webcals://‎)", + "Name" : "שם", + "Deleted" : "נמחק", + "Restore" : "שחזור", + "Delete permanently" : "מחיקה לצמיתות", + "Empty trash bin" : "פינוי סל האשפה", "Could not update calendar order." : "לא היה ניתן לעדכן את סדר לוח השנה.", "Import calendars" : "יבוא לוחות שנה", "Please select a calendar to import into …" : "בחר לוח שנה לייבוא אליו …", @@ -99,6 +114,7 @@ OC.L10N.register( "Day view" : "תצוגת יום", "Week view" : "תצוגת שבוע", "Month view" : "תצוגת חודש", + "List view" : "תצוגת רשימה", "Actions" : "פעולות", "Create event" : "יצירת אירוע", "Show shortcuts" : "הצגת קיצורי דרך", @@ -112,13 +128,24 @@ OC.L10N.register( "Copy iOS/macOS CalDAV address" : "העתקת כתובת CalDAV ל־iOS/macOS", "Show keyboard shortcuts" : "הצגת קיצורי מקלדת", "Settings & import" : "הגדרות וייבוא", + "No reminder" : "אין תזכורת", "CalDAV link copied to clipboard." : "קישור ה־CalDAV הועתק ללוח הגזירים.", "CalDAV link could not be copied to clipboard." : "לא ניתן להעתיק את קישור ה־CalDAV ללוח הגזירים.", "Location" : "מיקום", "Description" : "תיאור", + "Duration" : "משך", + "to" : "אל", + "Add" : "הוספה", "Monday" : "יום שני", + "Tuesday" : "יום שלישי", + "Wednesday" : "יום רביעי", + "Thursday" : "יום חמישי", + "Friday" : "יום שישי", + "Saturday" : "יום שבת", + "Sunday" : "יום ראשון", "Save" : "שמור", "Update" : "עדכון", + "Your email address" : "כתובת הדוא״ל שלך", "before at" : "לפני", "Notification" : "הוֹדָעָה", "Email" : "דוא״ל", @@ -137,18 +164,22 @@ OC.L10N.register( "_hour_::_hours_" : ["שעה","שעתיים","שעות","שעות"], "_day_::_days_" : ["יום","יומיים","ימים","ימים"], "_week_::_weeks_" : ["שבוע","שבועיים","שבועות","שבועות"], + "Available" : "זמינות", "Availability of attendees, resources and rooms" : "זמינות של משתתפים, משאבים וחדרים", "Free" : "פנוי", "Busy (tentative)" : "תפוס (טנטטיבי)", "Busy" : "עסוק", "Out of office" : "מחוץ למשרד", "Unknown" : "לא ידוע", + "Accept" : "אשר", + "Decline" : "דחייה", "Tentative" : "טנטטיבית", "Create Talk room for this event" : "צור חדר שיחות לאירוע זה", "Show busy times" : "הראה זמנים עמוסים", "No attendees yet" : "עדיין אין משתתפים", "Successfully appended link to talk room to description." : "הקישור צורף ל\"חדר השיחות\" לתיאור בהצלחה.", "Error creating Talk room" : "שגיאה ביצירת \"חדר השיחות\"", + "Send email" : "שליחת דואר אלקטרוני", "Chairperson" : "יושב ראש", "Required participant" : "משתתף חובה", "Optional participant" : "משתתף אופציונלי", @@ -203,6 +234,7 @@ OC.L10N.register( "Please enter a valid date" : "נא להקליד תאריך תקני", "Please enter a valid date and time" : "נא להקליד שעה ותאריך תקניים", "Global" : "גלובלי", + "Time:" : "שעה:", "Personal" : "אישי", "No more events today" : "אין עוד אירועים היום", "No upcoming events" : "אין אירועים בזמן הקרוב", @@ -216,6 +248,7 @@ OC.L10N.register( "Delete this and all future" : "מחיקת זה והבאים", "Details" : "פרטים", "Attendees" : "משתתפים", + "Resources" : "משאבים", "Close" : "סגירה", "Show more details" : "הצגת פרטים נוספים", "Subscribe to {name}" : "הרשמה אל {name}", @@ -265,6 +298,9 @@ OC.L10N.register( "Untitled event" : "אירוע ללא כותרת", "Untitled task" : "משימה ללא כותרת", "Please ask your administrator to enable the Tasks App." : "אנא בקש ממנהל המערכת להפעיל את אפליקציית ה-Tasks.", + "Prev" : "קודם", + "Next" : "הבא", + "Year" : "שנה", "W" : "W", "%n more" : "%n עוד", "No events to display" : "אין אירועים להצגה", @@ -273,6 +309,7 @@ OC.L10N.register( "Create a new event or change the visible time-range" : "צור אירוע חדש, או שנה את טווח הזמן הגלוי", "It might have been deleted, or there was a typo in a link" : "יתכן שהוא נמחק, או שהיה שגיאת הקלדה בקישור", "It might have been deleted, or there was a typo in the link" : "יתכן שהוא נמחק, או שהיה שגיאת הקלדה בקישור", + "Other" : "אחר", "When shared show" : "כאשר משותף, הצג", "When shared show full event" : "כאשר משותף מציג אירוע מלא", "When shared show only busy" : "כאשר משותף מציג עסוק בלבד", @@ -297,7 +334,9 @@ OC.L10N.register( "Meditation" : "מדיטציה", "Relaxing" : "מנוחה", "Relax" : "לנפוש", + "Commuting" : "בדרכים", "Presentation" : "מצגת", + "Talk" : "שיחה", "Camping" : "קֶמפִּינג (= מַחֲנָאוּת)", "Camp" : "מחנה", "Movie" : "סרט", @@ -317,6 +356,7 @@ OC.L10N.register( "Football" : "פוטבול/כדורגל", "Gaming" : "גיימינג", "Drive" : "נהיגה", + "Driving" : "נהיגה", "Bicycle" : "אופניים", "Cycle" : "רכיבה על אופנועים", "Biking" : "רכיבה על אופניים", @@ -334,6 +374,7 @@ OC.L10N.register( "Doctor" : "רופא", "Health" : "בריאות", "Dentist" : "רופא/ת שיניים", + "Hospital" : "בית חולים", "Interview" : "ראיון", "Training" : "אימון", "Practice" : "לְתַרְגֵל", @@ -372,12 +413,14 @@ OC.L10N.register( "Party" : "מסיבה", "Celebration" : "חגיגה", "Celebrate" : "לַחֲגוֹג", + "Birthday" : "יום הולדת", "Shopping" : "קניות", "Skate" : "לְהַחלִיק עַל מִחלָקַיִם", "Skateboard" : "רכיבה על סקייטבורד", "Wine tasting" : "טעימות יין", "Golf" : "גוֹלף", "Dinner" : "ארוחת ערב", - "Lunch" : "ארוחת צהריים" + "Lunch" : "ארוחת צהריים", + "User not found" : "המשתמש לא נמצא" }, "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"); diff --git a/l10n/he.json b/l10n/he.json index f7bee5a93e2870aac69c11ea5a9e68ce333f9475..e537f9594cbf9a47799f8957a68b19cf00379fe2 100644 --- a/l10n/he.json +++ b/l10n/he.json @@ -8,6 +8,11 @@ "Open »%s«" : "פתיחת „%s”", "Cheers!" : "ברכותינו!", "Upcoming events" : "אירועים הבאים בקרוב", + "Appointments" : "פגישות", + "Confirm" : "אימות", + "Date:" : "תאריך:", + "Where:" : "איפה:", + "Description:" : "תיאור:", "Calendar" : "יומן", "A Calendar app for Nextcloud" : "יישומון לוח שנה ל־Nextcloud", "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "אפליקציית לוח השנה היא ממשק משתמש לשרת CalDAV של Nextcloud. סנכרן בקלות אירועים ממכשירים שונים עם Nextcloud שלך, וערוך אותם באופן מקוון.\n\n* 🚀 **אינטגרציה עם אפליקציות Nextcloud אחרות!** כרגע אנשי קשר - עוד יבוא.\n* 🌐 **תמיכה ב- WebCal!** רוצה לראות את ימי המשחק של הקבוצה האהובה עליך ביומן שלך? אין בעיה!\n* 🙋 **משתתפים!** הזמן אנשים לאירועים שלך\n* ⌚️ **חינם/עסוק!** ראה מתי המשתתפים שלך זמינים להיפגש\n* ⏰ **תזכורות!** קבל אזעקות לאירועים בתוך הדפדפן שלך ודרך אי-מייל\n* 🔍 חפש! מצא את האירועים שלך בנחת\n* ☑️ משימות! ראה משימות עם תאריך יעד ישירות בלוח השנה\n* 🙈 **אנחנו לא ממציאים את הגלגל מחדש!** בהתבסס על [ספריית c-dav] הנהדרת, וספריות \n(https://github.com/nextcloud/cdav-library), [ical.js] (https: // github.com/mozilla-comm/ical.js) ו- [fullcalendar] (https://github.com/fullcalendar/fullcalendar).", @@ -17,11 +22,15 @@ "Next day" : "היום הבא", "Next week" : "השבוע הבא", "Next month" : "החודש הבא", + "New event" : "אירוע חדש", "Today" : "היום", "Day" : "יום", "Week" : "שבוע", "Month" : "חודש", "List" : "רשימה", + "Preview" : "תצוגה מקדימה", + "Copy link" : "העתקת קישור", + "Edit" : "עריכה", "Delete" : "מחיקה", "Untitled calendar" : "לוח שנה ללא כותרת", "Edit name" : "ערוך שם", @@ -29,6 +38,7 @@ "Edit color" : "ערוך צבע", "Saving color …" : "שמירת הצבע ...", "Copy private link" : "העתקת קישור פרטי", + "Export" : "ייצוא", "Unshare from me" : "ביטול השיתוף איתי", "An error occurred, unable to change visibility of the calendar." : "אירעה שגיאה--לא מצליחים לשנות את הראות של לוח השנה.", "An error occurred, unable to delete the calendar." : "אירעה שגיאה, לא ניתן למחוק את היומן.", @@ -74,6 +84,11 @@ "Creating subscription …" : "יוצר מנוי …", "An error occurred, unable to create the calendar." : "אירעה שגיאה--לא ניתן ליצור את לוח השנה.", "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "נא למלא קישור תקני (מתחיל ב־‎http://‎,‏ https://‎,‏ webcal://‎, או webcals://‎)", + "Name" : "שם", + "Deleted" : "נמחק", + "Restore" : "שחזור", + "Delete permanently" : "מחיקה לצמיתות", + "Empty trash bin" : "פינוי סל האשפה", "Could not update calendar order." : "לא היה ניתן לעדכן את סדר לוח השנה.", "Import calendars" : "יבוא לוחות שנה", "Please select a calendar to import into …" : "בחר לוח שנה לייבוא אליו …", @@ -97,6 +112,7 @@ "Day view" : "תצוגת יום", "Week view" : "תצוגת שבוע", "Month view" : "תצוגת חודש", + "List view" : "תצוגת רשימה", "Actions" : "פעולות", "Create event" : "יצירת אירוע", "Show shortcuts" : "הצגת קיצורי דרך", @@ -110,13 +126,24 @@ "Copy iOS/macOS CalDAV address" : "העתקת כתובת CalDAV ל־iOS/macOS", "Show keyboard shortcuts" : "הצגת קיצורי מקלדת", "Settings & import" : "הגדרות וייבוא", + "No reminder" : "אין תזכורת", "CalDAV link copied to clipboard." : "קישור ה־CalDAV הועתק ללוח הגזירים.", "CalDAV link could not be copied to clipboard." : "לא ניתן להעתיק את קישור ה־CalDAV ללוח הגזירים.", "Location" : "מיקום", "Description" : "תיאור", + "Duration" : "משך", + "to" : "אל", + "Add" : "הוספה", "Monday" : "יום שני", + "Tuesday" : "יום שלישי", + "Wednesday" : "יום רביעי", + "Thursday" : "יום חמישי", + "Friday" : "יום שישי", + "Saturday" : "יום שבת", + "Sunday" : "יום ראשון", "Save" : "שמור", "Update" : "עדכון", + "Your email address" : "כתובת הדוא״ל שלך", "before at" : "לפני", "Notification" : "הוֹדָעָה", "Email" : "דוא״ל", @@ -135,18 +162,22 @@ "_hour_::_hours_" : ["שעה","שעתיים","שעות","שעות"], "_day_::_days_" : ["יום","יומיים","ימים","ימים"], "_week_::_weeks_" : ["שבוע","שבועיים","שבועות","שבועות"], + "Available" : "זמינות", "Availability of attendees, resources and rooms" : "זמינות של משתתפים, משאבים וחדרים", "Free" : "פנוי", "Busy (tentative)" : "תפוס (טנטטיבי)", "Busy" : "עסוק", "Out of office" : "מחוץ למשרד", "Unknown" : "לא ידוע", + "Accept" : "אשר", + "Decline" : "דחייה", "Tentative" : "טנטטיבית", "Create Talk room for this event" : "צור חדר שיחות לאירוע זה", "Show busy times" : "הראה זמנים עמוסים", "No attendees yet" : "עדיין אין משתתפים", "Successfully appended link to talk room to description." : "הקישור צורף ל\"חדר השיחות\" לתיאור בהצלחה.", "Error creating Talk room" : "שגיאה ביצירת \"חדר השיחות\"", + "Send email" : "שליחת דואר אלקטרוני", "Chairperson" : "יושב ראש", "Required participant" : "משתתף חובה", "Optional participant" : "משתתף אופציונלי", @@ -201,6 +232,7 @@ "Please enter a valid date" : "נא להקליד תאריך תקני", "Please enter a valid date and time" : "נא להקליד שעה ותאריך תקניים", "Global" : "גלובלי", + "Time:" : "שעה:", "Personal" : "אישי", "No more events today" : "אין עוד אירועים היום", "No upcoming events" : "אין אירועים בזמן הקרוב", @@ -214,6 +246,7 @@ "Delete this and all future" : "מחיקת זה והבאים", "Details" : "פרטים", "Attendees" : "משתתפים", + "Resources" : "משאבים", "Close" : "סגירה", "Show more details" : "הצגת פרטים נוספים", "Subscribe to {name}" : "הרשמה אל {name}", @@ -263,6 +296,9 @@ "Untitled event" : "אירוע ללא כותרת", "Untitled task" : "משימה ללא כותרת", "Please ask your administrator to enable the Tasks App." : "אנא בקש ממנהל המערכת להפעיל את אפליקציית ה-Tasks.", + "Prev" : "קודם", + "Next" : "הבא", + "Year" : "שנה", "W" : "W", "%n more" : "%n עוד", "No events to display" : "אין אירועים להצגה", @@ -271,6 +307,7 @@ "Create a new event or change the visible time-range" : "צור אירוע חדש, או שנה את טווח הזמן הגלוי", "It might have been deleted, or there was a typo in a link" : "יתכן שהוא נמחק, או שהיה שגיאת הקלדה בקישור", "It might have been deleted, or there was a typo in the link" : "יתכן שהוא נמחק, או שהיה שגיאת הקלדה בקישור", + "Other" : "אחר", "When shared show" : "כאשר משותף, הצג", "When shared show full event" : "כאשר משותף מציג אירוע מלא", "When shared show only busy" : "כאשר משותף מציג עסוק בלבד", @@ -295,7 +332,9 @@ "Meditation" : "מדיטציה", "Relaxing" : "מנוחה", "Relax" : "לנפוש", + "Commuting" : "בדרכים", "Presentation" : "מצגת", + "Talk" : "שיחה", "Camping" : "קֶמפִּינג (= מַחֲנָאוּת)", "Camp" : "מחנה", "Movie" : "סרט", @@ -315,6 +354,7 @@ "Football" : "פוטבול/כדורגל", "Gaming" : "גיימינג", "Drive" : "נהיגה", + "Driving" : "נהיגה", "Bicycle" : "אופניים", "Cycle" : "רכיבה על אופנועים", "Biking" : "רכיבה על אופניים", @@ -332,6 +372,7 @@ "Doctor" : "רופא", "Health" : "בריאות", "Dentist" : "רופא/ת שיניים", + "Hospital" : "בית חולים", "Interview" : "ראיון", "Training" : "אימון", "Practice" : "לְתַרְגֵל", @@ -370,12 +411,14 @@ "Party" : "מסיבה", "Celebration" : "חגיגה", "Celebrate" : "לַחֲגוֹג", + "Birthday" : "יום הולדת", "Shopping" : "קניות", "Skate" : "לְהַחלִיק עַל מִחלָקַיִם", "Skateboard" : "רכיבה על סקייטבורד", "Wine tasting" : "טעימות יין", "Golf" : "גוֹלף", "Dinner" : "ארוחת ערב", - "Lunch" : "ארוחת צהריים" + "Lunch" : "ארוחת צהריים", + "User not found" : "המשתמש לא נמצא" },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;" } \ No newline at end of file diff --git a/l10n/hr.js b/l10n/hr.js index ede924093089fe27fec8fb4b4b40957f2399d16a..781fe166abd569a1d80736fa00b47f838cea26f1 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -11,6 +11,11 @@ OC.L10N.register( "Open »%s«" : "Otvori »%s«", "Cheers!" : "Bok!", "Upcoming events" : "Nadolazeći događaji", + "Appointments" : "Dogovori", + "Confirm" : "Potvrdi", + "Date:" : "Datum:", + "Where:" : "Gdje:", + "Description:" : "Opis:", "Calendar" : "Kalendar", "A Calendar app for Nextcloud" : "Aplikacija Kalendar za Nextcloud", "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "Aplikacija Kalendar je korisničko sučelje za Nextcloudov CalDAV poslužitelj. Jednostavno sinkronizirajte događaje s raznih uređaja s Nextcloudom i uređujte ih na mreži.\n\n* 🚀 **Integracija s drugim Nextcloudovim aplikacijama!** Trenutno kontakti – i još puno toga.\n* 🌐 **Podrška za WebCal!** Želite li u kalendaru vidjeti važne dane svojeg omiljenog tima? Nema problema!\n* 🙋 **Sudionici!** Pozovite ljude na svoje događaje.\n* ⌚️ **Slobodni/zauzeti!** Provjerite kada su sudionici slobodni\n* ⏰ **Podsjetnici!** Primite upozorenja o događajima u svojem pregledniku ili putem e-pošte.\n* 🔍 Pretraživanje! S lakoćom pronađite svoje događaje\n* ☑️ Zadaci! Pregledajte zadatke s datumom izvršenja izravno u kalendaru\n* 🙈 **Ne izmišljamo toplu vodu!** Na temelju odličnih [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) i [fullcalendar](https://github.com/fullcalendar/fullcalendar) biblioteka.", @@ -20,11 +25,14 @@ OC.L10N.register( "Next day" : "Sljedeći dan", "Next week" : "Sljedeći tjedan", "Next month" : "Sljedeći mjesec", + "New event" : "Novi događaj", "Today" : "Danas", "Day" : "Dan", "Week" : "Tjedan", "Month" : "Mjesec", "List" : "Popis", + "Preview" : "Pretpregled", + "Copy link" : "Kopiraj poveznicu", "Edit" : "Uredi", "Delete" : "Izbriši", "Untitled calendar" : "Kalendar bez naslova", @@ -33,6 +41,7 @@ OC.L10N.register( "Edit color" : "Uredi boju", "Saving color …" : "Spremanje boje...", "Copy private link" : "Kopiraj privatnu poveznicu", + "Export" : "Izvoz", "Unshare from me" : "Prekid dijeljenja sa mnom", "An error occurred, unable to change visibility of the calendar." : "Došlo je do pogreške, nije moguće promijeniti vidljivost kalendara.", "An error occurred, unable to delete the calendar." : "Došlo je do pogreške, nije moguće izbrisati kalendar.", @@ -135,9 +144,21 @@ OC.L10N.register( "CalDAV link could not be copied to clipboard." : "Poveznica kalendara CalDAV nije kopirana u međuspremnik.", "Location" : "Lokacija", "Description" : "Opis", + "Visibility" : "Vidljivost", + "Duration" : "Trajanje", + "to" : "do", + "Delete slot" : "Izbriši mjesto", + "Add" : "Dodaj", "Monday" : "Ponedjeljak", + "Tuesday" : "Utorak", + "Wednesday" : "Srijeda", + "Thursday" : "Četvrtak", + "Friday" : "Petak", + "Saturday" : "Subota", + "Sunday" : "Nedjelja", "Save" : "Spremi", "Update" : "Ažuriraj", + "Your email address" : "Vaša adresa e-pošte", "Reminder" : "Podsjetnik", "before at" : "prije u", "Notification" : "Obavijest", @@ -159,6 +180,7 @@ OC.L10N.register( "_day_::_days_" : ["dan","dana","dana"], "_week_::_weeks_" : ["tjedan","tjedana","tjedana"], "Available" : "Dostupno", + "Not available" : "Nije dostupno", "Availability of attendees, resources and rooms" : "Raspoloživost sudionika, resursa i soba", "{organizer} (organizer)" : "{organizer} (organizator)", "Free" : "Dostupno", @@ -166,6 +188,8 @@ OC.L10N.register( "Busy" : "Zauzeto", "Out of office" : "Izvan ureda", "Unknown" : "Nepoznato", + "Accept" : "Prihvati", + "Decline" : "Odbij", "Tentative" : "Uvjetno", "Create Talk room for this event" : "Stvori Talk sobu za ovaj događaj", "Show busy times" : "Prikaži vremena zauzetosti", @@ -249,6 +273,7 @@ OC.L10N.register( "Please enter a valid date and time" : "Unesite važeći datum i vrijeme", "Type to search time zone" : "Upišite za pretraživanje vremenskih zona", "Global" : "Globalno", + "Time:" : "Vrijeme:", "Personal" : "Osobno", "The automatic time zone detection determined your time zone to be UTC.\nThis is most likely the result of security measures of your web browser.\nPlease set your time zone manually in the calendar settings." : "Značajka automatskog otkrivanja vremenske zone utvrdila je vašu vremensku zonu kao UTC.\nVjerojatno zbog sigurnosnih mjera vašeg internetskog preglednika.\nRučno postavite vremensku zonu u postavkama kalendara.", "Your configured time zone ({timezoneId}) was not found. Falling back to UTC.\nPlease change your time zone in the settings and report this issue." : "Nije pronađena vaša konfigurirana vremenska zona ({timezoneId}). Postavka vremenske zone vraćena je na UTC.\nPromijenite vremensku zonu u postavkama i prijavite ovu poteškoću.", @@ -355,7 +380,10 @@ OC.L10N.register( "Meditation" : "Meditacija", "Relaxing" : "Opuštanje", "Relax" : "Opustite se", + "Commuting" : "Na putu", + "Invoice" : "Faktura", "Presentation" : "Prezentacija", + "Talk" : "Razgovor", "Camping" : "Kampiranje", "Camp" : "Idi na kampiranje", "Movie" : "Film", @@ -375,6 +403,7 @@ OC.L10N.register( "Football" : "Nogomet", "Gaming" : "Igranje", "Drive" : "Vožnja", + "Driving" : "Vožnja", "Bicycle" : "Bicikl", "Cycle" : "Vožnja biciklom", "Biking" : "Biciklizam", @@ -393,6 +422,7 @@ OC.L10N.register( "Doctor" : "Liječnik", "Health" : "Zdravlje", "Dentist" : "Stomatolog", + "Hospital" : "Bolnica", "Interview" : "Razgovor", "Training" : "Trening", "Practice" : "Vježba", @@ -433,12 +463,14 @@ OC.L10N.register( "Party" : "Tulum", "Celebration" : "Proslava", "Celebrate" : "Slavlje", + "Birthday" : "Rođendan", "Shopping" : "Kupnja", "Skate" : "Koturanje", "Skateboard" : "Daska za koturanje", "Wine tasting" : "Degustacija vina", "Golf" : "Golf", "Dinner" : "Večera", - "Lunch" : "Ručak" + "Lunch" : "Ručak", + "User not found" : "Korisnik nije pronađen" }, "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"); diff --git a/l10n/hr.json b/l10n/hr.json index 87b6323552ab62429d6966e3a7b0cc88b1ce03aa..a84f54e71b30c3e50bb2bdbf058bb85c1a70b974 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -9,6 +9,11 @@ "Open »%s«" : "Otvori »%s«", "Cheers!" : "Bok!", "Upcoming events" : "Nadolazeći događaji", + "Appointments" : "Dogovori", + "Confirm" : "Potvrdi", + "Date:" : "Datum:", + "Where:" : "Gdje:", + "Description:" : "Opis:", "Calendar" : "Kalendar", "A Calendar app for Nextcloud" : "Aplikacija Kalendar za Nextcloud", "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "Aplikacija Kalendar je korisničko sučelje za Nextcloudov CalDAV poslužitelj. Jednostavno sinkronizirajte događaje s raznih uređaja s Nextcloudom i uređujte ih na mreži.\n\n* 🚀 **Integracija s drugim Nextcloudovim aplikacijama!** Trenutno kontakti – i još puno toga.\n* 🌐 **Podrška za WebCal!** Želite li u kalendaru vidjeti važne dane svojeg omiljenog tima? Nema problema!\n* 🙋 **Sudionici!** Pozovite ljude na svoje događaje.\n* ⌚️ **Slobodni/zauzeti!** Provjerite kada su sudionici slobodni\n* ⏰ **Podsjetnici!** Primite upozorenja o događajima u svojem pregledniku ili putem e-pošte.\n* 🔍 Pretraživanje! S lakoćom pronađite svoje događaje\n* ☑️ Zadaci! Pregledajte zadatke s datumom izvršenja izravno u kalendaru\n* 🙈 **Ne izmišljamo toplu vodu!** Na temelju odličnih [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) i [fullcalendar](https://github.com/fullcalendar/fullcalendar) biblioteka.", @@ -18,11 +23,14 @@ "Next day" : "Sljedeći dan", "Next week" : "Sljedeći tjedan", "Next month" : "Sljedeći mjesec", + "New event" : "Novi događaj", "Today" : "Danas", "Day" : "Dan", "Week" : "Tjedan", "Month" : "Mjesec", "List" : "Popis", + "Preview" : "Pretpregled", + "Copy link" : "Kopiraj poveznicu", "Edit" : "Uredi", "Delete" : "Izbriši", "Untitled calendar" : "Kalendar bez naslova", @@ -31,6 +39,7 @@ "Edit color" : "Uredi boju", "Saving color …" : "Spremanje boje...", "Copy private link" : "Kopiraj privatnu poveznicu", + "Export" : "Izvoz", "Unshare from me" : "Prekid dijeljenja sa mnom", "An error occurred, unable to change visibility of the calendar." : "Došlo je do pogreške, nije moguće promijeniti vidljivost kalendara.", "An error occurred, unable to delete the calendar." : "Došlo je do pogreške, nije moguće izbrisati kalendar.", @@ -133,9 +142,21 @@ "CalDAV link could not be copied to clipboard." : "Poveznica kalendara CalDAV nije kopirana u međuspremnik.", "Location" : "Lokacija", "Description" : "Opis", + "Visibility" : "Vidljivost", + "Duration" : "Trajanje", + "to" : "do", + "Delete slot" : "Izbriši mjesto", + "Add" : "Dodaj", "Monday" : "Ponedjeljak", + "Tuesday" : "Utorak", + "Wednesday" : "Srijeda", + "Thursday" : "Četvrtak", + "Friday" : "Petak", + "Saturday" : "Subota", + "Sunday" : "Nedjelja", "Save" : "Spremi", "Update" : "Ažuriraj", + "Your email address" : "Vaša adresa e-pošte", "Reminder" : "Podsjetnik", "before at" : "prije u", "Notification" : "Obavijest", @@ -157,6 +178,7 @@ "_day_::_days_" : ["dan","dana","dana"], "_week_::_weeks_" : ["tjedan","tjedana","tjedana"], "Available" : "Dostupno", + "Not available" : "Nije dostupno", "Availability of attendees, resources and rooms" : "Raspoloživost sudionika, resursa i soba", "{organizer} (organizer)" : "{organizer} (organizator)", "Free" : "Dostupno", @@ -164,6 +186,8 @@ "Busy" : "Zauzeto", "Out of office" : "Izvan ureda", "Unknown" : "Nepoznato", + "Accept" : "Prihvati", + "Decline" : "Odbij", "Tentative" : "Uvjetno", "Create Talk room for this event" : "Stvori Talk sobu za ovaj događaj", "Show busy times" : "Prikaži vremena zauzetosti", @@ -247,6 +271,7 @@ "Please enter a valid date and time" : "Unesite važeći datum i vrijeme", "Type to search time zone" : "Upišite za pretraživanje vremenskih zona", "Global" : "Globalno", + "Time:" : "Vrijeme:", "Personal" : "Osobno", "The automatic time zone detection determined your time zone to be UTC.\nThis is most likely the result of security measures of your web browser.\nPlease set your time zone manually in the calendar settings." : "Značajka automatskog otkrivanja vremenske zone utvrdila je vašu vremensku zonu kao UTC.\nVjerojatno zbog sigurnosnih mjera vašeg internetskog preglednika.\nRučno postavite vremensku zonu u postavkama kalendara.", "Your configured time zone ({timezoneId}) was not found. Falling back to UTC.\nPlease change your time zone in the settings and report this issue." : "Nije pronađena vaša konfigurirana vremenska zona ({timezoneId}). Postavka vremenske zone vraćena je na UTC.\nPromijenite vremensku zonu u postavkama i prijavite ovu poteškoću.", @@ -353,7 +378,10 @@ "Meditation" : "Meditacija", "Relaxing" : "Opuštanje", "Relax" : "Opustite se", + "Commuting" : "Na putu", + "Invoice" : "Faktura", "Presentation" : "Prezentacija", + "Talk" : "Razgovor", "Camping" : "Kampiranje", "Camp" : "Idi na kampiranje", "Movie" : "Film", @@ -373,6 +401,7 @@ "Football" : "Nogomet", "Gaming" : "Igranje", "Drive" : "Vožnja", + "Driving" : "Vožnja", "Bicycle" : "Bicikl", "Cycle" : "Vožnja biciklom", "Biking" : "Biciklizam", @@ -391,6 +420,7 @@ "Doctor" : "Liječnik", "Health" : "Zdravlje", "Dentist" : "Stomatolog", + "Hospital" : "Bolnica", "Interview" : "Razgovor", "Training" : "Trening", "Practice" : "Vježba", @@ -431,12 +461,14 @@ "Party" : "Tulum", "Celebration" : "Proslava", "Celebrate" : "Slavlje", + "Birthday" : "Rođendan", "Shopping" : "Kupnja", "Skate" : "Koturanje", "Skateboard" : "Daska za koturanje", "Wine tasting" : "Degustacija vina", "Golf" : "Golf", "Dinner" : "Večera", - "Lunch" : "Ručak" + "Lunch" : "Ručak", + "User not found" : "Korisnik nije pronađen" },"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/hu.js b/l10n/hu.js index 9d7f094f92019ad538d712408c35b70acec42ac7..9a3df4e85fa1512d82720b313080a841795c68bb 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -55,6 +55,7 @@ OC.L10N.register( "Edit color" : "Színek szerkesztése", "Saving color …" : "Szín mentése…", "Copy private link" : "Személyes hivatkozás másolása", + "Export" : "Exportálás", "Unshare from me" : "Megosztás visszavonása", "An error occurred, unable to change visibility of the calendar." : "Hiba lépett fel, a naptár kinézetét nem lehet megváltoztatni.", "An error occurred, unable to delete the calendar." : "Hiba lépett fel, a naptárat nem lehet törölni.", @@ -126,6 +127,7 @@ OC.L10N.register( "{filename} could not be parsed" : "A {filename} nem dolgozható fel", "No valid files found, aborting import" : "Nem található érvényes fájl, importálás megszakítva", "Import partially failed. Imported {accepted} out of {total}." : "Az importálás részlegesen sikertelen. {accepted} / {total} lett importálva.", + "_Successfully imported %n event_::_Successfully imported %n events_" : ["%n esemény sikeresen importálva","%n esemény sikeresen importálva"], "Automatic" : "Automatikus", "Automatic ({detected})" : "Automatikus ({detected})", "New setting was not saved successfully." : "Az új beállítások nem lettek elmentve.", @@ -142,6 +144,10 @@ OC.L10N.register( "Actions" : "Műveletek", "Create event" : "Esemény létrehozása", "Show shortcuts" : "Gyorsbillentyűk megjelenítése", + "Editor" : "Szerkesztő", + "Close editor" : "Szerkesztő bezárása", + "Save edited event" : "Szerkesztett esemény mentése", + "Delete edited event" : "Szerkesztett esemény törlése", "Enable birthday calendar" : "Születésnapokat tartalamzó naptár engedélyezése", "Show tasks in calendar" : "Feladatok megjelenítése a naptárban", "Enable simplified editor" : "Egyszerűsített szerkesztő engedélyezése", @@ -199,7 +205,7 @@ OC.L10N.register( "Edit appointment" : "Találkozó szerkesztése", "Save" : "Mentés", "Update" : "Frissítés", - "Your appointment is booked" : "A találkozója le lett foglalva", + "Please confirm your reservation" : "Erősítse meg a foglalását", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Küldtünk egy e-mailt a részletekkel. Erősítse meg a találkozót a levélben található hivatkozással. Bezárhatja ezt az oldalt.", "Your name" : "Az Ön neve", "Your email address" : "Az Ön e-mail-címe", @@ -226,7 +232,18 @@ OC.L10N.register( "_hour_::_hours_" : ["óra","óra"], "_day_::_days_" : ["nap","nap"], "_week_::_weeks_" : ["hét","hét"], + "Suggested" : "Javasolt", "Available" : "Elérhető", + "Not available" : "Nem érhető el", + "Checking availability" : "Elérhetőség ellenőrzése", + "Invitation accepted" : "Meghívás elfogadva", + "Accepted {organizerName}'s invitation" : "Elfogadta {organizerName} meghívását", + "Invitation declined" : "Meghívás elutasítva", + "Declined {organizerName}'s invitation" : "Elutasította {organizerName} meghívását", + "Invitation is delegated" : "Meghívás átruházva", + "Participation marked as tentative" : "A részvétel feltételesként jelölve", + "Invitation sent" : "Meghívó elküldve", + "Has not responded to {organizerName}'s invitation yet" : "Még nem válaszolt {organizerName} meghívására", "Availability of attendees, resources and rooms" : "A résztvevők, az erőforrások és a szobák rendelkezésre állása", "{organizer} (organizer)" : "{organizer} (szervező)", "Free" : "Szabad", @@ -358,6 +375,7 @@ OC.L10N.register( "Close" : "Bezárás", "Show more details" : "Részletek megjelenítése", "Subscribe to {name}" : "Feliratkozás erre: {name}", + "Export {name}" : "{name} exportálása", "Anniversary" : "Évforduló", "Appointment" : "Találkozó", "Business" : "Üzleti", diff --git a/l10n/hu.json b/l10n/hu.json index 02a8936a910ce5bf9189ee068757212c546cf3ac..e778cdcdd531cf781814eb9cddb74ac2cfe2e994 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -53,6 +53,7 @@ "Edit color" : "Színek szerkesztése", "Saving color …" : "Szín mentése…", "Copy private link" : "Személyes hivatkozás másolása", + "Export" : "Exportálás", "Unshare from me" : "Megosztás visszavonása", "An error occurred, unable to change visibility of the calendar." : "Hiba lépett fel, a naptár kinézetét nem lehet megváltoztatni.", "An error occurred, unable to delete the calendar." : "Hiba lépett fel, a naptárat nem lehet törölni.", @@ -124,6 +125,7 @@ "{filename} could not be parsed" : "A {filename} nem dolgozható fel", "No valid files found, aborting import" : "Nem található érvényes fájl, importálás megszakítva", "Import partially failed. Imported {accepted} out of {total}." : "Az importálás részlegesen sikertelen. {accepted} / {total} lett importálva.", + "_Successfully imported %n event_::_Successfully imported %n events_" : ["%n esemény sikeresen importálva","%n esemény sikeresen importálva"], "Automatic" : "Automatikus", "Automatic ({detected})" : "Automatikus ({detected})", "New setting was not saved successfully." : "Az új beállítások nem lettek elmentve.", @@ -140,6 +142,10 @@ "Actions" : "Műveletek", "Create event" : "Esemény létrehozása", "Show shortcuts" : "Gyorsbillentyűk megjelenítése", + "Editor" : "Szerkesztő", + "Close editor" : "Szerkesztő bezárása", + "Save edited event" : "Szerkesztett esemény mentése", + "Delete edited event" : "Szerkesztett esemény törlése", "Enable birthday calendar" : "Születésnapokat tartalamzó naptár engedélyezése", "Show tasks in calendar" : "Feladatok megjelenítése a naptárban", "Enable simplified editor" : "Egyszerűsített szerkesztő engedélyezése", @@ -197,7 +203,7 @@ "Edit appointment" : "Találkozó szerkesztése", "Save" : "Mentés", "Update" : "Frissítés", - "Your appointment is booked" : "A találkozója le lett foglalva", + "Please confirm your reservation" : "Erősítse meg a foglalását", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Küldtünk egy e-mailt a részletekkel. Erősítse meg a találkozót a levélben található hivatkozással. Bezárhatja ezt az oldalt.", "Your name" : "Az Ön neve", "Your email address" : "Az Ön e-mail-címe", @@ -224,7 +230,18 @@ "_hour_::_hours_" : ["óra","óra"], "_day_::_days_" : ["nap","nap"], "_week_::_weeks_" : ["hét","hét"], + "Suggested" : "Javasolt", "Available" : "Elérhető", + "Not available" : "Nem érhető el", + "Checking availability" : "Elérhetőség ellenőrzése", + "Invitation accepted" : "Meghívás elfogadva", + "Accepted {organizerName}'s invitation" : "Elfogadta {organizerName} meghívását", + "Invitation declined" : "Meghívás elutasítva", + "Declined {organizerName}'s invitation" : "Elutasította {organizerName} meghívását", + "Invitation is delegated" : "Meghívás átruházva", + "Participation marked as tentative" : "A részvétel feltételesként jelölve", + "Invitation sent" : "Meghívó elküldve", + "Has not responded to {organizerName}'s invitation yet" : "Még nem válaszolt {organizerName} meghívására", "Availability of attendees, resources and rooms" : "A résztvevők, az erőforrások és a szobák rendelkezésre állása", "{organizer} (organizer)" : "{organizer} (szervező)", "Free" : "Szabad", @@ -356,6 +373,7 @@ "Close" : "Bezárás", "Show more details" : "Részletek megjelenítése", "Subscribe to {name}" : "Feliratkozás erre: {name}", + "Export {name}" : "{name} exportálása", "Anniversary" : "Évforduló", "Appointment" : "Találkozó", "Business" : "Üzleti", diff --git a/l10n/hy.js b/l10n/hy.js new file mode 100644 index 0000000000000000000000000000000000000000..a69744ed4a696f44370a64a31c3b01b89997c52c --- /dev/null +++ b/l10n/hy.js @@ -0,0 +1,52 @@ +OC.L10N.register( + "calendar", + { + "Cheers!" : "Չը՛խկ", + "Calendar" : "Օրացույց", + "New event" : "Նոր իրադարձություն", + "Today" : "Այսօր", + "Day" : "Օր", + "Week" : "Շաբաթ", + "Month" : "Ամիս", + "Copy link" : "Պատճենել հղումը", + "Edit" : "մշակել", + "Delete" : "Ջնջել", + "Export" : "Արտահանում", + "Share link" : "Կիսվել հղմամբ", + "Share with users or groups" : "Կիսվել օգտատերերի կամ խմբերի հետ", + "can edit" : "կարող է խմբագրել", + "Name" : "Անուն", + "Deleted" : "Ջնջված", + "Restore" : "Վերականգնել", + "Delete permanently" : "Ջնջել ընդմիշտ", + "Cancel" : "Չեղարկել", + "Location" : "Տեղակայություն", + "Description" : "Նկարագրություն", + "Add" : "Ավելացնել", + "Monday" : "Երկուշաբթի", + "Tuesday" : "Երեքշաբթի", + "Wednesday" : "Չորեքշաբթի", + "Thursday" : "Հինգշաբթի", + "Friday" : "Ուրբաթ", + "Saturday" : "Շաբաթ", + "Sunday" : "Կիրակի", + "Save" : "Պահպանել", + "Update" : "Թարմացնել", + "Email" : "Էլ․փոստ", + "Unknown" : "Անհայտ", + "Repeat" : "Կրկնել", + "never" : "երբեք", + "after" : "հետո", + "More" : "Ավելի", + "Global" : "Ընդհանուր", + "Personal" : "Անձնական", + "Details" : "Մանրամասներ", + "Attendees" : "Մասնակիցներ", + "Close" : "Փակել", + "Next" : "Հաջորդ", + "Other" : "Այլ", + "Confirmed" : "Հաստատված", + "Mail" : "Փոստ", + "Birthday" : "Ծննդյան օր" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/l10n/hy.json b/l10n/hy.json new file mode 100644 index 0000000000000000000000000000000000000000..ea98991de9f8ee6f6ecab4ca25de99fb3d3b02b6 --- /dev/null +++ b/l10n/hy.json @@ -0,0 +1,50 @@ +{ "translations": { + "Cheers!" : "Չը՛խկ", + "Calendar" : "Օրացույց", + "New event" : "Նոր իրադարձություն", + "Today" : "Այսօր", + "Day" : "Օր", + "Week" : "Շաբաթ", + "Month" : "Ամիս", + "Copy link" : "Պատճենել հղումը", + "Edit" : "մշակել", + "Delete" : "Ջնջել", + "Export" : "Արտահանում", + "Share link" : "Կիսվել հղմամբ", + "Share with users or groups" : "Կիսվել օգտատերերի կամ խմբերի հետ", + "can edit" : "կարող է խմբագրել", + "Name" : "Անուն", + "Deleted" : "Ջնջված", + "Restore" : "Վերականգնել", + "Delete permanently" : "Ջնջել ընդմիշտ", + "Cancel" : "Չեղարկել", + "Location" : "Տեղակայություն", + "Description" : "Նկարագրություն", + "Add" : "Ավելացնել", + "Monday" : "Երկուշաբթի", + "Tuesday" : "Երեքշաբթի", + "Wednesday" : "Չորեքշաբթի", + "Thursday" : "Հինգշաբթի", + "Friday" : "Ուրբաթ", + "Saturday" : "Շաբաթ", + "Sunday" : "Կիրակի", + "Save" : "Պահպանել", + "Update" : "Թարմացնել", + "Email" : "Էլ․փոստ", + "Unknown" : "Անհայտ", + "Repeat" : "Կրկնել", + "never" : "երբեք", + "after" : "հետո", + "More" : "Ավելի", + "Global" : "Ընդհանուր", + "Personal" : "Անձնական", + "Details" : "Մանրամասներ", + "Attendees" : "Մասնակիցներ", + "Close" : "Փակել", + "Next" : "Հաջորդ", + "Other" : "Այլ", + "Confirmed" : "Հաստատված", + "Mail" : "Փոստ", + "Birthday" : "Ծննդյան օր" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/l10n/ia.js b/l10n/ia.js index 281801e5bb5f37373a98b9587bc23cdae6dfacb1..8d58e4b7849ea2651c988d6187610d14c62b5713 100644 --- a/l10n/ia.js +++ b/l10n/ia.js @@ -3,16 +3,26 @@ OC.L10N.register( { "Hello," : "Salute %s,", "Cheers!" : "Congratulationes!", + "Confirm" : "Confirmar", "Calendar" : "Calendario", + "New event" : "Nove evento", "Today" : "Hodie", "Day" : "Die", "Week" : "Septimana", "Month" : "Mense", + "Preview" : "Previsualisar", + "Copy link" : "Copiar ligamine", + "Edit" : "Modificar", "Delete" : "Deler", + "Export" : "Exportar", "Share link" : "Compartir ligamine", "Share with users or groups" : "Compartir con usatores o gruppos", "can edit" : "pote modificar", "New calendar" : "Nove calendario", + "Name" : "Nomine", + "Deleted" : "Delite", + "Restore" : "Restaurar", + "Delete permanently" : "Deler permanentemente", "Cancel" : "Cancellar", "Automatic" : "Automatic", "Actions" : "Actiones", @@ -20,12 +30,24 @@ OC.L10N.register( "Settings & import" : "Configurationes e importation", "Location" : "Loco", "Description" : "Description", + "to" : "a", + "Add" : "Adder", "Monday" : "Lunedi", + "Tuesday" : "Martedi", + "Wednesday" : "Mercuridi", + "Thursday" : "Jovedi", + "Friday" : "Venerdi", + "Saturday" : "Sabbato", + "Sunday" : "Dominica", "Save" : "Salveguardar", "Update" : "Actualisar", + "Your email address" : "Tu adresse de e-posta", "Email" : "E-posta", "Unknown" : "Incognite", + "Accept" : "Acceptar", + "Decline" : "Refusar", "Tentative" : "Tentative", + "Send email" : "Inviar message de e-posta", "Repeat" : "Repeter", "never" : "nunquam", "after" : "post", @@ -39,11 +61,14 @@ OC.L10N.register( "Week {number} of {year}" : "Septimana {number} de {year}", "Daily" : "Cata die", "Weekly" : "Cata septimana", + "Next" : "Sequente", + "Other" : "Altere", "When shared show full event" : "Quando compartite, monstrar evento integremente", "When shared show only busy" : "Quando compartite, monstrar solo si illo es occupate", "When shared hide this event" : "Quando compartite, celar iste evento", "Confirmed" : "Confirmate", "Presentation" : "Presentation", - "Mail" : "Posta" + "Mail" : "Posta", + "Birthday" : "Anniversario de nativitate" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/ia.json b/l10n/ia.json index 7d13649739fe3cf56b8bc0a1452d7c75c5198e5c..760b1b8d99f30f8c86c6189e789a7aa8a3dbc88c 100644 --- a/l10n/ia.json +++ b/l10n/ia.json @@ -1,16 +1,26 @@ { "translations": { "Hello," : "Salute %s,", "Cheers!" : "Congratulationes!", + "Confirm" : "Confirmar", "Calendar" : "Calendario", + "New event" : "Nove evento", "Today" : "Hodie", "Day" : "Die", "Week" : "Septimana", "Month" : "Mense", + "Preview" : "Previsualisar", + "Copy link" : "Copiar ligamine", + "Edit" : "Modificar", "Delete" : "Deler", + "Export" : "Exportar", "Share link" : "Compartir ligamine", "Share with users or groups" : "Compartir con usatores o gruppos", "can edit" : "pote modificar", "New calendar" : "Nove calendario", + "Name" : "Nomine", + "Deleted" : "Delite", + "Restore" : "Restaurar", + "Delete permanently" : "Deler permanentemente", "Cancel" : "Cancellar", "Automatic" : "Automatic", "Actions" : "Actiones", @@ -18,12 +28,24 @@ "Settings & import" : "Configurationes e importation", "Location" : "Loco", "Description" : "Description", + "to" : "a", + "Add" : "Adder", "Monday" : "Lunedi", + "Tuesday" : "Martedi", + "Wednesday" : "Mercuridi", + "Thursday" : "Jovedi", + "Friday" : "Venerdi", + "Saturday" : "Sabbato", + "Sunday" : "Dominica", "Save" : "Salveguardar", "Update" : "Actualisar", + "Your email address" : "Tu adresse de e-posta", "Email" : "E-posta", "Unknown" : "Incognite", + "Accept" : "Acceptar", + "Decline" : "Refusar", "Tentative" : "Tentative", + "Send email" : "Inviar message de e-posta", "Repeat" : "Repeter", "never" : "nunquam", "after" : "post", @@ -37,11 +59,14 @@ "Week {number} of {year}" : "Septimana {number} de {year}", "Daily" : "Cata die", "Weekly" : "Cata septimana", + "Next" : "Sequente", + "Other" : "Altere", "When shared show full event" : "Quando compartite, monstrar evento integremente", "When shared show only busy" : "Quando compartite, monstrar solo si illo es occupate", "When shared hide this event" : "Quando compartite, celar iste evento", "Confirmed" : "Confirmate", "Presentation" : "Presentation", - "Mail" : "Posta" + "Mail" : "Posta", + "Birthday" : "Anniversario de nativitate" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/id.js b/l10n/id.js index 1fc7869af0bc0d9d394c3ce27d8245003afe1f71..559e8761d176fc553e0f50c4678756ca11177af4 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -8,6 +8,7 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Kami ingin menginformasikan anda bahwa %s telah mempublikasikan kalender »%s«.", "Open »%s«" : "Buka »%s«", "Cheers!" : "Horee!", + "Confirm" : "Konfirmasi", "Calendar" : "Kalender", "A Calendar app for Nextcloud" : "Aplikasi Kalender untuk Nextcloud", "Previous day" : "Hari sebelum", @@ -20,6 +21,9 @@ OC.L10N.register( "Day" : "Hari", "Week" : "Minggu", "Month" : "Bulan", + "Preview" : "Pratinjau", + "Copy link" : "Salin tautan", + "Edit" : "Sunting", "Delete" : "Hapus", "Untitled calendar" : "Kalender tanpa judul", "Edit name" : "Edit nama", @@ -27,6 +31,7 @@ OC.L10N.register( "Edit color" : "Edit warna", "Saving color …" : "Menyimpan warna …", "Copy private link" : "Salin tautan privat", + "Export" : "Ekspor", "An error occurred, unable to change visibility of the calendar." : "Terjadi galat, tidak dapat mengubah visibilitas kalender.", "An error occurred, unable to delete the calendar." : "Terjadi galat, tidak dapat menghapus kalender.", "Calendar link copied to clipboard." : "Tautan kalender disalin ke papan klip.", @@ -35,7 +40,7 @@ OC.L10N.register( "An error occurred, unable to change the calendar's color." : "Terjadi galat, tidak dapat mengganti warna kalender.", "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Batal berbagi kalender dalam {countdown} detik"], "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Menghapus kalender dalam {countdown} detik"], - "Share link" : "Bagi tautan", + "Share link" : "Bagikan tautan", "Publish calendar" : "Menerbitkan kalender", "Publishing calendar" : "Menerbitkan kalender", "Copy public link" : "Salin tautan publik", @@ -70,6 +75,11 @@ OC.L10N.register( "Creating subscription …" : "Membuat langganan …", "An error occurred, unable to create the calendar." : "Terjadi galat, tidak dapat membuat kalender.", "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "Silakan isi tautan valid (dimulai dengan http://, https://, webcal://, or webcals://)", + "Name" : "Nama", + "Deleted" : "Dihapus", + "Restore" : "Pulihkan", + "Delete permanently" : "Hapus secara permanen", + "Empty trash bin" : "Kosongkan tempat sampah", "Import calendars" : "Impor kalender", "Filename" : "Nama berkas", "Cancel" : "Batal", @@ -88,6 +98,7 @@ OC.L10N.register( "Day view" : "Tampilan hari", "Week view" : "Tampilan minggu", "Month view" : "Tampilan bulan", + "List view" : "Tampilan lis", "Actions" : "Tindakan", "Create event" : "Buat acara", "Show shortcuts" : "Tampilkan pintasan", @@ -105,9 +116,18 @@ OC.L10N.register( "CalDAV link could not be copied to clipboard." : "Tautan CalDAV tidak dapat disalin ke papan klip", "Location" : "Lokasi", "Description" : "Deskrisi", + "to" : "untuk", + "Add" : "Masukkan", "Monday" : "Senin", + "Tuesday" : "Selasa", + "Wednesday" : "Rabu", + "Thursday" : "Kamis", + "Friday" : "Jumat", + "Saturday" : "Sabtu", + "Sunday" : "Minggu", "Save" : "Simpan", "Update" : "Perbarui", + "Your email address" : "Alamat surel Anda", "Notification" : "Notifikasi", "Email" : "Surel", "Audio notification" : "Notifikasi audio", @@ -131,12 +151,15 @@ OC.L10N.register( "Busy" : "Sibuk", "Out of office" : "Keluar kantor", "Unknown" : "Tidak diketahui", + "Accept" : "Terima", + "Decline" : "Tolak", "Tentative" : "Tentatif", "Create Talk room for this event" : "Buat ruangan Talk untuk acara ini", "Show busy times" : "Tampilkan waktu sibuk", "No attendees yet" : "Belum ada peserta", "Successfully appended link to talk room to description." : "Berhasil menambahkan tautan ruang Talk pada deskripsi.", "Error creating Talk room" : "Galat membuat ruangan Talk", + "Send email" : "Kirim surel", "Required participant" : "Partisipan wajib", "Optional participant" : "Partisipan opsional", "Non-participant" : "Bukan partisipan", @@ -174,6 +197,7 @@ OC.L10N.register( "Please enter a valid date" : "Silakan isi tanggal valid", "Please enter a valid date and time" : "Silakan isi tanggal dan waktu valid", "Personal" : "Pribadi", + "[Today]" : "[Hari ini]", "Details" : "Detail", "Attendees" : "Peserta", "Close" : "Tutup", @@ -221,7 +245,9 @@ OC.L10N.register( "Untitled event" : "Acara tanpa judul", "Untitled task" : "Tugas tanpa judul", "Please ask your administrator to enable the Tasks App." : "Silakan tanya administrator Anda untuk mengaktifkan aplikasi Tugas.", + "Next" : "Berikutnya", "_+%n more_::_+%n more_" : ["+%n lagi"], + "Other" : "Lainnya", "Add a location" : "Tambah lokasi", "Add a description" : "Tambah deskripsi", "Status" : "Status", @@ -235,6 +261,10 @@ OC.L10N.register( "Add this as a new category" : "Tambah sebagai kategori baru", "Custom color" : "Warna khusus", "Special color of this event. Overrides the calendar-color." : "Warna spesial dari acara ini. Mengganti warna kalender.", - "Chat room for event" : "Ruang obrolan untuk acara" + "Chat room for event" : "Ruang obrolan untuk acara", + "Talk" : "Talk", + "Review" : "Tinjauan", + "Mail" : "Email", + "Birthday" : "Tanggal lahir" }, "nplurals=1; plural=0;"); diff --git a/l10n/id.json b/l10n/id.json index fa4de9870dba7a6cbe058f957db5155520ec9b2c..d1fe88bbc7bd80cfbafcb32d0e18aaf37dd1b2fa 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -6,6 +6,7 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Kami ingin menginformasikan anda bahwa %s telah mempublikasikan kalender »%s«.", "Open »%s«" : "Buka »%s«", "Cheers!" : "Horee!", + "Confirm" : "Konfirmasi", "Calendar" : "Kalender", "A Calendar app for Nextcloud" : "Aplikasi Kalender untuk Nextcloud", "Previous day" : "Hari sebelum", @@ -18,6 +19,9 @@ "Day" : "Hari", "Week" : "Minggu", "Month" : "Bulan", + "Preview" : "Pratinjau", + "Copy link" : "Salin tautan", + "Edit" : "Sunting", "Delete" : "Hapus", "Untitled calendar" : "Kalender tanpa judul", "Edit name" : "Edit nama", @@ -25,6 +29,7 @@ "Edit color" : "Edit warna", "Saving color …" : "Menyimpan warna …", "Copy private link" : "Salin tautan privat", + "Export" : "Ekspor", "An error occurred, unable to change visibility of the calendar." : "Terjadi galat, tidak dapat mengubah visibilitas kalender.", "An error occurred, unable to delete the calendar." : "Terjadi galat, tidak dapat menghapus kalender.", "Calendar link copied to clipboard." : "Tautan kalender disalin ke papan klip.", @@ -33,7 +38,7 @@ "An error occurred, unable to change the calendar's color." : "Terjadi galat, tidak dapat mengganti warna kalender.", "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Batal berbagi kalender dalam {countdown} detik"], "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Menghapus kalender dalam {countdown} detik"], - "Share link" : "Bagi tautan", + "Share link" : "Bagikan tautan", "Publish calendar" : "Menerbitkan kalender", "Publishing calendar" : "Menerbitkan kalender", "Copy public link" : "Salin tautan publik", @@ -68,6 +73,11 @@ "Creating subscription …" : "Membuat langganan …", "An error occurred, unable to create the calendar." : "Terjadi galat, tidak dapat membuat kalender.", "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "Silakan isi tautan valid (dimulai dengan http://, https://, webcal://, or webcals://)", + "Name" : "Nama", + "Deleted" : "Dihapus", + "Restore" : "Pulihkan", + "Delete permanently" : "Hapus secara permanen", + "Empty trash bin" : "Kosongkan tempat sampah", "Import calendars" : "Impor kalender", "Filename" : "Nama berkas", "Cancel" : "Batal", @@ -86,6 +96,7 @@ "Day view" : "Tampilan hari", "Week view" : "Tampilan minggu", "Month view" : "Tampilan bulan", + "List view" : "Tampilan lis", "Actions" : "Tindakan", "Create event" : "Buat acara", "Show shortcuts" : "Tampilkan pintasan", @@ -103,9 +114,18 @@ "CalDAV link could not be copied to clipboard." : "Tautan CalDAV tidak dapat disalin ke papan klip", "Location" : "Lokasi", "Description" : "Deskrisi", + "to" : "untuk", + "Add" : "Masukkan", "Monday" : "Senin", + "Tuesday" : "Selasa", + "Wednesday" : "Rabu", + "Thursday" : "Kamis", + "Friday" : "Jumat", + "Saturday" : "Sabtu", + "Sunday" : "Minggu", "Save" : "Simpan", "Update" : "Perbarui", + "Your email address" : "Alamat surel Anda", "Notification" : "Notifikasi", "Email" : "Surel", "Audio notification" : "Notifikasi audio", @@ -129,12 +149,15 @@ "Busy" : "Sibuk", "Out of office" : "Keluar kantor", "Unknown" : "Tidak diketahui", + "Accept" : "Terima", + "Decline" : "Tolak", "Tentative" : "Tentatif", "Create Talk room for this event" : "Buat ruangan Talk untuk acara ini", "Show busy times" : "Tampilkan waktu sibuk", "No attendees yet" : "Belum ada peserta", "Successfully appended link to talk room to description." : "Berhasil menambahkan tautan ruang Talk pada deskripsi.", "Error creating Talk room" : "Galat membuat ruangan Talk", + "Send email" : "Kirim surel", "Required participant" : "Partisipan wajib", "Optional participant" : "Partisipan opsional", "Non-participant" : "Bukan partisipan", @@ -172,6 +195,7 @@ "Please enter a valid date" : "Silakan isi tanggal valid", "Please enter a valid date and time" : "Silakan isi tanggal dan waktu valid", "Personal" : "Pribadi", + "[Today]" : "[Hari ini]", "Details" : "Detail", "Attendees" : "Peserta", "Close" : "Tutup", @@ -219,7 +243,9 @@ "Untitled event" : "Acara tanpa judul", "Untitled task" : "Tugas tanpa judul", "Please ask your administrator to enable the Tasks App." : "Silakan tanya administrator Anda untuk mengaktifkan aplikasi Tugas.", + "Next" : "Berikutnya", "_+%n more_::_+%n more_" : ["+%n lagi"], + "Other" : "Lainnya", "Add a location" : "Tambah lokasi", "Add a description" : "Tambah deskripsi", "Status" : "Status", @@ -233,6 +259,10 @@ "Add this as a new category" : "Tambah sebagai kategori baru", "Custom color" : "Warna khusus", "Special color of this event. Overrides the calendar-color." : "Warna spesial dari acara ini. Mengganti warna kalender.", - "Chat room for event" : "Ruang obrolan untuk acara" + "Chat room for event" : "Ruang obrolan untuk acara", + "Talk" : "Talk", + "Review" : "Tinjauan", + "Mail" : "Email", + "Birthday" : "Tanggal lahir" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/is.js b/l10n/is.js index ca1501a6aa28fc1e50751409f2c06b7d273977f8..a96ff175ff47a655b19088b214bba6ff8525764f 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -9,6 +9,11 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Við vildum láta þig vita að %s gaf út dagatalið »%s«.", "Open »%s«" : "Opna »%s«", "Cheers!" : "Til hamingju!", + "Appointments" : "Stefnumót", + "Confirm" : "Staðfesta", + "Date:" : "Dagsetning:", + "Where:" : "Hvar:", + "Description:" : "Lýsing:", "Calendar" : "Dagatal", "A Calendar app for Nextcloud" : "Dagatalsforrit fyrir Nextcloud", "Previous day" : "Fyrri dagur", @@ -17,11 +22,15 @@ OC.L10N.register( "Next day" : "Næsta dag", "Next week" : "Næsta viku", "Next month" : "Næsti mánuður", + "New event" : "Nýr atburður", "Today" : "Í dag", "Day" : "Dagur", "Week" : "Vika", "Month" : "Mánuður", "List" : "Listi", + "Preview" : "Forskoðun", + "Copy link" : "Afrita tengil", + "Edit" : "Breyta", "Delete" : "Eyða", "Untitled calendar" : "Ónefnt dagatal", "Edit name" : "Breyta heiti", @@ -29,6 +38,7 @@ OC.L10N.register( "Edit color" : "Breyta lit", "Saving color …" : "Vista lit …", "Copy private link" : "Afrita einkatengil", + "Export" : "Flytja út", "Unshare from me" : "Hætta deilingu frá mér", "An error occurred, unable to change visibility of the calendar." : "Villa kom upp, gat ekki breytt sýnileika dagatalsins.", "An error occurred, unable to delete the calendar." : "Villa kom upp, gat ekki eytt dagatalinu.", @@ -74,6 +84,10 @@ OC.L10N.register( "Creating subscription …" : "Útbý áskrift …", "An error occurred, unable to create the calendar." : "Villa kom upp, gat ekki búið til dagatalið.", "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "Skráðu inn gilda slóð (starting with http://, https://, webcal://, or webcals://)", + "Name" : "Heiti", + "Deleted" : "Eytt", + "Restore" : "Endurheimta", + "Delete permanently" : "Eyða varanlega", "Import calendars" : "Flytja inn dagatöl", "Please select a calendar to import into …" : "Veldu dagatal til að flytja inn í …", "Filename" : "Skráarheiti", @@ -95,6 +109,7 @@ OC.L10N.register( "Day view" : "Dagsyfirlit", "Week view" : "Vikuyfirlit", "Month view" : "Mánaðaryfirlit", + "List view" : "Listasýn", "Actions" : "Aðgerðir", "Create event" : "Búa til atburð", "Show shortcuts" : "Birta flýtileiðir", @@ -111,9 +126,19 @@ OC.L10N.register( "CalDAV link could not be copied to clipboard." : "Ekki var hægt að afrita CalDAV-tengil á klippispjald.", "Location" : "Staðsetning", "Description" : "Lýsing", + "Duration" : "Duration", + "to" : "til", + "Add" : "Bæta við", "Monday" : "Mánudagur", + "Tuesday" : "Þriðjudagur", + "Wednesday" : "Miðvikudagur", + "Thursday" : "Fimmtudagur", + "Friday" : "Föstudagur", + "Saturday" : "Laugardagur", + "Sunday" : "Sunnudagur", "Save" : "Vista", "Update" : "Uppfæra", + "Your email address" : "Netfangið þitt", "Notification" : "Tilkynning", "Email" : "Tölvupóstur", "Audio notification" : "Hljóðáminning", @@ -130,15 +155,20 @@ OC.L10N.register( "_hour_::_hours_" : ["klukkustund","klukkustundir"], "_day_::_days_" : ["dagur","dagar"], "_week_::_weeks_" : ["vika","vikur"], + "Available" : "Tiltækt", + "Not available" : "Not available", "Availability of attendees, resources and rooms" : "Framboð á þátttakendum, tilföngum og herbergjum", "Free" : "Laus", "Busy (tentative)" : "Upptekinn (með fyrirvara)", "Busy" : "Upptekinn", "Out of office" : "Ekki á staðnum", "Unknown" : "Óþekkt", + "Accept" : "Samþykkja", + "Decline" : "Hafna", "Tentative" : "Með fyrirvara", "Show busy times" : "Sýna upptekinn tíma", "No attendees yet" : "Engir þáttakendur ennþá", + "Send email" : "Senda tölvupóst", "Chairperson" : "Fundarstjóri", "Required participant" : "Nauðsynlegur þáttakandi", "Optional participant" : "Aukaþáttakandi", @@ -172,6 +202,7 @@ OC.L10N.register( "_year_::_years_" : ["ár","ár"], "weekday" : "vinnudagur", "weekend day" : "helgardagur", + "available" : "tiltækt", "More" : "Meira", "Update this occurrence" : "Uppfæra þetta tilviki", "Update this and all future" : "Uppfæra þetta og öll síðari", @@ -193,6 +224,7 @@ OC.L10N.register( "Delete this and all future" : "Eyða þessu og framtíðar tilvikum", "Details" : "Nánar", "Attendees" : "Þáttakendur", + "Resources" : "Tilföng", "Close" : "Loka", "Show more details" : "Sýna frekari upplýsingar", "Subscribe to {name}" : "Panta áskrift að {name}", @@ -223,7 +255,11 @@ OC.L10N.register( "Untitled event" : "Ónefndur atburður", "Untitled task" : "Ónefnt verkefni", "Please ask your administrator to enable the Tasks App." : "Biddu kerfisstjórann þinn um að virkja verkefnasorritið (Tasks).", + "Prev" : "Fyrra", + "Next" : "Næsta", + "Year" : "Ár", "_+%n more_::_+%n more_" : ["+%n til viðbótar","+%n til viðbótar"], + "Other" : "Annað", "When shared show" : "Þegar er deilt, birta ", "When shared show full event" : "Þegar er deilt, birta allan atburð", "When shared show only busy" : "Þegar er deilt, birta eingöngu upptekið", @@ -248,7 +284,9 @@ OC.L10N.register( "Meditation" : "Hugleiðsla", "Relaxing" : "Afslöppun", "Relax" : "Afslöppun", + "Commuting" : "Á ferðinni", "Presentation" : "Kynning", + "Talk" : "Spjalla", "Camping" : "Tjaldútilega", "Camp" : "Tjaldstæði", "Movie" : "Kvikmynd", @@ -285,6 +323,7 @@ OC.L10N.register( "Doctor" : "Læknir", "Health" : "Heilsa", "Dentist" : "Tannlæknir", + "Hospital" : "Sjúkrahús", "Interview" : "Viðtal", "Training" : "Þjálfun", "Practice" : "Æfingar", @@ -323,12 +362,14 @@ OC.L10N.register( "Party" : "Partý", "Celebration" : "Hátíðahöld", "Celebrate" : "Fagna", + "Birthday" : "Afmælisdagur", "Shopping" : "Versla", "Skate" : "Skautar", "Skateboard" : "Hjólabretti", "Wine tasting" : "Vínsmökkun", "Golf" : "Golf", "Dinner" : "Kvöldverður", - "Lunch" : "Hádegisverður" + "Lunch" : "Hádegisverður", + "User not found" : "Notandi fannst ekki" }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/l10n/is.json b/l10n/is.json index ad1cc230e9a24deaf3cfc7af298b2c3bc2fdb35f..995b3d222316a800d2318cc18adef6bf46e5809d 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -7,6 +7,11 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Við vildum láta þig vita að %s gaf út dagatalið »%s«.", "Open »%s«" : "Opna »%s«", "Cheers!" : "Til hamingju!", + "Appointments" : "Stefnumót", + "Confirm" : "Staðfesta", + "Date:" : "Dagsetning:", + "Where:" : "Hvar:", + "Description:" : "Lýsing:", "Calendar" : "Dagatal", "A Calendar app for Nextcloud" : "Dagatalsforrit fyrir Nextcloud", "Previous day" : "Fyrri dagur", @@ -15,11 +20,15 @@ "Next day" : "Næsta dag", "Next week" : "Næsta viku", "Next month" : "Næsti mánuður", + "New event" : "Nýr atburður", "Today" : "Í dag", "Day" : "Dagur", "Week" : "Vika", "Month" : "Mánuður", "List" : "Listi", + "Preview" : "Forskoðun", + "Copy link" : "Afrita tengil", + "Edit" : "Breyta", "Delete" : "Eyða", "Untitled calendar" : "Ónefnt dagatal", "Edit name" : "Breyta heiti", @@ -27,6 +36,7 @@ "Edit color" : "Breyta lit", "Saving color …" : "Vista lit …", "Copy private link" : "Afrita einkatengil", + "Export" : "Flytja út", "Unshare from me" : "Hætta deilingu frá mér", "An error occurred, unable to change visibility of the calendar." : "Villa kom upp, gat ekki breytt sýnileika dagatalsins.", "An error occurred, unable to delete the calendar." : "Villa kom upp, gat ekki eytt dagatalinu.", @@ -72,6 +82,10 @@ "Creating subscription …" : "Útbý áskrift …", "An error occurred, unable to create the calendar." : "Villa kom upp, gat ekki búið til dagatalið.", "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "Skráðu inn gilda slóð (starting with http://, https://, webcal://, or webcals://)", + "Name" : "Heiti", + "Deleted" : "Eytt", + "Restore" : "Endurheimta", + "Delete permanently" : "Eyða varanlega", "Import calendars" : "Flytja inn dagatöl", "Please select a calendar to import into …" : "Veldu dagatal til að flytja inn í …", "Filename" : "Skráarheiti", @@ -93,6 +107,7 @@ "Day view" : "Dagsyfirlit", "Week view" : "Vikuyfirlit", "Month view" : "Mánaðaryfirlit", + "List view" : "Listasýn", "Actions" : "Aðgerðir", "Create event" : "Búa til atburð", "Show shortcuts" : "Birta flýtileiðir", @@ -109,9 +124,19 @@ "CalDAV link could not be copied to clipboard." : "Ekki var hægt að afrita CalDAV-tengil á klippispjald.", "Location" : "Staðsetning", "Description" : "Lýsing", + "Duration" : "Duration", + "to" : "til", + "Add" : "Bæta við", "Monday" : "Mánudagur", + "Tuesday" : "Þriðjudagur", + "Wednesday" : "Miðvikudagur", + "Thursday" : "Fimmtudagur", + "Friday" : "Föstudagur", + "Saturday" : "Laugardagur", + "Sunday" : "Sunnudagur", "Save" : "Vista", "Update" : "Uppfæra", + "Your email address" : "Netfangið þitt", "Notification" : "Tilkynning", "Email" : "Tölvupóstur", "Audio notification" : "Hljóðáminning", @@ -128,15 +153,20 @@ "_hour_::_hours_" : ["klukkustund","klukkustundir"], "_day_::_days_" : ["dagur","dagar"], "_week_::_weeks_" : ["vika","vikur"], + "Available" : "Tiltækt", + "Not available" : "Not available", "Availability of attendees, resources and rooms" : "Framboð á þátttakendum, tilföngum og herbergjum", "Free" : "Laus", "Busy (tentative)" : "Upptekinn (með fyrirvara)", "Busy" : "Upptekinn", "Out of office" : "Ekki á staðnum", "Unknown" : "Óþekkt", + "Accept" : "Samþykkja", + "Decline" : "Hafna", "Tentative" : "Með fyrirvara", "Show busy times" : "Sýna upptekinn tíma", "No attendees yet" : "Engir þáttakendur ennþá", + "Send email" : "Senda tölvupóst", "Chairperson" : "Fundarstjóri", "Required participant" : "Nauðsynlegur þáttakandi", "Optional participant" : "Aukaþáttakandi", @@ -170,6 +200,7 @@ "_year_::_years_" : ["ár","ár"], "weekday" : "vinnudagur", "weekend day" : "helgardagur", + "available" : "tiltækt", "More" : "Meira", "Update this occurrence" : "Uppfæra þetta tilviki", "Update this and all future" : "Uppfæra þetta og öll síðari", @@ -191,6 +222,7 @@ "Delete this and all future" : "Eyða þessu og framtíðar tilvikum", "Details" : "Nánar", "Attendees" : "Þáttakendur", + "Resources" : "Tilföng", "Close" : "Loka", "Show more details" : "Sýna frekari upplýsingar", "Subscribe to {name}" : "Panta áskrift að {name}", @@ -221,7 +253,11 @@ "Untitled event" : "Ónefndur atburður", "Untitled task" : "Ónefnt verkefni", "Please ask your administrator to enable the Tasks App." : "Biddu kerfisstjórann þinn um að virkja verkefnasorritið (Tasks).", + "Prev" : "Fyrra", + "Next" : "Næsta", + "Year" : "Ár", "_+%n more_::_+%n more_" : ["+%n til viðbótar","+%n til viðbótar"], + "Other" : "Annað", "When shared show" : "Þegar er deilt, birta ", "When shared show full event" : "Þegar er deilt, birta allan atburð", "When shared show only busy" : "Þegar er deilt, birta eingöngu upptekið", @@ -246,7 +282,9 @@ "Meditation" : "Hugleiðsla", "Relaxing" : "Afslöppun", "Relax" : "Afslöppun", + "Commuting" : "Á ferðinni", "Presentation" : "Kynning", + "Talk" : "Spjalla", "Camping" : "Tjaldútilega", "Camp" : "Tjaldstæði", "Movie" : "Kvikmynd", @@ -283,6 +321,7 @@ "Doctor" : "Læknir", "Health" : "Heilsa", "Dentist" : "Tannlæknir", + "Hospital" : "Sjúkrahús", "Interview" : "Viðtal", "Training" : "Þjálfun", "Practice" : "Æfingar", @@ -321,12 +360,14 @@ "Party" : "Partý", "Celebration" : "Hátíðahöld", "Celebrate" : "Fagna", + "Birthday" : "Afmælisdagur", "Shopping" : "Versla", "Skate" : "Skautar", "Skateboard" : "Hjólabretti", "Wine tasting" : "Vínsmökkun", "Golf" : "Golf", "Dinner" : "Kvöldverður", - "Lunch" : "Hádegisverður" + "Lunch" : "Hádegisverður", + "User not found" : "Notandi fannst ekki" },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } \ No newline at end of file diff --git a/l10n/it.js b/l10n/it.js index a3fb83c47622263390c992dbbc8a3742e75a69fd..1e3f3feb2dea20318e802f8284875e6720e336f0 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -23,7 +23,7 @@ OC.L10N.register( "If you wish to cancel the appointment after all, please contact your organizer." : "Se tuttavia desideri disdire l'appuntamento, contatta l'organizzatore.", "Appointment:" : "Appuntamento:", "Date:" : "Data:", - "Where:" : "Dove:", + "Where:" : "Luogo:", "Description:" : "Descrizione:", "Calendar" : "Calendario", "A Calendar app for Nextcloud" : "Un'applicazione di calendario per Nextcloud", @@ -55,7 +55,7 @@ OC.L10N.register( "Edit color" : "Modifica colore", "Saving color …" : "Salvo il colore…", "Copy private link" : "Copia collegamento privato", - "Export" : "Esportare", + "Export" : "Esporta", "Unshare from me" : "Rimuovi condivisione da me", "An error occurred, unable to change visibility of the calendar." : "Si è verificato un errore, impossibile cambiare la visibilità del calendario.", "An error occurred, unable to delete the calendar." : "Si è verificato un errore, impossibile eliminare il calendario.", @@ -63,8 +63,8 @@ OC.L10N.register( "Calendar link could not be copied to clipboard." : "Il collegamento del calendario non può essere copiato negli appunti.", "An error occurred, unable to rename the calendar." : "Si è verificato un errore, impossibile rinominare il calendario.", "An error occurred, unable to change the calendar's color." : "Si è verificato un errore, impossibile cambiare il colore del calendario.", - "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Rimozione condivisione del calendario in {countdown} secondo","Rimozione condivisione del calendario in {countdown} secondi"], - "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Eliminazione del calendario in {countdown} secondo","Eliminazione del calendario in {countdown} secondi"], + "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Rimozione condivisione del calendario in {countdown} secondo","Rimozione condivisione del calendario in {countdown} secondi","Rimozione condivisione del calendario in {countdown} secondi"], + "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Eliminazione del calendario in {countdown} secondo","Eliminazione del calendario in {countdown} secondi","Eliminazione del calendario in {countdown} secondi"], "Share link" : "Condividi il collegamento", "Publish calendar" : "Pubblica calendario", "Publishing calendar" : "Pubblicazione calendario", @@ -95,8 +95,8 @@ OC.L10N.register( "An error occurred, unable to change the permission of the share." : "Si è verificato un errore, impossibile cambiare i permessi della condivisione.", "+ New calendar" : "+ Nuovo calendario", "New calendar" : "Nuovo calendario", - "Name for new calendar" : "Nome per il nuovo calendario", - "Creating calendar …" : "Creo il calendario …", + "Name for new calendar" : "Nome del nuovo calendario", + "Creating calendar …" : "Creazione calendario...", "New calendar with task list" : "Nuovo calendario con elenco delle attività", "New subscription from link (read-only)" : "Nuova sottoscrizione da collegamento (sola lettura)", "Creating subscription …" : "Creo la sottoscrizione …", @@ -115,19 +115,19 @@ OC.L10N.register( "Could not load deleted calendars and objects" : "Impossibile caricare i calendari e gli oggetti eliminati", "Could not restore calendar or event" : "Impossibile ripristinare il calendario o l'evento", "Do you really want to empty the trash bin?" : "Vuoi davvero svuotare il cestino?", - "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["Gli elementi nel cestino sono eliminati dopo {numDays} giorno","Gli elementi nel cestino sono eliminati dopo {numDays} giorni"], + "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["Gli elementi nel cestino sono eliminati dopo {numDays} giorno","Gli elementi nel cestino sono eliminati dopo {numDays} giorni","Gli elementi nel cestino sono eliminati dopo {numDays} giorni"], "Could not update calendar order." : "Impossibile aggiornare l'ordine del calendario.", "Import calendars" : "Importa calendari", "Please select a calendar to import into …" : "Scegli il calendario su cui importare …", "Filename" : "Nome file", "Calendar to import into" : "Calendario in cui importare", "Cancel" : "Annulla", - "_Import calendar_::_Import calendars_" : ["Importa calendario","Importa calendari"], + "_Import calendar_::_Import calendars_" : ["Importa calendario","Importa calendari","Importa calendari"], "{filename} is an unsupported file-type" : "{filename} è un tipo di file non supportato", "{filename} could not be parsed" : "{filename} non può essere analizzato", "No valid files found, aborting import" : "Nessun file valido trovato, importazione interrotta", "Import partially failed. Imported {accepted} out of {total}." : "Importazione parzialmente non riuscita. Importati {accepted} di {total}.", - "_Successfully imported %n event_::_Successfully imported %n events_" : ["%n evento importato con successo","%n evento importato con successo"], + "_Successfully imported %n event_::_Successfully imported %n events_" : ["%n evento importato con successo","%n evento importato con successo","%n evento importato con successo"], "Automatic" : "Automatico", "Automatic ({detected})" : "Automatico ({detected})", "New setting was not saved successfully." : "La nuova impostazione non è stata salvata correttamente.", @@ -144,6 +144,7 @@ OC.L10N.register( "Actions" : "Azioni", "Create event" : "Crea evento", "Show shortcuts" : "Mostra scorciatoie", + "Editor" : "Editor", "Enable birthday calendar" : "Attiva calendario dei compleanni", "Show tasks in calendar" : "Mostra le attività in calendario", "Enable simplified editor" : "Attiva editor semplificato", @@ -162,13 +163,13 @@ OC.L10N.register( "CalDAV link could not be copied to clipboard." : "Impossibile copiare collegamento CalDAV negli appunti.", "Appointment was created successfully" : "L'appuntamento è stato creato correttamente", "Appointment was updated successfully" : "L'appuntamento è stato aggiornato correttamente", - "_{duration} minute_::_{duration} minutes_" : ["{duration} minuto","{duration} minuti"], + "_{duration} minute_::_{duration} minutes_" : ["{duration} minuto","{duration} minuti","{duration} minuti"], "0 minutes" : "0 minuti", - "_{duration} hour_::_{duration} hours_" : ["{duration} ora","{duration} ore"], - "_{duration} day_::_{duration} days_" : ["{duration} giorno","{duration} giorni"], - "_{duration} week_::_{duration} weeks_" : ["{duration} settimana","{duration} settimane"], - "_{duration} month_::_{duration} months_" : ["{duration} mese","{duration} mesi"], - "_{duration} year_::_{duration} years_" : ["{duration} anno","{duration} anni"], + "_{duration} hour_::_{duration} hours_" : ["{duration} ora","{duration} ore","{duration} ore"], + "_{duration} day_::_{duration} days_" : ["{duration} giorno","{duration} giorni","{duration} giorni"], + "_{duration} week_::_{duration} weeks_" : ["{duration} settimana","{duration} settimane","{duration} settimane"], + "_{duration} month_::_{duration} months_" : ["{duration} mese","{duration} mesi","{duration} mesi"], + "_{duration} year_::_{duration} years_" : ["{duration} anno","{duration} anni","{duration} anni"], "To configure appointments, add your email address in personal settings." : "Per configurare gli appuntamenti, aggiungi il tuo indirizzo email nelle impostazioni personali.", "Public – shown on the profile page" : "Pubblica – mostrata nella pagina del profilo", "Private – only accessible via secret link" : "Privata – accessibile solo da collegamento segreto", @@ -181,7 +182,7 @@ OC.L10N.register( "Pick time ranges where appointments are allowed" : "Scegli gli intervalli di ore in cui sono permessi appuntamenti", "to" : "a", "Delete slot" : "Elimina slot", - "No times set" : "Nessun'ora impostata", + "No times set" : "Nessuna ora impostata", "Add" : "Aggiungi", "Monday" : "Lunedì", "Tuesday" : "Martedì", @@ -196,12 +197,11 @@ OC.L10N.register( "Planning restrictions" : "Restrizioni sulla pianificazione", "Minimum time before next available slot" : "Tempo minimo prima del successivo slot disponibile", "Max slots per day" : "Slot massimi al giorno", - "Limit how far in the future appointments can be booked" : "Limita fino a che punto è possibile prenotare appuntamenti futuri", + "Limit how far in the future appointments can be booked" : "Limita fino a quando è possibile prenotare appuntamenti futuri", "Create appointment" : "Crea appuntamento", "Edit appointment" : "Modifica appuntamento", "Save" : "Salva", "Update" : "Aggiorna", - "Your appointment is booked" : "Il tuo appuntamento è prenotato", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Ti abbiamo inviato un'email con i dettagli. Conferma il tuo appuntamento usando il collegamento nell'email. Ora puoi chiudere questa pagina.", "Your name" : "Il tuo nome", "Your email address" : "Il tuo indirizzo email", @@ -223,12 +223,23 @@ OC.L10N.register( "at" : "alle", "+ Add reminder" : "+ Aggiungi promemoria", "Add reminder" : "Aggiungi promemoria", - "_second_::_seconds_" : ["secondo","secondi"], - "_minute_::_minutes_" : ["minuto","minuti"], - "_hour_::_hours_" : ["ora","ore"], - "_day_::_days_" : ["giorno","giorni"], - "_week_::_weeks_" : ["settimana","settimane"], + "_second_::_seconds_" : ["secondo","secondi","secondi"], + "_minute_::_minutes_" : ["minuto","minuti","minuti"], + "_hour_::_hours_" : ["ora","ore","ore"], + "_day_::_days_" : ["giorno","giorni","giorni"], + "_week_::_weeks_" : ["settimana","settimane","settimane"], + "Suggested" : "Suggerito", "Available" : "Disponibile", + "Not available" : "Non disponibile", + "Checking availability" : "Verifica disponibilità", + "Invitation accepted" : "Invito accettato", + "Accepted {organizerName}'s invitation" : "Invito di {organizerName} accettato", + "Invitation declined" : "Invito rifiutato", + "Declined {organizerName}'s invitation" : "Invito di {organizerName} rifiutato", + "Invitation is delegated" : "Invito delegato", + "Participation marked as tentative" : "Partecipazione contrassegnata come provvisoria", + "Invitation sent" : "Invito spedito", + "Has not responded to {organizerName}'s invitation yet" : "Non ha ancora risposto all'invito di {organizerName}", "Availability of attendees, resources and rooms" : "Disponibilità di partecipanti, risorse e stanze", "{organizer} (organizer)" : "{organizer} (organizzatore)", "Free" : "Libero", @@ -274,7 +285,7 @@ OC.L10N.register( "never" : "mai", "on date" : "in data", "after" : "dopo", - "_time_::_times_" : ["volta","volte"], + "_time_::_times_" : ["volta","volte","volte"], "This event is the recurrence-exception of a recurrence-set. You cannot add a recurrence-rule to it." : "Questo evento è l'eccezione di un insieme di ricorrenze. Non puoi aggiungergli una regola di ricorrenza.", "first" : "primo", "third" : "terzo", @@ -286,8 +297,8 @@ OC.L10N.register( "Repeat every" : "Ripeti ogni", "By day of the month" : "Per giorno del mese", "On the" : "Il", - "_month_::_months_" : ["mese","mesi"], - "_year_::_years_" : ["anno","anni"], + "_month_::_months_" : ["mese","mesi","mesi"], + "_year_::_years_" : ["anno","anni","anni"], "weekday" : "giorno feriale", "weekend day" : "giorno del fine settimana", "No recurrence" : "Nessuna ricorrenza", @@ -299,7 +310,7 @@ OC.L10N.register( "Has a whiteboard" : "Ha una lavagna", "Wheelchair accessible" : "Accessibile alle carrozzine", "Remove resource" : "Rimuovi risorsa", - "_{seatingCapacity} seat_::_{seatingCapacity} seats_" : ["{seatingCapacity} sedia","{seatingCapacity} sedie"], + "_{seatingCapacity} seat_::_{seatingCapacity} seats_" : ["{seatingCapacity} sedia","{seatingCapacity} sedie","{seatingCapacity} sedie"], "Projector" : "Proiettore", "Whiteboard" : "Lavagna", "Search for resources or rooms" : "Cerca risorse o stanze", @@ -360,6 +371,7 @@ OC.L10N.register( "Close" : "Chiudi", "Show more details" : "Mostra altri dettagli", "Subscribe to {name}" : "Sottoscrivi {name}", + "Export {name}" : "Esporta {name}", "Anniversary" : "Anniversario", "Appointment" : "Appuntamento", "Business" : "Lavoro", @@ -375,8 +387,8 @@ OC.L10N.register( "Travel" : "Viaggio", "Vacation" : "Assenza", "Midnight on the day the event starts" : "Mezzanotte del giorno in cui inizia l'evento", - "_%n day before the event at {formattedHourMinute}_::_%n days before the event at {formattedHourMinute}_" : ["%n giorno prima dell'evento alle {formattedHourMinute}","%n giorni prima dell'evento alle {formattedHourMinute}"], - "_%n week before the event at {formattedHourMinute}_::_%n weeks before the event at {formattedHourMinute}_" : ["%n settimana prima dell'evento alle {formattedHourMinute}","%n settimane prima dell'evento alle {formattedHourMinute}"], + "_%n day before the event at {formattedHourMinute}_::_%n days before the event at {formattedHourMinute}_" : ["%n giorno prima dell'evento alle {formattedHourMinute}","%n giorni prima dell'evento alle {formattedHourMinute}","%n giorni prima dell'evento alle {formattedHourMinute}"], + "_%n week before the event at {formattedHourMinute}_::_%n weeks before the event at {formattedHourMinute}_" : ["%n settimana prima dell'evento alle {formattedHourMinute}","%n settimane prima dell'evento alle {formattedHourMinute}","%n settimane prima dell'evento alle {formattedHourMinute}"], "on the day of the event at {formattedHourMinute}" : "il giorno dell'evento alle {formattedHourMinute}", "at the event's start" : "all'inizio dell'evento", "at the event's end" : "alla fine dell'evento", @@ -392,17 +404,17 @@ OC.L10N.register( "Weekly" : "Settimanalmente", "Monthly" : "Mensilmente", "Yearly" : "Annualmente", - "_Every %n day_::_Every %n days_" : ["Ogni %n giorno","Ogni %n giorni"], - "_Every %n week_::_Every %n weeks_" : ["Ogni %n settimana","Ogni %n settimane"], - "_Every %n month_::_Every %n months_" : ["Ogni %n mese","Ogni %n mesi"], - "_Every %n year_::_Every %n years_" : ["Ogni %n anno","Ogni %n anni"], - "_on {weekday}_::_on {weekdays}_" : ["il {weekday}","i {weekdays}"], - "_on day {dayOfMonthList}_::_on days {dayOfMonthList}_" : ["il giorno {dayOfMonthList}","nei giorni {dayOfMonthList}"], + "_Every %n day_::_Every %n days_" : ["Ogni %n giorno","Ogni %n giorni","Ogni %n giorni"], + "_Every %n week_::_Every %n weeks_" : ["Ogni %n settimana","Ogni %n settimane","Ogni %n settimane"], + "_Every %n month_::_Every %n months_" : ["Ogni %n mese","Ogni %n mesi","Ogni %n mesi"], + "_Every %n year_::_Every %n years_" : ["Ogni %n anno","Ogni %n anni","Ogni %n anni"], + "_on {weekday}_::_on {weekdays}_" : ["il {weekday}","i {weekdays}","i {weekdays}"], + "_on day {dayOfMonthList}_::_on days {dayOfMonthList}_" : ["il giorno {dayOfMonthList}","nei giorni {dayOfMonthList}","nei giorni {dayOfMonthList}"], "on the {ordinalNumber} {byDaySet}" : "il {ordinalNumber} {byDaySet}", "in {monthNames}" : "in {monthNames}", "in {monthNames} on the {ordinalNumber} {byDaySet}" : "in {monthNames} il {ordinalNumber} {byDaySet}", "until {untilDate}" : "fino al {untilDate}", - "_%n time_::_%n times_" : ["%n volta","%n volte"], + "_%n time_::_%n times_" : ["%n volta","%n volte","%n volte"], "Untitled event" : "Evento senza titolo", "Untitled task" : "Attività senza titolo", "Please ask your administrator to enable the Tasks App." : "Chiedi al tuo amministratore di abilitare l'applicazione Attività.", @@ -414,7 +426,7 @@ OC.L10N.register( "W" : "S", "%n more" : "%n altri", "No events to display" : "Nessun evento da visualizzare", - "_+%n more_::_+%n more_" : ["+%n altro","+%n altri"], + "_+%n more_::_+%n more_" : ["+%n altro","+%n altri","+%n altri"], "No events" : "Nessun evento", "Create a new event or change the visible time-range" : "Crea un nuovo evento o cambia l'intervallo di tempo visibile", "It might have been deleted, or there was a typo in a link" : "Potrebbe essere stato eliminato o c'era un errore di digitazione in un collegamento", @@ -574,4 +586,4 @@ OC.L10N.register( "Appointment not found" : "Appuntamento non trovato", "User not found" : "Utente non trovato" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/it.json b/l10n/it.json index a2472e70a54b530de70f173be1aa1b5581538254..ad4b17a81acbf4e48be5e912117b3c05b82f7d66 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -21,7 +21,7 @@ "If you wish to cancel the appointment after all, please contact your organizer." : "Se tuttavia desideri disdire l'appuntamento, contatta l'organizzatore.", "Appointment:" : "Appuntamento:", "Date:" : "Data:", - "Where:" : "Dove:", + "Where:" : "Luogo:", "Description:" : "Descrizione:", "Calendar" : "Calendario", "A Calendar app for Nextcloud" : "Un'applicazione di calendario per Nextcloud", @@ -53,7 +53,7 @@ "Edit color" : "Modifica colore", "Saving color …" : "Salvo il colore…", "Copy private link" : "Copia collegamento privato", - "Export" : "Esportare", + "Export" : "Esporta", "Unshare from me" : "Rimuovi condivisione da me", "An error occurred, unable to change visibility of the calendar." : "Si è verificato un errore, impossibile cambiare la visibilità del calendario.", "An error occurred, unable to delete the calendar." : "Si è verificato un errore, impossibile eliminare il calendario.", @@ -61,8 +61,8 @@ "Calendar link could not be copied to clipboard." : "Il collegamento del calendario non può essere copiato negli appunti.", "An error occurred, unable to rename the calendar." : "Si è verificato un errore, impossibile rinominare il calendario.", "An error occurred, unable to change the calendar's color." : "Si è verificato un errore, impossibile cambiare il colore del calendario.", - "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Rimozione condivisione del calendario in {countdown} secondo","Rimozione condivisione del calendario in {countdown} secondi"], - "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Eliminazione del calendario in {countdown} secondo","Eliminazione del calendario in {countdown} secondi"], + "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Rimozione condivisione del calendario in {countdown} secondo","Rimozione condivisione del calendario in {countdown} secondi","Rimozione condivisione del calendario in {countdown} secondi"], + "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Eliminazione del calendario in {countdown} secondo","Eliminazione del calendario in {countdown} secondi","Eliminazione del calendario in {countdown} secondi"], "Share link" : "Condividi il collegamento", "Publish calendar" : "Pubblica calendario", "Publishing calendar" : "Pubblicazione calendario", @@ -93,8 +93,8 @@ "An error occurred, unable to change the permission of the share." : "Si è verificato un errore, impossibile cambiare i permessi della condivisione.", "+ New calendar" : "+ Nuovo calendario", "New calendar" : "Nuovo calendario", - "Name for new calendar" : "Nome per il nuovo calendario", - "Creating calendar …" : "Creo il calendario …", + "Name for new calendar" : "Nome del nuovo calendario", + "Creating calendar …" : "Creazione calendario...", "New calendar with task list" : "Nuovo calendario con elenco delle attività", "New subscription from link (read-only)" : "Nuova sottoscrizione da collegamento (sola lettura)", "Creating subscription …" : "Creo la sottoscrizione …", @@ -113,19 +113,19 @@ "Could not load deleted calendars and objects" : "Impossibile caricare i calendari e gli oggetti eliminati", "Could not restore calendar or event" : "Impossibile ripristinare il calendario o l'evento", "Do you really want to empty the trash bin?" : "Vuoi davvero svuotare il cestino?", - "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["Gli elementi nel cestino sono eliminati dopo {numDays} giorno","Gli elementi nel cestino sono eliminati dopo {numDays} giorni"], + "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["Gli elementi nel cestino sono eliminati dopo {numDays} giorno","Gli elementi nel cestino sono eliminati dopo {numDays} giorni","Gli elementi nel cestino sono eliminati dopo {numDays} giorni"], "Could not update calendar order." : "Impossibile aggiornare l'ordine del calendario.", "Import calendars" : "Importa calendari", "Please select a calendar to import into …" : "Scegli il calendario su cui importare …", "Filename" : "Nome file", "Calendar to import into" : "Calendario in cui importare", "Cancel" : "Annulla", - "_Import calendar_::_Import calendars_" : ["Importa calendario","Importa calendari"], + "_Import calendar_::_Import calendars_" : ["Importa calendario","Importa calendari","Importa calendari"], "{filename} is an unsupported file-type" : "{filename} è un tipo di file non supportato", "{filename} could not be parsed" : "{filename} non può essere analizzato", "No valid files found, aborting import" : "Nessun file valido trovato, importazione interrotta", "Import partially failed. Imported {accepted} out of {total}." : "Importazione parzialmente non riuscita. Importati {accepted} di {total}.", - "_Successfully imported %n event_::_Successfully imported %n events_" : ["%n evento importato con successo","%n evento importato con successo"], + "_Successfully imported %n event_::_Successfully imported %n events_" : ["%n evento importato con successo","%n evento importato con successo","%n evento importato con successo"], "Automatic" : "Automatico", "Automatic ({detected})" : "Automatico ({detected})", "New setting was not saved successfully." : "La nuova impostazione non è stata salvata correttamente.", @@ -142,6 +142,7 @@ "Actions" : "Azioni", "Create event" : "Crea evento", "Show shortcuts" : "Mostra scorciatoie", + "Editor" : "Editor", "Enable birthday calendar" : "Attiva calendario dei compleanni", "Show tasks in calendar" : "Mostra le attività in calendario", "Enable simplified editor" : "Attiva editor semplificato", @@ -160,13 +161,13 @@ "CalDAV link could not be copied to clipboard." : "Impossibile copiare collegamento CalDAV negli appunti.", "Appointment was created successfully" : "L'appuntamento è stato creato correttamente", "Appointment was updated successfully" : "L'appuntamento è stato aggiornato correttamente", - "_{duration} minute_::_{duration} minutes_" : ["{duration} minuto","{duration} minuti"], + "_{duration} minute_::_{duration} minutes_" : ["{duration} minuto","{duration} minuti","{duration} minuti"], "0 minutes" : "0 minuti", - "_{duration} hour_::_{duration} hours_" : ["{duration} ora","{duration} ore"], - "_{duration} day_::_{duration} days_" : ["{duration} giorno","{duration} giorni"], - "_{duration} week_::_{duration} weeks_" : ["{duration} settimana","{duration} settimane"], - "_{duration} month_::_{duration} months_" : ["{duration} mese","{duration} mesi"], - "_{duration} year_::_{duration} years_" : ["{duration} anno","{duration} anni"], + "_{duration} hour_::_{duration} hours_" : ["{duration} ora","{duration} ore","{duration} ore"], + "_{duration} day_::_{duration} days_" : ["{duration} giorno","{duration} giorni","{duration} giorni"], + "_{duration} week_::_{duration} weeks_" : ["{duration} settimana","{duration} settimane","{duration} settimane"], + "_{duration} month_::_{duration} months_" : ["{duration} mese","{duration} mesi","{duration} mesi"], + "_{duration} year_::_{duration} years_" : ["{duration} anno","{duration} anni","{duration} anni"], "To configure appointments, add your email address in personal settings." : "Per configurare gli appuntamenti, aggiungi il tuo indirizzo email nelle impostazioni personali.", "Public – shown on the profile page" : "Pubblica – mostrata nella pagina del profilo", "Private – only accessible via secret link" : "Privata – accessibile solo da collegamento segreto", @@ -179,7 +180,7 @@ "Pick time ranges where appointments are allowed" : "Scegli gli intervalli di ore in cui sono permessi appuntamenti", "to" : "a", "Delete slot" : "Elimina slot", - "No times set" : "Nessun'ora impostata", + "No times set" : "Nessuna ora impostata", "Add" : "Aggiungi", "Monday" : "Lunedì", "Tuesday" : "Martedì", @@ -194,12 +195,11 @@ "Planning restrictions" : "Restrizioni sulla pianificazione", "Minimum time before next available slot" : "Tempo minimo prima del successivo slot disponibile", "Max slots per day" : "Slot massimi al giorno", - "Limit how far in the future appointments can be booked" : "Limita fino a che punto è possibile prenotare appuntamenti futuri", + "Limit how far in the future appointments can be booked" : "Limita fino a quando è possibile prenotare appuntamenti futuri", "Create appointment" : "Crea appuntamento", "Edit appointment" : "Modifica appuntamento", "Save" : "Salva", "Update" : "Aggiorna", - "Your appointment is booked" : "Il tuo appuntamento è prenotato", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Ti abbiamo inviato un'email con i dettagli. Conferma il tuo appuntamento usando il collegamento nell'email. Ora puoi chiudere questa pagina.", "Your name" : "Il tuo nome", "Your email address" : "Il tuo indirizzo email", @@ -221,12 +221,23 @@ "at" : "alle", "+ Add reminder" : "+ Aggiungi promemoria", "Add reminder" : "Aggiungi promemoria", - "_second_::_seconds_" : ["secondo","secondi"], - "_minute_::_minutes_" : ["minuto","minuti"], - "_hour_::_hours_" : ["ora","ore"], - "_day_::_days_" : ["giorno","giorni"], - "_week_::_weeks_" : ["settimana","settimane"], + "_second_::_seconds_" : ["secondo","secondi","secondi"], + "_minute_::_minutes_" : ["minuto","minuti","minuti"], + "_hour_::_hours_" : ["ora","ore","ore"], + "_day_::_days_" : ["giorno","giorni","giorni"], + "_week_::_weeks_" : ["settimana","settimane","settimane"], + "Suggested" : "Suggerito", "Available" : "Disponibile", + "Not available" : "Non disponibile", + "Checking availability" : "Verifica disponibilità", + "Invitation accepted" : "Invito accettato", + "Accepted {organizerName}'s invitation" : "Invito di {organizerName} accettato", + "Invitation declined" : "Invito rifiutato", + "Declined {organizerName}'s invitation" : "Invito di {organizerName} rifiutato", + "Invitation is delegated" : "Invito delegato", + "Participation marked as tentative" : "Partecipazione contrassegnata come provvisoria", + "Invitation sent" : "Invito spedito", + "Has not responded to {organizerName}'s invitation yet" : "Non ha ancora risposto all'invito di {organizerName}", "Availability of attendees, resources and rooms" : "Disponibilità di partecipanti, risorse e stanze", "{organizer} (organizer)" : "{organizer} (organizzatore)", "Free" : "Libero", @@ -272,7 +283,7 @@ "never" : "mai", "on date" : "in data", "after" : "dopo", - "_time_::_times_" : ["volta","volte"], + "_time_::_times_" : ["volta","volte","volte"], "This event is the recurrence-exception of a recurrence-set. You cannot add a recurrence-rule to it." : "Questo evento è l'eccezione di un insieme di ricorrenze. Non puoi aggiungergli una regola di ricorrenza.", "first" : "primo", "third" : "terzo", @@ -284,8 +295,8 @@ "Repeat every" : "Ripeti ogni", "By day of the month" : "Per giorno del mese", "On the" : "Il", - "_month_::_months_" : ["mese","mesi"], - "_year_::_years_" : ["anno","anni"], + "_month_::_months_" : ["mese","mesi","mesi"], + "_year_::_years_" : ["anno","anni","anni"], "weekday" : "giorno feriale", "weekend day" : "giorno del fine settimana", "No recurrence" : "Nessuna ricorrenza", @@ -297,7 +308,7 @@ "Has a whiteboard" : "Ha una lavagna", "Wheelchair accessible" : "Accessibile alle carrozzine", "Remove resource" : "Rimuovi risorsa", - "_{seatingCapacity} seat_::_{seatingCapacity} seats_" : ["{seatingCapacity} sedia","{seatingCapacity} sedie"], + "_{seatingCapacity} seat_::_{seatingCapacity} seats_" : ["{seatingCapacity} sedia","{seatingCapacity} sedie","{seatingCapacity} sedie"], "Projector" : "Proiettore", "Whiteboard" : "Lavagna", "Search for resources or rooms" : "Cerca risorse o stanze", @@ -358,6 +369,7 @@ "Close" : "Chiudi", "Show more details" : "Mostra altri dettagli", "Subscribe to {name}" : "Sottoscrivi {name}", + "Export {name}" : "Esporta {name}", "Anniversary" : "Anniversario", "Appointment" : "Appuntamento", "Business" : "Lavoro", @@ -373,8 +385,8 @@ "Travel" : "Viaggio", "Vacation" : "Assenza", "Midnight on the day the event starts" : "Mezzanotte del giorno in cui inizia l'evento", - "_%n day before the event at {formattedHourMinute}_::_%n days before the event at {formattedHourMinute}_" : ["%n giorno prima dell'evento alle {formattedHourMinute}","%n giorni prima dell'evento alle {formattedHourMinute}"], - "_%n week before the event at {formattedHourMinute}_::_%n weeks before the event at {formattedHourMinute}_" : ["%n settimana prima dell'evento alle {formattedHourMinute}","%n settimane prima dell'evento alle {formattedHourMinute}"], + "_%n day before the event at {formattedHourMinute}_::_%n days before the event at {formattedHourMinute}_" : ["%n giorno prima dell'evento alle {formattedHourMinute}","%n giorni prima dell'evento alle {formattedHourMinute}","%n giorni prima dell'evento alle {formattedHourMinute}"], + "_%n week before the event at {formattedHourMinute}_::_%n weeks before the event at {formattedHourMinute}_" : ["%n settimana prima dell'evento alle {formattedHourMinute}","%n settimane prima dell'evento alle {formattedHourMinute}","%n settimane prima dell'evento alle {formattedHourMinute}"], "on the day of the event at {formattedHourMinute}" : "il giorno dell'evento alle {formattedHourMinute}", "at the event's start" : "all'inizio dell'evento", "at the event's end" : "alla fine dell'evento", @@ -390,17 +402,17 @@ "Weekly" : "Settimanalmente", "Monthly" : "Mensilmente", "Yearly" : "Annualmente", - "_Every %n day_::_Every %n days_" : ["Ogni %n giorno","Ogni %n giorni"], - "_Every %n week_::_Every %n weeks_" : ["Ogni %n settimana","Ogni %n settimane"], - "_Every %n month_::_Every %n months_" : ["Ogni %n mese","Ogni %n mesi"], - "_Every %n year_::_Every %n years_" : ["Ogni %n anno","Ogni %n anni"], - "_on {weekday}_::_on {weekdays}_" : ["il {weekday}","i {weekdays}"], - "_on day {dayOfMonthList}_::_on days {dayOfMonthList}_" : ["il giorno {dayOfMonthList}","nei giorni {dayOfMonthList}"], + "_Every %n day_::_Every %n days_" : ["Ogni %n giorno","Ogni %n giorni","Ogni %n giorni"], + "_Every %n week_::_Every %n weeks_" : ["Ogni %n settimana","Ogni %n settimane","Ogni %n settimane"], + "_Every %n month_::_Every %n months_" : ["Ogni %n mese","Ogni %n mesi","Ogni %n mesi"], + "_Every %n year_::_Every %n years_" : ["Ogni %n anno","Ogni %n anni","Ogni %n anni"], + "_on {weekday}_::_on {weekdays}_" : ["il {weekday}","i {weekdays}","i {weekdays}"], + "_on day {dayOfMonthList}_::_on days {dayOfMonthList}_" : ["il giorno {dayOfMonthList}","nei giorni {dayOfMonthList}","nei giorni {dayOfMonthList}"], "on the {ordinalNumber} {byDaySet}" : "il {ordinalNumber} {byDaySet}", "in {monthNames}" : "in {monthNames}", "in {monthNames} on the {ordinalNumber} {byDaySet}" : "in {monthNames} il {ordinalNumber} {byDaySet}", "until {untilDate}" : "fino al {untilDate}", - "_%n time_::_%n times_" : ["%n volta","%n volte"], + "_%n time_::_%n times_" : ["%n volta","%n volte","%n volte"], "Untitled event" : "Evento senza titolo", "Untitled task" : "Attività senza titolo", "Please ask your administrator to enable the Tasks App." : "Chiedi al tuo amministratore di abilitare l'applicazione Attività.", @@ -412,7 +424,7 @@ "W" : "S", "%n more" : "%n altri", "No events to display" : "Nessun evento da visualizzare", - "_+%n more_::_+%n more_" : ["+%n altro","+%n altri"], + "_+%n more_::_+%n more_" : ["+%n altro","+%n altri","+%n altri"], "No events" : "Nessun evento", "Create a new event or change the visible time-range" : "Crea un nuovo evento o cambia l'intervallo di tempo visibile", "It might have been deleted, or there was a typo in a link" : "Potrebbe essere stato eliminato o c'era un errore di digitazione in un collegamento", @@ -571,5 +583,5 @@ "Lunch" : "Pranzo", "Appointment not found" : "Appuntamento non trovato", "User not found" : "Utente non trovato" -},"pluralForm" :"nplurals=2; plural=(n != 1);" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/ja.js b/l10n/ja.js index 92339e16172ddd17b033569b3a1e6af8c1d05fec..c25bc684c2531b27eca05969e8853ea89b5df498 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -12,6 +12,7 @@ OC.L10N.register( "Cheers!" : "それでは!", "Upcoming events" : "今後のイベント", "Appointments" : "予定", + "Schedule an appointment" : "予定を入れる", "Dear %s, please confirm your booking" : "%s様、予定を承認してください。", "Confirm" : "承認", "This confirmation link expires in %s hours." : "承認用リンクの有効期限は1%s時間です。", @@ -21,6 +22,7 @@ OC.L10N.register( "Description:" : "説明:", "Calendar" : "カレンダー", "A Calendar app for Nextcloud" : "NextCloudのカレンダーアプリ", + "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "カレンダーアプリは、NextcloudのCalDAVサーバーのユーザーインターフェイスです。様々なデバイスからNextcloudにイベントを簡単に同期し、オンラインで編集することができます。\n\n* 🚀 **他のNextcloudアプリとの統合! ** 現在、連絡先 - 今後も追加予定です。\n* 🌐 **WebCal サポート! ** お気に入りのチームの試合日をカレンダーで見たいですか?問題ありません!\n* 🙋 **出席者! **イベントに人を招待する\n* ⌚️ **空き時間/忙しい時間! ** 出席者がいつ会うことができるかを確認します。\n* ⏰ **リマインダー! ** ブラウザ内や電子メールでイベントのアラームを取得します。\n* 🔍 検索! 簡単にイベントを見つける\n* ☑️ タスク! 期限付きのタスクをカレンダーで直接確認できる\n* 🙈 **我々は「車輪の再発明」をしない!**偉大な[c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js)と [fullcalendar](https://github.com/fullcalendar/fullcalendar) ライブラリをベースにしたものです。", "Previous day" : "前日", "Previous week" : "前週", "Previous month" : "前月", @@ -96,12 +98,17 @@ OC.L10N.register( "An error occurred, unable to create the calendar." : "エラーが発生したため、カレンダーを作成できません。", "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "有効なリンクを入力してください(http:// や https:// 、webcal:// または webcals:// のいずれかで始まる必要があります)", "Trash bin" : "ごみ箱", + "Loading deleted elements." : "削除された要素を読み込む。", "You do not have any deleted elements." : "削除された資格情報はありません", "Name" : "名前", "Deleted" : "削除済み", "Restore" : "復元", "Delete permanently" : "完全に削除する", "Empty trash bin" : "ゴミ箱を空にする", + "Untitled element" : "無題要素", + "Unknown calendar" : "不明なカレンダー", + "Could not load deleted calendars and objects" : "削除されたカレンダーとオブジェクトを読み込めませんでした。", + "Could not restore calendar or event" : "カレンダーまたはイベントを復元できませんでした。", "Do you really want to empty the trash bin?" : "本当にゴミ箱を空にしますか?", "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["ゴミ箱にある項目は {numDays} 日後に削除されます"], "Could not update calendar order." : "カレンダーの順番を更新できません。", @@ -115,6 +122,7 @@ OC.L10N.register( "{filename} could not be parsed" : "{filename} が解析できませんでした", "No valid files found, aborting import" : "有効なファイルが見つかりませんでした。インポートを中止します。", "Import partially failed. Imported {accepted} out of {total}." : "インポートが部分的に失敗しました。 {total}のうち{accepted}をインポートしました。", + "_Successfully imported %n event_::_Successfully imported %n events_" : ["%nイベントのインポートに成功しました"], "Automatic" : "自動", "Automatic ({detected})" : "自動 ({detected})", "New setting was not saved successfully." : "新しい設定は正常に保存されませんでした。", @@ -141,14 +149,34 @@ OC.L10N.register( "Default reminder" : "既定のリマインダー", "Copy primary CalDAV address" : "通常のCalDAVアドレスをコピー", "Copy iOS/macOS CalDAV address" : "iOS/macOS用のCalDAVアドレスをコピー", + "Personal availability settings" : "個人の稼働率設定", "Show keyboard shortcuts" : "キーボード ショートカット", "Settings & import" : "設定とインポート", "No reminder" : "リマインダーなし", "CalDAV link copied to clipboard." : "CalDAVリンクがクリップボードにコピーされました", "CalDAV link could not be copied to clipboard." : "CalDAVリンクをクリップボードにコピーできませんでした", + "Appointment was created successfully" : "予定の作成に成功しました。", + "Appointment was updated successfully" : "予定は正常に更新されました。", + "_{duration} minute_::_{duration} minutes_" : ["{duration}分"], "0 minutes" : "0分", + "_{duration} hour_::_{duration} hours_" : ["{duration}時間"], + "_{duration} day_::_{duration} days_" : ["{duration}日"], + "_{duration} week_::_{duration} weeks_" : ["{duration}週間"], + "_{duration} month_::_{duration} months_" : ["{duration}月"], + "_{duration} year_::_{duration} years_" : ["{duration}年"], + "To configure appointments, add your email address in personal settings." : "予定を設定するには、個人設定であなたのメールアドレスを追加してください。", + "Public – shown on the profile page" : "公開 - プロフィールページに表示されます。", + "Private – only accessible via secret link" : "非公開 - 秘密のリンクからしかアクセスできません。", "Location" : "場所", "Description" : "説明", + "Visibility" : "公開レベル", + "Duration" : "期間", + "Increments" : "インクリメント", + "Additional calendars to check for conflicts" : "コンフリクトを確認するための追加カレンダー", + "Pick time ranges where appointments are allowed" : "予約可能な時間帯を選ぶ", + "to" : "宛先", + "Delete slot" : "スロットを削除", + "No times set" : "時間設定なし", "Add" : "追加", "Monday" : "月曜日", "Tuesday" : "火曜日", @@ -157,12 +185,22 @@ OC.L10N.register( "Friday" : "金曜日", "Saturday" : "土曜日", "Sunday" : "日曜日", + "Add time before and after the event" : "イベント前後の時間を追加", + "Before the event" : "開催前", + "After the event" : "イベント終了後", + "Planning restrictions" : "プランニングの制限", + "Minimum time before next available slot" : "次の空きスロットまでの最短時間", + "Max slots per day" : "1日あたりの最大スロット数", + "Limit how far in the future appointments can be booked" : "予約可能な時間帯の制限", "Create appointment" : "予定を作成", "Edit appointment" : "予定を編集", "Save" : "保存", "Update" : "アップデート", + "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "詳細をメールでお送りしました。メールに記載されているリンクから予約の確認をお願いします。これでこのページを閉じることができます。", "Your name" : "あなたの名前", "Your email address" : "あなたのメールアドレス", + "Please share anything that will help prepare for our meeting" : "会議の準備に役立つことがあれば教えてください。", + "Could not book the appointment. Please try again later or contact the organizer." : "予約できませんでした。後でもう一度試してみるか、主催者に連絡してください。", "Reminder" : "リマインダー", "before at" : "次の時間分早めに通知", "Notification" : "通知", @@ -182,13 +220,18 @@ OC.L10N.register( "_hour_::_hours_" : ["時間"], "_day_::_days_" : ["日"], "_week_::_weeks_" : ["週"], + "Available" : "利用可能", + "Not available" : "利用できません", "Free" : "空き", "Busy (tentative)" : "ビジー (暫定)", "Busy" : "ビジー", "Out of office" : "オフィス外", "Unknown" : "不明", + "Accept" : "承諾", + "Decline" : "拒否", "Tentative" : "暫定的", "Create Talk room for this event" : "このイベントに通話ルームを作成する", + "Show busy times" : "忙しい時間を表示", "No attendees yet" : "出席者はまだいません", "Error creating Talk room" : "通話ルームの作成に失敗しました", "Send email" : "メールを送信", @@ -225,6 +268,8 @@ OC.L10N.register( "weekday" : "平日", "weekend day" : "週末", "Whiteboard" : "ホワイトボード", + "available" : "利用可能", + "unavailable" : "利用不可", "More" : "もっと見る", "Update this and all future" : "これ以降を更新", "Public calendar does not exist" : "公開カレンダーは存在しません", @@ -242,6 +287,8 @@ OC.L10N.register( "Type to search time zone" : "入力して時間帯を検索", "Global" : "グローバル", "Select date" : "日付を選択", + "Appointment Details:" : "予定の詳細:", + "Time:" : "時刻:", "Personal" : "個人", "No more events today" : "今日はこれ以上イベントがありません", "No upcoming events" : "今後のイベントはありません", @@ -254,6 +301,7 @@ OC.L10N.register( "Delete this occurrence" : "この出来事を削除", "Details" : "詳細", "Attendees" : "参加者", + "Resources" : "リソース", "Close" : "閉じる", "Show more details" : "詳細を見る", "Anniversary" : "記念日", @@ -290,12 +338,15 @@ OC.L10N.register( "Untitled event" : "無題のイベント", "Untitled task" : "タイトルなしタスク", "Please ask your administrator to enable the Tasks App." : "「タスク」アプリを有効化のために、管理者さんにお問い合わせください", + "Prev" : "前へ", + "Next" : "次へ", "Prev year" : "去年", "Next year" : "来年", "Year" : "年", "W" : "W", "No events to display" : "表示するイベントはありません", "No events" : "イベントはありません", + "Other" : "その他", "When shared show full event" : "共有時にすべてのイベントを表示", "When shared show only busy" : "共有時に実行中のみを表示", "When shared hide this event" : "共有時にこのイベントを隠す", @@ -313,6 +364,7 @@ OC.L10N.register( "Meditation" : "座禅", "Relaxing" : "休暇", "Relax" : "休み", + "Commuting" : "通勤中", "Finance" : "金融", "Bank" : "銀行", "Money" : "お金", @@ -321,6 +373,8 @@ OC.L10N.register( "Concert" : "演奏会", "Festival" : "祭", "Presentation" : "プレゼンテーション", + "Talk" : "トーク", + "Deadline" : "期限", "Camping" : "キャンプ場", "Camp" : "キャンプ", "Election" : "選挙", diff --git a/l10n/ja.json b/l10n/ja.json index 14af3a89f39196586168918cc4e00d4f67d818b3..b2102de1123dc3629c866146e93bee13c04e04cd 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -10,6 +10,7 @@ "Cheers!" : "それでは!", "Upcoming events" : "今後のイベント", "Appointments" : "予定", + "Schedule an appointment" : "予定を入れる", "Dear %s, please confirm your booking" : "%s様、予定を承認してください。", "Confirm" : "承認", "This confirmation link expires in %s hours." : "承認用リンクの有効期限は1%s時間です。", @@ -19,6 +20,7 @@ "Description:" : "説明:", "Calendar" : "カレンダー", "A Calendar app for Nextcloud" : "NextCloudのカレンダーアプリ", + "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "カレンダーアプリは、NextcloudのCalDAVサーバーのユーザーインターフェイスです。様々なデバイスからNextcloudにイベントを簡単に同期し、オンラインで編集することができます。\n\n* 🚀 **他のNextcloudアプリとの統合! ** 現在、連絡先 - 今後も追加予定です。\n* 🌐 **WebCal サポート! ** お気に入りのチームの試合日をカレンダーで見たいですか?問題ありません!\n* 🙋 **出席者! **イベントに人を招待する\n* ⌚️ **空き時間/忙しい時間! ** 出席者がいつ会うことができるかを確認します。\n* ⏰ **リマインダー! ** ブラウザ内や電子メールでイベントのアラームを取得します。\n* 🔍 検索! 簡単にイベントを見つける\n* ☑️ タスク! 期限付きのタスクをカレンダーで直接確認できる\n* 🙈 **我々は「車輪の再発明」をしない!**偉大な[c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js)と [fullcalendar](https://github.com/fullcalendar/fullcalendar) ライブラリをベースにしたものです。", "Previous day" : "前日", "Previous week" : "前週", "Previous month" : "前月", @@ -94,12 +96,17 @@ "An error occurred, unable to create the calendar." : "エラーが発生したため、カレンダーを作成できません。", "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "有効なリンクを入力してください(http:// や https:// 、webcal:// または webcals:// のいずれかで始まる必要があります)", "Trash bin" : "ごみ箱", + "Loading deleted elements." : "削除された要素を読み込む。", "You do not have any deleted elements." : "削除された資格情報はありません", "Name" : "名前", "Deleted" : "削除済み", "Restore" : "復元", "Delete permanently" : "完全に削除する", "Empty trash bin" : "ゴミ箱を空にする", + "Untitled element" : "無題要素", + "Unknown calendar" : "不明なカレンダー", + "Could not load deleted calendars and objects" : "削除されたカレンダーとオブジェクトを読み込めませんでした。", + "Could not restore calendar or event" : "カレンダーまたはイベントを復元できませんでした。", "Do you really want to empty the trash bin?" : "本当にゴミ箱を空にしますか?", "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["ゴミ箱にある項目は {numDays} 日後に削除されます"], "Could not update calendar order." : "カレンダーの順番を更新できません。", @@ -113,6 +120,7 @@ "{filename} could not be parsed" : "{filename} が解析できませんでした", "No valid files found, aborting import" : "有効なファイルが見つかりませんでした。インポートを中止します。", "Import partially failed. Imported {accepted} out of {total}." : "インポートが部分的に失敗しました。 {total}のうち{accepted}をインポートしました。", + "_Successfully imported %n event_::_Successfully imported %n events_" : ["%nイベントのインポートに成功しました"], "Automatic" : "自動", "Automatic ({detected})" : "自動 ({detected})", "New setting was not saved successfully." : "新しい設定は正常に保存されませんでした。", @@ -139,14 +147,34 @@ "Default reminder" : "既定のリマインダー", "Copy primary CalDAV address" : "通常のCalDAVアドレスをコピー", "Copy iOS/macOS CalDAV address" : "iOS/macOS用のCalDAVアドレスをコピー", + "Personal availability settings" : "個人の稼働率設定", "Show keyboard shortcuts" : "キーボード ショートカット", "Settings & import" : "設定とインポート", "No reminder" : "リマインダーなし", "CalDAV link copied to clipboard." : "CalDAVリンクがクリップボードにコピーされました", "CalDAV link could not be copied to clipboard." : "CalDAVリンクをクリップボードにコピーできませんでした", + "Appointment was created successfully" : "予定の作成に成功しました。", + "Appointment was updated successfully" : "予定は正常に更新されました。", + "_{duration} minute_::_{duration} minutes_" : ["{duration}分"], "0 minutes" : "0分", + "_{duration} hour_::_{duration} hours_" : ["{duration}時間"], + "_{duration} day_::_{duration} days_" : ["{duration}日"], + "_{duration} week_::_{duration} weeks_" : ["{duration}週間"], + "_{duration} month_::_{duration} months_" : ["{duration}月"], + "_{duration} year_::_{duration} years_" : ["{duration}年"], + "To configure appointments, add your email address in personal settings." : "予定を設定するには、個人設定であなたのメールアドレスを追加してください。", + "Public – shown on the profile page" : "公開 - プロフィールページに表示されます。", + "Private – only accessible via secret link" : "非公開 - 秘密のリンクからしかアクセスできません。", "Location" : "場所", "Description" : "説明", + "Visibility" : "公開レベル", + "Duration" : "期間", + "Increments" : "インクリメント", + "Additional calendars to check for conflicts" : "コンフリクトを確認するための追加カレンダー", + "Pick time ranges where appointments are allowed" : "予約可能な時間帯を選ぶ", + "to" : "宛先", + "Delete slot" : "スロットを削除", + "No times set" : "時間設定なし", "Add" : "追加", "Monday" : "月曜日", "Tuesday" : "火曜日", @@ -155,12 +183,22 @@ "Friday" : "金曜日", "Saturday" : "土曜日", "Sunday" : "日曜日", + "Add time before and after the event" : "イベント前後の時間を追加", + "Before the event" : "開催前", + "After the event" : "イベント終了後", + "Planning restrictions" : "プランニングの制限", + "Minimum time before next available slot" : "次の空きスロットまでの最短時間", + "Max slots per day" : "1日あたりの最大スロット数", + "Limit how far in the future appointments can be booked" : "予約可能な時間帯の制限", "Create appointment" : "予定を作成", "Edit appointment" : "予定を編集", "Save" : "保存", "Update" : "アップデート", + "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "詳細をメールでお送りしました。メールに記載されているリンクから予約の確認をお願いします。これでこのページを閉じることができます。", "Your name" : "あなたの名前", "Your email address" : "あなたのメールアドレス", + "Please share anything that will help prepare for our meeting" : "会議の準備に役立つことがあれば教えてください。", + "Could not book the appointment. Please try again later or contact the organizer." : "予約できませんでした。後でもう一度試してみるか、主催者に連絡してください。", "Reminder" : "リマインダー", "before at" : "次の時間分早めに通知", "Notification" : "通知", @@ -180,13 +218,18 @@ "_hour_::_hours_" : ["時間"], "_day_::_days_" : ["日"], "_week_::_weeks_" : ["週"], + "Available" : "利用可能", + "Not available" : "利用できません", "Free" : "空き", "Busy (tentative)" : "ビジー (暫定)", "Busy" : "ビジー", "Out of office" : "オフィス外", "Unknown" : "不明", + "Accept" : "承諾", + "Decline" : "拒否", "Tentative" : "暫定的", "Create Talk room for this event" : "このイベントに通話ルームを作成する", + "Show busy times" : "忙しい時間を表示", "No attendees yet" : "出席者はまだいません", "Error creating Talk room" : "通話ルームの作成に失敗しました", "Send email" : "メールを送信", @@ -223,6 +266,8 @@ "weekday" : "平日", "weekend day" : "週末", "Whiteboard" : "ホワイトボード", + "available" : "利用可能", + "unavailable" : "利用不可", "More" : "もっと見る", "Update this and all future" : "これ以降を更新", "Public calendar does not exist" : "公開カレンダーは存在しません", @@ -240,6 +285,8 @@ "Type to search time zone" : "入力して時間帯を検索", "Global" : "グローバル", "Select date" : "日付を選択", + "Appointment Details:" : "予定の詳細:", + "Time:" : "時刻:", "Personal" : "個人", "No more events today" : "今日はこれ以上イベントがありません", "No upcoming events" : "今後のイベントはありません", @@ -252,6 +299,7 @@ "Delete this occurrence" : "この出来事を削除", "Details" : "詳細", "Attendees" : "参加者", + "Resources" : "リソース", "Close" : "閉じる", "Show more details" : "詳細を見る", "Anniversary" : "記念日", @@ -288,12 +336,15 @@ "Untitled event" : "無題のイベント", "Untitled task" : "タイトルなしタスク", "Please ask your administrator to enable the Tasks App." : "「タスク」アプリを有効化のために、管理者さんにお問い合わせください", + "Prev" : "前へ", + "Next" : "次へ", "Prev year" : "去年", "Next year" : "来年", "Year" : "年", "W" : "W", "No events to display" : "表示するイベントはありません", "No events" : "イベントはありません", + "Other" : "その他", "When shared show full event" : "共有時にすべてのイベントを表示", "When shared show only busy" : "共有時に実行中のみを表示", "When shared hide this event" : "共有時にこのイベントを隠す", @@ -311,6 +362,7 @@ "Meditation" : "座禅", "Relaxing" : "休暇", "Relax" : "休み", + "Commuting" : "通勤中", "Finance" : "金融", "Bank" : "銀行", "Money" : "お金", @@ -319,6 +371,8 @@ "Concert" : "演奏会", "Festival" : "祭", "Presentation" : "プレゼンテーション", + "Talk" : "トーク", + "Deadline" : "期限", "Camping" : "キャンプ場", "Camp" : "キャンプ", "Election" : "選挙", diff --git a/l10n/ka_GE.js b/l10n/ka_GE.js index cc0a74d50eee5b99290a34ef0db5712ac926bc79..4c748ed57e1ef8b95d8aff5b4d270da64c6a38fa 100644 --- a/l10n/ka_GE.js +++ b/l10n/ka_GE.js @@ -6,53 +6,85 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "გვსურს შეგატყობინოთ, რომ %s მომხმარებელმა გამოაქყვენა კალენდარი »%s«.", "Open »%s«" : "გახნსნა »%s«", "Cheers!" : "წარმატებები!", + "Confirm" : "დადასტურება", + "Where:" : "სად:", + "Description:" : "აღწერა:", "Calendar" : "კალენდარი", + "New event" : "ახალი მოვლენა", "Today" : "დღეს", "Day" : "დღე", "Week" : "კვირა", "Month" : "თვე", "List" : "ჩამონათვალი", + "Preview" : "წინასწარი ჩვენება", + "Copy link" : "ბმულის კოპირება", + "Edit" : "შეცვლა", "Delete" : "წაშლა", + "Export" : "ექსპორტი", "Share link" : "ბმულის გაზიარება", "Share with users or groups" : "გაზიარება მოხმარებლებთან ან ჯგუფებთან", "can edit" : "შეგიძლია შეცვლა", "New calendar" : "ახალი კალენდარი", + "Name" : "სახელი", + "Deleted" : "გაუქმდა", + "Restore" : "აღდგენა", + "Delete permanently" : "სამუდამოდ წაშლა", "Filename" : "ფაილის სახელი", "Cancel" : "უარყოფა", "Automatic" : "ავტომატური", "or" : "ან", + "List view" : "ჩამონათვლისებური ხედი", "Actions" : "მოქმედებები", "Show week numbers" : "კვირის ნომრების ჩვენება", "Settings & import" : "პარამეტრები და იმპორტი", "Location" : "ადგილმდებარეობა", "Description" : "აღწერილობა", + "to" : "ვის", + "Add" : "დამატება", "Monday" : "ორშაბათი", + "Tuesday" : "სამშაბათი", + "Wednesday" : "ოთხშაბათი", + "Thursday" : "ხუთშაბათი", + "Friday" : "პარასკევი", + "Saturday" : "შაბათი", + "Sunday" : "კვირა", "Save" : "შენახვა", "Update" : "განახლება", + "Your email address" : "თქვენი ელ-ფოსტის მისამართი", "Notification" : "შეტყობინება", "Email" : "ელ-ფოსტა", "Unknown" : "ამოუცნობი", + "Accept" : "მიღება", + "Decline" : "ურაყოფა", "Tentative" : "საცდელი", + "Send email" : "ელ-წერილის გაგზავნა", "All day" : "მთელი დღე", "Repeat" : "გამეორება", "never" : "არასდროს", "after" : "შემდეგ", + "available" : "ხელმისაწვდომი", "More" : "უფრო მეტი", "Global" : "გლობალური", "Personal" : "პირადი", "Details" : "დეტლაები", "Attendees" : "დამსწრეები", + "Resources" : "რესურსები", "Close" : "დახურვა", "Anniversary" : "დაბადების დღე", "Week {number} of {year}" : "კვირა {number} {year}-დან", "Daily" : "ყოველდღიური", "Weekly" : "ყოველკვირეული", + "Prev" : "წინა", + "Next" : "შემდეგი", + "Other" : "სხვა", "When shared show full event" : "როდესაც გაზიარებულია გამოჩნდეს სრული მოვლენა", "When shared show only busy" : "როდესაც გაზიარებულია გამოჩნდეს მხოლოდ დაკავებული", "When shared hide this event" : "როდესაც გაზიარებულია არ გამოჩნდეს ეს მოვლენა", "Status" : "სტატუსი", "Confirmed" : "დადასტურებლია", "Categories" : "კატეგორიები", - "Mail" : "ფოსტა" + "Talk" : "საუბარი", + "Mail" : "ფოსტა", + "Birthday" : "დაბადების დრე" }, "nplurals=2; plural=(n!=1);"); diff --git a/l10n/ka_GE.json b/l10n/ka_GE.json index 7dd794c2c0119d647d18b66ebc1d7cb94d8bb779..a3cc540a36ff47ed8cd1a777873c14f5f76edaf8 100644 --- a/l10n/ka_GE.json +++ b/l10n/ka_GE.json @@ -4,53 +4,85 @@ "We wanted to inform you that %s has published the calendar »%s«." : "გვსურს შეგატყობინოთ, რომ %s მომხმარებელმა გამოაქყვენა კალენდარი »%s«.", "Open »%s«" : "გახნსნა »%s«", "Cheers!" : "წარმატებები!", + "Confirm" : "დადასტურება", + "Where:" : "სად:", + "Description:" : "აღწერა:", "Calendar" : "კალენდარი", + "New event" : "ახალი მოვლენა", "Today" : "დღეს", "Day" : "დღე", "Week" : "კვირა", "Month" : "თვე", "List" : "ჩამონათვალი", + "Preview" : "წინასწარი ჩვენება", + "Copy link" : "ბმულის კოპირება", + "Edit" : "შეცვლა", "Delete" : "წაშლა", + "Export" : "ექსპორტი", "Share link" : "ბმულის გაზიარება", "Share with users or groups" : "გაზიარება მოხმარებლებთან ან ჯგუფებთან", "can edit" : "შეგიძლია შეცვლა", "New calendar" : "ახალი კალენდარი", + "Name" : "სახელი", + "Deleted" : "გაუქმდა", + "Restore" : "აღდგენა", + "Delete permanently" : "სამუდამოდ წაშლა", "Filename" : "ფაილის სახელი", "Cancel" : "უარყოფა", "Automatic" : "ავტომატური", "or" : "ან", + "List view" : "ჩამონათვლისებური ხედი", "Actions" : "მოქმედებები", "Show week numbers" : "კვირის ნომრების ჩვენება", "Settings & import" : "პარამეტრები და იმპორტი", "Location" : "ადგილმდებარეობა", "Description" : "აღწერილობა", + "to" : "ვის", + "Add" : "დამატება", "Monday" : "ორშაბათი", + "Tuesday" : "სამშაბათი", + "Wednesday" : "ოთხშაბათი", + "Thursday" : "ხუთშაბათი", + "Friday" : "პარასკევი", + "Saturday" : "შაბათი", + "Sunday" : "კვირა", "Save" : "შენახვა", "Update" : "განახლება", + "Your email address" : "თქვენი ელ-ფოსტის მისამართი", "Notification" : "შეტყობინება", "Email" : "ელ-ფოსტა", "Unknown" : "ამოუცნობი", + "Accept" : "მიღება", + "Decline" : "ურაყოფა", "Tentative" : "საცდელი", + "Send email" : "ელ-წერილის გაგზავნა", "All day" : "მთელი დღე", "Repeat" : "გამეორება", "never" : "არასდროს", "after" : "შემდეგ", + "available" : "ხელმისაწვდომი", "More" : "უფრო მეტი", "Global" : "გლობალური", "Personal" : "პირადი", "Details" : "დეტლაები", "Attendees" : "დამსწრეები", + "Resources" : "რესურსები", "Close" : "დახურვა", "Anniversary" : "დაბადების დღე", "Week {number} of {year}" : "კვირა {number} {year}-დან", "Daily" : "ყოველდღიური", "Weekly" : "ყოველკვირეული", + "Prev" : "წინა", + "Next" : "შემდეგი", + "Other" : "სხვა", "When shared show full event" : "როდესაც გაზიარებულია გამოჩნდეს სრული მოვლენა", "When shared show only busy" : "როდესაც გაზიარებულია გამოჩნდეს მხოლოდ დაკავებული", "When shared hide this event" : "როდესაც გაზიარებულია არ გამოჩნდეს ეს მოვლენა", "Status" : "სტატუსი", "Confirmed" : "დადასტურებლია", "Categories" : "კატეგორიები", - "Mail" : "ფოსტა" + "Talk" : "საუბარი", + "Mail" : "ფოსტა", + "Birthday" : "დაბადების დრე" },"pluralForm" :"nplurals=2; plural=(n!=1);" } \ No newline at end of file diff --git a/l10n/km.js b/l10n/km.js new file mode 100644 index 0000000000000000000000000000000000000000..598bb6e9a79c03f740725b9ae03eca2a71fbe70a --- /dev/null +++ b/l10n/km.js @@ -0,0 +1,54 @@ +OC.L10N.register( + "calendar", + { + "Calendar" : "ប្រតិទិន", + "Today" : "ថ្ងៃ​នេះ", + "Day" : "ថ្ងៃ", + "Week" : "សប្ដាហ៍", + "Month" : "ខែ", + "Copy link" : "ចម្លងតំណ", + "Edit" : "កែប្រែ", + "Delete" : "លុប", + "Export" : "នាំចេញ", + "Share link" : "Share link", + "can edit" : "អាច​កែប្រែ", + "New calendar" : "ប្រតិទិន​ថ្មី", + "Name" : "ឈ្មោះ", + "Deleted" : "បាន​លុប", + "Restore" : "ស្ដារ​មក​វិញ", + "Delete permanently" : "លុប​ជា​អចិន្ត្រៃយ៍", + "Cancel" : "បោះបង់", + "Location" : "ទីតាំង", + "Description" : "ការ​អធិប្បាយ", + "to" : "ទៅ", + "Add" : "បញ្ចូល", + "Monday" : "ថ្ងៃចន្ទ", + "Tuesday" : "ថ្ងៃអង្គារ", + "Wednesday" : "ថ្ងៃពុធ", + "Thursday" : "ថ្ងៃព្រហស្បតិ៍", + "Friday" : "ថ្ងៃសុក្រ", + "Saturday" : "ថ្ងៃសៅរ៍", + "Sunday" : "ថ្ងៃអាទិត្យ", + "Save" : "រក្សាទុក", + "Update" : "ធ្វើ​បច្ចុប្បន្នភាព", + "Your email address" : "អ៊ីម៉ែល​របស់​អ្នក", + "Email" : "អ៊ីមែល", + "Send email" : "ផ្ញើ​អ៊ីមែល", + "Repeat" : "ធ្វើម្ដងទៀត", + "never" : "មិនដែរ", + "first" : "ទីមួយ", + "last" : "ចុងក្រោយ", + "More" : "ច្រើន​ទៀត", + "Personal" : "ផ្ទាល់​ខ្លួន", + "Details" : "ព័ត៌មាន​លម្អិត", + "Attendees" : "អ្នក​ចូលរួម", + "Close" : "បិទ", + "Daily" : "រាល់ថ្ងៃ", + "Weekly" : "រាល់​សប្ដាហ៍", + "Next" : "បន្ទាប់", + "Year" : "ឆ្នាំ", + "Other" : "ផ្សេងៗ", + "Mail" : "សំបុត្រ", + "Birthday" : "ថ្ងៃ​កំណើត" +}, +"nplurals=1; plural=0;"); diff --git a/l10n/km.json b/l10n/km.json new file mode 100644 index 0000000000000000000000000000000000000000..3c52fcb63e79dfa8aa9b23da3289083c243cd329 --- /dev/null +++ b/l10n/km.json @@ -0,0 +1,52 @@ +{ "translations": { + "Calendar" : "ប្រតិទិន", + "Today" : "ថ្ងៃ​នេះ", + "Day" : "ថ្ងៃ", + "Week" : "សប្ដាហ៍", + "Month" : "ខែ", + "Copy link" : "ចម្លងតំណ", + "Edit" : "កែប្រែ", + "Delete" : "លុប", + "Export" : "នាំចេញ", + "Share link" : "Share link", + "can edit" : "អាច​កែប្រែ", + "New calendar" : "ប្រតិទិន​ថ្មី", + "Name" : "ឈ្មោះ", + "Deleted" : "បាន​លុប", + "Restore" : "ស្ដារ​មក​វិញ", + "Delete permanently" : "លុប​ជា​អចិន្ត្រៃយ៍", + "Cancel" : "បោះបង់", + "Location" : "ទីតាំង", + "Description" : "ការ​អធិប្បាយ", + "to" : "ទៅ", + "Add" : "បញ្ចូល", + "Monday" : "ថ្ងៃចន្ទ", + "Tuesday" : "ថ្ងៃអង្គារ", + "Wednesday" : "ថ្ងៃពុធ", + "Thursday" : "ថ្ងៃព្រហស្បតិ៍", + "Friday" : "ថ្ងៃសុក្រ", + "Saturday" : "ថ្ងៃសៅរ៍", + "Sunday" : "ថ្ងៃអាទិត្យ", + "Save" : "រក្សាទុក", + "Update" : "ធ្វើ​បច្ចុប្បន្នភាព", + "Your email address" : "អ៊ីម៉ែល​របស់​អ្នក", + "Email" : "អ៊ីមែល", + "Send email" : "ផ្ញើ​អ៊ីមែល", + "Repeat" : "ធ្វើម្ដងទៀត", + "never" : "មិនដែរ", + "first" : "ទីមួយ", + "last" : "ចុងក្រោយ", + "More" : "ច្រើន​ទៀត", + "Personal" : "ផ្ទាល់​ខ្លួន", + "Details" : "ព័ត៌មាន​លម្អិត", + "Attendees" : "អ្នក​ចូលរួម", + "Close" : "បិទ", + "Daily" : "រាល់ថ្ងៃ", + "Weekly" : "រាល់​សប្ដាហ៍", + "Next" : "បន្ទាប់", + "Year" : "ឆ្នាំ", + "Other" : "ផ្សេងៗ", + "Mail" : "សំបុត្រ", + "Birthday" : "ថ្ងៃ​កំណើត" +},"pluralForm" :"nplurals=1; plural=0;" +} \ No newline at end of file diff --git a/l10n/ko.js b/l10n/ko.js index 4465f1cd8ca61c793940143ad3b8735bc3c42863..44a8f6336aa83afb53cd7bd34af802b9738a9a72 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -11,6 +11,11 @@ OC.L10N.register( "Open »%s«" : "%s 열기", "Cheers!" : "감사합니다!", "Upcoming events" : "곧 있을 일정", + "Appointments" : "일정들", + "Confirm" : "확인", + "Date:" : "날짜:", + "Where:" : "장소:", + "Description:" : "설명:", "Calendar" : "달력", "A Calendar app for Nextcloud" : "Nextcloud 달력 앱", "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "캘린더 앱은 Nextcloud의 CalDAV 서버용 사용자 인터페이스입니다. 다양한 장치의 일정을 Nextcloud와 쉽게 동기화하고 온라인으로 편집하세요. \n* 🚀 ** 다른 Nextcloud 앱과 통합! ** 현재 연락처 - 추가 예정 \n* 🌐 ** WebCal 지원! ** 캘린더에서 좋아하는 팀의 경기 일정을 보고 싶으세요? 문제 없어요! \n* 🙋 ** 모여라! ** 내 일정에 사람들 초대합니다\n* ⌚️ ** 한가함 / 바쁨! ** 언제 미팅이 가능할지 확인할 수 있습니다\n* ⏰ ** 알림! ** 브라우저나 이메일로 일정에 대한 알람을 받을 수 있습니다 \n* 🔍 검색! 쉽게 일정 찾기\n* ☑️ 작업! 마감일이있는 작업을 캘린더에서 바로 확인할 수 있습니다 \n* 🙈 ** 우리는 바퀴를 새로 만들지 않습니다! ** 위대한 [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js] (https : // github.com/mozilla-comm/ical.js) 그리고 [fullcalendar] (https://github.com/fullcalendar/fullcalendar) 라이브러리를 기반으로 합니다.", @@ -20,11 +25,14 @@ OC.L10N.register( "Next day" : "다음날", "Next week" : "다음주", "Next month" : "다음달", + "New event" : "새 일정", "Today" : "오늘", "Day" : "일", "Week" : "주", "Month" : "달", "List" : "목록", + "Preview" : "미리 보기", + "Copy link" : "링크 복사", "Edit" : "수정", "Delete" : "삭제", "Untitled calendar" : "제목없는 달력", @@ -33,6 +41,7 @@ OC.L10N.register( "Edit color" : "색 편집", "Saving color …" : "색깔 저장 중...", "Copy private link" : "개인 링크 주소 복사", + "Export" : "내보내기", "Unshare from me" : "나의 공유 해제", "An error occurred, unable to change visibility of the calendar." : "오류가 발생하여 달력의 공개 설정을 변경할 수 없습니다.", "An error occurred, unable to delete the calendar." : "오류가 발생하여 달력을 삭제할 수 없습니다.", @@ -131,9 +140,20 @@ OC.L10N.register( "CalDAV link could not be copied to clipboard." : "CalDAV 링크를 클립보드에 복사할 수 없습니다.", "Location" : "위치", "Description" : "설명", + "Visibility" : "표시 여부", + "Duration" : "길이", + "to" : "받는 사람", + "Add" : "추가", "Monday" : "월요일", + "Tuesday" : "화요일", + "Wednesday" : "수요일", + "Thursday" : "목요일", + "Friday" : "금요일", + "Saturday" : "토요일", + "Sunday" : "일요일", "Save" : "저장", "Update" : "업데이트", + "Your email address" : "내 이메일 주소", "Reminder" : "알림", "before at" : "다음 이전에: ", "Notification" : "알림", @@ -155,11 +175,14 @@ OC.L10N.register( "_day_::_days_" : ["일"], "_week_::_weeks_" : ["주"], "Available" : "사용 가능", + "Not available" : "사용할 수 없음", "Free" : "바쁘지 않음", "Busy (tentative)" : "바쁨 (잠정적으로)", "Busy" : "바쁨", "Out of office" : "자리에 없음", "Unknown" : "알 수 없음", + "Accept" : "수락", + "Decline" : "거절", "Tentative" : "예정됨", "Create Talk room for this event" : "이 일정에 대한 대화방 만들기", "Show busy times" : "바쁜 시간 보이기", @@ -230,6 +253,7 @@ OC.L10N.register( "Please enter a valid date and time" : "올바른 날짜와 시간을 입력하십시오", "Type to search time zone" : "시간대를 찾기 위해 입력하세요.", "Global" : "국제", + "Time:" : "시간:", "Personal" : "개인", "The automatic time zone detection determined your time zone to be UTC.\nThis is most likely the result of security measures of your web browser.\nPlease set your time zone manually in the calendar settings." : "자동으로 감지된 귀하의 시간대가 UTC입니다.\n이 웹 브라우저의 보안 설정이 원인일 수 있습니다.\n달력 설정에서 수동으로 시간대를 설정해 주십시오.", "Your configured time zone ({timezoneId}) was not found. Falling back to UTC.\nPlease change your time zone in the settings and report this issue." : "설정된 시간대 ({timezoneId}) 을(를) 찾을 수 없습니다. UTC로 설정됩니다.\n설정에서 시간대를 변경하고 이 문제를 보고해 주십시오.", @@ -242,6 +266,7 @@ OC.L10N.register( "Event does not exist" : "일정이 존재하지 않음", "Details" : "자세한 정보", "Attendees" : "참석자", + "Resources" : "자원", "Close" : "닫기", "Show more details" : "더 자세히 보기", "Subscribe to {name}" : "{name} 구독", @@ -293,6 +318,7 @@ OC.L10N.register( "No events to display" : "표시할 일정 없음", "_+%n more_::_+%n more_" : ["+%n 더"], "No events" : "일정 없음", + "Other" : "기타", "When shared show full event" : "전체 일정 공유", "When shared show only busy" : "바쁨/한가함만 공유", "When shared hide this event" : "일정 공유하지 않음", @@ -314,7 +340,9 @@ OC.L10N.register( "Meditation" : "명상", "Relaxing" : "휴식하기", "Relax" : "휴식", + "Commuting" : "이동 중", "Presentation" : "프레젠테이션", + "Talk" : "토크", "Camping" : "캠핑하기", "Camp" : "캠핑", "Movie" : "영화", @@ -379,11 +407,13 @@ OC.L10N.register( "Party" : "파티", "Celebration" : "축하", "Celebrate" : "축하하기", + "Birthday" : "생일", "Shopping" : "쇼핑", "Skate" : "스케이트", "Skateboard" : "스케이트보드", "Golf" : "골프", "Dinner" : "저녁", - "Lunch" : "점심" + "Lunch" : "점심", + "User not found" : "사용자를 찾을 수 없음" }, "nplurals=1; plural=0;"); diff --git a/l10n/ko.json b/l10n/ko.json index 27c2e85b2cc904e6ff25d0ec171b6921cb91ccc5..5201f24b08c8ee216e5ba652f11cfc2b44895a7f 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -9,6 +9,11 @@ "Open »%s«" : "%s 열기", "Cheers!" : "감사합니다!", "Upcoming events" : "곧 있을 일정", + "Appointments" : "일정들", + "Confirm" : "확인", + "Date:" : "날짜:", + "Where:" : "장소:", + "Description:" : "설명:", "Calendar" : "달력", "A Calendar app for Nextcloud" : "Nextcloud 달력 앱", "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "캘린더 앱은 Nextcloud의 CalDAV 서버용 사용자 인터페이스입니다. 다양한 장치의 일정을 Nextcloud와 쉽게 동기화하고 온라인으로 편집하세요. \n* 🚀 ** 다른 Nextcloud 앱과 통합! ** 현재 연락처 - 추가 예정 \n* 🌐 ** WebCal 지원! ** 캘린더에서 좋아하는 팀의 경기 일정을 보고 싶으세요? 문제 없어요! \n* 🙋 ** 모여라! ** 내 일정에 사람들 초대합니다\n* ⌚️ ** 한가함 / 바쁨! ** 언제 미팅이 가능할지 확인할 수 있습니다\n* ⏰ ** 알림! ** 브라우저나 이메일로 일정에 대한 알람을 받을 수 있습니다 \n* 🔍 검색! 쉽게 일정 찾기\n* ☑️ 작업! 마감일이있는 작업을 캘린더에서 바로 확인할 수 있습니다 \n* 🙈 ** 우리는 바퀴를 새로 만들지 않습니다! ** 위대한 [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js] (https : // github.com/mozilla-comm/ical.js) 그리고 [fullcalendar] (https://github.com/fullcalendar/fullcalendar) 라이브러리를 기반으로 합니다.", @@ -18,11 +23,14 @@ "Next day" : "다음날", "Next week" : "다음주", "Next month" : "다음달", + "New event" : "새 일정", "Today" : "오늘", "Day" : "일", "Week" : "주", "Month" : "달", "List" : "목록", + "Preview" : "미리 보기", + "Copy link" : "링크 복사", "Edit" : "수정", "Delete" : "삭제", "Untitled calendar" : "제목없는 달력", @@ -31,6 +39,7 @@ "Edit color" : "색 편집", "Saving color …" : "색깔 저장 중...", "Copy private link" : "개인 링크 주소 복사", + "Export" : "내보내기", "Unshare from me" : "나의 공유 해제", "An error occurred, unable to change visibility of the calendar." : "오류가 발생하여 달력의 공개 설정을 변경할 수 없습니다.", "An error occurred, unable to delete the calendar." : "오류가 발생하여 달력을 삭제할 수 없습니다.", @@ -129,9 +138,20 @@ "CalDAV link could not be copied to clipboard." : "CalDAV 링크를 클립보드에 복사할 수 없습니다.", "Location" : "위치", "Description" : "설명", + "Visibility" : "표시 여부", + "Duration" : "길이", + "to" : "받는 사람", + "Add" : "추가", "Monday" : "월요일", + "Tuesday" : "화요일", + "Wednesday" : "수요일", + "Thursday" : "목요일", + "Friday" : "금요일", + "Saturday" : "토요일", + "Sunday" : "일요일", "Save" : "저장", "Update" : "업데이트", + "Your email address" : "내 이메일 주소", "Reminder" : "알림", "before at" : "다음 이전에: ", "Notification" : "알림", @@ -153,11 +173,14 @@ "_day_::_days_" : ["일"], "_week_::_weeks_" : ["주"], "Available" : "사용 가능", + "Not available" : "사용할 수 없음", "Free" : "바쁘지 않음", "Busy (tentative)" : "바쁨 (잠정적으로)", "Busy" : "바쁨", "Out of office" : "자리에 없음", "Unknown" : "알 수 없음", + "Accept" : "수락", + "Decline" : "거절", "Tentative" : "예정됨", "Create Talk room for this event" : "이 일정에 대한 대화방 만들기", "Show busy times" : "바쁜 시간 보이기", @@ -228,6 +251,7 @@ "Please enter a valid date and time" : "올바른 날짜와 시간을 입력하십시오", "Type to search time zone" : "시간대를 찾기 위해 입력하세요.", "Global" : "국제", + "Time:" : "시간:", "Personal" : "개인", "The automatic time zone detection determined your time zone to be UTC.\nThis is most likely the result of security measures of your web browser.\nPlease set your time zone manually in the calendar settings." : "자동으로 감지된 귀하의 시간대가 UTC입니다.\n이 웹 브라우저의 보안 설정이 원인일 수 있습니다.\n달력 설정에서 수동으로 시간대를 설정해 주십시오.", "Your configured time zone ({timezoneId}) was not found. Falling back to UTC.\nPlease change your time zone in the settings and report this issue." : "설정된 시간대 ({timezoneId}) 을(를) 찾을 수 없습니다. UTC로 설정됩니다.\n설정에서 시간대를 변경하고 이 문제를 보고해 주십시오.", @@ -240,6 +264,7 @@ "Event does not exist" : "일정이 존재하지 않음", "Details" : "자세한 정보", "Attendees" : "참석자", + "Resources" : "자원", "Close" : "닫기", "Show more details" : "더 자세히 보기", "Subscribe to {name}" : "{name} 구독", @@ -291,6 +316,7 @@ "No events to display" : "표시할 일정 없음", "_+%n more_::_+%n more_" : ["+%n 더"], "No events" : "일정 없음", + "Other" : "기타", "When shared show full event" : "전체 일정 공유", "When shared show only busy" : "바쁨/한가함만 공유", "When shared hide this event" : "일정 공유하지 않음", @@ -312,7 +338,9 @@ "Meditation" : "명상", "Relaxing" : "휴식하기", "Relax" : "휴식", + "Commuting" : "이동 중", "Presentation" : "프레젠테이션", + "Talk" : "토크", "Camping" : "캠핑하기", "Camp" : "캠핑", "Movie" : "영화", @@ -377,11 +405,13 @@ "Party" : "파티", "Celebration" : "축하", "Celebrate" : "축하하기", + "Birthday" : "생일", "Shopping" : "쇼핑", "Skate" : "스케이트", "Skateboard" : "스케이트보드", "Golf" : "골프", "Dinner" : "저녁", - "Lunch" : "점심" + "Lunch" : "점심", + "User not found" : "사용자를 찾을 수 없음" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/lb.js b/l10n/lb.js index 18788b3b749ac787f5c6dc176c2f8fd432ccd6f1..552c1977d8440bf0428f4742e5f5bda57cda3d4c 100644 --- a/l10n/lb.js +++ b/l10n/lb.js @@ -3,23 +3,40 @@ OC.L10N.register( { "Cheers!" : "Prost!", "Calendar" : "Kalenner", + "New event" : "Neit Evenement", "Today" : "Haut", "Day" : "Dag", "Week" : "Woch", "Month" : "Mount", + "Copy link" : "Link kopéieren", + "Edit" : "Änneren", "Delete" : "Läschen", + "Export" : "Exportéieren", "Share link" : "Link deelen", "Share with users or groups" : "Mat Benotzer oder Gruppen deelen", "can edit" : "kann änneren", "New calendar" : "Neie Kalenner", + "Name" : "Numm", + "Deleted" : "Geläscht", + "Restore" : "Zrécksetzen", + "Delete permanently" : "Permanent läschen", "Cancel" : "Ofbriechen", "Automatic" : "Automatesch", "Actions" : "Aktiounen", "Location" : "Uert", "Description" : "Beschreiwung", + "to" : "bis", + "Add" : "Derbäimaachen", "Monday" : "Méindeg", + "Tuesday" : "Dënschdeg", + "Wednesday" : "Mëttwoch", + "Thursday" : "Donneschdeg", + "Friday" : "Freideg", + "Saturday" : "Samschdeg", + "Sunday" : "Sonndeg", "Save" : "Späicheren", "Update" : "Update", + "Your email address" : "Deng Email Adress", "Email" : "Email", "Unknown" : "Onbekannt", "Repeat" : "Widderhuelen", @@ -34,9 +51,12 @@ OC.L10N.register( "Week {number} of {year}" : "Woch {Nummer} vum {Joer}", "Daily" : "All Dag", "Weekly" : "All Woch", + "Next" : "Weider", + "Other" : "Aner", "When shared show full event" : "Wann et gedeelt gouf, dann de ganzen Evenement uweisen", "When shared show only busy" : "Wann et gedeelt gouf, dann nëmmen als beschäftegt uweisen", "When shared hide this event" : "Wann et gedeelt gouf, dann verstopp dëst Evenement", - "Mail" : "Mail" + "Mail" : "Mail", + "Birthday" : "Gebuertsdag" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/lb.json b/l10n/lb.json index 613a61ac60650fe18ee8d03f142191b0cc7a20e4..228bcd1189fe8cfa19232aa72242f6c7d5bea804 100644 --- a/l10n/lb.json +++ b/l10n/lb.json @@ -1,23 +1,40 @@ { "translations": { "Cheers!" : "Prost!", "Calendar" : "Kalenner", + "New event" : "Neit Evenement", "Today" : "Haut", "Day" : "Dag", "Week" : "Woch", "Month" : "Mount", + "Copy link" : "Link kopéieren", + "Edit" : "Änneren", "Delete" : "Läschen", + "Export" : "Exportéieren", "Share link" : "Link deelen", "Share with users or groups" : "Mat Benotzer oder Gruppen deelen", "can edit" : "kann änneren", "New calendar" : "Neie Kalenner", + "Name" : "Numm", + "Deleted" : "Geläscht", + "Restore" : "Zrécksetzen", + "Delete permanently" : "Permanent läschen", "Cancel" : "Ofbriechen", "Automatic" : "Automatesch", "Actions" : "Aktiounen", "Location" : "Uert", "Description" : "Beschreiwung", + "to" : "bis", + "Add" : "Derbäimaachen", "Monday" : "Méindeg", + "Tuesday" : "Dënschdeg", + "Wednesday" : "Mëttwoch", + "Thursday" : "Donneschdeg", + "Friday" : "Freideg", + "Saturday" : "Samschdeg", + "Sunday" : "Sonndeg", "Save" : "Späicheren", "Update" : "Update", + "Your email address" : "Deng Email Adress", "Email" : "Email", "Unknown" : "Onbekannt", "Repeat" : "Widderhuelen", @@ -32,9 +49,12 @@ "Week {number} of {year}" : "Woch {Nummer} vum {Joer}", "Daily" : "All Dag", "Weekly" : "All Woch", + "Next" : "Weider", + "Other" : "Aner", "When shared show full event" : "Wann et gedeelt gouf, dann de ganzen Evenement uweisen", "When shared show only busy" : "Wann et gedeelt gouf, dann nëmmen als beschäftegt uweisen", "When shared hide this event" : "Wann et gedeelt gouf, dann verstopp dëst Evenement", - "Mail" : "Mail" + "Mail" : "Mail", + "Birthday" : "Gebuertsdag" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index 889927510a9d5cdf54a7504afef9fbad9265be34..288956054ea6375764573aa59e8266bdfbc8b64c 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -33,6 +33,7 @@ OC.L10N.register( "Week" : "Savaitė", "Month" : "Mėnuo", "List" : "Sąrašas", + "Preview" : "Peržiūra", "Copy link" : "Kopijuoti nuorodą", "Edit" : "Taisyti", "Delete" : "Ištrinti", @@ -47,6 +48,7 @@ OC.L10N.register( "Edit color" : "Taisyti spalvą", "Saving color …" : "Įrašoma spalva…", "Copy private link" : "Kopijuoti privačią nuorodą", + "Export" : "Eksportuoti", "Unshare from me" : "Nustoti bendrinti su manimi", "An error occurred, unable to change visibility of the calendar." : "Įvyko klaida, nepavyko pakeisti kalendoriaus matomumo.", "An error occurred, unable to delete the calendar." : "Įvyko klaida, nepavyko ištrinti kalendorių.", @@ -86,6 +88,7 @@ OC.L10N.register( "An error occurred, unable to change the permission of the share." : "Įvykio klaida, nepavyko pakeisti viešinio leidimo.", "+ New calendar" : "+ Naujas kalendorius", "New calendar" : "Naujas kalendorius", + "Name for new calendar" : "Naujo kalendoriaus pavadinimas", "Creating calendar …" : "Kuriamas kalendorius…", "New calendar with task list" : "Naujas kalendorius su užduočių sąrašu", "New subscription from link (read-only)" : "Nauja prenumerata iš nuorodos (tik skaitymui)", @@ -133,6 +136,8 @@ OC.L10N.register( "Actions" : "Veiksmai", "Create event" : "Sukurti įvykį", "Show shortcuts" : "Rodyti nuorodas", + "Editor" : "Redaktorius", + "Close editor" : "Užverti redaktorių", "Enable birthday calendar" : "Įjungti gimtadienių kalendorių", "Show tasks in calendar" : "Rodyti užduotis kalendoriuje", "Enable simplified editor" : "Įjungti supaprastintą redaktorių", @@ -152,6 +157,11 @@ OC.L10N.register( "Appointment was updated successfully" : "Susitikimas buvo sėkmingai atnaujintas", "_{duration} minute_::_{duration} minutes_" : ["{duration} minutė","{duration} minutės","{duration} minučių","{duration} minutė"], "0 minutes" : "0 minučių", + "_{duration} hour_::_{duration} hours_" : ["{duration} valanda","{duration} valandos","{duration} valandų","{duration} valanda"], + "_{duration} day_::_{duration} days_" : ["{duration} diena","{duration} dienos","{duration} dienų","{duration} diena"], + "_{duration} week_::_{duration} weeks_" : ["{duration} savaitė","{duration} savaitės","{duration} savaičių","{duration} savaitė"], + "_{duration} month_::_{duration} months_" : ["{duration} mėnesis","{duration} mėnesiai","{duration} mėnesių","{duration} mėnesis"], + "_{duration} year_::_{duration} years_" : ["{duration} metai","{duration} metai","{duration} metų","{duration} metai"], "To configure appointments, add your email address in personal settings." : "Norėdami konfigūruoti susitikimus, asmeniniuose nustatymuose pridėkite savo el. pašto adresą.", "Public – shown on the profile page" : "Viešas – rodomas profilio puslapyje", "Private – only accessible via secret link" : "Privatus – pasiekiamas tik per slaptą nuorodą", @@ -202,6 +212,7 @@ OC.L10N.register( "_day_::_days_" : ["diena","dienos","dienų","diena"], "_week_::_weeks_" : ["savaitė","savaitės","savaičių","savaitė"], "Available" : "Prieinamas", + "Checking availability" : "Tikrinamas prieinamumas", "Availability of attendees, resources and rooms" : "Kviestinių, išteklių ir kambarių prieinamumas", "{organizer} (organizer)" : "{organizer} (organizatorius)", "Free" : "Laisvas laikas", @@ -209,12 +220,15 @@ OC.L10N.register( "Busy" : "Užimtas laikas", "Out of office" : "Ne darbo vietoje", "Unknown" : "Nežinoma", + "Accept" : "Priimti", + "Decline" : "Atmesti", "Tentative" : "Preliminarus", "Create Talk room for this event" : "Sukurti šiam įvykiui pokalbių kambarį", "Show busy times" : "Rodyti užimtumo laikus", "No attendees yet" : "Kol kas kviestinių nėra", "Successfully appended link to talk room to description." : "Pokalbių kambario nuoroda sėkmingai pridėta į aprašą.", "Error creating Talk room" : "Klaida sukuriant pokalbių kambarį", + "Send email" : "Siųsti elektroninį laišką", "Chairperson" : "Pirmininkas", "Required participant" : "Būtinas dalyvis", "Optional participant" : "Nebūtinas dalyvis", @@ -395,6 +409,7 @@ OC.L10N.register( "Relaxing" : "Atsipalaidavimas", "Relax" : "Poilsis", "Break" : "Pertrauka", + "Commuting" : "Važinėju", "Finance" : "Finansai", "Bank" : "Bankas", "Money" : "Pinigai", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index 558a75c92347592a17e059bcff95926a20a38194..0b9a201536f5415f33a20a23e5ac9cf7d71cb8d3 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -31,6 +31,7 @@ "Week" : "Savaitė", "Month" : "Mėnuo", "List" : "Sąrašas", + "Preview" : "Peržiūra", "Copy link" : "Kopijuoti nuorodą", "Edit" : "Taisyti", "Delete" : "Ištrinti", @@ -45,6 +46,7 @@ "Edit color" : "Taisyti spalvą", "Saving color …" : "Įrašoma spalva…", "Copy private link" : "Kopijuoti privačią nuorodą", + "Export" : "Eksportuoti", "Unshare from me" : "Nustoti bendrinti su manimi", "An error occurred, unable to change visibility of the calendar." : "Įvyko klaida, nepavyko pakeisti kalendoriaus matomumo.", "An error occurred, unable to delete the calendar." : "Įvyko klaida, nepavyko ištrinti kalendorių.", @@ -84,6 +86,7 @@ "An error occurred, unable to change the permission of the share." : "Įvykio klaida, nepavyko pakeisti viešinio leidimo.", "+ New calendar" : "+ Naujas kalendorius", "New calendar" : "Naujas kalendorius", + "Name for new calendar" : "Naujo kalendoriaus pavadinimas", "Creating calendar …" : "Kuriamas kalendorius…", "New calendar with task list" : "Naujas kalendorius su užduočių sąrašu", "New subscription from link (read-only)" : "Nauja prenumerata iš nuorodos (tik skaitymui)", @@ -131,6 +134,8 @@ "Actions" : "Veiksmai", "Create event" : "Sukurti įvykį", "Show shortcuts" : "Rodyti nuorodas", + "Editor" : "Redaktorius", + "Close editor" : "Užverti redaktorių", "Enable birthday calendar" : "Įjungti gimtadienių kalendorių", "Show tasks in calendar" : "Rodyti užduotis kalendoriuje", "Enable simplified editor" : "Įjungti supaprastintą redaktorių", @@ -150,6 +155,11 @@ "Appointment was updated successfully" : "Susitikimas buvo sėkmingai atnaujintas", "_{duration} minute_::_{duration} minutes_" : ["{duration} minutė","{duration} minutės","{duration} minučių","{duration} minutė"], "0 minutes" : "0 minučių", + "_{duration} hour_::_{duration} hours_" : ["{duration} valanda","{duration} valandos","{duration} valandų","{duration} valanda"], + "_{duration} day_::_{duration} days_" : ["{duration} diena","{duration} dienos","{duration} dienų","{duration} diena"], + "_{duration} week_::_{duration} weeks_" : ["{duration} savaitė","{duration} savaitės","{duration} savaičių","{duration} savaitė"], + "_{duration} month_::_{duration} months_" : ["{duration} mėnesis","{duration} mėnesiai","{duration} mėnesių","{duration} mėnesis"], + "_{duration} year_::_{duration} years_" : ["{duration} metai","{duration} metai","{duration} metų","{duration} metai"], "To configure appointments, add your email address in personal settings." : "Norėdami konfigūruoti susitikimus, asmeniniuose nustatymuose pridėkite savo el. pašto adresą.", "Public – shown on the profile page" : "Viešas – rodomas profilio puslapyje", "Private – only accessible via secret link" : "Privatus – pasiekiamas tik per slaptą nuorodą", @@ -200,6 +210,7 @@ "_day_::_days_" : ["diena","dienos","dienų","diena"], "_week_::_weeks_" : ["savaitė","savaitės","savaičių","savaitė"], "Available" : "Prieinamas", + "Checking availability" : "Tikrinamas prieinamumas", "Availability of attendees, resources and rooms" : "Kviestinių, išteklių ir kambarių prieinamumas", "{organizer} (organizer)" : "{organizer} (organizatorius)", "Free" : "Laisvas laikas", @@ -207,12 +218,15 @@ "Busy" : "Užimtas laikas", "Out of office" : "Ne darbo vietoje", "Unknown" : "Nežinoma", + "Accept" : "Priimti", + "Decline" : "Atmesti", "Tentative" : "Preliminarus", "Create Talk room for this event" : "Sukurti šiam įvykiui pokalbių kambarį", "Show busy times" : "Rodyti užimtumo laikus", "No attendees yet" : "Kol kas kviestinių nėra", "Successfully appended link to talk room to description." : "Pokalbių kambario nuoroda sėkmingai pridėta į aprašą.", "Error creating Talk room" : "Klaida sukuriant pokalbių kambarį", + "Send email" : "Siųsti elektroninį laišką", "Chairperson" : "Pirmininkas", "Required participant" : "Būtinas dalyvis", "Optional participant" : "Nebūtinas dalyvis", @@ -393,6 +407,7 @@ "Relaxing" : "Atsipalaidavimas", "Relax" : "Poilsis", "Break" : "Pertrauka", + "Commuting" : "Važinėju", "Finance" : "Finansai", "Bank" : "Bankas", "Money" : "Pinigai", diff --git a/l10n/lv.js b/l10n/lv.js index 0129acc6fd57de41275344a2a90fab660a8009f2..ef2188439d52fbd1434e019a3ba7af561d3628e6 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -6,14 +6,20 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Mēs jūs vēlējāmies informēt, ka %s publicēja kalendāru »%s«.", "Open »%s«" : "Atvērt »%s«", "Cheers!" : "Priekā!", + "Confirm" : "Apstiprināt", "Calendar" : "Kalendārs", "A Calendar app for Nextcloud" : "Kalendāra lietotne priekš Nextcloud", + "New event" : "Jauns notikums", "Today" : "Šodien", "Day" : "Diena", "Week" : "Nedēļa", "Month" : "Mēnesis", "List" : "Saraksts", + "Preview" : "Priekšskatīt", + "Copy link" : "Kopēt saiti", + "Edit" : "Rediģēt", "Delete" : "Dzēst", + "Export" : "Eksportēt", "Share link" : "Koplietot saiti", "Share with users or groups" : "Koplietot ar lietotājiem vai grupām", "No users or groups" : "Nav lietotāji vai grupas", @@ -21,38 +27,60 @@ OC.L10N.register( "+ New calendar" : "+ Jauns kalendārs", "New calendar" : "Jauns kalendārs", "New calendar with task list" : "Jauns kalendārs ar uzdevumu sarakstu", + "Name" : "Vārds", + "Deleted" : "Dzēstie", + "Restore" : "Atjaunot", + "Delete permanently" : "Dzēst pavisam", "Filename" : "Datnes nosaukums", "Cancel" : "Atcelt", "Automatic" : "Automātisks", + "List view" : "Saraksta izkārtojums", "Actions" : "Darbības", "Enable birthday calendar" : "Iespējot dzimšanas dienas kalendāru", "Show week numbers" : "Rādīt nedēļu numurus", "Settings & import" : "Iestatījumi un imports", "Location" : "Vieta", "Description" : "Apraksts", + "to" : "kam", + "Add" : "Pievienot", "Monday" : "Pirmdiena", + "Tuesday" : "Otrdiena", + "Wednesday" : "Trešdiena", + "Thursday" : "Ceturtdiena", + "Friday" : "Piektdiena", + "Saturday" : "Sestdiena", + "Sunday" : "Svētdiena", "Save" : "Saglabāt", "Update" : "Atjaunināt", + "Your email address" : "Jūsu e-pasta adrese", "Notification" : "Paziņojums", "Email" : "E-pasts", + "Available" : "Pieejams", "Busy" : "Aizņemts", "Unknown" : "Nezināms", + "Accept" : "Pieņemt", + "Decline" : "Noraidīt", "Tentative" : "Mēģinājums", + "Send email" : "Sūtīt e-pastu", "All day" : "Visas dienas", "Repeat" : "Atkārtot", "never" : "nekad", "after" : "pēc", + "available" : "pieejams", "More" : "Vairāk", "Global" : "Globāls", "Personal" : "Personīgs", "Create a new event" : "Izveidot jaunu notikumu", "Details" : "Detaļas", "Attendees" : "Apmeklētāji", + "Resources" : "Resursi", "Close" : "Aizvērt", "Anniversary" : "Gadadiena", "Week {number} of {year}" : "{number} nedēļa no {year}", "Daily" : "Katru dienu", "Weekly" : "Katru nedēļu", + "Next" : "Nākamā", + "Other" : "Cits", "When shared show full event" : "Ja koplietots, tad rādīt pilnu notikumu", "When shared show only busy" : "Ja koplietots, tad rādīt tikai aizņemts", "When shared hide this event" : "Ja koplietots, tad paslēpt notikumu", @@ -60,6 +88,9 @@ OC.L10N.register( "Confirmed" : "Apstiprināts", "Categories" : "Kategorijas", "Presentation" : "Prezentācija", - "Mail" : "E-pasts" + "Talk" : "Runāt", + "Mail" : "E-pasts", + "Birthday" : "Dzimšanas diena", + "User not found" : "Lietotājs nav atrasts" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/l10n/lv.json b/l10n/lv.json index 23566d0cd8a0570bc07a37aaef20ec92d4677563..969eeb85532e80ae5aa72f80cd6e5e2beb086047 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -4,14 +4,20 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Mēs jūs vēlējāmies informēt, ka %s publicēja kalendāru »%s«.", "Open »%s«" : "Atvērt »%s«", "Cheers!" : "Priekā!", + "Confirm" : "Apstiprināt", "Calendar" : "Kalendārs", "A Calendar app for Nextcloud" : "Kalendāra lietotne priekš Nextcloud", + "New event" : "Jauns notikums", "Today" : "Šodien", "Day" : "Diena", "Week" : "Nedēļa", "Month" : "Mēnesis", "List" : "Saraksts", + "Preview" : "Priekšskatīt", + "Copy link" : "Kopēt saiti", + "Edit" : "Rediģēt", "Delete" : "Dzēst", + "Export" : "Eksportēt", "Share link" : "Koplietot saiti", "Share with users or groups" : "Koplietot ar lietotājiem vai grupām", "No users or groups" : "Nav lietotāji vai grupas", @@ -19,38 +25,60 @@ "+ New calendar" : "+ Jauns kalendārs", "New calendar" : "Jauns kalendārs", "New calendar with task list" : "Jauns kalendārs ar uzdevumu sarakstu", + "Name" : "Vārds", + "Deleted" : "Dzēstie", + "Restore" : "Atjaunot", + "Delete permanently" : "Dzēst pavisam", "Filename" : "Datnes nosaukums", "Cancel" : "Atcelt", "Automatic" : "Automātisks", + "List view" : "Saraksta izkārtojums", "Actions" : "Darbības", "Enable birthday calendar" : "Iespējot dzimšanas dienas kalendāru", "Show week numbers" : "Rādīt nedēļu numurus", "Settings & import" : "Iestatījumi un imports", "Location" : "Vieta", "Description" : "Apraksts", + "to" : "kam", + "Add" : "Pievienot", "Monday" : "Pirmdiena", + "Tuesday" : "Otrdiena", + "Wednesday" : "Trešdiena", + "Thursday" : "Ceturtdiena", + "Friday" : "Piektdiena", + "Saturday" : "Sestdiena", + "Sunday" : "Svētdiena", "Save" : "Saglabāt", "Update" : "Atjaunināt", + "Your email address" : "Jūsu e-pasta adrese", "Notification" : "Paziņojums", "Email" : "E-pasts", + "Available" : "Pieejams", "Busy" : "Aizņemts", "Unknown" : "Nezināms", + "Accept" : "Pieņemt", + "Decline" : "Noraidīt", "Tentative" : "Mēģinājums", + "Send email" : "Sūtīt e-pastu", "All day" : "Visas dienas", "Repeat" : "Atkārtot", "never" : "nekad", "after" : "pēc", + "available" : "pieejams", "More" : "Vairāk", "Global" : "Globāls", "Personal" : "Personīgs", "Create a new event" : "Izveidot jaunu notikumu", "Details" : "Detaļas", "Attendees" : "Apmeklētāji", + "Resources" : "Resursi", "Close" : "Aizvērt", "Anniversary" : "Gadadiena", "Week {number} of {year}" : "{number} nedēļa no {year}", "Daily" : "Katru dienu", "Weekly" : "Katru nedēļu", + "Next" : "Nākamā", + "Other" : "Cits", "When shared show full event" : "Ja koplietots, tad rādīt pilnu notikumu", "When shared show only busy" : "Ja koplietots, tad rādīt tikai aizņemts", "When shared hide this event" : "Ja koplietots, tad paslēpt notikumu", @@ -58,6 +86,9 @@ "Confirmed" : "Apstiprināts", "Categories" : "Kategorijas", "Presentation" : "Prezentācija", - "Mail" : "E-pasts" + "Talk" : "Runāt", + "Mail" : "E-pasts", + "Birthday" : "Dzimšanas diena", + "User not found" : "Lietotājs nav atrasts" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" } \ No newline at end of file diff --git a/l10n/mk.js b/l10n/mk.js index cabbbbd4ab9e8998ddb7ac9ebe2fb4e5536e1f0f..de74db064e37dd5ce1a226a6ac077ec199314361 100644 --- a/l10n/mk.js +++ b/l10n/mk.js @@ -11,6 +11,10 @@ OC.L10N.register( "Open »%s«" : "Отвори »%s«", "Cheers!" : "Поздрав!", "Upcoming events" : "Престојни настани", + "Confirm" : "Потврди", + "Date:" : "Датум:", + "Where:" : "Каде: ", + "Description:" : "Опис:", "Calendar" : "Календар", "A Calendar app for Nextcloud" : "Календар апликација за Nextcloud", "Previous day" : "Предходен ден", @@ -19,11 +23,15 @@ OC.L10N.register( "Next day" : "Следен ден", "Next week" : "Следна недела", "Next month" : "Следен месец", + "New event" : "Нов настан", "Today" : "Денес", "Day" : "Ден", "Week" : "Недела", "Month" : "Месец", "List" : "Лист", + "Preview" : "Преглед", + "Copy link" : "Копирај линк", + "Edit" : "Уреди", "Delete" : "Избриши", "Untitled calendar" : "Неименуван календар", "Edit name" : "Уреди име", @@ -31,6 +39,7 @@ OC.L10N.register( "Edit color" : "Уреди бои", "Saving color …" : "Зачувување боја …", "Copy private link" : "Копирај приватен линк", + "Export" : "Извези", "Unshare from me" : "Не споделувај со мене", "An error occurred, unable to change visibility of the calendar." : "Настана грешка, неможе да се промени видливоста на календарот.", "An error occurred, unable to delete the calendar." : "Настана грешка, неможе да се избрише календарот.", @@ -80,6 +89,7 @@ OC.L10N.register( "Deleted" : "Избришани", "Restore" : "Врати", "Delete permanently" : "Избриши", + "Empty trash bin" : "Испразни ја корпата со отпадоци", "Could not update calendar order." : "Неможе да се ажурира редоследот на календарите.", "Import calendars" : "Увези календари", "Please select a calendar to import into …" : "Изберете календар за да направите увоз во него …", @@ -123,9 +133,20 @@ OC.L10N.register( "CalDAV link could not be copied to clipboard." : "CalDAV линкот неможе да биде копиран.", "Location" : "Локација", "Description" : "Опис", + "Duration" : "Времетраење", + "to" : "до", + "Delete slot" : "Избриши слот", + "Add" : "Додади", "Monday" : "Понеделник", + "Tuesday" : "Вторник", + "Wednesday" : "Среда", + "Thursday" : "Четврток", + "Friday" : "Петок", + "Saturday" : "Сабота", + "Sunday" : "Недела", "Save" : "Зачувај", "Update" : "Ажурирај", + "Your email address" : "Вашата адреса за е-пошта", "before at" : "пред", "Notification" : "Известување", "Email" : "Е-пошта", @@ -139,11 +160,13 @@ OC.L10N.register( "on" : "во", "at" : "во", "+ Add reminder" : "+ Додади потсетник", + "Add reminder" : "Додади потсетник", "_second_::_seconds_" : ["секунда","секунди"], "_minute_::_minutes_" : ["минута","минути"], "_hour_::_hours_" : ["час","часа"], "_day_::_days_" : ["ден","дена"], "_week_::_weeks_" : ["недела","недели"], + "Available" : "Достапно", "Availability of attendees, resources and rooms" : "Достапност на присутните, ресурси и соби", "{organizer} (organizer)" : "{organizer} (organizer)", "Free" : "Слободен", @@ -151,6 +174,8 @@ OC.L10N.register( "Busy" : "Зафатен", "Out of office" : "Надвор од канцеларија", "Unknown" : "Непознат", + "Accept" : "Прифати", + "Decline" : "Одбиј", "Tentative" : "Пробно", "Create Talk room for this event" : "Креирај соба за разговор за овој настан", "Show busy times" : "Прикажи ги зафатените термини", @@ -213,6 +238,7 @@ OC.L10N.register( "Please enter a valid date and time" : "Внесете валиден датум и време", "Type to search time zone" : "Пребарај временски зони", "Global" : "Глобално", + "Time:" : "Време:", "Personal" : "Лично", "The automatic time zone detection determined your time zone to be UTC.\nThis is most likely the result of security measures of your web browser.\nPlease set your time zone manually in the calendar settings." : "Автоматското откривање на временската зона утврди дека вашата временска зона е UTC.\nОва е најверојатно резултат на безбедносните мерки на вашиот веб прелистувач\nПоставете ја вашата временска зона во подесувањата за календарот.", "Your configured time zone ({timezoneId}) was not found. Falling back to UTC.\nPlease change your time zone in the settings and report this issue." : "Вашата временска зона ({timezoneId}) не е пронајдена. Поставена е (Координирано универзално време) UTC.\nПоставете ја вашата временска зона во подесувањата за календарот или пријавете го овој проблем.", @@ -291,6 +317,7 @@ OC.L10N.register( "Create a new event or change the visible time-range" : "Креирајте нов настан или променете го видливиот временски опсег", "It might have been deleted, or there was a typo in a link" : "Можеби е избришан или има грешка во врската", "It might have been deleted, or there was a typo in the link" : "Можеби е избришан или има грешка во врската", + "Other" : "Останато", "When shared show" : "Приказ кога е споделен", "When shared show full event" : "Кога е споделен, прикажи го целосно настанот", "When shared show only busy" : "Кога е споделен, прикажи зафатено", @@ -314,7 +341,10 @@ OC.L10N.register( "Meditation" : "Медитација", "Relaxing" : "Релаксирање", "Relax" : "Опуштање", + "Commuting" : "На пат", + "Invoice" : "Фактура", "Presentation" : "Презентација", + "Talk" : "Разговор", "Camping" : "Кампување", "Camp" : "Камп", "Movie" : "Филм", @@ -349,6 +379,7 @@ OC.L10N.register( "Doctor" : "Доктор", "Health" : "Здравје", "Dentist" : "Заболекар", + "Hospital" : "Болница", "Interview" : "Интервју", "Training" : "Тренинг", "Practice" : "Пракса", @@ -387,12 +418,14 @@ OC.L10N.register( "Party" : "Забава", "Celebration" : "Прослава", "Celebrate" : "Прослава", + "Birthday" : "Роденден", "Shopping" : "Купување", "Skate" : "Скејтбординг", "Skateboard" : "Скејтбординг", "Wine tasting" : "Дегустација на вино", "Golf" : "Голф", "Dinner" : "Вечера", - "Lunch" : "Ручек" + "Lunch" : "Ручек", + "User not found" : "Корисникот не е пронајден" }, "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"); diff --git a/l10n/mk.json b/l10n/mk.json index c2961638beff2b1cf1d915a55bfe627bffed2c22..95a3eec8edc05fb0200f29a38aa1b466da1715b8 100644 --- a/l10n/mk.json +++ b/l10n/mk.json @@ -9,6 +9,10 @@ "Open »%s«" : "Отвори »%s«", "Cheers!" : "Поздрав!", "Upcoming events" : "Престојни настани", + "Confirm" : "Потврди", + "Date:" : "Датум:", + "Where:" : "Каде: ", + "Description:" : "Опис:", "Calendar" : "Календар", "A Calendar app for Nextcloud" : "Календар апликација за Nextcloud", "Previous day" : "Предходен ден", @@ -17,11 +21,15 @@ "Next day" : "Следен ден", "Next week" : "Следна недела", "Next month" : "Следен месец", + "New event" : "Нов настан", "Today" : "Денес", "Day" : "Ден", "Week" : "Недела", "Month" : "Месец", "List" : "Лист", + "Preview" : "Преглед", + "Copy link" : "Копирај линк", + "Edit" : "Уреди", "Delete" : "Избриши", "Untitled calendar" : "Неименуван календар", "Edit name" : "Уреди име", @@ -29,6 +37,7 @@ "Edit color" : "Уреди бои", "Saving color …" : "Зачувување боја …", "Copy private link" : "Копирај приватен линк", + "Export" : "Извези", "Unshare from me" : "Не споделувај со мене", "An error occurred, unable to change visibility of the calendar." : "Настана грешка, неможе да се промени видливоста на календарот.", "An error occurred, unable to delete the calendar." : "Настана грешка, неможе да се избрише календарот.", @@ -78,6 +87,7 @@ "Deleted" : "Избришани", "Restore" : "Врати", "Delete permanently" : "Избриши", + "Empty trash bin" : "Испразни ја корпата со отпадоци", "Could not update calendar order." : "Неможе да се ажурира редоследот на календарите.", "Import calendars" : "Увези календари", "Please select a calendar to import into …" : "Изберете календар за да направите увоз во него …", @@ -121,9 +131,20 @@ "CalDAV link could not be copied to clipboard." : "CalDAV линкот неможе да биде копиран.", "Location" : "Локација", "Description" : "Опис", + "Duration" : "Времетраење", + "to" : "до", + "Delete slot" : "Избриши слот", + "Add" : "Додади", "Monday" : "Понеделник", + "Tuesday" : "Вторник", + "Wednesday" : "Среда", + "Thursday" : "Четврток", + "Friday" : "Петок", + "Saturday" : "Сабота", + "Sunday" : "Недела", "Save" : "Зачувај", "Update" : "Ажурирај", + "Your email address" : "Вашата адреса за е-пошта", "before at" : "пред", "Notification" : "Известување", "Email" : "Е-пошта", @@ -137,11 +158,13 @@ "on" : "во", "at" : "во", "+ Add reminder" : "+ Додади потсетник", + "Add reminder" : "Додади потсетник", "_second_::_seconds_" : ["секунда","секунди"], "_minute_::_minutes_" : ["минута","минути"], "_hour_::_hours_" : ["час","часа"], "_day_::_days_" : ["ден","дена"], "_week_::_weeks_" : ["недела","недели"], + "Available" : "Достапно", "Availability of attendees, resources and rooms" : "Достапност на присутните, ресурси и соби", "{organizer} (organizer)" : "{organizer} (organizer)", "Free" : "Слободен", @@ -149,6 +172,8 @@ "Busy" : "Зафатен", "Out of office" : "Надвор од канцеларија", "Unknown" : "Непознат", + "Accept" : "Прифати", + "Decline" : "Одбиј", "Tentative" : "Пробно", "Create Talk room for this event" : "Креирај соба за разговор за овој настан", "Show busy times" : "Прикажи ги зафатените термини", @@ -211,6 +236,7 @@ "Please enter a valid date and time" : "Внесете валиден датум и време", "Type to search time zone" : "Пребарај временски зони", "Global" : "Глобално", + "Time:" : "Време:", "Personal" : "Лично", "The automatic time zone detection determined your time zone to be UTC.\nThis is most likely the result of security measures of your web browser.\nPlease set your time zone manually in the calendar settings." : "Автоматското откривање на временската зона утврди дека вашата временска зона е UTC.\nОва е најверојатно резултат на безбедносните мерки на вашиот веб прелистувач\nПоставете ја вашата временска зона во подесувањата за календарот.", "Your configured time zone ({timezoneId}) was not found. Falling back to UTC.\nPlease change your time zone in the settings and report this issue." : "Вашата временска зона ({timezoneId}) не е пронајдена. Поставена е (Координирано универзално време) UTC.\nПоставете ја вашата временска зона во подесувањата за календарот или пријавете го овој проблем.", @@ -289,6 +315,7 @@ "Create a new event or change the visible time-range" : "Креирајте нов настан или променете го видливиот временски опсег", "It might have been deleted, or there was a typo in a link" : "Можеби е избришан или има грешка во врската", "It might have been deleted, or there was a typo in the link" : "Можеби е избришан или има грешка во врската", + "Other" : "Останато", "When shared show" : "Приказ кога е споделен", "When shared show full event" : "Кога е споделен, прикажи го целосно настанот", "When shared show only busy" : "Кога е споделен, прикажи зафатено", @@ -312,7 +339,10 @@ "Meditation" : "Медитација", "Relaxing" : "Релаксирање", "Relax" : "Опуштање", + "Commuting" : "На пат", + "Invoice" : "Фактура", "Presentation" : "Презентација", + "Talk" : "Разговор", "Camping" : "Кампување", "Camp" : "Камп", "Movie" : "Филм", @@ -347,6 +377,7 @@ "Doctor" : "Доктор", "Health" : "Здравје", "Dentist" : "Заболекар", + "Hospital" : "Болница", "Interview" : "Интервју", "Training" : "Тренинг", "Practice" : "Пракса", @@ -385,12 +416,14 @@ "Party" : "Забава", "Celebration" : "Прослава", "Celebrate" : "Прослава", + "Birthday" : "Роденден", "Shopping" : "Купување", "Skate" : "Скејтбординг", "Skateboard" : "Скејтбординг", "Wine tasting" : "Дегустација на вино", "Golf" : "Голф", "Dinner" : "Вечера", - "Lunch" : "Ручек" + "Lunch" : "Ручек", + "User not found" : "Корисникот не е пронајден" },"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;" } \ No newline at end of file diff --git a/l10n/mn.js b/l10n/mn.js index 966b8e01384f4a44d30ab0c15ff320c654260543..3e9fff2a25b420c36091eb6999186abf2db9ce7a 100644 --- a/l10n/mn.js +++ b/l10n/mn.js @@ -6,16 +6,26 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "%s хэрэглэгч нь »%s« календарийг нийтэлснийг үүгээр мэдэгдэе.", "Open »%s«" : "»%s« нээх", "Cheers!" : "Болж байна!", + "Confirm" : "Батлах", "Calendar" : "Календарь", + "New event" : "Шинэ үйл явдал", "Today" : "Өнөөдөр", "Day" : "Өдөр", "Week" : "Долоо хоног", "Month" : "Сар", + "Preview" : "шалгах", + "Copy link" : "Холбоос хуулах", + "Edit" : "засварлах", "Delete" : "Устгах", + "Export" : "Экспорт", "Share link" : "Холбоос хуваалцах", "Share with users or groups" : "Бусад хэрэглэгч, бүлэгт хуваалцах", "can edit" : "засаж чадна", "New calendar" : "Шинэ цагийн хуваарь", + "Name" : "Нэр", + "Deleted" : "Устгагдсан", + "Restore" : "Сэргээх", + "Delete permanently" : "бүр мөсөн устгах", "Filename" : "Файлын нэр", "Cancel" : "Цуцлах", "Actions" : "Үйл ажиллагаа", @@ -23,12 +33,23 @@ OC.L10N.register( "Settings & import" : "Тохиргоо, импорт", "Location" : "Байршил", "Description" : "Тодорхойлолт", + "to" : "Дуусах нь", + "Add" : "нэмэх", "Monday" : "даваа", + "Tuesday" : "мягмар", + "Wednesday" : "лхагва", + "Thursday" : "пүрэв", + "Friday" : "баасан", + "Saturday" : "бямба", + "Sunday" : "ням гариг", "Save" : "Хадгалах", "Update" : "Шинэчлэх", "Notification" : "Мэдэгдэл", "Email" : "Цахим шуудан", + "Available" : "Боломжтой", "Unknown" : "Үл танигдах зүйл", + "Accept" : "Хүлээн зөвшөөрөх", + "Decline" : "Зөвшөөрөхгүй", "Tentative" : "Урьдчилсан тов", "Repeat" : "Давтах", "never" : "хэзээ ч үгүй", @@ -42,12 +63,15 @@ OC.L10N.register( "Week {number} of {year}" : "{year} оны {number}-р долоо хоног ", "Daily" : "Өдөр бүр", "Weekly" : "Долоо хоног бүр", + "Next" : "дараагийх", + "Other" : "Бусад", "When shared show full event" : "Түгээсэн тохиолдолд үйл явдлыг бүтнээр нь харуул", "When shared show only busy" : "Түгээсэн тохиолдолд зөвхөн завгүй гэж харуул", "When shared hide this event" : "Түгээсэн тохиолдолд энэ үйл явдлыг нуу", "Status" : "төлөв", "Confirmed" : "Баталгаажсан", "Categories" : "төрөл", - "Mail" : "Цахим шуудан" + "Mail" : "Цахим шуудан", + "Birthday" : "Төрсөн өдөр" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/mn.json b/l10n/mn.json index f8be4a74400cb3100de619e66a3beba79243c034..120c919d396bf287ea53e5119adf83dbc10a1879 100644 --- a/l10n/mn.json +++ b/l10n/mn.json @@ -4,16 +4,26 @@ "We wanted to inform you that %s has published the calendar »%s«." : "%s хэрэглэгч нь »%s« календарийг нийтэлснийг үүгээр мэдэгдэе.", "Open »%s«" : "»%s« нээх", "Cheers!" : "Болж байна!", + "Confirm" : "Батлах", "Calendar" : "Календарь", + "New event" : "Шинэ үйл явдал", "Today" : "Өнөөдөр", "Day" : "Өдөр", "Week" : "Долоо хоног", "Month" : "Сар", + "Preview" : "шалгах", + "Copy link" : "Холбоос хуулах", + "Edit" : "засварлах", "Delete" : "Устгах", + "Export" : "Экспорт", "Share link" : "Холбоос хуваалцах", "Share with users or groups" : "Бусад хэрэглэгч, бүлэгт хуваалцах", "can edit" : "засаж чадна", "New calendar" : "Шинэ цагийн хуваарь", + "Name" : "Нэр", + "Deleted" : "Устгагдсан", + "Restore" : "Сэргээх", + "Delete permanently" : "бүр мөсөн устгах", "Filename" : "Файлын нэр", "Cancel" : "Цуцлах", "Actions" : "Үйл ажиллагаа", @@ -21,12 +31,23 @@ "Settings & import" : "Тохиргоо, импорт", "Location" : "Байршил", "Description" : "Тодорхойлолт", + "to" : "Дуусах нь", + "Add" : "нэмэх", "Monday" : "даваа", + "Tuesday" : "мягмар", + "Wednesday" : "лхагва", + "Thursday" : "пүрэв", + "Friday" : "баасан", + "Saturday" : "бямба", + "Sunday" : "ням гариг", "Save" : "Хадгалах", "Update" : "Шинэчлэх", "Notification" : "Мэдэгдэл", "Email" : "Цахим шуудан", + "Available" : "Боломжтой", "Unknown" : "Үл танигдах зүйл", + "Accept" : "Хүлээн зөвшөөрөх", + "Decline" : "Зөвшөөрөхгүй", "Tentative" : "Урьдчилсан тов", "Repeat" : "Давтах", "never" : "хэзээ ч үгүй", @@ -40,12 +61,15 @@ "Week {number} of {year}" : "{year} оны {number}-р долоо хоног ", "Daily" : "Өдөр бүр", "Weekly" : "Долоо хоног бүр", + "Next" : "дараагийх", + "Other" : "Бусад", "When shared show full event" : "Түгээсэн тохиолдолд үйл явдлыг бүтнээр нь харуул", "When shared show only busy" : "Түгээсэн тохиолдолд зөвхөн завгүй гэж харуул", "When shared hide this event" : "Түгээсэн тохиолдолд энэ үйл явдлыг нуу", "Status" : "төлөв", "Confirmed" : "Баталгаажсан", "Categories" : "төрөл", - "Mail" : "Цахим шуудан" + "Mail" : "Цахим шуудан", + "Birthday" : "Төрсөн өдөр" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/ms_MY.js b/l10n/ms_MY.js new file mode 100644 index 0000000000000000000000000000000000000000..fc551577048eb29667eafc2f8d2e2589f93a5172 --- /dev/null +++ b/l10n/ms_MY.js @@ -0,0 +1,47 @@ +OC.L10N.register( + "calendar", + { + "Calendar" : "Kalendar", + "Today" : "Hari ini", + "Day" : "Hari", + "Week" : "Minggu", + "Month" : "Bulan", + "Edit" : "Sunting", + "Delete" : "Padam", + "Export" : "Eksport", + "Share link" : "Share link", + "can edit" : "boleh mengubah", + "New calendar" : "Kalendar baru", + "Name" : "Nama", + "Deleted" : "Dipadam", + "Restore" : "Pulihkan", + "Cancel" : "Batal", + "Location" : "Lokasi", + "Description" : "Keterangan", + "to" : "kepada", + "Add" : "Tambah", + "Monday" : "Isnin", + "Tuesday" : "Selasa", + "Wednesday" : "Rabu", + "Thursday" : "Khamis", + "Friday" : "Jumaat", + "Saturday" : "Sabtu", + "Sunday" : "Ahad", + "Save" : "Simpan", + "Update" : "Kemaskini", + "Your email address" : "Alamat emel anda", + "Email" : "Email", + "Repeat" : "Ulang", + "never" : "jangan", + "More" : "Lanjutan", + "Personal" : "Peribadi", + "Attendees" : "Jemputan", + "Close" : "Tutup", + "Daily" : "Setiap hari", + "Weekly" : "Setiap minggu", + "Next" : "Seterus", + "Other" : "Lain", + "Mail" : "Mel", + "Birthday" : "Hari lahir" +}, +"nplurals=1; plural=0;"); diff --git a/l10n/ms_MY.json b/l10n/ms_MY.json new file mode 100644 index 0000000000000000000000000000000000000000..50bf8463659e8259bd41d44c8365e2f87014c742 --- /dev/null +++ b/l10n/ms_MY.json @@ -0,0 +1,45 @@ +{ "translations": { + "Calendar" : "Kalendar", + "Today" : "Hari ini", + "Day" : "Hari", + "Week" : "Minggu", + "Month" : "Bulan", + "Edit" : "Sunting", + "Delete" : "Padam", + "Export" : "Eksport", + "Share link" : "Share link", + "can edit" : "boleh mengubah", + "New calendar" : "Kalendar baru", + "Name" : "Nama", + "Deleted" : "Dipadam", + "Restore" : "Pulihkan", + "Cancel" : "Batal", + "Location" : "Lokasi", + "Description" : "Keterangan", + "to" : "kepada", + "Add" : "Tambah", + "Monday" : "Isnin", + "Tuesday" : "Selasa", + "Wednesday" : "Rabu", + "Thursday" : "Khamis", + "Friday" : "Jumaat", + "Saturday" : "Sabtu", + "Sunday" : "Ahad", + "Save" : "Simpan", + "Update" : "Kemaskini", + "Your email address" : "Alamat emel anda", + "Email" : "Email", + "Repeat" : "Ulang", + "never" : "jangan", + "More" : "Lanjutan", + "Personal" : "Peribadi", + "Attendees" : "Jemputan", + "Close" : "Tutup", + "Daily" : "Setiap hari", + "Weekly" : "Setiap minggu", + "Next" : "Seterus", + "Other" : "Lain", + "Mail" : "Mel", + "Birthday" : "Hari lahir" +},"pluralForm" :"nplurals=1; plural=0;" +} \ No newline at end of file diff --git a/l10n/nb.js b/l10n/nb.js index 4d812e6b72c2a82acf7b0be8ac29231650373a02..771924200fcc97e5300c5f42042e2bfc23a725b1 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -3,11 +3,27 @@ OC.L10N.register( { "Provided email-address is not valid" : "Oppgitt e-postadresse er ikke gyldig", "%s has published the calendar »%s«" : "%s har publisert kalenderen \"%s\"", + "Unexpected error sending email. Please contact your administrator." : "Det oppstod uventet feil under sending av e-post. Kontakt din administrator.", + "Successfully sent email to %1$s" : "Epost sendt til %1$s", "Hello," : "Hei,", "We wanted to inform you that %s has published the calendar »%s«." : "Vi ønsker å informere deg om at %s har publisert kalenderen \"%s\".", "Open »%s«" : "Åpne \"%s\"", "Cheers!" : "Ha det!", "Upcoming events" : "Kommende hendelser", + "Appointments" : "Avtaler", + "Schedule appointment \"%s\"" : "Registrer avtale \"%s\"", + "Schedule an appointment" : "Registrer en avtale", + "Prepare for %s" : "Forbered for %s", + "Follow up for %s" : "Følg opp for %s", + "Your appointment \"%s\" needs confirmation" : "Avtalen din \"%s\" trenger bekreftelse", + "Dear %s, please confirm your booking" : "Kjære %s, vennligst bekreft bookingen din", + "Confirm" : "Bekreft", + "This confirmation link expires in %s hours." : "Denne bekreftelseslinken utgår om %stimer.", + "If you wish to cancel the appointment after all, please contact your organizer." : "Hvis du ønsker å avlyse avtalen likevel, vennligst kontakt arrangøren din.", + "Appointment:" : "Avtale:", + "Date:" : "Dato:", + "Where:" : "Hvor:", + "Description:" : "Beskrivelse:", "Calendar" : "Kalender", "A Calendar app for Nextcloud" : "En kalender til Nextcloud", "Previous day" : "Forrige dag", @@ -16,18 +32,28 @@ OC.L10N.register( "Next day" : "Neste dag", "Next week" : "Neste uke", "Next month" : "Neste måned", + "New event" : "Ny hendelse", "Today" : "I dag", "Day" : "Dag", "Week" : "Uke", "Month" : "Måned", "List" : "Liste", + "Preview" : "Forhåndsvis", + "Copy link" : "Kopier lenke", + "Edit" : "Rediger", "Delete" : "Slett", + "Appointment link was copied to clipboard" : "Avtalelenke ble kopiert til utklippstavlen", + "Appointment link could not be copied to clipboard" : "Avtalelenken ble ikke kopiert til utklippstavlen", + "Add new" : "Legg til ny", "Untitled calendar" : "Kalender uten tittel", + "Disable calendar" : "Deaktiver kalender", + "Enable calendar" : "Aktiver kalender", "Edit name" : "Rediger navn", "Saving name …" : "Lagrer navn ...", "Edit color" : "Rediger farge", "Saving color …" : "Lagrer farge  ...", "Copy private link" : "Kopier privat lenke", + "Export" : "Eksporter", "Unshare from me" : "Fjern deling fra meg", "An error occurred, unable to change visibility of the calendar." : "En feil oppstod, kan ikke endre synlighet til kalenderen.", "An error occurred, unable to delete the calendar." : "En feil oppstod, kan ikke slette kalenderen. ", @@ -67,12 +93,26 @@ OC.L10N.register( "An error occurred, unable to change the permission of the share." : "En feil oppstod, kan ikke endre rettighetene til delingen.", "+ New calendar" : "+ Ny kalender", "New calendar" : "Ny kalender", + "Name for new calendar" : "Navn på ny kalender", "Creating calendar …" : "Oppretter kalender ...", "New calendar with task list" : "Ny kalender med oppgaveliste", "New subscription from link (read-only)" : "Nytt abonnement fra lenke (kun lesing)", "Creating subscription …" : "Oppretter abonnement ...", "An error occurred, unable to create the calendar." : "En feil oppstod, kunne ikke opprette kalenderen", "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "Vennligst angi gyldig lenke (starte med http://, https://, webcal://, eller webcals://)", + "Trash bin" : "Papirkurv", + "Loading deleted elements." : "Laster slettede elementer.", + "You do not have any deleted elements." : "Du har ingen slettede elementer.", + "Name" : "Navn", + "Deleted" : "Slettet", + "Restore" : "Gjenoprett", + "Delete permanently" : "Slett permament", + "Empty trash bin" : "Tøm papirkurv", + "Untitled element" : "Element uten tittel", + "Unknown calendar" : "Ukjent kalender", + "Could not load deleted calendars and objects" : "Kunne ikke laste slettede kalendere og objekter", + "Could not restore calendar or event" : "Kunne ikke gjenopprette kalender eller hendelse", + "Do you really want to empty the trash bin?" : "Vil du virkelig tømme papirkurven?", "Could not update calendar order." : "Kunne ikke oppdatere rekkefølgen på kalendrene.", "Import calendars" : "Importer kalendere", "Please select a calendar to import into …" : "Vennligst velg en kalender å importere til ...", @@ -96,6 +136,7 @@ OC.L10N.register( "Day view" : "Dagsvisning", "Week view" : "Ukesvisning", "Month view" : "Månedsvisning", + "List view" : "Listevisning", "Actions" : "Handlinger", "Create event" : "Opprettet hendelse", "Show shortcuts" : "Vis snarveier", @@ -113,9 +154,19 @@ OC.L10N.register( "CalDAV link could not be copied to clipboard." : "CalDAV-lenke kunne ikke bli kopiert til utklippstavlen.", "Location" : "Sted", "Description" : "Beskrivelse", + "Duration" : "Varighet", + "to" : "til", + "Add" : "Legg til", "Monday" : "Mandag", + "Tuesday" : "Tirsdag", + "Wednesday" : "Onsdag", + "Thursday" : "Torsdag", + "Friday" : "Fredag", + "Saturday" : "Lørdag", + "Sunday" : "Søndag", "Save" : "Lagre", "Update" : "Oppdater", + "Your email address" : "Din e-postadresse", "before at" : "før ved", "Notification" : "Varsel", "Email" : "E-post", @@ -129,23 +180,28 @@ OC.L10N.register( "on" : "på", "at" : "på", "+ Add reminder" : "+Legg til påminnelse", + "Add reminder" : "Legg til påminnelse", "_second_::_seconds_" : ["sekund","sekunder"], "_minute_::_minutes_" : ["minutt","minutter"], "_hour_::_hours_" : ["time","timer"], "_day_::_days_" : ["dag","dager"], "_week_::_weeks_" : ["uke","uker"], + "Available" : "Tilgjengelig", "Availability of attendees, resources and rooms" : "Tilgjengelighet til deltagere, ressurser og rom", "Free" : "Ledig", "Busy (tentative)" : "Opptatt (foreløpig)", "Busy" : "Opptatt", "Out of office" : "Fraværende", "Unknown" : "Ukjent", + "Accept" : "Aksepter", + "Decline" : "Avslå", "Tentative" : "Foreløpig", "Create Talk room for this event" : "Opprett Talk-rom for denne hendelsen", "Show busy times" : "Vis opptatte tider", "No attendees yet" : "Ingen deltagere enda", "Successfully appended link to talk room to description." : "La til lenke til Talk-rom til beskrivelsen.", "Error creating Talk room" : "Feil ved opprettelse av Talk-rom", + "Send email" : "Send e-post", "Chairperson" : "Ordstyrer", "Required participant" : "Påkrevd deltaker", "Optional participant" : "Ønsket deltaker", @@ -177,6 +233,7 @@ OC.L10N.register( "_year_::_years_" : ["år","år"], "weekday" : "ukedag", "weekend day" : "helg", + "available" : "tilgjengelig", "More" : "Mer", "Update this occurrence" : "Oppdater denne hendelsen", "Update this and all future" : "Oppdater denne og fremtidige hendelser", @@ -194,6 +251,7 @@ OC.L10N.register( "Please enter a valid date" : "Vennligst tast inn en gyldig dato", "Please enter a valid date and time" : "Vennligst tast inn en gyldig dato og tidspunkt", "Global" : "Global", + "Time:" : "Tid:", "Personal" : "Personlig", "No more events today" : "Ingen flere hendelser i dag", "Event does not exist" : "Avtalen finnes ikke", @@ -201,6 +259,7 @@ OC.L10N.register( "Delete this and all future" : "Slett denne og fremtidige hendelser", "Details" : "Detaljer", "Attendees" : "Deltakere", + "Resources" : "Ressurser", "Close" : "Lukk", "Show more details" : "Vis flere detaljer", "Subscribe to {name}" : "Abonner på {name}", @@ -226,7 +285,11 @@ OC.L10N.register( "Yearly" : "Årlig", "Untitled event" : "Hendelse uten tittel", "Untitled task" : "Oppgave uten tittel", + "Prev" : "Forrige", + "Next" : "Neste", + "Year" : "År", "No events" : "Ingen hendelser", + "Other" : "Annet", "When shared show" : "Når delt vis", "When shared show full event" : "Vis hele hendelsen når delt", "When shared show only busy" : "Vis kun opptatt når delt", @@ -246,7 +309,9 @@ OC.L10N.register( "Imported {filename}" : "Importerte {filename}", "Meditation" : "Meditasjon", "Relaxing" : "Avslapping", + "Commuting" : "Pendler", "Presentation" : "Presentasjon", + "Talk" : "Samtale", "Camping" : "Camping", "Movie" : "Film", "Cinema" : "Kino", @@ -274,6 +339,7 @@ OC.L10N.register( "Doctor" : "Doktor", "Health" : "Helse", "Dentist" : "Tannlege", + "Hospital" : "Sykehus", "Interview" : "Intervju", "Training" : "Trene", "Practice" : "Øve", @@ -308,12 +374,14 @@ OC.L10N.register( "Party" : "Fest", "Celebration" : "Feiring", "Celebrate" : "Feire", + "Birthday" : "Fødselsdag", "Shopping" : "Shoppe", "Skate" : "Skate", "Skateboard" : "Skatebrett", "Wine tasting" : "Vinsmaking", "Golf" : "Golf", "Dinner" : "Middag", - "Lunch" : "Lunsj" + "Lunch" : "Lunsj", + "User not found" : "Fant ikke brukeren" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/nb.json b/l10n/nb.json index ba76c826162e14a70a9cbbcc0865ba6cf4a71780..812a580122246521e650e37f8b5afa52b5586ac4 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -1,11 +1,27 @@ { "translations": { "Provided email-address is not valid" : "Oppgitt e-postadresse er ikke gyldig", "%s has published the calendar »%s«" : "%s har publisert kalenderen \"%s\"", + "Unexpected error sending email. Please contact your administrator." : "Det oppstod uventet feil under sending av e-post. Kontakt din administrator.", + "Successfully sent email to %1$s" : "Epost sendt til %1$s", "Hello," : "Hei,", "We wanted to inform you that %s has published the calendar »%s«." : "Vi ønsker å informere deg om at %s har publisert kalenderen \"%s\".", "Open »%s«" : "Åpne \"%s\"", "Cheers!" : "Ha det!", "Upcoming events" : "Kommende hendelser", + "Appointments" : "Avtaler", + "Schedule appointment \"%s\"" : "Registrer avtale \"%s\"", + "Schedule an appointment" : "Registrer en avtale", + "Prepare for %s" : "Forbered for %s", + "Follow up for %s" : "Følg opp for %s", + "Your appointment \"%s\" needs confirmation" : "Avtalen din \"%s\" trenger bekreftelse", + "Dear %s, please confirm your booking" : "Kjære %s, vennligst bekreft bookingen din", + "Confirm" : "Bekreft", + "This confirmation link expires in %s hours." : "Denne bekreftelseslinken utgår om %stimer.", + "If you wish to cancel the appointment after all, please contact your organizer." : "Hvis du ønsker å avlyse avtalen likevel, vennligst kontakt arrangøren din.", + "Appointment:" : "Avtale:", + "Date:" : "Dato:", + "Where:" : "Hvor:", + "Description:" : "Beskrivelse:", "Calendar" : "Kalender", "A Calendar app for Nextcloud" : "En kalender til Nextcloud", "Previous day" : "Forrige dag", @@ -14,18 +30,28 @@ "Next day" : "Neste dag", "Next week" : "Neste uke", "Next month" : "Neste måned", + "New event" : "Ny hendelse", "Today" : "I dag", "Day" : "Dag", "Week" : "Uke", "Month" : "Måned", "List" : "Liste", + "Preview" : "Forhåndsvis", + "Copy link" : "Kopier lenke", + "Edit" : "Rediger", "Delete" : "Slett", + "Appointment link was copied to clipboard" : "Avtalelenke ble kopiert til utklippstavlen", + "Appointment link could not be copied to clipboard" : "Avtalelenken ble ikke kopiert til utklippstavlen", + "Add new" : "Legg til ny", "Untitled calendar" : "Kalender uten tittel", + "Disable calendar" : "Deaktiver kalender", + "Enable calendar" : "Aktiver kalender", "Edit name" : "Rediger navn", "Saving name …" : "Lagrer navn ...", "Edit color" : "Rediger farge", "Saving color …" : "Lagrer farge  ...", "Copy private link" : "Kopier privat lenke", + "Export" : "Eksporter", "Unshare from me" : "Fjern deling fra meg", "An error occurred, unable to change visibility of the calendar." : "En feil oppstod, kan ikke endre synlighet til kalenderen.", "An error occurred, unable to delete the calendar." : "En feil oppstod, kan ikke slette kalenderen. ", @@ -65,12 +91,26 @@ "An error occurred, unable to change the permission of the share." : "En feil oppstod, kan ikke endre rettighetene til delingen.", "+ New calendar" : "+ Ny kalender", "New calendar" : "Ny kalender", + "Name for new calendar" : "Navn på ny kalender", "Creating calendar …" : "Oppretter kalender ...", "New calendar with task list" : "Ny kalender med oppgaveliste", "New subscription from link (read-only)" : "Nytt abonnement fra lenke (kun lesing)", "Creating subscription …" : "Oppretter abonnement ...", "An error occurred, unable to create the calendar." : "En feil oppstod, kunne ikke opprette kalenderen", "Please enter a valid link (starting with http://, https://, webcal://, or webcals://)" : "Vennligst angi gyldig lenke (starte med http://, https://, webcal://, eller webcals://)", + "Trash bin" : "Papirkurv", + "Loading deleted elements." : "Laster slettede elementer.", + "You do not have any deleted elements." : "Du har ingen slettede elementer.", + "Name" : "Navn", + "Deleted" : "Slettet", + "Restore" : "Gjenoprett", + "Delete permanently" : "Slett permament", + "Empty trash bin" : "Tøm papirkurv", + "Untitled element" : "Element uten tittel", + "Unknown calendar" : "Ukjent kalender", + "Could not load deleted calendars and objects" : "Kunne ikke laste slettede kalendere og objekter", + "Could not restore calendar or event" : "Kunne ikke gjenopprette kalender eller hendelse", + "Do you really want to empty the trash bin?" : "Vil du virkelig tømme papirkurven?", "Could not update calendar order." : "Kunne ikke oppdatere rekkefølgen på kalendrene.", "Import calendars" : "Importer kalendere", "Please select a calendar to import into …" : "Vennligst velg en kalender å importere til ...", @@ -94,6 +134,7 @@ "Day view" : "Dagsvisning", "Week view" : "Ukesvisning", "Month view" : "Månedsvisning", + "List view" : "Listevisning", "Actions" : "Handlinger", "Create event" : "Opprettet hendelse", "Show shortcuts" : "Vis snarveier", @@ -111,9 +152,19 @@ "CalDAV link could not be copied to clipboard." : "CalDAV-lenke kunne ikke bli kopiert til utklippstavlen.", "Location" : "Sted", "Description" : "Beskrivelse", + "Duration" : "Varighet", + "to" : "til", + "Add" : "Legg til", "Monday" : "Mandag", + "Tuesday" : "Tirsdag", + "Wednesday" : "Onsdag", + "Thursday" : "Torsdag", + "Friday" : "Fredag", + "Saturday" : "Lørdag", + "Sunday" : "Søndag", "Save" : "Lagre", "Update" : "Oppdater", + "Your email address" : "Din e-postadresse", "before at" : "før ved", "Notification" : "Varsel", "Email" : "E-post", @@ -127,23 +178,28 @@ "on" : "på", "at" : "på", "+ Add reminder" : "+Legg til påminnelse", + "Add reminder" : "Legg til påminnelse", "_second_::_seconds_" : ["sekund","sekunder"], "_minute_::_minutes_" : ["minutt","minutter"], "_hour_::_hours_" : ["time","timer"], "_day_::_days_" : ["dag","dager"], "_week_::_weeks_" : ["uke","uker"], + "Available" : "Tilgjengelig", "Availability of attendees, resources and rooms" : "Tilgjengelighet til deltagere, ressurser og rom", "Free" : "Ledig", "Busy (tentative)" : "Opptatt (foreløpig)", "Busy" : "Opptatt", "Out of office" : "Fraværende", "Unknown" : "Ukjent", + "Accept" : "Aksepter", + "Decline" : "Avslå", "Tentative" : "Foreløpig", "Create Talk room for this event" : "Opprett Talk-rom for denne hendelsen", "Show busy times" : "Vis opptatte tider", "No attendees yet" : "Ingen deltagere enda", "Successfully appended link to talk room to description." : "La til lenke til Talk-rom til beskrivelsen.", "Error creating Talk room" : "Feil ved opprettelse av Talk-rom", + "Send email" : "Send e-post", "Chairperson" : "Ordstyrer", "Required participant" : "Påkrevd deltaker", "Optional participant" : "Ønsket deltaker", @@ -175,6 +231,7 @@ "_year_::_years_" : ["år","år"], "weekday" : "ukedag", "weekend day" : "helg", + "available" : "tilgjengelig", "More" : "Mer", "Update this occurrence" : "Oppdater denne hendelsen", "Update this and all future" : "Oppdater denne og fremtidige hendelser", @@ -192,6 +249,7 @@ "Please enter a valid date" : "Vennligst tast inn en gyldig dato", "Please enter a valid date and time" : "Vennligst tast inn en gyldig dato og tidspunkt", "Global" : "Global", + "Time:" : "Tid:", "Personal" : "Personlig", "No more events today" : "Ingen flere hendelser i dag", "Event does not exist" : "Avtalen finnes ikke", @@ -199,6 +257,7 @@ "Delete this and all future" : "Slett denne og fremtidige hendelser", "Details" : "Detaljer", "Attendees" : "Deltakere", + "Resources" : "Ressurser", "Close" : "Lukk", "Show more details" : "Vis flere detaljer", "Subscribe to {name}" : "Abonner på {name}", @@ -224,7 +283,11 @@ "Yearly" : "Årlig", "Untitled event" : "Hendelse uten tittel", "Untitled task" : "Oppgave uten tittel", + "Prev" : "Forrige", + "Next" : "Neste", + "Year" : "År", "No events" : "Ingen hendelser", + "Other" : "Annet", "When shared show" : "Når delt vis", "When shared show full event" : "Vis hele hendelsen når delt", "When shared show only busy" : "Vis kun opptatt når delt", @@ -244,7 +307,9 @@ "Imported {filename}" : "Importerte {filename}", "Meditation" : "Meditasjon", "Relaxing" : "Avslapping", + "Commuting" : "Pendler", "Presentation" : "Presentasjon", + "Talk" : "Samtale", "Camping" : "Camping", "Movie" : "Film", "Cinema" : "Kino", @@ -272,6 +337,7 @@ "Doctor" : "Doktor", "Health" : "Helse", "Dentist" : "Tannlege", + "Hospital" : "Sykehus", "Interview" : "Intervju", "Training" : "Trene", "Practice" : "Øve", @@ -306,12 +372,14 @@ "Party" : "Fest", "Celebration" : "Feiring", "Celebrate" : "Feire", + "Birthday" : "Fødselsdag", "Shopping" : "Shoppe", "Skate" : "Skate", "Skateboard" : "Skatebrett", "Wine tasting" : "Vinsmaking", "Golf" : "Golf", "Dinner" : "Middag", - "Lunch" : "Lunsj" + "Lunch" : "Lunsj", + "User not found" : "Fant ikke brukeren" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/nl.js b/l10n/nl.js index 057bdc61f7872cde6727e1e6da79fee5486bceb6..ce48ef1a7304d030c83429a746bb15ff7f857602 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -34,6 +34,7 @@ OC.L10N.register( "Next day" : "Volgende dag", "Next week" : "Volgende week", "Next month" : "Volgende maand", + "New event" : "Nieuwe afspraak", "Today" : "Vandaag", "Day" : "Dag", "Week" : "Week", @@ -47,11 +48,14 @@ OC.L10N.register( "Appointment link could not be copied to clipboard" : "Afspraaklink kon niet naar klembord gekopieerd worden", "Add new" : "Nieuwe toevoegen", "Untitled calendar" : "Naamloze calender", + "Disable calendar" : "Kalender uitschakelen", + "Enable calendar" : "Kalender inschakelen", "Edit name" : "Naam bewerken", "Saving name …" : "Opslaan naam ...", "Edit color" : "Kleur bewerken", "Saving color …" : "Opslaan kleur ...", "Copy private link" : "Privélink kopiëren", + "Export" : "Exporteren", "Unshare from me" : "Stop delen met mij", "An error occurred, unable to change visibility of the calendar." : "Er is een fout opgetreden waardoor de zichtbaarheid van de agenda niet kan worden gewijzigd.", "An error occurred, unable to delete the calendar." : "Er is een fout opgetreden waardoor de agenda niet kan worden verwijderd.", @@ -91,6 +95,7 @@ OC.L10N.register( "An error occurred, unable to change the permission of the share." : "Er is een fout opgetreden, het is niet mogelijk om de machtiging van de share te wijzigen", "+ New calendar" : "+ Nieuwe agenda", "New calendar" : "Nieuwe agenda", + "Name for new calendar" : "Naam van nieuwe kalender", "Creating calendar …" : "Creëren agenda ...", "New calendar with task list" : "Nieuwe agenda met taak lijst", "New subscription from link (read-only)" : "Nieuw abonnement via link (alleen lezen)", @@ -106,6 +111,7 @@ OC.L10N.register( "Delete permanently" : "Definitief verwijderen", "Empty trash bin" : "Leeg de prullenbak", "Untitled element" : "Element zonder titel", + "Unknown calendar" : "Onbekende kalender", "Could not load deleted calendars and objects" : "Kon de verwijderde agenda en objecten niet herstellen", "Could not restore calendar or event" : "Kon de agenda en objecten niet herstellen", "Do you really want to empty the trash bin?" : "Wil je de prullenbak echt leegmaken?", @@ -157,6 +163,11 @@ OC.L10N.register( "Appointment was updated successfully" : "Afspraak succesvol geüpdatet", "_{duration} minute_::_{duration} minutes_" : ["{duration} minuut","{duration} minuten"], "0 minutes" : "0 minuten", + "_{duration} hour_::_{duration} hours_" : ["{duration} uur","{duration} uur"], + "_{duration} day_::_{duration} days_" : ["{duration} dag","{duration} dagen"], + "_{duration} week_::_{duration} weeks_" : ["{duration} week","{duration} weken"], + "_{duration} month_::_{duration} months_" : ["{duration} maand","{duration} maanden"], + "_{duration} year_::_{duration} years_" : ["{duration} jaar","{duration} jaar"], "To configure appointments, add your email address in personal settings." : "Om afspraken te configureren, voeg je e-mailadres toe in persoonlijke instellingen.", "Public – shown on the profile page" : "Openbaar – zichtbaar op de profielpagina", "Private – only accessible via secret link" : "Privé – alleen toegankelijk via geheime link", @@ -188,7 +199,6 @@ OC.L10N.register( "Edit appointment" : "Bewerk afspraak", "Save" : "Opslaan", "Update" : "Bijwerken", - "Your appointment is booked" : "Je afspraak is geboekt", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "We hebben je een e-mail met details verzonden. Bevestig je afspraak met de link in de e-mail. Je kunt deze pagina sluiten.", "Your name" : "Je naam", "Your email address" : "Je e-mailadres", @@ -215,7 +225,13 @@ OC.L10N.register( "_hour_::_hours_" : ["uur","uren"], "_day_::_days_" : ["dag","dagen"], "_week_::_weeks_" : ["week","weken"], + "Suggested" : "Aanbevolen", "Available" : "Beschikbaar", + "Not available" : "Niet beschikbaar", + "Checking availability" : "Beschikbaarheid controleren", + "Invitation accepted" : "Uitnodiging geaccepteerd", + "Invitation declined" : "Uitnodiging geweigerd", + "Invitation sent" : "Uitnodiging verstuurd", "Availability of attendees, resources and rooms" : "Beschikbaarheid van aanwezigen, objecten en ruimtes", "{organizer} (organizer)" : "{organizer} (organizer)", "Free" : "Vrij", @@ -223,7 +239,11 @@ OC.L10N.register( "Busy" : "Bezet", "Out of office" : "Niet op kantoor", "Unknown" : "Onbekend", + "Accept" : "Accepteren", + "Decline" : "Afwijzen", "Tentative" : "Voorlopig", + "The invitation has been accepted successfully." : "De uitnodiging is succesvol geaccepteerd.", + "The invitation has been declined successfully." : "De uitnodiging is succesvol geweigerd.", "Create Talk room for this event" : "Creëer Talk-ruimte voor deze afspraak", "Show busy times" : "Toon drukke tijden", "No attendees yet" : "Nog geen deelnemers", @@ -339,6 +359,7 @@ OC.L10N.register( "Close" : "Sluiten", "Show more details" : "Toon meer details", "Subscribe to {name}" : "Abonneren op {name}", + "Export {name}" : "Exporteer {name}", "Anniversary" : "Verjaardag", "Appointment" : "Afspraak", "Business" : "Zakelijk", @@ -426,20 +447,31 @@ OC.L10N.register( "Meditation" : "Meditatie", "Relaxing" : "Relaxen", "Relax" : "Relax", + "Break" : "Pauze", + "Commuting" : "Woon-werk", "Shuttle" : "Shuttle", + "Invoice" : "Factuur", + "Finance" : "Financieel", "Bank" : "Bank", + "Money" : "Geld", + "Wedding" : "Bruiloft", + "Dog" : "Hond", "Concert" : "Concert", "Festival" : "Festival", "Theater" : "Theater", "Presentation" : "Presentatie", + "Talk" : "Talk", "Camping" : "Camping", "Camp" : "Kamp", + "Garden" : "Tuin", + "Farm" : "Boerderij", "Movie" : "Film", "Cinema" : "Bioscoop", "Graduation" : "Uitreiking", "Brainstorm" : "Brainstorm", "Review" : "Voorbeeld", "Audit" : "Audit", + "Inspection" : "Inspectie", "Baseball" : "Baseball", "Meet" : "Afspraak", "Planning" : "Planning", @@ -452,8 +484,10 @@ OC.L10N.register( "Football" : "Voetballen", "Gaming" : "Gaming", "Drive" : "Rijdend", + "Driving" : "Rijden", "Bicycle" : "Fiets", "Cycle" : "Fietsen", + "Cycling" : "Fietsen", "Biking" : "Fietsen", "Bike" : "Fiets", "Podcast" : "Podcast", @@ -466,10 +500,12 @@ OC.L10N.register( "Museum" : "Museum", "Pilates" : "Pilates", "Park" : "Park", + "Walk" : "Wandelen", "Studying" : "Studeren", "Doctor" : "Dokter", "Health" : "Gezondheid", "Dentist" : "Tandarts", + "Hospital" : "Ziekenhuis", "Interview" : "Interview", "Training" : "Training", "Practice" : "Praktijk", @@ -501,6 +537,7 @@ OC.L10N.register( "Conference" : "Conferentie", "Pizza" : "Pizza", "Travelling" : "Reizen", + "Trip" : "Reis", "Journey" : "Reis", "Collaborate" : "Samenwerken", "Pair" : "Paar", @@ -510,7 +547,9 @@ OC.L10N.register( "Party" : "Party", "Celebration" : "Viering", "Celebrate" : "Vieren", + "Birthday" : "Verjaardag", "Shopping" : "Winkelen", + "Groceries" : "Boodschappen", "Skate" : "Skate", "Skateboard" : "Skateboard", "Wine tasting" : "Wijnproeverij", diff --git a/l10n/nl.json b/l10n/nl.json index eb8670a2e900eb3ce8ce10d5b0d0c42c0f30523a..7f31ec5dc8380574fb7ae157256c3425b5025136 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -32,6 +32,7 @@ "Next day" : "Volgende dag", "Next week" : "Volgende week", "Next month" : "Volgende maand", + "New event" : "Nieuwe afspraak", "Today" : "Vandaag", "Day" : "Dag", "Week" : "Week", @@ -45,11 +46,14 @@ "Appointment link could not be copied to clipboard" : "Afspraaklink kon niet naar klembord gekopieerd worden", "Add new" : "Nieuwe toevoegen", "Untitled calendar" : "Naamloze calender", + "Disable calendar" : "Kalender uitschakelen", + "Enable calendar" : "Kalender inschakelen", "Edit name" : "Naam bewerken", "Saving name …" : "Opslaan naam ...", "Edit color" : "Kleur bewerken", "Saving color …" : "Opslaan kleur ...", "Copy private link" : "Privélink kopiëren", + "Export" : "Exporteren", "Unshare from me" : "Stop delen met mij", "An error occurred, unable to change visibility of the calendar." : "Er is een fout opgetreden waardoor de zichtbaarheid van de agenda niet kan worden gewijzigd.", "An error occurred, unable to delete the calendar." : "Er is een fout opgetreden waardoor de agenda niet kan worden verwijderd.", @@ -89,6 +93,7 @@ "An error occurred, unable to change the permission of the share." : "Er is een fout opgetreden, het is niet mogelijk om de machtiging van de share te wijzigen", "+ New calendar" : "+ Nieuwe agenda", "New calendar" : "Nieuwe agenda", + "Name for new calendar" : "Naam van nieuwe kalender", "Creating calendar …" : "Creëren agenda ...", "New calendar with task list" : "Nieuwe agenda met taak lijst", "New subscription from link (read-only)" : "Nieuw abonnement via link (alleen lezen)", @@ -104,6 +109,7 @@ "Delete permanently" : "Definitief verwijderen", "Empty trash bin" : "Leeg de prullenbak", "Untitled element" : "Element zonder titel", + "Unknown calendar" : "Onbekende kalender", "Could not load deleted calendars and objects" : "Kon de verwijderde agenda en objecten niet herstellen", "Could not restore calendar or event" : "Kon de agenda en objecten niet herstellen", "Do you really want to empty the trash bin?" : "Wil je de prullenbak echt leegmaken?", @@ -155,6 +161,11 @@ "Appointment was updated successfully" : "Afspraak succesvol geüpdatet", "_{duration} minute_::_{duration} minutes_" : ["{duration} minuut","{duration} minuten"], "0 minutes" : "0 minuten", + "_{duration} hour_::_{duration} hours_" : ["{duration} uur","{duration} uur"], + "_{duration} day_::_{duration} days_" : ["{duration} dag","{duration} dagen"], + "_{duration} week_::_{duration} weeks_" : ["{duration} week","{duration} weken"], + "_{duration} month_::_{duration} months_" : ["{duration} maand","{duration} maanden"], + "_{duration} year_::_{duration} years_" : ["{duration} jaar","{duration} jaar"], "To configure appointments, add your email address in personal settings." : "Om afspraken te configureren, voeg je e-mailadres toe in persoonlijke instellingen.", "Public – shown on the profile page" : "Openbaar – zichtbaar op de profielpagina", "Private – only accessible via secret link" : "Privé – alleen toegankelijk via geheime link", @@ -186,7 +197,6 @@ "Edit appointment" : "Bewerk afspraak", "Save" : "Opslaan", "Update" : "Bijwerken", - "Your appointment is booked" : "Je afspraak is geboekt", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "We hebben je een e-mail met details verzonden. Bevestig je afspraak met de link in de e-mail. Je kunt deze pagina sluiten.", "Your name" : "Je naam", "Your email address" : "Je e-mailadres", @@ -213,7 +223,13 @@ "_hour_::_hours_" : ["uur","uren"], "_day_::_days_" : ["dag","dagen"], "_week_::_weeks_" : ["week","weken"], + "Suggested" : "Aanbevolen", "Available" : "Beschikbaar", + "Not available" : "Niet beschikbaar", + "Checking availability" : "Beschikbaarheid controleren", + "Invitation accepted" : "Uitnodiging geaccepteerd", + "Invitation declined" : "Uitnodiging geweigerd", + "Invitation sent" : "Uitnodiging verstuurd", "Availability of attendees, resources and rooms" : "Beschikbaarheid van aanwezigen, objecten en ruimtes", "{organizer} (organizer)" : "{organizer} (organizer)", "Free" : "Vrij", @@ -221,7 +237,11 @@ "Busy" : "Bezet", "Out of office" : "Niet op kantoor", "Unknown" : "Onbekend", + "Accept" : "Accepteren", + "Decline" : "Afwijzen", "Tentative" : "Voorlopig", + "The invitation has been accepted successfully." : "De uitnodiging is succesvol geaccepteerd.", + "The invitation has been declined successfully." : "De uitnodiging is succesvol geweigerd.", "Create Talk room for this event" : "Creëer Talk-ruimte voor deze afspraak", "Show busy times" : "Toon drukke tijden", "No attendees yet" : "Nog geen deelnemers", @@ -337,6 +357,7 @@ "Close" : "Sluiten", "Show more details" : "Toon meer details", "Subscribe to {name}" : "Abonneren op {name}", + "Export {name}" : "Exporteer {name}", "Anniversary" : "Verjaardag", "Appointment" : "Afspraak", "Business" : "Zakelijk", @@ -424,20 +445,31 @@ "Meditation" : "Meditatie", "Relaxing" : "Relaxen", "Relax" : "Relax", + "Break" : "Pauze", + "Commuting" : "Woon-werk", "Shuttle" : "Shuttle", + "Invoice" : "Factuur", + "Finance" : "Financieel", "Bank" : "Bank", + "Money" : "Geld", + "Wedding" : "Bruiloft", + "Dog" : "Hond", "Concert" : "Concert", "Festival" : "Festival", "Theater" : "Theater", "Presentation" : "Presentatie", + "Talk" : "Talk", "Camping" : "Camping", "Camp" : "Kamp", + "Garden" : "Tuin", + "Farm" : "Boerderij", "Movie" : "Film", "Cinema" : "Bioscoop", "Graduation" : "Uitreiking", "Brainstorm" : "Brainstorm", "Review" : "Voorbeeld", "Audit" : "Audit", + "Inspection" : "Inspectie", "Baseball" : "Baseball", "Meet" : "Afspraak", "Planning" : "Planning", @@ -450,8 +482,10 @@ "Football" : "Voetballen", "Gaming" : "Gaming", "Drive" : "Rijdend", + "Driving" : "Rijden", "Bicycle" : "Fiets", "Cycle" : "Fietsen", + "Cycling" : "Fietsen", "Biking" : "Fietsen", "Bike" : "Fiets", "Podcast" : "Podcast", @@ -464,10 +498,12 @@ "Museum" : "Museum", "Pilates" : "Pilates", "Park" : "Park", + "Walk" : "Wandelen", "Studying" : "Studeren", "Doctor" : "Dokter", "Health" : "Gezondheid", "Dentist" : "Tandarts", + "Hospital" : "Ziekenhuis", "Interview" : "Interview", "Training" : "Training", "Practice" : "Praktijk", @@ -499,6 +535,7 @@ "Conference" : "Conferentie", "Pizza" : "Pizza", "Travelling" : "Reizen", + "Trip" : "Reis", "Journey" : "Reis", "Collaborate" : "Samenwerken", "Pair" : "Paar", @@ -508,7 +545,9 @@ "Party" : "Party", "Celebration" : "Viering", "Celebrate" : "Vieren", + "Birthday" : "Verjaardag", "Shopping" : "Winkelen", + "Groceries" : "Boodschappen", "Skate" : "Skate", "Skateboard" : "Skateboard", "Wine tasting" : "Wijnproeverij", diff --git a/l10n/nn_NO.js b/l10n/nn_NO.js index eef04991a35cd27e5e898a46bdcb7adfc17536d9..87e2105aa0db6aef345aae40850b9e4e70d003b4 100644 --- a/l10n/nn_NO.js +++ b/l10n/nn_NO.js @@ -6,28 +6,50 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Me vil sei ifrå om at %shar lagt ut kalenderen »%s«.", "Open »%s«" : "Opna »%s«", "Cheers!" : "Tudelu!", + "Prepare for %s" : "Klargjer for %s", "Calendar" : "Kalender", + "New event" : "Ny hending", "Today" : "I dag", "Day" : "Dag", "Week" : "Veke", "Month" : "Månad", + "Edit" : "Rediger", "Delete" : "Slett", + "Export" : "Eksporter", "Share link" : "Del lenkje", "can edit" : "kan endra", "New calendar" : "Ny kalender", + "Name" : "Namn", + "Deleted" : "Sletta", + "Restore" : "Gjenopprett", + "Delete permanently" : "Slett for godt", + "Empty trash bin" : "Tøm søppel korg", "Cancel" : "Avbryt", + "List view" : "Liste visning", "Actions" : "Handlingar", "Location" : "Stad", "Description" : "Skildring", + "to" : "til", + "Add" : "Legg til", "Monday" : "Måndag", + "Tuesday" : "Tysdag", + "Wednesday" : "Onsdag", + "Thursday" : "Torsdag", + "Friday" : "Fredag", + "Saturday" : "Laurdag", + "Sunday" : "Søndag", "Save" : "Lagre", "Update" : "Oppdater", + "Your email address" : "Di epost-adresse", "Email" : "E-post", "Unknown" : "Ukjend", "Tentative" : "Førebels", + "Send email" : "Send e-post", "Repeat" : "Gjenta", "never" : "aldri", "after" : "etter", + "last" : "siste", + "Room type" : "Romtype", "More" : "Meir", "Global" : "Global", "Personal" : "Personleg", @@ -36,11 +58,17 @@ OC.L10N.register( "Close" : "Lukk", "Daily" : "Kvar dag", "Weekly" : "Kvar veke", + "Next" : "Neste", + "Year" : "År", + "Meeting room" : "Møterom", + "Other" : "Anna", "When shared show full event" : "Når delt, vis heile hendinga", "When shared show only busy" : "Når delt, vis berre oppteken", "When shared hide this event" : "Når delt, gøym denne hendinga", "Status" : "Status", "Confirmed" : "Stadfesta", - "Mail" : "Post" + "Talk" : "Prat", + "Mail" : "Post", + "Birthday" : "Bursdag" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/nn_NO.json b/l10n/nn_NO.json index de81d474f7d307dcd1ccff03cef02be829228094..c18f0924829346d27c0bdabbdcceeb2b89ab713a 100644 --- a/l10n/nn_NO.json +++ b/l10n/nn_NO.json @@ -4,28 +4,50 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Me vil sei ifrå om at %shar lagt ut kalenderen »%s«.", "Open »%s«" : "Opna »%s«", "Cheers!" : "Tudelu!", + "Prepare for %s" : "Klargjer for %s", "Calendar" : "Kalender", + "New event" : "Ny hending", "Today" : "I dag", "Day" : "Dag", "Week" : "Veke", "Month" : "Månad", + "Edit" : "Rediger", "Delete" : "Slett", + "Export" : "Eksporter", "Share link" : "Del lenkje", "can edit" : "kan endra", "New calendar" : "Ny kalender", + "Name" : "Namn", + "Deleted" : "Sletta", + "Restore" : "Gjenopprett", + "Delete permanently" : "Slett for godt", + "Empty trash bin" : "Tøm søppel korg", "Cancel" : "Avbryt", + "List view" : "Liste visning", "Actions" : "Handlingar", "Location" : "Stad", "Description" : "Skildring", + "to" : "til", + "Add" : "Legg til", "Monday" : "Måndag", + "Tuesday" : "Tysdag", + "Wednesday" : "Onsdag", + "Thursday" : "Torsdag", + "Friday" : "Fredag", + "Saturday" : "Laurdag", + "Sunday" : "Søndag", "Save" : "Lagre", "Update" : "Oppdater", + "Your email address" : "Di epost-adresse", "Email" : "E-post", "Unknown" : "Ukjend", "Tentative" : "Førebels", + "Send email" : "Send e-post", "Repeat" : "Gjenta", "never" : "aldri", "after" : "etter", + "last" : "siste", + "Room type" : "Romtype", "More" : "Meir", "Global" : "Global", "Personal" : "Personleg", @@ -34,11 +56,17 @@ "Close" : "Lukk", "Daily" : "Kvar dag", "Weekly" : "Kvar veke", + "Next" : "Neste", + "Year" : "År", + "Meeting room" : "Møterom", + "Other" : "Anna", "When shared show full event" : "Når delt, vis heile hendinga", "When shared show only busy" : "Når delt, vis berre oppteken", "When shared hide this event" : "Når delt, gøym denne hendinga", "Status" : "Status", "Confirmed" : "Stadfesta", - "Mail" : "Post" + "Talk" : "Prat", + "Mail" : "Post", + "Birthday" : "Bursdag" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/oc.js b/l10n/oc.js index 372c6fff2351ec7a262b2c861307a28b49a216ae..e2bb9214e1b0236f828a0e8349742d6e20cdaf3c 100644 --- a/l10n/oc.js +++ b/l10n/oc.js @@ -5,6 +5,9 @@ OC.L10N.register( "Open »%s«" : "Dobrir « %s »", "Cheers!" : "A lèu !", "Upcoming events" : "Eveniments venents", + "Confirm" : "Confirmar", + "Date:" : "Data :", + "Where:" : "Ont :", "Description:" : "Descripcion :", "Calendar" : "Calendièr", "A Calendar app for Nextcloud" : "Una aplicacion de calendièr per Nextcloud", @@ -20,6 +23,7 @@ OC.L10N.register( "Month" : "Mes", "List" : "Tièra", "Preview" : "Apercebut", + "Copy link" : "Copiar lo ligam", "Edit" : "Modificar", "Delete" : "Suprimir", "Untitled calendar" : "Calendièr sens nom", @@ -28,6 +32,7 @@ OC.L10N.register( "Edit color" : "Modificar la color", "Saving color …" : "Enregistrament de la color …", "Copy private link" : "Copiar lo ligam privat", + "Export" : "Exportar", "Share link" : "Partejar lo ligam", "Publish calendar" : "Publicar lo calendièr", "Copy public link" : "Copiar lo ligam public", @@ -37,6 +42,10 @@ OC.L10N.register( "can edit" : "pòt modificar", "+ New calendar" : "+ Calendièr novèl", "New calendar" : "Calendièr novèl", + "Name" : "Nom", + "Deleted" : "Suprimit", + "Restore" : "Restaurar", + "Delete permanently" : "Suprimir definitivament", "Import calendars" : "Importar de calendièrs", "Filename" : "Nom de fichièr", "Cancel" : "Anullar", @@ -55,6 +64,8 @@ OC.L10N.register( "Description" : "Descripcion", "Visibility" : "Visibilitat", "Duration" : "Durada", + "to" : "a", + "Add" : "Apondre", "Monday" : "diluns", "Tuesday" : "Dimars", "Wednesday" : "Dimècres", @@ -65,6 +76,7 @@ OC.L10N.register( "Save" : "Salvar", "Update" : "Metre a jorn", "Your name" : "Vòstre nom", + "Your email address" : "Vòstra adreça electronica", "Reminder" : "Recòrd", "Notification" : "Notificacion", "Email" : "Adreça corrièl", @@ -80,9 +92,12 @@ OC.L10N.register( "_hour_::_hours_" : ["ora","oras"], "_day_::_days_" : ["jorn","jorns"], "_week_::_weeks_" : ["setmana","setmanas"], + "Available" : "Disponible", "Busy" : "Ocupat", "Unknown" : "Desconegut", + "Accept" : "Acceptar", "Tentative" : "Provisòri", + "Send email" : "Enviar email", "All day" : "Tota la jornada", "Repeat" : "Repetir", "never" : "pas jamai", @@ -131,6 +146,9 @@ OC.L10N.register( "_%n time_::_%n times_" : ["%n còp","%n còps"], "Untitled event" : "Eveniment sens nom", "Untitled task" : "Prètzfach sens nom", + "Next" : "Seguent", + "Year" : "Annada", + "Other" : "Autre", "Add a location" : "Apondre un lòc", "Add a description" : "Apondre una descripcion", "Status" : "Estat", @@ -138,7 +156,9 @@ OC.L10N.register( "Canceled" : "Anullat", "Categories" : "Categorias", "Custom color" : "Color personalizada", + "Commuting" : "En comunicacion", "Presentation" : "Presentacion", + "Talk" : "Talk", "Movie" : "Film", "Cinema" : "Cinèma", "Mail" : "Mail", @@ -161,6 +181,8 @@ OC.L10N.register( "Pizza" : "Pizza", "Travelling" : "Viatge", "Party" : "Fèsta", - "Shopping" : "Crompas" + "Birthday" : "Data de naissença", + "Shopping" : "Crompas", + "User not found" : "Utilizaire pas trobat" }, "nplurals=2; plural=(n > 1);"); diff --git a/l10n/oc.json b/l10n/oc.json index 9e2f63c2e0891c598d809bed2f3042db3c6da74c..f397a17cb1a835b22db913168378e020ef04c824 100644 --- a/l10n/oc.json +++ b/l10n/oc.json @@ -3,6 +3,9 @@ "Open »%s«" : "Dobrir « %s »", "Cheers!" : "A lèu !", "Upcoming events" : "Eveniments venents", + "Confirm" : "Confirmar", + "Date:" : "Data :", + "Where:" : "Ont :", "Description:" : "Descripcion :", "Calendar" : "Calendièr", "A Calendar app for Nextcloud" : "Una aplicacion de calendièr per Nextcloud", @@ -18,6 +21,7 @@ "Month" : "Mes", "List" : "Tièra", "Preview" : "Apercebut", + "Copy link" : "Copiar lo ligam", "Edit" : "Modificar", "Delete" : "Suprimir", "Untitled calendar" : "Calendièr sens nom", @@ -26,6 +30,7 @@ "Edit color" : "Modificar la color", "Saving color …" : "Enregistrament de la color …", "Copy private link" : "Copiar lo ligam privat", + "Export" : "Exportar", "Share link" : "Partejar lo ligam", "Publish calendar" : "Publicar lo calendièr", "Copy public link" : "Copiar lo ligam public", @@ -35,6 +40,10 @@ "can edit" : "pòt modificar", "+ New calendar" : "+ Calendièr novèl", "New calendar" : "Calendièr novèl", + "Name" : "Nom", + "Deleted" : "Suprimit", + "Restore" : "Restaurar", + "Delete permanently" : "Suprimir definitivament", "Import calendars" : "Importar de calendièrs", "Filename" : "Nom de fichièr", "Cancel" : "Anullar", @@ -53,6 +62,8 @@ "Description" : "Descripcion", "Visibility" : "Visibilitat", "Duration" : "Durada", + "to" : "a", + "Add" : "Apondre", "Monday" : "diluns", "Tuesday" : "Dimars", "Wednesday" : "Dimècres", @@ -63,6 +74,7 @@ "Save" : "Salvar", "Update" : "Metre a jorn", "Your name" : "Vòstre nom", + "Your email address" : "Vòstra adreça electronica", "Reminder" : "Recòrd", "Notification" : "Notificacion", "Email" : "Adreça corrièl", @@ -78,9 +90,12 @@ "_hour_::_hours_" : ["ora","oras"], "_day_::_days_" : ["jorn","jorns"], "_week_::_weeks_" : ["setmana","setmanas"], + "Available" : "Disponible", "Busy" : "Ocupat", "Unknown" : "Desconegut", + "Accept" : "Acceptar", "Tentative" : "Provisòri", + "Send email" : "Enviar email", "All day" : "Tota la jornada", "Repeat" : "Repetir", "never" : "pas jamai", @@ -129,6 +144,9 @@ "_%n time_::_%n times_" : ["%n còp","%n còps"], "Untitled event" : "Eveniment sens nom", "Untitled task" : "Prètzfach sens nom", + "Next" : "Seguent", + "Year" : "Annada", + "Other" : "Autre", "Add a location" : "Apondre un lòc", "Add a description" : "Apondre una descripcion", "Status" : "Estat", @@ -136,7 +154,9 @@ "Canceled" : "Anullat", "Categories" : "Categorias", "Custom color" : "Color personalizada", + "Commuting" : "En comunicacion", "Presentation" : "Presentacion", + "Talk" : "Talk", "Movie" : "Film", "Cinema" : "Cinèma", "Mail" : "Mail", @@ -159,6 +179,8 @@ "Pizza" : "Pizza", "Travelling" : "Viatge", "Party" : "Fèsta", - "Shopping" : "Crompas" + "Birthday" : "Data de naissença", + "Shopping" : "Crompas", + "User not found" : "Utilizaire pas trobat" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/l10n/pl.js b/l10n/pl.js index 71ef971cf00994875c0cc6441260b408ed462b3a..6e359c0554613a259d7e8641966610a042692c8a 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -116,7 +116,7 @@ OC.L10N.register( "Could not restore calendar or event" : "Nie udało się przywrócić kalendarza lub wydarzenia", "Do you really want to empty the trash bin?" : "Czy na pewno chcesz opróżnić kosz?", "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["Elementy w koszu są usuwane po {numDays} dniu","Elementy w koszu są usuwane po {numDays} dniach","Elementy w koszu są usuwane po {numDays} dniach","Elementy w koszu są usuwane po {numDays} dniach"], - "Could not update calendar order." : "Nie można zaktualizować sortowania w kalendarzu.", + "Could not update calendar order." : "Nie można zaktualizować kolejności kalendarza.", "Import calendars" : "Importuj kalendarze", "Please select a calendar to import into …" : "Wybierz kalendarz do zaimportowania do…", "Filename" : "Nazwa pliku", @@ -144,6 +144,10 @@ OC.L10N.register( "Actions" : "Akcje", "Create event" : "Utwórz wydarzenie", "Show shortcuts" : "Pokaż skróty", + "Editor" : "Edytor", + "Close editor" : "Zamknij edytor", + "Save edited event" : "Zapisz edytowane wydarzenie", + "Delete edited event" : "Usuń edytowane wydarzenie", "Enable birthday calendar" : "Włącz kalendarz urodzinowy", "Show tasks in calendar" : "Pokaż zadania w kalendarzu", "Enable simplified editor" : "Włącz uproszczony edytor", @@ -201,7 +205,7 @@ OC.L10N.register( "Edit appointment" : "Edytuj spotkanie", "Save" : "Zapisz", "Update" : "Aktualizuj", - "Your appointment is booked" : "Twoje spotkanie jest zarezerwowane", + "Please confirm your reservation" : "Proszę o potwierdzenie rezerwacji", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Wysłaliśmy Tobie wiadomość e-mail ze szczegółami. Potwierdź wizytę, korzystając z linku w e-mailu. Możesz teraz zamknąć tę stronę.", "Your name" : "Twoja nazwa", "Your email address" : "Twój adres e-mail", @@ -228,7 +232,18 @@ OC.L10N.register( "_hour_::_hours_" : ["godzina","godziny","godzin","godziny"], "_day_::_days_" : ["dzień","dni","dni","dni"], "_week_::_weeks_" : ["tydzień","tygodnie","tygodni","tygodnie"], + "Suggested" : "Zasugerował", "Available" : "Dostępny", + "Not available" : "Niedostępny", + "Checking availability" : "Sprawdzanie dostępności", + "Invitation accepted" : "Zaproszenie przyjęte", + "Accepted {organizerName}'s invitation" : "Zaakceptowano zaproszenie od {organizerName}", + "Invitation declined" : "Zaproszenie odrzucone", + "Declined {organizerName}'s invitation" : "Odrzucono zaproszenie od {organizerName}", + "Invitation is delegated" : "Zaproszenie jest oddelegowane", + "Participation marked as tentative" : "Uczestnictwo oznaczone jako niepewne", + "Invitation sent" : "Zaproszenie wysłane", + "Has not responded to {organizerName}'s invitation yet" : "Nie odpowiedział jeszcze na zaproszenie od {organizerName}", "Availability of attendees, resources and rooms" : "Dostępność uczestników, zasobów i pokoi", "{organizer} (organizer)" : "{organizer} (organizator)", "Free" : "Wolny", diff --git a/l10n/pl.json b/l10n/pl.json index cf44c08a34d0f303df9d99f353a40ca01d4c85a2..c580bd7870a7a0c55b044e0d29b71c74aa7907a3 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -114,7 +114,7 @@ "Could not restore calendar or event" : "Nie udało się przywrócić kalendarza lub wydarzenia", "Do you really want to empty the trash bin?" : "Czy na pewno chcesz opróżnić kosz?", "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["Elementy w koszu są usuwane po {numDays} dniu","Elementy w koszu są usuwane po {numDays} dniach","Elementy w koszu są usuwane po {numDays} dniach","Elementy w koszu są usuwane po {numDays} dniach"], - "Could not update calendar order." : "Nie można zaktualizować sortowania w kalendarzu.", + "Could not update calendar order." : "Nie można zaktualizować kolejności kalendarza.", "Import calendars" : "Importuj kalendarze", "Please select a calendar to import into …" : "Wybierz kalendarz do zaimportowania do…", "Filename" : "Nazwa pliku", @@ -142,6 +142,10 @@ "Actions" : "Akcje", "Create event" : "Utwórz wydarzenie", "Show shortcuts" : "Pokaż skróty", + "Editor" : "Edytor", + "Close editor" : "Zamknij edytor", + "Save edited event" : "Zapisz edytowane wydarzenie", + "Delete edited event" : "Usuń edytowane wydarzenie", "Enable birthday calendar" : "Włącz kalendarz urodzinowy", "Show tasks in calendar" : "Pokaż zadania w kalendarzu", "Enable simplified editor" : "Włącz uproszczony edytor", @@ -199,7 +203,7 @@ "Edit appointment" : "Edytuj spotkanie", "Save" : "Zapisz", "Update" : "Aktualizuj", - "Your appointment is booked" : "Twoje spotkanie jest zarezerwowane", + "Please confirm your reservation" : "Proszę o potwierdzenie rezerwacji", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Wysłaliśmy Tobie wiadomość e-mail ze szczegółami. Potwierdź wizytę, korzystając z linku w e-mailu. Możesz teraz zamknąć tę stronę.", "Your name" : "Twoja nazwa", "Your email address" : "Twój adres e-mail", @@ -226,7 +230,18 @@ "_hour_::_hours_" : ["godzina","godziny","godzin","godziny"], "_day_::_days_" : ["dzień","dni","dni","dni"], "_week_::_weeks_" : ["tydzień","tygodnie","tygodni","tygodnie"], + "Suggested" : "Zasugerował", "Available" : "Dostępny", + "Not available" : "Niedostępny", + "Checking availability" : "Sprawdzanie dostępności", + "Invitation accepted" : "Zaproszenie przyjęte", + "Accepted {organizerName}'s invitation" : "Zaakceptowano zaproszenie od {organizerName}", + "Invitation declined" : "Zaproszenie odrzucone", + "Declined {organizerName}'s invitation" : "Odrzucono zaproszenie od {organizerName}", + "Invitation is delegated" : "Zaproszenie jest oddelegowane", + "Participation marked as tentative" : "Uczestnictwo oznaczone jako niepewne", + "Invitation sent" : "Zaproszenie wysłane", + "Has not responded to {organizerName}'s invitation yet" : "Nie odpowiedział jeszcze na zaproszenie od {organizerName}", "Availability of attendees, resources and rooms" : "Dostępność uczestników, zasobów i pokoi", "{organizer} (organizer)" : "{organizer} (organizator)", "Free" : "Wolny", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 16f15e14f659b5d7da525f298ed4c0527609bf73..bb71b7a770349f423a14c7ceb6b7c0f0c2d3c53c 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -34,6 +34,7 @@ OC.L10N.register( "Next day" : "Próximo dia", "Next week" : "Próxima semana", "Next month" : "Próximo mês", + "New event" : "Novo evento", "Today" : "Hoje", "Day" : "Dia", "Week" : "Semana", @@ -47,11 +48,14 @@ OC.L10N.register( "Appointment link could not be copied to clipboard" : "Não foi possível copiar o link do compromisso para a área de transferência", "Add new" : "Adicionar novo", "Untitled calendar" : "Calendário sem título", + "Disable calendar" : "Desativar calendário", + "Enable calendar" : "Ativar calendário", "Edit name" : "Editar nome", "Saving name …" : "Salvando nome...", "Edit color" : "Editar cor", "Saving color …" : "Salvando cor...", "Copy private link" : "Copiar link privado", + "Export" : "Exportar", "Unshare from me" : "Descompartilhar comigo", "An error occurred, unable to change visibility of the calendar." : "Erro ao alterar a visibilidade do calendário.", "An error occurred, unable to delete the calendar." : "Erro ao excluir o calendário.", @@ -59,8 +63,8 @@ OC.L10N.register( "Calendar link could not be copied to clipboard." : "Não foi possível copiar o link da agenda para a área de transferência.", "An error occurred, unable to rename the calendar." : "Erro ao renomear o calendário.", "An error occurred, unable to change the calendar's color." : "Erro ao alterar a cor do calendário.", - "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Descompartilhando o calendário em {countdown} segundo","Descompartilhando o calendário em {countdown} segundos"], - "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Excluindo o calendário em {countdown} segundo","Excluindo o calendário em {countdown} segundos"], + "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Descompartilhando o calendário em {countdown} segundo","Descompartilhando o calendário em {countdown} segundos","Descompartilhando o calendário em {countdown} segundos"], + "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Excluindo o calendário em {countdown} segundo","Excluindo o calendário em {countdown} segundos","Excluindo o calendário em {countdown} segundos"], "Share link" : "Compartilhar link", "Publish calendar" : "Publicar calendário", "Publishing calendar" : "Calendário de publicação", @@ -111,18 +115,19 @@ OC.L10N.register( "Could not load deleted calendars and objects" : "Não foi possível carregar calendários e objetos excluídos", "Could not restore calendar or event" : "Não foi possível restaurar o calendário ou evento", "Do you really want to empty the trash bin?" : "Tem certeza de que deseja esvaziar a lixeira?", - "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["O elemento da lixeira será excluído após {numDays} dia","Os elementos da lixeira são excluídos após {numDays} dias"], + "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["O elemento da lixeira será excluído após {numDays} dia","Os elementos da lixeira são excluídos após {numDays} dias","Os elementos da lixeira são excluídos após {numDays} dias"], "Could not update calendar order." : "Não foi possível atualizar o pedido da agenda.", "Import calendars" : "Importar calendários", "Please select a calendar to import into …" : "Selecione o calendário para onde importar...", "Filename" : "Nome de arquivo", "Calendar to import into" : "Calendário a importar", "Cancel" : "Cancelar", - "_Import calendar_::_Import calendars_" : ["Importar calendário","Importar calendários"], + "_Import calendar_::_Import calendars_" : ["Importar calendário","Importar calendários","Importar calendários"], "{filename} is an unsupported file-type" : "{filename} é um tipo de arquivo não suportado", "{filename} could not be parsed" : "{filename} não pôde ser analisado", "No valid files found, aborting import" : "Nenhum arquivo válido encontrado, importação interrompida", "Import partially failed. Imported {accepted} out of {total}." : "Erro na importação. Importado {accepted} de {total}.", + "_Successfully imported %n event_::_Successfully imported %n events_" : ["Importado com sucesso %n evento","Importados com sucesso %n eventos","Importados com sucesso %n eventos"], "Automatic" : "Automático", "Automatic ({detected})" : "Automático ({detected})", "New setting was not saved successfully." : "A nova configuração não foi salva.", @@ -139,6 +144,10 @@ OC.L10N.register( "Actions" : "Ações", "Create event" : "Criar evento", "Show shortcuts" : "Mostrar atalhos", + "Editor" : "Editor", + "Close editor" : "Fechar editor", + "Save edited event" : "Salvar evento editado", + "Delete edited event" : "Excluir evento editado", "Enable birthday calendar" : "Ativar calendário de aniversários", "Show tasks in calendar" : "Mostrar tarefas no calendário", "Enable simplified editor" : "Ativar o editor simplificado", @@ -157,13 +166,13 @@ OC.L10N.register( "CalDAV link could not be copied to clipboard." : "Link CalDAV não copiado para a área de transferência.", "Appointment was created successfully" : "O compromisso foi criado com sucesso", "Appointment was updated successfully" : "Agendamento atualizado com sucesso", - "_{duration} minute_::_{duration} minutes_" : ["{duration} minuto","{duration} minutos"], + "_{duration} minute_::_{duration} minutes_" : ["{duration} minuto","{duration} minutos","{duration} minutos"], "0 minutes" : "0 minutos", - "_{duration} hour_::_{duration} hours_" : ["{duration} hora","{duration} horas"], - "_{duration} day_::_{duration} days_" : ["{duration} dia","{duration} dias"], - "_{duration} week_::_{duration} weeks_" : ["{duration} semana","{duration} semanas"], - "_{duration} month_::_{duration} months_" : ["{duration} mês","{duration} meses"], - "_{duration} year_::_{duration} years_" : ["{duration} ano","{duration} anos"], + "_{duration} hour_::_{duration} hours_" : ["{duration} hora","{duration} horas","{duration} horas"], + "_{duration} day_::_{duration} days_" : ["{duration} dia","{duration} dias","{duration} dias"], + "_{duration} week_::_{duration} weeks_" : ["{duration} semana","{duration} semanas","{duration} semanas"], + "_{duration} month_::_{duration} months_" : ["{duration} mês","{duration} meses","{duration} meses"], + "_{duration} year_::_{duration} years_" : ["{duration} ano","{duration} anos","{duration} anos"], "To configure appointments, add your email address in personal settings." : "Para configurar compromissos, adicione seu endereço de e-mail nas configurações pessoais.", "Public – shown on the profile page" : "Público - mostrado na página do perfil", "Private – only accessible via secret link" : "Privado - acessível apenas por meio de link secreto", @@ -196,7 +205,7 @@ OC.L10N.register( "Edit appointment" : "Editar compromisso", "Save" : "Salvar", "Update" : "Atualizar", - "Your appointment is booked" : "Seu compromisso está agendado", + "Please confirm your reservation" : "Por favor, confirme sua reserva", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Enviamos a você um e-mail com os detalhes. Por favor, confirme seu agendamento usando o link no e-mail. Você pode fechar esta página agora.", "Your name" : "Seu nome", "Your email address" : "Seu endereço de e-mail", @@ -218,12 +227,23 @@ OC.L10N.register( "at" : "em", "+ Add reminder" : "+ Adicionar lembrete", "Add reminder" : "Adicionar lembrete ", - "_second_::_seconds_" : ["segundo","segundos"], - "_minute_::_minutes_" : ["minuto","minutos"], - "_hour_::_hours_" : ["hora","horas"], - "_day_::_days_" : ["dia","dias"], - "_week_::_weeks_" : ["semana","semanas"], + "_second_::_seconds_" : ["segundo","segundos","segundos"], + "_minute_::_minutes_" : ["minuto","minutos","minutos"], + "_hour_::_hours_" : ["hora","horas","horas"], + "_day_::_days_" : ["dia","dias","dias"], + "_week_::_weeks_" : ["semana","semanas","semanas"], + "Suggested" : "Sugerido", "Available" : "Disponível", + "Not available" : "Indisponível", + "Checking availability" : "Verificando disponibilidade", + "Invitation accepted" : "Convite aceito", + "Accepted {organizerName}'s invitation" : "Aceitou o convite de {organizerName}", + "Invitation declined" : "Convite recusado", + "Declined {organizerName}'s invitation" : "Recusou o convite de {organizerName}", + "Invitation is delegated" : "O convite é delegado", + "Participation marked as tentative" : "Participação marcada como provisória", + "Invitation sent" : "Convite enviado", + "Has not responded to {organizerName}'s invitation yet" : "Ainda não respondeu ao convite de {organizerName}", "Availability of attendees, resources and rooms" : "Disponibilidade de participantes, recursos e salas", "{organizer} (organizer)" : "{organizer} (organizador)", "Free" : "Livre", @@ -269,7 +289,7 @@ OC.L10N.register( "never" : "nunca", "on date" : "na data", "after" : "após", - "_time_::_times_" : ["vez","vezes"], + "_time_::_times_" : ["vez","vezes","vezes"], "This event is the recurrence-exception of a recurrence-set. You cannot add a recurrence-rule to it." : "Este evento é a exceção de recorrência de um conjunto de recorrência. Você não pode adicionar uma regra de recorrência a ele.", "first" : "primeiro", "third" : "terceiro", @@ -281,8 +301,8 @@ OC.L10N.register( "Repeat every" : "Repetir a cada", "By day of the month" : "Pelo dia do mês", "On the" : "Em", - "_month_::_months_" : ["mês","meses"], - "_year_::_years_" : ["ano","anos"], + "_month_::_months_" : ["mês","meses","meses"], + "_year_::_years_" : ["ano","anos","anos"], "weekday" : "Dia da semana", "weekend day" : "dia da semana", "No recurrence" : "Sem recorrência ", @@ -294,7 +314,7 @@ OC.L10N.register( "Has a whiteboard" : "Tem quadro branco", "Wheelchair accessible" : "Acessível a cadeiras de rodas", "Remove resource" : "Remover recurso", - "_{seatingCapacity} seat_::_{seatingCapacity} seats_" : ["{seatingCapacity} assento","{seatingCapacity} assentos"], + "_{seatingCapacity} seat_::_{seatingCapacity} seats_" : ["{seatingCapacity} assento","{seatingCapacity} assentos","{seatingCapacity} assentos"], "Projector" : "Projetor", "Whiteboard" : "Quadro branco", "Search for resources or rooms" : "Pesquise recursos ou salas", @@ -355,6 +375,7 @@ OC.L10N.register( "Close" : "Fechar", "Show more details" : "Mostrar mais detalhes", "Subscribe to {name}" : "Inscrever-se em {name}", + "Export {name}" : "Exportar {name}", "Anniversary" : "Aniversário", "Appointment" : "Compromisso", "Business" : "Negócio", @@ -370,8 +391,8 @@ OC.L10N.register( "Travel" : "Viagem", "Vacation" : "Férias", "Midnight on the day the event starts" : "Meia-noite do dia em que o evento começa", - "_%n day before the event at {formattedHourMinute}_::_%n days before the event at {formattedHourMinute}_" : ["%n dia antes do evento às {formattedHourMinute}","%n dias antes do evento às {formattedHourMinute}"], - "_%n week before the event at {formattedHourMinute}_::_%n weeks before the event at {formattedHourMinute}_" : ["%n semana antes do evento às {formattedHourMinute}","%n semanas antes do evento às {formattedHourMinute}"], + "_%n day before the event at {formattedHourMinute}_::_%n days before the event at {formattedHourMinute}_" : ["%n dia antes do evento às {formattedHourMinute}","%n dias antes do evento às {formattedHourMinute}","%n dias antes do evento às {formattedHourMinute}"], + "_%n week before the event at {formattedHourMinute}_::_%n weeks before the event at {formattedHourMinute}_" : ["%n semana antes do evento às {formattedHourMinute}","%n semanas antes do evento às {formattedHourMinute}","%n semanas antes do evento às {formattedHourMinute}"], "on the day of the event at {formattedHourMinute}" : "no dia do evento às {formattedHourMinute}", "at the event's start" : "no início do evento", "at the event's end" : "no fim do evento", @@ -387,17 +408,17 @@ OC.L10N.register( "Weekly" : "Semanalmente", "Monthly" : "Mensalmente", "Yearly" : "Anualmente", - "_Every %n day_::_Every %n days_" : ["A cada %n dia","A cada %n dias"], - "_Every %n week_::_Every %n weeks_" : ["A cada %n semana","A cada %n semanas"], - "_Every %n month_::_Every %n months_" : ["A cada %n mês","A cada %n meses"], - "_Every %n year_::_Every %n years_" : ["A cada %n ano","A cada %n anos"], - "_on {weekday}_::_on {weekdays}_" : ["em {weekday}","em {weekdays}"], - "_on day {dayOfMonthList}_::_on days {dayOfMonthList}_" : ["no dia {dayOfMonthList}","nos dias {dayOfMonthList}"], + "_Every %n day_::_Every %n days_" : ["A cada %n dia","A cada %n dias","A cada %n dias"], + "_Every %n week_::_Every %n weeks_" : ["A cada %n semana","A cada %n semanas","A cada %n semanas"], + "_Every %n month_::_Every %n months_" : ["A cada %n mês","A cada %n meses","A cada %n meses"], + "_Every %n year_::_Every %n years_" : ["A cada %n ano","A cada %n anos","A cada %n anos"], + "_on {weekday}_::_on {weekdays}_" : ["em {weekday}","em {weekdays}","em {weekdays}"], + "_on day {dayOfMonthList}_::_on days {dayOfMonthList}_" : ["no dia {dayOfMonthList}","nos dias {dayOfMonthList}","nos dias {dayOfMonthList}"], "on the {ordinalNumber} {byDaySet}" : "no {ordinalNumber} {byDaySet}", "in {monthNames}" : "em {monthNames}", "in {monthNames} on the {ordinalNumber} {byDaySet}" : "em {monthNames} no {ordinalNumber} {byDaySet}", "until {untilDate}" : "até {untilDate}", - "_%n time_::_%n times_" : ["%n vez","%n vezes"], + "_%n time_::_%n times_" : ["%n vez","%n vezes","%n vezes"], "Untitled event" : "Evento sem título", "Untitled task" : "Tarefa sem título", "Please ask your administrator to enable the Tasks App." : "Peça ao administrador para ativar o aplicativo Tarefas.", @@ -409,7 +430,7 @@ OC.L10N.register( "W" : "S", "%n more" : "%n mais", "No events to display" : "Não há mais eventos a mostrar", - "_+%n more_::_+%n more_" : ["mais +%n","mais +%n"], + "_+%n more_::_+%n more_" : ["mais +%n","mais +%n","mais +%n"], "No events" : "Sem eventos", "Create a new event or change the visible time-range" : "Crie um novo evento ou altere o intervalo de tempo visível", "It might have been deleted, or there was a typo in a link" : "Pode ter sido excluído ou houve um erro de digitação no link", @@ -568,4 +589,4 @@ OC.L10N.register( "Appointment not found" : "Agendamento não encontrado", "User not found" : "Usuário não encontrado" }, -"nplurals=2; plural=(n > 1);"); +"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 67e2ce3e193bff9b0e967fdc55dec0114e6ed139..cded70749e90ed5887087238a876325b88ab555a 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -32,6 +32,7 @@ "Next day" : "Próximo dia", "Next week" : "Próxima semana", "Next month" : "Próximo mês", + "New event" : "Novo evento", "Today" : "Hoje", "Day" : "Dia", "Week" : "Semana", @@ -45,11 +46,14 @@ "Appointment link could not be copied to clipboard" : "Não foi possível copiar o link do compromisso para a área de transferência", "Add new" : "Adicionar novo", "Untitled calendar" : "Calendário sem título", + "Disable calendar" : "Desativar calendário", + "Enable calendar" : "Ativar calendário", "Edit name" : "Editar nome", "Saving name …" : "Salvando nome...", "Edit color" : "Editar cor", "Saving color …" : "Salvando cor...", "Copy private link" : "Copiar link privado", + "Export" : "Exportar", "Unshare from me" : "Descompartilhar comigo", "An error occurred, unable to change visibility of the calendar." : "Erro ao alterar a visibilidade do calendário.", "An error occurred, unable to delete the calendar." : "Erro ao excluir o calendário.", @@ -57,8 +61,8 @@ "Calendar link could not be copied to clipboard." : "Não foi possível copiar o link da agenda para a área de transferência.", "An error occurred, unable to rename the calendar." : "Erro ao renomear o calendário.", "An error occurred, unable to change the calendar's color." : "Erro ao alterar a cor do calendário.", - "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Descompartilhando o calendário em {countdown} segundo","Descompartilhando o calendário em {countdown} segundos"], - "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Excluindo o calendário em {countdown} segundo","Excluindo o calendário em {countdown} segundos"], + "_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Descompartilhando o calendário em {countdown} segundo","Descompartilhando o calendário em {countdown} segundos","Descompartilhando o calendário em {countdown} segundos"], + "_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Excluindo o calendário em {countdown} segundo","Excluindo o calendário em {countdown} segundos","Excluindo o calendário em {countdown} segundos"], "Share link" : "Compartilhar link", "Publish calendar" : "Publicar calendário", "Publishing calendar" : "Calendário de publicação", @@ -109,18 +113,19 @@ "Could not load deleted calendars and objects" : "Não foi possível carregar calendários e objetos excluídos", "Could not restore calendar or event" : "Não foi possível restaurar o calendário ou evento", "Do you really want to empty the trash bin?" : "Tem certeza de que deseja esvaziar a lixeira?", - "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["O elemento da lixeira será excluído após {numDays} dia","Os elementos da lixeira são excluídos após {numDays} dias"], + "_Elements in the trash bin are deleted after {numDays} day_::_Elements in the trash bin are deleted after {numDays} days_" : ["O elemento da lixeira será excluído após {numDays} dia","Os elementos da lixeira são excluídos após {numDays} dias","Os elementos da lixeira são excluídos após {numDays} dias"], "Could not update calendar order." : "Não foi possível atualizar o pedido da agenda.", "Import calendars" : "Importar calendários", "Please select a calendar to import into …" : "Selecione o calendário para onde importar...", "Filename" : "Nome de arquivo", "Calendar to import into" : "Calendário a importar", "Cancel" : "Cancelar", - "_Import calendar_::_Import calendars_" : ["Importar calendário","Importar calendários"], + "_Import calendar_::_Import calendars_" : ["Importar calendário","Importar calendários","Importar calendários"], "{filename} is an unsupported file-type" : "{filename} é um tipo de arquivo não suportado", "{filename} could not be parsed" : "{filename} não pôde ser analisado", "No valid files found, aborting import" : "Nenhum arquivo válido encontrado, importação interrompida", "Import partially failed. Imported {accepted} out of {total}." : "Erro na importação. Importado {accepted} de {total}.", + "_Successfully imported %n event_::_Successfully imported %n events_" : ["Importado com sucesso %n evento","Importados com sucesso %n eventos","Importados com sucesso %n eventos"], "Automatic" : "Automático", "Automatic ({detected})" : "Automático ({detected})", "New setting was not saved successfully." : "A nova configuração não foi salva.", @@ -137,6 +142,10 @@ "Actions" : "Ações", "Create event" : "Criar evento", "Show shortcuts" : "Mostrar atalhos", + "Editor" : "Editor", + "Close editor" : "Fechar editor", + "Save edited event" : "Salvar evento editado", + "Delete edited event" : "Excluir evento editado", "Enable birthday calendar" : "Ativar calendário de aniversários", "Show tasks in calendar" : "Mostrar tarefas no calendário", "Enable simplified editor" : "Ativar o editor simplificado", @@ -155,13 +164,13 @@ "CalDAV link could not be copied to clipboard." : "Link CalDAV não copiado para a área de transferência.", "Appointment was created successfully" : "O compromisso foi criado com sucesso", "Appointment was updated successfully" : "Agendamento atualizado com sucesso", - "_{duration} minute_::_{duration} minutes_" : ["{duration} minuto","{duration} minutos"], + "_{duration} minute_::_{duration} minutes_" : ["{duration} minuto","{duration} minutos","{duration} minutos"], "0 minutes" : "0 minutos", - "_{duration} hour_::_{duration} hours_" : ["{duration} hora","{duration} horas"], - "_{duration} day_::_{duration} days_" : ["{duration} dia","{duration} dias"], - "_{duration} week_::_{duration} weeks_" : ["{duration} semana","{duration} semanas"], - "_{duration} month_::_{duration} months_" : ["{duration} mês","{duration} meses"], - "_{duration} year_::_{duration} years_" : ["{duration} ano","{duration} anos"], + "_{duration} hour_::_{duration} hours_" : ["{duration} hora","{duration} horas","{duration} horas"], + "_{duration} day_::_{duration} days_" : ["{duration} dia","{duration} dias","{duration} dias"], + "_{duration} week_::_{duration} weeks_" : ["{duration} semana","{duration} semanas","{duration} semanas"], + "_{duration} month_::_{duration} months_" : ["{duration} mês","{duration} meses","{duration} meses"], + "_{duration} year_::_{duration} years_" : ["{duration} ano","{duration} anos","{duration} anos"], "To configure appointments, add your email address in personal settings." : "Para configurar compromissos, adicione seu endereço de e-mail nas configurações pessoais.", "Public – shown on the profile page" : "Público - mostrado na página do perfil", "Private – only accessible via secret link" : "Privado - acessível apenas por meio de link secreto", @@ -194,7 +203,7 @@ "Edit appointment" : "Editar compromisso", "Save" : "Salvar", "Update" : "Atualizar", - "Your appointment is booked" : "Seu compromisso está agendado", + "Please confirm your reservation" : "Por favor, confirme sua reserva", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Enviamos a você um e-mail com os detalhes. Por favor, confirme seu agendamento usando o link no e-mail. Você pode fechar esta página agora.", "Your name" : "Seu nome", "Your email address" : "Seu endereço de e-mail", @@ -216,12 +225,23 @@ "at" : "em", "+ Add reminder" : "+ Adicionar lembrete", "Add reminder" : "Adicionar lembrete ", - "_second_::_seconds_" : ["segundo","segundos"], - "_minute_::_minutes_" : ["minuto","minutos"], - "_hour_::_hours_" : ["hora","horas"], - "_day_::_days_" : ["dia","dias"], - "_week_::_weeks_" : ["semana","semanas"], + "_second_::_seconds_" : ["segundo","segundos","segundos"], + "_minute_::_minutes_" : ["minuto","minutos","minutos"], + "_hour_::_hours_" : ["hora","horas","horas"], + "_day_::_days_" : ["dia","dias","dias"], + "_week_::_weeks_" : ["semana","semanas","semanas"], + "Suggested" : "Sugerido", "Available" : "Disponível", + "Not available" : "Indisponível", + "Checking availability" : "Verificando disponibilidade", + "Invitation accepted" : "Convite aceito", + "Accepted {organizerName}'s invitation" : "Aceitou o convite de {organizerName}", + "Invitation declined" : "Convite recusado", + "Declined {organizerName}'s invitation" : "Recusou o convite de {organizerName}", + "Invitation is delegated" : "O convite é delegado", + "Participation marked as tentative" : "Participação marcada como provisória", + "Invitation sent" : "Convite enviado", + "Has not responded to {organizerName}'s invitation yet" : "Ainda não respondeu ao convite de {organizerName}", "Availability of attendees, resources and rooms" : "Disponibilidade de participantes, recursos e salas", "{organizer} (organizer)" : "{organizer} (organizador)", "Free" : "Livre", @@ -267,7 +287,7 @@ "never" : "nunca", "on date" : "na data", "after" : "após", - "_time_::_times_" : ["vez","vezes"], + "_time_::_times_" : ["vez","vezes","vezes"], "This event is the recurrence-exception of a recurrence-set. You cannot add a recurrence-rule to it." : "Este evento é a exceção de recorrência de um conjunto de recorrência. Você não pode adicionar uma regra de recorrência a ele.", "first" : "primeiro", "third" : "terceiro", @@ -279,8 +299,8 @@ "Repeat every" : "Repetir a cada", "By day of the month" : "Pelo dia do mês", "On the" : "Em", - "_month_::_months_" : ["mês","meses"], - "_year_::_years_" : ["ano","anos"], + "_month_::_months_" : ["mês","meses","meses"], + "_year_::_years_" : ["ano","anos","anos"], "weekday" : "Dia da semana", "weekend day" : "dia da semana", "No recurrence" : "Sem recorrência ", @@ -292,7 +312,7 @@ "Has a whiteboard" : "Tem quadro branco", "Wheelchair accessible" : "Acessível a cadeiras de rodas", "Remove resource" : "Remover recurso", - "_{seatingCapacity} seat_::_{seatingCapacity} seats_" : ["{seatingCapacity} assento","{seatingCapacity} assentos"], + "_{seatingCapacity} seat_::_{seatingCapacity} seats_" : ["{seatingCapacity} assento","{seatingCapacity} assentos","{seatingCapacity} assentos"], "Projector" : "Projetor", "Whiteboard" : "Quadro branco", "Search for resources or rooms" : "Pesquise recursos ou salas", @@ -353,6 +373,7 @@ "Close" : "Fechar", "Show more details" : "Mostrar mais detalhes", "Subscribe to {name}" : "Inscrever-se em {name}", + "Export {name}" : "Exportar {name}", "Anniversary" : "Aniversário", "Appointment" : "Compromisso", "Business" : "Negócio", @@ -368,8 +389,8 @@ "Travel" : "Viagem", "Vacation" : "Férias", "Midnight on the day the event starts" : "Meia-noite do dia em que o evento começa", - "_%n day before the event at {formattedHourMinute}_::_%n days before the event at {formattedHourMinute}_" : ["%n dia antes do evento às {formattedHourMinute}","%n dias antes do evento às {formattedHourMinute}"], - "_%n week before the event at {formattedHourMinute}_::_%n weeks before the event at {formattedHourMinute}_" : ["%n semana antes do evento às {formattedHourMinute}","%n semanas antes do evento às {formattedHourMinute}"], + "_%n day before the event at {formattedHourMinute}_::_%n days before the event at {formattedHourMinute}_" : ["%n dia antes do evento às {formattedHourMinute}","%n dias antes do evento às {formattedHourMinute}","%n dias antes do evento às {formattedHourMinute}"], + "_%n week before the event at {formattedHourMinute}_::_%n weeks before the event at {formattedHourMinute}_" : ["%n semana antes do evento às {formattedHourMinute}","%n semanas antes do evento às {formattedHourMinute}","%n semanas antes do evento às {formattedHourMinute}"], "on the day of the event at {formattedHourMinute}" : "no dia do evento às {formattedHourMinute}", "at the event's start" : "no início do evento", "at the event's end" : "no fim do evento", @@ -385,17 +406,17 @@ "Weekly" : "Semanalmente", "Monthly" : "Mensalmente", "Yearly" : "Anualmente", - "_Every %n day_::_Every %n days_" : ["A cada %n dia","A cada %n dias"], - "_Every %n week_::_Every %n weeks_" : ["A cada %n semana","A cada %n semanas"], - "_Every %n month_::_Every %n months_" : ["A cada %n mês","A cada %n meses"], - "_Every %n year_::_Every %n years_" : ["A cada %n ano","A cada %n anos"], - "_on {weekday}_::_on {weekdays}_" : ["em {weekday}","em {weekdays}"], - "_on day {dayOfMonthList}_::_on days {dayOfMonthList}_" : ["no dia {dayOfMonthList}","nos dias {dayOfMonthList}"], + "_Every %n day_::_Every %n days_" : ["A cada %n dia","A cada %n dias","A cada %n dias"], + "_Every %n week_::_Every %n weeks_" : ["A cada %n semana","A cada %n semanas","A cada %n semanas"], + "_Every %n month_::_Every %n months_" : ["A cada %n mês","A cada %n meses","A cada %n meses"], + "_Every %n year_::_Every %n years_" : ["A cada %n ano","A cada %n anos","A cada %n anos"], + "_on {weekday}_::_on {weekdays}_" : ["em {weekday}","em {weekdays}","em {weekdays}"], + "_on day {dayOfMonthList}_::_on days {dayOfMonthList}_" : ["no dia {dayOfMonthList}","nos dias {dayOfMonthList}","nos dias {dayOfMonthList}"], "on the {ordinalNumber} {byDaySet}" : "no {ordinalNumber} {byDaySet}", "in {monthNames}" : "em {monthNames}", "in {monthNames} on the {ordinalNumber} {byDaySet}" : "em {monthNames} no {ordinalNumber} {byDaySet}", "until {untilDate}" : "até {untilDate}", - "_%n time_::_%n times_" : ["%n vez","%n vezes"], + "_%n time_::_%n times_" : ["%n vez","%n vezes","%n vezes"], "Untitled event" : "Evento sem título", "Untitled task" : "Tarefa sem título", "Please ask your administrator to enable the Tasks App." : "Peça ao administrador para ativar o aplicativo Tarefas.", @@ -407,7 +428,7 @@ "W" : "S", "%n more" : "%n mais", "No events to display" : "Não há mais eventos a mostrar", - "_+%n more_::_+%n more_" : ["mais +%n","mais +%n"], + "_+%n more_::_+%n more_" : ["mais +%n","mais +%n","mais +%n"], "No events" : "Sem eventos", "Create a new event or change the visible time-range" : "Crie um novo evento ou altere o intervalo de tempo visível", "It might have been deleted, or there was a typo in a link" : "Pode ter sido excluído ou houve um erro de digitação no link", @@ -565,5 +586,5 @@ "Lunch" : "Rodar", "Appointment not found" : "Agendamento não encontrado", "User not found" : "Usuário não encontrado" -},"pluralForm" :"nplurals=2; plural=(n > 1);" +},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/pt_PT.js b/l10n/pt_PT.js index c63fa34a35e37f27a9dbc04b68f7a6f11e841626..e3a39d198b376329ee44277f10109f69d293dbc6 100644 --- a/l10n/pt_PT.js +++ b/l10n/pt_PT.js @@ -25,6 +25,7 @@ OC.L10N.register( "Next day" : "Dia seguinte", "Next week" : "Próxima semana", "Next month" : "Próximo mês", + "New event" : "Novo evento", "Today" : "Hoje", "Day" : "Dia", "Week" : "Semana", @@ -43,6 +44,7 @@ OC.L10N.register( "Edit color" : "Editar a cor", "Saving color …" : "A guardar a côr...", "Copy private link" : "Copiar link privado", + "Export" : "Exportar", "Unshare from me" : "Cancelar partilha", "An error occurred, unable to change visibility of the calendar." : "Ocorreu um erro, incapaz de alterar a visibilidade do calendário.", "An error occurred, unable to delete the calendar." : "Ocorreu um erro que impede que o calendário seja apagado", @@ -79,16 +81,22 @@ OC.L10N.register( "+ New calendar" : "+ Novo calendário", "New calendar" : "Novo calendário", "Creating calendar …" : "A criar o calendário …", + "Name" : "Nome", + "Deleted" : "Eliminado", + "Restore" : "Restaurar", + "Delete permanently" : "Eliminar permanentemente", + "Empty trash bin" : "Esvaziar a reciclagem", "Import calendars" : "Importar calendários", "Filename" : "Nome do ficheiro", "Cancel" : "Cancelar", - "_Import calendar_::_Import calendars_" : ["Importar calendário","Importar calendários"], + "_Import calendar_::_Import calendars_" : ["Importar calendário","Importar calendários","Importar calendários"], "Automatic" : "Automático", "Navigation" : "Navegação", "Views" : "Vistas", "Day view" : "Vista diária", "Week view" : "Vista semanal", "Month view" : "Vista mensal", + "List view" : "Vista em lista", "Actions" : "Ações", "Create event" : "Criar evento", "Show shortcuts" : "Mostrar atalhos de teclado", @@ -100,20 +108,34 @@ OC.L10N.register( "Settings & import" : "Definições & importar", "Location" : "Localização:", "Description" : "Descrição", + "Duration" : "Duração", + "to" : "Para", + "Add" : "Adicionar", "Monday" : "Segunda", + "Tuesday" : "Terça", + "Wednesday" : "Quarta", + "Thursday" : "Quinta", + "Friday" : "Sexta", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Atualizar", + "Your email address" : "O seu endereço de email", "Notification" : "Notificação", "Email" : "E-mail", "+ Add reminder" : "+ Adicionar lembrete", - "_second_::_seconds_" : ["segundo","segundos"], - "_minute_::_minutes_" : ["minuto","minutos"], - "_hour_::_hours_" : ["hora","horas"], - "_day_::_days_" : ["dia","dias"], - "_week_::_weeks_" : ["semana","semanas"], + "_second_::_seconds_" : ["segundo","segundos","segundos"], + "_minute_::_minutes_" : ["minuto","minutos","minutos"], + "_hour_::_hours_" : ["hora","horas","horas"], + "_day_::_days_" : ["dia","dias","dias"], + "_week_::_weeks_" : ["semana","semanas","semanas"], + "Available" : "Disponível", "Busy" : "Ocupado", "Unknown" : "Desconhecido", + "Accept" : "Aceitar", + "Decline" : "Recusar", "Tentative" : "Tentativa", + "Send email" : "Enviar e-mail", "All day" : "Todo o dia", "Repeat" : "Repetir", "never" : "nunca", @@ -127,32 +149,45 @@ OC.L10N.register( "Repeat every" : "Repetir a cada", "By day of the month" : "Por dia do mês", "On the" : "No", - "_month_::_months_" : ["mês","meses"], - "_year_::_years_" : ["ano","anos"], + "_month_::_months_" : ["mês","meses","meses"], + "_year_::_years_" : ["ano","anos","anos"], "weekday" : "dia da semana", "weekend day" : "dia do fim-de-semana", + "available" : "disponível", "More" : "Mais", + "Pick a date" : "Escolha uma data", "Global" : "Global", "Personal" : "Pessoal", "Details" : "Detalhes", "Attendees" : "Participantes", + "Resources" : "Recursos", "Close" : "Fechar", "Anniversary" : "Aniversário", + "Miscellaneous" : "Diversos", "Week {number} of {year}" : "Semana {number} do {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Next" : "Seguinte", + "Other" : "Outro", "When shared show full event" : "Quando partilhado, mostrar evento completo", "When shared show only busy" : "Quando partilhado, mostrar apenas ocupados", "When shared hide this event" : "Quando partilhado, ocultar este evento", "Status" : "Estado", "Confirmed" : "Confirmado", + "Canceled" : "Cancelado", "Categories" : "Categorias", + "Commuting" : "Em trânsito", "Presentation" : "Apresentação", + "Talk" : "Falar", "Review" : "Rever", "Office" : "Escritório", "Mail" : "Correio", + "Driving" : "Conduzir", + "Biking" : "Andar de bicicleta", + "Health" : "Saúde", "New Years Eve" : "Véspera de Ano Novo", "Fireworks" : "Fogo de artifício", + "Running" : "Correr", "Marathon" : "Maratona", "Christmas" : "Natal", "Trip" : "Viagem", @@ -168,6 +203,7 @@ OC.L10N.register( "Wine tasting" : "Degustação de vinho", "Golf" : "Golfe", "Dinner" : "Jantar", - "Lunch" : "Almoço" + "Lunch" : "Almoço", + "User not found" : "Utilizador não encontrado" }, -"nplurals=2; plural=(n != 1);"); +"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/pt_PT.json b/l10n/pt_PT.json index adf647605c8fb34735a5ae705c02dcfc01248bbd..2b4764741fcb7ad8fe9dae4e329281cf2ec22b9c 100644 --- a/l10n/pt_PT.json +++ b/l10n/pt_PT.json @@ -23,6 +23,7 @@ "Next day" : "Dia seguinte", "Next week" : "Próxima semana", "Next month" : "Próximo mês", + "New event" : "Novo evento", "Today" : "Hoje", "Day" : "Dia", "Week" : "Semana", @@ -41,6 +42,7 @@ "Edit color" : "Editar a cor", "Saving color …" : "A guardar a côr...", "Copy private link" : "Copiar link privado", + "Export" : "Exportar", "Unshare from me" : "Cancelar partilha", "An error occurred, unable to change visibility of the calendar." : "Ocorreu um erro, incapaz de alterar a visibilidade do calendário.", "An error occurred, unable to delete the calendar." : "Ocorreu um erro que impede que o calendário seja apagado", @@ -77,16 +79,22 @@ "+ New calendar" : "+ Novo calendário", "New calendar" : "Novo calendário", "Creating calendar …" : "A criar o calendário …", + "Name" : "Nome", + "Deleted" : "Eliminado", + "Restore" : "Restaurar", + "Delete permanently" : "Eliminar permanentemente", + "Empty trash bin" : "Esvaziar a reciclagem", "Import calendars" : "Importar calendários", "Filename" : "Nome do ficheiro", "Cancel" : "Cancelar", - "_Import calendar_::_Import calendars_" : ["Importar calendário","Importar calendários"], + "_Import calendar_::_Import calendars_" : ["Importar calendário","Importar calendários","Importar calendários"], "Automatic" : "Automático", "Navigation" : "Navegação", "Views" : "Vistas", "Day view" : "Vista diária", "Week view" : "Vista semanal", "Month view" : "Vista mensal", + "List view" : "Vista em lista", "Actions" : "Ações", "Create event" : "Criar evento", "Show shortcuts" : "Mostrar atalhos de teclado", @@ -98,20 +106,34 @@ "Settings & import" : "Definições & importar", "Location" : "Localização:", "Description" : "Descrição", + "Duration" : "Duração", + "to" : "Para", + "Add" : "Adicionar", "Monday" : "Segunda", + "Tuesday" : "Terça", + "Wednesday" : "Quarta", + "Thursday" : "Quinta", + "Friday" : "Sexta", + "Saturday" : "Sábado", + "Sunday" : "Domingo", "Save" : "Guardar", "Update" : "Atualizar", + "Your email address" : "O seu endereço de email", "Notification" : "Notificação", "Email" : "E-mail", "+ Add reminder" : "+ Adicionar lembrete", - "_second_::_seconds_" : ["segundo","segundos"], - "_minute_::_minutes_" : ["minuto","minutos"], - "_hour_::_hours_" : ["hora","horas"], - "_day_::_days_" : ["dia","dias"], - "_week_::_weeks_" : ["semana","semanas"], + "_second_::_seconds_" : ["segundo","segundos","segundos"], + "_minute_::_minutes_" : ["minuto","minutos","minutos"], + "_hour_::_hours_" : ["hora","horas","horas"], + "_day_::_days_" : ["dia","dias","dias"], + "_week_::_weeks_" : ["semana","semanas","semanas"], + "Available" : "Disponível", "Busy" : "Ocupado", "Unknown" : "Desconhecido", + "Accept" : "Aceitar", + "Decline" : "Recusar", "Tentative" : "Tentativa", + "Send email" : "Enviar e-mail", "All day" : "Todo o dia", "Repeat" : "Repetir", "never" : "nunca", @@ -125,32 +147,45 @@ "Repeat every" : "Repetir a cada", "By day of the month" : "Por dia do mês", "On the" : "No", - "_month_::_months_" : ["mês","meses"], - "_year_::_years_" : ["ano","anos"], + "_month_::_months_" : ["mês","meses","meses"], + "_year_::_years_" : ["ano","anos","anos"], "weekday" : "dia da semana", "weekend day" : "dia do fim-de-semana", + "available" : "disponível", "More" : "Mais", + "Pick a date" : "Escolha uma data", "Global" : "Global", "Personal" : "Pessoal", "Details" : "Detalhes", "Attendees" : "Participantes", + "Resources" : "Recursos", "Close" : "Fechar", "Anniversary" : "Aniversário", + "Miscellaneous" : "Diversos", "Week {number} of {year}" : "Semana {number} do {year}", "Daily" : "Diariamente", "Weekly" : "Semanalmente", + "Next" : "Seguinte", + "Other" : "Outro", "When shared show full event" : "Quando partilhado, mostrar evento completo", "When shared show only busy" : "Quando partilhado, mostrar apenas ocupados", "When shared hide this event" : "Quando partilhado, ocultar este evento", "Status" : "Estado", "Confirmed" : "Confirmado", + "Canceled" : "Cancelado", "Categories" : "Categorias", + "Commuting" : "Em trânsito", "Presentation" : "Apresentação", + "Talk" : "Falar", "Review" : "Rever", "Office" : "Escritório", "Mail" : "Correio", + "Driving" : "Conduzir", + "Biking" : "Andar de bicicleta", + "Health" : "Saúde", "New Years Eve" : "Véspera de Ano Novo", "Fireworks" : "Fogo de artifício", + "Running" : "Correr", "Marathon" : "Maratona", "Christmas" : "Natal", "Trip" : "Viagem", @@ -166,6 +201,7 @@ "Wine tasting" : "Degustação de vinho", "Golf" : "Golfe", "Dinner" : "Jantar", - "Lunch" : "Almoço" -},"pluralForm" :"nplurals=2; plural=(n != 1);" + "Lunch" : "Almoço", + "User not found" : "Utilizador não encontrado" +},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/ro.js b/l10n/ro.js index 1d7657a34e0e1285b3742fd8b3454c8eec5aa540..92dbfd3524bc66d888a2f383a40d9459035b3594 100644 --- a/l10n/ro.js +++ b/l10n/ro.js @@ -199,7 +199,6 @@ OC.L10N.register( "Edit appointment" : "Editează programarea", "Save" : "Salvează", "Update" : "Actualizare", - "Your appointment is booked" : "Rezervarea ta este confirmată", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Ți-am trimis un email cu detalii. Te rugăm să confirmi programarea ta folosind linkul din email. Poți închide această pagină acum.", "Your name" : "Numele tău", "Your email address" : "Adresa ta de email", @@ -227,6 +226,7 @@ OC.L10N.register( "_day_::_days_" : ["zi","zile","zile"], "_week_::_weeks_" : ["săptămână","săptămâni","săptămâni"], "Available" : "Disponibil", + "Not available" : "Nu este disponibil", "Availability of attendees, resources and rooms" : "Disponibilitatea participanților, resurse și camere", "{organizer} (organizer)" : "{organizer} (organizer)", "Busy (tentative)" : "Ocupat (tetentativ)", @@ -364,6 +364,9 @@ OC.L10N.register( "Show as" : "Arată-ne", "Take this event into account when calculating free-busy information." : "Ține cont de acest eveniment în momentul calculării timpului liber.", "Categories" : "Categorii", + "Commuting" : "În deplasare", + "Talk" : "Discuție", + "Movie" : "Film", "Mail" : "Mail", "Sports" : "Sport", "Exercise" : "Exerciții fizice", diff --git a/l10n/ro.json b/l10n/ro.json index 7e0fba3d7f6a0be6f77eca51bb004896fbe48e98..a56c614bb54f43a50cf8f404eff3b5f6b4ea32a8 100644 --- a/l10n/ro.json +++ b/l10n/ro.json @@ -197,7 +197,6 @@ "Edit appointment" : "Editează programarea", "Save" : "Salvează", "Update" : "Actualizare", - "Your appointment is booked" : "Rezervarea ta este confirmată", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Ți-am trimis un email cu detalii. Te rugăm să confirmi programarea ta folosind linkul din email. Poți închide această pagină acum.", "Your name" : "Numele tău", "Your email address" : "Adresa ta de email", @@ -225,6 +224,7 @@ "_day_::_days_" : ["zi","zile","zile"], "_week_::_weeks_" : ["săptămână","săptămâni","săptămâni"], "Available" : "Disponibil", + "Not available" : "Nu este disponibil", "Availability of attendees, resources and rooms" : "Disponibilitatea participanților, resurse și camere", "{organizer} (organizer)" : "{organizer} (organizer)", "Busy (tentative)" : "Ocupat (tetentativ)", @@ -362,6 +362,9 @@ "Show as" : "Arată-ne", "Take this event into account when calculating free-busy information." : "Ține cont de acest eveniment în momentul calculării timpului liber.", "Categories" : "Categorii", + "Commuting" : "În deplasare", + "Talk" : "Discuție", + "Movie" : "Film", "Mail" : "Mail", "Sports" : "Sport", "Exercise" : "Exerciții fizice", diff --git a/l10n/ru.js b/l10n/ru.js index 02824dd4088abf58e5ee682b0395b5b75860591f..dd3b46031b3683165c1ee3f1cd539b3563d764ed 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -12,12 +12,12 @@ OC.L10N.register( "Cheers!" : "Удачи!", "Upcoming events" : "Приближающиеся события", "Appointments" : "Мероприятия", - "Schedule appointment \"%s\"" : "Запланировать встречу \"%s\"", + "Schedule appointment \"%s\"" : "Запланировать встречу «%s»", "Schedule an appointment" : "Запланировать встречу", "Prepare for %s" : "Подготовиться к %s", "Follow up for %s" : "Последующие действия для %s", - "Your appointment \"%s\" needs confirmation" : "Ваша встреча \"%s\" требует подтверждения", - "Dear %s, please confirm your booking" : "Уважаемый %s, пожалуйста, подтвердите ваше бронирование", + "Your appointment \"%s\" needs confirmation" : "Ваша встреча «%s» требует подтверждения", + "Dear %s, please confirm your booking" : "Уважаемый %s, подтвердите своё бронирование", "Confirm" : "Подтвердить", "This confirmation link expires in %s hours." : "Срок действия этой ссылки для подтверждения истекает через %s часов.", "If you wish to cancel the appointment after all, please contact your organizer." : "Если вы хотите отменить встречу, пожалуйста, свяжитесь с организатором.", @@ -44,8 +44,8 @@ OC.L10N.register( "Copy link" : "Копировать ссылку", "Edit" : "Редактировать", "Delete" : "Удалить", - "Appointment link was copied to clipboard" : "Ссылка Встречи была скопирована в буфер обмена", - "Appointment link could not be copied to clipboard" : "Ссылка Встречи не может быть скопирована в буфер обмена", + "Appointment link was copied to clipboard" : "Ссылка на эту встречу скопирована в буфер обмена", + "Appointment link could not be copied to clipboard" : "Не удалось скопировать в буфер обмена ссылку на эту встречу", "Add new" : "Добавить новое", "Untitled calendar" : "Календарь без названия", "Disable calendar" : "Отключить календарь", @@ -73,7 +73,7 @@ OC.L10N.register( "Enter one address" : "Введите один адрес", "Sending email …" : "Отправка сообщения…", "Copy subscription link" : "Скопировать ссылку на подписку", - "Copying link …" : "Копирование ссылки ...", + "Copying link …" : "Копирование ссылки…", "Copied link" : "Ссылка скопирована", "Could not copy link" : "Не удалось скопировать ссылку", "Copy embedding code" : "Скопировать код встраивания", @@ -89,7 +89,7 @@ OC.L10N.register( "Unpublishing calendar failed" : "Не удалось закрыть публичный доступ к календарю", "Share with users or groups" : "Поделиться с пользователями или группами", "No users or groups" : "Пользователи или группы отсутствуют", - "can edit" : "разрешить редактировать", + "can edit" : "может ред.", "Unshare with {displayName}" : "Отменить общий доступ для {displayName}", "An error occurred, unable to change the unshare the calendar." : "Произошла ошибка, не удалось закрыть доступ к календарю.", "An error occurred, unable to change the permission of the share." : "Произошла ошибка, не удалось изменить разрешения для общего ресурса.", @@ -144,6 +144,10 @@ OC.L10N.register( "Actions" : "Действия", "Create event" : "Создать событие", "Show shortcuts" : "Показать горячие клавиши", + "Editor" : "Редактор", + "Close editor" : "Закрыть редактор", + "Save edited event" : "Сохранить изменённое событие", + "Delete edited event" : "Удалить изменённое событие", "Enable birthday calendar" : "Включить календарь дней рождения", "Show tasks in calendar" : "Показывать задачи в календаре", "Enable simplified editor" : "Использовать упрощённый редактор", @@ -201,7 +205,6 @@ OC.L10N.register( "Edit appointment" : "Редактировать встречу", "Save" : "Сохранить", "Update" : "Обновить", - "Your appointment is booked" : "Вы записаны на встречу", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Мы отправили вам электронное письмо с подробной информацией. Пожалуйста, подтвердите свою встречу, используя ссылку в письме. Теперь вы можете закрыть эту страницу.", "Your name" : "Ваше имя", "Your email address" : "Ваш адрес электронной почты", @@ -228,7 +231,18 @@ OC.L10N.register( "_hour_::_hours_" : ["час","часа","часов","часы"], "_day_::_days_" : ["день","дня","дней","дни"], "_week_::_weeks_" : ["неделя","недель","недель","недели"], + "Suggested" : "Предложенный", "Available" : "Доступный", + "Not available" : "Не доступен", + "Checking availability" : "Проверка доступности", + "Invitation accepted" : "Приглашение принято", + "Accepted {organizerName}'s invitation" : "Принято приглашение от {organizerName}", + "Invitation declined" : "Приглашение отклонено", + "Declined {organizerName}'s invitation" : "Отклонено приглашение от {organizerName}", + "Invitation is delegated" : "Приглашение делегировано", + "Participation marked as tentative" : "Участие обозначено как «под вопросом»", + "Invitation sent" : "Приглашение отправлено", + "Has not responded to {organizerName}'s invitation yet" : "Ответ на приглашение от {organizerName} ещё не отправлен", "Availability of attendees, resources and rooms" : "Доступность участников, ресурсов и комнат", "{organizer} (organizer)" : "{organizer} (организатор)", "Free" : "Свободен", @@ -360,6 +374,7 @@ OC.L10N.register( "Close" : "Закрыть", "Show more details" : "Подробные сведения", "Subscribe to {name}" : "Подписаться на {name}", + "Export {name}" : "Экспортировать {name}", "Anniversary" : "Годовщина", "Appointment" : "Встреча", "Business" : "Работа", diff --git a/l10n/ru.json b/l10n/ru.json index 17e1ecee3c33caa2a47f1ea17069810a6e25ce52..c1eb821f6e9341bebd15ee47ae37875b8b6b9324 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -10,12 +10,12 @@ "Cheers!" : "Удачи!", "Upcoming events" : "Приближающиеся события", "Appointments" : "Мероприятия", - "Schedule appointment \"%s\"" : "Запланировать встречу \"%s\"", + "Schedule appointment \"%s\"" : "Запланировать встречу «%s»", "Schedule an appointment" : "Запланировать встречу", "Prepare for %s" : "Подготовиться к %s", "Follow up for %s" : "Последующие действия для %s", - "Your appointment \"%s\" needs confirmation" : "Ваша встреча \"%s\" требует подтверждения", - "Dear %s, please confirm your booking" : "Уважаемый %s, пожалуйста, подтвердите ваше бронирование", + "Your appointment \"%s\" needs confirmation" : "Ваша встреча «%s» требует подтверждения", + "Dear %s, please confirm your booking" : "Уважаемый %s, подтвердите своё бронирование", "Confirm" : "Подтвердить", "This confirmation link expires in %s hours." : "Срок действия этой ссылки для подтверждения истекает через %s часов.", "If you wish to cancel the appointment after all, please contact your organizer." : "Если вы хотите отменить встречу, пожалуйста, свяжитесь с организатором.", @@ -42,8 +42,8 @@ "Copy link" : "Копировать ссылку", "Edit" : "Редактировать", "Delete" : "Удалить", - "Appointment link was copied to clipboard" : "Ссылка Встречи была скопирована в буфер обмена", - "Appointment link could not be copied to clipboard" : "Ссылка Встречи не может быть скопирована в буфер обмена", + "Appointment link was copied to clipboard" : "Ссылка на эту встречу скопирована в буфер обмена", + "Appointment link could not be copied to clipboard" : "Не удалось скопировать в буфер обмена ссылку на эту встречу", "Add new" : "Добавить новое", "Untitled calendar" : "Календарь без названия", "Disable calendar" : "Отключить календарь", @@ -71,7 +71,7 @@ "Enter one address" : "Введите один адрес", "Sending email …" : "Отправка сообщения…", "Copy subscription link" : "Скопировать ссылку на подписку", - "Copying link …" : "Копирование ссылки ...", + "Copying link …" : "Копирование ссылки…", "Copied link" : "Ссылка скопирована", "Could not copy link" : "Не удалось скопировать ссылку", "Copy embedding code" : "Скопировать код встраивания", @@ -87,7 +87,7 @@ "Unpublishing calendar failed" : "Не удалось закрыть публичный доступ к календарю", "Share with users or groups" : "Поделиться с пользователями или группами", "No users or groups" : "Пользователи или группы отсутствуют", - "can edit" : "разрешить редактировать", + "can edit" : "может ред.", "Unshare with {displayName}" : "Отменить общий доступ для {displayName}", "An error occurred, unable to change the unshare the calendar." : "Произошла ошибка, не удалось закрыть доступ к календарю.", "An error occurred, unable to change the permission of the share." : "Произошла ошибка, не удалось изменить разрешения для общего ресурса.", @@ -142,6 +142,10 @@ "Actions" : "Действия", "Create event" : "Создать событие", "Show shortcuts" : "Показать горячие клавиши", + "Editor" : "Редактор", + "Close editor" : "Закрыть редактор", + "Save edited event" : "Сохранить изменённое событие", + "Delete edited event" : "Удалить изменённое событие", "Enable birthday calendar" : "Включить календарь дней рождения", "Show tasks in calendar" : "Показывать задачи в календаре", "Enable simplified editor" : "Использовать упрощённый редактор", @@ -199,7 +203,6 @@ "Edit appointment" : "Редактировать встречу", "Save" : "Сохранить", "Update" : "Обновить", - "Your appointment is booked" : "Вы записаны на встречу", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Мы отправили вам электронное письмо с подробной информацией. Пожалуйста, подтвердите свою встречу, используя ссылку в письме. Теперь вы можете закрыть эту страницу.", "Your name" : "Ваше имя", "Your email address" : "Ваш адрес электронной почты", @@ -226,7 +229,18 @@ "_hour_::_hours_" : ["час","часа","часов","часы"], "_day_::_days_" : ["день","дня","дней","дни"], "_week_::_weeks_" : ["неделя","недель","недель","недели"], + "Suggested" : "Предложенный", "Available" : "Доступный", + "Not available" : "Не доступен", + "Checking availability" : "Проверка доступности", + "Invitation accepted" : "Приглашение принято", + "Accepted {organizerName}'s invitation" : "Принято приглашение от {organizerName}", + "Invitation declined" : "Приглашение отклонено", + "Declined {organizerName}'s invitation" : "Отклонено приглашение от {organizerName}", + "Invitation is delegated" : "Приглашение делегировано", + "Participation marked as tentative" : "Участие обозначено как «под вопросом»", + "Invitation sent" : "Приглашение отправлено", + "Has not responded to {organizerName}'s invitation yet" : "Ответ на приглашение от {organizerName} ещё не отправлен", "Availability of attendees, resources and rooms" : "Доступность участников, ресурсов и комнат", "{organizer} (organizer)" : "{organizer} (организатор)", "Free" : "Свободен", @@ -358,6 +372,7 @@ "Close" : "Закрыть", "Show more details" : "Подробные сведения", "Subscribe to {name}" : "Подписаться на {name}", + "Export {name}" : "Экспортировать {name}", "Anniversary" : "Годовщина", "Appointment" : "Встреча", "Business" : "Работа", diff --git a/l10n/sc.js b/l10n/sc.js index da505b8d6abf8fb59fe2b7cea337ed7eff12a666..27b3521fc0f15e456d912d7cc509244cf5efc03f 100644 --- a/l10n/sc.js +++ b/l10n/sc.js @@ -11,6 +11,11 @@ OC.L10N.register( "Open »%s«" : "Aberi »%s«", "Cheers!" : "Salude!", "Upcoming events" : "Eventos abarrados", + "Appointments" : "Apuntamentos", + "Confirm" : "Cunfirma", + "Date:" : "Data:", + "Where:" : "Ue:", + "Description:" : "Descritzione:", "Calendar" : "Calendàriu", "A Calendar app for Nextcloud" : "Un'aplicatzione de calendàriu pro Nextcloud", "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "S'aplicatzione Calendar est un'interfache gràfica pro su serbidore CalDAVde Nextcloud. Sincroniza in manera fàtzile is eventos intre is vàrios dispositivos e modìfica•ddos in lìnia.\n\n* 🚀 **Integratzione cun àteras aplicatziones de Nextcloud!** Pro immoe Cuntatos e àteras sunt arribende.\n* 🌐 **Suportu WebCal!** Boles bìdere is partidas de s'iscuadra tua in su calendàriu? Perunu problema!\n* 🙋 **Partetzipantes!** Invita is persones a is eventos tuos\n* ⏰ **Lìberu/Ocupadu!** Càstia candu is partetzipantes sunt disponìbiles pro ddus cuntatare\n* ⏰ **Promemòria!** Imposta avisos pro is eventos in su navigadore e in sa posta eletrònica\n* 🔍 Chirca! Agata is eventos tuos in manera fàtzile\n* ☑️  Atividades! Controlla is atividades cun data de iscadèntzia deretu in su calendàriu\n* 🙈 **No semus torrende a inventare sa roda!** Basadu in is librerias bellas [c-dav](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) e [fullcalendar](https://github.com/fullcalendar/fullcalendar).", @@ -25,6 +30,9 @@ OC.L10N.register( "Week" : "Chida", "Month" : "Mese", "List" : "Lista", + "Preview" : "Anteprima", + "Copy link" : "Còpia ligòngiu", + "Edit" : "Modìfica", "Delete" : "Cantzella", "Untitled calendar" : "Calendàriu chene tìtulu", "Edit name" : "Modìfica nùmene", @@ -32,6 +40,7 @@ OC.L10N.register( "Edit color" : "Modìfica su colore", "Saving color …" : "Sarvende su colore …", "Copy private link" : "Còpia ligòngiu privadu", + "Export" : "Esporta", "Unshare from me" : "Annulla sa cumpartzidura cun me", "An error occurred, unable to change visibility of the calendar." : "B'at àpidu un'errore, no at fatu a cambiare sa visibilidade de su calendàriu.", "An error occurred, unable to delete the calendar." : "B'at àpidu un'errore, no at fatu a cantzellare su calendàriu.", @@ -84,6 +93,7 @@ OC.L10N.register( "Deleted" : "Cantzelladu", "Restore" : "Riprìstina", "Delete permanently" : "Cantzella in manera permanente", + "Empty trash bin" : "Bòida s'àliga", "Untitled element" : "Elementu chene tìtulu", "Could not load deleted calendars and objects" : "No at fatu a carrigare is calendàrios e is ogetos cantzellados", "Could not restore calendar or event" : "No at fatu a recuperare su calendàriu o s'eventu", @@ -132,9 +142,20 @@ OC.L10N.register( "CalDAV link could not be copied to clipboard." : "No at fatu a copiare su ligòngiu CalDAV in punta de billete.", "Location" : "Positzione", "Description" : "Descritzione", + "Visibility" : "Visibilidade", + "Duration" : "Durata", + "to" : "a", + "Add" : "Agiunghe", "Monday" : "Lunis", + "Tuesday" : "Martis", + "Wednesday" : "Mércuris", + "Thursday" : "Giòbia", + "Friday" : "Chenàbura", + "Saturday" : "Sàbudu", + "Sunday" : "Domìnigu", "Save" : "Sarva", "Update" : "Agiorna", + "Your email address" : "Indiritzu tuo de posta eletrònica", "before at" : "antis de is", "Notification" : "Notìfica", "Email" : "Posta eletrònica", @@ -153,6 +174,8 @@ OC.L10N.register( "_hour_::_hours_" : ["ora","oras"], "_day_::_days_" : ["die","dies"], "_week_::_weeks_" : ["chida","chidas"], + "Available" : "A disponimentu", + "Not available" : "No a disponimentu", "Availability of attendees, resources and rooms" : "Disponibilidade de partetzipantes, resursas e aposentos", "{organizer} (organizer)" : "{organizer} (chie organizat)", "Free" : "Lìberu", @@ -160,6 +183,8 @@ OC.L10N.register( "Busy" : "Faghende cosa", "Out of office" : "Foras de serbìtziu", "Unknown" : "Non connotu", + "Accept" : "Atzeta", + "Decline" : "Refuda", "Tentative" : "Intentu", "Create Talk room for this event" : "Crea un'aposentu Talk pro custu eventu", "Show busy times" : "Mustra oras ocupadas", @@ -229,6 +254,7 @@ OC.L10N.register( "Please enter a valid date and time" : "Inserta•nche una data e un'ora bàlidas", "Type to search time zone" : "Iscrire pro chircare fusu oràriu", "Global" : "Globale", + "Time:" : "Tempus:", "Personal" : "Personale", "The automatic time zone detection determined your time zone to be UTC.\nThis is most likely the result of security measures of your web browser.\nPlease set your time zone manually in the calendar settings." : "Sa rilevada automàtica de su fusu oràriu at determinadu ca su tuo est UTC.\nEst probàbile chi custu siat su resurtadu de calecuna mesura de seguridade de su navigadore tuo.\nImposta su fusu oràriu tuo a manu in is impostatziones de su calendàriu.", "Your configured time zone ({timezoneId}) was not found. Falling back to UTC.\nPlease change your time zone in the settings and report this issue." : "Su fusu oràriu cunfiguradu ({timezoneId}) no est istadu agatadu. Torro a s'UTC.\nCàmbia su fusu oràriu tuo in is impostatziones e signala custu problema.", @@ -307,6 +333,7 @@ OC.L10N.register( "Create a new event or change the visible time-range" : "Crea un'eventu nou o càmbia s'intervallu de tempus visìbile", "It might have been deleted, or there was a typo in a link" : "Fortzis est istadu cantzelladu, o b'at àpidu un'errore de digitatzione in unu ligòngiu", "It might have been deleted, or there was a typo in the link" : "Fortzis est istadu cantzelladu, o b'at àpidu un'errore de digitatzione in suligòngiu", + "Other" : "Àteru", "When shared show" : "Cando si cumpartzit, mustra•ddu", "When shared show full event" : "Cando si cumpartzit mustra totu s'eventu", "When shared show only busy" : "Cando si cumpartzit, mustra isceti ocupadu", @@ -331,7 +358,10 @@ OC.L10N.register( "Meditation" : "Meditatzione", "Relaxing" : "Pausende", "Relax" : "Pàusu", + "Commuting" : "Biagende", + "Invoice" : "Fatura", "Presentation" : "Presentatzione", + "Talk" : "Faedda", "Camping" : "Campègiu", "Camp" : "S'acampare", "Movie" : "Film", @@ -351,6 +381,7 @@ OC.L10N.register( "Football" : "Fùbalu", "Gaming" : "Vìdeogiogos", "Drive" : "Ghiare", + "Driving" : "Guida", "Bicycle" : "Bicicleta", "Cycle" : "Pedalare", "Biking" : "Pedalende", @@ -369,6 +400,7 @@ OC.L10N.register( "Doctor" : "Dotore", "Health" : "Salude", "Dentist" : "Dentista", + "Hospital" : "Ispidale", "Interview" : "Intervista", "Training" : "Allenare", "Practice" : "Praticare", @@ -407,12 +439,14 @@ OC.L10N.register( "Party" : "Festa", "Celebration" : "Afestare", "Celebrate" : "Afestare", + "Birthday" : "Cumpleannu", "Shopping" : "Còmporas", "Skate" : "Skate", "Skateboard" : "Tàula de skate", "Wine tasting" : "Tastare binu", "Golf" : "Golf", "Dinner" : "Chena", - "Lunch" : "Pràngiu" + "Lunch" : "Pràngiu", + "User not found" : "Utèntzia no agatada" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/sc.json b/l10n/sc.json index 279866c2df114cd657fa4c429d9be92a91474f43..de8e855807a60eddb8696bf2c0eef175bd167d61 100644 --- a/l10n/sc.json +++ b/l10n/sc.json @@ -9,6 +9,11 @@ "Open »%s«" : "Aberi »%s«", "Cheers!" : "Salude!", "Upcoming events" : "Eventos abarrados", + "Appointments" : "Apuntamentos", + "Confirm" : "Cunfirma", + "Date:" : "Data:", + "Where:" : "Ue:", + "Description:" : "Descritzione:", "Calendar" : "Calendàriu", "A Calendar app for Nextcloud" : "Un'aplicatzione de calendàriu pro Nextcloud", "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "S'aplicatzione Calendar est un'interfache gràfica pro su serbidore CalDAVde Nextcloud. Sincroniza in manera fàtzile is eventos intre is vàrios dispositivos e modìfica•ddos in lìnia.\n\n* 🚀 **Integratzione cun àteras aplicatziones de Nextcloud!** Pro immoe Cuntatos e àteras sunt arribende.\n* 🌐 **Suportu WebCal!** Boles bìdere is partidas de s'iscuadra tua in su calendàriu? Perunu problema!\n* 🙋 **Partetzipantes!** Invita is persones a is eventos tuos\n* ⏰ **Lìberu/Ocupadu!** Càstia candu is partetzipantes sunt disponìbiles pro ddus cuntatare\n* ⏰ **Promemòria!** Imposta avisos pro is eventos in su navigadore e in sa posta eletrònica\n* 🔍 Chirca! Agata is eventos tuos in manera fàtzile\n* ☑️  Atividades! Controlla is atividades cun data de iscadèntzia deretu in su calendàriu\n* 🙈 **No semus torrende a inventare sa roda!** Basadu in is librerias bellas [c-dav](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) e [fullcalendar](https://github.com/fullcalendar/fullcalendar).", @@ -23,6 +28,9 @@ "Week" : "Chida", "Month" : "Mese", "List" : "Lista", + "Preview" : "Anteprima", + "Copy link" : "Còpia ligòngiu", + "Edit" : "Modìfica", "Delete" : "Cantzella", "Untitled calendar" : "Calendàriu chene tìtulu", "Edit name" : "Modìfica nùmene", @@ -30,6 +38,7 @@ "Edit color" : "Modìfica su colore", "Saving color …" : "Sarvende su colore …", "Copy private link" : "Còpia ligòngiu privadu", + "Export" : "Esporta", "Unshare from me" : "Annulla sa cumpartzidura cun me", "An error occurred, unable to change visibility of the calendar." : "B'at àpidu un'errore, no at fatu a cambiare sa visibilidade de su calendàriu.", "An error occurred, unable to delete the calendar." : "B'at àpidu un'errore, no at fatu a cantzellare su calendàriu.", @@ -82,6 +91,7 @@ "Deleted" : "Cantzelladu", "Restore" : "Riprìstina", "Delete permanently" : "Cantzella in manera permanente", + "Empty trash bin" : "Bòida s'àliga", "Untitled element" : "Elementu chene tìtulu", "Could not load deleted calendars and objects" : "No at fatu a carrigare is calendàrios e is ogetos cantzellados", "Could not restore calendar or event" : "No at fatu a recuperare su calendàriu o s'eventu", @@ -130,9 +140,20 @@ "CalDAV link could not be copied to clipboard." : "No at fatu a copiare su ligòngiu CalDAV in punta de billete.", "Location" : "Positzione", "Description" : "Descritzione", + "Visibility" : "Visibilidade", + "Duration" : "Durata", + "to" : "a", + "Add" : "Agiunghe", "Monday" : "Lunis", + "Tuesday" : "Martis", + "Wednesday" : "Mércuris", + "Thursday" : "Giòbia", + "Friday" : "Chenàbura", + "Saturday" : "Sàbudu", + "Sunday" : "Domìnigu", "Save" : "Sarva", "Update" : "Agiorna", + "Your email address" : "Indiritzu tuo de posta eletrònica", "before at" : "antis de is", "Notification" : "Notìfica", "Email" : "Posta eletrònica", @@ -151,6 +172,8 @@ "_hour_::_hours_" : ["ora","oras"], "_day_::_days_" : ["die","dies"], "_week_::_weeks_" : ["chida","chidas"], + "Available" : "A disponimentu", + "Not available" : "No a disponimentu", "Availability of attendees, resources and rooms" : "Disponibilidade de partetzipantes, resursas e aposentos", "{organizer} (organizer)" : "{organizer} (chie organizat)", "Free" : "Lìberu", @@ -158,6 +181,8 @@ "Busy" : "Faghende cosa", "Out of office" : "Foras de serbìtziu", "Unknown" : "Non connotu", + "Accept" : "Atzeta", + "Decline" : "Refuda", "Tentative" : "Intentu", "Create Talk room for this event" : "Crea un'aposentu Talk pro custu eventu", "Show busy times" : "Mustra oras ocupadas", @@ -227,6 +252,7 @@ "Please enter a valid date and time" : "Inserta•nche una data e un'ora bàlidas", "Type to search time zone" : "Iscrire pro chircare fusu oràriu", "Global" : "Globale", + "Time:" : "Tempus:", "Personal" : "Personale", "The automatic time zone detection determined your time zone to be UTC.\nThis is most likely the result of security measures of your web browser.\nPlease set your time zone manually in the calendar settings." : "Sa rilevada automàtica de su fusu oràriu at determinadu ca su tuo est UTC.\nEst probàbile chi custu siat su resurtadu de calecuna mesura de seguridade de su navigadore tuo.\nImposta su fusu oràriu tuo a manu in is impostatziones de su calendàriu.", "Your configured time zone ({timezoneId}) was not found. Falling back to UTC.\nPlease change your time zone in the settings and report this issue." : "Su fusu oràriu cunfiguradu ({timezoneId}) no est istadu agatadu. Torro a s'UTC.\nCàmbia su fusu oràriu tuo in is impostatziones e signala custu problema.", @@ -305,6 +331,7 @@ "Create a new event or change the visible time-range" : "Crea un'eventu nou o càmbia s'intervallu de tempus visìbile", "It might have been deleted, or there was a typo in a link" : "Fortzis est istadu cantzelladu, o b'at àpidu un'errore de digitatzione in unu ligòngiu", "It might have been deleted, or there was a typo in the link" : "Fortzis est istadu cantzelladu, o b'at àpidu un'errore de digitatzione in suligòngiu", + "Other" : "Àteru", "When shared show" : "Cando si cumpartzit, mustra•ddu", "When shared show full event" : "Cando si cumpartzit mustra totu s'eventu", "When shared show only busy" : "Cando si cumpartzit, mustra isceti ocupadu", @@ -329,7 +356,10 @@ "Meditation" : "Meditatzione", "Relaxing" : "Pausende", "Relax" : "Pàusu", + "Commuting" : "Biagende", + "Invoice" : "Fatura", "Presentation" : "Presentatzione", + "Talk" : "Faedda", "Camping" : "Campègiu", "Camp" : "S'acampare", "Movie" : "Film", @@ -349,6 +379,7 @@ "Football" : "Fùbalu", "Gaming" : "Vìdeogiogos", "Drive" : "Ghiare", + "Driving" : "Guida", "Bicycle" : "Bicicleta", "Cycle" : "Pedalare", "Biking" : "Pedalende", @@ -367,6 +398,7 @@ "Doctor" : "Dotore", "Health" : "Salude", "Dentist" : "Dentista", + "Hospital" : "Ispidale", "Interview" : "Intervista", "Training" : "Allenare", "Practice" : "Praticare", @@ -405,12 +437,14 @@ "Party" : "Festa", "Celebration" : "Afestare", "Celebrate" : "Afestare", + "Birthday" : "Cumpleannu", "Shopping" : "Còmporas", "Skate" : "Skate", "Skateboard" : "Tàula de skate", "Wine tasting" : "Tastare binu", "Golf" : "Golf", "Dinner" : "Chena", - "Lunch" : "Pràngiu" + "Lunch" : "Pràngiu", + "User not found" : "Utèntzia no agatada" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/si.js b/l10n/si.js index 3ceaf1dc6fd289de0d95e15911201a40a17dfd04..048e2b0cb748528a15f4f998eed3b7e3e5219023 100644 --- a/l10n/si.js +++ b/l10n/si.js @@ -5,6 +5,10 @@ OC.L10N.register( "Provided email-address is not valid" : "සපයා ඇති විද්‍යුත් තැපැල් ලිපිනය වලංගු නොවේ", "Hello," : "ආයුබෝවන්,", "Cheers!" : "ජයවේවා!", + "Confirm" : "තහවුරු කරන්න", + "Date:" : "දිනය:", + "Where:" : "කොහේද:", + "Description:" : "විස්තරය", "Calendar" : "දින දර්ශනය", "A Calendar app for Nextcloud" : "නෙක්ස්ට් ක්ලවුඩ් සඳහා දින දර්ශන යෙදුමකි", "Previous day" : "පසුගිය දිනය", @@ -18,27 +22,51 @@ OC.L10N.register( "Week" : "සතිය", "Month" : "මාසය", "List" : "ලැයිස්තුව", + "Preview" : "පෙරදසුන", + "Copy link" : "සබැඳිය පිටපත් කරන්න", + "Edit" : "සංස්කරණය", "Untitled calendar" : "නිර්ණාමික දින දර්ශනය", "Edit name" : "නම සංස්කරණය", "Saving name …" : "සුරැකීමේ වර්ණය …", "Edit color" : "වර්ණය සංස්කරණය", "Saving color …" : "සුරැකීමේ වර්ණය …", "Copy private link" : "පුද්. සබැඳිය පිටපත් කරන්න", + "Name" : "නම", + "Restore" : "ප්‍රතිෂ්ථාපනය", "Filename" : "ගොනු නාමය", "Cancel" : "අවලංගු කරන්න", "Actions" : "ක්‍රියාමාර්ග", "Location" : "ස්ථානය", "Description" : "විස්තරය", + "Duration" : "කාල සීමාව", + "Add" : "එකතු කරන්න", "Monday" : "සඳුදා", + "Tuesday" : "අඟහරුවාදා", + "Wednesday" : "බදාදා", + "Thursday" : "බ්‍රහස්පතින්දා", + "Friday" : "සිකුරාදා", + "Saturday" : "සෙනසුරාදා", + "Sunday" : "ඉරිදා", "Save" : "සුරකින්න", "Update" : "යාවත්කාල", "Email" : "විද්‍යුත් තැපෑල", + "Available" : "ඇත", "Busy" : "කාර්යබහුලයි", "Unknown" : "නොදන්නා", + "Accept" : "පිළිගන්න", + "Decline" : "ප්‍රතික්ෂේප", "More" : "තව", + "Time:" : "වේලාව:", "Personal" : "පුද්ගලික", "Details" : "විස්තර", "Close" : "වසන්න", - "Anniversary" : "සංවත්සරය" + "Anniversary" : "සංවත්සරය", + "Daily" : "දිනපතා", + "Weekly" : "සතිපතා", + "Next" : "ඊළඟ", + "Year" : "වර්ෂය", + "Other" : "වෙනත්", + "Mail" : "තැපෑල", + "Birthday" : "උපන් දිනය" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/si.json b/l10n/si.json index 4fa145318f099d02dc0b5257d3edac6fe6b7545e..685864aaae1e077f13656e494dcffcad0ffaccfe 100644 --- a/l10n/si.json +++ b/l10n/si.json @@ -3,6 +3,10 @@ "Provided email-address is not valid" : "සපයා ඇති විද්‍යුත් තැපැල් ලිපිනය වලංගු නොවේ", "Hello," : "ආයුබෝවන්,", "Cheers!" : "ජයවේවා!", + "Confirm" : "තහවුරු කරන්න", + "Date:" : "දිනය:", + "Where:" : "කොහේද:", + "Description:" : "විස්තරය", "Calendar" : "දින දර්ශනය", "A Calendar app for Nextcloud" : "නෙක්ස්ට් ක්ලවුඩ් සඳහා දින දර්ශන යෙදුමකි", "Previous day" : "පසුගිය දිනය", @@ -16,27 +20,51 @@ "Week" : "සතිය", "Month" : "මාසය", "List" : "ලැයිස්තුව", + "Preview" : "පෙරදසුන", + "Copy link" : "සබැඳිය පිටපත් කරන්න", + "Edit" : "සංස්කරණය", "Untitled calendar" : "නිර්ණාමික දින දර්ශනය", "Edit name" : "නම සංස්කරණය", "Saving name …" : "සුරැකීමේ වර්ණය …", "Edit color" : "වර්ණය සංස්කරණය", "Saving color …" : "සුරැකීමේ වර්ණය …", "Copy private link" : "පුද්. සබැඳිය පිටපත් කරන්න", + "Name" : "නම", + "Restore" : "ප්‍රතිෂ්ථාපනය", "Filename" : "ගොනු නාමය", "Cancel" : "අවලංගු කරන්න", "Actions" : "ක්‍රියාමාර්ග", "Location" : "ස්ථානය", "Description" : "විස්තරය", + "Duration" : "කාල සීමාව", + "Add" : "එකතු කරන්න", "Monday" : "සඳුදා", + "Tuesday" : "අඟහරුවාදා", + "Wednesday" : "බදාදා", + "Thursday" : "බ්‍රහස්පතින්දා", + "Friday" : "සිකුරාදා", + "Saturday" : "සෙනසුරාදා", + "Sunday" : "ඉරිදා", "Save" : "සුරකින්න", "Update" : "යාවත්කාල", "Email" : "විද්‍යුත් තැපෑල", + "Available" : "ඇත", "Busy" : "කාර්යබහුලයි", "Unknown" : "නොදන්නා", + "Accept" : "පිළිගන්න", + "Decline" : "ප්‍රතික්ෂේප", "More" : "තව", + "Time:" : "වේලාව:", "Personal" : "පුද්ගලික", "Details" : "විස්තර", "Close" : "වසන්න", - "Anniversary" : "සංවත්සරය" + "Anniversary" : "සංවත්සරය", + "Daily" : "දිනපතා", + "Weekly" : "සතිපතා", + "Next" : "ඊළඟ", + "Year" : "වර්ෂය", + "Other" : "වෙනත්", + "Mail" : "තැපෑල", + "Birthday" : "උපන් දිනය" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/sk.js b/l10n/sk.js index 9880c437ba96e34bec138ae0ec666daf51a01df9..75b12d086282f3fd9950164ea1eb4d0af1fc104e 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -201,7 +201,6 @@ OC.L10N.register( "Edit appointment" : "Upraviť stretnutie", "Save" : "Uložiť", "Update" : "Aktualizovať", - "Your appointment is booked" : "Váš termín je rezervovaný", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Poslali sme vám e-mail s podrobnosťami. Potvrďte svoj termín pomocou odkazu v e-maili. Teraz môžete túto stránku zatvoriť.", "Your name" : "Vaše meno", "Your email address" : "Vaša e-mail adresa", @@ -229,6 +228,7 @@ OC.L10N.register( "_day_::_days_" : ["deň","dni","dní","dní"], "_week_::_weeks_" : ["týždeň","týždne","týždňov","týždňov"], "Available" : "Dostupné", + "Not available" : "Nie je k dispozícií", "Availability of attendees, resources and rooms" : "Dostupnosť účastníkov, zdrojov a miestností", "{organizer} (organizer)" : "{organizer} (organizátor)", "Free" : "Voľný", diff --git a/l10n/sk.json b/l10n/sk.json index 40936bdc6cc07a3b358197217975e1e70da29b35..f6d84ac99df562e94ba123de1354f32b563a1f37 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -199,7 +199,6 @@ "Edit appointment" : "Upraviť stretnutie", "Save" : "Uložiť", "Update" : "Aktualizovať", - "Your appointment is booked" : "Váš termín je rezervovaný", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Poslali sme vám e-mail s podrobnosťami. Potvrďte svoj termín pomocou odkazu v e-maili. Teraz môžete túto stránku zatvoriť.", "Your name" : "Vaše meno", "Your email address" : "Vaša e-mail adresa", @@ -227,6 +226,7 @@ "_day_::_days_" : ["deň","dni","dní","dní"], "_week_::_weeks_" : ["týždeň","týždne","týždňov","týždňov"], "Available" : "Dostupné", + "Not available" : "Nie je k dispozícií", "Availability of attendees, resources and rooms" : "Dostupnosť účastníkov, zdrojov a miestností", "{organizer} (organizer)" : "{organizer} (organizátor)", "Free" : "Voľný", diff --git a/l10n/sl.js b/l10n/sl.js index 07a384c6e7d916caac2118c717f4660710527a96..afc464754b6a281bc3feea73e6ab5fd8ff7b41c3 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -30,6 +30,7 @@ OC.L10N.register( "Next day" : "Naslednji dan", "Next week" : "Naslednji teden", "Next month" : "Naslednji mesec", + "New event" : "Nov dogodek", "Today" : "Danes", "Day" : "Dan", "Week" : "Teden", @@ -46,6 +47,7 @@ OC.L10N.register( "Edit color" : "Uredi barvo", "Saving color …" : "Shranjevanje barve ...", "Copy private link" : "Kopiraj zasebno povezavo", + "Export" : "Izvozi", "Unshare from me" : "Prekini souporabo", "An error occurred, unable to change visibility of the calendar." : "Prišlo je do napake; ni mogoče spremeniti vidnosti koledarja.", "An error occurred, unable to delete the calendar." : "Prišlo je do napake; ni mogoče izbrisati koledarja.", @@ -159,6 +161,7 @@ OC.L10N.register( "Visibility" : "Vidnost", "Duration" : "Trajanje", "Increments" : "Časovno povečevanje", + "to" : "do", "Delete slot" : "Izbriši možnost", "Add" : "Dodaj", "Monday" : "ponedeljek", @@ -200,6 +203,7 @@ OC.L10N.register( "_day_::_days_" : ["dan","dneva","dneve","dni"], "_week_::_weeks_" : ["teden","tedna","tedne","tednov"], "Available" : "Na voljo", + "Not available" : "Ni na voljo", "Availability of attendees, resources and rooms" : "Razpoložljivost udeležencev, virov in sob", "{organizer} (organizer)" : "{organizer} (organizator)", "Free" : "Prosto", @@ -207,6 +211,8 @@ OC.L10N.register( "Busy" : "Zasedeno", "Out of office" : "Službena odsotnost", "Unknown" : "Neopredeljeno", + "Accept" : "Sprejmi", + "Decline" : "Zavrni", "Tentative" : "V usklajevanju", "Create Talk room for this event" : "Za dogodek ustvari povezavo Talk", "Show busy times" : "Pokaži urnike udeležencev", @@ -448,6 +454,7 @@ OC.L10N.register( "Football" : "Ameriški nogomet", "Gaming" : "Igrice", "Drive" : "Vožnja", + "Driving" : "Vožnja", "Bicycle" : "Kolo", "Cycle" : "Kolesarjenje", "Cycling" : "Kolesa", diff --git a/l10n/sl.json b/l10n/sl.json index ea33ced11ea894afb9e865b3980ed3c5fbe07904..04eab87a4c4c24e9f05e29b9eb83bcc8c8244916 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -28,6 +28,7 @@ "Next day" : "Naslednji dan", "Next week" : "Naslednji teden", "Next month" : "Naslednji mesec", + "New event" : "Nov dogodek", "Today" : "Danes", "Day" : "Dan", "Week" : "Teden", @@ -44,6 +45,7 @@ "Edit color" : "Uredi barvo", "Saving color …" : "Shranjevanje barve ...", "Copy private link" : "Kopiraj zasebno povezavo", + "Export" : "Izvozi", "Unshare from me" : "Prekini souporabo", "An error occurred, unable to change visibility of the calendar." : "Prišlo je do napake; ni mogoče spremeniti vidnosti koledarja.", "An error occurred, unable to delete the calendar." : "Prišlo je do napake; ni mogoče izbrisati koledarja.", @@ -157,6 +159,7 @@ "Visibility" : "Vidnost", "Duration" : "Trajanje", "Increments" : "Časovno povečevanje", + "to" : "do", "Delete slot" : "Izbriši možnost", "Add" : "Dodaj", "Monday" : "ponedeljek", @@ -198,6 +201,7 @@ "_day_::_days_" : ["dan","dneva","dneve","dni"], "_week_::_weeks_" : ["teden","tedna","tedne","tednov"], "Available" : "Na voljo", + "Not available" : "Ni na voljo", "Availability of attendees, resources and rooms" : "Razpoložljivost udeležencev, virov in sob", "{organizer} (organizer)" : "{organizer} (organizator)", "Free" : "Prosto", @@ -205,6 +209,8 @@ "Busy" : "Zasedeno", "Out of office" : "Službena odsotnost", "Unknown" : "Neopredeljeno", + "Accept" : "Sprejmi", + "Decline" : "Zavrni", "Tentative" : "V usklajevanju", "Create Talk room for this event" : "Za dogodek ustvari povezavo Talk", "Show busy times" : "Pokaži urnike udeležencev", @@ -446,6 +452,7 @@ "Football" : "Ameriški nogomet", "Gaming" : "Igrice", "Drive" : "Vožnja", + "Driving" : "Vožnja", "Bicycle" : "Kolo", "Cycle" : "Kolesarjenje", "Cycling" : "Kolesa", diff --git a/l10n/sq.js b/l10n/sq.js index a8dc1bb98f4cc3049cbaa943cfe5f7b64162e129..48de7d26b80b2d2ed12678dc4a66330053044af6 100644 --- a/l10n/sq.js +++ b/l10n/sq.js @@ -6,46 +6,76 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Donim t'ju informonim se %s ka publikuar kalendarin »%s«", "Open »%s«" : "Hap »%s«", "Cheers!" : "Gëzuar!", + "Confirm" : "Konfirmo", + "Where:" : "Ku:", + "Description:" : "Përshkrimi:", "Calendar" : "Kalendar", + "New event" : "Veprimtari e re", "Today" : "Sot", "Day" : "Ditë", "Week" : "Javë", "Month" : "Muaj", "List" : "List", + "Preview" : "Parapamje ", + "Copy link" : "Kopjo linkun", + "Edit" : "Përpuno", "Delete" : "Fshije", + "Export" : "Eksport", "Share link" : "Ndani lidhjen", "Share with users or groups" : "Nda me përdoruesit ose grupet", "can edit" : "mund të përpunojnë", "New calendar" : "Kalendar i ri", + "Name" : "Emri", + "Deleted" : "E fshirë", + "Restore" : "Rikthe", + "Delete permanently" : "Fshije përgjithmonë", "Filename" : "Emri i skedarit", "Cancel" : "Anuloje", "Automatic" : "Automatike", + "List view" : "Pamje listë", "Actions" : "Veprimet", "Show week numbers" : "Shfaq numra javësh", "Settings & import" : "Konfigurimet dhe importi", "Location" : "Vendndodhje", "Description" : "Përshkrim", + "to" : "te", + "Add" : "Shto", "Monday" : "E hënë", + "Tuesday" : "E martë", + "Wednesday" : "E mërkurë", + "Thursday" : "E enjte", + "Friday" : "E premte", + "Saturday" : "E shtunë", + "Sunday" : "E dielë", "Save" : "Ruaj", "Update" : "Përditësoje", + "Your email address" : "Adresa juaj email", "Notification" : "Njoftim", "Email" : "Emaili", "Unknown" : "I/E panjohur", + "Accept" : "Prano", + "Decline" : "Refuzo", "Tentative" : "Tentativë", + "Send email" : "Dërgo email", "All day" : "Gjithë ditën", "Repeat" : "Përsërite", "never" : "kurrë", "after" : "pas", + "available" : "në gjëndje", "More" : "Më tepër", "Global" : "Globale", "Personal" : "Personale", "Details" : "Detajet", "Attendees" : "Pjesëmarrës", + "Resources" : "Burimet", "Close" : "Mbylle", "Anniversary" : "Përvjetor", "Week {number} of {year}" : "Java e {number} e {year}", "Daily" : "Përditë", "Weekly" : "Çdo javë", + "Prev" : "I mëparshëm", + "Next" : "Tjetër", + "Other" : "Tjetër", "When shared show full event" : "Kur ndahet shfaqje e veprimtarisë së plotë", "When shared show only busy" : "Kur ndahet shfaqje vetëm i zënë", "When shared hide this event" : "Kur ndahet fshihe këtë veprimtari", @@ -54,6 +84,7 @@ OC.L10N.register( "Categories" : "Kategoritë", "Presentation" : "Paraqitje", "Office" : "Zyrë", - "Mail" : "Posta" + "Mail" : "Posta", + "Birthday" : "Datëlindje" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/sq.json b/l10n/sq.json index 217e60f81252c8fba99da5522b415f11fd93313f..e9da9439326c7fa1893e3a0b2aeb32408321bc8d 100644 --- a/l10n/sq.json +++ b/l10n/sq.json @@ -4,46 +4,76 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Donim t'ju informonim se %s ka publikuar kalendarin »%s«", "Open »%s«" : "Hap »%s«", "Cheers!" : "Gëzuar!", + "Confirm" : "Konfirmo", + "Where:" : "Ku:", + "Description:" : "Përshkrimi:", "Calendar" : "Kalendar", + "New event" : "Veprimtari e re", "Today" : "Sot", "Day" : "Ditë", "Week" : "Javë", "Month" : "Muaj", "List" : "List", + "Preview" : "Parapamje ", + "Copy link" : "Kopjo linkun", + "Edit" : "Përpuno", "Delete" : "Fshije", + "Export" : "Eksport", "Share link" : "Ndani lidhjen", "Share with users or groups" : "Nda me përdoruesit ose grupet", "can edit" : "mund të përpunojnë", "New calendar" : "Kalendar i ri", + "Name" : "Emri", + "Deleted" : "E fshirë", + "Restore" : "Rikthe", + "Delete permanently" : "Fshije përgjithmonë", "Filename" : "Emri i skedarit", "Cancel" : "Anuloje", "Automatic" : "Automatike", + "List view" : "Pamje listë", "Actions" : "Veprimet", "Show week numbers" : "Shfaq numra javësh", "Settings & import" : "Konfigurimet dhe importi", "Location" : "Vendndodhje", "Description" : "Përshkrim", + "to" : "te", + "Add" : "Shto", "Monday" : "E hënë", + "Tuesday" : "E martë", + "Wednesday" : "E mërkurë", + "Thursday" : "E enjte", + "Friday" : "E premte", + "Saturday" : "E shtunë", + "Sunday" : "E dielë", "Save" : "Ruaj", "Update" : "Përditësoje", + "Your email address" : "Adresa juaj email", "Notification" : "Njoftim", "Email" : "Emaili", "Unknown" : "I/E panjohur", + "Accept" : "Prano", + "Decline" : "Refuzo", "Tentative" : "Tentativë", + "Send email" : "Dërgo email", "All day" : "Gjithë ditën", "Repeat" : "Përsërite", "never" : "kurrë", "after" : "pas", + "available" : "në gjëndje", "More" : "Më tepër", "Global" : "Globale", "Personal" : "Personale", "Details" : "Detajet", "Attendees" : "Pjesëmarrës", + "Resources" : "Burimet", "Close" : "Mbylle", "Anniversary" : "Përvjetor", "Week {number} of {year}" : "Java e {number} e {year}", "Daily" : "Përditë", "Weekly" : "Çdo javë", + "Prev" : "I mëparshëm", + "Next" : "Tjetër", + "Other" : "Tjetër", "When shared show full event" : "Kur ndahet shfaqje e veprimtarisë së plotë", "When shared show only busy" : "Kur ndahet shfaqje vetëm i zënë", "When shared hide this event" : "Kur ndahet fshihe këtë veprimtari", @@ -52,6 +82,7 @@ "Categories" : "Kategoritë", "Presentation" : "Paraqitje", "Office" : "Zyrë", - "Mail" : "Posta" + "Mail" : "Posta", + "Birthday" : "Datëlindje" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/sr.js b/l10n/sr.js index 9cb928a1f4981028cee2b1e6e5743022da7078c3..ae4e65f42678900dc5945919e77cf78c664fee38 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -6,16 +6,25 @@ OC.L10N.register( "We wanted to inform you that %s has published the calendar »%s«." : "Желимо да Вас обавестимо да је %s објавио календар »%s«.", "Open »%s«" : "Отвори »%s«", "Cheers!" : "Здраво!", + "Confirm" : "Потврди", + "Date:" : "Датум:", + "Where:" : "Место:", + "Description:" : "Опис:", "Calendar" : "Календар", "A Calendar app for Nextcloud" : "Календар апликација за Некстклауд", + "New event" : "Нови догађај", "Today" : "Данас", "Day" : "Дан", "Week" : "Недеља", "Month" : "Месец", "List" : "Излистај", + "Preview" : "Претпреглед", + "Copy link" : "Копирај везу", + "Edit" : "Измени", "Delete" : "Обриши", "Edit name" : "Измени име", "Copy private link" : "Копирај приватну везу", + "Export" : "Извези", "An error occurred, unable to delete the calendar." : "Догодила се грешка, не могу да обришем календар.", "Calendar link copied to clipboard." : "Веза календара копирана у оставу.", "Calendar link could not be copied to clipboard." : "Веза календара није могла да се копира у оставу.", @@ -26,36 +35,58 @@ OC.L10N.register( "can edit" : "може да мења", "Unshare with {displayName}" : "Уклони дељење са {displayName}", "New calendar" : "Нови календар", + "Name" : "Име", + "Deleted" : "Обрисано", + "Restore" : "Врати", + "Delete permanently" : "Обриши заувек", "Filename" : "Име фајла", "Cancel" : "Одустани", "Automatic" : "Аутоматски", "or" : "или", + "List view" : "Приказ листе", "Actions" : "Радње", "Show week numbers" : "Прикажи број седмице", "Show keyboard shortcuts" : "Прикажи пречице тастатуре", "Settings & import" : "Поставке & увоз", "Location" : "Локација", "Description" : "Опис", + "Duration" : "Трајање", + "to" : "за", + "Add" : "Додај", "Monday" : "Понедељак", + "Tuesday" : "Уторак", + "Wednesday" : "Среда", + "Thursday" : "Четвртак", + "Friday" : "Петак", + "Saturday" : "Субота", + "Sunday" : "Недеља", "Save" : "Сачувај", "Update" : "Ажурирај", + "Your email address" : "Адреса Ваше е-поште", "Notification" : "Обавештење", "Email" : "Е-пошта", + "Available" : "Доступно", "Busy" : "Заузет", "Unknown" : "Непознато", + "Accept" : "Прихвати", + "Decline" : "Одбиј", "Tentative" : "Условна потврда", + "Send email" : "Пошаљи е-пошту", "All day" : "Цео дан", "Repeat" : "Понављај", "never" : "никада", "after" : "након", + "available" : "доступно", "More" : "Остало", "Global" : "Цео свет", + "Time:" : "Време:", "Personal" : "Лично", "[Today]" : "[Данас]", "[Tomorrow]" : "[Сутра]", "[Yesterday]" : "[Јуче]", "Details" : "Детаљи", "Attendees" : "Присутни", + "Resources" : "Ресурси", "Close" : "Затвори", "Anniversary" : "Годишњица", "Week {number} of {year}" : "Недеља {number} у {year}", @@ -63,6 +94,10 @@ OC.L10N.register( "Weekly" : "недељно", "Untitled event" : "Неименовани догађај", "Untitled task" : "Неименовани задатак", + "Prev" : "Претходни", + "Next" : "Следећа", + "Year" : "Година", + "Other" : "Остало", "When shared show full event" : "Прикажи цео догађај када је догађај дељен", "When shared show only busy" : "Прикажи само да сте заузети када је догађај дељен", "When shared hide this event" : "Сакриј догађај када је догађај дељен", @@ -71,10 +106,14 @@ OC.L10N.register( "Canceled" : "Отказано", "Categories" : "Категорије", "Add this as a new category" : "Додај ово као нову категорију", + "Talk" : "Разговор", "Movie" : "Филм", "Cinema" : "Биоскоп", "Review" : "Претпреглед", "Mail" : "поштом", - "Dentist" : "Стоматолог" + "Dentist" : "Стоматолог", + "Hospital" : "Болница", + "Birthday" : "Рођендан", + "User not found" : "Корисник није нађен" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/l10n/sr.json b/l10n/sr.json index 2614c8e1574549cc5559cf334b7fb9c260edaa39..7a2a89281d4d5c6a2db2f618d69e2be3065d7a5f 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -4,16 +4,25 @@ "We wanted to inform you that %s has published the calendar »%s«." : "Желимо да Вас обавестимо да је %s објавио календар »%s«.", "Open »%s«" : "Отвори »%s«", "Cheers!" : "Здраво!", + "Confirm" : "Потврди", + "Date:" : "Датум:", + "Where:" : "Место:", + "Description:" : "Опис:", "Calendar" : "Календар", "A Calendar app for Nextcloud" : "Календар апликација за Некстклауд", + "New event" : "Нови догађај", "Today" : "Данас", "Day" : "Дан", "Week" : "Недеља", "Month" : "Месец", "List" : "Излистај", + "Preview" : "Претпреглед", + "Copy link" : "Копирај везу", + "Edit" : "Измени", "Delete" : "Обриши", "Edit name" : "Измени име", "Copy private link" : "Копирај приватну везу", + "Export" : "Извези", "An error occurred, unable to delete the calendar." : "Догодила се грешка, не могу да обришем календар.", "Calendar link copied to clipboard." : "Веза календара копирана у оставу.", "Calendar link could not be copied to clipboard." : "Веза календара није могла да се копира у оставу.", @@ -24,36 +33,58 @@ "can edit" : "може да мења", "Unshare with {displayName}" : "Уклони дељење са {displayName}", "New calendar" : "Нови календар", + "Name" : "Име", + "Deleted" : "Обрисано", + "Restore" : "Врати", + "Delete permanently" : "Обриши заувек", "Filename" : "Име фајла", "Cancel" : "Одустани", "Automatic" : "Аутоматски", "or" : "или", + "List view" : "Приказ листе", "Actions" : "Радње", "Show week numbers" : "Прикажи број седмице", "Show keyboard shortcuts" : "Прикажи пречице тастатуре", "Settings & import" : "Поставке & увоз", "Location" : "Локација", "Description" : "Опис", + "Duration" : "Трајање", + "to" : "за", + "Add" : "Додај", "Monday" : "Понедељак", + "Tuesday" : "Уторак", + "Wednesday" : "Среда", + "Thursday" : "Четвртак", + "Friday" : "Петак", + "Saturday" : "Субота", + "Sunday" : "Недеља", "Save" : "Сачувај", "Update" : "Ажурирај", + "Your email address" : "Адреса Ваше е-поште", "Notification" : "Обавештење", "Email" : "Е-пошта", + "Available" : "Доступно", "Busy" : "Заузет", "Unknown" : "Непознато", + "Accept" : "Прихвати", + "Decline" : "Одбиј", "Tentative" : "Условна потврда", + "Send email" : "Пошаљи е-пошту", "All day" : "Цео дан", "Repeat" : "Понављај", "never" : "никада", "after" : "након", + "available" : "доступно", "More" : "Остало", "Global" : "Цео свет", + "Time:" : "Време:", "Personal" : "Лично", "[Today]" : "[Данас]", "[Tomorrow]" : "[Сутра]", "[Yesterday]" : "[Јуче]", "Details" : "Детаљи", "Attendees" : "Присутни", + "Resources" : "Ресурси", "Close" : "Затвори", "Anniversary" : "Годишњица", "Week {number} of {year}" : "Недеља {number} у {year}", @@ -61,6 +92,10 @@ "Weekly" : "недељно", "Untitled event" : "Неименовани догађај", "Untitled task" : "Неименовани задатак", + "Prev" : "Претходни", + "Next" : "Следећа", + "Year" : "Година", + "Other" : "Остало", "When shared show full event" : "Прикажи цео догађај када је догађај дељен", "When shared show only busy" : "Прикажи само да сте заузети када је догађај дељен", "When shared hide this event" : "Сакриј догађај када је догађај дељен", @@ -69,10 +104,14 @@ "Canceled" : "Отказано", "Categories" : "Категорије", "Add this as a new category" : "Додај ово као нову категорију", + "Talk" : "Разговор", "Movie" : "Филм", "Cinema" : "Биоскоп", "Review" : "Претпреглед", "Mail" : "поштом", - "Dentist" : "Стоматолог" + "Dentist" : "Стоматолог", + "Hospital" : "Болница", + "Birthday" : "Рођендан", + "User not found" : "Корисник није нађен" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/l10n/sr@latin.js b/l10n/sr@latin.js new file mode 100644 index 0000000000000000000000000000000000000000..df51ab69f2f4bf18d440f13c3f5cc731f87c9fe8 --- /dev/null +++ b/l10n/sr@latin.js @@ -0,0 +1,41 @@ +OC.L10N.register( + "calendar", + { + "Cheers!" : "U zdravlje!", + "Today" : "Today", + "Preview" : "Pregled", + "Copy link" : "Kopiraj vezu", + "Edit" : "Izmeni", + "Delete" : "Delete", + "Share link" : "Veza deljenja", + "can edit" : "može da menja", + "Name" : "Ime", + "Deleted" : "Obrisano", + "Delete permanently" : "Obriši zauvek", + "Filename" : "Ime fajla", + "Cancel" : "Cancel", + "List view" : "Prikaz liste", + "Description" : "Opis", + "Add" : "Dodaj", + "Monday" : "Ponedeljak", + "Tuesday" : "Utorak", + "Wednesday" : "Sreda", + "Thursday" : "Četvrtak", + "Friday" : "Petak", + "Saturday" : "Subota", + "Sunday" : "Nedelja", + "Save" : "Save", + "Update" : "Ažuriraj", + "Email" : "email", + "Unknown" : "Nepoznato", + "never" : "never", + "More" : "More", + "Details" : "Detalji", + "Close" : "Zatvori", + "Daily" : "дневно", + "Weekly" : "недељно", + "Other" : "Ostali", + "Movie" : "Film", + "Mail" : "Pošta" +}, +"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/l10n/sr@latin.json b/l10n/sr@latin.json new file mode 100644 index 0000000000000000000000000000000000000000..396b99f23ce6064b83ebcac14cbff3877c076424 --- /dev/null +++ b/l10n/sr@latin.json @@ -0,0 +1,39 @@ +{ "translations": { + "Cheers!" : "U zdravlje!", + "Today" : "Today", + "Preview" : "Pregled", + "Copy link" : "Kopiraj vezu", + "Edit" : "Izmeni", + "Delete" : "Delete", + "Share link" : "Veza deljenja", + "can edit" : "može da menja", + "Name" : "Ime", + "Deleted" : "Obrisano", + "Delete permanently" : "Obriši zauvek", + "Filename" : "Ime fajla", + "Cancel" : "Cancel", + "List view" : "Prikaz liste", + "Description" : "Opis", + "Add" : "Dodaj", + "Monday" : "Ponedeljak", + "Tuesday" : "Utorak", + "Wednesday" : "Sreda", + "Thursday" : "Četvrtak", + "Friday" : "Petak", + "Saturday" : "Subota", + "Sunday" : "Nedelja", + "Save" : "Save", + "Update" : "Ažuriraj", + "Email" : "email", + "Unknown" : "Nepoznato", + "never" : "never", + "More" : "More", + "Details" : "Detalji", + "Close" : "Zatvori", + "Daily" : "дневно", + "Weekly" : "недељно", + "Other" : "Ostali", + "Movie" : "Film", + "Mail" : "Pošta" +},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" +} \ No newline at end of file diff --git a/l10n/sv.js b/l10n/sv.js index 02bb126686688d5bf0761b0e8e27b38551a20c99..011b32d10863a4d6d808e416d0209a6b64d4af79 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -30,6 +30,7 @@ OC.L10N.register( "Next day" : "Nästa dag", "Next week" : "Nästa vecka", "Next month" : "Nästa månad", + "New event" : "Ny händelse", "Today" : "Idag", "Day" : "Dag", "Week" : "Vecka", @@ -46,6 +47,7 @@ OC.L10N.register( "Edit color" : "Ändra färg", "Saving color …" : "Sparar färg …", "Copy private link" : "Kopiera privat länk", + "Export" : "Exportera", "Unshare from me" : "Sluta dela från mig", "An error occurred, unable to change visibility of the calendar." : "Ett fel inträffade, kunde inte ändra synlighet på kalendern.", "An error occurred, unable to delete the calendar." : "Ett fel inträffade, kunde inte radera kalendern.", @@ -196,6 +198,7 @@ OC.L10N.register( "_day_::_days_" : ["dag","dagar"], "_week_::_weeks_" : ["vecka","veckor"], "Available" : "Tillgänglig", + "Not available" : "Inte tillgänglig", "Availability of attendees, resources and rooms" : "Deltagares tillgänglighet, resurser och lokaler", "{organizer} (organizer)" : "{organizer} (arrangör)", "Free" : "Ledig", @@ -289,6 +292,7 @@ OC.L10N.register( "Type to search time zone" : "Skriv för att söka tidszon", "Global" : "Global", "Select date" : "Välj datum", + "Time:" : "Tid:", "Booked for:" : "Bokad för:", "Personal" : "Privat", "The automatic time zone detection determined your time zone to be UTC.\nThis is most likely the result of security measures of your web browser.\nPlease set your time zone manually in the calendar settings." : "Den automatiska tidszon-detekteringen fastställde din tidszon till UTC.\nDetta är troligtvis resultatet av säkerhetsinställningar i din webbläsare.\nVänligen ställ in din tidszon manuellt i kalenderinställningarna.", diff --git a/l10n/sv.json b/l10n/sv.json index 321184f393b4e923052613f5ce28a6fc46a36cca..fd2363795449106065df63a3e267bd21b4f33b47 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -28,6 +28,7 @@ "Next day" : "Nästa dag", "Next week" : "Nästa vecka", "Next month" : "Nästa månad", + "New event" : "Ny händelse", "Today" : "Idag", "Day" : "Dag", "Week" : "Vecka", @@ -44,6 +45,7 @@ "Edit color" : "Ändra färg", "Saving color …" : "Sparar färg …", "Copy private link" : "Kopiera privat länk", + "Export" : "Exportera", "Unshare from me" : "Sluta dela från mig", "An error occurred, unable to change visibility of the calendar." : "Ett fel inträffade, kunde inte ändra synlighet på kalendern.", "An error occurred, unable to delete the calendar." : "Ett fel inträffade, kunde inte radera kalendern.", @@ -194,6 +196,7 @@ "_day_::_days_" : ["dag","dagar"], "_week_::_weeks_" : ["vecka","veckor"], "Available" : "Tillgänglig", + "Not available" : "Inte tillgänglig", "Availability of attendees, resources and rooms" : "Deltagares tillgänglighet, resurser och lokaler", "{organizer} (organizer)" : "{organizer} (arrangör)", "Free" : "Ledig", @@ -287,6 +290,7 @@ "Type to search time zone" : "Skriv för att söka tidszon", "Global" : "Global", "Select date" : "Välj datum", + "Time:" : "Tid:", "Booked for:" : "Bokad för:", "Personal" : "Privat", "The automatic time zone detection determined your time zone to be UTC.\nThis is most likely the result of security measures of your web browser.\nPlease set your time zone manually in the calendar settings." : "Den automatiska tidszon-detekteringen fastställde din tidszon till UTC.\nDetta är troligtvis resultatet av säkerhetsinställningar i din webbläsare.\nVänligen ställ in din tidszon manuellt i kalenderinställningarna.", diff --git a/l10n/ta.js b/l10n/ta.js new file mode 100644 index 0000000000000000000000000000000000000000..fdd23f6b6e07b0ef41f1819a415eebda7db95d65 --- /dev/null +++ b/l10n/ta.js @@ -0,0 +1,45 @@ +OC.L10N.register( + "calendar", + { + "Calendar" : "நாட்காட்டி", + "Today" : "இன்று", + "Week" : "வாரம்", + "Month" : "மாதம்", + "List" : "List", + "Edit" : "தொகுக்க", + "Delete" : "நீக்குக", + "Export" : "ஏற்றுமதி", + "Share link" : "Share link", + "can edit" : "தொகுக்க முடியும்", + "New calendar" : "புதிய நாட்காட்டி", + "Name" : "பெயர்", + "Cancel" : "இரத்து செய்க", + "Actions" : "செயல்கள்", + "Location" : "இடம்", + "Description" : "விவரிப்பு", + "Add" : "சேர்க்க", + "Monday" : "திங்கட்கிழமை", + "Tuesday" : "செவ்வாய்க்கிழமை", + "Wednesday" : "புதன்கிழமை", + "Thursday" : "வியாழக்கிழமை", + "Friday" : "வெள்ளிக்கிழமை", + "Saturday" : "சனிக்கிழமை", + "Sunday" : "ஞாயிற்றுக்கிழமை", + "Save" : "சேமிக்க ", + "Update" : "இற்றைப்படுத்தல்", + "Your email address" : "உங்களுடைய மின்னஞ்சல் முகவரி", + "Email" : "மின்னஞ்சல்", + "Unknown" : "தெரியாத", + "Repeat" : "மீண்டும்", + "never" : "ஒருபோதும்", + "More" : "மேலதிக", + "Personal" : "தனிப்பட்ட", + "Details" : "விவரங்கள்", + "Attendees" : "பங்கேற்பாளர்கள்", + "Close" : "மூடுக", + "Prev" : "Prev", + "Next" : "அடுத்த", + "Other" : "மற்றவை", + "Birthday" : "பிறந்த நாள்" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/l10n/ta.json b/l10n/ta.json new file mode 100644 index 0000000000000000000000000000000000000000..a032c8b13ac2fcb1d67d76f50f3716dc07c13172 --- /dev/null +++ b/l10n/ta.json @@ -0,0 +1,43 @@ +{ "translations": { + "Calendar" : "நாட்காட்டி", + "Today" : "இன்று", + "Week" : "வாரம்", + "Month" : "மாதம்", + "List" : "List", + "Edit" : "தொகுக்க", + "Delete" : "நீக்குக", + "Export" : "ஏற்றுமதி", + "Share link" : "Share link", + "can edit" : "தொகுக்க முடியும்", + "New calendar" : "புதிய நாட்காட்டி", + "Name" : "பெயர்", + "Cancel" : "இரத்து செய்க", + "Actions" : "செயல்கள்", + "Location" : "இடம்", + "Description" : "விவரிப்பு", + "Add" : "சேர்க்க", + "Monday" : "திங்கட்கிழமை", + "Tuesday" : "செவ்வாய்க்கிழமை", + "Wednesday" : "புதன்கிழமை", + "Thursday" : "வியாழக்கிழமை", + "Friday" : "வெள்ளிக்கிழமை", + "Saturday" : "சனிக்கிழமை", + "Sunday" : "ஞாயிற்றுக்கிழமை", + "Save" : "சேமிக்க ", + "Update" : "இற்றைப்படுத்தல்", + "Your email address" : "உங்களுடைய மின்னஞ்சல் முகவரி", + "Email" : "மின்னஞ்சல்", + "Unknown" : "தெரியாத", + "Repeat" : "மீண்டும்", + "never" : "ஒருபோதும்", + "More" : "மேலதிக", + "Personal" : "தனிப்பட்ட", + "Details" : "விவரங்கள்", + "Attendees" : "பங்கேற்பாளர்கள்", + "Close" : "மூடுக", + "Prev" : "Prev", + "Next" : "அடுத்த", + "Other" : "மற்றவை", + "Birthday" : "பிறந்த நாள்" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/l10n/th.js b/l10n/th.js index 048ad782f1fb716933310618c0d1ae826cf42a64..5d979d0a4c72b47aa5738d315c787aaa7da8e05d 100644 --- a/l10n/th.js +++ b/l10n/th.js @@ -8,31 +8,57 @@ OC.L10N.register( "Hello," : "สวัสดี", "Open »%s«" : "เปิด »%s«", "Cheers!" : "ไชโย!", + "Confirm" : "ยืนยัน", "Calendar" : "ปฏิทิน", + "New event" : "เหตุการณ์ใหม่", "Today" : "วันนี้", "Day" : "วัน", "Week" : "สัปดาห์", "Month" : "เดือน", + "Preview" : "ตัวอย่าง", + "Copy link" : "คัดลอกลิงก์", + "Edit" : "แก้ไข", "Delete" : "ลบ", + "Export" : "ส่งออก", "Share link" : "แชร์ลิงค์", "Share with users or groups" : "แชร์กับผู้ใช้หรือกลุ่ม", "can edit" : "สามารถแก้ไข", "New calendar" : "สร้างปฏิทินใหม่", + "Name" : "ชื่อ", + "Deleted" : "ลบแล้ว", + "Restore" : "คืนค่า", + "Delete permanently" : "ลบแบบถาวร", + "Empty trash bin" : "ล้างข้อมูลในถังขยะ", + "Filename" : "ชื่อไฟล์", "Cancel" : "ยกเลิก", "Automatic" : "อัตโนมัติ", + "List view" : "มุมมองแบบรายการ", "Actions" : "การกระทำ", "Location" : "ตำแหน่งที่อยู่", "Description" : "รายละเอียด", + "to" : "ถึง", + "Add" : "เพิ่ม", "Monday" : "วันจันทร์", + "Tuesday" : "วันอังคาร", + "Wednesday" : "วันพุธ", + "Thursday" : "วันพฤหัสบดี", + "Friday" : "วันศุกร์", + "Saturday" : "วันเสาร์", + "Sunday" : "วันอาทิตย์", "Save" : "บันทึก", "Update" : "อัพเดท", + "Your email address" : "ที่อยู่อีเมลของคุณ", "Email" : "อีเมล", "Unknown" : "ไม่ทราบ", + "Accept" : "ยอมรับ", + "Decline" : "ปฏิเสธ", "Tentative" : "ชั่วคราว", + "Send email" : "ส่งอีเมล", "Repeat" : "ทำซ้ำ", "never" : "ไม่ต้องเลย", "after" : "หลัง", "More" : "เพิ่มเติม", + "Pick a date" : "เลือกวันที่", "Global" : "ทั่วไป", "Personal" : "ส่วนตัว", "Details" : "รายละเอียด", @@ -42,12 +68,18 @@ OC.L10N.register( "Week {number} of {year}" : "สัปดาห์ที่ {number} ของปี {year}", "Daily" : "รุ่นรายวัน", "Weekly" : "รายสัปดาห์", + "Next" : "ถัดไป", + "Other" : "อื่น ๆ", "When shared show full event" : "เมื่อแชร์จะแสดงกิจกรรมทั้งหมด", "When shared show only busy" : "เมื่อแชร์จะแสดงเฉพาะไม่ว่าง", "When shared hide this event" : "เมื่อแชร์จะซ่อนกิจกรรมนี้", + "Status" : "สถานะ", "Confirmed" : "ได้รับการยืนยันแล้ว", + "Categories" : "หมวดหมู่", + "Commuting" : "กำลังเดินทาง", "Presentation" : "งานนำเสนอ", "Office" : "สำนักงาน", - "Mail" : "จดหมาย" + "Mail" : "จดหมาย", + "Birthday" : "วันเกิด" }, "nplurals=1; plural=0;"); diff --git a/l10n/th.json b/l10n/th.json index f22461a45dac4b0e1dbd08ef98954e91e0a6b017..ec427cc8bc59d31721c081a6c304dc59d2337449 100644 --- a/l10n/th.json +++ b/l10n/th.json @@ -6,31 +6,57 @@ "Hello," : "สวัสดี", "Open »%s«" : "เปิด »%s«", "Cheers!" : "ไชโย!", + "Confirm" : "ยืนยัน", "Calendar" : "ปฏิทิน", + "New event" : "เหตุการณ์ใหม่", "Today" : "วันนี้", "Day" : "วัน", "Week" : "สัปดาห์", "Month" : "เดือน", + "Preview" : "ตัวอย่าง", + "Copy link" : "คัดลอกลิงก์", + "Edit" : "แก้ไข", "Delete" : "ลบ", + "Export" : "ส่งออก", "Share link" : "แชร์ลิงค์", "Share with users or groups" : "แชร์กับผู้ใช้หรือกลุ่ม", "can edit" : "สามารถแก้ไข", "New calendar" : "สร้างปฏิทินใหม่", + "Name" : "ชื่อ", + "Deleted" : "ลบแล้ว", + "Restore" : "คืนค่า", + "Delete permanently" : "ลบแบบถาวร", + "Empty trash bin" : "ล้างข้อมูลในถังขยะ", + "Filename" : "ชื่อไฟล์", "Cancel" : "ยกเลิก", "Automatic" : "อัตโนมัติ", + "List view" : "มุมมองแบบรายการ", "Actions" : "การกระทำ", "Location" : "ตำแหน่งที่อยู่", "Description" : "รายละเอียด", + "to" : "ถึง", + "Add" : "เพิ่ม", "Monday" : "วันจันทร์", + "Tuesday" : "วันอังคาร", + "Wednesday" : "วันพุธ", + "Thursday" : "วันพฤหัสบดี", + "Friday" : "วันศุกร์", + "Saturday" : "วันเสาร์", + "Sunday" : "วันอาทิตย์", "Save" : "บันทึก", "Update" : "อัพเดท", + "Your email address" : "ที่อยู่อีเมลของคุณ", "Email" : "อีเมล", "Unknown" : "ไม่ทราบ", + "Accept" : "ยอมรับ", + "Decline" : "ปฏิเสธ", "Tentative" : "ชั่วคราว", + "Send email" : "ส่งอีเมล", "Repeat" : "ทำซ้ำ", "never" : "ไม่ต้องเลย", "after" : "หลัง", "More" : "เพิ่มเติม", + "Pick a date" : "เลือกวันที่", "Global" : "ทั่วไป", "Personal" : "ส่วนตัว", "Details" : "รายละเอียด", @@ -40,12 +66,18 @@ "Week {number} of {year}" : "สัปดาห์ที่ {number} ของปี {year}", "Daily" : "รุ่นรายวัน", "Weekly" : "รายสัปดาห์", + "Next" : "ถัดไป", + "Other" : "อื่น ๆ", "When shared show full event" : "เมื่อแชร์จะแสดงกิจกรรมทั้งหมด", "When shared show only busy" : "เมื่อแชร์จะแสดงเฉพาะไม่ว่าง", "When shared hide this event" : "เมื่อแชร์จะซ่อนกิจกรรมนี้", + "Status" : "สถานะ", "Confirmed" : "ได้รับการยืนยันแล้ว", + "Categories" : "หมวดหมู่", + "Commuting" : "กำลังเดินทาง", "Presentation" : "งานนำเสนอ", "Office" : "สำนักงาน", - "Mail" : "จดหมาย" + "Mail" : "จดหมาย", + "Birthday" : "วันเกิด" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/tr.js b/l10n/tr.js index 95b72f1e273245d6f538c31b6bc3b50ea5fdc35d..fcdd7f0e7db842c325cd16cf93514fb236f14e70 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -144,6 +144,10 @@ OC.L10N.register( "Actions" : "İşlemler", "Create event" : "Etkinlik ekle", "Show shortcuts" : "Kısayolları görüntüle", + "Editor" : "Düzenleyici", + "Close editor" : "Düzenleyiciyi kapat", + "Save edited event" : "Düzenlenmiş etkinliği kaydet", + "Delete edited event" : "Düzenlenmiş etkinliği sil", "Enable birthday calendar" : "Doğum günü takvimi kullanılsın", "Show tasks in calendar" : "Görevler takvimde görüntülensin", "Enable simplified editor" : "Basitleştirilmiş düzenleyici kullanılsın", @@ -171,7 +175,7 @@ OC.L10N.register( "_{duration} year_::_{duration} years_" : ["{duration} yıl","{duration} yıl"], "To configure appointments, add your email address in personal settings." : "Randevuları yapılandırmak için kişisel ayarlar bölümünden e-posta adresinizi yazın.", "Public – shown on the profile page" : "Herkese açık - Profil sayfasında görüntülenir", - "Private – only accessible via secret link" : "Bireysel - Yalnız gizli bir bağlantı ile erişilebilir", + "Private – only accessible via secret link" : "Bireysel - Yalnızca gizli bir bağlantı ile erişilebilir", "Location" : "Konum", "Description" : "Açıklama", "Visibility" : "Görünürlük", @@ -201,7 +205,7 @@ OC.L10N.register( "Edit appointment" : "Randevuyu düzenle", "Save" : "Kaydet", "Update" : "Güncelle", - "Your appointment is booked" : "Randevunuz alındı", + "Please confirm your reservation" : "Lütfen randevunuzu onaylayın", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Randevu bilgilerinizi içeren bir e-posta gönderildi. Randevunuzu onaylamak için lütfen e-posta içeriğindeki bağlantıya tıklayın. Bu sayfayı kapatabilirsiniz.", "Your name" : "Adınız", "Your email address" : "E-posta adresiniz", @@ -293,7 +297,7 @@ OC.L10N.register( "fifth" : "beşinci", "second to last" : "ikinciden sonuncuya", "last" : "sonuncu", - "Changes to the recurrence-rule will only apply to this and all future occurrences." : "Yinelenme kuralındaki değişiklikler yalnız bu ve sonraki etkinlikler için geçerli olacak.", + "Changes to the recurrence-rule will only apply to this and all future occurrences." : "Yinelenme kuralındaki değişiklikler yalnızca bu ve sonraki etkinlikler için geçerli olacak.", "Repeat every" : "Yinelenme sıklığı", "By day of the month" : "Ayın gününde", "On the" : "Şu zamanda", @@ -381,7 +385,7 @@ OC.L10N.register( "Miscellaneous" : "Diğer", "Non-working hours" : "Çalışma dışı saatler", "Not in office" : "İş yerinde değil", - "Phone call" : "Telefon araması", + "Phone call" : "Telefon çağrısı", "Sick day" : "Hastalık", "Special occasion" : "Özel durum", "Travel" : "Gezi", @@ -437,7 +441,7 @@ OC.L10N.register( "Other" : "Diğer", "When shared show" : "Paylaşıldığında görüntülenecek", "When shared show full event" : "Paylaşıldığında tüm etkinlik ayrıntıları görüntülensin", - "When shared show only busy" : "Paylaşıldığında yalnız meşgul olarak görüntülensin", + "When shared show only busy" : "Paylaşıldığında yalnızca meşgul olarak görüntülensin", "When shared hide this event" : "Paylaşıldığında bu etkinlik gizlensin", "The visibility of this event in shared calendars." : "Bu etkinliğin paylaşılmış takvimlerdeki görünümü.", "Add a location" : "Bir konum ekleyin", @@ -552,12 +556,12 @@ OC.L10N.register( "Go for a run" : "Koşuya git", "Marathon" : "Maraton", "Video-conference" : "Görüntülü toplu görüşme", - "Conference-call" : "Toplu görüşme", - "Video-call" : "Görüntülü görüşme", + "Conference-call" : "Konferans çağrısı", + "Video-call" : "Görüntülü çağrı", "Video-chat" : "Görüntülü sohbet", "Video-meeting" : "Görüntülü toplantı", "Call" : "Çağrı", - "Calling" : "Arama", + "Calling" : "Çağrı", "Christmas" : "Noel", "Conference" : "Konferans", "Pizza" : "Pizza", diff --git a/l10n/tr.json b/l10n/tr.json index 0a0ad742fc29c357e3c897c6aced3ba428f450c8..aa8d9488a2e0ee78bc557495250d4a79ddb3f056 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -142,6 +142,10 @@ "Actions" : "İşlemler", "Create event" : "Etkinlik ekle", "Show shortcuts" : "Kısayolları görüntüle", + "Editor" : "Düzenleyici", + "Close editor" : "Düzenleyiciyi kapat", + "Save edited event" : "Düzenlenmiş etkinliği kaydet", + "Delete edited event" : "Düzenlenmiş etkinliği sil", "Enable birthday calendar" : "Doğum günü takvimi kullanılsın", "Show tasks in calendar" : "Görevler takvimde görüntülensin", "Enable simplified editor" : "Basitleştirilmiş düzenleyici kullanılsın", @@ -169,7 +173,7 @@ "_{duration} year_::_{duration} years_" : ["{duration} yıl","{duration} yıl"], "To configure appointments, add your email address in personal settings." : "Randevuları yapılandırmak için kişisel ayarlar bölümünden e-posta adresinizi yazın.", "Public – shown on the profile page" : "Herkese açık - Profil sayfasında görüntülenir", - "Private – only accessible via secret link" : "Bireysel - Yalnız gizli bir bağlantı ile erişilebilir", + "Private – only accessible via secret link" : "Bireysel - Yalnızca gizli bir bağlantı ile erişilebilir", "Location" : "Konum", "Description" : "Açıklama", "Visibility" : "Görünürlük", @@ -199,7 +203,7 @@ "Edit appointment" : "Randevuyu düzenle", "Save" : "Kaydet", "Update" : "Güncelle", - "Your appointment is booked" : "Randevunuz alındı", + "Please confirm your reservation" : "Lütfen randevunuzu onaylayın", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Randevu bilgilerinizi içeren bir e-posta gönderildi. Randevunuzu onaylamak için lütfen e-posta içeriğindeki bağlantıya tıklayın. Bu sayfayı kapatabilirsiniz.", "Your name" : "Adınız", "Your email address" : "E-posta adresiniz", @@ -291,7 +295,7 @@ "fifth" : "beşinci", "second to last" : "ikinciden sonuncuya", "last" : "sonuncu", - "Changes to the recurrence-rule will only apply to this and all future occurrences." : "Yinelenme kuralındaki değişiklikler yalnız bu ve sonraki etkinlikler için geçerli olacak.", + "Changes to the recurrence-rule will only apply to this and all future occurrences." : "Yinelenme kuralındaki değişiklikler yalnızca bu ve sonraki etkinlikler için geçerli olacak.", "Repeat every" : "Yinelenme sıklığı", "By day of the month" : "Ayın gününde", "On the" : "Şu zamanda", @@ -379,7 +383,7 @@ "Miscellaneous" : "Diğer", "Non-working hours" : "Çalışma dışı saatler", "Not in office" : "İş yerinde değil", - "Phone call" : "Telefon araması", + "Phone call" : "Telefon çağrısı", "Sick day" : "Hastalık", "Special occasion" : "Özel durum", "Travel" : "Gezi", @@ -435,7 +439,7 @@ "Other" : "Diğer", "When shared show" : "Paylaşıldığında görüntülenecek", "When shared show full event" : "Paylaşıldığında tüm etkinlik ayrıntıları görüntülensin", - "When shared show only busy" : "Paylaşıldığında yalnız meşgul olarak görüntülensin", + "When shared show only busy" : "Paylaşıldığında yalnızca meşgul olarak görüntülensin", "When shared hide this event" : "Paylaşıldığında bu etkinlik gizlensin", "The visibility of this event in shared calendars." : "Bu etkinliğin paylaşılmış takvimlerdeki görünümü.", "Add a location" : "Bir konum ekleyin", @@ -550,12 +554,12 @@ "Go for a run" : "Koşuya git", "Marathon" : "Maraton", "Video-conference" : "Görüntülü toplu görüşme", - "Conference-call" : "Toplu görüşme", - "Video-call" : "Görüntülü görüşme", + "Conference-call" : "Konferans çağrısı", + "Video-call" : "Görüntülü çağrı", "Video-chat" : "Görüntülü sohbet", "Video-meeting" : "Görüntülü toplantı", "Call" : "Çağrı", - "Calling" : "Arama", + "Calling" : "Çağrı", "Christmas" : "Noel", "Conference" : "Konferans", "Pizza" : "Pizza", diff --git a/l10n/ug.js b/l10n/ug.js new file mode 100644 index 0000000000000000000000000000000000000000..38c29348d1929837760318855434b42c1dc9c0bb --- /dev/null +++ b/l10n/ug.js @@ -0,0 +1,42 @@ +OC.L10N.register( + "calendar", + { + "Calendar" : "يىلنامە", + "Today" : "بۈگۈن", + "Week" : "ھەپتە", + "Month" : "ئاي", + "Edit" : "تەھرىر", + "Delete" : "ئۆچۈر", + "Export" : "چىقار", + "Share link" : "Share link", + "New calendar" : "يېڭى يىلنامە", + "Name" : "ئاتى", + "Deleted" : "ئۆچۈرۈلدى", + "Delete permanently" : "مەڭگۈلۈك ئۆچۈر", + "Cancel" : "ۋاز كەچ", + "Actions" : "مەشغۇلاتلار", + "Location" : "ئورنى", + "Description" : "چۈشەندۈرۈش", + "Add" : "قوش", + "Monday" : "دۈشەنبە", + "Tuesday" : "سەيشەنبە", + "Wednesday" : "چارشەنبە", + "Thursday" : "پەيشەنبە", + "Friday" : "جۈمە", + "Saturday" : "شەنبە", + "Sunday" : "يەكشەنبە", + "Save" : "ساقلا", + "Update" : "يېڭىلا", + "Your email address" : "تورخەت ئادرېسىڭىز", + "Email" : "تورخەت", + "Repeat" : "قايتىلا", + "never" : "ھەرگىز", + "More" : "تېخىمۇ كۆپ", + "Personal" : "شەخسىي", + "Attendees" : "قاتناشقۇچىلار", + "Close" : "ياپ", + "Next" : "كېيىنكى", + "Other" : "باشقا", + "Birthday" : "تۇغۇلغان كۈن" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/l10n/ug.json b/l10n/ug.json new file mode 100644 index 0000000000000000000000000000000000000000..211cb3164188fce71f2af836947365524e5ad298 --- /dev/null +++ b/l10n/ug.json @@ -0,0 +1,40 @@ +{ "translations": { + "Calendar" : "يىلنامە", + "Today" : "بۈگۈن", + "Week" : "ھەپتە", + "Month" : "ئاي", + "Edit" : "تەھرىر", + "Delete" : "ئۆچۈر", + "Export" : "چىقار", + "Share link" : "Share link", + "New calendar" : "يېڭى يىلنامە", + "Name" : "ئاتى", + "Deleted" : "ئۆچۈرۈلدى", + "Delete permanently" : "مەڭگۈلۈك ئۆچۈر", + "Cancel" : "ۋاز كەچ", + "Actions" : "مەشغۇلاتلار", + "Location" : "ئورنى", + "Description" : "چۈشەندۈرۈش", + "Add" : "قوش", + "Monday" : "دۈشەنبە", + "Tuesday" : "سەيشەنبە", + "Wednesday" : "چارشەنبە", + "Thursday" : "پەيشەنبە", + "Friday" : "جۈمە", + "Saturday" : "شەنبە", + "Sunday" : "يەكشەنبە", + "Save" : "ساقلا", + "Update" : "يېڭىلا", + "Your email address" : "تورخەت ئادرېسىڭىز", + "Email" : "تورخەت", + "Repeat" : "قايتىلا", + "never" : "ھەرگىز", + "More" : "تېخىمۇ كۆپ", + "Personal" : "شەخسىي", + "Attendees" : "قاتناشقۇچىلار", + "Close" : "ياپ", + "Next" : "كېيىنكى", + "Other" : "باشقا", + "Birthday" : "تۇغۇلغان كۈن" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/l10n/uk.js b/l10n/uk.js index ad5aa5c7b6c42091e1633979842e6e93a6ee57d3..f7dc0a544b47b1215bd7f49c895033f9960193bf 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -11,6 +11,11 @@ OC.L10N.register( "Open »%s«" : "Відкрити 1%s", "Cheers!" : "На все добре!", "Upcoming events" : "Майбутні події", + "Appointments" : "Зустрічі", + "Confirm" : "Підтвердити", + "Date:" : "Дата:", + "Where:" : "Місце:", + "Description:" : "Опис:", "Calendar" : "Календар", "A Calendar app for Nextcloud" : "Звстосунок \"Календар\" для Nextcloud", "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "Застосунок Календар - це інтерфейс користувача до сервера Nextcloud CalDAV. З легкістю редагуйте та синхронізуйте події між вашими пристроями та Nextcloud онлайн.\n\n* 🚀 **Інтеграція з іншими застосунками Nextcloud!** В даний час - Контакти. Інші - скоро.\n* 🌐 **Підтримка WebCal!** Бажаєте бачити у своєму календарі дати матчів вашої улюбленої команди? Без проблем!\n* 🙋 **Учасники!** Запросіть інших людей до участі у вашіх подіях\n* ⌚️ **Розклад:** Побачте коли ваші учасники доступні для зустрічі\n* ⏰ **Нагадування!** Отримайте сигнал-нагадування про подію у вашому браузері і за допомогою електронної пошти.\n* 🔍 Пошук! Знайдіть події легко.\n* ☑️ Завдання! Перегляньте завдання з терміном виконання безпосередньо в календарі\n* 🙈 **Ми не винаходимо колесо знову!** Базується на чудовій [бібліотеці c-dav](https://github.com/nextcloud/cdav-library), а також бібліотеках [ical.js](https://github.com/mozilla-comm/ical.js) і [fullcalendar](https://github.com/fullcalendar/fullcalendar).", @@ -20,11 +25,15 @@ OC.L10N.register( "Next day" : "Наступний день", "Next week" : "Наступний тиждень", "Next month" : "Наступний місяць", + "New event" : "Нова подія", "Today" : "Сьогодні", "Day" : "День", "Week" : "Тиждень", "Month" : "Місяць", "List" : "Список", + "Preview" : "Перегляд", + "Copy link" : "Скопіювати посилання", + "Edit" : "Редагувати", "Delete" : "Вилучити", "Untitled calendar" : "Календар без назви", "Edit name" : "Редагувати назву", @@ -32,6 +41,7 @@ OC.L10N.register( "Edit color" : "Редагувати колір", "Saving color …" : "Збереження кольору ...", "Copy private link" : "Копіювати приватне посилання", + "Export" : "Експорт", "Unshare from me" : "Від'єднати від мене", "An error occurred, unable to change visibility of the calendar." : "Помилка: неможливо змінити відображення календаря.", "An error occurred, unable to delete the calendar." : "Помилка: неможливо вилучити календар.", @@ -84,6 +94,7 @@ OC.L10N.register( "Deleted" : "вилучено", "Restore" : "Відновити", "Delete permanently" : "Видалити назавжди", + "Empty trash bin" : "Очистити кошик", "Untitled element" : "Елемент без назви", "Could not load deleted calendars and objects" : "Не вдалося завантажити видалені календарі та об’єкти", "Could not restore calendar or event" : "Не вдалося відновити календар або подію", @@ -129,9 +140,18 @@ OC.L10N.register( "CalDAV link could not be copied to clipboard." : "Неможливо копіювати посилання CalDAV.", "Location" : "Місце", "Description" : "Опис", + "to" : "до", + "Add" : "Додати", "Monday" : "понеділок", + "Tuesday" : "Вівторок", + "Wednesday" : "Середа", + "Thursday" : "Четвер", + "Friday" : "П'ятниця", + "Saturday" : "Субота", + "Sunday" : "Неділя", "Save" : "Зберегти", "Update" : "Оновити", + "Your email address" : "Ваша адреса електронної пошти", "before at" : "до часу", "Notification" : "Сповіщення", "Email" : "Email", @@ -150,12 +170,15 @@ OC.L10N.register( "_hour_::_hours_" : ["година","годин","годин","години"], "_day_::_days_" : ["день","днів","днів","дні"], "_week_::_weeks_" : ["тиждень","тижнів","тижнів","тижні"], + "Available" : "Доступно", "Availability of attendees, resources and rooms" : "Доступність учасників, ресурсів і приміщень", "Free" : "Вільно", "Busy (tentative)" : "Зайнято (попередньо)", "Busy" : "Зайнято", "Out of office" : "Поза межами офісу", "Unknown" : "Невідомо", + "Accept" : "Прийняти", + "Decline" : "Відхилити", "Tentative" : "Попередній", "Create Talk room for this event" : "Створити Кімнату переговорів для цієї події", "Show busy times" : "Показати зайнятий час", @@ -222,6 +245,7 @@ OC.L10N.register( "Delete this and all future" : "Вилучити це й наступні повторення", "Details" : "Деталі", "Attendees" : "Учасників", + "Resources" : "Ресурси", "Close" : "Закрити", "Show more details" : "Збільшити деталізацію", "Subscribe to {name}" : "Підписатися на {name}", @@ -271,7 +295,9 @@ OC.L10N.register( "Untitled event" : "Подія без назви", "Untitled task" : "Завдання без назви", "Please ask your administrator to enable the Tasks App." : "Зверніться до вашого адміністратора щодо увімкнення застосунку Завдання", + "Next" : "Далі", "_+%n more_::_+%n more_" : ["+%n раз ще","+%n разів ще","+%n разів ще","+%n рази ще"], + "Other" : "Інші", "When shared show" : "Показувати при поширенні", "When shared show full event" : "При поширенні показувати подію повністю", "When shared show only busy" : "При поширенні показувати тільки зайнятий час", @@ -297,6 +323,7 @@ OC.L10N.register( "Relaxing" : "Розслаблення", "Relax" : "Розслабитися", "Presentation" : "Презентація", + "Talk" : "Розмови", "Camping" : "Лагер", "Camp" : "Лагер", "Movie" : "Фільм", @@ -371,12 +398,14 @@ OC.L10N.register( "Party" : "Вечірка", "Celebration" : "Святкування", "Celebrate" : "Святкування", + "Birthday" : "День народження", "Shopping" : "Шопінг", "Skate" : "Ковзани", "Skateboard" : "Скейт", "Wine tasting" : "Дегустація", "Golf" : "Гольф", "Dinner" : "Вечеря", - "Lunch" : "Обід" + "Lunch" : "Обід", + "User not found" : "Користувача не знайдено" }, "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);"); diff --git a/l10n/uk.json b/l10n/uk.json index bf23d4398b150817d2043821126ab633848f4fe3..3aedbc0351e352c5ebd281937af8070a02c79eb7 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -9,6 +9,11 @@ "Open »%s«" : "Відкрити 1%s", "Cheers!" : "На все добре!", "Upcoming events" : "Майбутні події", + "Appointments" : "Зустрічі", + "Confirm" : "Підтвердити", + "Date:" : "Дата:", + "Where:" : "Місце:", + "Description:" : "Опис:", "Calendar" : "Календар", "A Calendar app for Nextcloud" : "Звстосунок \"Календар\" для Nextcloud", "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries." : "Застосунок Календар - це інтерфейс користувача до сервера Nextcloud CalDAV. З легкістю редагуйте та синхронізуйте події між вашими пристроями та Nextcloud онлайн.\n\n* 🚀 **Інтеграція з іншими застосунками Nextcloud!** В даний час - Контакти. Інші - скоро.\n* 🌐 **Підтримка WebCal!** Бажаєте бачити у своєму календарі дати матчів вашої улюбленої команди? Без проблем!\n* 🙋 **Учасники!** Запросіть інших людей до участі у вашіх подіях\n* ⌚️ **Розклад:** Побачте коли ваші учасники доступні для зустрічі\n* ⏰ **Нагадування!** Отримайте сигнал-нагадування про подію у вашому браузері і за допомогою електронної пошти.\n* 🔍 Пошук! Знайдіть події легко.\n* ☑️ Завдання! Перегляньте завдання з терміном виконання безпосередньо в календарі\n* 🙈 **Ми не винаходимо колесо знову!** Базується на чудовій [бібліотеці c-dav](https://github.com/nextcloud/cdav-library), а також бібліотеках [ical.js](https://github.com/mozilla-comm/ical.js) і [fullcalendar](https://github.com/fullcalendar/fullcalendar).", @@ -18,11 +23,15 @@ "Next day" : "Наступний день", "Next week" : "Наступний тиждень", "Next month" : "Наступний місяць", + "New event" : "Нова подія", "Today" : "Сьогодні", "Day" : "День", "Week" : "Тиждень", "Month" : "Місяць", "List" : "Список", + "Preview" : "Перегляд", + "Copy link" : "Скопіювати посилання", + "Edit" : "Редагувати", "Delete" : "Вилучити", "Untitled calendar" : "Календар без назви", "Edit name" : "Редагувати назву", @@ -30,6 +39,7 @@ "Edit color" : "Редагувати колір", "Saving color …" : "Збереження кольору ...", "Copy private link" : "Копіювати приватне посилання", + "Export" : "Експорт", "Unshare from me" : "Від'єднати від мене", "An error occurred, unable to change visibility of the calendar." : "Помилка: неможливо змінити відображення календаря.", "An error occurred, unable to delete the calendar." : "Помилка: неможливо вилучити календар.", @@ -82,6 +92,7 @@ "Deleted" : "вилучено", "Restore" : "Відновити", "Delete permanently" : "Видалити назавжди", + "Empty trash bin" : "Очистити кошик", "Untitled element" : "Елемент без назви", "Could not load deleted calendars and objects" : "Не вдалося завантажити видалені календарі та об’єкти", "Could not restore calendar or event" : "Не вдалося відновити календар або подію", @@ -127,9 +138,18 @@ "CalDAV link could not be copied to clipboard." : "Неможливо копіювати посилання CalDAV.", "Location" : "Місце", "Description" : "Опис", + "to" : "до", + "Add" : "Додати", "Monday" : "понеділок", + "Tuesday" : "Вівторок", + "Wednesday" : "Середа", + "Thursday" : "Четвер", + "Friday" : "П'ятниця", + "Saturday" : "Субота", + "Sunday" : "Неділя", "Save" : "Зберегти", "Update" : "Оновити", + "Your email address" : "Ваша адреса електронної пошти", "before at" : "до часу", "Notification" : "Сповіщення", "Email" : "Email", @@ -148,12 +168,15 @@ "_hour_::_hours_" : ["година","годин","годин","години"], "_day_::_days_" : ["день","днів","днів","дні"], "_week_::_weeks_" : ["тиждень","тижнів","тижнів","тижні"], + "Available" : "Доступно", "Availability of attendees, resources and rooms" : "Доступність учасників, ресурсів і приміщень", "Free" : "Вільно", "Busy (tentative)" : "Зайнято (попередньо)", "Busy" : "Зайнято", "Out of office" : "Поза межами офісу", "Unknown" : "Невідомо", + "Accept" : "Прийняти", + "Decline" : "Відхилити", "Tentative" : "Попередній", "Create Talk room for this event" : "Створити Кімнату переговорів для цієї події", "Show busy times" : "Показати зайнятий час", @@ -220,6 +243,7 @@ "Delete this and all future" : "Вилучити це й наступні повторення", "Details" : "Деталі", "Attendees" : "Учасників", + "Resources" : "Ресурси", "Close" : "Закрити", "Show more details" : "Збільшити деталізацію", "Subscribe to {name}" : "Підписатися на {name}", @@ -269,7 +293,9 @@ "Untitled event" : "Подія без назви", "Untitled task" : "Завдання без назви", "Please ask your administrator to enable the Tasks App." : "Зверніться до вашого адміністратора щодо увімкнення застосунку Завдання", + "Next" : "Далі", "_+%n more_::_+%n more_" : ["+%n раз ще","+%n разів ще","+%n разів ще","+%n рази ще"], + "Other" : "Інші", "When shared show" : "Показувати при поширенні", "When shared show full event" : "При поширенні показувати подію повністю", "When shared show only busy" : "При поширенні показувати тільки зайнятий час", @@ -295,6 +321,7 @@ "Relaxing" : "Розслаблення", "Relax" : "Розслабитися", "Presentation" : "Презентація", + "Talk" : "Розмови", "Camping" : "Лагер", "Camp" : "Лагер", "Movie" : "Фільм", @@ -369,12 +396,14 @@ "Party" : "Вечірка", "Celebration" : "Святкування", "Celebrate" : "Святкування", + "Birthday" : "День народження", "Shopping" : "Шопінг", "Skate" : "Ковзани", "Skateboard" : "Скейт", "Wine tasting" : "Дегустація", "Golf" : "Гольф", "Dinner" : "Вечеря", - "Lunch" : "Обід" + "Lunch" : "Обід", + "User not found" : "Користувача не знайдено" },"pluralForm" :"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);" } \ No newline at end of file diff --git a/l10n/ur_PK.js b/l10n/ur_PK.js new file mode 100644 index 0000000000000000000000000000000000000000..a3270e36e85b3cad6e349eec7b57b4b1905196c9 --- /dev/null +++ b/l10n/ur_PK.js @@ -0,0 +1,39 @@ +OC.L10N.register( + "calendar", + { + "Cheers!" : "واہ!", + "Calendar" : "کیلنڈر", + "Today" : "آج", + "Week" : "ہفتہ", + "Month" : "ماہ", + "Edit" : "تدوین کریں", + "Delete" : "حذف کریں", + "Share link" : "اشتراک لنک", + "can edit" : "تبدیل کر سکے ھیں", + "New calendar" : "جدید کیلنڈر", + "Name" : "اسم", + "Deleted" : "حذف شدہ ", + "Restore" : "بحال", + "Cancel" : "منسوخ کریں", + "Location" : "مقام", + "Description" : "تصریح", + "Add" : "شامل کریں", + "Monday" : "سوموار", + "Tuesday" : "منگل", + "Wednesday" : "بدھ", + "Thursday" : "جمعرات", + "Friday" : "جمعہ", + "Saturday" : "ہفتہ", + "Sunday" : "اتوار", + "Save" : "حفظ", + "Email" : "email", + "Repeat" : "دہرایں", + "never" : "never", + "More" : "مزید", + "Personal" : "شخصی", + "Close" : "بند ", + "Next" : "اگلا", + "Other" : "دیگر", + "Birthday" : "سالگرہ" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/l10n/ur_PK.json b/l10n/ur_PK.json new file mode 100644 index 0000000000000000000000000000000000000000..49b9b4f1ad290555a879b96278d64c697f3b11f4 --- /dev/null +++ b/l10n/ur_PK.json @@ -0,0 +1,37 @@ +{ "translations": { + "Cheers!" : "واہ!", + "Calendar" : "کیلنڈر", + "Today" : "آج", + "Week" : "ہفتہ", + "Month" : "ماہ", + "Edit" : "تدوین کریں", + "Delete" : "حذف کریں", + "Share link" : "اشتراک لنک", + "can edit" : "تبدیل کر سکے ھیں", + "New calendar" : "جدید کیلنڈر", + "Name" : "اسم", + "Deleted" : "حذف شدہ ", + "Restore" : "بحال", + "Cancel" : "منسوخ کریں", + "Location" : "مقام", + "Description" : "تصریح", + "Add" : "شامل کریں", + "Monday" : "سوموار", + "Tuesday" : "منگل", + "Wednesday" : "بدھ", + "Thursday" : "جمعرات", + "Friday" : "جمعہ", + "Saturday" : "ہفتہ", + "Sunday" : "اتوار", + "Save" : "حفظ", + "Email" : "email", + "Repeat" : "دہرایں", + "never" : "never", + "More" : "مزید", + "Personal" : "شخصی", + "Close" : "بند ", + "Next" : "اگلا", + "Other" : "دیگر", + "Birthday" : "سالگرہ" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/l10n/vi.js b/l10n/vi.js index 6131e7af902fb7dd77cd75ea7a570bf9c2fc3794..4b7b9f5c312d3cdb4a410af088dbfa22e3a5274d 100644 --- a/l10n/vi.js +++ b/l10n/vi.js @@ -34,6 +34,7 @@ OC.L10N.register( "Next day" : "Ngày hôm sau", "Next week" : "Tuần sau", "Next month" : "Tháng sau", + "New event" : "Sự kiện mới", "Today" : "Hôm nay", "Day" : "Ngày", "Week" : "Tuần", @@ -52,6 +53,7 @@ OC.L10N.register( "Edit color" : "Sửa đổi màu", "Saving color …" : "Đang sửa đổi màu  …", "Copy private link" : "Sao chép liên kết riêng tư", + "Export" : "Xuất ra", "Unshare from me" : "Gỡ chia sẻ khỏi tôi", "An error occurred, unable to change visibility of the calendar." : "Một lỗi đã xảy ra, không thể thay đổi tính hiển thị của lịch.", "An error occurred, unable to delete the calendar." : "Một lỗi đã xảy ra, không thể xóa lịch.", @@ -194,7 +196,6 @@ OC.L10N.register( "Edit appointment" : "Chỉnh sửa lịch hẹn", "Save" : "Lưu", "Update" : "Cập nhật", - "Your appointment is booked" : "Lịch hẹn của bạn đã được đặt", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Chúng tôi đã gửi bạn một email với đầy đủ chi tiết. Vui lòng xác nhận lịch hẹn của bạn bằng liên kết trong email. Bây giờ bạn đã có thể đóng trang này.", "Your name" : "Tên của bạn", "Your email address" : "Địa chỉ email của bạn", @@ -229,6 +230,7 @@ OC.L10N.register( "Busy" : "Bận", "Out of office" : "Không ở văn phòng", "Unknown" : "Không xác định", + "Accept" : "Đồng ý", "Tentative" : "Chưa chắc chắn", "Create Talk room for this event" : "Tạo một phòng trò chuyện cho sự kiện này", "Show busy times" : "Cho thấy các thời gian bận", diff --git a/l10n/vi.json b/l10n/vi.json index 11053f4d72431ef4f08b17b16d74dcb263a301ca..19511fdf478016a986e26bd3bde259788944f577 100644 --- a/l10n/vi.json +++ b/l10n/vi.json @@ -32,6 +32,7 @@ "Next day" : "Ngày hôm sau", "Next week" : "Tuần sau", "Next month" : "Tháng sau", + "New event" : "Sự kiện mới", "Today" : "Hôm nay", "Day" : "Ngày", "Week" : "Tuần", @@ -50,6 +51,7 @@ "Edit color" : "Sửa đổi màu", "Saving color …" : "Đang sửa đổi màu  …", "Copy private link" : "Sao chép liên kết riêng tư", + "Export" : "Xuất ra", "Unshare from me" : "Gỡ chia sẻ khỏi tôi", "An error occurred, unable to change visibility of the calendar." : "Một lỗi đã xảy ra, không thể thay đổi tính hiển thị của lịch.", "An error occurred, unable to delete the calendar." : "Một lỗi đã xảy ra, không thể xóa lịch.", @@ -192,7 +194,6 @@ "Edit appointment" : "Chỉnh sửa lịch hẹn", "Save" : "Lưu", "Update" : "Cập nhật", - "Your appointment is booked" : "Lịch hẹn của bạn đã được đặt", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "Chúng tôi đã gửi bạn một email với đầy đủ chi tiết. Vui lòng xác nhận lịch hẹn của bạn bằng liên kết trong email. Bây giờ bạn đã có thể đóng trang này.", "Your name" : "Tên của bạn", "Your email address" : "Địa chỉ email của bạn", @@ -227,6 +228,7 @@ "Busy" : "Bận", "Out of office" : "Không ở văn phòng", "Unknown" : "Không xác định", + "Accept" : "Đồng ý", "Tentative" : "Chưa chắc chắn", "Create Talk room for this event" : "Tạo một phòng trò chuyện cho sự kiện này", "Show busy times" : "Cho thấy các thời gian bận", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 0ab79faa4364a3dbd1e447512881d512bc30eb0b..297747ad9012e2a6fc89c912c27845643ea406d5 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -34,6 +34,7 @@ OC.L10N.register( "Next day" : "后一天", "Next week" : "下周", "Next month" : "下个月", + "New event" : "新事件", "Today" : "今天", "Day" : "日", "Week" : "星期", @@ -52,6 +53,7 @@ OC.L10N.register( "Edit color" : "编辑颜色", "Saving color …" : "正在保存颜色 …", "Copy private link" : "复制私有链接", + "Export" : "导出", "Unshare from me" : "我取消的共享", "An error occurred, unable to change visibility of the calendar." : "发生错误,无法修改日历的可见性。", "An error occurred, unable to delete the calendar." : "发生错误,无法删除日历。", @@ -106,6 +108,7 @@ OC.L10N.register( "Delete permanently" : "永久删除", "Empty trash bin" : "清空回收站", "Untitled element" : "无标题元素", + "Unknown calendar" : "未知日历", "Could not load deleted calendars and objects" : "无法加载已删除的日历和物体", "Could not restore calendar or event" : "无法还原日历或事件", "Do you really want to empty the trash bin?" : "你真想清空回收站吗?", @@ -188,7 +191,6 @@ OC.L10N.register( "Edit appointment" : "编辑预约", "Save" : "保存", "Update" : "更新", - "Your appointment is booked" : "你的预约已登记", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "我们给你发了一封详细的邮件。请使用邮件中的链接确认您的预约。您现在可以关闭此页面。", "Your name" : "名字", "Your email address" : "你的邮箱地址", @@ -216,6 +218,8 @@ OC.L10N.register( "_day_::_days_" : ["天"], "_week_::_weeks_" : ["周"], "Available" : "可用", + "Not available" : "不可用", + "Invitation sent" : "已发送邀请", "Availability of attendees, resources and rooms" : "与会者,资源和会议室的可用性", "{organizer} (organizer)" : "{organizer} (organizer) ", "Free" : "空闲", @@ -223,6 +227,8 @@ OC.L10N.register( "Busy" : "忙碌", "Out of office" : "不在办公室", "Unknown" : "未知", + "Accept" : "接受", + "Decline" : "拒绝", "Tentative" : "暂定", "Create Talk room for this event" : "为此事件创建聊天室", "Show busy times" : "显示繁忙时间", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index c93afa3de0ed35e8bd3f30ebdc33a482a43032b7..45387d90de155320bc895a59fb1c1c3c0fc63b46 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -32,6 +32,7 @@ "Next day" : "后一天", "Next week" : "下周", "Next month" : "下个月", + "New event" : "新事件", "Today" : "今天", "Day" : "日", "Week" : "星期", @@ -50,6 +51,7 @@ "Edit color" : "编辑颜色", "Saving color …" : "正在保存颜色 …", "Copy private link" : "复制私有链接", + "Export" : "导出", "Unshare from me" : "我取消的共享", "An error occurred, unable to change visibility of the calendar." : "发生错误,无法修改日历的可见性。", "An error occurred, unable to delete the calendar." : "发生错误,无法删除日历。", @@ -104,6 +106,7 @@ "Delete permanently" : "永久删除", "Empty trash bin" : "清空回收站", "Untitled element" : "无标题元素", + "Unknown calendar" : "未知日历", "Could not load deleted calendars and objects" : "无法加载已删除的日历和物体", "Could not restore calendar or event" : "无法还原日历或事件", "Do you really want to empty the trash bin?" : "你真想清空回收站吗?", @@ -186,7 +189,6 @@ "Edit appointment" : "编辑预约", "Save" : "保存", "Update" : "更新", - "Your appointment is booked" : "你的预约已登记", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "我们给你发了一封详细的邮件。请使用邮件中的链接确认您的预约。您现在可以关闭此页面。", "Your name" : "名字", "Your email address" : "你的邮箱地址", @@ -214,6 +216,8 @@ "_day_::_days_" : ["天"], "_week_::_weeks_" : ["周"], "Available" : "可用", + "Not available" : "不可用", + "Invitation sent" : "已发送邀请", "Availability of attendees, resources and rooms" : "与会者,资源和会议室的可用性", "{organizer} (organizer)" : "{organizer} (organizer) ", "Free" : "空闲", @@ -221,6 +225,8 @@ "Busy" : "忙碌", "Out of office" : "不在办公室", "Unknown" : "未知", + "Accept" : "接受", + "Decline" : "拒绝", "Tentative" : "暂定", "Create Talk room for this event" : "为此事件创建聊天室", "Show busy times" : "显示繁忙时间", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 79ded39678af664ada4eae14974d3ea0c2dc16fa..a72b22442e8a28009644b686eaf66365abcea064 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -144,6 +144,10 @@ OC.L10N.register( "Actions" : "操作", "Create event" : "建立活動", "Show shortcuts" : "顯示捷徑", + "Editor" : "編輯器", + "Close editor" : "關閉編輯器", + "Save edited event" : "儲存已編輯的活動", + "Delete edited event" : "刪除已編輯的活動", "Enable birthday calendar" : "啟用生日日曆", "Show tasks in calendar" : "在日曆上顯示待辦事項", "Enable simplified editor" : "啟用簡化的編輯器", @@ -154,7 +158,7 @@ OC.L10N.register( "Default reminder" : "默認提醒", "Copy primary CalDAV address" : "複製主要的 CalDAV 位址", "Copy iOS/macOS CalDAV address" : "複製 iOS/macOS 的 CalDAV 位址", - "Personal availability settings" : "個人可用性設置", + "Personal availability settings" : "個人空檔設置", "Show keyboard shortcuts" : "顯示鍵盤快捷鍵", "Settings & import" : "設定及匯入", "No reminder" : "無提醒", @@ -201,7 +205,7 @@ OC.L10N.register( "Edit appointment" : "編輯預約", "Save" : "儲存", "Update" : "更新", - "Your appointment is booked" : "您的預約已預訂", + "Please confirm your reservation" : "請確認您的預約", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "我們向您發送了一封包含詳細信息的電子郵件。 請使用電子郵件中的連結確認您的預約。 您現在可以關閉此頁面。", "Your name" : "您的名字", "Your email address" : "您的電郵地址", @@ -228,7 +232,18 @@ OC.L10N.register( "_hour_::_hours_" : ["時"], "_day_::_days_" : ["天"], "_week_::_weeks_" : ["星期"], + "Suggested" : "建議", "Available" : "可用", + "Not available" : "不可用", + "Checking availability" : "檢查可得性", + "Invitation accepted" : "已接受邀請", + "Accepted {organizerName}'s invitation" : "已接受 {organizerName} 的邀請", + "Invitation declined" : "邀請被婉拒", + "Declined {organizerName}'s invitation" : "已婉拒 {organizerName} 的邀請", + "Invitation is delegated" : "邀請已委派", + "Participation marked as tentative" : "參與標記為暫定", + "Invitation sent" : "邀請已傳送", + "Has not responded to {organizerName}'s invitation yet" : "尚未回覆 {organizerName} 的邀請", "Availability of attendees, resources and rooms" : "參與者、資源和會議室的可得性", "{organizer} (organizer)" : "{organizer}(主辦人)", "Free" : "有空", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 87a7e8e2169558bf7083ba1eaac80d07d3c3e173..0d83ceb55bf4a31aa3860bd202db882788422556 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -142,6 +142,10 @@ "Actions" : "操作", "Create event" : "建立活動", "Show shortcuts" : "顯示捷徑", + "Editor" : "編輯器", + "Close editor" : "關閉編輯器", + "Save edited event" : "儲存已編輯的活動", + "Delete edited event" : "刪除已編輯的活動", "Enable birthday calendar" : "啟用生日日曆", "Show tasks in calendar" : "在日曆上顯示待辦事項", "Enable simplified editor" : "啟用簡化的編輯器", @@ -152,7 +156,7 @@ "Default reminder" : "默認提醒", "Copy primary CalDAV address" : "複製主要的 CalDAV 位址", "Copy iOS/macOS CalDAV address" : "複製 iOS/macOS 的 CalDAV 位址", - "Personal availability settings" : "個人可用性設置", + "Personal availability settings" : "個人空檔設置", "Show keyboard shortcuts" : "顯示鍵盤快捷鍵", "Settings & import" : "設定及匯入", "No reminder" : "無提醒", @@ -199,7 +203,7 @@ "Edit appointment" : "編輯預約", "Save" : "儲存", "Update" : "更新", - "Your appointment is booked" : "您的預約已預訂", + "Please confirm your reservation" : "請確認您的預約", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "我們向您發送了一封包含詳細信息的電子郵件。 請使用電子郵件中的連結確認您的預約。 您現在可以關閉此頁面。", "Your name" : "您的名字", "Your email address" : "您的電郵地址", @@ -226,7 +230,18 @@ "_hour_::_hours_" : ["時"], "_day_::_days_" : ["天"], "_week_::_weeks_" : ["星期"], + "Suggested" : "建議", "Available" : "可用", + "Not available" : "不可用", + "Checking availability" : "檢查可得性", + "Invitation accepted" : "已接受邀請", + "Accepted {organizerName}'s invitation" : "已接受 {organizerName} 的邀請", + "Invitation declined" : "邀請被婉拒", + "Declined {organizerName}'s invitation" : "已婉拒 {organizerName} 的邀請", + "Invitation is delegated" : "邀請已委派", + "Participation marked as tentative" : "參與標記為暫定", + "Invitation sent" : "邀請已傳送", + "Has not responded to {organizerName}'s invitation yet" : "尚未回覆 {organizerName} 的邀請", "Availability of attendees, resources and rooms" : "參與者、資源和會議室的可得性", "{organizer} (organizer)" : "{organizer}(主辦人)", "Free" : "有空", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 8ac1ee12386f5c6ffc513c454089049a3ab3d6bd..1057b600a3e57526c046978aa4a34d07f833249e 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -144,6 +144,10 @@ OC.L10N.register( "Actions" : "動作", "Create event" : "建立活動", "Show shortcuts" : "顯示捷徑", + "Editor" : "編輯器", + "Close editor" : "關閉編輯器", + "Save edited event" : "儲存已編輯的事件", + "Delete edited event" : "刪除已編輯的事件", "Enable birthday calendar" : "啟用生日日曆", "Show tasks in calendar" : "在日曆上顯示待辦事項", "Enable simplified editor" : "啟用簡化的編輯器", @@ -201,7 +205,7 @@ OC.L10N.register( "Edit appointment" : "編輯預約", "Save" : "儲存", "Update" : "更新", - "Your appointment is booked" : "您的預約已登記", + "Please confirm your reservation" : "請確認您的預約", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "我們向您寄送了一封包含詳細資訊的電子郵件。請使用電子郵件中的連結確認您的預約。您現在可以關閉此頁面了。", "Your name" : "您的名字", "Your email address" : "您的電子郵件地址", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index e11e37992d885978881723533a9dfc54d203ce82..4dbde9770ac2a40385a4153d8cd5d06171899b07 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -142,6 +142,10 @@ "Actions" : "動作", "Create event" : "建立活動", "Show shortcuts" : "顯示捷徑", + "Editor" : "編輯器", + "Close editor" : "關閉編輯器", + "Save edited event" : "儲存已編輯的事件", + "Delete edited event" : "刪除已編輯的事件", "Enable birthday calendar" : "啟用生日日曆", "Show tasks in calendar" : "在日曆上顯示待辦事項", "Enable simplified editor" : "啟用簡化的編輯器", @@ -199,7 +203,7 @@ "Edit appointment" : "編輯預約", "Save" : "儲存", "Update" : "更新", - "Your appointment is booked" : "您的預約已登記", + "Please confirm your reservation" : "請確認您的預約", "We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now." : "我們向您寄送了一封包含詳細資訊的電子郵件。請使用電子郵件中的連結確認您的預約。您現在可以關閉此頁面了。", "Your name" : "您的名字", "Your email address" : "您的電子郵件地址", diff --git a/lib/Db/AppointmentConfig.php b/lib/Db/AppointmentConfig.php index 5eae0dab7302b543fdf4c5c6d835e98830fc42cd..c56bac5c2075525020e9831c9af94d281a7da652 100644 --- a/lib/Db/AppointmentConfig.php +++ b/lib/Db/AppointmentConfig.php @@ -28,6 +28,7 @@ namespace OCA\Calendar\Db; use JsonSerializable; use OCP\AppFramework\Db\Entity; +use ReturnTypeWillChange; use function json_decode; use function json_encode; @@ -183,6 +184,7 @@ class AppointmentConfig extends Entity implements JsonSerializable { return $this; } + #[ReturnTypeWillChange] public function jsonSerialize() { return [ 'id' => $this->id, diff --git a/lib/Db/Booking.php b/lib/Db/Booking.php index 4b63d1b87917a6d1eb5b4d310ed52693b820b1ed..b68de88f30d537506558dea9270068fb6d1aa60b 100644 --- a/lib/Db/Booking.php +++ b/lib/Db/Booking.php @@ -28,6 +28,7 @@ namespace OCA\Calendar\Db; use JsonSerializable; use OCP\AppFramework\Db\Entity; +use ReturnTypeWillChange; /** * @method int getId() @@ -94,6 +95,7 @@ class Booking extends Entity implements JsonSerializable { $this->addType('confirmed', 'boolean'); } + #[ReturnTypeWillChange] public function jsonSerialize() { return [ 'id' => $this->getId(), diff --git a/lib/Service/JSDataService.php b/lib/Service/JSDataService.php index 8b5c071e4b20b320202b026bbca57bcf40b68d04..1f83ceae6407a7bdf0b782c18c0f5698f3a07c1c 100644 --- a/lib/Service/JSDataService.php +++ b/lib/Service/JSDataService.php @@ -26,6 +26,7 @@ namespace OCA\Calendar\Service; use OCA\Calendar\AppInfo\Application; use OCP\IConfig; use OCP\IUserSession; +use ReturnTypeWillChange; class JSDataService implements \JsonSerializable { @@ -50,6 +51,7 @@ class JSDataService implements \JsonSerializable { /** * @inheritDoc */ + #[ReturnTypeWillChange] public function jsonSerialize() { $user = $this->userSession->getUser(); diff --git a/package-lock.json b/package-lock.json index e9bc075a8ec42f89d99b298cd9e5aa98c4d6a102..8b614e9f8ec011be26b93930d26136110c9c8094 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,39 +1,39 @@ { "name": "calendar", - "version": "3.2.0", + "version": "3.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "calendar", - "version": "3.2.0", + "version": "3.3.0", "license": "agpl", "dependencies": { - "@fullcalendar/core": "5.10.1", - "@fullcalendar/daygrid": "5.10.1", - "@fullcalendar/interaction": "5.10.1", - "@fullcalendar/list": "5.10.1", - "@fullcalendar/resource-timeline": "5.10.1", - "@fullcalendar/timegrid": "5.10.1", - "@fullcalendar/vue": "5.10.1", + "@fullcalendar/core": "5.11.0", + "@fullcalendar/daygrid": "5.11.0", + "@fullcalendar/interaction": "5.11.0", + "@fullcalendar/list": "5.11.0", + "@fullcalendar/resource-timeline": "5.11.0", + "@fullcalendar/timegrid": "5.11.0", + "@fullcalendar/vue": "5.11.0", "@nextcloud/auth": "^1.3.0", - "@nextcloud/axios": "^1.9.0", + "@nextcloud/axios": "^1.10.0", "@nextcloud/calendar-availability-vue": "^0.3.1", "@nextcloud/calendar-js": "^3.0.0", "@nextcloud/cdav-library": "^1.1.0", "@nextcloud/dialogs": "^3.1.2", "@nextcloud/event-bus": "^2.1.1", "@nextcloud/initial-state": "^1.2.1", - "@nextcloud/l10n": "^1.4.1", + "@nextcloud/l10n": "^1.6.0", "@nextcloud/logger": "^2.1.0", - "@nextcloud/moment": "^1.1.1", + "@nextcloud/moment": "^1.2.1", "@nextcloud/router": "^2.0.0", - "@nextcloud/vue": "^4.4.0", + "@nextcloud/vue": "^5.3.1", "@nextcloud/vue-dashboard": "^2.0.1", "autosize": "^5.0.1", "closest-css-color": "^1.0.0", "color-convert": "^2.0.1", - "core-js": "^3.21.1", + "core-js": "^3.22.7", "css-color-names": "^1.0.1", "debounce": "^1.2.1", "jstz": "^2.1.1", @@ -44,7 +44,7 @@ "vue-click-outside": "^1.1.0", "vue-clipboard2": "^0.3.3", "vue-material-design-icons": "^5.0.0", - "vue-router": "^3.5.3", + "vue-router": "^3.5.4", "vue-shortkey": "^3.1.7", "vuedraggable": "^2.24.3", "vuex": "^3.6.2", @@ -53,9 +53,9 @@ "devDependencies": { "@nextcloud/babel-config": "^1.0.0", "@nextcloud/browserslist-config": "^2.2.0", - "@nextcloud/eslint-config": "^6.1.2", + "@nextcloud/eslint-config": "^8.0.0", "@nextcloud/stylelint-config": "^2.1.2", - "@nextcloud/webpack-vue-config": "^4.3.2", + "@nextcloud/webpack-vue-config": "^5.1.0", "@vue/test-utils": "^1.3.0", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^27.4.4", @@ -76,38 +76,11 @@ "fsevents": "^2.3.2" } }, - "node_modules/@babel/cli": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.14.5.tgz", - "integrity": "sha512-poegjhRvXHWO0EAsnYajwYZuqcz7gyfxwfaecUESxDujrqOivf3zrjFbub8IJkrqEaz3fvJWh001EzxBub54fg==", - "dependencies": { - "commander": "^4.0.1", - "convert-source-map": "^1.1.0", - "fs-readdir-recursive": "^1.1.0", - "glob": "^7.0.0", - "make-dir": "^2.1.0", - "slash": "^2.0.0", - "source-map": "^0.5.0" - }, - "bin": { - "babel": "bin/babel.js", - "babel-external-helpers": "bin/babel-external-helpers.js" - }, - "engines": { - "node": ">=6.9.0" - }, - "optionalDependencies": { - "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.2", - "chokidar": "^3.4.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/code-frame": { "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", + "dev": true, "dependencies": { "@babel/highlight": "^7.16.7" }, @@ -119,6 +92,7 @@ "version": "7.16.4", "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz", "integrity": "sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==", + "dev": true, "engines": { "node": ">=6.9.0" } @@ -127,6 +101,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz", "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==", + "dev": true, "dependencies": { "@babel/code-frame": "^7.16.7", "@babel/generator": "^7.16.7", @@ -153,9 +128,9 @@ } }, "node_modules/@babel/eslint-parser": { - "version": "7.14.7", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.14.7.tgz", - "integrity": "sha512-6WPwZqO5priAGIwV6msJcdc9TsEPzYeYdS/Xuoap+/ihkgN6dzHp2bcAAwyWZ5bLzk0vvjDmKvRwkqNaiJ8BiQ==", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.17.0.tgz", + "integrity": "sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==", "dev": true, "peer": true, "dependencies": { @@ -168,13 +143,14 @@ }, "peerDependencies": { "@babel/core": ">=7.11.0", - "eslint": ">=7.5.0" + "eslint": "^7.5.0 || ^8.0.0" } }, "node_modules/@babel/generator": { "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.7.tgz", "integrity": "sha512-/ST3Sg8MLGY5HVYmrjOgL60ENux/HfO/CsUh7y4MalThufhE/Ff/6EibFDHi4jiDCaWfJKoqbE6oTh21c5hrRg==", + "dev": true, "dependencies": { "@babel/types": "^7.16.7", "jsesc": "^2.5.1", @@ -188,6 +164,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz", "integrity": "sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA==", + "dev": true, + "peer": true, "dependencies": { "@babel/types": "^7.14.5" }, @@ -199,6 +177,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz", "integrity": "sha512-YTA/Twn0vBXDVGJuAX6PwW7x5zQei1luDDo2Pl6q1qZ7hVNl0RZrhHCQG/ArGpR29Vl7ETiB8eJyrvpuRp300w==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-explode-assignable-expression": "^7.14.5", "@babel/types": "^7.14.5" @@ -211,6 +191,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz", "integrity": "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==", + "dev": true, "dependencies": { "@babel/compat-data": "^7.16.4", "@babel/helper-validator-option": "^7.16.7", @@ -228,6 +209,8 @@ "version": "7.14.6", "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.6.tgz", "integrity": "sha512-Z6gsfGofTxH/+LQXqYEK45kxmcensbzmk/oi8DmaQytlQCgqNZt9XQF8iqlI/SeXWVjaMNxvYvzaYw+kh42mDg==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.14.5", "@babel/helper-function-name": "^7.14.5", @@ -247,6 +230,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz", "integrity": "sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.14.5", "regexpu-core": "^4.7.1" @@ -262,6 +247,8 @@ "version": "0.2.3", "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz", "integrity": "sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-compilation-targets": "^7.13.0", "@babel/helper-module-imports": "^7.12.13", @@ -280,6 +267,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz", "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==", + "dev": true, "dependencies": { "@babel/types": "^7.16.7" }, @@ -291,6 +279,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz", "integrity": "sha512-Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ==", + "dev": true, + "peer": true, "dependencies": { "@babel/types": "^7.14.5" }, @@ -302,6 +292,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz", "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==", + "dev": true, "dependencies": { "@babel/helper-get-function-arity": "^7.16.7", "@babel/template": "^7.16.7", @@ -315,6 +306,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz", "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==", + "dev": true, "dependencies": { "@babel/types": "^7.16.7" }, @@ -326,6 +318,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", + "dev": true, "dependencies": { "@babel/types": "^7.16.7" }, @@ -337,6 +330,8 @@ "version": "7.14.7", "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz", "integrity": "sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA==", + "dev": true, + "peer": true, "dependencies": { "@babel/types": "^7.14.5" }, @@ -348,6 +343,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz", "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==", + "dev": true, "dependencies": { "@babel/types": "^7.16.7" }, @@ -359,6 +355,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz", "integrity": "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==", + "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.16.7", "@babel/helper-module-imports": "^7.16.7", @@ -377,6 +374,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz", "integrity": "sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==", + "dev": true, + "peer": true, "dependencies": { "@babel/types": "^7.14.5" }, @@ -388,6 +387,7 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", + "dev": true, "engines": { "node": ">=6.9.0" } @@ -396,6 +396,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.14.5.tgz", "integrity": "sha512-rLQKdQU+HYlxBwQIj8dk4/0ENOUEhA/Z0l4hN8BexpvmSMN9oA9EagjnhnDpNsRdWCfjwa4mn/HyBXO9yhQP6A==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.14.5", "@babel/helper-wrap-function": "^7.14.5", @@ -409,6 +411,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz", "integrity": "sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-member-expression-to-functions": "^7.14.5", "@babel/helper-optimise-call-expression": "^7.14.5", @@ -423,6 +427,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz", "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==", + "dev": true, "dependencies": { "@babel/types": "^7.16.7" }, @@ -434,6 +439,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz", "integrity": "sha512-dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ==", + "dev": true, + "peer": true, "dependencies": { "@babel/types": "^7.14.5" }, @@ -445,6 +452,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", + "dev": true, "dependencies": { "@babel/types": "^7.16.7" }, @@ -456,6 +464,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", + "dev": true, "engines": { "node": ">=6.9.0" } @@ -464,6 +473,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz", "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==", + "dev": true, "engines": { "node": ">=6.9.0" } @@ -472,6 +482,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.14.5.tgz", "integrity": "sha512-YEdjTCq+LNuNS1WfxsDCNpgXkJaIyqco6DAelTUjT4f2KIWC1nBcaCaSdHTBqQVLnTBexBcVcFhLSU1KnYuePQ==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-function-name": "^7.14.5", "@babel/template": "^7.14.5", @@ -486,6 +498,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.7.tgz", "integrity": "sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw==", + "dev": true, "dependencies": { "@babel/template": "^7.16.7", "@babel/traverse": "^7.16.7", @@ -499,6 +512,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz", "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==", + "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.16.7", "chalk": "^2.0.0", @@ -512,6 +526,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.7.tgz", "integrity": "sha512-sR4eaSrnM7BV7QPzGfEX5paG/6wrZM3I0HDzfIAK06ESvo9oy3xBuVBxE3MbQaKNhvg8g/ixjMWo2CGpzpHsDA==", + "dev": true, "bin": { "parser": "bin/babel-parser.js" }, @@ -523,6 +538,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz", "integrity": "sha512-ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", @@ -539,6 +556,8 @@ "version": "7.14.7", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.7.tgz", "integrity": "sha512-RK8Wj7lXLY3bqei69/cc25gwS5puEc3dknoFPFbqfy3XxYQBQFvu4ioWpafMBAB+L9NyptQK4nMOa5Xz16og8Q==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/helper-remap-async-to-generator": "^7.14.5", @@ -555,6 +574,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz", "integrity": "sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-create-class-features-plugin": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5" @@ -570,6 +591,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.5.tgz", "integrity": "sha512-KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-create-class-features-plugin": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5", @@ -586,6 +609,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz", "integrity": "sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3" @@ -601,6 +626,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz", "integrity": "sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" @@ -616,6 +643,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz", "integrity": "sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-json-strings": "^7.8.3" @@ -631,6 +660,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz", "integrity": "sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" @@ -646,6 +677,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz", "integrity": "sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" @@ -661,6 +694,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz", "integrity": "sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-numeric-separator": "^7.10.4" @@ -676,6 +711,8 @@ "version": "7.14.7", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.7.tgz", "integrity": "sha512-082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g==", + "dev": true, + "peer": true, "dependencies": { "@babel/compat-data": "^7.14.7", "@babel/helper-compilation-targets": "^7.14.5", @@ -694,6 +731,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz", "integrity": "sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" @@ -709,6 +748,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz", "integrity": "sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", @@ -725,6 +766,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz", "integrity": "sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-create-class-features-plugin": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5" @@ -740,6 +783,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.5.tgz", "integrity": "sha512-62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.14.5", "@babel/helper-create-class-features-plugin": "^7.14.5", @@ -757,6 +802,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz", "integrity": "sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5" @@ -772,6 +819,7 @@ "version": "7.8.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -795,6 +843,7 @@ "version": "7.12.13", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" }, @@ -806,6 +855,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -820,6 +871,8 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -831,6 +884,8 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.3" }, @@ -854,6 +909,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -865,6 +921,7 @@ "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -876,6 +933,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -887,6 +945,7 @@ "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -898,6 +957,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -909,6 +969,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -920,6 +981,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -931,6 +993,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -945,6 +1009,7 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -959,6 +1024,7 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz", "integrity": "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==", + "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -973,6 +1039,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz", "integrity": "sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -987,6 +1055,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz", "integrity": "sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-module-imports": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5", @@ -1003,6 +1073,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz", "integrity": "sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1017,6 +1089,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.5.tgz", "integrity": "sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1031,6 +1105,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.5.tgz", "integrity": "sha512-J4VxKAMykM06K/64z9rwiL6xnBHgB1+FVspqvlgCdwD1KUbQNfszeKVVOMh59w3sztHYIZDgnhOC4WbdEfHFDA==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.14.5", "@babel/helper-function-name": "^7.14.5", @@ -1051,6 +1127,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz", "integrity": "sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1065,6 +1143,8 @@ "version": "7.14.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz", "integrity": "sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1079,6 +1159,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz", "integrity": "sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5" @@ -1094,6 +1176,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz", "integrity": "sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1108,6 +1192,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz", "integrity": "sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5" @@ -1123,6 +1209,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz", "integrity": "sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1137,6 +1225,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz", "integrity": "sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-function-name": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5" @@ -1152,6 +1242,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz", "integrity": "sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1166,6 +1258,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz", "integrity": "sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1180,6 +1274,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz", "integrity": "sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-module-transforms": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5", @@ -1196,6 +1292,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.5.tgz", "integrity": "sha512-en8GfBtgnydoao2PS+87mKyw62k02k7kJ9ltbKe0fXTHrQmG6QZZflYuGI1VVG7sVpx4E1n7KBpNlPb8m78J+A==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-module-transforms": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5", @@ -1213,6 +1311,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.14.5.tgz", "integrity": "sha512-mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-hoist-variables": "^7.14.5", "@babel/helper-module-transforms": "^7.14.5", @@ -1231,6 +1331,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz", "integrity": "sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-module-transforms": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5" @@ -1246,6 +1348,8 @@ "version": "7.14.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.7.tgz", "integrity": "sha512-DTNOTaS7TkW97xsDMrp7nycUVh6sn/eq22VaxWfEdzuEbRsiaOU0pqU7DlyUGHVsbQbSghvjKRpEl+nUCKGQSg==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.14.5" }, @@ -1260,6 +1364,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz", "integrity": "sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1274,6 +1380,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz", "integrity": "sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/helper-replace-supers": "^7.14.5" @@ -1289,6 +1397,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz", "integrity": "sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1303,6 +1413,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz", "integrity": "sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1317,6 +1429,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz", "integrity": "sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==", + "dev": true, + "peer": true, "dependencies": { "regenerator-transform": "^0.14.2" }, @@ -1331,6 +1445,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz", "integrity": "sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1345,6 +1461,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz", "integrity": "sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1359,6 +1477,8 @@ "version": "7.14.6", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz", "integrity": "sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5" @@ -1374,6 +1494,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz", "integrity": "sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1388,6 +1510,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz", "integrity": "sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1402,6 +1526,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz", "integrity": "sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1412,26 +1538,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-typescript": { - "version": "7.14.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.6.tgz", - "integrity": "sha512-XlTdBq7Awr4FYIzqhmYY80WN0V0azF74DMPyFqVHBvf81ZUgc4X7ZOpx6O8eLDK6iM5cCQzeyJw0ynTaefixRA==", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.14.6", - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/plugin-syntax-typescript": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/plugin-transform-unicode-escapes": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz", "integrity": "sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1446,6 +1558,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz", "integrity": "sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5" @@ -1483,6 +1597,8 @@ "version": "7.14.7", "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.14.7.tgz", "integrity": "sha512-itOGqCKLsSUl0Y+1nSfhbuuOlTs0MJk2Iv7iSH+XT/mR8U1zRLO7NjWlYXB47yhK4J/7j+HYty/EhFZDYKa/VA==", + "dev": true, + "peer": true, "dependencies": { "@babel/compat-data": "^7.14.7", "@babel/helper-compilation-targets": "^7.14.5", @@ -1569,6 +1685,8 @@ "version": "0.1.4", "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz", "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", @@ -1580,22 +1698,6 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/preset-typescript": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.14.5.tgz", - "integrity": "sha512-u4zO6CdbRKbS9TypMqrlGH7sd2TAJppZwn3c/ZRLeO/wGsbddxgbPDUZVNrie3JWYLQ9vpineKlsrWFvO6Pwkw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-validator-option": "^7.14.5", - "@babel/plugin-transform-typescript": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/runtime": { "version": "7.3.4", "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.3.4.tgz", @@ -1613,6 +1715,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", + "dev": true, "dependencies": { "@babel/code-frame": "^7.16.7", "@babel/parser": "^7.16.7", @@ -1626,6 +1729,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.7.tgz", "integrity": "sha512-8KWJPIb8c2VvY8AJrydh6+fVRo2ODx1wYBU2398xJVq0JomuLBZmVQzLPBblJgHIGYG4znCpUZUZ0Pt2vdmVYQ==", + "dev": true, "dependencies": { "@babel/code-frame": "^7.16.7", "@babel/generator": "^7.16.7", @@ -1646,6 +1750,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.7.tgz", "integrity": "sha512-E8HuV7FO9qLpx6OtoGfUQ2cjIYnbFwvZWYBS+87EwtdMvmUPJSwykpovFB+8insbpF0uJcpr8KMUi64XZntZcg==", + "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.16.7", "to-fast-properties": "^2.0.0" @@ -1671,55 +1776,52 @@ } }, "node_modules/@es-joy/jsdoccomment": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.12.0.tgz", - "integrity": "sha512-Gw4/j9v36IKY8ET+W0GoOzrRw17xjf21EIFFRL3zx21fF5MnqmeNpNi+PU/LKjqLpPb2Pw2XdlJbYM31VVo/PQ==", + "version": "0.31.0", + "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.31.0.tgz", + "integrity": "sha512-tc1/iuQcnaiSIUVad72PBierDFpsxdUHtEF/OrfqvM1CBAsIoMP51j52jTMb3dXriwhieTo289InzZj72jL3EQ==", "dev": true, "peer": true, "dependencies": { - "comment-parser": "1.2.4", + "comment-parser": "1.3.1", "esquery": "^1.4.0", - "jsdoc-type-pratt-parser": "2.0.0" + "jsdoc-type-pratt-parser": "~3.1.0" }, "engines": { - "node": "^12 || ^14 || ^16 || ^17" - } - }, - "node_modules/@es-joy/jsdoccomment/node_modules/comment-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.2.4.tgz", - "integrity": "sha512-pm0b+qv+CkWNriSTMsfnjChF9kH0kxz55y44Wo5le9qLxMj5xDQAaEd9ZN1ovSuk9CsrncWaFwgpOMg7ClJwkw==", - "dev": true, - "peer": true, - "engines": { - "node": ">= 12.0.0" + "node": "^14 || ^16 || ^17 || ^18" } }, "node_modules/@eslint/eslintrc": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.2.tgz", - "integrity": "sha512-8nmGq/4ycLpIwzvhI4tNDmQztZ8sp+hI7cyG8i1nQDhkAbRzHpXPidRAHlNvCZQpJTKw5ItIpMw9RSToGF00mg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.1.tgz", + "integrity": "sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ==", "dev": true, "peer": true, "dependencies": { "ajv": "^6.12.4", - "debug": "^4.1.1", - "espree": "^7.3.0", + "debug": "^4.3.2", + "espree": "^9.3.1", "globals": "^13.9.0", - "ignore": "^4.0.6", + "ignore": "^5.2.0", "import-fresh": "^3.2.1", - "js-yaml": "^3.13.1", + "js-yaml": "^4.1.0", "minimatch": "^3.0.4", "strip-json-comments": "^3.1.1" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "peer": true + }, "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.9.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.9.0.tgz", - "integrity": "sha512-74/FduwI/JaIrr1H8e71UbDE+5x7pIPs1C2rrwC52SszOo043CsWOZEMW7o2Y58xwm9b+0RBKDxY5n2sUpEFxA==", + "version": "13.13.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.13.0.tgz", + "integrity": "sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==", "dev": true, "peer": true, "dependencies": { @@ -1732,6 +1834,19 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "peer": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, "node_modules/@eslint/eslintrc/node_modules/type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", @@ -1746,125 +1861,147 @@ } }, "node_modules/@fullcalendar/common": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/common/-/common-5.10.1.tgz", - "integrity": "sha512-EumKIJcQTvQdTs75/9dmeREFgjcRVWzqHJS1Xvlz5mNsmB+w9EINCHETRjChtAQg1WD/lTQyVj4sHsKO7vCMSw==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/common/-/common-5.11.0.tgz", + "integrity": "sha512-gWjbMAnN1u73Oqlgjbyky7i+3bY0hvFSnGT0YBPx44n874AkQa9e9OU12PMLTMOPy0tXPb8DEwRelFQ7CJNbcw==", "dependencies": { "tslib": "^2.1.0" } }, "node_modules/@fullcalendar/core": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/core/-/core-5.10.1.tgz", - "integrity": "sha512-8sVuC6ywXV+cxqsqTZaR1hgUqeyjVed20NyZ7lGW9AY0kma1GIEwLgqPS5Q6uVhHyin68lmgecKfJCwhxENE8w==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/core/-/core-5.11.0.tgz", + "integrity": "sha512-cF/d9LuJb/6xw14ms0urv1H4BiA70c4jrufe/EuVzLR6qTDpK92IZ3JK7GVtZtzptfTYZ/NQgDV9YCzIaO9Blw==", "dependencies": { - "@fullcalendar/common": "~5.10.1", + "@fullcalendar/common": "~5.11.0", "preact": "^10.0.5", "tslib": "^2.1.0" } }, "node_modules/@fullcalendar/daygrid": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/daygrid/-/daygrid-5.10.1.tgz", - "integrity": "sha512-sfUMP+rew0krsBffgNcWWKhBCiyytGfRKZJoc64E8ohX7VWjPcPZuB1xgO5U4wPLmNkT0rZiHoGeQGTXw1+ZKg==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/daygrid/-/daygrid-5.11.0.tgz", + "integrity": "sha512-Ybh/dfHn/VL0qOVIRVyJc9I8oYiqqHl6xQONk8xXCe456QbPzAQLsAxpLLJLH+3smWNCfoQgvDKzR9e9XTzLMQ==", "dependencies": { - "@fullcalendar/common": "~5.10.1", + "@fullcalendar/common": "~5.11.0", "tslib": "^2.1.0" } }, "node_modules/@fullcalendar/interaction": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/interaction/-/interaction-5.10.1.tgz", - "integrity": "sha512-H1g1QeXg7yXtUcKmVtfg7uzm5R5ElFTvYniiXU+8kJda69IDg7Lee+Y7UDv5dvLb5/HxO86RhPVxRtcOQ8XdXw==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/interaction/-/interaction-5.11.0.tgz", + "integrity": "sha512-9XTI5+ydqrSX+IL3iWgKBURXfnPewn57Tmsv9mJZhiqrUEF7/+qtftLoKEAc8ZdWk/+01aBe67PFL16uPXj2Jg==", "dependencies": { - "@fullcalendar/common": "~5.10.1", + "@fullcalendar/common": "~5.11.0", "tslib": "^2.1.0" } }, "node_modules/@fullcalendar/list": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/list/-/list-5.10.1.tgz", - "integrity": "sha512-sB+AzM9P1nzGIzwVFNN8Zbocg5lkVQftyuJAZtULgu9o9e1rH/Aqsxt9Itf00N3WmMOh8H1LlnRpZF5kGu/j2w==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/list/-/list-5.11.0.tgz", + "integrity": "sha512-0dl/JV6zEGseTDXpM16nozetByVvJ4l/DElYP+StCtnk+Lr51zFK0yfRWRwB9XInxyapfZLDd/3YjKXQf8Bxcw==", "dependencies": { - "@fullcalendar/common": "~5.10.1", + "@fullcalendar/common": "~5.11.0", "tslib": "^2.1.0" } }, "node_modules/@fullcalendar/premium-common": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/premium-common/-/premium-common-5.10.1.tgz", - "integrity": "sha512-yOZgtVI/7tt1oeQABLQqTNLEv2YpxbE0ywvQ+VwtrKc5LksmUA2czO4peom1KIAwH6JsZnytpvwQ4k4cP8Ivaw==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/premium-common/-/premium-common-5.11.0.tgz", + "integrity": "sha512-XVLJwJQ26EhuglBM1flmrKtNt0BEUBHoazko/wvMiz5Yz17eABKQreFTidipOwjL3s74ifQzDoYpkQVn8TzpZQ==", "dependencies": { - "@fullcalendar/common": "~5.10.1", + "@fullcalendar/common": "~5.11.0", "tslib": "^2.1.0" } }, "node_modules/@fullcalendar/resource-common": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/resource-common/-/resource-common-5.10.1.tgz", - "integrity": "sha512-20JR8cucAeJEXSbWVSj9USwsPGKb3dVQr8CBiXuHPbD0OLK93j7jhKjBlp/pRldtcJW9mIXC8ENQvw/aNZJ9Cw==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/resource-common/-/resource-common-5.11.0.tgz", + "integrity": "sha512-zO6UK9IKo7O8Uj5Y1t9sLMsLyNmxAliriAlz/NNhk//O/yGmQZ5MQOgVDg2qCZpDOWgQeuSZOkTTJdud5ISe2Q==", "dependencies": { - "@fullcalendar/common": "~5.10.1", - "@fullcalendar/premium-common": "~5.10.1", + "@fullcalendar/common": "~5.11.0", + "@fullcalendar/premium-common": "~5.11.0", "tslib": "^2.1.0" } }, "node_modules/@fullcalendar/resource-timeline": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/resource-timeline/-/resource-timeline-5.10.1.tgz", - "integrity": "sha512-gsqjr6Z+LQcNbQlHgaTtg/kF8l6yDRtIuMQbhFlTy71RJI//x2mHhLXgV40FJeEE+srp48xJPd89+rIhlyJ5Tw==", - "dependencies": { - "@fullcalendar/common": "~5.10.1", - "@fullcalendar/premium-common": "~5.10.1", - "@fullcalendar/resource-common": "~5.10.1", - "@fullcalendar/scrollgrid": "~5.10.1", - "@fullcalendar/timeline": "~5.10.1", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/resource-timeline/-/resource-timeline-5.11.0.tgz", + "integrity": "sha512-+40sKEQj/ig6oh+8/FZPaFYtqI4e9wa/2XT2MTtzwDr3modHU0mQChlpcY8WQ+c6kyPjVwhO89BFiv2OeilLWw==", + "dependencies": { + "@fullcalendar/common": "~5.11.0", + "@fullcalendar/premium-common": "~5.11.0", + "@fullcalendar/resource-common": "~5.11.0", + "@fullcalendar/scrollgrid": "~5.11.0", + "@fullcalendar/timeline": "~5.11.0", "tslib": "^2.1.0" } }, "node_modules/@fullcalendar/scrollgrid": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/scrollgrid/-/scrollgrid-5.10.1.tgz", - "integrity": "sha512-Hj6gzj2/sUUnozIMC0GBK60/ZTeDchp/Gc2S4F+05W6V4BoUXbIwav+EdAerfNFOv7EXWa9vM9Lq3A53iVWFVg==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/scrollgrid/-/scrollgrid-5.11.0.tgz", + "integrity": "sha512-OPwLGLr0YF2qQYa9K1vPIGsodfAqPnugcwKLwnkiLprC2UybnPaIXvY6xMAHyVWSiBaeJSmkQ0J8mZDmfKjdTw==", "dependencies": { - "@fullcalendar/common": "~5.10.1", - "@fullcalendar/premium-common": "~5.10.1", + "@fullcalendar/common": "~5.11.0", + "@fullcalendar/premium-common": "~5.11.0", "tslib": "^2.1.0" } }, "node_modules/@fullcalendar/timegrid": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/timegrid/-/timegrid-5.10.1.tgz", - "integrity": "sha512-0O0m+JzFBlg8gxYr/rIjZViRlbndCtjZlDjjIylQHFBeWC32e3cpHEavKGbTIBLN8SDilUYAJnE21abSqC2G/w==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/timegrid/-/timegrid-5.11.0.tgz", + "integrity": "sha512-GNy+/PwAj510PS4Fu18Mf/CytNBVftFU7M8XwsUXOCJ6ouyroHZje0a7k5cH/nE5IQ6NJZfH2eAPBlxGath1MQ==", "dependencies": { - "@fullcalendar/common": "~5.10.1", - "@fullcalendar/daygrid": "~5.10.1", + "@fullcalendar/common": "~5.11.0", + "@fullcalendar/daygrid": "~5.11.0", "tslib": "^2.1.0" } }, "node_modules/@fullcalendar/timeline": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/timeline/-/timeline-5.10.1.tgz", - "integrity": "sha512-pFMhK4nsCvpsA63GPJQtT1RSS2OLlT9a2+fvsf2oQregBLcottJSlCjIsIuKP7hpQLimaSdLr2kNjh5hs8jKlw==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/timeline/-/timeline-5.11.0.tgz", + "integrity": "sha512-2mASvwsXMR42Vlvwjnb5w0OvMDf8z2WCZXpLCd11lP/b+ZYOosCrJZZQWpzNfWYf7Y4Sqjo7q+YMPxnJqlichg==", "dependencies": { - "@fullcalendar/common": "~5.10.1", - "@fullcalendar/premium-common": "~5.10.1", - "@fullcalendar/scrollgrid": "~5.10.1", + "@fullcalendar/common": "~5.11.0", + "@fullcalendar/premium-common": "~5.11.0", + "@fullcalendar/scrollgrid": "~5.11.0", "tslib": "^2.1.0" } }, "node_modules/@fullcalendar/vue": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/vue/-/vue-5.10.1.tgz", - "integrity": "sha512-fzWa76ztn4w6pWUHDGQnedrWeHaBUQ3uTuGT3nM7jr3NOKdufAfzh8y4UHRFN2P2pIWpcEV3wji6DZcHmqhyYw==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/vue/-/vue-5.11.0.tgz", + "integrity": "sha512-+hG2D6esKbGK2vUs5Te+mXTL8L0XCPTiTIxSLYXtmNMgRcDHZ2qoAjad/9upIyfarUFfz1yPdjDJpxAs8UvcLw==", "dependencies": { - "@fullcalendar/core": "~5.10.1", + "@fullcalendar/core": "~5.11.0", "tslib": "^2.1.0" }, "peerDependencies": { "vue": "^2.6.12" } }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", + "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", + "dev": true, + "peer": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true, + "peer": true + }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -2620,21 +2757,17 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, "node_modules/@nextcloud/axios": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@nextcloud/axios/-/axios-1.9.0.tgz", - "integrity": "sha512-yKExR6/POJpFuEaGofcgAq9fupfz2PsKDs+s9hfKXUAhQcPF1eyaZcWXA324uFlY9IiofhWft8oTSRLm1Vqj9w==", - "dependencies": { - "@babel/cli": "^7.8.4", - "@babel/core": "^7.9.0", - "@babel/preset-env": "^7.9.0", - "@babel/preset-typescript": "^7.9.0", - "@nextcloud/auth": "^1.2.2", - "axios": "^0.25.0", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@nextcloud/axios/-/axios-1.10.0.tgz", + "integrity": "sha512-dC+Z5ibBRxkep6ysoRmUldUfQsZiqC5fGLbwwU0Unxjy+Qrcl2U9rcljZJagwXs1kag5/KZFG1rlGcew2GAgyg==", + "dependencies": { + "@nextcloud/auth": "^1.3.0", + "axios": "^0.27.1", "core-js": "^3.6.4" }, "engines": { - "node": "^14.0.0", - "npm": "^7.0.0" + "node": "^14", + "npm": "^7" } }, "node_modules/@nextcloud/babel-config": { @@ -2744,9 +2877,9 @@ } }, "node_modules/@nextcloud/eslint-config": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/@nextcloud/eslint-config/-/eslint-config-6.1.2.tgz", - "integrity": "sha512-KEErxReF89vuOVRvOWtky/j1UtOjBGgtDK+LjdehGah66P9se0WACtbIC+3DLZ9IIrtOP45X05LashELnXs7dg==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@nextcloud/eslint-config/-/eslint-config-8.0.0.tgz", + "integrity": "sha512-B93OZ7vSEJl6QLtEGarkdpjTEKGdXbMP/ZSuIj/vecng6CZzv3mDQ9diaNTQPlU7Q3CP0N6nqTVqcOltbApUMQ==", "dev": true, "engines": { "node": "^14.0.0", @@ -2754,15 +2887,15 @@ }, "peerDependencies": { "@babel/core": "^7.13.10", - "@babel/eslint-parser": "^7.13.10", + "@babel/eslint-parser": "^7.16.5", "@nextcloud/eslint-plugin": "^2.0.0", - "eslint": "^7.13.0", - "eslint-config-standard": "^16.0.1", - "eslint-plugin-import": "^2.22.1", - "eslint-plugin-jsdoc": "^37.0.3", + "eslint": "^8.6.0", + "eslint-config-standard": "^17.0.0-0", + "eslint-plugin-import": "^2.25.4", + "eslint-plugin-jsdoc": "^39.2.1", "eslint-plugin-node": "^11.1.0", - "eslint-plugin-promise": "^5.1.0", - "eslint-plugin-vue": "^7.15.0", + "eslint-plugin-promise": "^6.0.0", + "eslint-plugin-vue": "^8.2.0", "webpack": "^5.4.0" } }, @@ -2831,9 +2964,9 @@ } }, "node_modules/@nextcloud/l10n": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@nextcloud/l10n/-/l10n-1.4.1.tgz", - "integrity": "sha512-19LPGmozfuLCeO4xRS9Y1Av6DquqVgBH2kQyWL6dJ49AynMGN9uVOrNv3GYoqULzEcHoetMAt+8PLTdE6zKbvA==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@nextcloud/l10n/-/l10n-1.6.0.tgz", + "integrity": "sha512-aKGlgrwN9OiafN791sYus0shfwNeU3PlrH6Oi9ISma6iJSvN6a8aJM8WGKCJ9pqBaTR5PrDuckuM/WnybBWb6A==", "dependencies": { "core-js": "^3.6.4", "node-gettext": "^3.0.0" @@ -2850,52 +2983,17 @@ } }, "node_modules/@nextcloud/moment": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@nextcloud/moment/-/moment-1.1.1.tgz", - "integrity": "sha512-lh7Xn9Ver12pLfE0rpjxE6x/ipscAV+7fw1u+7TJak1QR1T1UDRMZ9dA7z77W8mZH2C3yveTh/VEHZIflKBrng==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@nextcloud/moment/-/moment-1.2.1.tgz", + "integrity": "sha512-v/yfrZ4Jo8YM1v0DLXKjRLwKOhzE4Y6DcgyZAM1vJ5jOMvkHpICuTDJRw8oOtrr/1H6FqI6EMZcYogeGD+rwSA==", "dependencies": { - "@nextcloud/l10n": "1.2.0", - "core-js": "3.6.4", + "@nextcloud/l10n": "^1.4.1", + "core-js": "^3.21.1", "jed": "^1.1.1", - "moment": "2.24.0", - "node-gettext": "^2.0.0" - } - }, - "node_modules/@nextcloud/moment/node_modules/@nextcloud/l10n": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@nextcloud/l10n/-/l10n-1.2.0.tgz", - "integrity": "sha512-aPsVAewCYMNe2h0yse3Fj7LofvnvFPimojw24K47ip1+I1gawMIsQL+BYAnN8wzlcbsDTEc7I1FxtOh+8dHHIA==", - "dependencies": { - "core-js": "^3.6.4", + "moment": "^2.29.2", "node-gettext": "^3.0.0" } }, - "node_modules/@nextcloud/moment/node_modules/@nextcloud/l10n/node_modules/node-gettext": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/node-gettext/-/node-gettext-3.0.0.tgz", - "integrity": "sha512-/VRYibXmVoN6tnSAY2JWhNRhWYJ8Cd844jrZU/DwLVoI4vBI6ceYbd8i42sYZ9uOgDH3S7vslIKOWV/ZrT2YBA==", - "dependencies": { - "lodash.get": "^4.4.2" - } - }, - "node_modules/@nextcloud/moment/node_modules/core-js": { - "version": "3.6.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.4.tgz", - "integrity": "sha512-4paDGScNgZP2IXXilaffL9X7968RuvwlkK3xWtZRVqgd8SYNiVKRJvkFd1aqqEuPfN7E68ZHEp9hDj6lHj4Hyw==", - "hasInstallScript": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/@nextcloud/moment/node_modules/node-gettext": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/node-gettext/-/node-gettext-2.1.0.tgz", - "integrity": "sha512-vsHImHl+Py0vB7M2UXcFEJ5NJ3950gcja45YclBFtYxYeZiqdfQdcu+G9s4L7jpRFSh/J/7VoS3upR4JM1nS+g==", - "dependencies": { - "lodash.get": "^4.4.2" - } - }, "node_modules/@nextcloud/router": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@nextcloud/router/-/router-2.0.0.tgz", @@ -2928,14 +3026,14 @@ } }, "node_modules/@nextcloud/vue": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-4.4.0.tgz", - "integrity": "sha512-E3FcvRM2V7C0UqK/c9asLiG8AqGsBBvEk6MGVrCihmA623qLehNNFPYjea28tOPn1tQLiT7LwgfiV6QcS2Mh6A==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-5.3.1.tgz", + "integrity": "sha512-f+OSbcS01s2UqYiLSUufJ8tGe5+SqALj1dysPGJm8pJ+R2zH+Pdl8R13YErwzdAa0nHwyISIp9L9MEOUItixRQ==", "dependencies": { "@nextcloud/auth": "^1.2.3", "@nextcloud/axios": "^1.3.2", "@nextcloud/browser-storage": "^0.1.1", - "@nextcloud/calendar-js": "^2.0.0", + "@nextcloud/calendar-js": "^3.0.0", "@nextcloud/capabilities": "^1.0.2", "@nextcloud/dialogs": "^3.0.0", "@nextcloud/event-bus": "^2.0.0", @@ -2943,7 +3041,7 @@ "@nextcloud/logger": "^2.0.0", "@nextcloud/router": "^2.0.0", "debounce": "1.2.1", - "emoji-mart-vue-fast": "^7.0.7", + "emoji-mart-vue-fast": "^10.2.1", "escape-html": "^1.0.3", "hammerjs": "^2.0.8", "linkify-string": "^3.0.2", @@ -2951,20 +3049,19 @@ "splitpanes": "^2.3.6", "string-length": "^5.0.0", "striptags": "^3.1.1", - "style-loader": "^2.0.0", + "style-loader": "^3.3.1", "tributejs": "^5.1.3", "v-click-outside": "^3.0.1", "v-tooltip": "^2.0.3", - "vue": "^2.6.11", + "vue": "^2.6.14", "vue-color": "^2.7.1", - "vue-material-design-icons": "^4.11.0", + "vue-material-design-icons": "^5.0.0", "vue-multiselect": "^2.1.6", - "vue-visible": "^1.0.2", "vue2-datepicker": "^3.6.3" }, "engines": { - "node": ">=14.0.0", - "npm": ">=7.0.0" + "node": "^14.0.0", + "npm": "^7.0.0" } }, "node_modules/@nextcloud/vue-dashboard": { @@ -3128,17 +3225,25 @@ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, - "node_modules/@nextcloud/vue/node_modules/@nextcloud/calendar-js": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@nextcloud/calendar-js/-/calendar-js-2.0.0.tgz", - "integrity": "sha512-wGDDWjnXaMTJVxK2B31S0BAstN5759fptuddWRVZcFU2gEFXZyiv0iFgcbCOdAni+/Mz9rBbdV8h+TYWbst6Qg==", + "node_modules/@nextcloud/vue/node_modules/@babel/polyfill": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.12.1.tgz", + "integrity": "sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==", + "deprecated": "🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information.", "dependencies": { - "ical.js": "^1.4.0", - "uuid": "^8.3.2" + "core-js": "^2.6.5", + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/@nextcloud/vue/node_modules/@babel/runtime": { + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.8.tgz", + "integrity": "sha512-dQpEpK0O9o6lj6oPu0gRDbbnk+4LeHlNcBpspf6Olzt3GIX4P1lWF1gS+pHLDFlaJvbR6q7jCfQ08zA4QJBnmA==", + "dependencies": { + "regenerator-runtime": "^0.13.4" }, "engines": { - "node": ">=14.0.0", - "npm": ">=7.0.0" + "node": ">=6.9.0" } }, "node_modules/@nextcloud/vue/node_modules/ansi-regex": { @@ -3160,34 +3265,24 @@ "node": ">=12.20" } }, - "node_modules/@nextcloud/vue/node_modules/loader-utils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", - "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" - } + "node_modules/@nextcloud/vue/node_modules/core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.", + "hasInstallScript": true }, - "node_modules/@nextcloud/vue/node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "node_modules/@nextcloud/vue/node_modules/emoji-mart-vue-fast": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/emoji-mart-vue-fast/-/emoji-mart-vue-fast-10.2.1.tgz", + "integrity": "sha512-PtKihhsXBEEw1jHwnoRyJAnJP1OlK4EJrEze58EbUUV7iHWGLub+yuiNSj2Uo1JBHraz4fw/pH98nFysVoe0qg==", "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" + "@babel/polyfill": "^7.12.1", + "@babel/runtime": "^7.16.3", + "vue-virtual-scroller": "^1.0.10" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "peerDependencies": { + "vue": ">2.0.0" } }, "node_modules/@nextcloud/vue/node_modules/string-length": { @@ -3219,34 +3314,10 @@ "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/@nextcloud/vue/node_modules/style-loader": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz", - "integrity": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==", - "dependencies": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" - } - }, - "node_modules/@nextcloud/vue/node_modules/vue-material-design-icons": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/vue-material-design-icons/-/vue-material-design-icons-4.13.0.tgz", - "integrity": "sha512-TwaWrvh4J49VdkV9Uzcbr/p3FBRiBthRkIrg6SUh7ogFUljdA2ySNoAYD9dTU+mJkANIn1A6MoD/PnyLONnkWg==" - }, "node_modules/@nextcloud/webpack-vue-config": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@nextcloud/webpack-vue-config/-/webpack-vue-config-4.3.2.tgz", - "integrity": "sha512-ygmuEZKWM7Rvq/ho3nWVgmR4ssXPkhI+Ne5oKMObKdfSMNj6LKNKqwmYVYMT7bAzzJj7aruWglk6QcvKhU3f1g==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@nextcloud/webpack-vue-config/-/webpack-vue-config-5.1.0.tgz", + "integrity": "sha512-s/6UpWf9YXCbV9rUkVe4KS+PxZsTlReufNvH5CmxHVbJxxhL88flf0pOStC/WKI0A05YbfbRniIPVvQOFpXXaQ==", "dev": true, "engines": { "node": "^14.0.0", @@ -3256,14 +3327,10 @@ "@babel/core": "^7.16.7", "babel-loader": "^8.2.3", "css-loader": "^6.5.1", - "eslint": "^7.22.0", - "eslint-webpack-plugin": "^3.1.1", "node-polyfill-webpack-plugin": "1.1.4", "sass": "^1.47.0", "sass-loader": "^12.4.0", "style-loader": "^3.3.1", - "stylelint": "^14.2.0", - "stylelint-webpack-plugin": "^3.1.0", "vue-loader": "^15.9.8", "vue-template-compiler": "^2.6.14", "webpack": "^5.66.0", @@ -3271,25 +3338,6 @@ "webpack-dev-server": "^4.7.2" } }, - "node_modules/@nicolo-ribaudo/chokidar-2": { - "version": "2.1.8-no-fsevents.2", - "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.2.tgz", - "integrity": "sha512-Fb8WxUFOBQVl+CX4MWet5o7eCc6Pj04rXIwVKZ6h1NnqTo45eOQW6aWyhG25NIODvWFwTDMwBsYxrQ3imxpetg==", - "optional": true, - "dependencies": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "glob-parent": "^5.1.2", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - } - }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -3663,17 +3711,6 @@ "integrity": "sha512-7NQmHra/JILCd1QqpSzl8+mJRc8ZHz3uDm8YV1Ks9IhK0epEiTw8aIErbvH9PI+6XbqhyIQy3462nEsn7UVzjQ==", "dev": true }, - "node_modules/@types/stylelint": { - "version": "13.13.3", - "resolved": "https://registry.npmjs.org/@types/stylelint/-/stylelint-13.13.3.tgz", - "integrity": "sha512-xvYwobi9L69FXbJTimKYRNHyMwtmcJxMd1woI3U822rkW/f7wcZ6fsV1DqYPT+sNaO0qUtngiBhTQfMeItUvUA==", - "dev": true, - "peer": true, - "dependencies": { - "globby": "11.x.x", - "postcss": "7.x.x" - } - }, "node_modules/@types/ws": { "version": "8.2.2", "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.2.2.tgz", @@ -4126,16 +4163,6 @@ "ajv": "^6.9.1" } }, - "node_modules/ansi-colors": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", - "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", - "dev": true, - "peer": true, - "engines": { - "node": ">=6" - } - }, "node_modules/ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", @@ -4176,6 +4203,7 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, "dependencies": { "color-convert": "^1.9.0" }, @@ -4187,6 +4215,7 @@ "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, "dependencies": { "color-name": "1.1.3" } @@ -4194,29 +4223,8 @@ "node_modules/ansi-styles/node_modules/color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - }, - "node_modules/anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "optional": true, - "dependencies": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "node_modules/anymatch/node_modules/normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "optional": true, - "dependencies": { - "remove-trailing-separator": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true }, "node_modules/argparse": { "version": "1.0.10", @@ -4227,33 +4235,6 @@ "sprintf-js": "~1.0.2" } }, - "node_modules/arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/array-flatten": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", @@ -4262,17 +4243,17 @@ "peer": true }, "node_modules/array-includes": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.3.tgz", - "integrity": "sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz", + "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==", "dev": true, "peer": true, "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2", + "es-abstract": "^1.19.1", "get-intrinsic": "^1.1.1", - "is-string": "^1.0.5" + "is-string": "^1.0.7" }, "engines": { "node": ">= 0.4" @@ -4291,25 +4272,16 @@ "node": ">=8" } }, - "node_modules/array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/array.prototype.flat": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz", - "integrity": "sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==", + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz", + "integrity": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==", "dev": true, "peer": true, "dependencies": { - "call-bind": "^1.0.0", + "call-bind": "^1.0.2", "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1" + "es-abstract": "^1.19.0" }, "engines": { "node": ">= 0.4" @@ -4369,15 +4341,6 @@ "util": "^0.12.0" } }, - "node_modules/assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/astral-regex": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", @@ -4389,32 +4352,25 @@ } }, "node_modules/async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", "dev": true, "peer": true, "dependencies": { "lodash": "^4.17.14" } }, - "node_modules/async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", - "optional": true - }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", - "dev": true + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" }, "node_modules/atob": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "devOptional": true, + "dev": true, "bin": { "atob": "bin/atob.js" }, @@ -4441,11 +4397,25 @@ } }, "node_modules/axios": { - "version": "0.25.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz", - "integrity": "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==", + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", + "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "dependencies": { + "follow-redirects": "^1.14.9", + "form-data": "^4.0.0" + } + }, + "node_modules/axios/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dependencies": { - "follow-redirects": "^1.14.7" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" } }, "node_modules/babel-code-frame": { @@ -4691,6 +4661,8 @@ "version": "2.3.3", "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dev": true, + "peer": true, "dependencies": { "object.assign": "^4.1.0" } @@ -4730,6 +4702,8 @@ "version": "0.2.2", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz", "integrity": "sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==", + "dev": true, + "peer": true, "dependencies": { "@babel/compat-data": "^7.13.11", "@babel/helper-define-polyfill-provider": "^0.2.2", @@ -4743,6 +4717,8 @@ "version": "0.2.3", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.3.tgz", "integrity": "sha512-rCOFzEIJpJEAU14XCcV/erIf/wZQMmMT5l5vXOpL5uoznyOGfDIjPj6FVytMvtzaKSTSVKouOCTPJ5OMUZH30g==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-define-polyfill-provider": "^0.2.2", "core-js-compat": "^3.14.0" @@ -4755,6 +4731,8 @@ "version": "0.2.2", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz", "integrity": "sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==", + "dev": true, + "peer": true, "dependencies": { "@babel/helper-define-polyfill-provider": "^0.2.2" }, @@ -4939,37 +4917,8 @@ "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "node_modules/base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "optional": true, - "dependencies": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "optional": true, - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true }, "node_modules/base64-js": { "version": "1.5.1", @@ -5007,15 +4956,6 @@ "node": "*" } }, - "node_modules/binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/bindings": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", @@ -5107,32 +5047,12 @@ "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, - "node_modules/braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "optional": true, - "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/brorand": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", @@ -5338,30 +5258,11 @@ "node": ">= 0.8" } }, - "node_modules/cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "optional": true, - "dependencies": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/call-bind": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, "dependencies": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" @@ -5419,6 +5320,7 @@ "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -5432,6 +5334,7 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true, "engines": { "node": ">=0.8.0" } @@ -5456,7 +5359,8 @@ "version": "3.5.2", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", - "devOptional": true, + "dev": true, + "peer": true, "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", @@ -5477,7 +5381,8 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", - "devOptional": true, + "dev": true, + "peer": true, "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" @@ -5490,7 +5395,8 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "devOptional": true, + "dev": true, + "peer": true, "engines": { "node": ">=8" } @@ -5499,7 +5405,8 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "devOptional": true, + "dev": true, + "peer": true, "dependencies": { "fill-range": "^7.0.1" }, @@ -5511,7 +5418,8 @@ "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "devOptional": true, + "dev": true, + "peer": true, "dependencies": { "to-regex-range": "^5.0.1" }, @@ -5523,7 +5431,8 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "devOptional": true, + "dev": true, + "peer": true, "dependencies": { "binary-extensions": "^2.0.0" }, @@ -5535,7 +5444,8 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "devOptional": true, + "dev": true, + "peer": true, "engines": { "node": ">=0.12.0" } @@ -5544,7 +5454,8 @@ "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "devOptional": true, + "dev": true, + "peer": true, "dependencies": { "picomatch": "^2.2.1" }, @@ -5556,7 +5467,8 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "devOptional": true, + "dev": true, + "peer": true, "dependencies": { "is-number": "^7.0.0" }, @@ -5601,80 +5513,6 @@ "resolved": "https://registry.npmjs.org/clamp/-/clamp-1.0.1.tgz", "integrity": "sha1-ZqDmQBGBbjcZaCj9yMjBRzEshjQ=" }, - "node_modules/class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "optional": true, - "dependencies": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "optional": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "optional": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "optional": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "optional": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-descriptor/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/clean-stack": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", @@ -5782,19 +5620,6 @@ "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", "dev": true }, - "node_modules/collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", - "optional": true, - "dependencies": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -5853,7 +5678,6 @@ "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, "dependencies": { "delayed-stream": "~1.0.0" }, @@ -5865,14 +5689,15 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, "engines": { "node": ">= 6" } }, "node_modules/comment-parser": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.3.0.tgz", - "integrity": "sha512-hRpmWIKgzd81vn0ydoWoyPoALEOnF4wt8yKD35Ib1D6XC2siLiYaiqfGkYrunuKdsXGwpBpHU3+9r+RVw2NZfA==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.3.1.tgz", + "integrity": "sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==", "dev": true, "peer": true, "engines": { @@ -5886,12 +5711,6 @@ "dev": true, "peer": true }, - "node_modules/component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "optional": true - }, "node_modules/compressible": { "version": "2.0.18", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", @@ -5944,7 +5763,8 @@ "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true }, "node_modules/condense-newlines": { "version": "0.2.1", @@ -6055,6 +5875,7 @@ "version": "1.8.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dev": true, "dependencies": { "safe-buffer": "~5.1.1" } @@ -6076,19 +5897,10 @@ "dev": true, "peer": true }, - "node_modules/copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/core-js": { - "version": "3.21.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.21.1.tgz", - "integrity": "sha512-FRq5b/VMrWlrmCzwRrpDYNxyHP9BcAZC+xHJaqTgIE5091ZV1NTmyh0sGOg5XqpnHvR0svdy0sv1gWA1zmhxig==", + "version": "3.22.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.22.7.tgz", + "integrity": "sha512-Jt8SReuDKVNZnZEzyEQT5eK6T2RRCXkfTq7Lo09kpm+fHjgGewSbNjV+Wt4yZMhPDdzz2x1ulI5z/w4nxpBseg==", "hasInstallScript": true, "funding": { "type": "opencollective", @@ -6099,6 +5911,8 @@ "version": "3.15.1", "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.15.1.tgz", "integrity": "sha512-xGhzYMX6y7oEGQGAJmP2TmtBLvR4nZmRGEcFa3ubHOq5YEp51gGN9AovVa0AoujGZIq+Wm6dISiYyGNfdflYww==", + "dev": true, + "peer": true, "dependencies": { "browserslist": "^4.16.6", "semver": "7.0.0" @@ -6112,6 +5926,8 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "dev": true, + "peer": true, "bin": { "semver": "bin/semver.js" } @@ -6120,7 +5936,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "devOptional": true + "dev": true }, "node_modules/cosmiconfig": { "version": "7.0.1", @@ -6540,9 +6356,10 @@ "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==" }, "node_modules/debug": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", - "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, "dependencies": { "ms": "2.1.2" }, @@ -6599,7 +6416,7 @@ "version": "0.2.0", "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", - "devOptional": true, + "dev": true, "engines": { "node": ">=0.10" } @@ -6670,6 +6487,7 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, "dependencies": { "object-keys": "^1.0.12" }, @@ -6677,19 +6495,6 @@ "node": ">= 0.4" } }, - "node_modules/define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "optional": true, - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/del": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", @@ -6727,7 +6532,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", - "dev": true, "engines": { "node": ">=0.4.0" } @@ -7114,19 +6918,6 @@ "node": ">=10.13.0" } }, - "node_modules/enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", - "dev": true, - "peer": true, - "dependencies": { - "ansi-colors": "^4.1.1" - }, - "engines": { - "node": ">=8.6" - } - }, "node_modules/entities": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", @@ -7354,49 +7145,45 @@ } }, "node_modules/eslint": { - "version": "7.29.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.29.0.tgz", - "integrity": "sha512-82G/JToB9qIy/ArBzIWG9xvvwL3R86AlCjtGw+A29OMZDqhTybz/MByORSukGxeI+YPCR4coYyITKk8BFH9nDA==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.11.0.tgz", + "integrity": "sha512-/KRpd9mIRg2raGxHRGwW9ZywYNAClZrHjdueHcrVDuO3a6bj83eoTirCCk0M0yPwOjWYKHwRVRid+xK4F/GHgA==", "dev": true, "peer": true, "dependencies": { - "@babel/code-frame": "7.12.11", - "@eslint/eslintrc": "^0.4.2", + "@eslint/eslintrc": "^1.2.1", + "@humanwhocodes/config-array": "^0.9.2", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", - "debug": "^4.0.1", + "debug": "^4.3.2", "doctrine": "^3.0.0", - "enquirer": "^2.3.5", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^5.1.1", - "eslint-utils": "^2.1.0", - "eslint-visitor-keys": "^2.0.0", - "espree": "^7.3.1", + "eslint-scope": "^7.1.1", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.1", "esquery": "^1.4.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.1.2", + "glob-parent": "^6.0.1", "globals": "^13.6.0", - "ignore": "^4.0.6", + "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", + "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.0.4", "natural-compare": "^1.4.0", "optionator": "^0.9.1", - "progress": "^2.0.0", - "regexpp": "^3.1.0", - "semver": "^7.2.1", - "strip-ansi": "^6.0.0", + "regexpp": "^3.2.0", + "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", - "table": "^6.0.9", "text-table": "^0.2.0", "v8-compile-cache": "^2.0.3" }, @@ -7404,16 +7191,16 @@ "eslint": "bin/eslint.js" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-config-standard": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-16.0.3.tgz", - "integrity": "sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==", + "version": "17.0.0-1", + "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.0.0-1.tgz", + "integrity": "sha512-aqRG58dqoBNfOLN+PsitasxmW+W9Os4oQrx081B16T4E4WogsSbpUL6hnKSnyv35sSRYA2XjBtKMOrUboL6jgw==", "dev": true, "funding": [ { @@ -7431,49 +7218,42 @@ ], "peer": true, "peerDependencies": { - "eslint": "^7.12.1", - "eslint-plugin-import": "^2.22.1", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-promise": "^4.2.1 || ^5.0.0" + "eslint": "^8.0.1", + "eslint-plugin-import": "^2.25.2", + "eslint-plugin-n": "^14.0.0", + "eslint-plugin-promise": "^6.0.0" } }, "node_modules/eslint-import-resolver-node": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz", - "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==", + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", + "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", "dev": true, "peer": true, "dependencies": { - "debug": "^2.6.9", - "resolve": "^1.13.1" + "debug": "^3.2.7", + "resolve": "^1.20.0" } }, "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "peer": true, "dependencies": { - "ms": "2.0.0" + "ms": "^2.1.1" } }, - "node_modules/eslint-import-resolver-node/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true, - "peer": true - }, "node_modules/eslint-module-utils": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.1.tgz", - "integrity": "sha512-ZXI9B8cxAJIH4nfkhTwcRTEAnrVfobYqwjWy/QMCZ8rHkZHFjf9yO4BzpiF9kCSfNlMG54eKigISHpX0+AaT4A==", + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz", + "integrity": "sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==", "dev": true, "peer": true, "dependencies": { "debug": "^3.2.7", - "pkg-dir": "^2.0.0" + "find-up": "^2.1.0" }, "engines": { "node": ">=4" @@ -7489,10 +7269,73 @@ "ms": "^2.1.1" } }, + "node_modules/eslint-module-utils/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "peer": true, + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "peer": true, + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "peer": true, + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "peer": true, + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true, + "peer": true, + "engines": { + "node": ">=4" + } + }, "node_modules/eslint-plugin-es": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", - "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", + "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", "dev": true, "peer": true, "dependencies": { @@ -7510,33 +7353,31 @@ } }, "node_modules/eslint-plugin-import": { - "version": "2.23.4", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.23.4.tgz", - "integrity": "sha512-6/wP8zZRsnQFiR3iaPFgh5ImVRM1WN5NUWfTIRqwOdeiGJlBcSk82o1FEVq8yXmy4lkIzTo7YhHCIxlU/2HyEQ==", + "version": "2.25.4", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.25.4.tgz", + "integrity": "sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==", "dev": true, "peer": true, "dependencies": { - "array-includes": "^3.1.3", - "array.prototype.flat": "^1.2.4", + "array-includes": "^3.1.4", + "array.prototype.flat": "^1.2.5", "debug": "^2.6.9", "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.4", - "eslint-module-utils": "^2.6.1", - "find-up": "^2.0.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-module-utils": "^2.7.2", "has": "^1.0.3", - "is-core-module": "^2.4.0", + "is-core-module": "^2.8.0", + "is-glob": "^4.0.3", "minimatch": "^3.0.4", - "object.values": "^1.1.3", - "pkg-up": "^2.0.0", - "read-pkg-up": "^3.0.0", + "object.values": "^1.1.5", "resolve": "^1.20.0", - "tsconfig-paths": "^3.9.0" + "tsconfig-paths": "^3.12.0" }, "engines": { "node": ">=4" }, "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0" + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" } }, "node_modules/eslint-plugin-import/node_modules/debug": { @@ -7562,33 +7403,6 @@ "node": ">=0.10.0" } }, - "node_modules/eslint-plugin-import/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "peer": true, - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-plugin-import/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "peer": true, - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/eslint-plugin-import/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", @@ -7596,61 +7410,23 @@ "dev": true, "peer": true }, - "node_modules/eslint-plugin-import/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "peer": true, - "dependencies": { - "p-try": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-plugin-import/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "peer": true, - "dependencies": { - "p-limit": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-plugin-import/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } - }, "node_modules/eslint-plugin-jsdoc": { - "version": "37.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.1.0.tgz", - "integrity": "sha512-DpkFzX5Sqkqzy4MCgowhDXmusWcF1Gn7wYnphdGfWmIkoQr6SwL0jEtltGAVyF5Rj6ACi6ydw0oCCI5hF3yz6w==", + "version": "39.3.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.2.tgz", + "integrity": "sha512-RSGN94RYzIJS/WfW3l6cXzRLfJWxvJgNQZ4w0WCaxJWDJMigtwTsILEAfKqmmPkT2rwMH/s3C7G5ChDE6cwPJg==", "dev": true, "peer": true, "dependencies": { - "@es-joy/jsdoccomment": "0.12.0", - "comment-parser": "1.3.0", - "debug": "^4.3.3", + "@es-joy/jsdoccomment": "~0.31.0", + "comment-parser": "1.3.1", + "debug": "^4.3.4", "escape-string-regexp": "^4.0.0", "esquery": "^1.4.0", - "jsdoc-type-pratt-parser": "^2.0.0", - "regextras": "^0.8.0", - "semver": "^7.3.5", + "semver": "^7.3.7", "spdx-expression-parse": "^3.0.1" }, "engines": { - "node": "^12 || ^14 || ^16 || ^17" + "node": "^14 || ^16 || ^17 || ^18" }, "peerDependencies": { "eslint": "^7.0.0 || ^8.0.0" @@ -7683,9 +7459,9 @@ } }, "node_modules/eslint-plugin-jsdoc/node_modules/semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", "dev": true, "peer": true, "dependencies": { @@ -7705,69 +7481,178 @@ "dev": true, "peer": true }, - "node_modules/eslint-plugin-node": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", - "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==", + "node_modules/eslint-plugin-n": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-14.0.0.tgz", + "integrity": "sha512-mNwplPLsbaKhHyA0fa/cy8j+oF6bF6l81hzBTWa6JOvPcMNAuIogk2ih6d9tYvWYzyUG+7ZFeChqbzdFpg2QrQ==", "dev": true, "peer": true, "dependencies": { - "eslint-plugin-es": "^3.0.0", - "eslint-utils": "^2.0.0", + "eslint-plugin-es": "^4.1.0", + "eslint-utils": "^3.0.0", "ignore": "^5.1.1", + "is-core-module": "^2.3.0", "minimatch": "^3.0.4", "resolve": "^1.10.1", "semver": "^6.1.0" }, "engines": { - "node": ">=8.10.0" + "node": ">=12.22.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-plugin-n/node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "peer": true, + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/eslint-plugin-node": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", + "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==", + "dev": true, + "peer": true, + "dependencies": { + "eslint-plugin-es": "^3.0.0", + "eslint-utils": "^2.0.0", + "ignore": "^5.1.1", + "minimatch": "^3.0.4", + "resolve": "^1.10.1", + "semver": "^6.1.0" + }, + "engines": { + "node": ">=8.10.0" }, "peerDependencies": { "eslint": ">=5.16.0" } }, - "node_modules/eslint-plugin-node/node_modules/ignore": { - "version": "5.1.8", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", - "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "node_modules/eslint-plugin-node/node_modules/eslint-plugin-es": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", + "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", "dev": true, "peer": true, + "dependencies": { + "eslint-utils": "^2.0.0", + "regexpp": "^3.0.0" + }, "engines": { - "node": ">= 4" + "node": ">=8.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=4.19.1" } }, "node_modules/eslint-plugin-promise": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-5.1.0.tgz", - "integrity": "sha512-NGmI6BH5L12pl7ScQHbg7tvtk4wPxxj8yPHH47NvSmMtFneC077PSeY3huFj06ZWZvtbfxSPt3RuOQD5XcR4ng==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.0.0.tgz", + "integrity": "sha512-7GPezalm5Bfi/E22PnQxDWH2iW9GTvAlUNTztemeHb6c1BniSyoeTrM87JkC0wYdi6aQrZX9p2qEiAno8aTcbw==", "dev": true, "peer": true, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "peerDependencies": { - "eslint": "^7.0.0" + "eslint": "^7.0.0 || ^8.0.0" } }, "node_modules/eslint-plugin-vue": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.16.0.tgz", - "integrity": "sha512-0E2dVvVC7I2Xm1HXyx+ZwPj9CNX4NJjs4K4r+GVsHWyt5Pew3JLD4fI7A91b2jeL0TXE7LlszrwLSTJU9eqehw==", + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-8.5.0.tgz", + "integrity": "sha512-i1uHCTAKOoEj12RDvdtONWrGzjFm/djkzqfhmQ0d6M/W8KM81mhswd/z+iTZ0jCpdUedW3YRgcVfQ37/J4zoYQ==", "dev": true, "peer": true, "dependencies": { - "eslint-utils": "^2.1.0", + "eslint-utils": "^3.0.0", "natural-compare": "^1.4.0", - "semver": "^6.3.0", - "vue-eslint-parser": "^7.10.0" + "semver": "^7.3.5", + "vue-eslint-parser": "^8.0.1" }, "engines": { - "node": ">=8.10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "peerDependencies": { - "eslint": "^6.2.0 || ^7.0.0" + "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0" } }, + "node_modules/eslint-plugin-vue/node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "peer": true, + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/eslint-plugin-vue/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "peer": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-vue/node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "peer": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-vue/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "peer": true + }, "node_modules/eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", @@ -7817,167 +7702,133 @@ "node": ">=10" } }, - "node_modules/eslint-webpack-plugin": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.1.1.tgz", - "integrity": "sha512-xSucskTN9tOkfW7so4EaiFIkulWLXwCB/15H917lR6pTv0Zot6/fetFucmENRb7J5whVSFKIvwnrnsa78SG2yg==", + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "peer": true, "dependencies": { - "@types/eslint": "^7.28.2", - "jest-worker": "^27.3.1", - "micromatch": "^4.0.4", - "normalize-path": "^3.0.0", - "schema-utils": "^3.1.1" + "color-convert": "^2.0.1" }, "engines": { - "node": ">= 12.13.0" + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0", - "webpack": "^5.0.0" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/eslint-webpack-plugin/node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true, - "peer": true, - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } + "peer": true }, - "node_modules/eslint-webpack-plugin/node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", + "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", "dev": true, "peer": true, "dependencies": { - "to-regex-range": "^5.0.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/eslint-webpack-plugin/node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "peer": true, "engines": { - "node": ">=0.12.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-webpack-plugin/node_modules/micromatch": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", - "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", "dev": true, "peer": true, "dependencies": { - "braces": "^3.0.1", - "picomatch": "^2.2.3" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" }, "engines": { - "node": ">=8.6" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "node_modules/eslint/node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, "peer": true, "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "eslint-visitor-keys": "^2.0.0" }, "engines": { - "node": ">= 10.13.0" + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" } }, - "node_modules/eslint-webpack-plugin/node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true, "peer": true, - "dependencies": { - "is-number": "^7.0.0" - }, "engines": { - "node": ">=8.0" + "node": ">=10" } }, - "node_modules/eslint/node_modules/@babel/code-frame": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", "dev": true, "peer": true, - "dependencies": { - "@babel/highlight": "^7.10.4" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/eslint/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "peer": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=4.0" } }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "peer": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "is-glob": "^4.0.3" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "peer": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10.13.0" } }, "node_modules/eslint/node_modules/globals": { @@ -8006,33 +7857,17 @@ "node": ">=8" } }, - "node_modules/eslint/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "peer": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/eslint/node_modules/semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "peer": true, "dependencies": { - "lru-cache": "^6.0.0" + "argparse": "^2.0.1" }, "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "js-yaml": "bin/js-yaml.js" } }, "node_modules/eslint/node_modules/supports-color": { @@ -8061,36 +7896,42 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "node_modules/espree": { + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.1.tgz", + "integrity": "sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==", "dev": true, - "peer": true + "peer": true, + "dependencies": { + "acorn": "^8.7.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } }, - "node_modules/espree": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", - "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "node_modules/espree/node_modules/acorn": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz", + "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==", "dev": true, "peer": true, - "dependencies": { - "acorn": "^7.4.0", - "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^1.3.0" + "bin": { + "acorn": "bin/acorn" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=0.4.0" } }, "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", "dev": true, "peer": true, "engines": { - "node": ">=4" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/esprima": { @@ -8248,98 +8089,6 @@ "node": ">= 0.8.0" } }, - "node_modules/expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "optional": true, - "dependencies": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "optional": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/expand-brackets/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "optional": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "optional": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "optional": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "optional": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-descriptor/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "optional": true - }, "node_modules/expect": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", @@ -8446,7 +8195,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "devOptional": true, + "dev": true, "dependencies": { "is-extendable": "^0.1.0" }, @@ -8454,37 +8203,6 @@ "node": ">=0.10.0" } }, - "node_modules/extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "optional": true, - "dependencies": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "optional": true, - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/extract-from-css": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/extract-from-css/-/extract-from-css-0.4.4.tgz", @@ -8652,21 +8370,6 @@ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", "dev": true }, - "node_modules/fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "optional": true, - "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/filter-obj": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-2.0.2.tgz", @@ -8826,9 +8529,9 @@ "peer": true }, "node_modules/follow-redirects": { - "version": "1.14.8", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.8.tgz", - "integrity": "sha512-1x0S9UVJHsQprFcEC/qnNzBLcIxsjAV905f/UkQxbclCsoTWlacCNOpQa/anodLl2uaEKFhfWOvM2Qg77+15zA==", + "version": "1.14.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz", + "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==", "funding": [ { "type": "individual", @@ -8855,15 +8558,6 @@ "xmldom": "~0.1.19" } }, - "node_modules/for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/foreach": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", @@ -8895,18 +8589,6 @@ "node": ">= 0.6" } }, - "node_modules/fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", - "optional": true, - "dependencies": { - "map-cache": "^0.2.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", @@ -8924,15 +8606,11 @@ "dev": true, "peer": true }, - "node_modules/fs-readdir-recursive": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz", - "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==" - }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true }, "node_modules/fsevents": { "version": "2.3.2", @@ -8950,7 +8628,8 @@ "node_modules/function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true }, "node_modules/functional-red-black-tree": { "version": "1.0.1", @@ -8975,6 +8654,7 @@ "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, "engines": { "node": ">=6.9.0" } @@ -8998,6 +8678,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dev": true, "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", @@ -9057,19 +8738,11 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/glob": { "version": "7.1.7", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dev": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -9089,7 +8762,8 @@ "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "devOptional": true, + "dev": true, + "peer": true, "dependencies": { "is-glob": "^4.0.1" }, @@ -9158,6 +8832,7 @@ "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, "engines": { "node": ">=4" } @@ -9183,16 +8858,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globby/node_modules/ignore": { - "version": "5.1.8", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", - "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", - "dev": true, - "peer": true, - "engines": { - "node": ">= 4" - } - }, "node_modules/globby/node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", @@ -9266,6 +8931,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, "dependencies": { "function-bind": "^1.1.1" }, @@ -9305,6 +8971,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, "engines": { "node": ">=4" } @@ -9313,6 +8980,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", + "dev": true, "engines": { "node": ">= 0.4" }, @@ -9335,45 +9003,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", - "optional": true, - "dependencies": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", - "optional": true, - "dependencies": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values/node_modules/kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "optional": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/hash-base": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", @@ -9449,13 +9078,6 @@ "minimalistic-crypto-utils": "^1.0.1" } }, - "node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true, - "peer": true - }, "node_modules/hpack.js": { "version": "2.1.6", "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", @@ -9788,9 +9410,9 @@ "peer": true }, "node_modules/ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", "dev": true, "peer": true, "engines": { @@ -9892,6 +9514,7 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -9900,7 +9523,8 @@ "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true }, "node_modules/ini": { "version": "1.3.8", @@ -9957,27 +9581,6 @@ "node": ">= 10" } }, - "node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "optional": true, - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/is-arguments": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", @@ -10010,18 +9613,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "optional": true, - "dependencies": { - "binary-extensions": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/is-boolean-object": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz", @@ -10055,9 +9646,10 @@ } }, "node_modules/is-core-module": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.4.0.tgz", - "integrity": "sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", + "dev": true, "dependencies": { "has": "^1.0.3" }, @@ -10065,27 +9657,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "optional": true, - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/is-date-object": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz", @@ -10098,29 +9669,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "optional": true, - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-descriptor/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/is-docker": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", @@ -10141,7 +9689,7 @@ "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", - "devOptional": true, + "dev": true, "engines": { "node": ">=0.10.0" } @@ -10150,7 +9698,8 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "devOptional": true, + "dev": true, + "peer": true, "engines": { "node": ">=0.10.0" } @@ -10190,10 +9739,11 @@ } }, "node_modules/is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", - "devOptional": true, + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "peer": true, "dependencies": { "is-extglob": "^2.1.1" }, @@ -10230,18 +9780,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "optional": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/is-number-object": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz", @@ -10288,7 +9826,8 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "devOptional": true, + "dev": true, + "peer": true, "dependencies": { "isobject": "^3.0.1" }, @@ -10423,15 +9962,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/is-wsl": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", @@ -10449,7 +9979,8 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "devOptional": true + "dev": true, + "peer": true }, "node_modules/isexe": { "version": "2.0.0", @@ -10461,7 +9992,8 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "devOptional": true, + "dev": true, + "peer": true, "engines": { "node": ">=0.10.0" } @@ -12331,9 +11863,9 @@ } }, "node_modules/jsdoc-type-pratt-parser": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-2.0.0.tgz", - "integrity": "sha512-sUuj2j48wxrEpbFjDp1sAesAxPiLT+z0SWVmMafyIINs6Lj5gIPKh3VrkBZu4E/Dv+wHpOot0m6H8zlHQjwqeQ==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-3.1.0.tgz", + "integrity": "sha512-MgtD0ZiCDk9B+eI73BextfRrVQl0oyzRG8B2BjORts6jbunj4ScKPcyXGTbB6eXL4y9TzxCm6hyeLq/2ASzNdw==", "dev": true, "peer": true, "engines": { @@ -12402,6 +11934,7 @@ "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, "bin": { "jsesc": "bin/jsesc" }, @@ -12459,7 +11992,7 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "devOptional": true, + "dev": true, "dependencies": { "is-buffer": "^1.1.5" }, @@ -12536,42 +12069,6 @@ "integrity": "sha512-HwXVwdNH1wESBfo2sH7Bkl+ywzbGA3+uJEfhquCyi/bMCa49bFUvd/re1NT1Lox/5jdnpQXzI9O/jykit71idg==", "peer": true }, - "node_modules/load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", - "dev": true, - "peer": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/load-json-file/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/load-json-file/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } - }, "node_modules/loader-runner": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz", @@ -12629,7 +12126,9 @@ "node_modules/lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", + "dev": true, + "peer": true }, "node_modules/lodash.get": { "version": "4.4.2", @@ -12676,26 +12175,6 @@ "yallist": "^2.1.2" } }, - "node_modules/make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "bin": { - "semver": "bin/semver" - } - }, "node_modules/makeerror": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", @@ -12705,15 +12184,6 @@ "tmpl": "1.0.5" } }, - "node_modules/map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/map-obj": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.2.1.tgz", @@ -12727,18 +12197,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", - "optional": true, - "dependencies": { - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/material-colors": { "version": "1.2.6", "resolved": "https://registry.npmjs.org/material-colors/-/material-colors-1.2.6.tgz", @@ -13066,64 +12524,6 @@ "integrity": "sha1-izgy7UDIfVH0e7I0kTppinVtGdI=", "dev": true }, - "node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "optional": true, - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/micromatch/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "optional": true, - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/micromatch/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "optional": true, - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/micromatch/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/miller-rabin": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", @@ -13214,6 +12614,7 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, "dependencies": { "brace-expansion": "^1.1.7" }, @@ -13222,9 +12623,9 @@ } }, "node_modules/minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" }, "node_modules/minimist-options": { "version": "4.1.0", @@ -13261,31 +12662,6 @@ "node": ">=0.10.0" } }, - "node_modules/mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "optional": true, - "dependencies": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mixin-deep/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "optional": true, - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/mkdirp": { "version": "0.5.5", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", @@ -13299,9 +12675,9 @@ } }, "node_modules/moment": { - "version": "2.24.0", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz", - "integrity": "sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==", + "version": "2.29.3", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz", + "integrity": "sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw==", "engines": { "node": "*" } @@ -13309,7 +12685,8 @@ "node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true }, "node_modules/multicast-dns": { "version": "6.2.3", @@ -13344,62 +12721,6 @@ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "optional": true, - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "optional": true, - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "optional": true, - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", @@ -13533,34 +12854,11 @@ "node": ">=6" } }, - "node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "peer": true, - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/normalize-package-data/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "peer": true, - "bin": { - "semver": "bin/semver" - } - }, "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "devOptional": true, + "dev": true, "engines": { "node": ">=0.10.0" } @@ -13598,79 +12896,6 @@ "node": ">=0.10.0" } }, - "node_modules/object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", - "optional": true, - "dependencies": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "optional": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "optional": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "optional": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "optional": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/object-inspect": { "version": "1.12.0", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", @@ -13701,26 +12926,16 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, "engines": { "node": ">= 0.4" } }, - "node_modules/object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", - "optional": true, - "dependencies": { - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/object.assign": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, "dependencies": { "call-bind": "^1.0.0", "define-properties": "^1.1.3", @@ -13734,28 +12949,16 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", - "optional": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/object.values": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.4.tgz", - "integrity": "sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg==", + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", "dev": true, "peer": true, "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", - "es-abstract": "^1.18.2" + "es-abstract": "^1.19.1" }, "engines": { "node": ">= 0.4" @@ -13798,6 +13001,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, "dependencies": { "wrappy": "1" } @@ -13984,20 +13188,6 @@ "safe-buffer": "^5.1.1" } }, - "node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", - "dev": true, - "peer": true, - "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", @@ -14007,20 +13197,11 @@ "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true, - "peer": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", - "optional": true, + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, "node_modules/path-browserify": { @@ -14043,6 +13224,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -14059,7 +13241,8 @@ "node_modules/path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true }, "node_modules/path-to-regexp": { "version": "0.1.7", @@ -14068,29 +13251,6 @@ "dev": true, "peer": true }, - "node_modules/path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "dev": true, - "peer": true, - "dependencies": { - "pify": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/path-type/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } - }, "node_modules/pbkdf2": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", @@ -14117,7 +13277,7 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", - "devOptional": true, + "dev": true, "engines": { "node": ">=8.6" }, @@ -14125,14 +13285,6 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "engines": { - "node": ">=6" - } - }, "node_modules/pirates": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz", @@ -14142,158 +13294,6 @@ "node": ">= 6" } }, - "node_modules/pkg-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", - "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", - "dev": true, - "peer": true, - "dependencies": { - "find-up": "^2.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "peer": true, - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "peer": true, - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "peer": true, - "dependencies": { - "p-try": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "peer": true, - "dependencies": { - "p-limit": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-dir/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz", - "integrity": "sha1-yBmscoBZpGHKscOImivjxJoATX8=", - "dev": true, - "peer": true, - "dependencies": { - "find-up": "^2.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-up/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "peer": true, - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-up/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "peer": true, - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-up/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "peer": true, - "dependencies": { - "p-try": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-up/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "peer": true, - "dependencies": { - "p-limit": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-up/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } - }, "node_modules/popper.js": { "version": "1.16.1", "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", @@ -14329,15 +13329,6 @@ "ms": "^2.1.1" } }, - "node_modules/posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/postcss": { "version": "7.0.36", "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", @@ -14553,17 +13544,8 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "devOptional": true - }, - "node_modules/progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", "dev": true, - "peer": true, - "engines": { - "node": ">=0.4.0" - } + "peer": true }, "node_modules/prompts": { "version": "2.4.2", @@ -14785,116 +13767,24 @@ } }, "node_modules/react-dom": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", - "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", - "peer": true, - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "scheduler": "^0.20.2" - }, - "peerDependencies": { - "react": "17.0.2" - } - }, - "node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", - "dev": true - }, - "node_modules/read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", - "dev": true, - "peer": true, - "dependencies": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/read-pkg-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", - "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=", - "dev": true, - "peer": true, - "dependencies": { - "find-up": "^2.0.0", - "read-pkg": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/read-pkg-up/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "peer": true, - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/read-pkg-up/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "peer": true, - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/read-pkg-up/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "peer": true, - "dependencies": { - "p-try": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/read-pkg-up/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", + "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", "peer": true, "dependencies": { - "p-limit": "^1.1.0" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.2" }, - "engines": { - "node": ">=4" + "peerDependencies": { + "react": "17.0.2" } }, - "node_modules/read-pkg-up/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } + "node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true }, "node_modules/readable-stream": { "version": "3.6.0", @@ -14910,44 +13800,6 @@ "node": ">= 6" } }, - "node_modules/readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "optional": true, - "dependencies": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/readdirp/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "optional": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/readdirp/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "optional": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/rechoir": { "version": "0.7.1", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", @@ -14978,12 +13830,16 @@ "node_modules/regenerate": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true, + "peer": true }, "node_modules/regenerate-unicode-properties": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz", "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==", + "dev": true, + "peer": true, "dependencies": { "regenerate": "^1.4.0" }, @@ -15000,6 +13856,8 @@ "version": "0.14.5", "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "dev": true, + "peer": true, "dependencies": { "@babel/runtime": "^7.8.4" } @@ -15008,6 +13866,8 @@ "version": "7.14.6", "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz", "integrity": "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==", + "dev": true, + "peer": true, "dependencies": { "regenerator-runtime": "^0.13.4" }, @@ -15015,44 +13875,6 @@ "node": ">=6.9.0" } }, - "node_modules/regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "optional": true, - "dependencies": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regex-not/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "optional": true, - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regex-not/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "optional": true, - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/regex-parser": { "version": "2.2.11", "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", @@ -15093,6 +13915,8 @@ "version": "4.7.1", "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz", "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==", + "dev": true, + "peer": true, "dependencies": { "regenerate": "^1.4.0", "regenerate-unicode-properties": "^8.2.0", @@ -15105,25 +13929,19 @@ "node": ">=4" } }, - "node_modules/regextras": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/regextras/-/regextras-0.8.0.tgz", - "integrity": "sha512-k519uI04Z3SaY0fLX843MRXnDeG2+vHOFsyhiPZvNLe7r8rD2YNRjq4BQLZZ0oAr2NrtvZlICsXysGNFPGa3CQ==", - "dev": true, - "peer": true, - "engines": { - "node": ">=0.1.14" - } - }, "node_modules/regjsgen": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", - "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==" + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==", + "dev": true, + "peer": true }, "node_modules/regjsparser": { "version": "0.6.9", "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.9.tgz", "integrity": "sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==", + "dev": true, + "peer": true, "dependencies": { "jsesc": "~0.5.0" }, @@ -15135,34 +13953,12 @@ "version": "0.5.0", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true, + "peer": true, "bin": { "jsesc": "bin/jsesc" } }, - "node_modules/remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", - "optional": true - }, - "node_modules/repeat-element": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", - "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "optional": true, - "engines": { - "node": ">=0.10" - } - }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -15203,6 +13999,7 @@ "version": "1.20.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dev": true, "dependencies": { "is-core-module": "^2.2.0", "path-parse": "^1.0.6" @@ -15237,7 +14034,7 @@ "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", "deprecated": "https://github.com/lydell/resolve-url#deprecated", - "devOptional": true + "dev": true }, "node_modules/resolve-url-loader": { "version": "5.0.0", @@ -15305,15 +14102,6 @@ "node": ">=10" } }, - "node_modules/ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "optional": true, - "engines": { - "node": ">=0.12" - } - }, "node_modules/retry": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", @@ -15400,15 +14188,6 @@ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, - "node_modules/safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", - "optional": true, - "dependencies": { - "ret": "~0.1.10" - } - }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", @@ -15546,6 +14325,7 @@ "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, "bin": { "semver": "bin/semver.js" } @@ -15690,21 +14470,6 @@ "node": ">= 0.8.0" } }, - "node_modules/set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "optional": true, - "dependencies": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/setimmediate": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", @@ -15771,217 +14536,78 @@ "node_modules/shebang-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/sigmund": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", - "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=", - "dev": true - }, - "node_modules/signal-exit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", - "dev": true - }, - "node_modules/sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true - }, - "node_modules/slash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", - "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "peer": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "peer": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "optional": true, - "dependencies": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "optional": true, - "dependencies": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "optional": true, - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "optional": true, - "dependencies": { - "kind-of": "^3.2.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "optional": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/snapdragon/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "optional": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/snapdragon/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "optional": true, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, "dependencies": { - "kind-of": "^3.0.2" + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/snapdragon/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "optional": true, + "node_modules/sigmund": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", + "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=", + "dev": true + }, + "node_modules/signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "dev": true + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "peer": true, "dependencies": { - "kind-of": "^3.0.2" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/snapdragon/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "optional": true, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "peer": true, "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-descriptor/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "optional": true, - "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/snapdragon/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "optional": true - }, "node_modules/sockjs": { "version": "0.3.24", "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", @@ -16003,6 +14629,7 @@ "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -16020,7 +14647,7 @@ "version": "0.5.3", "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", - "devOptional": true, + "dev": true, "dependencies": { "atob": "^2.1.2", "decode-uri-component": "^0.2.0", @@ -16050,7 +14677,7 @@ "version": "0.4.1", "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", - "devOptional": true + "dev": true }, "node_modules/spdx-correct": { "version": "3.1.1", @@ -16130,43 +14757,6 @@ "specificity": "bin/specificity" } }, - "node_modules/split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "optional": true, - "dependencies": { - "extend-shallow": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/split-string/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "optional": true, - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/split-string/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "optional": true, - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/splitpanes": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/splitpanes/-/splitpanes-2.3.8.tgz", @@ -16190,78 +14780,6 @@ "node": ">=10" } }, - "node_modules/static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", - "optional": true, - "dependencies": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "optional": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "optional": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "optional": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "optional": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-descriptor/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/statuses": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", @@ -16452,8 +14970,6 @@ "version": "3.3.1", "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.1.tgz", "integrity": "sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==", - "dev": true, - "peer": true, "engines": { "node": ">= 12.13.0" }, @@ -16640,114 +15156,6 @@ "stylelint": "^14.0.0" } }, - "node_modules/stylelint-webpack-plugin": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/stylelint-webpack-plugin/-/stylelint-webpack-plugin-3.1.0.tgz", - "integrity": "sha512-qKBj9s2BVnxwQXdqRKd637gtASYel6FA/a9PfyfsplUqiBmBjJeeTrcJPp9v/HEN4FRw2CJDNbO2xuYUF7DsuA==", - "dev": true, - "peer": true, - "dependencies": { - "@types/stylelint": "^13.13.3", - "globby": "^11.0.4", - "jest-worker": "^27.3.1", - "micromatch": "^4.0.4", - "normalize-path": "^3.0.0", - "schema-utils": "^3.1.1" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "stylelint": "^13.0.0 || ^14.0.0", - "webpack": "^5.0.0" - } - }, - "node_modules/stylelint-webpack-plugin/node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "peer": true, - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/stylelint-webpack-plugin/node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "peer": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/stylelint-webpack-plugin/node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "peer": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/stylelint-webpack-plugin/node_modules/micromatch": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", - "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", - "dev": true, - "peer": true, - "dependencies": { - "braces": "^3.0.1", - "picomatch": "^2.2.3" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/stylelint-webpack-plugin/node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", - "dev": true, - "peer": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/stylelint-webpack-plugin/node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "peer": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, "node_modules/stylelint/node_modules/balanced-match": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", @@ -16781,16 +15189,6 @@ "node": ">=8" } }, - "node_modules/stylelint/node_modules/ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", - "dev": true, - "peer": true, - "engines": { - "node": ">= 4" - } - }, "node_modules/stylelint/node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", @@ -16878,6 +15276,7 @@ "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, "dependencies": { "has-flag": "^3.0.0" }, @@ -17234,75 +15633,11 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true, "engines": { "node": ">=4" } }, - "node_modules/to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", - "optional": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "optional": true, - "dependencies": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "optional": true, - "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "optional": true, - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "optional": true, - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/toastify-js": { "version": "1.11.0", "resolved": "https://registry.npmjs.org/toastify-js/-/toastify-js-1.11.0.tgz", @@ -17372,15 +15707,15 @@ } }, "node_modules/tsconfig-paths": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz", - "integrity": "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==", + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", + "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", "dev": true, "peer": true, "dependencies": { "@types/json5": "^0.0.29", "json5": "^1.0.1", - "minimist": "^1.2.0", + "minimist": "^1.2.6", "strip-bom": "^3.0.0" } }, @@ -17513,6 +15848,8 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==", + "dev": true, + "peer": true, "engines": { "node": ">=4" } @@ -17521,6 +15858,8 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", + "dev": true, + "peer": true, "dependencies": { "unicode-canonical-property-names-ecmascript": "^1.0.4", "unicode-property-aliases-ecmascript": "^1.0.4" @@ -17533,6 +15872,8 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz", "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==", + "dev": true, + "peer": true, "engines": { "node": ">=4" } @@ -17541,25 +15882,12 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz", "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==", + "dev": true, + "peer": true, "engines": { "node": ">=4" } }, - "node_modules/union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "optional": true, - "dependencies": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", @@ -17579,64 +15907,6 @@ "node": ">= 0.8" } }, - "node_modules/unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", - "optional": true, - "dependencies": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "optional": true, - "dependencies": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "optional": true, - "dependencies": { - "isarray": "1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "optional": true, - "engines": { - "node": ">=4", - "yarn": "*" - } - }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -17650,7 +15920,7 @@ "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", "deprecated": "Please see https://github.com/lydell/urix#deprecated", - "devOptional": true + "dev": true }, "node_modules/url": { "version": "0.11.0", @@ -17670,15 +15940,6 @@ "dev": true, "peer": true }, - "node_modules/use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/util": { "version": "0.12.4", "resolved": "https://registry.npmjs.org/util/-/util-0.12.4.tgz", @@ -17698,7 +15959,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "devOptional": true + "dev": true }, "node_modules/utils-merge": { "version": "1.0.1", @@ -17876,55 +16137,100 @@ } }, "node_modules/vue-eslint-parser": { - "version": "7.10.0", - "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.10.0.tgz", - "integrity": "sha512-7tc/ewS9Vq9Bn741pvpg8op2fWJPH3k32aL+jcIcWGCTzh/zXSdh7pZ5FV3W2aJancP9+ftPAv292zY5T5IPCg==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz", + "integrity": "sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==", "dev": true, "peer": true, "dependencies": { - "debug": "^4.1.1", - "eslint-scope": "^5.1.1", - "eslint-visitor-keys": "^1.1.0", - "espree": "^6.2.1", + "debug": "^4.3.2", + "eslint-scope": "^7.0.0", + "eslint-visitor-keys": "^3.1.0", + "espree": "^9.0.0", "esquery": "^1.4.0", "lodash": "^4.17.21", - "semver": "^6.3.0" + "semver": "^7.3.5" }, "engines": { - "node": ">=8.10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/mysticatea" }, "peerDependencies": { - "eslint": ">=5.0.0" + "eslint": ">=6.0.0" + } + }, + "node_modules/vue-eslint-parser/node_modules/eslint-scope": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "dev": true, + "peer": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/vue-eslint-parser/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", "dev": true, "peer": true, "engines": { - "node": ">=4" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/vue-eslint-parser/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4.0" } }, - "node_modules/vue-eslint-parser/node_modules/espree": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", - "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", + "node_modules/vue-eslint-parser/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "peer": true, "dependencies": { - "acorn": "^7.1.1", - "acorn-jsx": "^5.2.0", - "eslint-visitor-keys": "^1.1.0" + "yallist": "^4.0.0" }, "engines": { - "node": ">=6.0.0" + "node": ">=10" + } + }, + "node_modules/vue-eslint-parser/node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "peer": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, + "node_modules/vue-eslint-parser/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "peer": true + }, "node_modules/vue-hot-reload-api": { "version": "2.3.4", "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz", @@ -18024,9 +16330,9 @@ } }, "node_modules/vue-router": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.5.3.tgz", - "integrity": "sha512-FUlILrW3DGitS2h+Xaw8aRNvGTwtuaxrRkNSHWTizOfLUie7wuYwezeZ50iflRn8YPV5kxmU2LQuu3nM/b3Zsg==" + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.5.4.tgz", + "integrity": "sha512-x+/DLAJZv2mcQ7glH2oV9ze8uPwcI+H+GgTgTmb5I55bCgY3+vXWIsqbYUzbBSZnwFHEJku4eoaH/x98veyymQ==" }, "node_modules/vue-shortkey": { "version": "3.1.7", @@ -18749,7 +17055,8 @@ "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true }, "node_modules/write-file-atomic": { "version": "3.0.3", @@ -18881,26 +17188,11 @@ } }, "dependencies": { - "@babel/cli": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.14.5.tgz", - "integrity": "sha512-poegjhRvXHWO0EAsnYajwYZuqcz7gyfxwfaecUESxDujrqOivf3zrjFbub8IJkrqEaz3fvJWh001EzxBub54fg==", - "requires": { - "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.2", - "chokidar": "^3.4.0", - "commander": "^4.0.1", - "convert-source-map": "^1.1.0", - "fs-readdir-recursive": "^1.1.0", - "glob": "^7.0.0", - "make-dir": "^2.1.0", - "slash": "^2.0.0", - "source-map": "^0.5.0" - } - }, "@babel/code-frame": { "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", + "dev": true, "requires": { "@babel/highlight": "^7.16.7" } @@ -18908,12 +17200,14 @@ "@babel/compat-data": { "version": "7.16.4", "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz", - "integrity": "sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==" + "integrity": "sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==", + "dev": true }, "@babel/core": { "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz", "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==", + "dev": true, "requires": { "@babel/code-frame": "^7.16.7", "@babel/generator": "^7.16.7", @@ -18933,9 +17227,9 @@ } }, "@babel/eslint-parser": { - "version": "7.14.7", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.14.7.tgz", - "integrity": "sha512-6WPwZqO5priAGIwV6msJcdc9TsEPzYeYdS/Xuoap+/ihkgN6dzHp2bcAAwyWZ5bLzk0vvjDmKvRwkqNaiJ8BiQ==", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.17.0.tgz", + "integrity": "sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==", "dev": true, "peer": true, "requires": { @@ -18948,6 +17242,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.7.tgz", "integrity": "sha512-/ST3Sg8MLGY5HVYmrjOgL60ENux/HfO/CsUh7y4MalThufhE/Ff/6EibFDHi4jiDCaWfJKoqbE6oTh21c5hrRg==", + "dev": true, "requires": { "@babel/types": "^7.16.7", "jsesc": "^2.5.1", @@ -18958,6 +17253,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz", "integrity": "sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA==", + "dev": true, + "peer": true, "requires": { "@babel/types": "^7.14.5" } @@ -18966,6 +17263,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz", "integrity": "sha512-YTA/Twn0vBXDVGJuAX6PwW7x5zQei1luDDo2Pl6q1qZ7hVNl0RZrhHCQG/ArGpR29Vl7ETiB8eJyrvpuRp300w==", + "dev": true, + "peer": true, "requires": { "@babel/helper-explode-assignable-expression": "^7.14.5", "@babel/types": "^7.14.5" @@ -18975,6 +17274,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz", "integrity": "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==", + "dev": true, "requires": { "@babel/compat-data": "^7.16.4", "@babel/helper-validator-option": "^7.16.7", @@ -18986,6 +17286,8 @@ "version": "7.14.6", "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.6.tgz", "integrity": "sha512-Z6gsfGofTxH/+LQXqYEK45kxmcensbzmk/oi8DmaQytlQCgqNZt9XQF8iqlI/SeXWVjaMNxvYvzaYw+kh42mDg==", + "dev": true, + "peer": true, "requires": { "@babel/helper-annotate-as-pure": "^7.14.5", "@babel/helper-function-name": "^7.14.5", @@ -18999,6 +17301,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz", "integrity": "sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==", + "dev": true, + "peer": true, "requires": { "@babel/helper-annotate-as-pure": "^7.14.5", "regexpu-core": "^4.7.1" @@ -19008,6 +17312,8 @@ "version": "0.2.3", "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz", "integrity": "sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==", + "dev": true, + "peer": true, "requires": { "@babel/helper-compilation-targets": "^7.13.0", "@babel/helper-module-imports": "^7.12.13", @@ -19023,6 +17329,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz", "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==", + "dev": true, "requires": { "@babel/types": "^7.16.7" } @@ -19031,6 +17338,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz", "integrity": "sha512-Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ==", + "dev": true, + "peer": true, "requires": { "@babel/types": "^7.14.5" } @@ -19039,6 +17348,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz", "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==", + "dev": true, "requires": { "@babel/helper-get-function-arity": "^7.16.7", "@babel/template": "^7.16.7", @@ -19049,6 +17359,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz", "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==", + "dev": true, "requires": { "@babel/types": "^7.16.7" } @@ -19057,6 +17368,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", + "dev": true, "requires": { "@babel/types": "^7.16.7" } @@ -19065,6 +17377,8 @@ "version": "7.14.7", "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz", "integrity": "sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA==", + "dev": true, + "peer": true, "requires": { "@babel/types": "^7.14.5" } @@ -19073,6 +17387,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz", "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==", + "dev": true, "requires": { "@babel/types": "^7.16.7" } @@ -19081,6 +17396,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz", "integrity": "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==", + "dev": true, "requires": { "@babel/helper-environment-visitor": "^7.16.7", "@babel/helper-module-imports": "^7.16.7", @@ -19096,6 +17412,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz", "integrity": "sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==", + "dev": true, + "peer": true, "requires": { "@babel/types": "^7.14.5" } @@ -19103,12 +17421,15 @@ "@babel/helper-plugin-utils": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", - "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==" + "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", + "dev": true }, "@babel/helper-remap-async-to-generator": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.14.5.tgz", "integrity": "sha512-rLQKdQU+HYlxBwQIj8dk4/0ENOUEhA/Z0l4hN8BexpvmSMN9oA9EagjnhnDpNsRdWCfjwa4mn/HyBXO9yhQP6A==", + "dev": true, + "peer": true, "requires": { "@babel/helper-annotate-as-pure": "^7.14.5", "@babel/helper-wrap-function": "^7.14.5", @@ -19119,6 +17440,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz", "integrity": "sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow==", + "dev": true, + "peer": true, "requires": { "@babel/helper-member-expression-to-functions": "^7.14.5", "@babel/helper-optimise-call-expression": "^7.14.5", @@ -19130,6 +17453,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz", "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==", + "dev": true, "requires": { "@babel/types": "^7.16.7" } @@ -19138,6 +17462,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz", "integrity": "sha512-dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ==", + "dev": true, + "peer": true, "requires": { "@babel/types": "^7.14.5" } @@ -19146,6 +17472,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", + "dev": true, "requires": { "@babel/types": "^7.16.7" } @@ -19153,17 +17480,21 @@ "@babel/helper-validator-identifier": { "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", - "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==" + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", + "dev": true }, "@babel/helper-validator-option": { "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz", - "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==" + "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==", + "dev": true }, "@babel/helper-wrap-function": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.14.5.tgz", "integrity": "sha512-YEdjTCq+LNuNS1WfxsDCNpgXkJaIyqco6DAelTUjT4f2KIWC1nBcaCaSdHTBqQVLnTBexBcVcFhLSU1KnYuePQ==", + "dev": true, + "peer": true, "requires": { "@babel/helper-function-name": "^7.14.5", "@babel/template": "^7.14.5", @@ -19175,6 +17506,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.7.tgz", "integrity": "sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw==", + "dev": true, "requires": { "@babel/template": "^7.16.7", "@babel/traverse": "^7.16.7", @@ -19185,6 +17517,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz", "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==", + "dev": true, "requires": { "@babel/helper-validator-identifier": "^7.16.7", "chalk": "^2.0.0", @@ -19194,12 +17527,15 @@ "@babel/parser": { "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.7.tgz", - "integrity": "sha512-sR4eaSrnM7BV7QPzGfEX5paG/6wrZM3I0HDzfIAK06ESvo9oy3xBuVBxE3MbQaKNhvg8g/ixjMWo2CGpzpHsDA==" + "integrity": "sha512-sR4eaSrnM7BV7QPzGfEX5paG/6wrZM3I0HDzfIAK06ESvo9oy3xBuVBxE3MbQaKNhvg8g/ixjMWo2CGpzpHsDA==", + "dev": true }, "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz", "integrity": "sha512-ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", @@ -19210,6 +17546,8 @@ "version": "7.14.7", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.7.tgz", "integrity": "sha512-RK8Wj7lXLY3bqei69/cc25gwS5puEc3dknoFPFbqfy3XxYQBQFvu4ioWpafMBAB+L9NyptQK4nMOa5Xz16og8Q==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/helper-remap-async-to-generator": "^7.14.5", @@ -19220,6 +17558,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz", "integrity": "sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==", + "dev": true, + "peer": true, "requires": { "@babel/helper-create-class-features-plugin": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5" @@ -19229,6 +17569,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.5.tgz", "integrity": "sha512-KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg==", + "dev": true, + "peer": true, "requires": { "@babel/helper-create-class-features-plugin": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5", @@ -19239,6 +17581,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz", "integrity": "sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3" @@ -19248,6 +17592,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz", "integrity": "sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" @@ -19257,6 +17603,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz", "integrity": "sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-json-strings": "^7.8.3" @@ -19266,6 +17614,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz", "integrity": "sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" @@ -19275,6 +17625,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz", "integrity": "sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" @@ -19284,6 +17636,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz", "integrity": "sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-numeric-separator": "^7.10.4" @@ -19293,6 +17647,8 @@ "version": "7.14.7", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.7.tgz", "integrity": "sha512-082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g==", + "dev": true, + "peer": true, "requires": { "@babel/compat-data": "^7.14.7", "@babel/helper-compilation-targets": "^7.14.5", @@ -19305,6 +17661,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz", "integrity": "sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" @@ -19314,6 +17672,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz", "integrity": "sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", @@ -19324,6 +17684,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz", "integrity": "sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==", + "dev": true, + "peer": true, "requires": { "@babel/helper-create-class-features-plugin": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5" @@ -19333,6 +17695,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.5.tgz", "integrity": "sha512-62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q==", + "dev": true, + "peer": true, "requires": { "@babel/helper-annotate-as-pure": "^7.14.5", "@babel/helper-create-class-features-plugin": "^7.14.5", @@ -19344,6 +17708,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz", "integrity": "sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==", + "dev": true, + "peer": true, "requires": { "@babel/helper-create-regexp-features-plugin": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5" @@ -19353,6 +17719,7 @@ "version": "7.8.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } @@ -19370,6 +17737,7 @@ "version": "7.12.13", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.12.13" } @@ -19378,6 +17746,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19386,6 +17756,8 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } @@ -19394,6 +17766,8 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.8.3" } @@ -19411,6 +17785,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } @@ -19419,6 +17794,7 @@ "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } @@ -19427,6 +17803,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } @@ -19435,6 +17812,7 @@ "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } @@ -19443,6 +17821,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } @@ -19451,6 +17830,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } @@ -19459,6 +17839,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } @@ -19467,6 +17848,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19475,6 +17858,7 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19483,6 +17867,7 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz", "integrity": "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19491,6 +17876,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz", "integrity": "sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19499,6 +17886,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz", "integrity": "sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==", + "dev": true, + "peer": true, "requires": { "@babel/helper-module-imports": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5", @@ -19509,6 +17898,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz", "integrity": "sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19517,6 +17908,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.5.tgz", "integrity": "sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19525,6 +17918,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.5.tgz", "integrity": "sha512-J4VxKAMykM06K/64z9rwiL6xnBHgB1+FVspqvlgCdwD1KUbQNfszeKVVOMh59w3sztHYIZDgnhOC4WbdEfHFDA==", + "dev": true, + "peer": true, "requires": { "@babel/helper-annotate-as-pure": "^7.14.5", "@babel/helper-function-name": "^7.14.5", @@ -19539,6 +17934,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz", "integrity": "sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19547,6 +17944,8 @@ "version": "7.14.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz", "integrity": "sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19555,6 +17954,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz", "integrity": "sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==", + "dev": true, + "peer": true, "requires": { "@babel/helper-create-regexp-features-plugin": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5" @@ -19564,6 +17965,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz", "integrity": "sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19572,6 +17975,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz", "integrity": "sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==", + "dev": true, + "peer": true, "requires": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5" @@ -19581,6 +17986,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz", "integrity": "sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19589,6 +17996,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz", "integrity": "sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==", + "dev": true, + "peer": true, "requires": { "@babel/helper-function-name": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5" @@ -19598,6 +18007,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz", "integrity": "sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19606,6 +18017,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz", "integrity": "sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19614,6 +18027,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz", "integrity": "sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==", + "dev": true, + "peer": true, "requires": { "@babel/helper-module-transforms": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5", @@ -19624,6 +18039,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.5.tgz", "integrity": "sha512-en8GfBtgnydoao2PS+87mKyw62k02k7kJ9ltbKe0fXTHrQmG6QZZflYuGI1VVG7sVpx4E1n7KBpNlPb8m78J+A==", + "dev": true, + "peer": true, "requires": { "@babel/helper-module-transforms": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5", @@ -19635,6 +18052,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.14.5.tgz", "integrity": "sha512-mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA==", + "dev": true, + "peer": true, "requires": { "@babel/helper-hoist-variables": "^7.14.5", "@babel/helper-module-transforms": "^7.14.5", @@ -19647,6 +18066,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz", "integrity": "sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==", + "dev": true, + "peer": true, "requires": { "@babel/helper-module-transforms": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5" @@ -19656,6 +18077,8 @@ "version": "7.14.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.7.tgz", "integrity": "sha512-DTNOTaS7TkW97xsDMrp7nycUVh6sn/eq22VaxWfEdzuEbRsiaOU0pqU7DlyUGHVsbQbSghvjKRpEl+nUCKGQSg==", + "dev": true, + "peer": true, "requires": { "@babel/helper-create-regexp-features-plugin": "^7.14.5" } @@ -19664,6 +18087,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz", "integrity": "sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19672,6 +18097,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz", "integrity": "sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/helper-replace-supers": "^7.14.5" @@ -19681,6 +18108,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz", "integrity": "sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19689,6 +18118,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz", "integrity": "sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19697,6 +18128,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz", "integrity": "sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==", + "dev": true, + "peer": true, "requires": { "regenerator-transform": "^0.14.2" } @@ -19705,6 +18138,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz", "integrity": "sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19713,6 +18148,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz", "integrity": "sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19721,6 +18158,8 @@ "version": "7.14.6", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz", "integrity": "sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5" @@ -19730,6 +18169,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz", "integrity": "sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19738,6 +18179,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz", "integrity": "sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19746,24 +18189,18 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz", "integrity": "sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } }, - "@babel/plugin-transform-typescript": { - "version": "7.14.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.6.tgz", - "integrity": "sha512-XlTdBq7Awr4FYIzqhmYY80WN0V0azF74DMPyFqVHBvf81ZUgc4X7ZOpx6O8eLDK6iM5cCQzeyJw0ynTaefixRA==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.14.6", - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/plugin-syntax-typescript": "^7.14.5" - } - }, "@babel/plugin-transform-unicode-escapes": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz", "integrity": "sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -19772,6 +18209,8 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz", "integrity": "sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==", + "dev": true, + "peer": true, "requires": { "@babel/helper-create-regexp-features-plugin": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5" @@ -19802,6 +18241,8 @@ "version": "7.14.7", "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.14.7.tgz", "integrity": "sha512-itOGqCKLsSUl0Y+1nSfhbuuOlTs0MJk2Iv7iSH+XT/mR8U1zRLO7NjWlYXB47yhK4J/7j+HYty/EhFZDYKa/VA==", + "dev": true, + "peer": true, "requires": { "@babel/compat-data": "^7.14.7", "@babel/helper-compilation-targets": "^7.14.5", @@ -19882,6 +18323,8 @@ "version": "0.1.4", "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz", "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", + "dev": true, + "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", @@ -19890,16 +18333,6 @@ "esutils": "^2.0.2" } }, - "@babel/preset-typescript": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.14.5.tgz", - "integrity": "sha512-u4zO6CdbRKbS9TypMqrlGH7sd2TAJppZwn3c/ZRLeO/wGsbddxgbPDUZVNrie3JWYLQ9vpineKlsrWFvO6Pwkw==", - "requires": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-validator-option": "^7.14.5", - "@babel/plugin-transform-typescript": "^7.14.5" - } - }, "@babel/runtime": { "version": "7.3.4", "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.3.4.tgz", @@ -19919,6 +18352,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", + "dev": true, "requires": { "@babel/code-frame": "^7.16.7", "@babel/parser": "^7.16.7", @@ -19929,6 +18363,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.7.tgz", "integrity": "sha512-8KWJPIb8c2VvY8AJrydh6+fVRo2ODx1wYBU2398xJVq0JomuLBZmVQzLPBblJgHIGYG4znCpUZUZ0Pt2vdmVYQ==", + "dev": true, "requires": { "@babel/code-frame": "^7.16.7", "@babel/generator": "^7.16.7", @@ -19946,6 +18381,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.7.tgz", "integrity": "sha512-E8HuV7FO9qLpx6OtoGfUQ2cjIYnbFwvZWYBS+87EwtdMvmUPJSwykpovFB+8insbpF0uJcpr8KMUi64XZntZcg==", + "dev": true, "requires": { "@babel/helper-validator-identifier": "^7.16.7", "to-fast-properties": "^2.0.0" @@ -19965,54 +18401,62 @@ "peer": true }, "@es-joy/jsdoccomment": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.12.0.tgz", - "integrity": "sha512-Gw4/j9v36IKY8ET+W0GoOzrRw17xjf21EIFFRL3zx21fF5MnqmeNpNi+PU/LKjqLpPb2Pw2XdlJbYM31VVo/PQ==", + "version": "0.31.0", + "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.31.0.tgz", + "integrity": "sha512-tc1/iuQcnaiSIUVad72PBierDFpsxdUHtEF/OrfqvM1CBAsIoMP51j52jTMb3dXriwhieTo289InzZj72jL3EQ==", "dev": true, "peer": true, "requires": { - "comment-parser": "1.2.4", + "comment-parser": "1.3.1", "esquery": "^1.4.0", - "jsdoc-type-pratt-parser": "2.0.0" - }, - "dependencies": { - "comment-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.2.4.tgz", - "integrity": "sha512-pm0b+qv+CkWNriSTMsfnjChF9kH0kxz55y44Wo5le9qLxMj5xDQAaEd9ZN1ovSuk9CsrncWaFwgpOMg7ClJwkw==", - "dev": true, - "peer": true - } + "jsdoc-type-pratt-parser": "~3.1.0" } }, "@eslint/eslintrc": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.2.tgz", - "integrity": "sha512-8nmGq/4ycLpIwzvhI4tNDmQztZ8sp+hI7cyG8i1nQDhkAbRzHpXPidRAHlNvCZQpJTKw5ItIpMw9RSToGF00mg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.1.tgz", + "integrity": "sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ==", "dev": true, "peer": true, "requires": { "ajv": "^6.12.4", - "debug": "^4.1.1", - "espree": "^7.3.0", + "debug": "^4.3.2", + "espree": "^9.3.1", "globals": "^13.9.0", - "ignore": "^4.0.6", + "ignore": "^5.2.0", "import-fresh": "^3.2.1", - "js-yaml": "^3.13.1", + "js-yaml": "^4.1.0", "minimatch": "^3.0.4", "strip-json-comments": "^3.1.1" }, "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "peer": true + }, "globals": { - "version": "13.9.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.9.0.tgz", - "integrity": "sha512-74/FduwI/JaIrr1H8e71UbDE+5x7pIPs1C2rrwC52SszOo043CsWOZEMW7o2Y58xwm9b+0RBKDxY5n2sUpEFxA==", + "version": "13.13.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.13.0.tgz", + "integrity": "sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==", "dev": true, "peer": true, "requires": { "type-fest": "^0.20.2" } }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "peer": true, + "requires": { + "argparse": "^2.0.1" + } + }, "type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", @@ -20023,122 +18467,141 @@ } }, "@fullcalendar/common": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/common/-/common-5.10.1.tgz", - "integrity": "sha512-EumKIJcQTvQdTs75/9dmeREFgjcRVWzqHJS1Xvlz5mNsmB+w9EINCHETRjChtAQg1WD/lTQyVj4sHsKO7vCMSw==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/common/-/common-5.11.0.tgz", + "integrity": "sha512-gWjbMAnN1u73Oqlgjbyky7i+3bY0hvFSnGT0YBPx44n874AkQa9e9OU12PMLTMOPy0tXPb8DEwRelFQ7CJNbcw==", "requires": { "tslib": "^2.1.0" } }, "@fullcalendar/core": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/core/-/core-5.10.1.tgz", - "integrity": "sha512-8sVuC6ywXV+cxqsqTZaR1hgUqeyjVed20NyZ7lGW9AY0kma1GIEwLgqPS5Q6uVhHyin68lmgecKfJCwhxENE8w==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/core/-/core-5.11.0.tgz", + "integrity": "sha512-cF/d9LuJb/6xw14ms0urv1H4BiA70c4jrufe/EuVzLR6qTDpK92IZ3JK7GVtZtzptfTYZ/NQgDV9YCzIaO9Blw==", "requires": { - "@fullcalendar/common": "~5.10.1", + "@fullcalendar/common": "~5.11.0", "preact": "^10.0.5", "tslib": "^2.1.0" } }, "@fullcalendar/daygrid": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/daygrid/-/daygrid-5.10.1.tgz", - "integrity": "sha512-sfUMP+rew0krsBffgNcWWKhBCiyytGfRKZJoc64E8ohX7VWjPcPZuB1xgO5U4wPLmNkT0rZiHoGeQGTXw1+ZKg==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/daygrid/-/daygrid-5.11.0.tgz", + "integrity": "sha512-Ybh/dfHn/VL0qOVIRVyJc9I8oYiqqHl6xQONk8xXCe456QbPzAQLsAxpLLJLH+3smWNCfoQgvDKzR9e9XTzLMQ==", "requires": { - "@fullcalendar/common": "~5.10.1", + "@fullcalendar/common": "~5.11.0", "tslib": "^2.1.0" } }, "@fullcalendar/interaction": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/interaction/-/interaction-5.10.1.tgz", - "integrity": "sha512-H1g1QeXg7yXtUcKmVtfg7uzm5R5ElFTvYniiXU+8kJda69IDg7Lee+Y7UDv5dvLb5/HxO86RhPVxRtcOQ8XdXw==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/interaction/-/interaction-5.11.0.tgz", + "integrity": "sha512-9XTI5+ydqrSX+IL3iWgKBURXfnPewn57Tmsv9mJZhiqrUEF7/+qtftLoKEAc8ZdWk/+01aBe67PFL16uPXj2Jg==", "requires": { - "@fullcalendar/common": "~5.10.1", + "@fullcalendar/common": "~5.11.0", "tslib": "^2.1.0" } }, "@fullcalendar/list": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/list/-/list-5.10.1.tgz", - "integrity": "sha512-sB+AzM9P1nzGIzwVFNN8Zbocg5lkVQftyuJAZtULgu9o9e1rH/Aqsxt9Itf00N3WmMOh8H1LlnRpZF5kGu/j2w==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/list/-/list-5.11.0.tgz", + "integrity": "sha512-0dl/JV6zEGseTDXpM16nozetByVvJ4l/DElYP+StCtnk+Lr51zFK0yfRWRwB9XInxyapfZLDd/3YjKXQf8Bxcw==", "requires": { - "@fullcalendar/common": "~5.10.1", + "@fullcalendar/common": "~5.11.0", "tslib": "^2.1.0" } }, "@fullcalendar/premium-common": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/premium-common/-/premium-common-5.10.1.tgz", - "integrity": "sha512-yOZgtVI/7tt1oeQABLQqTNLEv2YpxbE0ywvQ+VwtrKc5LksmUA2czO4peom1KIAwH6JsZnytpvwQ4k4cP8Ivaw==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/premium-common/-/premium-common-5.11.0.tgz", + "integrity": "sha512-XVLJwJQ26EhuglBM1flmrKtNt0BEUBHoazko/wvMiz5Yz17eABKQreFTidipOwjL3s74ifQzDoYpkQVn8TzpZQ==", "requires": { - "@fullcalendar/common": "~5.10.1", + "@fullcalendar/common": "~5.11.0", "tslib": "^2.1.0" } }, "@fullcalendar/resource-common": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/resource-common/-/resource-common-5.10.1.tgz", - "integrity": "sha512-20JR8cucAeJEXSbWVSj9USwsPGKb3dVQr8CBiXuHPbD0OLK93j7jhKjBlp/pRldtcJW9mIXC8ENQvw/aNZJ9Cw==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/resource-common/-/resource-common-5.11.0.tgz", + "integrity": "sha512-zO6UK9IKo7O8Uj5Y1t9sLMsLyNmxAliriAlz/NNhk//O/yGmQZ5MQOgVDg2qCZpDOWgQeuSZOkTTJdud5ISe2Q==", "requires": { - "@fullcalendar/common": "~5.10.1", - "@fullcalendar/premium-common": "~5.10.1", + "@fullcalendar/common": "~5.11.0", + "@fullcalendar/premium-common": "~5.11.0", "tslib": "^2.1.0" } }, "@fullcalendar/resource-timeline": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/resource-timeline/-/resource-timeline-5.10.1.tgz", - "integrity": "sha512-gsqjr6Z+LQcNbQlHgaTtg/kF8l6yDRtIuMQbhFlTy71RJI//x2mHhLXgV40FJeEE+srp48xJPd89+rIhlyJ5Tw==", - "requires": { - "@fullcalendar/common": "~5.10.1", - "@fullcalendar/premium-common": "~5.10.1", - "@fullcalendar/resource-common": "~5.10.1", - "@fullcalendar/scrollgrid": "~5.10.1", - "@fullcalendar/timeline": "~5.10.1", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/resource-timeline/-/resource-timeline-5.11.0.tgz", + "integrity": "sha512-+40sKEQj/ig6oh+8/FZPaFYtqI4e9wa/2XT2MTtzwDr3modHU0mQChlpcY8WQ+c6kyPjVwhO89BFiv2OeilLWw==", + "requires": { + "@fullcalendar/common": "~5.11.0", + "@fullcalendar/premium-common": "~5.11.0", + "@fullcalendar/resource-common": "~5.11.0", + "@fullcalendar/scrollgrid": "~5.11.0", + "@fullcalendar/timeline": "~5.11.0", "tslib": "^2.1.0" } }, "@fullcalendar/scrollgrid": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/scrollgrid/-/scrollgrid-5.10.1.tgz", - "integrity": "sha512-Hj6gzj2/sUUnozIMC0GBK60/ZTeDchp/Gc2S4F+05W6V4BoUXbIwav+EdAerfNFOv7EXWa9vM9Lq3A53iVWFVg==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/scrollgrid/-/scrollgrid-5.11.0.tgz", + "integrity": "sha512-OPwLGLr0YF2qQYa9K1vPIGsodfAqPnugcwKLwnkiLprC2UybnPaIXvY6xMAHyVWSiBaeJSmkQ0J8mZDmfKjdTw==", "requires": { - "@fullcalendar/common": "~5.10.1", - "@fullcalendar/premium-common": "~5.10.1", + "@fullcalendar/common": "~5.11.0", + "@fullcalendar/premium-common": "~5.11.0", "tslib": "^2.1.0" } }, "@fullcalendar/timegrid": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/timegrid/-/timegrid-5.10.1.tgz", - "integrity": "sha512-0O0m+JzFBlg8gxYr/rIjZViRlbndCtjZlDjjIylQHFBeWC32e3cpHEavKGbTIBLN8SDilUYAJnE21abSqC2G/w==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/timegrid/-/timegrid-5.11.0.tgz", + "integrity": "sha512-GNy+/PwAj510PS4Fu18Mf/CytNBVftFU7M8XwsUXOCJ6ouyroHZje0a7k5cH/nE5IQ6NJZfH2eAPBlxGath1MQ==", "requires": { - "@fullcalendar/common": "~5.10.1", - "@fullcalendar/daygrid": "~5.10.1", + "@fullcalendar/common": "~5.11.0", + "@fullcalendar/daygrid": "~5.11.0", "tslib": "^2.1.0" } }, "@fullcalendar/timeline": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/timeline/-/timeline-5.10.1.tgz", - "integrity": "sha512-pFMhK4nsCvpsA63GPJQtT1RSS2OLlT9a2+fvsf2oQregBLcottJSlCjIsIuKP7hpQLimaSdLr2kNjh5hs8jKlw==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/timeline/-/timeline-5.11.0.tgz", + "integrity": "sha512-2mASvwsXMR42Vlvwjnb5w0OvMDf8z2WCZXpLCd11lP/b+ZYOosCrJZZQWpzNfWYf7Y4Sqjo7q+YMPxnJqlichg==", "requires": { - "@fullcalendar/common": "~5.10.1", - "@fullcalendar/premium-common": "~5.10.1", - "@fullcalendar/scrollgrid": "~5.10.1", + "@fullcalendar/common": "~5.11.0", + "@fullcalendar/premium-common": "~5.11.0", + "@fullcalendar/scrollgrid": "~5.11.0", "tslib": "^2.1.0" } }, "@fullcalendar/vue": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/vue/-/vue-5.10.1.tgz", - "integrity": "sha512-fzWa76ztn4w6pWUHDGQnedrWeHaBUQ3uTuGT3nM7jr3NOKdufAfzh8y4UHRFN2P2pIWpcEV3wji6DZcHmqhyYw==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@fullcalendar/vue/-/vue-5.11.0.tgz", + "integrity": "sha512-+hG2D6esKbGK2vUs5Te+mXTL8L0XCPTiTIxSLYXtmNMgRcDHZ2qoAjad/9upIyfarUFfz1yPdjDJpxAs8UvcLw==", "requires": { - "@fullcalendar/core": "~5.10.1", + "@fullcalendar/core": "~5.11.0", "tslib": "^2.1.0" } }, + "@humanwhocodes/config-array": { + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", + "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", + "dev": true, + "peer": true, + "requires": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + } + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true, + "peer": true + }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -20703,16 +19166,12 @@ } }, "@nextcloud/axios": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@nextcloud/axios/-/axios-1.9.0.tgz", - "integrity": "sha512-yKExR6/POJpFuEaGofcgAq9fupfz2PsKDs+s9hfKXUAhQcPF1eyaZcWXA324uFlY9IiofhWft8oTSRLm1Vqj9w==", - "requires": { - "@babel/cli": "^7.8.4", - "@babel/core": "^7.9.0", - "@babel/preset-env": "^7.9.0", - "@babel/preset-typescript": "^7.9.0", - "@nextcloud/auth": "^1.2.2", - "axios": "^0.25.0", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@nextcloud/axios/-/axios-1.10.0.tgz", + "integrity": "sha512-dC+Z5ibBRxkep6ysoRmUldUfQsZiqC5fGLbwwU0Unxjy+Qrcl2U9rcljZJagwXs1kag5/KZFG1rlGcew2GAgyg==", + "requires": { + "@nextcloud/auth": "^1.3.0", + "axios": "^0.27.1", "core-js": "^3.6.4" } }, @@ -20800,9 +19259,9 @@ } }, "@nextcloud/eslint-config": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/@nextcloud/eslint-config/-/eslint-config-6.1.2.tgz", - "integrity": "sha512-KEErxReF89vuOVRvOWtky/j1UtOjBGgtDK+LjdehGah66P9se0WACtbIC+3DLZ9IIrtOP45X05LashELnXs7dg==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@nextcloud/eslint-config/-/eslint-config-8.0.0.tgz", + "integrity": "sha512-B93OZ7vSEJl6QLtEGarkdpjTEKGdXbMP/ZSuIj/vecng6CZzv3mDQ9diaNTQPlU7Q3CP0N6nqTVqcOltbApUMQ==", "dev": true, "requires": {} }, @@ -20858,9 +19317,9 @@ } }, "@nextcloud/l10n": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@nextcloud/l10n/-/l10n-1.4.1.tgz", - "integrity": "sha512-19LPGmozfuLCeO4xRS9Y1Av6DquqVgBH2kQyWL6dJ49AynMGN9uVOrNv3GYoqULzEcHoetMAt+8PLTdE6zKbvA==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@nextcloud/l10n/-/l10n-1.6.0.tgz", + "integrity": "sha512-aKGlgrwN9OiafN791sYus0shfwNeU3PlrH6Oi9ISma6iJSvN6a8aJM8WGKCJ9pqBaTR5PrDuckuM/WnybBWb6A==", "requires": { "core-js": "^3.6.4", "node-gettext": "^3.0.0" @@ -20877,49 +19336,15 @@ } }, "@nextcloud/moment": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@nextcloud/moment/-/moment-1.1.1.tgz", - "integrity": "sha512-lh7Xn9Ver12pLfE0rpjxE6x/ipscAV+7fw1u+7TJak1QR1T1UDRMZ9dA7z77W8mZH2C3yveTh/VEHZIflKBrng==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@nextcloud/moment/-/moment-1.2.1.tgz", + "integrity": "sha512-v/yfrZ4Jo8YM1v0DLXKjRLwKOhzE4Y6DcgyZAM1vJ5jOMvkHpICuTDJRw8oOtrr/1H6FqI6EMZcYogeGD+rwSA==", "requires": { - "@nextcloud/l10n": "1.2.0", - "core-js": "3.6.4", + "@nextcloud/l10n": "^1.4.1", + "core-js": "^3.21.1", "jed": "^1.1.1", - "moment": "2.24.0", - "node-gettext": "^2.0.0" - }, - "dependencies": { - "@nextcloud/l10n": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@nextcloud/l10n/-/l10n-1.2.0.tgz", - "integrity": "sha512-aPsVAewCYMNe2h0yse3Fj7LofvnvFPimojw24K47ip1+I1gawMIsQL+BYAnN8wzlcbsDTEc7I1FxtOh+8dHHIA==", - "requires": { - "core-js": "^3.6.4", - "node-gettext": "^3.0.0" - }, - "dependencies": { - "node-gettext": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/node-gettext/-/node-gettext-3.0.0.tgz", - "integrity": "sha512-/VRYibXmVoN6tnSAY2JWhNRhWYJ8Cd844jrZU/DwLVoI4vBI6ceYbd8i42sYZ9uOgDH3S7vslIKOWV/ZrT2YBA==", - "requires": { - "lodash.get": "^4.4.2" - } - } - } - }, - "core-js": { - "version": "3.6.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.4.tgz", - "integrity": "sha512-4paDGScNgZP2IXXilaffL9X7968RuvwlkK3xWtZRVqgd8SYNiVKRJvkFd1aqqEuPfN7E68ZHEp9hDj6lHj4Hyw==" - }, - "node-gettext": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/node-gettext/-/node-gettext-2.1.0.tgz", - "integrity": "sha512-vsHImHl+Py0vB7M2UXcFEJ5NJ3950gcja45YclBFtYxYeZiqdfQdcu+G9s4L7jpRFSh/J/7VoS3upR4JM1nS+g==", - "requires": { - "lodash.get": "^4.4.2" - } - } + "moment": "^2.29.2", + "node-gettext": "^3.0.0" } }, "@nextcloud/router": { @@ -20946,14 +19371,14 @@ } }, "@nextcloud/vue": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-4.4.0.tgz", - "integrity": "sha512-E3FcvRM2V7C0UqK/c9asLiG8AqGsBBvEk6MGVrCihmA623qLehNNFPYjea28tOPn1tQLiT7LwgfiV6QcS2Mh6A==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-5.3.1.tgz", + "integrity": "sha512-f+OSbcS01s2UqYiLSUufJ8tGe5+SqALj1dysPGJm8pJ+R2zH+Pdl8R13YErwzdAa0nHwyISIp9L9MEOUItixRQ==", "requires": { "@nextcloud/auth": "^1.2.3", "@nextcloud/axios": "^1.3.2", "@nextcloud/browser-storage": "^0.1.1", - "@nextcloud/calendar-js": "^2.0.0", + "@nextcloud/calendar-js": "^3.0.0", "@nextcloud/capabilities": "^1.0.2", "@nextcloud/dialogs": "^3.0.0", "@nextcloud/event-bus": "^2.0.0", @@ -20961,7 +19386,7 @@ "@nextcloud/logger": "^2.0.0", "@nextcloud/router": "^2.0.0", "debounce": "1.2.1", - "emoji-mart-vue-fast": "^7.0.7", + "emoji-mart-vue-fast": "^10.2.1", "escape-html": "^1.0.3", "hammerjs": "^2.0.8", "linkify-string": "^3.0.2", @@ -20969,25 +19394,32 @@ "splitpanes": "^2.3.6", "string-length": "^5.0.0", "striptags": "^3.1.1", - "style-loader": "^2.0.0", + "style-loader": "^3.3.1", "tributejs": "^5.1.3", "v-click-outside": "^3.0.1", "v-tooltip": "^2.0.3", - "vue": "^2.6.11", + "vue": "^2.6.14", "vue-color": "^2.7.1", - "vue-material-design-icons": "^4.11.0", + "vue-material-design-icons": "^5.0.0", "vue-multiselect": "^2.1.6", - "vue-visible": "^1.0.2", "vue2-datepicker": "^3.6.3" }, "dependencies": { - "@nextcloud/calendar-js": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@nextcloud/calendar-js/-/calendar-js-2.0.0.tgz", - "integrity": "sha512-wGDDWjnXaMTJVxK2B31S0BAstN5759fptuddWRVZcFU2gEFXZyiv0iFgcbCOdAni+/Mz9rBbdV8h+TYWbst6Qg==", + "@babel/polyfill": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.12.1.tgz", + "integrity": "sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==", + "requires": { + "core-js": "^2.6.5", + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/runtime": { + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.8.tgz", + "integrity": "sha512-dQpEpK0O9o6lj6oPu0gRDbbnk+4LeHlNcBpspf6Olzt3GIX4P1lWF1gS+pHLDFlaJvbR6q7jCfQ08zA4QJBnmA==", "requires": { - "ical.js": "^1.4.0", - "uuid": "^8.3.2" + "regenerator-runtime": "^0.13.4" } }, "ansi-regex": { @@ -21000,24 +19432,19 @@ "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.0.tgz", "integrity": "sha512-oGu2QekBMXgyQNWPDRQ001bjvDnZe4/zBTz37TMbiKz1NbNiyiH5hRkobe7npRN6GfbGbxMYFck/vQ1r9c1VMA==" }, - "loader-utils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", - "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" }, - "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "emoji-mart-vue-fast": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/emoji-mart-vue-fast/-/emoji-mart-vue-fast-10.2.1.tgz", + "integrity": "sha512-PtKihhsXBEEw1jHwnoRyJAnJP1OlK4EJrEze58EbUUV7iHWGLub+yuiNSj2Uo1JBHraz4fw/pH98nFysVoe0qg==", "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "@babel/polyfill": "^7.12.1", + "@babel/runtime": "^7.16.3", + "vue-virtual-scroller": "^1.0.10" } }, "string-length": { @@ -21036,20 +19463,6 @@ "requires": { "ansi-regex": "^6.0.0" } - }, - "style-loader": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz", - "integrity": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==", - "requires": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - } - }, - "vue-material-design-icons": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/vue-material-design-icons/-/vue-material-design-icons-4.13.0.tgz", - "integrity": "sha512-TwaWrvh4J49VdkV9Uzcbr/p3FBRiBthRkIrg6SUh7ogFUljdA2ySNoAYD9dTU+mJkANIn1A6MoD/PnyLONnkWg==" } } }, @@ -21174,31 +19587,12 @@ } }, "@nextcloud/webpack-vue-config": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@nextcloud/webpack-vue-config/-/webpack-vue-config-4.3.2.tgz", - "integrity": "sha512-ygmuEZKWM7Rvq/ho3nWVgmR4ssXPkhI+Ne5oKMObKdfSMNj6LKNKqwmYVYMT7bAzzJj7aruWglk6QcvKhU3f1g==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@nextcloud/webpack-vue-config/-/webpack-vue-config-5.1.0.tgz", + "integrity": "sha512-s/6UpWf9YXCbV9rUkVe4KS+PxZsTlReufNvH5CmxHVbJxxhL88flf0pOStC/WKI0A05YbfbRniIPVvQOFpXXaQ==", "dev": true, "requires": {} }, - "@nicolo-ribaudo/chokidar-2": { - "version": "2.1.8-no-fsevents.2", - "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.2.tgz", - "integrity": "sha512-Fb8WxUFOBQVl+CX4MWet5o7eCc6Pj04rXIwVKZ6h1NnqTo45eOQW6aWyhG25NIODvWFwTDMwBsYxrQ3imxpetg==", - "optional": true, - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "glob-parent": "^5.1.2", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - } - }, "@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -21560,17 +19954,6 @@ "integrity": "sha512-7NQmHra/JILCd1QqpSzl8+mJRc8ZHz3uDm8YV1Ks9IhK0epEiTw8aIErbvH9PI+6XbqhyIQy3462nEsn7UVzjQ==", "dev": true }, - "@types/stylelint": { - "version": "13.13.3", - "resolved": "https://registry.npmjs.org/@types/stylelint/-/stylelint-13.13.3.tgz", - "integrity": "sha512-xvYwobi9L69FXbJTimKYRNHyMwtmcJxMd1woI3U822rkW/f7wcZ6fsV1DqYPT+sNaO0qUtngiBhTQfMeItUvUA==", - "dev": true, - "peer": true, - "requires": { - "globby": "11.x.x", - "postcss": "7.x.x" - } - }, "@types/ws": { "version": "8.2.2", "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.2.2.tgz", @@ -21963,13 +20346,6 @@ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "requires": {} }, - "ansi-colors": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", - "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", - "dev": true, - "peer": true - }, "ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", @@ -21995,6 +20371,7 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, "requires": { "color-convert": "^1.9.0" }, @@ -22003,6 +20380,7 @@ "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, "requires": { "color-name": "1.1.3" } @@ -22010,28 +20388,8 @@ "color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - } - } - }, - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "optional": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - }, - "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "optional": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true } } }, @@ -22044,24 +20402,6 @@ "sprintf-js": "~1.0.2" } }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "optional": true - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "optional": true - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", - "optional": true - }, "array-flatten": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", @@ -22070,17 +20410,17 @@ "peer": true }, "array-includes": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.3.tgz", - "integrity": "sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz", + "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==", "dev": true, "peer": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2", + "es-abstract": "^1.19.1", "get-intrinsic": "^1.1.1", - "is-string": "^1.0.5" + "is-string": "^1.0.7" } }, "array-union": { @@ -22090,22 +20430,16 @@ "dev": true, "peer": true }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "optional": true - }, "array.prototype.flat": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz", - "integrity": "sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==", + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz", + "integrity": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==", "dev": true, "peer": true, "requires": { - "call-bind": "^1.0.0", + "call-bind": "^1.0.2", "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1" + "es-abstract": "^1.19.0" } }, "array.prototype.flatmap": { @@ -22155,12 +20489,6 @@ "util": "^0.12.0" } }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", - "optional": true - }, "astral-regex": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", @@ -22169,32 +20497,25 @@ "peer": true }, "async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", "dev": true, "peer": true, "requires": { "lodash": "^4.17.14" } }, - "async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", - "optional": true - }, "asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", - "dev": true + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" }, "atob": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "devOptional": true + "dev": true }, "autosize": { "version": "5.0.1", @@ -22209,11 +20530,24 @@ "peer": true }, "axios": { - "version": "0.25.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz", - "integrity": "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==", + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", + "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", "requires": { - "follow-redirects": "^1.14.7" + "follow-redirects": "^1.14.9", + "form-data": "^4.0.0" + }, + "dependencies": { + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + } } }, "babel-code-frame": { @@ -22405,6 +20739,8 @@ "version": "2.3.3", "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dev": true, + "peer": true, "requires": { "object.assign": "^4.1.0" } @@ -22438,6 +20774,8 @@ "version": "0.2.2", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz", "integrity": "sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==", + "dev": true, + "peer": true, "requires": { "@babel/compat-data": "^7.13.11", "@babel/helper-define-polyfill-provider": "^0.2.2", @@ -22448,6 +20786,8 @@ "version": "0.2.3", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.3.tgz", "integrity": "sha512-rCOFzEIJpJEAU14XCcV/erIf/wZQMmMT5l5vXOpL5uoznyOGfDIjPj6FVytMvtzaKSTSVKouOCTPJ5OMUZH30g==", + "dev": true, + "peer": true, "requires": { "@babel/helper-define-polyfill-provider": "^0.2.2", "core-js-compat": "^3.14.0" @@ -22457,6 +20797,8 @@ "version": "0.2.2", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz", "integrity": "sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==", + "dev": true, + "peer": true, "requires": { "@babel/helper-define-polyfill-provider": "^0.2.2" } @@ -22624,33 +20966,8 @@ "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "optional": true, - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "optional": true, - "requires": { - "is-descriptor": "^1.0.0" - } - } - } + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true }, "base64-js": { "version": "1.5.1", @@ -22671,12 +20988,6 @@ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "optional": true - }, "bindings": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", @@ -22764,29 +21075,12 @@ "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "optional": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - } - }, "brorand": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", @@ -22953,27 +21247,11 @@ "dev": true, "peer": true }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "optional": true, - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - } - }, "call-bind": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, "requires": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" @@ -23012,6 +21290,7 @@ "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, "requires": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -23021,7 +21300,8 @@ "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true } } }, @@ -23039,7 +21319,8 @@ "version": "3.5.2", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", - "devOptional": true, + "dev": true, + "peer": true, "requires": { "anymatch": "~3.1.2", "braces": "~3.0.2", @@ -23055,7 +21336,8 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", - "devOptional": true, + "dev": true, + "peer": true, "requires": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" @@ -23065,13 +21347,15 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "devOptional": true + "dev": true, + "peer": true }, "braces": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "devOptional": true, + "dev": true, + "peer": true, "requires": { "fill-range": "^7.0.1" } @@ -23080,7 +21364,8 @@ "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "devOptional": true, + "dev": true, + "peer": true, "requires": { "to-regex-range": "^5.0.1" } @@ -23089,7 +21374,8 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "devOptional": true, + "dev": true, + "peer": true, "requires": { "binary-extensions": "^2.0.0" } @@ -23098,13 +21384,15 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "devOptional": true + "dev": true, + "peer": true }, "readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "devOptional": true, + "dev": true, + "peer": true, "requires": { "picomatch": "^2.2.1" } @@ -23113,7 +21401,8 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "devOptional": true, + "dev": true, + "peer": true, "requires": { "is-number": "^7.0.0" } @@ -23154,66 +21443,6 @@ "resolved": "https://registry.npmjs.org/clamp/-/clamp-1.0.1.tgz", "integrity": "sha1-ZqDmQBGBbjcZaCj9yMjBRzEshjQ=" }, - "class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "optional": true, - "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "optional": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "optional": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "optional": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "optional": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "optional": true - } - } - } - } - }, "clean-stack": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", @@ -23301,16 +21530,6 @@ "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", "dev": true }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", - "optional": true, - "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - } - }, "color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -23365,7 +21584,6 @@ "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, "requires": { "delayed-stream": "~1.0.0" } @@ -23373,12 +21591,13 @@ "commander": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true }, "comment-parser": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.3.0.tgz", - "integrity": "sha512-hRpmWIKgzd81vn0ydoWoyPoALEOnF4wt8yKD35Ib1D6XC2siLiYaiqfGkYrunuKdsXGwpBpHU3+9r+RVw2NZfA==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.3.1.tgz", + "integrity": "sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==", "dev": true, "peer": true }, @@ -23389,12 +21608,6 @@ "dev": true, "peer": true }, - "component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "optional": true - }, "compressible": { "version": "2.0.18", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", @@ -23443,7 +21656,8 @@ "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true }, "condense-newlines": { "version": "0.2.1", @@ -23527,6 +21741,7 @@ "version": "1.8.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dev": true, "requires": { "safe-buffer": "~5.1.1" } @@ -23545,21 +21760,17 @@ "dev": true, "peer": true }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", - "optional": true - }, "core-js": { - "version": "3.21.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.21.1.tgz", - "integrity": "sha512-FRq5b/VMrWlrmCzwRrpDYNxyHP9BcAZC+xHJaqTgIE5091ZV1NTmyh0sGOg5XqpnHvR0svdy0sv1gWA1zmhxig==" + "version": "3.22.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.22.7.tgz", + "integrity": "sha512-Jt8SReuDKVNZnZEzyEQT5eK6T2RRCXkfTq7Lo09kpm+fHjgGewSbNjV+Wt4yZMhPDdzz2x1ulI5z/w4nxpBseg==" }, "core-js-compat": { "version": "3.15.1", "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.15.1.tgz", "integrity": "sha512-xGhzYMX6y7oEGQGAJmP2TmtBLvR4nZmRGEcFa3ubHOq5YEp51gGN9AovVa0AoujGZIq+Wm6dISiYyGNfdflYww==", + "dev": true, + "peer": true, "requires": { "browserslist": "^4.16.6", "semver": "7.0.0" @@ -23568,7 +21779,9 @@ "semver": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "dev": true, + "peer": true } } }, @@ -23576,7 +21789,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "devOptional": true + "dev": true }, "cosmiconfig": { "version": "7.0.1", @@ -23909,9 +22122,10 @@ "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==" }, "debug": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", - "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, "requires": { "ms": "2.1.2" } @@ -23953,7 +22167,7 @@ "version": "0.2.0", "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", - "devOptional": true + "dev": true }, "dedent": { "version": "0.7.0", @@ -24009,20 +22223,11 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, "requires": { "object-keys": "^1.0.12" } }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "optional": true, - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - } - }, "del": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", @@ -24052,8 +22257,7 @@ "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", - "dev": true + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" }, "delegate": { "version": "3.2.0", @@ -24374,16 +22578,6 @@ "tapable": "^2.2.0" } }, - "enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", - "dev": true, - "peer": true, - "requires": { - "ansi-colors": "^4.1.1" - } - }, "entities": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", @@ -24549,63 +22743,49 @@ } }, "eslint": { - "version": "7.29.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.29.0.tgz", - "integrity": "sha512-82G/JToB9qIy/ArBzIWG9xvvwL3R86AlCjtGw+A29OMZDqhTybz/MByORSukGxeI+YPCR4coYyITKk8BFH9nDA==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.11.0.tgz", + "integrity": "sha512-/KRpd9mIRg2raGxHRGwW9ZywYNAClZrHjdueHcrVDuO3a6bj83eoTirCCk0M0yPwOjWYKHwRVRid+xK4F/GHgA==", "dev": true, "peer": true, "requires": { - "@babel/code-frame": "7.12.11", - "@eslint/eslintrc": "^0.4.2", + "@eslint/eslintrc": "^1.2.1", + "@humanwhocodes/config-array": "^0.9.2", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", - "debug": "^4.0.1", + "debug": "^4.3.2", "doctrine": "^3.0.0", - "enquirer": "^2.3.5", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^5.1.1", - "eslint-utils": "^2.1.0", - "eslint-visitor-keys": "^2.0.0", - "espree": "^7.3.1", + "eslint-scope": "^7.1.1", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.1", "esquery": "^1.4.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.1.2", + "glob-parent": "^6.0.1", "globals": "^13.6.0", - "ignore": "^4.0.6", + "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", + "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.0.4", "natural-compare": "^1.4.0", "optionator": "^0.9.1", - "progress": "^2.0.0", - "regexpp": "^3.1.0", - "semver": "^7.2.1", - "strip-ansi": "^6.0.0", + "regexpp": "^3.2.0", + "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", - "table": "^6.0.9", "text-table": "^0.2.0", "v8-compile-cache": "^2.0.3" }, "dependencies": { - "@babel/code-frame": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", - "dev": true, - "peer": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -24616,6 +22796,13 @@ "color-convert": "^2.0.1" } }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "peer": true + }, "chalk": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", @@ -24634,6 +22821,60 @@ "dev": true, "peer": true }, + "eslint-scope": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "dev": true, + "peer": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "peer": true, + "requires": { + "eslint-visitor-keys": "^2.0.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "peer": true + } + } + }, + "eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true, + "peer": true + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "peer": true + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "peer": true, + "requires": { + "is-glob": "^4.0.3" + } + }, "globals": { "version": "13.9.0", "resolved": "https://registry.npmjs.org/globals/-/globals-13.9.0.tgz", @@ -24651,24 +22892,14 @@ "dev": true, "peer": true }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "peer": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "peer": true, "requires": { - "lru-cache": "^6.0.0" + "argparse": "^2.0.1" } }, "supports-color": { @@ -24687,63 +22918,26 @@ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "peer": true - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "peer": true } } }, "eslint-config-standard": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-16.0.3.tgz", - "integrity": "sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==", + "version": "17.0.0-1", + "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.0.0-1.tgz", + "integrity": "sha512-aqRG58dqoBNfOLN+PsitasxmW+W9Os4oQrx081B16T4E4WogsSbpUL6hnKSnyv35sSRYA2XjBtKMOrUboL6jgw==", "dev": true, "peer": true, "requires": {} }, "eslint-import-resolver-node": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz", - "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==", - "dev": true, - "peer": true, - "requires": { - "debug": "^2.6.9", - "resolve": "^1.13.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "peer": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true, - "peer": true - } - } - }, - "eslint-module-utils": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.1.tgz", - "integrity": "sha512-ZXI9B8cxAJIH4nfkhTwcRTEAnrVfobYqwjWy/QMCZ8rHkZHFjf9yO4BzpiF9kCSfNlMG54eKigISHpX0+AaT4A==", + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", + "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", "dev": true, "peer": true, "requires": { "debug": "^3.2.7", - "pkg-dir": "^2.0.0" + "resolve": "^1.20.0" }, "dependencies": { "debug": { @@ -24758,59 +22952,25 @@ } } }, - "eslint-plugin-es": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", - "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", - "dev": true, - "peer": true, - "requires": { - "eslint-utils": "^2.0.0", - "regexpp": "^3.0.0" - } - }, - "eslint-plugin-import": { - "version": "2.23.4", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.23.4.tgz", - "integrity": "sha512-6/wP8zZRsnQFiR3iaPFgh5ImVRM1WN5NUWfTIRqwOdeiGJlBcSk82o1FEVq8yXmy4lkIzTo7YhHCIxlU/2HyEQ==", + "eslint-module-utils": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz", + "integrity": "sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==", "dev": true, "peer": true, "requires": { - "array-includes": "^3.1.3", - "array.prototype.flat": "^1.2.4", - "debug": "^2.6.9", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.4", - "eslint-module-utils": "^2.6.1", - "find-up": "^2.0.0", - "has": "^1.0.3", - "is-core-module": "^2.4.0", - "minimatch": "^3.0.4", - "object.values": "^1.1.3", - "pkg-up": "^2.0.0", - "read-pkg-up": "^3.0.0", - "resolve": "^1.20.0", - "tsconfig-paths": "^3.9.0" + "debug": "^3.2.7", + "find-up": "^2.1.0" }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "peer": true, - "requires": { - "ms": "2.0.0" - } - }, - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "peer": true, "requires": { - "esutils": "^2.0.2" + "ms": "^2.1.1" } }, "find-up": { @@ -24834,13 +22994,6 @@ "path-exists": "^3.0.0" } }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true, - "peer": true - }, "p-limit": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", @@ -24870,21 +23023,81 @@ } } }, + "eslint-plugin-es": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", + "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", + "dev": true, + "peer": true, + "requires": { + "eslint-utils": "^2.0.0", + "regexpp": "^3.0.0" + } + }, + "eslint-plugin-import": { + "version": "2.25.4", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.25.4.tgz", + "integrity": "sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==", + "dev": true, + "peer": true, + "requires": { + "array-includes": "^3.1.4", + "array.prototype.flat": "^1.2.5", + "debug": "^2.6.9", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-module-utils": "^2.7.2", + "has": "^1.0.3", + "is-core-module": "^2.8.0", + "is-glob": "^4.0.3", + "minimatch": "^3.0.4", + "object.values": "^1.1.5", + "resolve": "^1.20.0", + "tsconfig-paths": "^3.12.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "peer": true, + "requires": { + "ms": "2.0.0" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "peer": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true, + "peer": true + } + } + }, "eslint-plugin-jsdoc": { - "version": "37.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.1.0.tgz", - "integrity": "sha512-DpkFzX5Sqkqzy4MCgowhDXmusWcF1Gn7wYnphdGfWmIkoQr6SwL0jEtltGAVyF5Rj6ACi6ydw0oCCI5hF3yz6w==", + "version": "39.3.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.2.tgz", + "integrity": "sha512-RSGN94RYzIJS/WfW3l6cXzRLfJWxvJgNQZ4w0WCaxJWDJMigtwTsILEAfKqmmPkT2rwMH/s3C7G5ChDE6cwPJg==", "dev": true, "peer": true, "requires": { - "@es-joy/jsdoccomment": "0.12.0", - "comment-parser": "1.3.0", - "debug": "^4.3.3", + "@es-joy/jsdoccomment": "~0.31.0", + "comment-parser": "1.3.1", + "debug": "^4.3.4", "escape-string-regexp": "^4.0.0", "esquery": "^1.4.0", - "jsdoc-type-pratt-parser": "^2.0.0", - "regextras": "^0.8.0", - "semver": "^7.3.5", + "semver": "^7.3.7", "spdx-expression-parse": "^3.0.1" }, "dependencies": { @@ -24906,9 +23119,9 @@ } }, "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", "dev": true, "peer": true, "requires": { @@ -24924,6 +23137,34 @@ } } }, + "eslint-plugin-n": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-14.0.0.tgz", + "integrity": "sha512-mNwplPLsbaKhHyA0fa/cy8j+oF6bF6l81hzBTWa6JOvPcMNAuIogk2ih6d9tYvWYzyUG+7ZFeChqbzdFpg2QrQ==", + "dev": true, + "peer": true, + "requires": { + "eslint-plugin-es": "^4.1.0", + "eslint-utils": "^3.0.0", + "ignore": "^5.1.1", + "is-core-module": "^2.3.0", + "minimatch": "^3.0.4", + "resolve": "^1.10.1", + "semver": "^6.1.0" + }, + "dependencies": { + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "peer": true, + "requires": { + "eslint-visitor-keys": "^2.0.0" + } + } + } + }, "eslint-plugin-node": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", @@ -24939,34 +23180,77 @@ "semver": "^6.1.0" }, "dependencies": { - "ignore": { - "version": "5.1.8", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", - "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "eslint-plugin-es": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", + "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", "dev": true, - "peer": true + "peer": true, + "requires": { + "eslint-utils": "^2.0.0", + "regexpp": "^3.0.0" + } } } }, "eslint-plugin-promise": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-5.1.0.tgz", - "integrity": "sha512-NGmI6BH5L12pl7ScQHbg7tvtk4wPxxj8yPHH47NvSmMtFneC077PSeY3huFj06ZWZvtbfxSPt3RuOQD5XcR4ng==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.0.0.tgz", + "integrity": "sha512-7GPezalm5Bfi/E22PnQxDWH2iW9GTvAlUNTztemeHb6c1BniSyoeTrM87JkC0wYdi6aQrZX9p2qEiAno8aTcbw==", "dev": true, "peer": true, "requires": {} }, "eslint-plugin-vue": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.16.0.tgz", - "integrity": "sha512-0E2dVvVC7I2Xm1HXyx+ZwPj9CNX4NJjs4K4r+GVsHWyt5Pew3JLD4fI7A91b2jeL0TXE7LlszrwLSTJU9eqehw==", + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-8.5.0.tgz", + "integrity": "sha512-i1uHCTAKOoEj12RDvdtONWrGzjFm/djkzqfhmQ0d6M/W8KM81mhswd/z+iTZ0jCpdUedW3YRgcVfQ37/J4zoYQ==", "dev": true, "peer": true, "requires": { - "eslint-utils": "^2.1.0", + "eslint-utils": "^3.0.0", "natural-compare": "^1.4.0", - "semver": "^6.3.0", - "vue-eslint-parser": "^7.10.0" + "semver": "^7.3.5", + "vue-eslint-parser": "^8.0.1" + }, + "dependencies": { + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "peer": true, + "requires": { + "eslint-visitor-keys": "^2.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "peer": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "peer": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "peer": true + } } }, "eslint-scope": { @@ -25005,98 +23289,29 @@ "dev": true, "peer": true }, - "eslint-webpack-plugin": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.1.1.tgz", - "integrity": "sha512-xSucskTN9tOkfW7so4EaiFIkulWLXwCB/15H917lR6pTv0Zot6/fetFucmENRb7J5whVSFKIvwnrnsa78SG2yg==", + "espree": { + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.1.tgz", + "integrity": "sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==", "dev": true, "peer": true, "requires": { - "@types/eslint": "^7.28.2", - "jest-worker": "^27.3.1", - "micromatch": "^4.0.4", - "normalize-path": "^3.0.0", - "schema-utils": "^3.1.1" + "acorn": "^8.7.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^3.3.0" }, "dependencies": { - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "peer": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "peer": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "acorn": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz", + "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==", "dev": true, "peer": true }, - "micromatch": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", - "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", - "dev": true, - "peer": true, - "requires": { - "braces": "^3.0.1", - "picomatch": "^2.2.3" - } - }, - "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", - "dev": true, - "peer": true, - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "peer": true, - "requires": { - "is-number": "^7.0.0" - } - } - } - }, - "espree": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", - "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", - "dev": true, - "peer": true, - "requires": { - "acorn": "^7.4.0", - "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^1.3.0" - }, - "dependencies": { "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", "dev": true, "peer": true } @@ -25218,84 +23433,6 @@ "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", "dev": true }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "optional": true, - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "optional": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "optional": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "optional": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "optional": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "optional": true - } - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "optional": true - } - } - }, "expect": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", @@ -25384,38 +23521,11 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "devOptional": true, + "dev": true, "requires": { "is-extendable": "^0.1.0" } }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "optional": true, - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "optional": true, - "requires": { - "is-descriptor": "^1.0.0" - } - } - } - }, "extract-from-css": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/extract-from-css/-/extract-from-css-0.4.4.tgz", @@ -25557,18 +23667,6 @@ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", "dev": true }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "optional": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - } - }, "filter-obj": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-2.0.2.tgz", @@ -25698,9 +23796,9 @@ "peer": true }, "follow-redirects": { - "version": "1.14.8", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.8.tgz", - "integrity": "sha512-1x0S9UVJHsQprFcEC/qnNzBLcIxsjAV905f/UkQxbclCsoTWlacCNOpQa/anodLl2uaEKFhfWOvM2Qg77+15zA==" + "version": "1.14.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz", + "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==" }, "fonteditor-core": { "version": "0.0.37", @@ -25713,12 +23811,6 @@ "xmldom": "~0.1.19" } }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "optional": true - }, "foreach": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", @@ -25744,15 +23836,6 @@ "dev": true, "peer": true }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", - "optional": true, - "requires": { - "map-cache": "^0.2.2" - } - }, "fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", @@ -25767,15 +23850,11 @@ "dev": true, "peer": true }, - "fs-readdir-recursive": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz", - "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==" - }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true }, "fsevents": { "version": "2.3.2", @@ -25786,7 +23865,8 @@ "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true }, "functional-red-black-tree": { "version": "1.0.1", @@ -25807,7 +23887,8 @@ "gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true }, "geometry-interfaces": { "version": "1.1.4", @@ -25825,6 +23906,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dev": true, "requires": { "function-bind": "^1.1.1", "has": "^1.0.3", @@ -25860,16 +23942,11 @@ "get-intrinsic": "^1.1.1" } }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", - "optional": true - }, "glob": { "version": "7.1.7", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -25883,7 +23960,8 @@ "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "devOptional": true, + "dev": true, + "peer": true, "requires": { "is-glob": "^4.0.1" } @@ -25938,7 +24016,8 @@ "globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true }, "globby": { "version": "11.0.4", @@ -25955,13 +24034,6 @@ "slash": "^3.0.0" }, "dependencies": { - "ignore": { - "version": "5.1.8", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", - "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", - "dev": true, - "peer": true - }, "slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", @@ -26025,6 +24097,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, "requires": { "function-bind": "^1.1.1" } @@ -26053,12 +24126,14 @@ "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true }, "has-symbols": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", + "dev": true }, "has-tostringtag": { "version": "1.0.0", @@ -26069,38 +24144,6 @@ "has-symbols": "^1.0.2" } }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", - "optional": true, - "requires": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - } - }, - "has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", - "optional": true, - "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "dependencies": { - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "optional": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, "hash-base": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", @@ -26158,13 +24201,6 @@ "minimalistic-crypto-utils": "^1.0.1" } }, - "hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true, - "peer": true - }, "hpack.js": { "version": "2.1.6", "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", @@ -26432,9 +24468,9 @@ "peer": true }, "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", "dev": true, "peer": true }, @@ -26510,6 +24546,7 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, "requires": { "once": "^1.3.0", "wrappy": "1" @@ -26518,7 +24555,8 @@ "inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true }, "ini": { "version": "1.3.8", @@ -26566,23 +24604,6 @@ "dev": true, "peer": true }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "optional": true, - "requires": { - "kind-of": "^6.0.0" - }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "optional": true - } - } - }, "is-arguments": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", @@ -26606,15 +24627,6 @@ "integrity": "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==", "dev": true }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "optional": true, - "requires": { - "binary-extensions": "^1.0.0" - } - }, "is-boolean-object": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz", @@ -26636,55 +24648,20 @@ "dev": true }, "is-core-module": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.4.0.tgz", - "integrity": "sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", + "dev": true, "requires": { "has": "^1.0.3" } }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "optional": true, - "requires": { - "kind-of": "^6.0.0" - }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "optional": true - } - } - }, "is-date-object": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz", "integrity": "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==", "dev": true }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "optional": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "optional": true - } - } - }, "is-docker": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", @@ -26696,13 +24673,14 @@ "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", - "devOptional": true + "dev": true }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "devOptional": true + "dev": true, + "peer": true }, "is-fullwidth-code-point": { "version": "3.0.0", @@ -26727,10 +24705,11 @@ } }, "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", - "devOptional": true, + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "peer": true, "requires": { "is-extglob": "^2.1.1" } @@ -26752,15 +24731,6 @@ "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", "dev": true }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "optional": true, - "requires": { - "kind-of": "^3.0.2" - } - }, "is-number-object": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz", @@ -26792,7 +24762,8 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "devOptional": true, + "dev": true, + "peer": true, "requires": { "isobject": "^3.0.1" } @@ -26885,12 +24856,6 @@ "integrity": "sha1-Fjnssb4DauxppUy7QBz77XEUq38=", "dev": true }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "optional": true - }, "is-wsl": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", @@ -26905,7 +24870,8 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "devOptional": true + "dev": true, + "peer": true }, "isexe": { "version": "2.0.0", @@ -26917,7 +24883,8 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "devOptional": true + "dev": true, + "peer": true }, "istanbul-lib-coverage": { "version": "3.2.0", @@ -28287,9 +26254,9 @@ } }, "jsdoc-type-pratt-parser": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-2.0.0.tgz", - "integrity": "sha512-sUuj2j48wxrEpbFjDp1sAesAxPiLT+z0SWVmMafyIINs6Lj5gIPKh3VrkBZu4E/Dv+wHpOot0m6H8zlHQjwqeQ==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-3.1.0.tgz", + "integrity": "sha512-MgtD0ZiCDk9B+eI73BextfRrVQl0oyzRG8B2BjORts6jbunj4ScKPcyXGTbB6eXL4y9TzxCm6hyeLq/2ASzNdw==", "dev": true, "peer": true }, @@ -28339,7 +26306,8 @@ "jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true }, "json-parse-better-errors": { "version": "1.0.2", @@ -28382,7 +26350,7 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "devOptional": true, + "dev": true, "requires": { "is-buffer": "^1.1.5" } @@ -28442,35 +26410,6 @@ "integrity": "sha512-HwXVwdNH1wESBfo2sH7Bkl+ywzbGA3+uJEfhquCyi/bMCa49bFUvd/re1NT1Lox/5jdnpQXzI9O/jykit71idg==", "peer": true }, - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", - "dev": true, - "peer": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true, - "peer": true - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true, - "peer": true - } - } - }, "loader-runner": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz", @@ -28518,7 +26457,9 @@ "lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", + "dev": true, + "peer": true }, "lodash.get": { "version": "4.4.2", @@ -28562,22 +26503,6 @@ "yallist": "^2.1.2" } }, - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, "makeerror": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", @@ -28587,12 +26512,6 @@ "tmpl": "1.0.5" } }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", - "optional": true - }, "map-obj": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.2.1.tgz", @@ -28600,15 +26519,6 @@ "dev": true, "peer": true }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", - "optional": true, - "requires": { - "object-visit": "^1.0.0" - } - }, "material-colors": { "version": "1.2.6", "resolved": "https://registry.npmjs.org/material-colors/-/material-colors-1.2.6.tgz", @@ -28874,54 +26784,6 @@ "integrity": "sha1-izgy7UDIfVH0e7I0kTppinVtGdI=", "dev": true }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "optional": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "optional": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "optional": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "optional": true - } - } - }, "miller-rabin": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", @@ -28993,14 +26855,15 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" }, "minimist-options": { "version": "4.1.0", @@ -29030,27 +26893,6 @@ } } }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "optional": true, - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "optional": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, "mkdirp": { "version": "0.5.5", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", @@ -29061,85 +26903,40 @@ } }, "moment": { - "version": "2.24.0", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz", - "integrity": "sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==" + "version": "2.29.3", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz", + "integrity": "sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw==" }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true }, "multicast-dns": { "version": "6.2.3", "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", - "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", - "dev": true, - "peer": true, - "requires": { - "dns-packet": "^1.3.1", - "thunky": "^1.0.2" - } - }, - "multicast-dns-service-types": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", - "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", - "dev": true, - "peer": true - }, - "nanoid": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz", - "integrity": "sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==", - "dev": true - }, - "nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "optional": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "optional": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "optional": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "optional": true - } + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "peer": true, + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" } }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "dev": true, + "peer": true + }, + "nanoid": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz", + "integrity": "sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==", + "dev": true + }, "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", @@ -29252,33 +27049,11 @@ "abbrev": "1" } }, - "normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "peer": true, - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "peer": true - } - } - }, "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "devOptional": true + "dev": true }, "normalize-selector": { "version": "0.2.0", @@ -29307,65 +27082,6 @@ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", - "optional": true, - "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "optional": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "optional": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "optional": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "optional": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "optional": true - } - } - } - } - }, "object-inspect": { "version": "1.12.0", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", @@ -29386,21 +27102,14 @@ "object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - }, - "object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", - "optional": true, - "requires": { - "isobject": "^3.0.0" - } + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true }, "object.assign": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, "requires": { "call-bind": "^1.0.0", "define-properties": "^1.1.3", @@ -29408,25 +27117,16 @@ "object-keys": "^1.1.1" } }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", - "optional": true, - "requires": { - "isobject": "^3.0.1" - } - }, "object.values": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.4.tgz", - "integrity": "sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg==", + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", "dev": true, "peer": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", - "es-abstract": "^1.18.2" + "es-abstract": "^1.19.1" } }, "obuf": { @@ -29457,6 +27157,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, "requires": { "wrappy": "1" } @@ -29597,17 +27298,6 @@ "safe-buffer": "^5.1.1" } }, - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", - "dev": true, - "peer": true, - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - } - }, "parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", @@ -29621,12 +27311,6 @@ "dev": true, "peer": true }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", - "optional": true - }, "path-browserify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", @@ -29643,7 +27327,8 @@ "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true }, "path-key": { "version": "3.1.1", @@ -29654,190 +27339,47 @@ "path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", - "dev": true, - "peer": true - }, - "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "dev": true, - "peer": true, - "requires": { - "pify": "^3.0.0" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true, - "peer": true - } - } - }, - "pbkdf2": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", - "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", - "dev": true, - "peer": true, - "requires": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "picomatch": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", - "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", - "devOptional": true - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - }, - "pirates": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz", - "integrity": "sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==", - "dev": true - }, - "pkg-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", - "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", - "dev": true, - "peer": true, - "requires": { - "find-up": "^2.1.0" - }, - "dependencies": { - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "peer": true, - "requires": { - "locate-path": "^2.0.0" - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "peer": true, - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "peer": true, - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "peer": true, - "requires": { - "p-limit": "^1.1.0" - } - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true, - "peer": true - } - } - }, - "pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz", - "integrity": "sha1-yBmscoBZpGHKscOImivjxJoATX8=", - "dev": true, - "peer": true, - "requires": { - "find-up": "^2.1.0" - }, - "dependencies": { - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "peer": true, - "requires": { - "locate-path": "^2.0.0" - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "peer": true, - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "peer": true, - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "peer": true, - "requires": { - "p-limit": "^1.1.0" - } - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true, - "peer": true - } + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true, + "peer": true + }, + "pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "dev": true, + "peer": true, + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" } }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "picomatch": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", + "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", + "dev": true + }, + "pirates": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz", + "integrity": "sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==", + "dev": true + }, "popper.js": { "version": "1.16.1", "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", @@ -29867,12 +27409,6 @@ } } }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", - "optional": true - }, "postcss": { "version": "7.0.36", "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", @@ -30031,12 +27567,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "devOptional": true - }, - "progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", "dev": true, "peer": true }, @@ -30228,79 +27758,6 @@ "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", "dev": true }, - "read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", - "dev": true, - "peer": true, - "requires": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - } - }, - "read-pkg-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", - "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=", - "dev": true, - "peer": true, - "requires": { - "find-up": "^2.0.0", - "read-pkg": "^3.0.0" - }, - "dependencies": { - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "peer": true, - "requires": { - "locate-path": "^2.0.0" - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "peer": true, - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "peer": true, - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "peer": true, - "requires": { - "p-limit": "^1.1.0" - } - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true, - "peer": true - } - } - }, "readable-stream": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", @@ -30312,43 +27769,6 @@ "util-deprecate": "^1.0.1" } }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "optional": true, - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, "rechoir": { "version": "0.7.1", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", @@ -30373,12 +27793,16 @@ "regenerate": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true, + "peer": true }, "regenerate-unicode-properties": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz", "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==", + "dev": true, + "peer": true, "requires": { "regenerate": "^1.4.0" } @@ -30392,6 +27816,8 @@ "version": "0.14.5", "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "dev": true, + "peer": true, "requires": { "@babel/runtime": "^7.8.4" }, @@ -30400,43 +27826,14 @@ "version": "7.14.6", "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz", "integrity": "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==", + "dev": true, + "peer": true, "requires": { "regenerator-runtime": "^0.13.4" } } } }, - "regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "optional": true, - "requires": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "optional": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "optional": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, "regex-parser": { "version": "2.2.11", "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", @@ -30465,6 +27862,8 @@ "version": "4.7.1", "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz", "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==", + "dev": true, + "peer": true, "requires": { "regenerate": "^1.4.0", "regenerate-unicode-properties": "^8.2.0", @@ -30474,22 +27873,19 @@ "unicode-match-property-value-ecmascript": "^1.2.0" } }, - "regextras": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/regextras/-/regextras-0.8.0.tgz", - "integrity": "sha512-k519uI04Z3SaY0fLX843MRXnDeG2+vHOFsyhiPZvNLe7r8rD2YNRjq4BQLZZ0oAr2NrtvZlICsXysGNFPGa3CQ==", - "dev": true, - "peer": true - }, "regjsgen": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", - "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==" + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==", + "dev": true, + "peer": true }, "regjsparser": { "version": "0.6.9", "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.9.tgz", "integrity": "sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==", + "dev": true, + "peer": true, "requires": { "jsesc": "~0.5.0" }, @@ -30497,28 +27893,12 @@ "jsesc": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true, + "peer": true } } }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", - "optional": true - }, - "repeat-element": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", - "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", - "optional": true - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "optional": true - }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -30550,6 +27930,7 @@ "version": "1.20.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dev": true, "requires": { "is-core-module": "^2.2.0", "path-parse": "^1.0.6" @@ -30574,7 +27955,7 @@ "version": "0.2.1", "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", - "devOptional": true + "dev": true }, "resolve-url-loader": { "version": "5.0.0", @@ -30625,12 +28006,6 @@ "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", "dev": true }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "optional": true - }, "retry": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", @@ -30690,15 +28065,6 @@ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", - "optional": true, - "requires": { - "ret": "~0.1.10" - } - }, "safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", @@ -30795,7 +28161,8 @@ "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true }, "send": { "version": "0.17.2", @@ -30931,18 +28298,6 @@ "send": "0.17.2" } }, - "set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "optional": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - } - }, "setimmediate": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", @@ -31031,145 +28386,30 @@ "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", "dev": true }, - "slash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", - "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==" - }, - "slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "peer": true, - "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "peer": true, - "requires": { - "color-convert": "^2.0.1" - } - } - } - }, - "snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "optional": true, - "requires": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "optional": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "optional": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "optional": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "optional": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "optional": true - } - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "optional": true - } - } - }, - "snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "optional": true, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "peer": true, "requires": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" }, "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "optional": true, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "peer": true, "requires": { - "is-descriptor": "^1.0.0" + "color-convert": "^2.0.1" } } } }, - "snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "optional": true, - "requires": { - "kind-of": "^3.2.0" - } - }, "sockjs": { "version": "0.3.24", "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", @@ -31190,7 +28430,8 @@ "source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true }, "source-map-js": { "version": "1.0.1", @@ -31202,7 +28443,7 @@ "version": "0.5.3", "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", - "devOptional": true, + "dev": true, "requires": { "atob": "^2.1.2", "decode-uri-component": "^0.2.0", @@ -31231,7 +28472,7 @@ "version": "0.4.1", "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", - "devOptional": true + "dev": true }, "spdx-correct": { "version": "3.1.1", @@ -31305,36 +28546,6 @@ "dev": true, "peer": true }, - "split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "optional": true, - "requires": { - "extend-shallow": "^3.0.0" - }, - "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "optional": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "optional": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, "splitpanes": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/splitpanes/-/splitpanes-2.3.8.tgz", @@ -31355,64 +28566,6 @@ "escape-string-regexp": "^2.0.0" } }, - "static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", - "optional": true, - "requires": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "optional": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "optional": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "optional": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "optional": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "optional": true - } - } - } - } - }, "statuses": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", @@ -31558,8 +28711,6 @@ "version": "3.3.1", "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.1.tgz", "integrity": "sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==", - "dev": true, - "peer": true, "requires": {} }, "style-search": { @@ -31644,13 +28795,6 @@ "to-regex-range": "^5.0.1" } }, - "ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", - "dev": true, - "peer": true - }, "is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", @@ -31783,87 +28927,11 @@ "postcss-value-parser": "^4.1.0" } }, - "stylelint-webpack-plugin": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/stylelint-webpack-plugin/-/stylelint-webpack-plugin-3.1.0.tgz", - "integrity": "sha512-qKBj9s2BVnxwQXdqRKd637gtASYel6FA/a9PfyfsplUqiBmBjJeeTrcJPp9v/HEN4FRw2CJDNbO2xuYUF7DsuA==", - "dev": true, - "peer": true, - "requires": { - "@types/stylelint": "^13.13.3", - "globby": "^11.0.4", - "jest-worker": "^27.3.1", - "micromatch": "^4.0.4", - "normalize-path": "^3.0.0", - "schema-utils": "^3.1.1" - }, - "dependencies": { - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "peer": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "peer": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "peer": true - }, - "micromatch": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", - "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", - "dev": true, - "peer": true, - "requires": { - "braces": "^3.0.1", - "picomatch": "^2.2.3" - } - }, - "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", - "dev": true, - "peer": true, - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "peer": true, - "requires": { - "is-number": "^7.0.0" - } - } - } - }, "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, "requires": { "has-flag": "^3.0.0" } @@ -32137,59 +29205,8 @@ "to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" - }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", - "optional": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "optional": true, - "requires": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "optional": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "optional": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "optional": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true }, "toastify-js": { "version": "1.11.0", @@ -32262,15 +29279,15 @@ } }, "tsconfig-paths": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz", - "integrity": "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==", + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", + "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", "dev": true, "peer": true, "requires": { "@types/json5": "^0.0.29", "json5": "^1.0.1", - "minimist": "^1.2.0", + "minimist": "^1.2.6", "strip-bom": "^3.0.0" }, "dependencies": { @@ -32362,12 +29379,16 @@ "unicode-canonical-property-names-ecmascript": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", - "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==" + "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==", + "dev": true, + "peer": true }, "unicode-match-property-ecmascript": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", + "dev": true, + "peer": true, "requires": { "unicode-canonical-property-names-ecmascript": "^1.0.4", "unicode-property-aliases-ecmascript": "^1.0.4" @@ -32376,24 +29397,16 @@ "unicode-match-property-value-ecmascript": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz", - "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==" + "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==", + "dev": true, + "peer": true }, "unicode-property-aliases-ecmascript": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz", - "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==" - }, - "union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "optional": true, - "requires": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - } + "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==", + "dev": true, + "peer": true }, "universalify": { "version": "0.1.2", @@ -32408,52 +29421,6 @@ "dev": true, "peer": true }, - "unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", - "optional": true, - "requires": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "optional": true, - "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "optional": true, - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", - "optional": true - } - } - }, - "upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "optional": true - }, "uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -32466,7 +29433,7 @@ "version": "0.1.0", "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", - "devOptional": true + "dev": true }, "url": { "version": "0.11.0", @@ -32488,12 +29455,6 @@ } } }, - "use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "optional": true - }, "util": { "version": "0.12.4", "resolved": "https://registry.npmjs.org/util/-/util-0.12.4.tgz", @@ -32513,7 +29474,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "devOptional": true + "dev": true }, "utils-merge": { "version": "1.0.1", @@ -32669,39 +29630,72 @@ } }, "vue-eslint-parser": { - "version": "7.10.0", - "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.10.0.tgz", - "integrity": "sha512-7tc/ewS9Vq9Bn741pvpg8op2fWJPH3k32aL+jcIcWGCTzh/zXSdh7pZ5FV3W2aJancP9+ftPAv292zY5T5IPCg==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz", + "integrity": "sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==", "dev": true, "peer": true, "requires": { - "debug": "^4.1.1", - "eslint-scope": "^5.1.1", - "eslint-visitor-keys": "^1.1.0", - "espree": "^6.2.1", + "debug": "^4.3.2", + "eslint-scope": "^7.0.0", + "eslint-visitor-keys": "^3.1.0", + "espree": "^9.0.0", "esquery": "^1.4.0", "lodash": "^4.17.21", - "semver": "^6.3.0" + "semver": "^7.3.5" }, "dependencies": { + "eslint-scope": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "dev": true, + "peer": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true, + "peer": true + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "peer": true }, - "espree": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", - "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "peer": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", "dev": true, "peer": true, "requires": { - "acorn": "^7.1.1", - "acorn-jsx": "^5.2.0", - "eslint-visitor-keys": "^1.1.0" + "lru-cache": "^6.0.0" } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "peer": true } } }, @@ -32779,9 +29773,9 @@ } }, "vue-router": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.5.3.tgz", - "integrity": "sha512-FUlILrW3DGitS2h+Xaw8aRNvGTwtuaxrRkNSHWTizOfLUie7wuYwezeZ50iflRn8YPV5kxmU2LQuu3nM/b3Zsg==" + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.5.4.tgz", + "integrity": "sha512-x+/DLAJZv2mcQ7glH2oV9ze8uPwcI+H+GgTgTmb5I55bCgY3+vXWIsqbYUzbBSZnwFHEJku4eoaH/x98veyymQ==" }, "vue-shortkey": { "version": "3.1.7", @@ -33315,7 +30309,8 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true }, "write-file-atomic": { "version": "3.0.3", diff --git a/package.json b/package.json index 14e5a548cd68340bd78cb6352feff0a54694ce8e..eeaf65e47ac7b93eedc7c2241c5710de202cff73 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "calendar", "description": "A calendar app for Nextcloud. Easily sync events from various devices, share and edit them online.", - "version": "3.2.0", + "version": "3.3.0", "author": "Georg Ehrke ", "contributors": [ "Georg Ehrke ", @@ -35,31 +35,31 @@ "test:coverage": "jest --coverage" }, "dependencies": { - "@fullcalendar/core": "5.10.1", - "@fullcalendar/daygrid": "5.10.1", - "@fullcalendar/interaction": "5.10.1", - "@fullcalendar/list": "5.10.1", - "@fullcalendar/resource-timeline": "5.10.1", - "@fullcalendar/timegrid": "5.10.1", - "@fullcalendar/vue": "5.10.1", + "@fullcalendar/core": "5.11.0", + "@fullcalendar/daygrid": "5.11.0", + "@fullcalendar/interaction": "5.11.0", + "@fullcalendar/list": "5.11.0", + "@fullcalendar/resource-timeline": "5.11.0", + "@fullcalendar/timegrid": "5.11.0", + "@fullcalendar/vue": "5.11.0", "@nextcloud/auth": "^1.3.0", - "@nextcloud/axios": "^1.9.0", + "@nextcloud/axios": "^1.10.0", "@nextcloud/calendar-availability-vue": "^0.3.1", "@nextcloud/calendar-js": "^3.0.0", "@nextcloud/cdav-library": "^1.1.0", "@nextcloud/dialogs": "^3.1.2", "@nextcloud/event-bus": "^2.1.1", "@nextcloud/initial-state": "^1.2.1", - "@nextcloud/l10n": "^1.4.1", + "@nextcloud/l10n": "^1.6.0", "@nextcloud/logger": "^2.1.0", - "@nextcloud/moment": "^1.1.1", + "@nextcloud/moment": "^1.2.1", "@nextcloud/router": "^2.0.0", - "@nextcloud/vue": "^4.4.0", + "@nextcloud/vue": "^5.3.1", "@nextcloud/vue-dashboard": "^2.0.1", "autosize": "^5.0.1", "closest-css-color": "^1.0.0", "color-convert": "^2.0.1", - "core-js": "^3.21.1", + "core-js": "^3.22.7", "css-color-names": "^1.0.1", "debounce": "^1.2.1", "jstz": "^2.1.1", @@ -70,7 +70,7 @@ "vue-click-outside": "^1.1.0", "vue-clipboard2": "^0.3.3", "vue-material-design-icons": "^5.0.0", - "vue-router": "^3.5.3", + "vue-router": "^3.5.4", "vue-shortkey": "^3.1.7", "vuedraggable": "^2.24.3", "vuex": "^3.6.2", @@ -86,9 +86,9 @@ "devDependencies": { "@nextcloud/babel-config": "^1.0.0", "@nextcloud/browserslist-config": "^2.2.0", - "@nextcloud/eslint-config": "^6.1.2", + "@nextcloud/eslint-config": "^8.0.0", "@nextcloud/stylelint-config": "^2.1.2", - "@nextcloud/webpack-vue-config": "^4.3.2", + "@nextcloud/webpack-vue-config": "^5.1.0", "@vue/test-utils": "^1.3.0", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^27.4.4", diff --git a/src/components/AppNavigation/AppNavigationHeader/AppNavigationHeaderDatePicker.vue b/src/components/AppNavigation/AppNavigationHeader/AppNavigationHeaderDatePicker.vue index 5a8d628691631c57c0a4bbc341a6de9bb650ed87..ee3b0dc53cde694898d36fe15ebc12148f4eeedd 100644 --- a/src/components/AppNavigation/AppNavigationHeader/AppNavigationHeaderDatePicker.vue +++ b/src/components/AppNavigation/AppNavigationHeader/AppNavigationHeaderDatePicker.vue @@ -22,36 +22,36 @@ @@ -64,11 +64,15 @@ import { import { mapState } from 'vuex' import formatDateRage from '../../../filters/dateRangeFormat.js' import DatePicker from '../../Shared/DatePicker.vue' +import ChevronLeftIcon from 'vue-material-design-icons/ChevronLeft' +import ChevronRightIcon from 'vue-material-design-icons/ChevronRight' export default { name: 'AppNavigationHeaderDatePicker', components: { DatePicker, + ChevronLeftIcon, + ChevronRightIcon, }, filters: { formatDateRage, diff --git a/src/components/AppNavigation/AppNavigationHeader/AppNavigationHeaderNewEvent.vue b/src/components/AppNavigation/AppNavigationHeader/AppNavigationHeaderNewEvent.vue index 99aa99d6fcf1e61097bc73dd9224e633b7cabaa2..8f454b10a560524512a6be8e0d579cf9481fc945 100644 --- a/src/components/AppNavigation/AppNavigationHeader/AppNavigationHeaderNewEvent.vue +++ b/src/components/AppNavigation/AppNavigationHeader/AppNavigationHeaderNewEvent.vue @@ -21,8 +21,7 @@ -->