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..c1ddedea8a2ef494205793974bf7b7a0524da66a 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'] 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/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..cea16cf49c1374f33754cafd78ef2e1549393b23 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.3.2 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-settings.scss b/css/app-settings.scss index 4debe208560c68e173b5a0706acacb0dedcb1862..122405c4abafd0e4ce4c13f13f136a9038b3eaed 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; } } 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..8defaf4abab238bb73b6f4224fb489d5b48a53b7 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,6 +196,7 @@ 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" : "Запазване", @@ -208,7 +228,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 +247,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 +371,7 @@ OC.L10N.register( "Close" : "Затвори", "Show more details" : "Показване на повече подробности", "Subscribe to {name}" : "Абониране за {name}", + "Export {name}" : "Експортиране /изнасям/ на {name}", "Anniversary" : "Годишнина", "Appointment" : "Среща", "Business" : "Бизнес", @@ -419,14 +459,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 +508,10 @@ OC.L10N.register( "Football" : "Футбол", "Gaming" : "Игри", "Drive" : "Шофиране", + "Driving" : "Шофиране", "Bicycle" : "Велосипед", "Cycle" : "Колело", + "Cycling" : "Колоездене", "Biking" : "Колоездене", "Bike" : "Велосипед", "Podcast" : "Подкаст", @@ -453,10 +524,12 @@ OC.L10N.register( "Museum" : "Музей", "Pilates" : "Пилатес", "Park" : "Парк", + "Walk" : "Разходка", "Studying" : "Изучаване", "Doctor" : "Доктор", "Health" : "Здраве", "Dentist" : "Зъболекар", + "Hospital" : "Болница", "Interview" : "Интервю", "Training" : "Обучение", "Practice" : "Практика", @@ -467,6 +540,7 @@ OC.L10N.register( "Gym" : "Фитнес", "Barber" : "Бръснар", "Haircut" : "Подстрижка", + "Hairdresser" : "Фризьор", "Exam" : "Изпит", "Written test" : "Писмен тест", "Oral test" : "Устен изпит", @@ -488,16 +562,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..4cf1788de2470c058953443bbbceb00bbc373c7e 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,6 +194,7 @@ "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" : "Запазване", @@ -206,7 +226,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 +245,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 +369,7 @@ "Close" : "Затвори", "Show more details" : "Показване на повече подробности", "Subscribe to {name}" : "Абониране за {name}", + "Export {name}" : "Експортиране /изнасям/ на {name}", "Anniversary" : "Годишнина", "Appointment" : "Среща", "Business" : "Бизнес", @@ -417,14 +457,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 +506,10 @@ "Football" : "Футбол", "Gaming" : "Игри", "Drive" : "Шофиране", + "Driving" : "Шофиране", "Bicycle" : "Велосипед", "Cycle" : "Колело", + "Cycling" : "Колоездене", "Biking" : "Колоездене", "Bike" : "Велосипед", "Podcast" : "Подкаст", @@ -451,10 +522,12 @@ "Museum" : "Музей", "Pilates" : "Пилатес", "Park" : "Парк", + "Walk" : "Разходка", "Studying" : "Изучаване", "Doctor" : "Доктор", "Health" : "Здраве", "Dentist" : "Зъболекар", + "Hospital" : "Болница", "Interview" : "Интервю", "Training" : "Обучение", "Practice" : "Практика", @@ -465,6 +538,7 @@ "Gym" : "Фитнес", "Barber" : "Бръснар", "Haircut" : "Подстрижка", + "Hairdresser" : "Фризьор", "Exam" : "Изпит", "Written test" : "Писмен тест", "Oral test" : "Устен изпит", @@ -486,16 +560,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..1148fcca7582b30e42247c4bfce7cc295815f396 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,6 +115,7 @@ 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", @@ -120,6 +129,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 +143,8 @@ OC.L10N.register( "Description" : "Descripció", "Visibility" : "Visibilitat", "Duration" : "Durada", + "to" : "a", + "Add" : "Afegeix", "Monday" : "Dilluns", "Tuesday" : "Dimarts", "Wednesday" : "Dimecres", @@ -142,6 +154,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 +173,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 +189,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 +227,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 +245,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 +309,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 +321,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 +346,9 @@ OC.L10N.register( "Meditation" : "Meditació", "Relaxing" : "Relax", "Relax" : "Relax", + "Commuting" : "Trajecte", "Presentation" : "Presentació", + "Talk" : "Parla", "Camping" : "Acampada", "Camp" : "Campament", "Garden" : "Jardí", @@ -366,6 +389,7 @@ OC.L10N.register( "Doctor" : "Doctor", "Health" : "Salut", "Dentist" : "Dentista", + "Hospital" : "Hospital", "Interview" : "Entrevista", "Training" : "Entrenament", "Practice" : "Pràctica", @@ -408,6 +432,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..a4183b8a123d3dd10d4807c9f53a1c4990e7277a 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,6 +113,7 @@ "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", @@ -118,6 +127,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 +141,8 @@ "Description" : "Descripció", "Visibility" : "Visibilitat", "Duration" : "Durada", + "to" : "a", + "Add" : "Afegeix", "Monday" : "Dilluns", "Tuesday" : "Dimarts", "Wednesday" : "Dimecres", @@ -140,6 +152,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 +171,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 +187,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 +225,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 +243,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 +307,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 +319,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 +344,9 @@ "Meditation" : "Meditació", "Relaxing" : "Relax", "Relax" : "Relax", + "Commuting" : "Trajecte", "Presentation" : "Presentació", + "Talk" : "Parla", "Camping" : "Acampada", "Camp" : "Campament", "Garden" : "Jardí", @@ -364,6 +387,7 @@ "Doctor" : "Doctor", "Health" : "Salut", "Dentist" : "Dentista", + "Hospital" : "Hospital", "Interview" : "Entrevista", "Training" : "Entrenament", "Practice" : "Pràctica", @@ -406,6 +430,7 @@ "Party" : "Festa", "Celebration" : "Celebració", "Celebrate" : "Celebrar", + "Birthday" : "Aniversari", "Shopping" : "Anar de compres", "Skate" : "Patinar", "Skateboard" : "Skateboard", 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.json b/l10n/de.json index 644db5b2fcdfda918154dca9ba02a79b66a7e0d9..6dfe0999b125eb5aff6f2c59d19b0351d6b3da12 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -439,7 +439,6 @@ "When shared hide this event" : "Wenn geteilt, zeige diesen Termin nicht an", "The visibility of this event in shared calendars." : "Sichtbarkeit dieses Termins in geteilten Kalendern.", "Add a location" : "Ort hinzufügen", - "Open Link" : "Link öffnen", "Add a description" : "Beschreibung hinzufügen", "Status" : "Status", "Confirmed" : "Bestätigt", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 16a7c59dcba0d8edc1bec9026da59895fceccb9d..b22a3f1bfb436835b5fbbf92782e0d04d1123805 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -371,7 +371,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..605ffd97317f77a217c035466a3ad258a99f8533 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -369,7 +369,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..e48cffb6eccb334da09bcd3e3d12737acb04c853 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,12 +190,12 @@ 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" : "Επεξεργασία ραντεβού", @@ -207,7 +207,7 @@ OC.L10N.register( "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 +237,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 +459,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..01951ec6babadc52f92935b53159b107de9f4d31 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,12 +188,12 @@ "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" : "Επεξεργασία ραντεβού", @@ -205,7 +205,7 @@ "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 +235,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 +457,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..d2804fc0b3aa59ff007c01211a24d9d474ddcc35 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,6 +110,7 @@ OC.L10N.register( "Categories" : "Categories", "Custom color" : "Custom colour", "Presentation" : "Presentation", + "Talk" : "Talk", "Review" : "Review", "Office" : "Office", "Mail" : "Mail", 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..e3dbc2a2056a160ce73e84d0d528b3a75c84627d 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.", @@ -123,6 +127,7 @@ OC.L10N.register( "{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."], "Automatic" : "Automático", "Automatic ({detected})" : "Automático ({detected})", "New setting was not saved successfully." : "El nuevo ajuste no ha podido ser guardado correctamente.", @@ -223,7 +228,18 @@ OC.L10N.register( "_hour_::_hours_" : ["hora","horas"], "_day_::_days_" : ["día","días"], "_week_::_weeks_" : ["semana","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", @@ -355,6 +371,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", diff --git a/l10n/es.json b/l10n/es.json index 7b69fd4ba9caea648347945abe89a985943ca607..0c071064c29c9dc325c72167861062bcef9bf3fb 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.", @@ -121,6 +125,7 @@ "{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."], "Automatic" : "Automático", "Automatic ({detected})" : "Automático ({detected})", "New setting was not saved successfully." : "El nuevo ajuste no ha podido ser guardado correctamente.", @@ -221,7 +226,18 @@ "_hour_::_hours_" : ["hora","horas"], "_day_::_days_" : ["día","días"], "_week_::_weeks_" : ["semana","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", @@ -353,6 +369,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", diff --git a/l10n/es_419.js b/l10n/es_419.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..96bd9ffd282f63e910fde8a4f022abee98013269 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);"); diff --git a/l10n/es_419.json b/l10n/es_419.json index ab409b760a8710001961e06e87ba45656fb4bd0d..2e9117564fcc6fda5489d6696f02f33745298251 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" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es_AR.js b/l10n/es_AR.js index 79da9f76598838892eb1ba71ff5226566ef33b34..c1713cfb9bdea38204d29144d38bdfa5b58666c0 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);"); diff --git a/l10n/es_AR.json b/l10n/es_AR.json index cd9986f2f896f50c34fad6aaa17ceee584e6ecca..54365f954f32e2eca73b50c45f57d0164e6c6e15 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" + "Mail" : "Correo Electrónico", + "Birthday" : "Fecha de nacimiento" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es_CL.js b/l10n/es_CL.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..abfd3d269df5993b8b58e218dac2850886d464cc 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);"); diff --git a/l10n/es_CL.json b/l10n/es_CL.json index ab409b760a8710001961e06e87ba45656fb4bd0d..17e601853dbfbbb524d2adafe7760c50f5e3050e 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" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es_CO.js b/l10n/es_CO.js index b356c687d2636e8756578dcf313dfdb063db8e51..fac382ee5d5261813e5d13ee2637bb1a4848e3e2 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);"); diff --git a/l10n/es_CO.json b/l10n/es_CO.json index 067a6a521780457fc1e87e09454c5fc99910ff3c..3c25921505983006dfe7a806b4f0e7e6a5f7d879 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" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es_CR.js b/l10n/es_CR.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..abfd3d269df5993b8b58e218dac2850886d464cc 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);"); diff --git a/l10n/es_CR.json b/l10n/es_CR.json index ab409b760a8710001961e06e87ba45656fb4bd0d..17e601853dbfbbb524d2adafe7760c50f5e3050e 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" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es_DO.js b/l10n/es_DO.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..abfd3d269df5993b8b58e218dac2850886d464cc 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);"); diff --git a/l10n/es_DO.json b/l10n/es_DO.json index ab409b760a8710001961e06e87ba45656fb4bd0d..17e601853dbfbbb524d2adafe7760c50f5e3050e 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" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es_EC.js b/l10n/es_EC.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..abfd3d269df5993b8b58e218dac2850886d464cc 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);"); diff --git a/l10n/es_EC.json b/l10n/es_EC.json index ab409b760a8710001961e06e87ba45656fb4bd0d..17e601853dbfbbb524d2adafe7760c50f5e3050e 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" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es_GT.js b/l10n/es_GT.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..b4b38250b4acb75000503330fa1975c3563ffe24 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);"); diff --git a/l10n/es_GT.json b/l10n/es_GT.json index ab409b760a8710001961e06e87ba45656fb4bd0d..4854caccbc1bbd0ae4efaac37931d44314761b84 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" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es_HN.js b/l10n/es_HN.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..96bd9ffd282f63e910fde8a4f022abee98013269 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);"); diff --git a/l10n/es_HN.json b/l10n/es_HN.json index ab409b760a8710001961e06e87ba45656fb4bd0d..2e9117564fcc6fda5489d6696f02f33745298251 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" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es_MX.js b/l10n/es_MX.js index b31cf107d9f17b5bfe289249e417628803055b33..54e36f1832c16dea43ac0839f4102c9ae62b030f 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);"); diff --git a/l10n/es_MX.json b/l10n/es_MX.json index e7259004d292189ff70aa76a6c201106036802da..452c0c3df72e2ad9d00cba42d64a85d8b0d87062 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" + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es_NI.js b/l10n/es_NI.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..96bd9ffd282f63e910fde8a4f022abee98013269 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);"); diff --git a/l10n/es_NI.json b/l10n/es_NI.json index ab409b760a8710001961e06e87ba45656fb4bd0d..2e9117564fcc6fda5489d6696f02f33745298251 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" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es_PA.js b/l10n/es_PA.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..96bd9ffd282f63e910fde8a4f022abee98013269 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);"); diff --git a/l10n/es_PA.json b/l10n/es_PA.json index ab409b760a8710001961e06e87ba45656fb4bd0d..2e9117564fcc6fda5489d6696f02f33745298251 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" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es_PE.js b/l10n/es_PE.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..96bd9ffd282f63e910fde8a4f022abee98013269 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);"); diff --git a/l10n/es_PE.json b/l10n/es_PE.json index ab409b760a8710001961e06e87ba45656fb4bd0d..2e9117564fcc6fda5489d6696f02f33745298251 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" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es_PR.js b/l10n/es_PR.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..96bd9ffd282f63e910fde8a4f022abee98013269 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);"); diff --git a/l10n/es_PR.json b/l10n/es_PR.json index ab409b760a8710001961e06e87ba45656fb4bd0d..2e9117564fcc6fda5489d6696f02f33745298251 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" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es_PY.js b/l10n/es_PY.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..96bd9ffd282f63e910fde8a4f022abee98013269 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);"); diff --git a/l10n/es_PY.json b/l10n/es_PY.json index ab409b760a8710001961e06e87ba45656fb4bd0d..2e9117564fcc6fda5489d6696f02f33745298251 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" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es_SV.js b/l10n/es_SV.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..abfd3d269df5993b8b58e218dac2850886d464cc 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);"); diff --git a/l10n/es_SV.json b/l10n/es_SV.json index ab409b760a8710001961e06e87ba45656fb4bd0d..17e601853dbfbbb524d2adafe7760c50f5e3050e 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" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento", + "User not found" : "No se encontró el usuario" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es_UY.js b/l10n/es_UY.js index d8ad431d6e8c059832f0619a6fb6fac017940ad0..a6bb7d47d636b110994b4f6971260d79a846fd46 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);"); diff --git a/l10n/es_UY.json b/l10n/es_UY.json index ab409b760a8710001961e06e87ba45656fb4bd0d..df8bac5d16b4b396bbebb6190dab5253f55a0955 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" + "Talk" : "Hablar", + "Mail" : "Correo", + "Birthday" : "Fecha de nacimiento" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ 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..f4d2f1e83fb08a081abafb4ad2120b94c5a10663 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -227,7 +227,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", @@ -461,19 +472,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 +559,7 @@ OC.L10N.register( "Conference" : "Biltzarra", "Pizza" : "Pizza", "Travelling" : "Bidaiatzen", + "Trip" : "Bidaia", "Journey" : "Bidaia", "Collaborate" : "Elkarlana", "Pair" : "Parekatu", @@ -552,6 +572,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..ea12614e7b6c38919464be46938d7657e7e34ecb 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -225,7 +225,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", @@ -459,19 +470,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 +557,7 @@ "Conference" : "Biltzarra", "Pizza" : "Pizza", "Travelling" : "Bidaiatzen", + "Trip" : "Bidaia", "Journey" : "Bidaia", "Collaborate" : "Elkarlana", "Pair" : "Parekatu", @@ -550,6 +570,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..599a1f62807a1a65fd703f95d03777b2f01881bf 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,6 +191,7 @@ 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", @@ -210,7 +220,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 +234,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 +321,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 +348,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 +434,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 +468,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 +484,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 +500,7 @@ OC.L10N.register( "Gym" : "Sali", "Barber" : "Parturi", "Haircut" : "Kampaamo", + "Hairdresser" : "Kampaaja", "Exam" : "Koe", "Working" : "Töitä", "New Years Eve" : "Uudenvuodenaatto", @@ -485,12 +529,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..4a53c02f2f7f450cc3641217470e2a0de3569ac8 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,6 +189,7 @@ "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", @@ -208,7 +218,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 +232,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 +319,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 +346,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 +432,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 +466,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 +482,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 +498,7 @@ "Gym" : "Sali", "Barber" : "Parturi", "Haircut" : "Kampaamo", + "Hairdresser" : "Kampaaja", "Exam" : "Koe", "Working" : "Töitä", "New Years Eve" : "Uudenvuodenaatto", @@ -483,12 +527,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..c6f1e2b6a5dc98633be4a39313fc77289213649a 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -127,6 +127,7 @@ OC.L10N.register( "{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"], "Automatic" : "Automatique", "Automatic ({detected})" : "Automatique ({detected})", "New setting was not saved successfully." : "Le nouveau paramètre n'a pas pu être enregistré.", @@ -227,7 +228,18 @@ OC.L10N.register( "_hour_::_hours_" : ["heure","heures"], "_day_::_days_" : ["jour","jours"], "_week_::_weeks_" : ["semaine","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", @@ -359,6 +371,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", diff --git a/l10n/fr.json b/l10n/fr.json index a6d40db2d9f6fa984ec0aad9dde36cca8d86d557..feb35ae3e1b7ac84bf952ce2719dc1b9a5932283 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -125,6 +125,7 @@ "{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"], "Automatic" : "Automatique", "Automatic ({detected})" : "Automatique ({detected})", "New setting was not saved successfully." : "Le nouveau paramètre n'a pas pu être enregistré.", @@ -225,7 +226,18 @@ "_hour_::_hours_" : ["heure","heures"], "_day_::_days_" : ["jour","jours"], "_week_::_weeks_" : ["semaine","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", @@ -357,6 +369,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", diff --git a/l10n/gl.js b/l10n/gl.js index 9bcb9f67836baa705459fb1bf7834f58cb7adc5e..e340b7e3dd348fea9499fff997f3d4c4fca2f9d3 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 …", @@ -113,13 +127,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 +158,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 +218,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 +236,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 +250,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 +300,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 +311,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 +336,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 +376,7 @@ OC.L10N.register( "Doctor" : "Médico", "Health" : "Saúde", "Dentist" : "Dentista", + "Hospital" : "Hospital", "Interview" : "Entrevista", "Training" : "Adestramento", "Practice" : "Práctica", @@ -375,12 +415,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..09d8b19b02a1537780f53890b5db375be5d9f341 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 …", @@ -111,13 +125,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 +156,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 +216,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 +234,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 +248,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 +298,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 +309,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 +334,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 +374,7 @@ "Doctor" : "Médico", "Health" : "Saúde", "Dentist" : "Dentista", + "Hospital" : "Hospital", "Interview" : "Entrevista", "Training" : "Adestramento", "Practice" : "Práctica", @@ -373,12 +413,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..85f023cc785261126f8994839752462c30cdf7ab 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.", @@ -226,7 +228,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 +371,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..04dfcdfd6596dd703c2d7fe4c72a248e5dc3ec00 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.", @@ -224,7 +226,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 +369,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..2b4d74d1bd9aa822a07484f069fbc13c1aa7206d 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.", @@ -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", @@ -221,7 +244,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 +260,9 @@ 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", + "Review" : "Tinjauan", + "Mail" : "Email", + "Birthday" : "Tanggal lahir" }, "nplurals=1; plural=0;"); diff --git a/l10n/id.json b/l10n/id.json index fa4de9870dba7a6cbe058f957db5155520ec9b2c..044f4b4879942858afcaf8ab828669e261107d85 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.", @@ -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", @@ -219,7 +242,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 +258,9 @@ "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", + "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..423591d678f3394399fbb2115a7153388c9f84c8 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.", @@ -181,7 +181,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,7 +196,7 @@ 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", @@ -228,7 +228,18 @@ OC.L10N.register( "_hour_::_hours_" : ["ora","ore"], "_day_::_days_" : ["giorno","giorni"], "_week_::_weeks_" : ["settimana","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", @@ -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", diff --git a/l10n/it.json b/l10n/it.json index a2472e70a54b530de70f173be1aa1b5581538254..65a649613193f0fad4cd741a054b6378f70c6de6 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.", @@ -179,7 +179,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,7 +194,7 @@ "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", @@ -226,7 +226,18 @@ "_hour_::_hours_" : ["ora","ore"], "_day_::_days_" : ["giorno","giorni"], "_week_::_weeks_" : ["settimana","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", @@ -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", diff --git a/l10n/ja.js b/l10n/ja.js index 92339e16172ddd17b033569b3a1e6af8c1d05fec..77a7b1a1d2c64fe92accef185dc1fa59ba96adf1 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時間です。", @@ -102,6 +103,9 @@ OC.L10N.register( "Restore" : "復元", "Delete permanently" : "完全に削除する", "Empty trash bin" : "ゴミ箱を空にする", + "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." : "カレンダーの順番を更新できません。", @@ -146,9 +150,16 @@ OC.L10N.register( "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" : "予定は正常に更新されました。", "0 minutes" : "0分", + "To configure appointments, add your email address in personal settings." : "予定を設定するには、個人設定であなたのメールアドレスを追加してください。", "Location" : "場所", "Description" : "説明", + "Visibility" : "公開レベル", + "Duration" : "期間", + "to" : "宛先", + "Delete slot" : "スロットを削除", "Add" : "追加", "Monday" : "月曜日", "Tuesday" : "火曜日", @@ -182,13 +193,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 +241,8 @@ OC.L10N.register( "weekday" : "平日", "weekend day" : "週末", "Whiteboard" : "ホワイトボード", + "available" : "利用可能", + "unavailable" : "利用不可", "More" : "もっと見る", "Update this and all future" : "これ以降を更新", "Public calendar does not exist" : "公開カレンダーは存在しません", @@ -242,6 +260,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 +274,7 @@ OC.L10N.register( "Delete this occurrence" : "この出来事を削除", "Details" : "詳細", "Attendees" : "参加者", + "Resources" : "リソース", "Close" : "閉じる", "Show more details" : "詳細を見る", "Anniversary" : "記念日", @@ -290,12 +311,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 +337,7 @@ OC.L10N.register( "Meditation" : "座禅", "Relaxing" : "休暇", "Relax" : "休み", + "Commuting" : "通勤中", "Finance" : "金融", "Bank" : "銀行", "Money" : "お金", @@ -321,6 +346,8 @@ OC.L10N.register( "Concert" : "演奏会", "Festival" : "祭", "Presentation" : "プレゼンテーション", + "Talk" : "トーク", + "Deadline" : "期限", "Camping" : "キャンプ場", "Camp" : "キャンプ", "Election" : "選挙", diff --git a/l10n/ja.json b/l10n/ja.json index 14af3a89f39196586168918cc4e00d4f67d818b3..2cd3485b16c61cdeb0688495540d3cfb05442b9a 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時間です。", @@ -100,6 +101,9 @@ "Restore" : "復元", "Delete permanently" : "完全に削除する", "Empty trash bin" : "ゴミ箱を空にする", + "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." : "カレンダーの順番を更新できません。", @@ -144,9 +148,16 @@ "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" : "予定は正常に更新されました。", "0 minutes" : "0分", + "To configure appointments, add your email address in personal settings." : "予定を設定するには、個人設定であなたのメールアドレスを追加してください。", "Location" : "場所", "Description" : "説明", + "Visibility" : "公開レベル", + "Duration" : "期間", + "to" : "宛先", + "Delete slot" : "スロットを削除", "Add" : "追加", "Monday" : "月曜日", "Tuesday" : "火曜日", @@ -180,13 +191,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 +239,8 @@ "weekday" : "平日", "weekend day" : "週末", "Whiteboard" : "ホワイトボード", + "available" : "利用可能", + "unavailable" : "利用不可", "More" : "もっと見る", "Update this and all future" : "これ以降を更新", "Public calendar does not exist" : "公開カレンダーは存在しません", @@ -240,6 +258,8 @@ "Type to search time zone" : "入力して時間帯を検索", "Global" : "グローバル", "Select date" : "日付を選択", + "Appointment Details:" : "予定の詳細:", + "Time:" : "時刻:", "Personal" : "個人", "No more events today" : "今日はこれ以上イベントがありません", "No upcoming events" : "今後のイベントはありません", @@ -252,6 +272,7 @@ "Delete this occurrence" : "この出来事を削除", "Details" : "詳細", "Attendees" : "参加者", + "Resources" : "リソース", "Close" : "閉じる", "Show more details" : "詳細を見る", "Anniversary" : "記念日", @@ -288,12 +309,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 +335,7 @@ "Meditation" : "座禅", "Relaxing" : "休暇", "Relax" : "休み", + "Commuting" : "通勤中", "Finance" : "金融", "Bank" : "銀行", "Money" : "お金", @@ -319,6 +344,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..d8208192d3b3553a86ce7a814e17835fa8315e52 --- /dev/null +++ b/l10n/km.js @@ -0,0 +1,50 @@ +OC.L10N.register( + "calendar", + { + "Calendar" : "ប្រតិទិន", + "Today" : "ថ្ងៃ​នេះ", + "Day" : "ថ្ងៃ", + "Week" : "សប្ដាហ៍", + "Month" : "ខែ", + "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" : "មិនដែរ", + "More" : "ច្រើន​ទៀត", + "Personal" : "ផ្ទាល់​ខ្លួន", + "Details" : "ព័ត៌មាន​លម្អិត", + "Attendees" : "អ្នក​ចូលរួម", + "Close" : "បិទ", + "Daily" : "រាល់ថ្ងៃ", + "Weekly" : "រាល់​សប្ដាហ៍", + "Next" : "បន្ទាប់", + "Other" : "ផ្សេងៗ", + "Mail" : "សំបុត្រ", + "Birthday" : "ថ្ងៃ​កំណើត" +}, +"nplurals=1; plural=0;"); diff --git a/l10n/km.json b/l10n/km.json new file mode 100644 index 0000000000000000000000000000000000000000..013956aba3a8e4741660b91ac86ae977b4132023 --- /dev/null +++ b/l10n/km.json @@ -0,0 +1,48 @@ +{ "translations": { + "Calendar" : "ប្រតិទិន", + "Today" : "ថ្ងៃ​នេះ", + "Day" : "ថ្ងៃ", + "Week" : "សប្ដាហ៍", + "Month" : "ខែ", + "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" : "មិនដែរ", + "More" : "ច្រើន​ទៀត", + "Personal" : "ផ្ទាល់​ខ្លួន", + "Details" : "ព័ត៌មាន​លម្អិត", + "Attendees" : "អ្នក​ចូលរួម", + "Close" : "បិទ", + "Daily" : "រាល់ថ្ងៃ", + "Weekly" : "រាល់​សប្ដាហ៍", + "Next" : "បន្ទាប់", + "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..9235aa6a2536c067bd842ce89a2e474568b38ee6 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ų.", @@ -202,6 +204,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 +212,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 +401,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..51ed1220c666690eac3a0aeff749e88baa9d4f50 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ų.", @@ -200,6 +202,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 +210,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 +399,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..1fa18144085c25e0c5eebaa28227d4a6780adbfe 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -8,6 +8,11 @@ OC.L10N.register( "Open »%s«" : "Åpne \"%s\"", "Cheers!" : "Ha det!", "Upcoming events" : "Kommende hendelser", + "Appointments" : "Avtaler", + "Confirm" : "Bekreft", + "Date:" : "Dato:", + "Where:" : "Hvor:", + "Description:" : "Beskrivelse:", "Calendar" : "Kalender", "A Calendar app for Nextcloud" : "En kalender til Nextcloud", "Previous day" : "Forrige dag", @@ -16,11 +21,15 @@ 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", "Untitled calendar" : "Kalender uten tittel", "Edit name" : "Rediger navn", @@ -28,6 +37,7 @@ OC.L10N.register( "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. ", @@ -73,6 +83,12 @@ OC.L10N.register( "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", + "Name" : "Navn", + "Deleted" : "Slettet", + "Restore" : "Gjenoprett", + "Delete permanently" : "Slett permament", + "Empty trash bin" : "Tøm papirkurv", "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 +112,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 +130,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 +156,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 +209,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 +227,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 +235,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 +261,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 +285,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 +315,7 @@ OC.L10N.register( "Doctor" : "Doktor", "Health" : "Helse", "Dentist" : "Tannlege", + "Hospital" : "Sykehus", "Interview" : "Intervju", "Training" : "Trene", "Practice" : "Øve", @@ -308,12 +350,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..c33ba0e7e868e7edbd425e2bccdaa9a579dea234 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -6,6 +6,11 @@ "Open »%s«" : "Åpne \"%s\"", "Cheers!" : "Ha det!", "Upcoming events" : "Kommende hendelser", + "Appointments" : "Avtaler", + "Confirm" : "Bekreft", + "Date:" : "Dato:", + "Where:" : "Hvor:", + "Description:" : "Beskrivelse:", "Calendar" : "Kalender", "A Calendar app for Nextcloud" : "En kalender til Nextcloud", "Previous day" : "Forrige dag", @@ -14,11 +19,15 @@ "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", "Untitled calendar" : "Kalender uten tittel", "Edit name" : "Rediger navn", @@ -26,6 +35,7 @@ "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. ", @@ -71,6 +81,12 @@ "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", + "Name" : "Navn", + "Deleted" : "Slettet", + "Restore" : "Gjenoprett", + "Delete permanently" : "Slett permament", + "Empty trash bin" : "Tøm papirkurv", "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 +110,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 +128,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 +154,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 +207,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 +225,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 +233,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 +259,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 +283,9 @@ "Imported {filename}" : "Importerte {filename}", "Meditation" : "Meditasjon", "Relaxing" : "Avslapping", + "Commuting" : "Pendler", "Presentation" : "Presentasjon", + "Talk" : "Samtale", "Camping" : "Camping", "Movie" : "Film", "Cinema" : "Kino", @@ -272,6 +313,7 @@ "Doctor" : "Doktor", "Health" : "Helse", "Dentist" : "Tannlege", + "Hospital" : "Sykehus", "Interview" : "Intervju", "Training" : "Trene", "Practice" : "Øve", @@ -306,12 +348,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..b0e1549141dc39378bed51bc5b4c799f57814e5e 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", @@ -215,7 +226,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 +240,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 +360,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 +448,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 +485,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 +501,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 +538,7 @@ OC.L10N.register( "Conference" : "Conferentie", "Pizza" : "Pizza", "Travelling" : "Reizen", + "Trip" : "Reis", "Journey" : "Reis", "Collaborate" : "Samenwerken", "Pair" : "Paar", @@ -510,7 +548,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..fcc22288854be789c387a193d044f5f95c4b6218 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", @@ -213,7 +224,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 +238,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 +358,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 +446,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 +483,10 @@ "Football" : "Voetballen", "Gaming" : "Gaming", "Drive" : "Rijdend", + "Driving" : "Rijden", "Bicycle" : "Fiets", "Cycle" : "Fietsen", + "Cycling" : "Fietsen", "Biking" : "Fietsen", "Bike" : "Fiets", "Podcast" : "Podcast", @@ -464,10 +499,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 +536,7 @@ "Conference" : "Conferentie", "Pizza" : "Pizza", "Travelling" : "Reizen", + "Trip" : "Reis", "Journey" : "Reis", "Collaborate" : "Samenwerken", "Pair" : "Paar", @@ -508,7 +546,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..31c502e3d454bafb516a1dd475d28adad42459c7 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -228,7 +228,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..400179d75dff82867b64eec45e60794e93f248bb 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -226,7 +226,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..ad244e5419c354a21753a9e742536256d11c02dc 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.", @@ -123,6 +127,7 @@ OC.L10N.register( "{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"], "Automatic" : "Automático", "Automatic ({detected})" : "Automático ({detected})", "New setting was not saved successfully." : "A nova configuração não foi salva.", @@ -223,7 +228,18 @@ OC.L10N.register( "_hour_::_hours_" : ["hora","horas"], "_day_::_days_" : ["dia","dias"], "_week_::_weeks_" : ["semana","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", @@ -355,6 +371,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", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 67e2ce3e193bff9b0e967fdc55dec0114e6ed139..1c64aea99d5d721b667e6661c37b9dfe3675b76a 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.", @@ -121,6 +125,7 @@ "{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"], "Automatic" : "Automático", "Automatic ({detected})" : "Automático ({detected})", "New setting was not saved successfully." : "A nova configuração não foi salva.", @@ -221,7 +226,18 @@ "_hour_::_hours_" : ["hora","horas"], "_day_::_days_" : ["dia","dias"], "_week_::_weeks_" : ["semana","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", @@ -353,6 +369,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", diff --git a/l10n/pt_PT.js b/l10n/pt_PT.js index c63fa34a35e37f27a9dbc04b68f7a6f11e841626..3c6c7e08ad66d110a712fad5dc946195e56102ff 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,6 +81,11 @@ 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", @@ -89,6 +96,7 @@ OC.L10N.register( "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,9 +108,19 @@ 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", @@ -111,9 +129,13 @@ OC.L10N.register( "_hour_::_hours_" : ["hora","horas"], "_day_::_days_" : ["dia","dias"], "_week_::_weeks_" : ["semana","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", @@ -131,28 +153,40 @@ OC.L10N.register( "_year_::_years_" : ["ano","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", "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 +202,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);"); diff --git a/l10n/pt_PT.json b/l10n/pt_PT.json index adf647605c8fb34735a5ae705c02dcfc01248bbd..fb7cade11716da4e467778c36cbd616d4abe0c24 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,6 +79,11 @@ "+ 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", @@ -87,6 +94,7 @@ "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,9 +106,19 @@ "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", @@ -109,9 +127,13 @@ "_hour_::_hours_" : ["hora","horas"], "_day_::_days_" : ["dia","dias"], "_week_::_weeks_" : ["semana","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", @@ -129,28 +151,40 @@ "_year_::_years_" : ["ano","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", "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 +200,7 @@ "Wine tasting" : "Degustação de vinho", "Golf" : "Golfe", "Dinner" : "Jantar", - "Lunch" : "Almoço" + "Lunch" : "Almoço", + "User not found" : "Utilizador não encontrado" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/ro.js b/l10n/ro.js index 1d7657a34e0e1285b3742fd8b3454c8eec5aa540..13771a4a45ef0668f2f4dcbc10a247660adb2284 100644 --- a/l10n/ro.js +++ b/l10n/ro.js @@ -227,6 +227,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 +365,7 @@ 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", + "Movie" : "Film", "Mail" : "Mail", "Sports" : "Sport", "Exercise" : "Exerciții fizice", diff --git a/l10n/ro.json b/l10n/ro.json index 7e0fba3d7f6a0be6f77eca51bb004896fbe48e98..70ddc85f7767fd93b4fa87d750bb711ba467a52a 100644 --- a/l10n/ro.json +++ b/l10n/ro.json @@ -225,6 +225,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 +363,7 @@ "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", + "Movie" : "Film", "Mail" : "Mail", "Sports" : "Sport", "Exercise" : "Exerciții fizice", diff --git a/l10n/ru.js b/l10n/ru.js index 02824dd4088abf58e5ee682b0395b5b75860591f..bb80e712f4ef73d819c1ae3bec57ac6cc957e83b 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -229,6 +229,8 @@ OC.L10N.register( "_day_::_days_" : ["день","дня","дней","дни"], "_week_::_weeks_" : ["неделя","недель","недель","недели"], "Available" : "Доступный", + "Not available" : "Не доступен", + "Checking availability" : "Проверка доступности", "Availability of attendees, resources and rooms" : "Доступность участников, ресурсов и комнат", "{organizer} (organizer)" : "{organizer} (организатор)", "Free" : "Свободен", diff --git a/l10n/ru.json b/l10n/ru.json index 17e1ecee3c33caa2a47f1ea17069810a6e25ce52..56e83031e83029f529e8607a62d4c864cc5a890f 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -227,6 +227,8 @@ "_day_::_days_" : ["день","дня","дней","дни"], "_week_::_weeks_" : ["неделя","недель","недель","недели"], "Available" : "Доступный", + "Not available" : "Не доступен", + "Checking availability" : "Проверка доступности", "Availability of attendees, resources and rooms" : "Доступность участников, ресурсов и комнат", "{organizer} (organizer)" : "{organizer} (организатор)", "Free" : "Свободен", 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..1386f264051ae905d20fe58613eed1883586580e 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -229,6 +229,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..4e9f44ea0c41c79d4a1d984ca1ceabd2bf97f1f8 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -227,6 +227,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..3b44fc93c25d872c389a4b146f06e906933af07e 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,17 @@ 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" : "ได้รับการยืนยันแล้ว", + "Commuting" : "กำลังเดินทาง", "Presentation" : "งานนำเสนอ", "Office" : "สำนักงาน", - "Mail" : "จดหมาย" + "Mail" : "จดหมาย", + "Birthday" : "วันเกิด" }, "nplurals=1; plural=0;"); diff --git a/l10n/th.json b/l10n/th.json index f22461a45dac4b0e1dbd08ef98954e91e0a6b017..46d90785d8b804e7f7a01614c4425ec955a3295d 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,17 @@ "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" : "ได้รับการยืนยันแล้ว", + "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..eeebd0016a35897fa83811e49e946a1d75f4257e 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -171,7 +171,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", @@ -293,7 +293,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", @@ -437,7 +437,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", diff --git a/l10n/tr.json b/l10n/tr.json index 0a0ad742fc29c357e3c897c6aced3ba428f450c8..c45b59a7a4d8eff41a88a0a9ed6f73571b48dfb8 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -169,7 +169,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", @@ -291,7 +291,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", @@ -435,7 +435,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", 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..4a3eda895d19d680713d94649ac56f1f7ff1d614 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.", @@ -229,6 +231,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..0fe94cf56395d8c91748c3529e0a51967203a66a 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.", @@ -227,6 +229,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..85ca6f2cff6daf2465b27d868e3feeb1f1efaf70 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?" : "你真想清空回收站吗?", @@ -216,6 +219,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 +228,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..f9e5e7b25b0f1f4a9d72eec2017cb23359162d51 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?" : "你真想清空回收站吗?", @@ -214,6 +217,8 @@ "_day_::_days_" : ["天"], "_week_::_weeks_" : ["周"], "Available" : "可用", + "Not available" : "不可用", + "Invitation sent" : "已发送邀请", "Availability of attendees, resources and rooms" : "与会者,资源和会议室的可用性", "{organizer} (organizer)" : "{organizer} (organizer) ", "Free" : "空闲", @@ -221,6 +226,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..421cff55b13fece5cc9b09d945d49ffd7228847e 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -228,7 +228,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..e95cbf387d25ce6567c77e8d9f6f909f744a4597 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -226,7 +226,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/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..c05163c2063c4c3f15b74e3cd04aa9e6b3ecabc3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,21 +1,21 @@ { "name": "calendar", - "version": "3.2.0", + "version": "3.3.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "calendar", - "version": "3.2.0", + "version": "3.3.2", "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/calendar-availability-vue": "^0.3.1", @@ -26,14 +26,14 @@ "@nextcloud/initial-state": "^1.2.1", "@nextcloud/l10n": "^1.4.1", "@nextcloud/logger": "^2.1.0", - "@nextcloud/moment": "^1.1.1", + "@nextcloud/moment": "^1.2.0", "@nextcloud/router": "^2.0.0", - "@nextcloud/vue": "^4.4.0", + "@nextcloud/vue": "^5.1.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.0", "css-color-names": "^1.0.1", "debounce": "^1.2.1", "jstz": "^2.1.1", @@ -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": "^7.0.2", "@nextcloud/stylelint-config": "^2.1.2", - "@nextcloud/webpack-vue-config": "^4.3.2", + "@nextcloud/webpack-vue-config": "^5.0.0", "@vue/test-utils": "^1.3.0", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^27.4.4", @@ -153,9 +153,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,7 +168,7 @@ }, "peerDependencies": { "@babel/core": ">=7.11.0", - "eslint": ">=7.5.0" + "eslint": "^7.5.0 || ^8.0.0" } }, "node_modules/@babel/generator": { @@ -1671,55 +1671,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.20.1", + "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.20.1.tgz", + "integrity": "sha512-oeJK41dcdqkvdZy/HctKklJNkt/jh+av3PZARrZEl+fs/8HaHeeYoAvEwOV0u5I6bArTF17JEsTZMY359e/nfQ==", "dev": true, "peer": true, "dependencies": { - "comment-parser": "1.2.4", + "comment-parser": "1.3.0", "esquery": "^1.4.0", - "jsdoc-type-pratt-parser": "2.0.0" + "jsdoc-type-pratt-parser": "~2.2.3" }, "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_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 +1729,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 +1756,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", @@ -2569,6 +2601,13 @@ "node": ">=8" } }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "dev": true, + "peer": true + }, "node_modules/@nextcloud/auth": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/@nextcloud/auth/-/auth-1.3.0.tgz", @@ -2744,9 +2783,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": "7.0.2", + "resolved": "https://registry.npmjs.org/@nextcloud/eslint-config/-/eslint-config-7.0.2.tgz", + "integrity": "sha512-QoKwZxcJwk5YXDhczRVuGFaIVv/GK6Xi476WTUH9p4kD/Xu/EnKx/VlOlXGwDuML1SDr8x35vxq0Ask3DMzVQQ==", "dev": true, "engines": { "node": "^14.0.0", @@ -2754,15 +2793,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": "^37.6.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" } }, @@ -2850,52 +2889,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 +2932,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.1.1", + "resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-5.1.1.tgz", + "integrity": "sha512-BKJTCqlxRxFvUlc1H95vIoUFXUb6Bcub/VGlIccDg0upm/IKFkyDbuhj7gBUDz4j/uqmKAKffzPO2Q9JFFQ8wg==", "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 +2947,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", @@ -2955,16 +2959,16 @@ "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 +3132,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,6 +3172,26 @@ "node": ">=12.20" } }, + "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/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": { + "@babel/polyfill": "^7.12.1", + "@babel/runtime": "^7.16.3", + "vue-virtual-scroller": "^1.0.10" + }, + "peerDependencies": { + "vue": ">2.0.0" + } + }, "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", @@ -3238,15 +3270,10 @@ "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.0.0", + "resolved": "https://registry.npmjs.org/@nextcloud/webpack-vue-config/-/webpack-vue-config-5.0.0.tgz", + "integrity": "sha512-NTmRxqcJ6FBFHrpIpDTvqhvH8DDyI8ZUVraCOsg5TVe0saYHl5HLABEn4UZqx0/heeFqI2Vr+mCM66bz2NsuKA==", "dev": true, "engines": { "node": "^14.0.0", @@ -3256,7 +3283,7 @@ "@babel/core": "^7.16.7", "babel-loader": "^8.2.3", "css-loader": "^6.5.1", - "eslint": "^7.22.0", + "eslint": "^8.6.0", "eslint-webpack-plugin": "^3.1.1", "node-polyfill-webpack-plugin": "1.1.4", "sass": "^1.47.0", @@ -3499,9 +3526,9 @@ } }, "node_modules/@types/http-proxy": { - "version": "1.17.8", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.8.tgz", - "integrity": "sha512-5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA==", + "version": "1.17.9", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", + "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", "dev": true, "peer": true, "dependencies": { @@ -3675,9 +3702,9 @@ } }, "node_modules/@types/ws": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.2.2.tgz", - "integrity": "sha512-NOn5eIcgWLOo6qW8AcuLZ7G8PycXu0xTxxkS6Q18VWFxgPUSOwV0pBj2a/4viNZVu25i7RIB7GttdkAIUUXOOg==", + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", + "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", "dev": true, "peer": true, "dependencies": { @@ -3954,14 +3981,14 @@ "dev": true }, "node_modules/accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, "peer": true, "dependencies": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" + "mime-types": "~2.1.34", + "negotiator": "0.6.3" }, "engines": { "node": ">= 0.6" @@ -4047,20 +4074,6 @@ "node": ">= 6.0.0" } }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "peer": true, - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", @@ -4126,16 +4139,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", @@ -4262,17 +4265,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" @@ -4301,15 +4304,15 @@ } }, "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" @@ -4388,16 +4391,6 @@ "node": ">=8" } }, - "node_modules/async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", - "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", @@ -5040,31 +5033,34 @@ "peer": true }, "node_modules/body-parser": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.1.tgz", - "integrity": "sha512-8ljfQi5eBk8EJfECMrgqNGWPEY5jWP+1IzkzkGdFFEwFQZZyaZ21UqdaHktgiMlH0xLHqIFtE/u2OYE5dOtViA==", + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", "dev": true, "peer": true, "dependencies": { - "bytes": "3.1.1", + "bytes": "3.1.2", "content-type": "~1.0.4", "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.8.1", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.9.6", - "raw-body": "2.4.2", - "type-is": "~1.6.18" + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" }, "engines": { - "node": ">= 0.8" + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, "node_modules/body-parser/node_modules/bytes": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.1.tgz", - "integrity": "sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, "peer": true, "engines": { @@ -5081,6 +5077,16 @@ "ms": "2.0.0" } }, + "node_modules/body-parser/node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/body-parser/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", @@ -5088,19 +5094,17 @@ "dev": true, "peer": true }, - "node_modules/bonjour": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "node_modules/bonjour-service": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.12.tgz", + "integrity": "sha512-pMmguXYCu63Ug37DluMKEHdxc+aaIf/ay4YbF8Gxtba+9d3u+rmEWy61VK3Z3hp8Rskok3BunHYnG0dUHAsblw==", "dev": true, "peer": true, "dependencies": { - "array-flatten": "^2.1.0", - "deep-equal": "^1.0.1", + "array-flatten": "^2.1.2", "dns-equal": "^1.0.0", - "dns-txt": "^2.0.2", - "multicast-dns": "^6.0.1", - "multicast-dns-service-types": "^1.1.0" + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.4" } }, "node_modules/brace-expansion": { @@ -5307,13 +5311,6 @@ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" }, - "node_modules/buffer-indexof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", - "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", - "dev": true, - "peer": true - }, "node_modules/buffer-xor": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", @@ -5453,10 +5450,16 @@ } }, "node_modules/chokidar": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", - "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "devOptional": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", @@ -5675,16 +5678,6 @@ "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", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "peer": true, - "engines": { - "node": ">=6" - } - }, "node_modules/clipboard": { "version": "2.0.8", "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.8.tgz", @@ -6060,9 +6053,9 @@ } }, "node_modules/cookie": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", - "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==", + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", "dev": true, "peer": true, "engines": { @@ -6086,9 +6079,9 @@ } }, "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.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.22.0.tgz", + "integrity": "sha512-8h9jBweRjMiY+ORO7bdWSeWfHhLPO7whobj7Z2Bl0IDo00C228EdGgH7FE4jGumbEjzcFfkfW8bXgdkEDhnwHQ==", "hasInstallScript": true, "funding": { "type": "opencollective", @@ -6610,24 +6603,6 @@ "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", "dev": true }, - "node_modules/deep-equal": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", - "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", - "dev": true, - "peer": true, - "dependencies": { - "is-arguments": "^1.0.4", - "is-date-object": "^1.0.1", - "is-regex": "^1.0.4", - "object-is": "^1.0.1", - "object-keys": "^1.1.1", - "regexp.prototype.flags": "^1.2.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/deep-is": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", @@ -6690,39 +6665,6 @@ "node": ">=0.10.0" } }, - "node_modules/del": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", - "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==", - "dev": true, - "peer": true, - "dependencies": { - "globby": "^11.0.1", - "graceful-fs": "^4.2.4", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.2", - "p-map": "^4.0.0", - "rimraf": "^3.0.2", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/del/node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "peer": true, - "engines": { - "node": ">=8" - } - }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -6759,11 +6701,15 @@ } }, "node_modules/destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true, - "peer": true + "peer": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } }, "node_modules/detect-newline": { "version": "3.1.0", @@ -6840,24 +6786,16 @@ "peer": true }, "node_modules/dns-packet": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", - "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", - "dev": true, - "peer": true, - "dependencies": { - "ip": "^1.1.0", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/dns-txt": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", - "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.3.1.tgz", + "integrity": "sha512-spBwIj0TK0Ey3666GwIdWVfUpLyubpU53BTCu8iPn4r4oXd9O14Hjg3EHw3ts2oed77/SeckunUYCyRlSngqHw==", "dev": true, "peer": true, "dependencies": { - "buffer-indexof": "^1.0.0" + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" } }, "node_modules/doctrine": { @@ -7114,19 +7052,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 +7279,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 +7325,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 +7352,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==", - "dev": true, - "peer": true, + "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 +7403,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 +7487,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 +7537,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,55 +7544,18 @@ "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": "37.9.7", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.9.7.tgz", + "integrity": "sha512-8alON8yYcStY94o0HycU2zkLKQdcS+qhhOUNQpfONHHwvI99afbmfpYuPqf6PbLz5pLZldG3Te5I0RbAiTN42g==", "dev": true, "peer": true, "dependencies": { - "@es-joy/jsdoccomment": "0.12.0", + "@es-joy/jsdoccomment": "~0.20.1", "comment-parser": "1.3.0", "debug": "^4.3.3", "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", "spdx-expression-parse": "^3.0.1" @@ -7705,6 +7616,50 @@ "dev": true, "peer": true }, + "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": "^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": ">=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", @@ -7726,48 +7681,113 @@ "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": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "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": ">=8.10" + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" }, "peerDependencies": { - "eslint": "^6.2.0 || ^7.0.0" + "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", @@ -7924,16 +7944,6 @@ "node": ">=8.0" } }, - "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==", - "dev": true, - "peer": true, - "dependencies": { - "@babel/highlight": "^7.10.4" - } - }, "node_modules/eslint/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -7950,6 +7960,13 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, + "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 + }, "node_modules/eslint/node_modules/chalk": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", @@ -7980,59 +7997,119 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/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==", + "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": { - "type-fest": "^0.20.2" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "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": { + "eslint-visitor-keys": "^2.0.0" + }, "engines": { - "node": ">=8" + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" } }, - "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==", + "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, + "engines": { + "node": ">=10" + } + }, + "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, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "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, + "engines": { + "node": ">=4.0" + } + }, + "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": { - "yallist": "^4.0.0" + "is-glob": "^4.0.3" }, "engines": { - "node": ">=10" + "node": ">=10.13.0" } }, - "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/globals": { + "version": "13.9.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.9.0.tgz", + "integrity": "sha512-74/FduwI/JaIrr1H8e71UbDE+5x7pIPs1C2rrwC52SszOo043CsWOZEMW7o2Y58xwm9b+0RBKDxY5n2sUpEFxA==", "dev": true, "peer": true, "dependencies": { - "lru-cache": "^6.0.0" + "type-fest": "^0.20.2" }, - "bin": { - "semver": "bin/semver.js" + "engines": { + "node": ">=8" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "peer": true, "engines": { - "node": ">=10" + "node": ">=8" + } + }, + "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": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, "node_modules/eslint/node_modules/supports-color": { @@ -8061,36 +8138,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==", - "dev": true, - "peer": true - }, "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==", + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.1.tgz", + "integrity": "sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==", "dev": true, "peer": true, "dependencies": { - "acorn": "^7.4.0", + "acorn": "^8.7.0", "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^1.3.0" + "eslint-visitor-keys": "^3.3.0" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "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, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "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": { @@ -8356,39 +8439,40 @@ } }, "node_modules/express": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.17.2.tgz", - "integrity": "sha512-oxlxJxcQlYwqPWKVJJtvQiwHgosH/LrLSPA+H4UxpyvSS6jC5aH+5MoHFM+KABgTOt0APue4w66Ha8jCUo9QGg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", "dev": true, "peer": true, "dependencies": { - "accepts": "~1.3.7", + "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.19.1", + "body-parser": "1.20.0", "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.4.1", + "cookie": "0.5.0", "cookie-signature": "1.0.6", "debug": "2.6.9", - "depd": "~1.1.2", + "depd": "2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", - "finalhandler": "~1.1.2", + "finalhandler": "1.2.0", "fresh": "0.5.2", + "http-errors": "2.0.0", "merge-descriptors": "1.0.1", "methods": "~1.1.2", - "on-finished": "~2.3.0", + "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", - "qs": "6.9.6", + "qs": "6.10.3", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", - "send": "0.17.2", - "serve-static": "1.14.2", + "send": "0.18.0", + "serve-static": "1.15.0", "setprototypeof": "1.2.0", - "statuses": "~1.5.0", + "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" @@ -8400,7 +8484,7 @@ "node_modules/express/node_modules/array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "dev": true, "peer": true }, @@ -8414,6 +8498,16 @@ "ms": "2.0.0" } }, + "node_modules/express/node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/express/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", @@ -8442,6 +8536,16 @@ ], "peer": true }, + "node_modules/express/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/extend-shallow": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", @@ -8678,18 +8782,18 @@ } }, "node_modules/finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dev": true, "peer": true, "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", - "on-finished": "~2.3.0", + "on-finished": "2.4.1", "parseurl": "~1.3.3", - "statuses": "~1.5.0", + "statuses": "2.0.1", "unpipe": "~1.0.0" }, "engines": { @@ -8713,6 +8817,16 @@ "dev": true, "peer": true }, + "node_modules/finalhandler/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/find-babel-config": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/find-babel-config/-/find-babel-config-1.2.0.tgz", @@ -9183,16 +9297,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", @@ -9449,13 +9553,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", @@ -9558,20 +9655,40 @@ "peer": true }, "node_modules/http-errors": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", - "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, "peer": true, "dependencies": { - "depd": "~1.1.2", + "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", + "statuses": "2.0.1", "toidentifier": "1.0.1" }, "engines": { - "node": ">= 0.6" + "node": ">= 0.8" + } + }, + "node_modules/http-errors/node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-errors/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.8" } }, "node_modules/http-parser-js": { @@ -9611,13 +9728,13 @@ } }, "node_modules/http-proxy-middleware": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.1.tgz", - "integrity": "sha512-cfaXRVoZxSed/BmkA7SwBVNI9Kj7HFltaE5rqYOub5kWzWZ+gofV2koVN1j2rMW7pEfSSlCHGJ31xmuyFyfLOg==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", "dev": true, "peer": true, "dependencies": { - "@types/http-proxy": "^1.17.5", + "@types/http-proxy": "^1.17.8", "http-proxy": "^1.18.1", "is-glob": "^4.0.1", "is-plain-obj": "^3.0.0", @@ -9625,6 +9742,14 @@ }, "engines": { "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } } }, "node_modules/http-proxy-middleware/node_modules/braces": { @@ -9677,14 +9802,14 @@ } }, "node_modules/http-proxy-middleware/node_modules/micromatch": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", - "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "peer": true, "dependencies": { - "braces": "^3.0.1", - "picomatch": "^2.2.3" + "braces": "^3.0.2", + "picomatch": "^2.3.1" }, "engines": { "node": ">=8.6" @@ -9788,9 +9913,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": { @@ -9940,13 +10065,6 @@ "loose-envify": "^1.0.0" } }, - "node_modules/ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", - "dev": true, - "peer": true - }, "node_modules/ipaddr.js": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", @@ -10055,9 +10173,9 @@ } }, "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==", "dependencies": { "has": "^1.0.3" }, @@ -10190,9 +10308,9 @@ } }, "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==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "devOptional": true, "dependencies": { "is-extglob": "^2.1.1" @@ -10254,26 +10372,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", - "dev": true, - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "peer": true, - "engines": { - "node": ">=8" - } - }, "node_modules/is-plain-obj": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", @@ -12331,9 +12429,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": "2.2.5", + "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-2.2.5.tgz", + "integrity": "sha512-2a6eRxSxp1BW040hFvaJxhsCMI9lT8QB8t14t+NY5tC5rckIR0U9cr2tjOeaFirmEOy6MHvmJnY7zTBHq431Lw==", "dev": true, "peer": true, "engines": { @@ -12536,42 +12634,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", @@ -12788,9 +12850,9 @@ } }, "node_modules/memfs": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.1.tgz", - "integrity": "sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.3.tgz", + "integrity": "sha512-eivjfi7Ahr6eQTn44nvTnR60e4a1Fs1Via2kCR5lHo/kyNoiMWaXCNJ/GpSd0ilXas2JSOl9B5FTIhflXu0hlg==", "dev": true, "peer": true, "dependencies": { @@ -13159,19 +13221,19 @@ } }, "node_modules/mime-db": { - "version": "1.48.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.48.0.tgz", - "integrity": "sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ==", + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "engines": { "node": ">= 0.6" } }, "node_modules/mime-types": { - "version": "2.1.31", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.31.tgz", - "integrity": "sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg==", + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dependencies": { - "mime-db": "1.48.0" + "mime-db": "1.52.0" }, "engines": { "node": ">= 0.6" @@ -13222,9 +13284,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", @@ -13299,9 +13361,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": "*" } @@ -13312,26 +13374,19 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/multicast-dns": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", - "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "dev": true, "peer": true, "dependencies": { - "dns-packet": "^1.3.1", + "dns-packet": "^5.2.2", "thunky": "^1.0.2" }, "bin": { "multicast-dns": "cli.js" } }, - "node_modules/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 - }, "node_modules/nanoid": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz", @@ -13416,9 +13471,9 @@ } }, "node_modules/negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "dev": true, "peer": true, "engines": { @@ -13451,13 +13506,13 @@ } }, "node_modules/node-forge": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", - "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", "dev": true, "peer": true, "engines": { - "node": ">= 6.0.0" + "node": ">= 6.13.0" } }, "node_modules/node-gettext": { @@ -13533,29 +13588,6 @@ "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", @@ -13747,15 +13779,15 @@ } }, "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" @@ -13772,9 +13804,9 @@ "peer": true }, "node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, "peer": true, "dependencies": { @@ -13910,26 +13942,10 @@ "node": ">=6" } }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "peer": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-retry": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.1.tgz", - "integrity": "sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==", + "node_modules/p-retry": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.1.tgz", + "integrity": "sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==", "dev": true, "peer": true, "dependencies": { @@ -13984,20 +14000,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", @@ -14068,29 +14070,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", @@ -14114,9 +14093,9 @@ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" }, "node_modules/picomatch": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", - "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "devOptional": true, "engines": { "node": ">=8.6" @@ -14142,158 +14121,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", @@ -14304,31 +14131,6 @@ "url": "https://opencollective.com/popperjs" } }, - "node_modules/portfinder": { - "version": "1.0.28", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", - "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", - "dev": true, - "peer": true, - "dependencies": { - "async": "^2.6.2", - "debug": "^3.1.1", - "mkdirp": "^0.5.5" - }, - "engines": { - "node": ">= 0.12.0" - } - }, - "node_modules/portfinder/node_modules/debug": { - "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.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", @@ -14555,16 +14357,6 @@ "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" - } - }, "node_modules/prompts": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", @@ -14651,11 +14443,14 @@ } }, "node_modules/qs": { - "version": "6.9.6", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz", - "integrity": "sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ==", + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", "dev": true, "peer": true, + "dependencies": { + "side-channel": "^1.0.4" + }, "engines": { "node": ">=0.6" }, @@ -14746,14 +14541,14 @@ } }, "node_modules/raw-body": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.2.tgz", - "integrity": "sha512-RPMAFUJP19WIet/99ngh6Iv8fzAbqum4Li7AD6DtGaW2RpMB/11xDoalPiJMTbu6I3hkbMVkATvZrqb9EEqeeQ==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dev": true, "peer": true, "dependencies": { - "bytes": "3.1.1", - "http-errors": "1.8.1", + "bytes": "3.1.2", + "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" }, @@ -14762,9 +14557,9 @@ } }, "node_modules/raw-body/node_modules/bytes": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.1.tgz", - "integrity": "sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, "peer": true, "engines": { @@ -14804,139 +14599,47 @@ "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=", + "node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, - "peer": true, "dependencies": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">=4" + "node": ">= 6" } }, - "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, + "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": { - "find-up": "^2.0.0", - "read-pkg": "^3.0.0" + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" }, "engines": { - "node": ">=4" + "node": ">=0.10" } }, - "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, + "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": { - "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, - "peer": true, - "dependencies": { - "p-limit": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "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/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "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" + "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": { @@ -15059,23 +14762,6 @@ "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", "dev": true }, - "node_modules/regexp.prototype.flags": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", - "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", - "dev": true, - "peer": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/regexpp": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", @@ -15533,13 +15219,16 @@ "peer": true }, "node_modules/selfsigned": { - "version": "1.10.11", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz", - "integrity": "sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.0.1.tgz", + "integrity": "sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==", "dev": true, "peer": true, "dependencies": { - "node-forge": "^0.10.0" + "node-forge": "^1" + }, + "engines": { + "node": ">=10" } }, "node_modules/semver": { @@ -15551,25 +15240,25 @@ } }, "node_modules/send": { - "version": "0.17.2", - "resolved": "https://registry.npmjs.org/send/-/send-0.17.2.tgz", - "integrity": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==", + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "dev": true, "peer": true, "dependencies": { "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", + "depd": "2.0.0", + "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", - "http-errors": "1.8.1", + "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", - "on-finished": "~2.3.0", + "on-finished": "2.4.1", "range-parser": "~1.2.1", - "statuses": "~1.5.0" + "statuses": "2.0.1" }, "engines": { "node": ">= 0.8.0" @@ -15592,6 +15281,16 @@ "dev": true, "peer": true }, + "node_modules/send/node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/send/node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", @@ -15599,6 +15298,16 @@ "dev": true, "peer": true }, + "node_modules/send/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/serialize-javascript": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", @@ -15675,16 +15384,16 @@ "peer": true }, "node_modules/serve-static": { - "version": "1.14.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.2.tgz", - "integrity": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "dev": true, "peer": true, "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.17.2" + "send": "0.18.0" }, "engines": { "node": ">= 0.8.0" @@ -16781,16 +16490,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", @@ -17372,15 +17071,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" } }, @@ -17876,55 +17575,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/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/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/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": { - "acorn": "^7.1.1", - "acorn-jsx": "^5.2.0", - "eslint-visitor-keys": "^1.1.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=6.0.0" + "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", @@ -18290,14 +18034,14 @@ } }, "node_modules/webpack-dev-middleware": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.0.tgz", - "integrity": "sha512-MouJz+rXAm9B1OTOYaJnn6rtD/lWZPy2ufQCH3BPs8Rloh/Du6Jze4p7AeLYHkVi0giJnYLaSGDC7S+GM9arhg==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.2.tgz", + "integrity": "sha512-PKp4aIEDC2FFJgNMRjdXhpy5ad7xeTqHb+/90Vr3yMymzzDxOVZw3Paj+vqKEMDXfGjuIvh8y99USoBOHZJcEg==", "dev": true, "peer": true, "dependencies": { "colorette": "^2.0.10", - "memfs": "^3.2.2", + "memfs": "^3.4.3", "mime-types": "^2.1.31", "range-parser": "^1.2.1", "schema-utils": "^4.0.0" @@ -18314,9 +18058,9 @@ } }, "node_modules/webpack-dev-middleware/node_modules/ajv": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.8.2.tgz", - "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", "dev": true, "peer": true, "dependencies": { @@ -18371,41 +18115,40 @@ } }, "node_modules/webpack-dev-server": { - "version": "4.7.2", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.7.2.tgz", - "integrity": "sha512-s6yEOSfPpB6g1T2+C5ZOUt5cQOMhjI98IVmmvMNb5cdiqHoxSUfACISHqU/wZy+q4ar/A9jW0pbNj7sa50XRVA==", + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.9.0.tgz", + "integrity": "sha512-+Nlb39iQSOSsFv0lWUuUTim3jDQO8nhK3E68f//J2r5rIcp4lULHXz2oZ0UVdEeWXEh5lSzYUlzarZhDAeAVQw==", "dev": true, "peer": true, "dependencies": { "@types/bonjour": "^3.5.9", "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", "@types/serve-index": "^1.9.1", "@types/sockjs": "^0.3.33", - "@types/ws": "^8.2.2", + "@types/ws": "^8.5.1", "ansi-html-community": "^0.0.8", - "bonjour": "^3.5.0", - "chokidar": "^3.5.2", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", "colorette": "^2.0.10", "compression": "^1.7.4", "connect-history-api-fallback": "^1.6.0", "default-gateway": "^6.0.3", - "del": "^6.0.0", - "express": "^4.17.1", + "express": "^4.17.3", "graceful-fs": "^4.2.6", "html-entities": "^2.3.2", - "http-proxy-middleware": "^2.0.0", + "http-proxy-middleware": "^2.0.3", "ipaddr.js": "^2.0.1", "open": "^8.0.9", "p-retry": "^4.5.0", - "portfinder": "^1.0.28", + "rimraf": "^3.0.2", "schema-utils": "^4.0.0", - "selfsigned": "^1.10.11", + "selfsigned": "^2.0.1", "serve-index": "^1.9.1", "sockjs": "^0.3.21", "spdy": "^4.0.2", - "strip-ansi": "^7.0.0", - "webpack-dev-middleware": "^5.3.0", - "ws": "^8.1.0" + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.4.2" }, "bin": { "webpack-dev-server": "bin/webpack-dev-server.js" @@ -18452,19 +18195,6 @@ "ajv": "^8.8.2" } }, - "node_modules/webpack-dev-server/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", @@ -18492,26 +18222,10 @@ "url": "https://opencollective.com/webpack" } }, - "node_modules/webpack-dev-server/node_modules/strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "dev": true, - "peer": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, "node_modules/webpack-dev-server/node_modules/ws": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.4.0.tgz", - "integrity": "sha512-IHVsKe2pjajSUIl4KYMQOdlyliovpEPquKkqbwswulszzI7r0SfQrxnXdWAEqOlDCLrVSJzo+O1hAwdog2sKSQ==", + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.6.0.tgz", + "integrity": "sha512-AzmM3aH3gk0aX7/rZLYvjdvZooofDu3fFOzGqcSnQ1tOcTWwhM/o+q++E8mAyVVIyUdajrkzWUGftaVSDLn1bw==", "dev": true, "peer": true, "engines": { @@ -18933,9 +18647,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": { @@ -19965,54 +19679,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.20.1", + "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.20.1.tgz", + "integrity": "sha512-oeJK41dcdqkvdZy/HctKklJNkt/jh+av3PZARrZEl+fs/8HaHeeYoAvEwOV0u5I6bArTF17JEsTZMY359e/nfQ==", "dev": true, "peer": true, "requires": { - "comment-parser": "1.2.4", + "comment-parser": "1.3.0", "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": "~2.2.3" } }, "@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 +19745,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", @@ -20659,6 +20400,13 @@ } } }, + "@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "dev": true, + "peer": true + }, "@nextcloud/auth": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/@nextcloud/auth/-/auth-1.3.0.tgz", @@ -20800,9 +20548,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": "7.0.2", + "resolved": "https://registry.npmjs.org/@nextcloud/eslint-config/-/eslint-config-7.0.2.tgz", + "integrity": "sha512-QoKwZxcJwk5YXDhczRVuGFaIVv/GK6Xi476WTUH9p4kD/Xu/EnKx/VlOlXGwDuML1SDr8x35vxq0Ask3DMzVQQ==", "dev": true, "requires": {} }, @@ -20877,49 +20625,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 +20660,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.1.1", + "resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-5.1.1.tgz", + "integrity": "sha512-BKJTCqlxRxFvUlc1H95vIoUFXUb6Bcub/VGlIccDg0upm/IKFkyDbuhj7gBUDz4j/uqmKAKffzPO2Q9JFFQ8wg==", "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 +20675,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", @@ -20973,21 +20687,29 @@ "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": { - "ical.js": "^1.4.0", - "uuid": "^8.3.2" + "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": { + "regenerator-runtime": "^0.13.4" } }, "ansi-regex": { @@ -21000,6 +20722,21 @@ "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.0.tgz", "integrity": "sha512-oGu2QekBMXgyQNWPDRQ001bjvDnZe4/zBTz37TMbiKz1NbNiyiH5hRkobe7npRN6GfbGbxMYFck/vQ1r9c1VMA==" }, + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" + }, + "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": { + "@babel/polyfill": "^7.12.1", + "@babel/runtime": "^7.16.3", + "vue-virtual-scroller": "^1.0.10" + } + }, "loader-utils": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", @@ -21045,11 +20782,6 @@ "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,9 +20906,9 @@ } }, "@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.0.0", + "resolved": "https://registry.npmjs.org/@nextcloud/webpack-vue-config/-/webpack-vue-config-5.0.0.tgz", + "integrity": "sha512-NTmRxqcJ6FBFHrpIpDTvqhvH8DDyI8ZUVraCOsg5TVe0saYHl5HLABEn4UZqx0/heeFqI2Vr+mCM66bz2NsuKA==", "dev": true, "requires": {} }, @@ -21396,9 +21128,9 @@ } }, "@types/http-proxy": { - "version": "1.17.8", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.8.tgz", - "integrity": "sha512-5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA==", + "version": "1.17.9", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", + "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", "dev": true, "peer": true, "requires": { @@ -21572,9 +21304,9 @@ } }, "@types/ws": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.2.2.tgz", - "integrity": "sha512-NOn5eIcgWLOo6qW8AcuLZ7G8PycXu0xTxxkS6Q18VWFxgPUSOwV0pBj2a/4viNZVu25i7RIB7GttdkAIUUXOOg==", + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", + "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", "dev": true, "peer": true, "requires": { @@ -21831,14 +21563,14 @@ "dev": true }, "accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, "peer": true, "requires": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" + "mime-types": "~2.1.34", + "negotiator": "0.6.3" } }, "acorn": { @@ -21903,17 +21635,6 @@ "debug": "4" } }, - "aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "peer": true, - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, "ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", @@ -21963,13 +21684,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", @@ -22070,17 +21784,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": { @@ -22097,15 +21811,15 @@ "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": { @@ -22168,16 +21882,6 @@ "dev": true, "peer": true }, - "async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", - "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", @@ -22701,28 +22405,30 @@ "peer": true }, "body-parser": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.1.tgz", - "integrity": "sha512-8ljfQi5eBk8EJfECMrgqNGWPEY5jWP+1IzkzkGdFFEwFQZZyaZ21UqdaHktgiMlH0xLHqIFtE/u2OYE5dOtViA==", + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", "dev": true, "peer": true, "requires": { - "bytes": "3.1.1", + "bytes": "3.1.2", "content-type": "~1.0.4", "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.8.1", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.9.6", - "raw-body": "2.4.2", - "type-is": "~1.6.18" + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" }, "dependencies": { "bytes": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.1.tgz", - "integrity": "sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, "peer": true }, @@ -22736,6 +22442,13 @@ "ms": "2.0.0" } }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "peer": true + }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", @@ -22745,19 +22458,17 @@ } } }, - "bonjour": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "bonjour-service": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.12.tgz", + "integrity": "sha512-pMmguXYCu63Ug37DluMKEHdxc+aaIf/ay4YbF8Gxtba+9d3u+rmEWy61VK3Z3hp8Rskok3BunHYnG0dUHAsblw==", "dev": true, "peer": true, "requires": { - "array-flatten": "^2.1.0", - "deep-equal": "^1.0.1", + "array-flatten": "^2.1.2", "dns-equal": "^1.0.0", - "dns-txt": "^2.0.2", - "multicast-dns": "^6.0.1", - "multicast-dns-service-types": "^1.1.0" + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.4" } }, "brace-expansion": { @@ -22925,13 +22636,6 @@ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" }, - "buffer-indexof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", - "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", - "dev": true, - "peer": true - }, "buffer-xor": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", @@ -23036,9 +22740,9 @@ "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=" }, "chokidar": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", - "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "devOptional": true, "requires": { "anymatch": "~3.1.2", @@ -23214,13 +22918,6 @@ } } }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "peer": true - }, "clipboard": { "version": "2.0.8", "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.8.tgz", @@ -23532,9 +23229,9 @@ } }, "cookie": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", - "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==", + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", "dev": true, "peer": true }, @@ -23552,9 +23249,9 @@ "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.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.22.0.tgz", + "integrity": "sha512-8h9jBweRjMiY+ORO7bdWSeWfHhLPO7whobj7Z2Bl0IDo00C228EdGgH7FE4jGumbEjzcFfkfW8bXgdkEDhnwHQ==" }, "core-js-compat": { "version": "3.15.1", @@ -23961,21 +23658,6 @@ "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", "dev": true }, - "deep-equal": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", - "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", - "dev": true, - "peer": true, - "requires": { - "is-arguments": "^1.0.4", - "is-date-object": "^1.0.1", - "is-regex": "^1.0.4", - "object-is": "^1.0.1", - "object-keys": "^1.1.1", - "regexp.prototype.flags": "^1.2.0" - } - }, "deep-is": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", @@ -24023,32 +23705,6 @@ "isobject": "^3.0.1" } }, - "del": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", - "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==", - "dev": true, - "peer": true, - "requires": { - "globby": "^11.0.1", - "graceful-fs": "^4.2.4", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.2", - "p-map": "^4.0.0", - "rimraf": "^3.0.2", - "slash": "^3.0.0" - }, - "dependencies": { - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "peer": true - } - } - }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -24079,9 +23735,9 @@ } }, "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true, "peer": true }, @@ -24152,24 +23808,13 @@ "peer": true }, "dns-packet": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", - "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", - "dev": true, - "peer": true, - "requires": { - "ip": "^1.1.0", - "safe-buffer": "^5.0.1" - } - }, - "dns-txt": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", - "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.3.1.tgz", + "integrity": "sha512-spBwIj0TK0Ey3666GwIdWVfUpLyubpU53BTCu8iPn4r4oXd9O14Hjg3EHw3ts2oed77/SeckunUYCyRlSngqHw==", "dev": true, "peer": true, "requires": { - "buffer-indexof": "^1.0.0" + "@leichtgewicht/ip-codec": "^2.0.1" } }, "doctrine": { @@ -24374,16 +24019,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 +24184,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 +24237,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 +24262,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 +24333,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 +24359,49 @@ "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==", + "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": "^2.6.9", - "resolve": "^1.13.1" + "debug": "^3.2.7", + "resolve": "^1.20.0" }, "dependencies": { "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, "requires": { - "ms": "2.0.0" + "ms": "^2.1.1" } - }, - "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": "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": { "debug": "^3.2.7", - "pkg-dir": "^2.0.0" + "find-up": "^2.1.0" }, "dependencies": { "debug": { @@ -24755,63 +24413,6 @@ "requires": { "ms": "^2.1.1" } - } - } - }, - "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==", - "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" - }, - "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" - } }, "find-up": { "version": "2.1.0", @@ -24834,13 +24435,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,19 +24464,80 @@ } } }, + "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": "37.9.7", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.9.7.tgz", + "integrity": "sha512-8alON8yYcStY94o0HycU2zkLKQdcS+qhhOUNQpfONHHwvI99afbmfpYuPqf6PbLz5pLZldG3Te5I0RbAiTN42g==", "dev": true, "peer": true, "requires": { - "@es-joy/jsdoccomment": "0.12.0", + "@es-joy/jsdoccomment": "~0.20.1", "comment-parser": "1.3.0", "debug": "^4.3.3", "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", "spdx-expression-parse": "^3.0.1" @@ -24924,6 +24579,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,36 +24622,79 @@ "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, + "requires": { + "eslint-utils": "^2.0.0", + "regexpp": "^3.0.0" + } + } + } + }, + "eslint-plugin-promise": { + "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": "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": "^3.0.0", + "natural-compare": "^1.4.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-plugin-promise": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-5.1.0.tgz", - "integrity": "sha512-NGmI6BH5L12pl7ScQHbg7tvtk4wPxxj8yPHH47NvSmMtFneC077PSeY3huFj06ZWZvtbfxSPt3RuOQD5XcR4ng==", - "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==", - "dev": true, - "peer": true, - "requires": { - "eslint-utils": "^2.1.0", - "natural-compare": "^1.4.0", - "semver": "^6.3.0", - "vue-eslint-parser": "^7.10.0" - } - }, "eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", @@ -25082,21 +24808,28 @@ } }, "espree": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", - "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "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": { - "acorn": "^7.4.0", + "acorn": "^8.7.0", "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^1.3.0" + "eslint-visitor-keys": "^3.3.0" }, "dependencies": { + "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 + }, "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 } @@ -25309,39 +25042,40 @@ } }, "express": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.17.2.tgz", - "integrity": "sha512-oxlxJxcQlYwqPWKVJJtvQiwHgosH/LrLSPA+H4UxpyvSS6jC5aH+5MoHFM+KABgTOt0APue4w66Ha8jCUo9QGg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", "dev": true, "peer": true, "requires": { - "accepts": "~1.3.7", + "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.19.1", + "body-parser": "1.20.0", "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.4.1", + "cookie": "0.5.0", "cookie-signature": "1.0.6", "debug": "2.6.9", - "depd": "~1.1.2", + "depd": "2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", - "finalhandler": "~1.1.2", + "finalhandler": "1.2.0", "fresh": "0.5.2", + "http-errors": "2.0.0", "merge-descriptors": "1.0.1", "methods": "~1.1.2", - "on-finished": "~2.3.0", + "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", - "qs": "6.9.6", + "qs": "6.10.3", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", - "send": "0.17.2", - "serve-static": "1.14.2", + "send": "0.18.0", + "serve-static": "1.15.0", "setprototypeof": "1.2.0", - "statuses": "~1.5.0", + "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" @@ -25350,7 +25084,7 @@ "array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "dev": true, "peer": true }, @@ -25364,6 +25098,13 @@ "ms": "2.0.0" } }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "peer": true + }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", @@ -25377,6 +25118,13 @@ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, "peer": true + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "peer": true } } }, @@ -25577,18 +25325,18 @@ "peer": true }, "finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dev": true, "peer": true, "requires": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", - "on-finished": "~2.3.0", + "on-finished": "2.4.1", "parseurl": "~1.3.3", - "statuses": "~1.5.0", + "statuses": "2.0.1", "unpipe": "~1.0.0" }, "dependencies": { @@ -25608,6 +25356,13 @@ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true, "peer": true + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "peer": true } } }, @@ -25955,13 +25710,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", @@ -26158,13 +25906,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", @@ -26256,17 +25997,33 @@ "peer": true }, "http-errors": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", - "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, "peer": true, "requires": { - "depd": "~1.1.2", + "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", + "statuses": "2.0.1", "toidentifier": "1.0.1" + }, + "dependencies": { + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "peer": true + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "peer": true + } } }, "http-parser-js": { @@ -26300,13 +26057,13 @@ } }, "http-proxy-middleware": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.1.tgz", - "integrity": "sha512-cfaXRVoZxSed/BmkA7SwBVNI9Kj7HFltaE5rqYOub5kWzWZ+gofV2koVN1j2rMW7pEfSSlCHGJ31xmuyFyfLOg==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", "dev": true, "peer": true, "requires": { - "@types/http-proxy": "^1.17.5", + "@types/http-proxy": "^1.17.8", "http-proxy": "^1.18.1", "is-glob": "^4.0.1", "is-plain-obj": "^3.0.0", @@ -26348,14 +26105,14 @@ "peer": true }, "micromatch": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", - "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "peer": true, "requires": { - "braces": "^3.0.1", - "picomatch": "^2.2.3" + "braces": "^3.0.2", + "picomatch": "^2.3.1" } }, "to-regex-range": { @@ -26432,9 +26189,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 }, @@ -26552,13 +26309,6 @@ "loose-envify": "^1.0.0" } }, - "ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", - "dev": true, - "peer": true - }, "ipaddr.js": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", @@ -26636,9 +26386,9 @@ "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==", "requires": { "has": "^1.0.3" } @@ -26727,9 +26477,9 @@ } }, "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==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "devOptional": true, "requires": { "is-extglob": "^2.1.1" @@ -26767,20 +26517,6 @@ "integrity": "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==", "dev": true }, - "is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", - "dev": true, - "peer": true - }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "peer": true - }, "is-plain-obj": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", @@ -28287,9 +28023,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": "2.2.5", + "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-2.2.5.tgz", + "integrity": "sha512-2a6eRxSxp1BW040hFvaJxhsCMI9lT8QB8t14t+NY5tC5rckIR0U9cr2tjOeaFirmEOy6MHvmJnY7zTBHq431Lw==", "dev": true, "peer": true }, @@ -28442,35 +28178,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", @@ -28651,9 +28358,9 @@ "peer": true }, "memfs": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.1.tgz", - "integrity": "sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.3.tgz", + "integrity": "sha512-eivjfi7Ahr6eQTn44nvTnR60e4a1Fs1Via2kCR5lHo/kyNoiMWaXCNJ/GpSd0ilXas2JSOl9B5FTIhflXu0hlg==", "dev": true, "peer": true, "requires": { @@ -28950,16 +28657,16 @@ "peer": true }, "mime-db": { - "version": "1.48.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.48.0.tgz", - "integrity": "sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ==" + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" }, "mime-types": { - "version": "2.1.31", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.31.tgz", - "integrity": "sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg==", + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "requires": { - "mime-db": "1.48.0" + "mime-db": "1.52.0" } }, "mimic-fn": { @@ -28998,9 +28705,9 @@ } }, "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", @@ -29061,9 +28768,9 @@ } }, "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", @@ -29071,23 +28778,16 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "multicast-dns": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", - "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "dev": true, "peer": true, "requires": { - "dns-packet": "^1.3.1", + "dns-packet": "^5.2.2", "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", @@ -29156,9 +28856,9 @@ } }, "negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "dev": true, "peer": true }, @@ -29185,9 +28885,9 @@ } }, "node-forge": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", - "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", "dev": true, "peer": true }, @@ -29252,28 +28952,6 @@ "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", @@ -29418,15 +29096,15 @@ } }, "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": { @@ -29437,9 +29115,9 @@ "peer": true }, "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, "peer": true, "requires": { @@ -29538,16 +29216,6 @@ } } }, - "p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "peer": true, - "requires": { - "aggregate-error": "^3.0.0" - } - }, "p-retry": { "version": "4.6.1", "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.1.tgz", @@ -29597,17 +29265,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", @@ -29663,210 +29320,47 @@ "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=", + "pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", "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 - } + "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.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "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 + }, "popper.js": { "version": "1.16.1", "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==" }, - "portfinder": { - "version": "1.0.28", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", - "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", - "dev": true, - "peer": true, - "requires": { - "async": "^2.6.2", - "debug": "^3.1.1", - "mkdirp": "^0.5.5" - }, - "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": { - "ms": "^2.1.1" - } - } - } - }, "posix-character-classes": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", @@ -30033,13 +29527,6 @@ "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 - }, "prompts": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", @@ -30118,11 +29605,14 @@ "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" }, "qs": { - "version": "6.9.6", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz", - "integrity": "sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ==", + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", "dev": true, - "peer": true + "peer": true, + "requires": { + "side-channel": "^1.0.4" + } }, "querystring": { "version": "0.2.0", @@ -30180,22 +29670,22 @@ "peer": true }, "raw-body": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.2.tgz", - "integrity": "sha512-RPMAFUJP19WIet/99ngh6Iv8fzAbqum4Li7AD6DtGaW2RpMB/11xDoalPiJMTbu6I3hkbMVkATvZrqb9EEqeeQ==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dev": true, "peer": true, "requires": { - "bytes": "3.1.1", - "http-errors": "1.8.1", + "bytes": "3.1.2", + "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" }, "dependencies": { "bytes": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.1.tgz", - "integrity": "sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, "peer": true } @@ -30228,79 +29718,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", @@ -30443,17 +29860,6 @@ "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", "dev": true }, - "regexp.prototype.flags": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", - "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", - "dev": true, - "peer": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, "regexpp": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", @@ -30783,13 +30189,13 @@ "peer": true }, "selfsigned": { - "version": "1.10.11", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz", - "integrity": "sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.0.1.tgz", + "integrity": "sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==", "dev": true, "peer": true, "requires": { - "node-forge": "^0.10.0" + "node-forge": "^1" } }, "semver": { @@ -30798,25 +30204,25 @@ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" }, "send": { - "version": "0.17.2", - "resolved": "https://registry.npmjs.org/send/-/send-0.17.2.tgz", - "integrity": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==", + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "dev": true, "peer": true, "requires": { "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", + "depd": "2.0.0", + "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", - "http-errors": "1.8.1", + "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", - "on-finished": "~2.3.0", + "on-finished": "2.4.1", "range-parser": "~1.2.1", - "statuses": "~1.5.0" + "statuses": "2.0.1" }, "dependencies": { "debug": { @@ -30838,12 +30244,26 @@ } } }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "peer": true + }, "ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true, "peer": true + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "peer": true } } }, @@ -30919,16 +30339,16 @@ } }, "serve-static": { - "version": "1.14.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.2.tgz", - "integrity": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "dev": true, "peer": true, "requires": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.17.2" + "send": "0.18.0" } }, "set-value": { @@ -31644,13 +31064,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", @@ -32262,15 +31675,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": { @@ -32669,39 +32082,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 }, - "espree": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", - "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", + "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 + }, + "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 } } }, @@ -33012,23 +32458,23 @@ } }, "webpack-dev-middleware": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.0.tgz", - "integrity": "sha512-MouJz+rXAm9B1OTOYaJnn6rtD/lWZPy2ufQCH3BPs8Rloh/Du6Jze4p7AeLYHkVi0giJnYLaSGDC7S+GM9arhg==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.2.tgz", + "integrity": "sha512-PKp4aIEDC2FFJgNMRjdXhpy5ad7xeTqHb+/90Vr3yMymzzDxOVZw3Paj+vqKEMDXfGjuIvh8y99USoBOHZJcEg==", "dev": true, "peer": true, "requires": { "colorette": "^2.0.10", - "memfs": "^3.2.2", + "memfs": "^3.4.3", "mime-types": "^2.1.31", "range-parser": "^1.2.1", "schema-utils": "^4.0.0" }, "dependencies": { "ajv": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.8.2.tgz", - "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", "dev": true, "peer": true, "requires": { @@ -33071,41 +32517,40 @@ } }, "webpack-dev-server": { - "version": "4.7.2", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.7.2.tgz", - "integrity": "sha512-s6yEOSfPpB6g1T2+C5ZOUt5cQOMhjI98IVmmvMNb5cdiqHoxSUfACISHqU/wZy+q4ar/A9jW0pbNj7sa50XRVA==", + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.9.0.tgz", + "integrity": "sha512-+Nlb39iQSOSsFv0lWUuUTim3jDQO8nhK3E68f//J2r5rIcp4lULHXz2oZ0UVdEeWXEh5lSzYUlzarZhDAeAVQw==", "dev": true, "peer": true, "requires": { "@types/bonjour": "^3.5.9", "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", "@types/serve-index": "^1.9.1", "@types/sockjs": "^0.3.33", - "@types/ws": "^8.2.2", + "@types/ws": "^8.5.1", "ansi-html-community": "^0.0.8", - "bonjour": "^3.5.0", - "chokidar": "^3.5.2", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", "colorette": "^2.0.10", "compression": "^1.7.4", "connect-history-api-fallback": "^1.6.0", "default-gateway": "^6.0.3", - "del": "^6.0.0", - "express": "^4.17.1", + "express": "^4.17.3", "graceful-fs": "^4.2.6", "html-entities": "^2.3.2", - "http-proxy-middleware": "^2.0.0", + "http-proxy-middleware": "^2.0.3", "ipaddr.js": "^2.0.1", "open": "^8.0.9", "p-retry": "^4.5.0", - "portfinder": "^1.0.28", + "rimraf": "^3.0.2", "schema-utils": "^4.0.0", - "selfsigned": "^1.10.11", + "selfsigned": "^2.0.1", "serve-index": "^1.9.1", "sockjs": "^0.3.21", "spdy": "^4.0.2", - "strip-ansi": "^7.0.0", - "webpack-dev-middleware": "^5.3.0", - "ws": "^8.1.0" + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.4.2" }, "dependencies": { "ajv": { @@ -33131,13 +32576,6 @@ "fast-deep-equal": "^3.1.3" } }, - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "peer": true - }, "json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", @@ -33158,20 +32596,10 @@ "ajv-keywords": "^5.0.0" } }, - "strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "dev": true, - "peer": true, - "requires": { - "ansi-regex": "^6.0.1" - } - }, "ws": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.4.0.tgz", - "integrity": "sha512-IHVsKe2pjajSUIl4KYMQOdlyliovpEPquKkqbwswulszzI7r0SfQrxnXdWAEqOlDCLrVSJzo+O1hAwdog2sKSQ==", + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.6.0.tgz", + "integrity": "sha512-AzmM3aH3gk0aX7/rZLYvjdvZooofDu3fFOzGqcSnQ1tOcTWwhM/o+q++E8mAyVVIyUdajrkzWUGftaVSDLn1bw==", "dev": true, "peer": true, "requires": {} diff --git a/package.json b/package.json index 14e5a548cd68340bd78cb6352feff0a54694ce8e..2963c1c058ae3db92732969e811092ab56d9d14c 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.2", "author": "Georg Ehrke ", "contributors": [ "Georg Ehrke ", @@ -35,13 +35,13 @@ "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/calendar-availability-vue": "^0.3.1", @@ -52,14 +52,14 @@ "@nextcloud/initial-state": "^1.2.1", "@nextcloud/l10n": "^1.4.1", "@nextcloud/logger": "^2.1.0", - "@nextcloud/moment": "^1.1.1", + "@nextcloud/moment": "^1.2.0", "@nextcloud/router": "^2.0.0", - "@nextcloud/vue": "^4.4.0", + "@nextcloud/vue": "^5.1.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.0", "css-color-names": "^1.0.1", "debounce": "^1.2.1", "jstz": "^2.1.1", @@ -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": "^7.0.2", "@nextcloud/stylelint-config": "^2.1.2", - "@nextcloud/webpack-vue-config": "^4.3.2", + "@nextcloud/webpack-vue-config": "^5.0.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..7e37d20096a70f50c28cc966486c51f10fdb2f99 100644 --- a/src/components/AppNavigation/AppNavigationHeader/AppNavigationHeaderDatePicker.vue +++ b/src/components/AppNavigation/AppNavigationHeader/AppNavigationHeaderDatePicker.vue @@ -22,30 +22,26 @@