From 7e4edf5d6cdb00637038c6d6886fcdea5cb4a9fb Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 25 Aug 2019 01:12:48 +0000 Subject: [PATCH 01/77] Bump webpack-cli from 3.3.6 to 3.3.7 in /js Bumps [webpack-cli](https://github.com/webpack/webpack-cli) from 3.3.6 to 3.3.7. - [Release notes](https://github.com/webpack/webpack-cli/releases) - [Changelog](https://github.com/webpack/webpack-cli/blob/v3.3.7/CHANGELOG.md) - [Commits](https://github.com/webpack/webpack-cli/compare/v3.3.6...v3.3.7) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 6 +++--- js/package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 28f5708a6..414b9e03f 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -9032,9 +9032,9 @@ } }, "webpack-cli": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.6.tgz", - "integrity": "sha512-0vEa83M7kJtxK/jUhlpZ27WHIOndz5mghWL2O53kiDoA9DIxSKnfqB92LoqEn77cT4f3H2cZm1BMEat/6AZz3A==", + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.7.tgz", + "integrity": "sha512-OhTUCttAsr+IZSMVwGROGRHvT+QAs8H6/mHIl4SvhAwYywjiylYjpwybGx7WQ9Hkb45FhjtsymkwiRRbGJ1SZQ==", "dev": true, "requires": { "chalk": "2.4.2", diff --git a/js/package.json b/js/package.json index 60a06d9ab..b1a54febe 100644 --- a/js/package.json +++ b/js/package.json @@ -41,7 +41,7 @@ "vue-style-loader": "^4.1.2", "vue-template-compiler": "^2.6.10", "webpack": "^4.39.2", - "webpack-cli": "^3.3.6", + "webpack-cli": "^3.3.7", "webpack-merge": "^4.2.1" }, "scripts": { From d082e3f805b1e9114427e27644a9d2eeddeb1f5b Mon Sep 17 00:00:00 2001 From: "alexandru.puiu" Date: Mon, 26 Aug 2019 18:00:19 +0300 Subject: [PATCH 02/77] Solving timeline small bugs. Signed-off-by: alexandru.puiu --- lib/Activity/ActivityManager.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/Activity/ActivityManager.php b/lib/Activity/ActivityManager.php index 641c34a7a..65bec4aee 100644 --- a/lib/Activity/ActivityManager.php +++ b/lib/Activity/ActivityManager.php @@ -2,6 +2,8 @@ /** * @copyright Copyright (c) 2018 Julius Härtl * + * @copyright Copyright (c) 2019 Alexandru Puiu + * * @author Julius Härtl * * @license GNU AGPL version 3 or any later version @@ -177,7 +179,7 @@ class ActivityManager { $subject = $ownActivity ? $this->l10n->t('You have deleted card {card} in stack {stack} on board {board}') : $this->l10n->t('{user} has deleted card {card} in stack {stack} on board {board}'); break; case self::SUBJECT_CARD_UPDATE_TITLE: - $subject = $ownActivity ? $this->l10n->t('You have renamed the card {before} to {card}') : $this->l10n->t('{user} has renamed the card {before} to {card}'); + $subject = $ownActivity ? $this->l10n->t('You have renamed the card {before} to {after}') : $this->l10n->t('{user} has renamed the card {before} to {after}'); break; case self::SUBJECT_CARD_UPDATE_DESCRIPTION: if (!isset($subjectParams['before'])) { @@ -384,6 +386,7 @@ class ActivityManager { } if ($subject === self::SUBJECT_CARD_UPDATE_STACKID) { $subjectParams['stackBefore'] = $this->stackMapper->find($additionalParams['before']); + $subjectParams['stack'] = $this->stackMapper->find($additionalParams['after']); } $subjectParams['author'] = $this->userId; From bf1a917e2b1e2567976f80d4f0bfa610c0330a7f Mon Sep 17 00:00:00 2001 From: Koen Date: Mon, 26 Aug 2019 17:18:32 +0200 Subject: [PATCH 03/77] Add date format to If-Modified-Since documentation (#1196) * Fix If-Modified-Since example in API.md Fixes the example curl request date format. It didn't conform to the IMF-fix standard and was not accepted by the parseDate function. Signed-off-by: Koen Tange * Add If-Modified-Since format description to API.md Adds a short description elaborating on the different date formats supported by the If-Modified-Since header. Signed-off-by: Koen Tange * Mark old time formats as obsolete in API.md Clarified in the text that only the IMF-fixformat date format should be used in conjuction with the If-Modified-Since header. Signed-off-by: Koen Tange --- docs/API.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/API.md b/docs/API.md index b3f4384e2..65b0bfc44 100644 --- a/docs/API.md +++ b/docs/API.md @@ -45,6 +45,13 @@ In any case a user doesn't have access to a requested entity, a 403 error will b ### If-Modified-Since Some index endpoints support limiting the result set to entries that have been changed since the given time. +The supported date formats are: + +* IMF-fixdate: `Sun, 03 Aug 2019 10:34:12 GMT` +* (obsolete) RFC 850: `Sunday, 03-Aug-19 10:34:12 GMT` +* (obsolete) ANSI C asctime(): `Sun Aug 3 10:34:12 2019` + +It is highly recommended to only use the IMF-fixdate format. Example curl request: @@ -52,7 +59,7 @@ Example curl request: curl -u admin:admin -X GET \ 'http://localhost:8000/index.php/apps/deck/api/v1.0/boards/2/stacks' \ -H "OCS-APIRequest: true" \ - -H "If-Modified-Since: Mon, 5 Nov 2018 09:28:00 GMT" + -H "If-Modified-Since: Mon, 05 Nov 2018 09:28:00 GMT" ``` # Endpoints From d6b0155e9dab162115152ca60aa7b030bfa6dfa8 Mon Sep 17 00:00:00 2001 From: "alexandru.puiu" Date: Tue, 27 Aug 2019 10:43:14 +0300 Subject: [PATCH 04/77] Probably a better method to solve the update card title issue. Signed-off-by: alexandru.puiu --- lib/Activity/ActivityManager.php | 2 +- lib/Activity/DeckProvider.php | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/lib/Activity/ActivityManager.php b/lib/Activity/ActivityManager.php index 65bec4aee..00f1be644 100644 --- a/lib/Activity/ActivityManager.php +++ b/lib/Activity/ActivityManager.php @@ -179,7 +179,7 @@ class ActivityManager { $subject = $ownActivity ? $this->l10n->t('You have deleted card {card} in stack {stack} on board {board}') : $this->l10n->t('{user} has deleted card {card} in stack {stack} on board {board}'); break; case self::SUBJECT_CARD_UPDATE_TITLE: - $subject = $ownActivity ? $this->l10n->t('You have renamed the card {before} to {after}') : $this->l10n->t('{user} has renamed the card {before} to {after}'); + $subject = $ownActivity ? $this->l10n->t('You have renamed the card {before} to {card}') : $this->l10n->t('{user} has renamed the card {before} to {card}'); break; case self::SUBJECT_CARD_UPDATE_DESCRIPTION: if (!isset($subjectParams['before'])) { diff --git a/lib/Activity/DeckProvider.php b/lib/Activity/DeckProvider.php index 1efefdd27..85ec53bb0 100644 --- a/lib/Activity/DeckProvider.php +++ b/lib/Activity/DeckProvider.php @@ -2,6 +2,8 @@ /** * @copyright Copyright (c) 2018 Julius Härtl * + * @copyright Copyright (c) 2019 Alexandru Puiu + * * @author Julius Härtl * * @license GNU AGPL version 3 or any later version @@ -342,6 +344,13 @@ class DeckProvider implements IProvider { 'name' => $subjectParams['after'] ]; } + if (array_key_exists('card', $subjectParams) && $event->getSubject() === ActivityManager::SUBJECT_CARD_UPDATE_TITLE) { + $params['card'] = [ + 'type' => 'highlight', + 'id' => $subjectParams['after'], + 'name' => $subjectParams['after'] + ]; + } return $params; } From a65f20c39cef312c79fbf72690a1c053752af587 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 28 Aug 2019 02:24:53 +0000 Subject: [PATCH 05/77] [tx-robot] updated from transifex --- l10n/hr.js | 190 ++++++++++++++++++++++++++++++++++++++++++++++++--- l10n/hr.json | 190 ++++++++++++++++++++++++++++++++++++++++++++++++--- l10n/pl.js | 2 +- l10n/pl.json | 2 +- 4 files changed, 364 insertions(+), 20 deletions(-) diff --git a/l10n/hr.js b/l10n/hr.js index 1aaebe458..f303cbbab 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -1,31 +1,203 @@ OC.L10N.register( "deck", { + "Please provide a content for your comment." : "Navedite sadržaj za svoj komentar.", + "Posting the comment failed." : "Objavljivanje komentara nije uspjelo.", + "The comment has been deleted" : "Komentar je izbrisan", + "The associated stack is deleted as well, it will be restored as well." : "Također se briše pridruženi stog, ali će se također vratiti.", + "Restore associated stack" : "Vrati pridruženi stog", + "Remove user from card" : "Ukloni korisnika s kartice", + "Hours" : "Sati", + "Minutes" : "Minute", + "Link to a board" : "Poveznica na ploču", + "Maximum file size of {size} exceeded" : "Prekoračena je maksimalna veličina datoteke od {size}", + "File already exists" : "Datoteka već postoji", + "You have created a new board {board}" : "Stvorili ste novu ploču {board}", + "{user} has created a new board {board}" : "{user} je stvorio novu ploču {board}", + "You have deleted the board {board}" : "Izbrisali ste ploču {board}", + "{user} has deleted the board {board}" : "{user} je izbrisao ploču {board}", + "You have restored the board {board}" : "Vratili ste ploču {board}", + "{user} has restored the board {board}" : "{user} je vratio ploču {board}", + "You have shared the board {board} with {acl}" : "Podijelili ste ploču {board} s {acl}", + "{user} has shared the board {board} with {acl}" : "{user} je podijelio ploču {board} s {acl}", + "You have removed {acl} from the board {board}" : "Uklonili ste {acl} s ploče {board}", + "{user} has removed {acl} from the board {board}" : "{user} je uklonio {acl} s ploče {board}", + "You have renamed the board {before} to {board}" : "Preimenovali ste ploču {before} u {board}", + "{user} has renamed the board {before} to {board}" : "{user} je preimenovao ploču {before} u {board}", + "You have archived the board {board}" : "Arhivirali ste ploču {board}", + "{user} has archived the board {before}" : "{user} je arhivirao ploču {before}", + "You have unarchived the board {board}" : "Dearhivirali ste ploču {board}", + "{user} has unarchived the board {before}" : "{user} je dearhivirao ploču {before}", + "You have created a new stack {stack} on board {board}" : "Stvorili ste novi stog {stack} na ploči {board}", + "{user} has created a new stack {stack} on board {board}" : "{user} je stvorio novi stog {stack} na ploči {board}", + "You have renamed stack {before} to {stack} on board {board}" : "Preimenovali ste stog {before} u {stack} na ploči {board}", + "{user} has renamed stack {before} to {stack} on board {board}" : "{user} je preimenovao stog {before} u {stack} na ploči {board}", + "You have deleted stack {stack} on board {board}" : "Izbrisali ste stog {stack} na ploči {board}", + "{user} has deleted stack {stack} on board {board}" : "{user} je izbrisao stog {stack} na ploči {board}", + "You have created card {card} in stack {stack} on board {board}" : "Stvorili ste karticu {card} u stogu {stack} na ploči {board}", + "{user} has created card {card} in stack {stack} on board {board}" : "{user} je stvorio karticu {card} u stogu {stack} na ploči {board}", + "You have deleted card {card} in stack {stack} on board {board}" : "Izbrisali ste karticu {card} u stogu {stack} na ploči {board}", + "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} je izbrisao karticu {card} u stogu {stack} na ploči {board}", + "You have renamed the card {before} to {card}" : "Preimenovali ste karticu {before} u {card}", + "{user} has renamed the card {before} to {card}" : "{user} je preimenovao karticu {before} u {card}", + "You have added a description to card {card} in stack {stack} on board {board}" : "Dodali ste opis kartici {card} u stogu {stack} na ploči {board}", + "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} je dodao opis kartici {card} u stogu {stack} na ploči {board}", + "You have updated the description of card {card} in stack {stack} on board {board}" : "Ažurirali ste opis kartice {card} u stogu {stack} na ploči {board}", + "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} je ažurirao opis kartice {card} u stogu {stack} na ploči {board}", + "You have archived card {card} in stack {stack} on board {board}" : "Arhivirali ste karticu {card} u stogu {stack} na ploči {board}", + "{user} has archived card {card} in stack {stack} on board {board}" : "{user} je arhivirao karticu {card} u stogu {stack} na ploči {board}", + "You have unarchived card {card} in stack {stack} on board {board}" : "Dearhivirali ste karticu {card} u stogu {stack} na ploči {board}", + "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} je dearhivirao karticu {card} u stogu {stack} na ploči {board}", + "You have removed the due date of card {card}" : "Uklonili ste datum dospijeća kartice {card}", + "{user} has removed the due date of card {card}" : "{user} je uklonio datum dospijeća kartice {card}", + "You have set the due date of card {card} to {after}" : "Postavili ste datum dospijeća kartice {card} na {after}", + "{user} has set the due date of card {card} to {after}" : "{user} je postavio datum dospijeća kartice {card} na {after}", + "You have updated the due date of card {card} to {after}" : "Ažurirali ste datum dospijeća kartice {card} na {after}", + "{user} has updated the due date of card {card} to {after}" : "{user} je ažurirao datum dospijeća kartice {card} na {after}", + "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Dodali ste oznaku {label} na karticu {card} u stogu {stack} na ploči {board}", + "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} je dodao oznaku {label} na karticu {card} u stogu {stack} na ploči {board}", + "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Uklonili ste oznaku {label} s kartice {card} u stogu {stack} na ploči {board}", + "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} je uklonio oznaku {label} s kartice {card} u stogu {stack} na ploči {board}", + "You have assigned {assigneduser} to card {card} on board {board}" : "Dodijelili ste {assigneduser} kartici {card} na ploči {board}", + "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} je dodijelio {assigneduser} kartici {card} na ploči {board}", + "You have unassigned {assigneduser} from card {card} on board {board}" : "Uklonili ste {assigneduser} s kartice {card} na ploči {board}", + "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} je uklonio {assigneduser} s kartice {card} na ploči {board}", + "You have moved the card {card} from stack {stackBefore} to {stack}" : "Premjestili ste karticu {card} iz stoga {stackBefore} u {stack}", + "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} je premjestio karticu {card} iz stoga {stackBefore} u {stack}", + "You have added the attachment {attachment} to card {card}" : "Dodali ste privitak {attachment} kartici {card}", + "{user} has added the attachment {attachment} to card {card}" : "{user} je dodao privitak {attachment} kartici {card}", + "You have updated the attachment {attachment} on card {card}" : "Ažurirali ste privitak {attachment} na kartici {card}", + "{user} has updated the attachment {attachment} to card {card}" : "{user} je ažurirao privitak {attachment} na kartici {card}", + "You have deleted the attachment {attachment} from card {card}" : "Izbrisali ste privitak {attachment} s kartice {card}", + "{user} has deleted the attachment {attachment} to card {card}" : "{user} je izbrisao privitak {attachment} s kartice {card}", + "You have restored the attachment {attachment} to card {card}" : "Vratili ste privitak {attachment} na karticu {card}", + "{user} has restored the attachment {attachment} to card {card}" : "{user} je vratio privitak {attachment} na karticu {card}", + "You have commented on card {card}" : "Komentirali ste karticu {card}", + "{user} has commented on card {card}" : "{user} je komentirao karticu {card}", + "A card description inside the Deck app has been changed" : "Promijenjen je opis kartice u aplikaciji Deck", "Deck" : "Deck", + "Changes in the Deck app" : "Promjene u aplikaciji Deck", + "A comment was created on a card" : "Komentar je stvoren na kartici", + "Personal" : "Osobno", + "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karticu „%s” na „%s” dodijelio vam je %s.", + "{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vam je dodijelio karticu „%s” na „%s”.", + "The card \"%s\" on \"%s\" has reached its due date." : "Kartica „%s” na „%s” dosegla je datum dospijeća.", + "%s has mentioned you in a comment on \"%s\"." : "%s vas spominje u komentaru na „%s”.", + "{user} has mentioned you in a comment on \"%s\"." : "{user} vas je spomenuo u komentaru na „%s”.", + "The board \"%s\" has been shared with you by %s." : "Ploču „%s” je s vama podijelio %s.", + "{user} has shared the board %s with you." : "{user} je s vama podijelio ploču %s.", + "No data was provided to create an attachment." : "Nema podataka za izradu privitka.", "Finished" : "Završeno", "To review" : "Provjeriti", "Action needed" : "Potrebna radnja", "Later" : "Kasnije", + "To do" : "Zadatak", + "Doing" : "U postupku", + "Done" : "Gotovo", + "Example Task 3" : "Primjer zadatka 3.", + "Example Task 2" : "Primjer zadatka 2.", + "Example Task 1" : "Primjer zadatka 1.", + "The file was uploaded" : "Datoteka je otpremljena", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Otpremljena datoteka premašuje postavku upload_max_filesize u datoteci php.ini", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Otpremljena datoteka premašuje postavku MAX_FILE_SIZE koja je navedena u obrascu HTML-a", + "The file was only partially uploaded" : "Datoteka je samo djelomično otpremljena", + "No file was uploaded" : "Nije otpremljena nijedna datoteka", + "Missing a temporary folder" : "Nedostaje privremena mapa", + "Could not write file to disk" : "Nije moguće zapisati datoteku na disk", + "A PHP extension stopped the file upload" : "Proširenje PHP-a zaustavilo je otpremanje datoteke", + "No file uploaded or file size exceeds maximum of %s" : "Nijedna datoteka nije otpremljena ili veličina datoteke premašuje maksimalnu veličinu od %s", + "A kanban style project and personal management tool for Nextcloud" : "Kanban projekt i osobni alat za upravljanje za Nextcloud", + "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck je organizacijski alat za kanban projekte usmjeren na osobno planiranje i organizaciju projekta za timove integrirane s Nextcloudom.\n\n\n- 📥 Dodajte svoje zadatke na kartice i poredajte ih po želji\n- 📄 Zapišite dodatne bilješke u markdown\n- 🔖 Dodijelite oznake za još bolju organizaciju\n- 👥 Dijelite sa svojim timom, prijateljima ili obitelji\n- 📎 Priložite datoteke i ugradite ih u svoj markdown opis\n- 💬 Raspravljajte sa svojim timom putem komentara\n- ⚡ Pratite promjene u strujanju aktivnosti\n- 🚀 Organizirajte svoj projekt", + "Select the board to link to a project" : "Odaberite ploču za povezivanje s projektom", + "Select board" : "Odaberi ploču", + "Add a new stack" : "Dodaj novi stog", + "Submit" : "Šalji", "Show archived cards" : "Prikaži arhivirane kartice", "Hide archived cards" : "Sakrij arhivirane kartice", + "Toggle compact mode" : "Prebaci u kompaktni način rada", + "Show board details" : "Prikaži pojedinosti o ploči", "All Boards" : "Sve ploče", - "Enter a card title" : "Naslov kartice", + "Archived boards" : "Arhivirane ploče", + "Share board" : "Dijeli ploču", + "Archived cards" : "Arhivirane kartice", + "Actions" : "Radnje", + "Drop your files here to upload it to the card" : "Ispustite datoteke ovdje kako biste ih otpremili na karticu", + "Assign card to me" : "Dodijeli mi karticu", + "Unassign card from me" : "Ukloni me s kartice", + "Archive card" : "Arhiviraj karticu", + "Unarchive card" : "Dearhiviraj karticu", + "Delete card" : "Izbriši karticu", + "Enter a card title" : "Unesi naslov kartice", + "Add card" : "Dodaj karticu", + "Close" : "Zatvori", "Sharing" : "Dijeljenje", - "Select users or groups to share with" : "Podijeli s korisnicima ili grupama", - "No matching user or group found." : "Nije pronađen odgovarajući korisnik ili grupa", + "Tags" : "Oznake", + "Deleted items" : "Izbrisane stavke", + "Timeline" : "Vremenska crta", + "Select users or groups to share with" : "Dijeli s korisnicima ili grupama", + "Group" : "Grupa", + "Circle" : "Krug", + "No matching user or group found." : "Nije pronađen odgovarajući korisnik ili grupa.", + "Loading" : "Učitavanje", "Edit" : "Uređivanje", - "Share" : "Dijeljenje", + "Share" : "Dijeli", "Manage" : "Upravljanje", "Discard share" : "Prestani dijeliti", + "Sharing has been disabled for your account." : "Dijeljenje je onemogućeno za vaš račun.", + "Update tag" : "Ažuriraj oznaku", + "Edit tag" : "Uredi oznaku", + "Delete tag" : "Izbriši oznaku", + "Create" : "Stvori", + "Create a new tag" : "Stvori novu oznaku", + "Deleted stacks" : "Izbrisani stogovi", + "Deleted cards" : "Izbrisane kartice", + "Status" : "Status", + "No archived boards to display" : "Nema arhiviranih ploča za prikaz", + "No shared boards to display" : "Nema dijeljenih ploča za prikaz", + "Title" : "Naslov", "Members" : "Članovi", - "Create new board" : "Izradi novu ploču", - "New board title" : "Naslov ploče", + "More actions" : "Dodatne radnje", + "Edit board" : "Uredi ploču", + "Archive board" : "Arhiviraj ploču", + "Unarchive board" : "Dearhiviraj ploču", + "Delete board" : "Izbriši ploču", + "Update board" : "Ažuriraj ploču", + "Reset board" : "Resetiraj ploču", + "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Poništi brisanje ploče – u suprotnom će se ploča izbrisati tijekom sljedećeg izvođenja cronjoba.", + "Create new board" : "Stvori novu ploču", + "New board title" : "Novi naslov ploče", + "Create board" : "Stvori ploču", + "Select an attachment" : "Odaberi privitak", + "Cancel upload" : "Otkaži otpremanje", "by" : "od", - "Modified:" : "Promijenjena:", + "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Poništi brisanje datoteke – u suprotnom će se datoteka izbrisati tijekom sljedećeg izvođenja cronjoba.", + "Undo file deletion" : "Poništi brisanje datoteke", + "Insert the file into the description" : "Umetni datoteku u opis", + "Delete attachment" : "Izbriši privitak", + "Modified:" : "Promijenjeno:", "Created:" : "Stvorena:", + "Choose a tag" : "Odaberi oznaku", + "Add a tag" : "Dodaj oznaku", + "Select tags" : "Odaberite oznake", + "Assign users" : "Dodijeli korisnike", + "Choose a user to assign" : "Odaberi korisnika za dodjelu", + "Assign this card to a user" : "Dodijeli ovu karticu korisniku", + "Due date" : "Datum dospijeća", + "Click to set" : "Klikni za postavljanje", + "Remove due date" : "Ukloni datum dospijeća", "Description" : "Opis", + "Attachments" : "Privici", "Saved" : "Spremljeno", - "Add a card description…" : "Dodaj opis...", - "Create a new board" : "Izradi novu ploču" + "Unsaved changes" : "Nespremljene promjene", + "Insert attachment" : "Umetni privitak", + "Formatting help" : "Pomoć pri oblikovanju", + "Upload attachment" : "Otpremi privitak", + "Add a card description…" : "Dodaj opis kartice...", + "Shared boards" : "Dijeljene ploče", + "Move board to archive" : "Premjesti ploču u arhivu", + "Create a new board" : "Stvori novu ploču", + "Settings" : "Postavke", + "Limit deck to groups" : "Ograniči Deck na grupe", + "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ograničenjem Decka možete spriječiti korisnike koji ne sudjeluju u tim grupama da stvaraju vlastite ploče. Korisnici će i dalje moći raditi na pločama koje su dijeljene s njima." }, "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 3b3045f86..30546a927 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -1,29 +1,201 @@ { "translations": { + "Please provide a content for your comment." : "Navedite sadržaj za svoj komentar.", + "Posting the comment failed." : "Objavljivanje komentara nije uspjelo.", + "The comment has been deleted" : "Komentar je izbrisan", + "The associated stack is deleted as well, it will be restored as well." : "Također se briše pridruženi stog, ali će se također vratiti.", + "Restore associated stack" : "Vrati pridruženi stog", + "Remove user from card" : "Ukloni korisnika s kartice", + "Hours" : "Sati", + "Minutes" : "Minute", + "Link to a board" : "Poveznica na ploču", + "Maximum file size of {size} exceeded" : "Prekoračena je maksimalna veličina datoteke od {size}", + "File already exists" : "Datoteka već postoji", + "You have created a new board {board}" : "Stvorili ste novu ploču {board}", + "{user} has created a new board {board}" : "{user} je stvorio novu ploču {board}", + "You have deleted the board {board}" : "Izbrisali ste ploču {board}", + "{user} has deleted the board {board}" : "{user} je izbrisao ploču {board}", + "You have restored the board {board}" : "Vratili ste ploču {board}", + "{user} has restored the board {board}" : "{user} je vratio ploču {board}", + "You have shared the board {board} with {acl}" : "Podijelili ste ploču {board} s {acl}", + "{user} has shared the board {board} with {acl}" : "{user} je podijelio ploču {board} s {acl}", + "You have removed {acl} from the board {board}" : "Uklonili ste {acl} s ploče {board}", + "{user} has removed {acl} from the board {board}" : "{user} je uklonio {acl} s ploče {board}", + "You have renamed the board {before} to {board}" : "Preimenovali ste ploču {before} u {board}", + "{user} has renamed the board {before} to {board}" : "{user} je preimenovao ploču {before} u {board}", + "You have archived the board {board}" : "Arhivirali ste ploču {board}", + "{user} has archived the board {before}" : "{user} je arhivirao ploču {before}", + "You have unarchived the board {board}" : "Dearhivirali ste ploču {board}", + "{user} has unarchived the board {before}" : "{user} je dearhivirao ploču {before}", + "You have created a new stack {stack} on board {board}" : "Stvorili ste novi stog {stack} na ploči {board}", + "{user} has created a new stack {stack} on board {board}" : "{user} je stvorio novi stog {stack} na ploči {board}", + "You have renamed stack {before} to {stack} on board {board}" : "Preimenovali ste stog {before} u {stack} na ploči {board}", + "{user} has renamed stack {before} to {stack} on board {board}" : "{user} je preimenovao stog {before} u {stack} na ploči {board}", + "You have deleted stack {stack} on board {board}" : "Izbrisali ste stog {stack} na ploči {board}", + "{user} has deleted stack {stack} on board {board}" : "{user} je izbrisao stog {stack} na ploči {board}", + "You have created card {card} in stack {stack} on board {board}" : "Stvorili ste karticu {card} u stogu {stack} na ploči {board}", + "{user} has created card {card} in stack {stack} on board {board}" : "{user} je stvorio karticu {card} u stogu {stack} na ploči {board}", + "You have deleted card {card} in stack {stack} on board {board}" : "Izbrisali ste karticu {card} u stogu {stack} na ploči {board}", + "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} je izbrisao karticu {card} u stogu {stack} na ploči {board}", + "You have renamed the card {before} to {card}" : "Preimenovali ste karticu {before} u {card}", + "{user} has renamed the card {before} to {card}" : "{user} je preimenovao karticu {before} u {card}", + "You have added a description to card {card} in stack {stack} on board {board}" : "Dodali ste opis kartici {card} u stogu {stack} na ploči {board}", + "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} je dodao opis kartici {card} u stogu {stack} na ploči {board}", + "You have updated the description of card {card} in stack {stack} on board {board}" : "Ažurirali ste opis kartice {card} u stogu {stack} na ploči {board}", + "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} je ažurirao opis kartice {card} u stogu {stack} na ploči {board}", + "You have archived card {card} in stack {stack} on board {board}" : "Arhivirali ste karticu {card} u stogu {stack} na ploči {board}", + "{user} has archived card {card} in stack {stack} on board {board}" : "{user} je arhivirao karticu {card} u stogu {stack} na ploči {board}", + "You have unarchived card {card} in stack {stack} on board {board}" : "Dearhivirali ste karticu {card} u stogu {stack} na ploči {board}", + "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} je dearhivirao karticu {card} u stogu {stack} na ploči {board}", + "You have removed the due date of card {card}" : "Uklonili ste datum dospijeća kartice {card}", + "{user} has removed the due date of card {card}" : "{user} je uklonio datum dospijeća kartice {card}", + "You have set the due date of card {card} to {after}" : "Postavili ste datum dospijeća kartice {card} na {after}", + "{user} has set the due date of card {card} to {after}" : "{user} je postavio datum dospijeća kartice {card} na {after}", + "You have updated the due date of card {card} to {after}" : "Ažurirali ste datum dospijeća kartice {card} na {after}", + "{user} has updated the due date of card {card} to {after}" : "{user} je ažurirao datum dospijeća kartice {card} na {after}", + "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Dodali ste oznaku {label} na karticu {card} u stogu {stack} na ploči {board}", + "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} je dodao oznaku {label} na karticu {card} u stogu {stack} na ploči {board}", + "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Uklonili ste oznaku {label} s kartice {card} u stogu {stack} na ploči {board}", + "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} je uklonio oznaku {label} s kartice {card} u stogu {stack} na ploči {board}", + "You have assigned {assigneduser} to card {card} on board {board}" : "Dodijelili ste {assigneduser} kartici {card} na ploči {board}", + "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} je dodijelio {assigneduser} kartici {card} na ploči {board}", + "You have unassigned {assigneduser} from card {card} on board {board}" : "Uklonili ste {assigneduser} s kartice {card} na ploči {board}", + "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} je uklonio {assigneduser} s kartice {card} na ploči {board}", + "You have moved the card {card} from stack {stackBefore} to {stack}" : "Premjestili ste karticu {card} iz stoga {stackBefore} u {stack}", + "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} je premjestio karticu {card} iz stoga {stackBefore} u {stack}", + "You have added the attachment {attachment} to card {card}" : "Dodali ste privitak {attachment} kartici {card}", + "{user} has added the attachment {attachment} to card {card}" : "{user} je dodao privitak {attachment} kartici {card}", + "You have updated the attachment {attachment} on card {card}" : "Ažurirali ste privitak {attachment} na kartici {card}", + "{user} has updated the attachment {attachment} to card {card}" : "{user} je ažurirao privitak {attachment} na kartici {card}", + "You have deleted the attachment {attachment} from card {card}" : "Izbrisali ste privitak {attachment} s kartice {card}", + "{user} has deleted the attachment {attachment} to card {card}" : "{user} je izbrisao privitak {attachment} s kartice {card}", + "You have restored the attachment {attachment} to card {card}" : "Vratili ste privitak {attachment} na karticu {card}", + "{user} has restored the attachment {attachment} to card {card}" : "{user} je vratio privitak {attachment} na karticu {card}", + "You have commented on card {card}" : "Komentirali ste karticu {card}", + "{user} has commented on card {card}" : "{user} je komentirao karticu {card}", + "A card description inside the Deck app has been changed" : "Promijenjen je opis kartice u aplikaciji Deck", "Deck" : "Deck", + "Changes in the Deck app" : "Promjene u aplikaciji Deck", + "A comment was created on a card" : "Komentar je stvoren na kartici", + "Personal" : "Osobno", + "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karticu „%s” na „%s” dodijelio vam je %s.", + "{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vam je dodijelio karticu „%s” na „%s”.", + "The card \"%s\" on \"%s\" has reached its due date." : "Kartica „%s” na „%s” dosegla je datum dospijeća.", + "%s has mentioned you in a comment on \"%s\"." : "%s vas spominje u komentaru na „%s”.", + "{user} has mentioned you in a comment on \"%s\"." : "{user} vas je spomenuo u komentaru na „%s”.", + "The board \"%s\" has been shared with you by %s." : "Ploču „%s” je s vama podijelio %s.", + "{user} has shared the board %s with you." : "{user} je s vama podijelio ploču %s.", + "No data was provided to create an attachment." : "Nema podataka za izradu privitka.", "Finished" : "Završeno", "To review" : "Provjeriti", "Action needed" : "Potrebna radnja", "Later" : "Kasnije", + "To do" : "Zadatak", + "Doing" : "U postupku", + "Done" : "Gotovo", + "Example Task 3" : "Primjer zadatka 3.", + "Example Task 2" : "Primjer zadatka 2.", + "Example Task 1" : "Primjer zadatka 1.", + "The file was uploaded" : "Datoteka je otpremljena", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Otpremljena datoteka premašuje postavku upload_max_filesize u datoteci php.ini", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Otpremljena datoteka premašuje postavku MAX_FILE_SIZE koja je navedena u obrascu HTML-a", + "The file was only partially uploaded" : "Datoteka je samo djelomično otpremljena", + "No file was uploaded" : "Nije otpremljena nijedna datoteka", + "Missing a temporary folder" : "Nedostaje privremena mapa", + "Could not write file to disk" : "Nije moguće zapisati datoteku na disk", + "A PHP extension stopped the file upload" : "Proširenje PHP-a zaustavilo je otpremanje datoteke", + "No file uploaded or file size exceeds maximum of %s" : "Nijedna datoteka nije otpremljena ili veličina datoteke premašuje maksimalnu veličinu od %s", + "A kanban style project and personal management tool for Nextcloud" : "Kanban projekt i osobni alat za upravljanje za Nextcloud", + "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck je organizacijski alat za kanban projekte usmjeren na osobno planiranje i organizaciju projekta za timove integrirane s Nextcloudom.\n\n\n- 📥 Dodajte svoje zadatke na kartice i poredajte ih po želji\n- 📄 Zapišite dodatne bilješke u markdown\n- 🔖 Dodijelite oznake za još bolju organizaciju\n- 👥 Dijelite sa svojim timom, prijateljima ili obitelji\n- 📎 Priložite datoteke i ugradite ih u svoj markdown opis\n- 💬 Raspravljajte sa svojim timom putem komentara\n- ⚡ Pratite promjene u strujanju aktivnosti\n- 🚀 Organizirajte svoj projekt", + "Select the board to link to a project" : "Odaberite ploču za povezivanje s projektom", + "Select board" : "Odaberi ploču", + "Add a new stack" : "Dodaj novi stog", + "Submit" : "Šalji", "Show archived cards" : "Prikaži arhivirane kartice", "Hide archived cards" : "Sakrij arhivirane kartice", + "Toggle compact mode" : "Prebaci u kompaktni način rada", + "Show board details" : "Prikaži pojedinosti o ploči", "All Boards" : "Sve ploče", - "Enter a card title" : "Naslov kartice", + "Archived boards" : "Arhivirane ploče", + "Share board" : "Dijeli ploču", + "Archived cards" : "Arhivirane kartice", + "Actions" : "Radnje", + "Drop your files here to upload it to the card" : "Ispustite datoteke ovdje kako biste ih otpremili na karticu", + "Assign card to me" : "Dodijeli mi karticu", + "Unassign card from me" : "Ukloni me s kartice", + "Archive card" : "Arhiviraj karticu", + "Unarchive card" : "Dearhiviraj karticu", + "Delete card" : "Izbriši karticu", + "Enter a card title" : "Unesi naslov kartice", + "Add card" : "Dodaj karticu", + "Close" : "Zatvori", "Sharing" : "Dijeljenje", - "Select users or groups to share with" : "Podijeli s korisnicima ili grupama", - "No matching user or group found." : "Nije pronađen odgovarajući korisnik ili grupa", + "Tags" : "Oznake", + "Deleted items" : "Izbrisane stavke", + "Timeline" : "Vremenska crta", + "Select users or groups to share with" : "Dijeli s korisnicima ili grupama", + "Group" : "Grupa", + "Circle" : "Krug", + "No matching user or group found." : "Nije pronađen odgovarajući korisnik ili grupa.", + "Loading" : "Učitavanje", "Edit" : "Uređivanje", - "Share" : "Dijeljenje", + "Share" : "Dijeli", "Manage" : "Upravljanje", "Discard share" : "Prestani dijeliti", + "Sharing has been disabled for your account." : "Dijeljenje je onemogućeno za vaš račun.", + "Update tag" : "Ažuriraj oznaku", + "Edit tag" : "Uredi oznaku", + "Delete tag" : "Izbriši oznaku", + "Create" : "Stvori", + "Create a new tag" : "Stvori novu oznaku", + "Deleted stacks" : "Izbrisani stogovi", + "Deleted cards" : "Izbrisane kartice", + "Status" : "Status", + "No archived boards to display" : "Nema arhiviranih ploča za prikaz", + "No shared boards to display" : "Nema dijeljenih ploča za prikaz", + "Title" : "Naslov", "Members" : "Članovi", - "Create new board" : "Izradi novu ploču", - "New board title" : "Naslov ploče", + "More actions" : "Dodatne radnje", + "Edit board" : "Uredi ploču", + "Archive board" : "Arhiviraj ploču", + "Unarchive board" : "Dearhiviraj ploču", + "Delete board" : "Izbriši ploču", + "Update board" : "Ažuriraj ploču", + "Reset board" : "Resetiraj ploču", + "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Poništi brisanje ploče – u suprotnom će se ploča izbrisati tijekom sljedećeg izvođenja cronjoba.", + "Create new board" : "Stvori novu ploču", + "New board title" : "Novi naslov ploče", + "Create board" : "Stvori ploču", + "Select an attachment" : "Odaberi privitak", + "Cancel upload" : "Otkaži otpremanje", "by" : "od", - "Modified:" : "Promijenjena:", + "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Poništi brisanje datoteke – u suprotnom će se datoteka izbrisati tijekom sljedećeg izvođenja cronjoba.", + "Undo file deletion" : "Poništi brisanje datoteke", + "Insert the file into the description" : "Umetni datoteku u opis", + "Delete attachment" : "Izbriši privitak", + "Modified:" : "Promijenjeno:", "Created:" : "Stvorena:", + "Choose a tag" : "Odaberi oznaku", + "Add a tag" : "Dodaj oznaku", + "Select tags" : "Odaberite oznake", + "Assign users" : "Dodijeli korisnike", + "Choose a user to assign" : "Odaberi korisnika za dodjelu", + "Assign this card to a user" : "Dodijeli ovu karticu korisniku", + "Due date" : "Datum dospijeća", + "Click to set" : "Klikni za postavljanje", + "Remove due date" : "Ukloni datum dospijeća", "Description" : "Opis", + "Attachments" : "Privici", "Saved" : "Spremljeno", - "Add a card description…" : "Dodaj opis...", - "Create a new board" : "Izradi novu ploču" + "Unsaved changes" : "Nespremljene promjene", + "Insert attachment" : "Umetni privitak", + "Formatting help" : "Pomoć pri oblikovanju", + "Upload attachment" : "Otpremi privitak", + "Add a card description…" : "Dodaj opis kartice...", + "Shared boards" : "Dijeljene ploče", + "Move board to archive" : "Premjesti ploču u arhivu", + "Create a new board" : "Stvori novu ploču", + "Settings" : "Postavke", + "Limit deck to groups" : "Ograniči Deck na grupe", + "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ograničenjem Decka možete spriječiti korisnike koji ne sudjeluju u tim grupama da stvaraju vlastite ploče. Korisnici će i dalje moći raditi na pločama koje su dijeljene s njima." },"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/pl.js b/l10n/pl.js index 8e26d6815..39d955afd 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -183,7 +183,7 @@ OC.L10N.register( "Choose a user to assign" : "Wybierz użytkownika, który chcesz przypisać", "Assign this card to a user" : "Przydziel tę kartę użytkownikowi", "Due date" : "Data realizacji", - "Click to set" : "Kliknij by ustawić", + "Click to set" : "Kliknij, aby ustawić", "Remove due date" : "Usuń datę realizacji", "Description" : "Opis", "Attachments" : "Załączniki", diff --git a/l10n/pl.json b/l10n/pl.json index 35f0c50d6..94e13c0f7 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -181,7 +181,7 @@ "Choose a user to assign" : "Wybierz użytkownika, który chcesz przypisać", "Assign this card to a user" : "Przydziel tę kartę użytkownikowi", "Due date" : "Data realizacji", - "Click to set" : "Kliknij by ustawić", + "Click to set" : "Kliknij, aby ustawić", "Remove due date" : "Usuń datę realizacji", "Description" : "Opis", "Attachments" : "Załączniki", From b35ac4237c026ccf580a432679e9ebba379df4fa Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 29 Aug 2019 02:23:33 +0000 Subject: [PATCH 06/77] [tx-robot] updated from transifex --- l10n/hu.js | 2 ++ l10n/hu.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/l10n/hu.js b/l10n/hu.js index bce10c8a4..ab36ccfd6 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -19,6 +19,7 @@ OC.L10N.register( "You have restored the board {board}" : "Visszaállította a(z) {board} táblát", "{user} has restored the board {board}" : "{user} visszaállította a(z) {board} táblát", "You have shared the board {board} with {acl}" : "Megosztotta a(z) {board} táblát a következővel: {acl}", + "{user} has shared the board {board} with {acl}" : "{user} megosztotta a(z) {board} táblát a következővel: {acl}", "You have removed {acl} from the board {board}" : "Eltávolította a következőt a(z) {board} táblától: {acl}", "{user} has removed {acl} from the board {board}" : "{user} eltávolította a következőt a(z) {board} táblától: {acl}", "You have renamed the board {before} to {board}" : "Átnevezte a(z) {before} táblát erre: {board}", @@ -76,6 +77,7 @@ OC.L10N.register( "A card description inside the Deck app has been changed" : "A kártyaleírás megváltozott a Kártyák alkalmazásban", "Deck" : "Kártyák", "Changes in the Deck app" : "Változások a Kártyák alkalmazásban", + "A comment was created on a card" : "Egy hozzászólás lett létrehozva egy kártyán", "Personal" : "Személyes", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "A(z) „%s” kártyát a(z) „%s” táblán %s hozzárendelte Önhöz.", "{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hozzárendelte Önhöz a(z) „%s” kártyát a(z) „%s”.", diff --git a/l10n/hu.json b/l10n/hu.json index a5b726702..336155921 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -17,6 +17,7 @@ "You have restored the board {board}" : "Visszaállította a(z) {board} táblát", "{user} has restored the board {board}" : "{user} visszaállította a(z) {board} táblát", "You have shared the board {board} with {acl}" : "Megosztotta a(z) {board} táblát a következővel: {acl}", + "{user} has shared the board {board} with {acl}" : "{user} megosztotta a(z) {board} táblát a következővel: {acl}", "You have removed {acl} from the board {board}" : "Eltávolította a következőt a(z) {board} táblától: {acl}", "{user} has removed {acl} from the board {board}" : "{user} eltávolította a következőt a(z) {board} táblától: {acl}", "You have renamed the board {before} to {board}" : "Átnevezte a(z) {before} táblát erre: {board}", @@ -74,6 +75,7 @@ "A card description inside the Deck app has been changed" : "A kártyaleírás megváltozott a Kártyák alkalmazásban", "Deck" : "Kártyák", "Changes in the Deck app" : "Változások a Kártyák alkalmazásban", + "A comment was created on a card" : "Egy hozzászólás lett létrehozva egy kártyán", "Personal" : "Személyes", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "A(z) „%s” kártyát a(z) „%s” táblán %s hozzárendelte Önhöz.", "{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hozzárendelte Önhöz a(z) „%s” kártyát a(z) „%s”.", From 25d06855dcc9e7458cb97b58b270df01b72b3a81 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2019 05:26:16 +0000 Subject: [PATCH 07/77] Bump karma from 4.2.0 to 4.3.0 in /js Bumps [karma](https://github.com/karma-runner/karma) from 4.2.0 to 4.3.0. - [Release notes](https://github.com/karma-runner/karma/releases) - [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md) - [Commits](https://github.com/karma-runner/karma/compare/v4.2.0...v4.3.0) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 54 ++++++++++++++++++++------------------------ js/package.json | 2 +- 2 files changed, 25 insertions(+), 31 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 414b9e03f..f4f0cd504 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -1740,12 +1740,12 @@ "integrity": "sha512-JT8FYlvBKqpgZcI5YCL2azdkovjAZVviOH1ylTiCYlhgSKoFIAKI2W7hHJl9SX9xLXw0/gIVOHNFw9N9U29uXw==" }, "async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.2.tgz", - "integrity": "sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==", + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", "dev": true, "requires": { - "lodash": "^4.17.11" + "lodash": "^4.17.14" } }, "async-each": { @@ -1755,9 +1755,9 @@ "dev": true }, "async-limiter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", - "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", "dev": true }, "atob": { @@ -2972,9 +2972,9 @@ "dev": true }, "date-format": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/date-format/-/date-format-2.0.0.tgz", - "integrity": "sha512-M6UqVvZVgFYqZL1SfHsRGIQSz3ZL+qgbsV5Lp1Vj61LZVYuEwcMXYay7DRDtYs2HQQBK5hQtQ0fD9aEJ89V0LA==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-2.1.0.tgz", + "integrity": "sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==", "dev": true }, "date-now": { @@ -3789,12 +3789,12 @@ } }, "follow-redirects": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.7.0.tgz", - "integrity": "sha512-m/pZQy4Gj287eNy94nivy5wchN3Kp+Q5WgUPNy5lJSZ3sgkVKSYV/ZChMAQVIgx1SqfZ2zBZtPA2YlXIWxxJOQ==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.8.1.tgz", + "integrity": "sha512-micCIbldHioIegeKs41DoH0KS3AXfFzgS30qVkM6z/XOE/GJgvmsoc839NUqa1B9udYe9dQxgv7KFwng6+p/dw==", "dev": true, "requires": { - "debug": "^3.2.6" + "debug": "^3.0.0" }, "dependencies": { "debug": { @@ -5299,9 +5299,9 @@ } }, "karma": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/karma/-/karma-4.2.0.tgz", - "integrity": "sha512-fmCuxN1rwJxTdZfOXK5LjlmS4Ana/OvzNMpkyLL/TLE8hmgSkpVpMYQ7RTVa8TNKRVQDZNl5W1oF5cfKfgIMlA==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/karma/-/karma-4.3.0.tgz", + "integrity": "sha512-NSPViHOt+RW38oJklvYxQC4BSQsv737oQlr/r06pCM+slDOr4myuI1ivkRmp+3dVpJDfZt2DmaPJ2wkx+ZZuMQ==", "dev": true, "requires": { "bluebird": "^3.3.0", @@ -5318,7 +5318,7 @@ "graceful-fs": "^4.1.2", "http-proxy": "^1.13.0", "isbinaryfile": "^3.0.0", - "lodash": "^4.17.11", + "lodash": "^4.17.14", "log4js": "^4.0.0", "mime": "^2.3.1", "minimatch": "^3.0.2", @@ -5375,9 +5375,9 @@ } }, "core-js": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.1.4.tgz", - "integrity": "sha512-YNZN8lt82XIMLnLirj9MhKDFZHalwzzrL9YLt6eb0T5D0EDl4IQ90IGkua8mHbnxNrkj1d8hbdizMc0Qmg1WnQ==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.2.1.tgz", + "integrity": "sha512-Qa5XSVefSVPRxy2XfUC13WbvqkxhkwB3ve+pgCQveNgYzbM/UxZeu1dcOX/xr4UmfUd+muuvsaxilQzCyUurMw==", "dev": true }, "fill-range": { @@ -5429,16 +5429,10 @@ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, "readdirp": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.1.1.tgz", - "integrity": "sha512-XXdSXZrQuvqoETj50+JAitxz1UPdt5dupjT6T5nVB+WvjMv2XKYj+s7hPeAVCXvmJrL36O4YYyWlIC3an2ePiQ==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.1.2.tgz", + "integrity": "sha512-8rhl0xs2cxfVsqzreYCvs8EwBfn/DhVdqtoLmw19uI3SC5avYX9teCurlErfpPXGmYtMHReGaP2RsLnFvz/lnw==", "dev": true, "requires": { "picomatch": "^2.0.4" diff --git a/js/package.json b/js/package.json index b1a54febe..4022fe7f7 100644 --- a/js/package.json +++ b/js/package.json @@ -32,7 +32,7 @@ "@babel/preset-env": "^7.5.5", "babel-loader": "^8.0.6", "css-loader": "^3.2.0", - "karma": "^4.2.0", + "karma": "^4.3.0", "mini-css-extract-plugin": "^0.8.0", "style-loader": "^1.0.0", "uglifyjs-webpack-plugin": "^2.2.0", From 925424968f4eee2b29b11b434fba6d696f52c029 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2019 08:29:21 +0000 Subject: [PATCH 08/77] Bump webpack-merge from 4.2.1 to 4.2.2 in /js Bumps [webpack-merge](https://github.com/survivejs/webpack-merge) from 4.2.1 to 4.2.2. - [Release notes](https://github.com/survivejs/webpack-merge/releases) - [Changelog](https://github.com/survivejs/webpack-merge/blob/master/CHANGELOG.md) - [Commits](https://github.com/survivejs/webpack-merge/compare/v4.2.1...v4.2.2) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 16 ++++++++++++---- js/package.json | 2 +- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index f4f0cd504..e730f5a1a 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -9079,12 +9079,20 @@ } }, "webpack-merge": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.1.tgz", - "integrity": "sha512-4p8WQyS98bUJcCvFMbdGZyZmsKuWjWVnVHnAS3FFg0HDaRVrPbkivx2RYCre8UiemD67RsiFFLfn4JhLAin8Vw==", + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz", + "integrity": "sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==", "dev": true, "requires": { - "lodash": "^4.17.5" + "lodash": "^4.17.15" + }, + "dependencies": { + "lodash": { + "version": "4.17.15", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", + "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==", + "dev": true + } } }, "webpack-sources": { diff --git a/js/package.json b/js/package.json index 4022fe7f7..eb2b724ba 100644 --- a/js/package.json +++ b/js/package.json @@ -42,7 +42,7 @@ "vue-template-compiler": "^2.6.10", "webpack": "^4.39.2", "webpack-cli": "^3.3.7", - "webpack-merge": "^4.2.1" + "webpack-merge": "^4.2.2" }, "scripts": { "build": "NODE_ENV=production ./node_modules/webpack-cli/bin/cli.js --mode production --config webpack.prod.config.js", From 192fd6a924303fc897c611f57c1b3ff35461b334 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2019 09:21:45 +0000 Subject: [PATCH 09/77] Bump webpack from 4.39.2 to 4.39.3 in /js Bumps [webpack](https://github.com/webpack/webpack) from 4.39.2 to 4.39.3. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.39.2...v4.39.3) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 24 ++++++++++++------------ js/package.json | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index e730f5a1a..31df97056 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -2211,9 +2211,9 @@ "dev": true }, "cacache": { - "version": "12.0.2", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.2.tgz", - "integrity": "sha512-ifKgxH2CKhJEg6tNdAwziu6Q33EvuG26tYcda6PT3WKisZcYDXsnEdnRv67Po3yCzFfaSoMjGZzJyD2c3DT1dg==", + "version": "12.0.3", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.3.tgz", + "integrity": "sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw==", "dev": true, "requires": { "bluebird": "^3.5.5", @@ -2425,9 +2425,9 @@ } }, "chokidar": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.6.tgz", - "integrity": "sha512-V2jUo67OKkc6ySiRpJrjlpJKl9kDuG+Xb8VgsGzb+aEouhgS1D0weyPU4lEzdAcsCAvrih2J2BqyXqHWvVLw5g==", + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", "dev": true, "requires": { "anymatch": "^2.0.0", @@ -7892,9 +7892,9 @@ "integrity": "sha1-JLFUOXOrRCiW2a02fdnL2/r+kYs=" }, "terser": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.1.4.tgz", - "integrity": "sha512-+ZwXJvdSwbd60jG0Illav0F06GDJF0R4ydZ21Q3wGAFKoBGyJGo34F63vzJHgvYxc1ukOtIjvwEvl9MkjzM6Pg==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.2.1.tgz", + "integrity": "sha512-cGbc5utAcX4a9+2GGVX4DsenG6v0x3glnDi5hx8816X1McEAwPlPgRtXPJzSBsbpILxZ8MQMT0KvArLuE0HP5A==", "dev": true, "requires": { "commander": "^2.20.0", @@ -8921,9 +8921,9 @@ } }, "webpack": { - "version": "4.39.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.39.2.tgz", - "integrity": "sha512-AKgTfz3xPSsEibH00JfZ9sHXGUwIQ6eZ9tLN8+VLzachk1Cw2LVmy+4R7ZiwTa9cZZ15tzySjeMui/UnSCAZhA==", + "version": "4.39.3", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.39.3.tgz", + "integrity": "sha512-BXSI9M211JyCVc3JxHWDpze85CvjC842EvpRsVTc/d15YJGlox7GIDd38kJgWrb3ZluyvIjgenbLDMBQPDcxYQ==", "dev": true, "requires": { "@webassemblyjs/ast": "1.8.5", diff --git a/js/package.json b/js/package.json index eb2b724ba..bfa98bbf9 100644 --- a/js/package.json +++ b/js/package.json @@ -40,7 +40,7 @@ "vue-loader": "^15.7.1", "vue-style-loader": "^4.1.2", "vue-template-compiler": "^2.6.10", - "webpack": "^4.39.2", + "webpack": "^4.39.3", "webpack-cli": "^3.3.7", "webpack-merge": "^4.2.2" }, From dc8f01d8878d263cccaab7d53c0e8c842499baeb Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 31 Aug 2019 02:23:28 +0000 Subject: [PATCH 10/77] [tx-robot] updated from transifex --- l10n/tr.js | 4 ++-- l10n/tr.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/l10n/tr.js b/l10n/tr.js index 1ee085540..08e2e3a5c 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -82,8 +82,8 @@ OC.L10N.register( "The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" kartı \"%s\" zamanında %s tarafından size atandı.", "{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} size \"%s\" kartını \"%s\" zamanında atadı.", "The card \"%s\" on \"%s\" has reached its due date." : "\"%s\" kartı \"%s\" zamanında son kullanma tarihine ulaştı.", - "%s has mentioned you in a comment on \"%s\"." : "%s kullanıcısı, \"%s\" üzerindeki bir yorumda sizden bahsetti.", - "{user} has mentioned you in a comment on \"%s\"." : "{user} kullanıcısı, \"%s\" üzerindeki bir yorumda sizden bahsetti.", + "%s has mentioned you in a comment on \"%s\"." : "%s kullanıcısı, \"%s\" üzerindeki bir yorumda sizi andı", + "{user} has mentioned you in a comment on \"%s\"." : "{user} kullanıcısı, \"%s\" üzerindeki bir yorumda sizi andı", "The board \"%s\" has been shared with you by %s." : "\"%s\" panosu %s tarafından sizinle paylaşıldı.", "{user} has shared the board %s with you." : "{user} sizinle %s panosunu paylaştı.", "No data was provided to create an attachment." : "Bir ek dosyası oluşturmak için herhangi bir veri sağlanmadı.", diff --git a/l10n/tr.json b/l10n/tr.json index a87e27514..da83de5bc 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -80,8 +80,8 @@ "The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" kartı \"%s\" zamanında %s tarafından size atandı.", "{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} size \"%s\" kartını \"%s\" zamanında atadı.", "The card \"%s\" on \"%s\" has reached its due date." : "\"%s\" kartı \"%s\" zamanında son kullanma tarihine ulaştı.", - "%s has mentioned you in a comment on \"%s\"." : "%s kullanıcısı, \"%s\" üzerindeki bir yorumda sizden bahsetti.", - "{user} has mentioned you in a comment on \"%s\"." : "{user} kullanıcısı, \"%s\" üzerindeki bir yorumda sizden bahsetti.", + "%s has mentioned you in a comment on \"%s\"." : "%s kullanıcısı, \"%s\" üzerindeki bir yorumda sizi andı", + "{user} has mentioned you in a comment on \"%s\"." : "{user} kullanıcısı, \"%s\" üzerindeki bir yorumda sizi andı", "The board \"%s\" has been shared with you by %s." : "\"%s\" panosu %s tarafından sizinle paylaşıldı.", "{user} has shared the board %s with you." : "{user} sizinle %s panosunu paylaştı.", "No data was provided to create an attachment." : "Bir ek dosyası oluşturmak için herhangi bir veri sağlanmadı.", From 87d4235af4f88b4439634e3b7b155c87bd6931de Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 1 Sep 2019 01:13:48 +0000 Subject: [PATCH 11/77] Bump nextcloud-vue from 0.12.1 to 0.12.2 in /js Bumps [nextcloud-vue](https://github.com/nextcloud/nextcloud-vue) from 0.12.1 to 0.12.2. - [Release notes](https://github.com/nextcloud/nextcloud-vue/releases) - [Commits](https://github.com/nextcloud/nextcloud-vue/compare/v0.12.1...v0.12.2) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 6 +++--- js/package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 31df97056..ea4979a4f 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -6011,9 +6011,9 @@ } }, "nextcloud-vue": { - "version": "0.12.1", - "resolved": "https://registry.npmjs.org/nextcloud-vue/-/nextcloud-vue-0.12.1.tgz", - "integrity": "sha512-RZhHUK/sqRIFRDNNUbqC20x7KTJvhjUCeSC6FE3DLTem5lsoVHwZaHLtGDkkHPzRyhwhoA2uV5aC8t2spCXriA==", + "version": "0.12.2", + "resolved": "https://registry.npmjs.org/nextcloud-vue/-/nextcloud-vue-0.12.2.tgz", + "integrity": "sha512-FMyDZ4PcXF2T0SQNXV13bncH/1v0bSe0t6dTwIOSaxiONknWjJEbuJSqwh1ZlcqzWSxFlIKvJn1/Jk2e/UO6aA==", "requires": { "@babel/polyfill": "^7.4.4", "escape-html": "^1.0.3", diff --git a/js/package.json b/js/package.json index bfa98bbf9..bfce4618b 100644 --- a/js/package.json +++ b/js/package.json @@ -17,7 +17,7 @@ "markdown-it": "^9.1.0", "markdown-it-link-target": "^1.0.2", "nextcloud-axios": "^0.2.0", - "nextcloud-vue": "^0.12.1", + "nextcloud-vue": "^0.12.2", "nextcloud-vue-collections": "^0.5.6", "ng-infinite-scroll": "^1.3.0", "ng-sortable": "^1.3.8", From ce8ccc9b9ab0d441ea7386d6e81732af8a86dc0f Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2019 13:35:53 +0000 Subject: [PATCH 12/77] Bump nextcloud-axios from 0.2.0 to 0.2.1 in /js Bumps [nextcloud-axios](https://github.com/ChristophWurst/nextcloud-axios) from 0.2.0 to 0.2.1. - [Release notes](https://github.com/ChristophWurst/nextcloud-axios/releases) - [Commits](https://github.com/ChristophWurst/nextcloud-axios/compare/v0.2.0...v0.2.1) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 6 +++--- js/package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index ea4979a4f..c682d87eb 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -6003,9 +6003,9 @@ "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==" }, "nextcloud-axios": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/nextcloud-axios/-/nextcloud-axios-0.2.0.tgz", - "integrity": "sha512-OLDeZfub4pMkIKeXAPGqtFyV/xBbuOO5CSRgLvkT1O+HD4XZKP8+ywhbzXNBxA0ywLnMax3VsmPfQ7lvgy1m0w==", + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/nextcloud-axios/-/nextcloud-axios-0.2.1.tgz", + "integrity": "sha512-gzW/TXXGkxSgaIhLyPGOZ8Gs8t43i7cUpZNtDQh/UGecSn62AqjpSms+8YRw0NSJ0nhOdlqhFCFw/wb9XfYVjg==", "requires": { "axios": "^0.19.0" } diff --git a/js/package.json b/js/package.json index bfce4618b..f54ad6937 100644 --- a/js/package.json +++ b/js/package.json @@ -16,7 +16,7 @@ "babel-polyfill": "^6.26.0", "markdown-it": "^9.1.0", "markdown-it-link-target": "^1.0.2", - "nextcloud-axios": "^0.2.0", + "nextcloud-axios": "^0.2.1", "nextcloud-vue": "^0.12.2", "nextcloud-vue-collections": "^0.5.6", "ng-infinite-scroll": "^1.3.0", From 9b1b62b8121a05d39c64b202f62a9f860447de51 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 4 Sep 2019 02:25:35 +0000 Subject: [PATCH 13/77] [tx-robot] updated from transifex --- l10n/sl.js | 149 +++++++++++++++++++++++++++++++++++++++++---------- l10n/sl.json | 149 +++++++++++++++++++++++++++++++++++++++++---------- 2 files changed, 242 insertions(+), 56 deletions(-) diff --git a/l10n/sl.js b/l10n/sl.js index 69b03e779..c25dd4504 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -1,50 +1,143 @@ OC.L10N.register( "deck", { - "Please provide a content for your comment." : "Priskrbite vsebino za svoj komentar.", - "Hours" : "Ure", + "Please provide a content for your comment." : "Vpišite vsebino opombe.", + "Posting the comment failed." : "Objava opombe je spodletela.", + "The comment has been deleted" : "Opomba je bila izbrisana", + "The associated stack is deleted as well, it will be restored as well." : "Povezan paket nalog, ki je bil prav tako izbrisan, bo tudi obnovljen.", + "Restore associated stack" : "Obnovi povezan paket nalog", + "Remove user from card" : "Odstrani uporabnika z naloge", + "Hours" : "Ura", "Minutes" : "Minute", + "Link to a board" : "Povezava do zbirke", + "Maximum file size of {size} exceeded" : "Omejitev velikosti datoteke {size} je prekoračena.", + "File already exists" : "Datoteka že obstaja", + "You have created a new board {board}" : "Ustvarite novo zbirko {board}", + "{user} has created a new board {board}" : "Uporabnik {user} ustvari novo zbirko {board}", + "You have deleted the board {board}" : "Izbrišete zbirko {board}", + "{user} has deleted the board {board}" : "Uporabnik {user} izbriše zbirko {board}", + "You have restored the board {board}" : "Obnovite izbrisano zbirko {board}", + "{user} has restored the board {board}" : "Uporabnik {user} obnovi izbrisano zbirko {board}", + "You have shared the board {board} with {acl}" : "Omogočite souporabo zbirke {board} z uporabnikom {acl}", + "{user} has shared the board {board} with {acl}" : "Uporabnik {user} omogoči souporabo zbirke {board} z uporabnikom {acl}", + "You have renamed the board {before} to {board}" : "Zbirko {before} preimenujete v {board}", + "{user} has renamed the board {before} to {board}" : "Uporabnik {user} preimenuje zbirko {before} v {board}", + "You have archived the board {board}" : "Arhivirate zbirko {board}", + "{user} has archived the board {before}" : "Uporabnik {user} arhivira zbirko {board}", + "You have unarchived the board {board}" : "Povrnete zbirko {board} iz arhiva", + "{user} has unarchived the board {before}" : "Uporabnik {user} povrne zbirko {board} iz arhiva", + "You have created a new stack {stack} on board {board}" : "Ustvarite nov paket nalog {stack} v zbirki {board}", + "{user} has created a new stack {stack} on board {board}" : "Uporabnik {user} ustvari nov paket nalog {stack} v zbirki {board}", + "You have renamed stack {before} to {stack} on board {board}" : "Paket nalog {before} v zbirki {board} preimenujete v {stack}", + "{user} has renamed stack {before} to {stack} on board {board}" : "Uporabnik {user} preimenuje paket {before} v zbirki {board} v {stack}", + "You have deleted stack {stack} on board {board}" : "Izbrišete paket nalog {stack} v zbirki {board}", + "{user} has deleted stack {stack} on board {board}" : "Uporabnik {user} izbriše paket nalog {stack} v zbirki {board}", + "You have created card {card} in stack {stack} on board {board}" : "Ustvarite nalogo {card} v paketu {stack} zbirke {board}", + "{user} has created card {card} in stack {stack} on board {board}" : "Uporabnik {user} ustvari nalogo {card} v paketu {stack} zbirke {board}", + "You have commented on card {card}" : "Vpišete opombo k nalogi {card}", + "{user} has commented on card {card}" : "Uporabnik {user} vpiše opombo k nalogi {card}", + "A card description inside the Deck app has been changed" : "Spremenjen jeopis ene izmed nalog v programu Deck", + "Deck" : "Deck", + "Changes in the Deck app" : "Spremembe v programu Deck", "Personal" : "Osebno", - "Finished" : "Zaključeno", + "Finished" : "Končano", "To review" : "Za pregled", - "Action needed" : "Operacija je potrebna", + "Action needed" : "Čaka na odziv", "Later" : "Kasneje", - "Show archived cards" : "Prikaži arhivirane kartice", - "Hide archived cards" : "Skrij arhivirane kartice", - "All Boards" : "Vse table", - "Archived boards" : "Arhivirane table", - "Enter a card title" : "Vpiši naslov kartice", + "To do" : "Prihajajoče naloge", + "Doing" : "Naloge v teku", + "Done" : "Končane naloge", + "Example Task 3" : "Primer naloge 3", + "Example Task 2" : "Primer naloge 2", + "Example Task 1" : "Primer naloge 1", + "The file was uploaded" : "Datoteka je uspešno poslana.", + "The file was only partially uploaded" : "Datoteka ni bila poslana v celoti", + "No file was uploaded" : "Datoteka ni bila poslana", + "Missing a temporary folder" : "Manjka začasna mapa", + "Could not write file to disk" : "Ni mogoče zapisati datoteke na disk", + "A PHP extension stopped the file upload" : "Razširitev PHP onemogoča pošiljanje datoteke", + "Select board" : "Izbor zbirke", + "Add a new stack" : "Dodaj nov paket nalog", + "Submit" : "Objavi", + "Show archived cards" : "Prikaži arhivirane naloge", + "Hide archived cards" : "Skrij arhivirane naloge", + "Toggle compact mode" : "Preklopi način prikaza", + "Show board details" : "Pokaži podrobnosti zbirke", + "All Boards" : "Vse zbirke", + "Archived boards" : "Arhivirane zbirke", + "Share board" : "Souporaba zbirke", + "Archived cards" : "Arhivirane naloge", + "Actions" : "Dejanja", + "Assign card to me" : "Nalogo dodeli meni", + "Unassign card from me" : "Odstrani me z naloge", + "Archive card" : "Arhiviraj nalogo", + "Unarchive card" : "Povrni nalogo", + "Delete card" : "Izbriši nalogo", + "Enter a card title" : "Naslov naloge", + "Add card" : "Dodaj nalogo", + "Close" : "Zapri", "Sharing" : "Souporaba", "Tags" : "Oznake", - "Select users or groups to share with" : "Izberi uporabnike ali skupine s katerimi želiš deliti", - "No matching user or group found." : "Ne najdem ujemajočega uporabnika ali skupine.", + "Deleted items" : "Izbrisani predmeti", + "Timeline" : "Časovnica", + "Select users or groups to share with" : "Uporabniki in skupine za souporabo", + "Group" : "Skupina", + "Circle" : "Krog", + "No matching user or group found." : "Ni uporabnikov ali skupin s tem nazivom.", + "Loading" : "Poteka nalaganje ...", "Edit" : "Uredi", - "Share" : "Deli", - "Manage" : "Upravljaj", - "Discard share" : "Prekliči deljenje", + "Share" : "Souporaba", + "Manage" : "Upravljanje", + "Discard share" : "Prekliči souporabo", + "Sharing has been disabled for your account." : "Za ta račun je možnost dodeljevanja souporabe onemogočena.", + "Update tag" : "Posodobi oznako", + "Edit tag" : "Uredi oznako", + "Delete tag" : "Izbriši oznako", + "Create" : "Ustvari", "Create a new tag" : "Ustvari novo oznako", + "Deleted stacks" : "Izbrisani paketi nalog", + "Deleted cards" : "Izbrisane naloge", + "Status" : "Stanje", "Title" : "Naslov", "Members" : "Člani", - "More actions" : "Več akcij", - "Edit board" : "Uredi tablo", - "Archive board" : "Arhiviraj tablo", - "Unarchive board" : "Odarhiviraj tablo", - "Delete board" : "Izbriši tablo", - "Create new board" : "Ustvari novo tablo", - "New board title" : "Naslov nove table", + "More actions" : "Več možnosti", + "Edit board" : "Uredi zbirko", + "Archive board" : "Arhiviraj zbirko", + "Unarchive board" : "Povrni zbirko", + "Delete board" : "Izbriši zbirko", + "Update board" : "Posodobi zbirko", + "Reset board" : "Ponastavi zbirko", + "Create new board" : "Ustvari novo zbirko", + "New board title" : "Naslov nove zbirke", + "Create board" : "Ustvari zbirko", + "Select an attachment" : "Izbor priloge", "Cancel upload" : "Prekliči pošiljanje", "by" : "s strani", + "Undo file deletion" : "Razveljavi brisanje datoteke", + "Delete attachment" : "Izbriši prilogo", "Modified:" : "Spremenjeno:", "Created:" : "Ustvarjeno:", - "Due date" : "Datum poteka", - "Click to set" : "Klikni za nastaviti", - "Remove due date" : "Odstrani datum poteka", + "Choose a tag" : "Izbor oznake", + "Add a tag" : "Dodaj oznako", + "Select tags" : "Izbor oznak", + "Assign users" : "Dodeli uporabnike", + "Choose a user to assign" : "Izbor uporabnika za nalogo", + "Assign this card to a user" : "Dodelitev naloge uporabniku", + "Due date" : "Datum preteka", + "Click to set" : "Klik za nastavitev", + "Remove due date" : "Odstrani datum preteka", "Description" : "Opis", + "Attachments" : "Priloge", "Saved" : "Shranjeno", + "Unsaved changes" : "Neshranjene spremembe", + "Insert attachment" : "Vstavi prilogo", "Formatting help" : "Pomoč pri oblikovanju", - "Add a card description…" : "Dodaj opis kartice...", - "Shared boards" : "Deljene table", - "Move board to archive" : "Premakni tablo v arhiv", - "Create a new board" : "Ustvari novo tablo" + "Upload attachment" : "Pošlji prilogo", + "Add a card description…" : "Dodaj opis naloge ...", + "Shared boards" : "Zbirke v souporabi", + "Move board to archive" : "Premakni zbirko v arhiv", + "Create a new board" : "Ustvari novo zbirko", + "Settings" : "Nastavitve", + "Limit deck to groups" : "Omeji uporabo izbranim skupinam" }, "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/l10n/sl.json b/l10n/sl.json index 5f08e38ca..a0fb83edd 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -1,48 +1,141 @@ { "translations": { - "Please provide a content for your comment." : "Priskrbite vsebino za svoj komentar.", - "Hours" : "Ure", + "Please provide a content for your comment." : "Vpišite vsebino opombe.", + "Posting the comment failed." : "Objava opombe je spodletela.", + "The comment has been deleted" : "Opomba je bila izbrisana", + "The associated stack is deleted as well, it will be restored as well." : "Povezan paket nalog, ki je bil prav tako izbrisan, bo tudi obnovljen.", + "Restore associated stack" : "Obnovi povezan paket nalog", + "Remove user from card" : "Odstrani uporabnika z naloge", + "Hours" : "Ura", "Minutes" : "Minute", + "Link to a board" : "Povezava do zbirke", + "Maximum file size of {size} exceeded" : "Omejitev velikosti datoteke {size} je prekoračena.", + "File already exists" : "Datoteka že obstaja", + "You have created a new board {board}" : "Ustvarite novo zbirko {board}", + "{user} has created a new board {board}" : "Uporabnik {user} ustvari novo zbirko {board}", + "You have deleted the board {board}" : "Izbrišete zbirko {board}", + "{user} has deleted the board {board}" : "Uporabnik {user} izbriše zbirko {board}", + "You have restored the board {board}" : "Obnovite izbrisano zbirko {board}", + "{user} has restored the board {board}" : "Uporabnik {user} obnovi izbrisano zbirko {board}", + "You have shared the board {board} with {acl}" : "Omogočite souporabo zbirke {board} z uporabnikom {acl}", + "{user} has shared the board {board} with {acl}" : "Uporabnik {user} omogoči souporabo zbirke {board} z uporabnikom {acl}", + "You have renamed the board {before} to {board}" : "Zbirko {before} preimenujete v {board}", + "{user} has renamed the board {before} to {board}" : "Uporabnik {user} preimenuje zbirko {before} v {board}", + "You have archived the board {board}" : "Arhivirate zbirko {board}", + "{user} has archived the board {before}" : "Uporabnik {user} arhivira zbirko {board}", + "You have unarchived the board {board}" : "Povrnete zbirko {board} iz arhiva", + "{user} has unarchived the board {before}" : "Uporabnik {user} povrne zbirko {board} iz arhiva", + "You have created a new stack {stack} on board {board}" : "Ustvarite nov paket nalog {stack} v zbirki {board}", + "{user} has created a new stack {stack} on board {board}" : "Uporabnik {user} ustvari nov paket nalog {stack} v zbirki {board}", + "You have renamed stack {before} to {stack} on board {board}" : "Paket nalog {before} v zbirki {board} preimenujete v {stack}", + "{user} has renamed stack {before} to {stack} on board {board}" : "Uporabnik {user} preimenuje paket {before} v zbirki {board} v {stack}", + "You have deleted stack {stack} on board {board}" : "Izbrišete paket nalog {stack} v zbirki {board}", + "{user} has deleted stack {stack} on board {board}" : "Uporabnik {user} izbriše paket nalog {stack} v zbirki {board}", + "You have created card {card} in stack {stack} on board {board}" : "Ustvarite nalogo {card} v paketu {stack} zbirke {board}", + "{user} has created card {card} in stack {stack} on board {board}" : "Uporabnik {user} ustvari nalogo {card} v paketu {stack} zbirke {board}", + "You have commented on card {card}" : "Vpišete opombo k nalogi {card}", + "{user} has commented on card {card}" : "Uporabnik {user} vpiše opombo k nalogi {card}", + "A card description inside the Deck app has been changed" : "Spremenjen jeopis ene izmed nalog v programu Deck", + "Deck" : "Deck", + "Changes in the Deck app" : "Spremembe v programu Deck", "Personal" : "Osebno", - "Finished" : "Zaključeno", + "Finished" : "Končano", "To review" : "Za pregled", - "Action needed" : "Operacija je potrebna", + "Action needed" : "Čaka na odziv", "Later" : "Kasneje", - "Show archived cards" : "Prikaži arhivirane kartice", - "Hide archived cards" : "Skrij arhivirane kartice", - "All Boards" : "Vse table", - "Archived boards" : "Arhivirane table", - "Enter a card title" : "Vpiši naslov kartice", + "To do" : "Prihajajoče naloge", + "Doing" : "Naloge v teku", + "Done" : "Končane naloge", + "Example Task 3" : "Primer naloge 3", + "Example Task 2" : "Primer naloge 2", + "Example Task 1" : "Primer naloge 1", + "The file was uploaded" : "Datoteka je uspešno poslana.", + "The file was only partially uploaded" : "Datoteka ni bila poslana v celoti", + "No file was uploaded" : "Datoteka ni bila poslana", + "Missing a temporary folder" : "Manjka začasna mapa", + "Could not write file to disk" : "Ni mogoče zapisati datoteke na disk", + "A PHP extension stopped the file upload" : "Razširitev PHP onemogoča pošiljanje datoteke", + "Select board" : "Izbor zbirke", + "Add a new stack" : "Dodaj nov paket nalog", + "Submit" : "Objavi", + "Show archived cards" : "Prikaži arhivirane naloge", + "Hide archived cards" : "Skrij arhivirane naloge", + "Toggle compact mode" : "Preklopi način prikaza", + "Show board details" : "Pokaži podrobnosti zbirke", + "All Boards" : "Vse zbirke", + "Archived boards" : "Arhivirane zbirke", + "Share board" : "Souporaba zbirke", + "Archived cards" : "Arhivirane naloge", + "Actions" : "Dejanja", + "Assign card to me" : "Nalogo dodeli meni", + "Unassign card from me" : "Odstrani me z naloge", + "Archive card" : "Arhiviraj nalogo", + "Unarchive card" : "Povrni nalogo", + "Delete card" : "Izbriši nalogo", + "Enter a card title" : "Naslov naloge", + "Add card" : "Dodaj nalogo", + "Close" : "Zapri", "Sharing" : "Souporaba", "Tags" : "Oznake", - "Select users or groups to share with" : "Izberi uporabnike ali skupine s katerimi želiš deliti", - "No matching user or group found." : "Ne najdem ujemajočega uporabnika ali skupine.", + "Deleted items" : "Izbrisani predmeti", + "Timeline" : "Časovnica", + "Select users or groups to share with" : "Uporabniki in skupine za souporabo", + "Group" : "Skupina", + "Circle" : "Krog", + "No matching user or group found." : "Ni uporabnikov ali skupin s tem nazivom.", + "Loading" : "Poteka nalaganje ...", "Edit" : "Uredi", - "Share" : "Deli", - "Manage" : "Upravljaj", - "Discard share" : "Prekliči deljenje", + "Share" : "Souporaba", + "Manage" : "Upravljanje", + "Discard share" : "Prekliči souporabo", + "Sharing has been disabled for your account." : "Za ta račun je možnost dodeljevanja souporabe onemogočena.", + "Update tag" : "Posodobi oznako", + "Edit tag" : "Uredi oznako", + "Delete tag" : "Izbriši oznako", + "Create" : "Ustvari", "Create a new tag" : "Ustvari novo oznako", + "Deleted stacks" : "Izbrisani paketi nalog", + "Deleted cards" : "Izbrisane naloge", + "Status" : "Stanje", "Title" : "Naslov", "Members" : "Člani", - "More actions" : "Več akcij", - "Edit board" : "Uredi tablo", - "Archive board" : "Arhiviraj tablo", - "Unarchive board" : "Odarhiviraj tablo", - "Delete board" : "Izbriši tablo", - "Create new board" : "Ustvari novo tablo", - "New board title" : "Naslov nove table", + "More actions" : "Več možnosti", + "Edit board" : "Uredi zbirko", + "Archive board" : "Arhiviraj zbirko", + "Unarchive board" : "Povrni zbirko", + "Delete board" : "Izbriši zbirko", + "Update board" : "Posodobi zbirko", + "Reset board" : "Ponastavi zbirko", + "Create new board" : "Ustvari novo zbirko", + "New board title" : "Naslov nove zbirke", + "Create board" : "Ustvari zbirko", + "Select an attachment" : "Izbor priloge", "Cancel upload" : "Prekliči pošiljanje", "by" : "s strani", + "Undo file deletion" : "Razveljavi brisanje datoteke", + "Delete attachment" : "Izbriši prilogo", "Modified:" : "Spremenjeno:", "Created:" : "Ustvarjeno:", - "Due date" : "Datum poteka", - "Click to set" : "Klikni za nastaviti", - "Remove due date" : "Odstrani datum poteka", + "Choose a tag" : "Izbor oznake", + "Add a tag" : "Dodaj oznako", + "Select tags" : "Izbor oznak", + "Assign users" : "Dodeli uporabnike", + "Choose a user to assign" : "Izbor uporabnika za nalogo", + "Assign this card to a user" : "Dodelitev naloge uporabniku", + "Due date" : "Datum preteka", + "Click to set" : "Klik za nastavitev", + "Remove due date" : "Odstrani datum preteka", "Description" : "Opis", + "Attachments" : "Priloge", "Saved" : "Shranjeno", + "Unsaved changes" : "Neshranjene spremembe", + "Insert attachment" : "Vstavi prilogo", "Formatting help" : "Pomoč pri oblikovanju", - "Add a card description…" : "Dodaj opis kartice...", - "Shared boards" : "Deljene table", - "Move board to archive" : "Premakni tablo v arhiv", - "Create a new board" : "Ustvari novo tablo" + "Upload attachment" : "Pošlji prilogo", + "Add a card description…" : "Dodaj opis naloge ...", + "Shared boards" : "Zbirke v souporabi", + "Move board to archive" : "Premakni zbirko v arhiv", + "Create a new board" : "Ustvari novo zbirko", + "Settings" : "Nastavitve", + "Limit deck to groups" : "Omeji uporabo izbranim skupinam" },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" } \ No newline at end of file From d6645a0febe56913142206f034bc2c8b63830d56 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 7 Sep 2019 02:24:29 +0000 Subject: [PATCH 14/77] [tx-robot] updated from transifex --- l10n/lv.js | 2 ++ l10n/lv.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/l10n/lv.js b/l10n/lv.js index 70d277858..2cf56d23b 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -10,6 +10,7 @@ OC.L10N.register( "Hide archived cards" : "Slēpt arhivētās kartes", "Enter a card title" : "Ievadiet kartes nosaukumu", "Sharing" : "Koplietošana", + "Tags" : "Birkas", "Select users or groups to share with" : "Atlasiet lietotājus vai grupas ar kuriem koplietot", "Edit" : "Rediģēt", "Share" : "Koplietot", @@ -17,6 +18,7 @@ OC.L10N.register( "Members" : "Biedri", "Modified:" : "Modificēta:", "Created:" : "Izveidota:", + "Select tags" : "Izvēlies birkas", "Saved" : "Saglabāts" }, "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 5058a47df..ad25748d4 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -8,6 +8,7 @@ "Hide archived cards" : "Slēpt arhivētās kartes", "Enter a card title" : "Ievadiet kartes nosaukumu", "Sharing" : "Koplietošana", + "Tags" : "Birkas", "Select users or groups to share with" : "Atlasiet lietotājus vai grupas ar kuriem koplietot", "Edit" : "Rediģēt", "Share" : "Koplietot", @@ -15,6 +16,7 @@ "Members" : "Biedri", "Modified:" : "Modificēta:", "Created:" : "Izveidota:", + "Select tags" : "Izvēlies birkas", "Saved" : "Saglabāts" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" } \ No newline at end of file From 62b6115af06e5c7d7a645a84a3db5c072e0effd4 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 8 Sep 2019 01:14:30 +0000 Subject: [PATCH 15/77] Bump @babel/polyfill from 7.4.4 to 7.6.0 in /js Bumps [@babel/polyfill](https://github.com/babel/babel) from 7.4.4 to 7.6.0. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.4.4...v7.6.0) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 18 +++++++++--------- js/package.json | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index c682d87eb..f4698878e 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -1040,23 +1040,23 @@ } }, "@babel/polyfill": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.4.4.tgz", - "integrity": "sha512-WlthFLfhQQhh+A2Gn5NSFl0Huxz36x86Jn+E9OW7ibK8edKPq+KLy4apM1yDpQ8kJOVi1OVjpP4vSDLdrI04dg==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.6.0.tgz", + "integrity": "sha512-q5BZJI0n/B10VaQQvln1IlDK3BTBJFbADx7tv+oXDPIDZuTo37H5Adb9jhlXm/fEN4Y7/64qD9mnrJJG7rmaTw==", "requires": { "core-js": "^2.6.5", "regenerator-runtime": "^0.13.2" }, "dependencies": { "core-js": { - "version": "2.6.5", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.5.tgz", - "integrity": "sha512-klh/kDpwX8hryYL14M9w/xei6vrv6sE8gTHDG7/T/+SEovB/G4ejwcfE/CBzO6Edsu+OETZMZ3wcX/EjUkrl5A==" + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.9.tgz", + "integrity": "sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A==" }, "regenerator-runtime": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.2.tgz", - "integrity": "sha512-S/TQAZJO+D3m9xeN1WTI8dLKBBiRgXBlTJvbWjCThHWZj9EvHK70Ff50/tYj2J/fvBY6JtFVwRuazHN2E7M9BA==" + "version": "0.13.3", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz", + "integrity": "sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==" } } }, diff --git a/js/package.json b/js/package.json index f54ad6937..ed69c138b 100644 --- a/js/package.json +++ b/js/package.json @@ -28,7 +28,7 @@ "devDependencies": { "@babel/core": "^7.5.5", "@babel/plugin-syntax-dynamic-import": "^7.2.0", - "@babel/polyfill": "^7.4.4", + "@babel/polyfill": "^7.6.0", "@babel/preset-env": "^7.5.5", "babel-loader": "^8.0.6", "css-loader": "^3.2.0", From a6d4d1f93e15121cbe3007810985a628c92b4b01 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 8 Sep 2019 02:26:36 +0000 Subject: [PATCH 16/77] [tx-robot] updated from transifex --- l10n/de_DE.js | 8 ++++---- l10n/de_DE.json | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 3d9ec4a0e..892942172 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -2,7 +2,7 @@ OC.L10N.register( "deck", { "Please provide a content for your comment." : "Bitte geben Sie einen Inhalt für Ihren Kommentar an.", - "Posting the comment failed." : "Absenden des Kommentars ist fehlgeschlagen.", + "Posting the comment failed." : "Senden des Kommentars fehlgeschlagen.", "The comment has been deleted" : "Der Kommentar wurde gelöscht", "The associated stack is deleted as well, it will be restored as well." : "Der dazugehörige Stapel wurde auch gelöscht, er wird ebenfalls wiederhergestellt.", "Restore associated stack" : "Dazugehörigen Stapel wiederherstellen", @@ -94,9 +94,9 @@ OC.L10N.register( "To do" : "Offen", "Doing" : "In Arbeit", "Done" : "Erledigt", - "Example Task 3" : "Beispielaufgabe 3", - "Example Task 2" : "Beispielaufgabe 2", - "Example Task 1" : "Beispielaufgabe 1", + "Example Task 3" : "Beispielsaufgabe 3", + "Example Task 2" : "Beispielsaufgabe 2", + "Example Task 1" : "Beispielsaufgabe 1", "The file was uploaded" : "Die Datei wurde hochgeladen", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 7b7a13502..469403d14 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -1,6 +1,6 @@ { "translations": { "Please provide a content for your comment." : "Bitte geben Sie einen Inhalt für Ihren Kommentar an.", - "Posting the comment failed." : "Absenden des Kommentars ist fehlgeschlagen.", + "Posting the comment failed." : "Senden des Kommentars fehlgeschlagen.", "The comment has been deleted" : "Der Kommentar wurde gelöscht", "The associated stack is deleted as well, it will be restored as well." : "Der dazugehörige Stapel wurde auch gelöscht, er wird ebenfalls wiederhergestellt.", "Restore associated stack" : "Dazugehörigen Stapel wiederherstellen", @@ -92,9 +92,9 @@ "To do" : "Offen", "Doing" : "In Arbeit", "Done" : "Erledigt", - "Example Task 3" : "Beispielaufgabe 3", - "Example Task 2" : "Beispielaufgabe 2", - "Example Task 1" : "Beispielaufgabe 1", + "Example Task 3" : "Beispielsaufgabe 3", + "Example Task 2" : "Beispielsaufgabe 2", + "Example Task 1" : "Beispielsaufgabe 1", "The file was uploaded" : "Die Datei wurde hochgeladen", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.", From b0e65e7c9e4b25aba2f7ac528a80de04029128cb Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2019 07:32:32 +0000 Subject: [PATCH 17/77] Bump @babel/core from 7.5.5 to 7.6.0 in /js Bumps [@babel/core](https://github.com/babel/babel) from 7.5.5 to 7.6.0. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.5.5...v7.6.0) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 120 +++++++++++++++++++++---------------------- js/package.json | 2 +- 2 files changed, 61 insertions(+), 61 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index f4698878e..a88b4d4f2 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -14,18 +14,18 @@ } }, "@babel/core": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.5.5.tgz", - "integrity": "sha512-i4qoSr2KTtce0DmkuuQBV4AuQgGPUcPXMr9L5MyYAtk06z068lQ10a4O009fe5OB/DfNV+h+qqT7ddNV8UnRjg==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.6.0.tgz", + "integrity": "sha512-FuRhDRtsd6IptKpHXAa+4WPZYY2ZzgowkbLBecEDDSje1X/apG7jQM33or3NdOmjXBKWGOg4JmSiRfUfuTtHXw==", "dev": true, "requires": { "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.5.5", - "@babel/helpers": "^7.5.5", - "@babel/parser": "^7.5.5", - "@babel/template": "^7.4.4", - "@babel/traverse": "^7.5.5", - "@babel/types": "^7.5.5", + "@babel/generator": "^7.6.0", + "@babel/helpers": "^7.6.0", + "@babel/parser": "^7.6.0", + "@babel/template": "^7.6.0", + "@babel/traverse": "^7.6.0", + "@babel/types": "^7.6.0", "convert-source-map": "^1.1.0", "debug": "^4.1.0", "json5": "^2.1.0", @@ -45,12 +45,12 @@ } }, "@babel/generator": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.5.5.tgz", - "integrity": "sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.0.tgz", + "integrity": "sha512-Ms8Mo7YBdMMn1BYuNtKuP/z0TgEIhbcyB8HVR6PPNYp4P61lMsABiS4A3VG1qznjXVCf3r+fVHhm4efTYVsySA==", "dev": true, "requires": { - "@babel/types": "^7.5.5", + "@babel/types": "^7.6.0", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0", @@ -58,43 +58,43 @@ } }, "@babel/parser": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.5.5.tgz", - "integrity": "sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.0.tgz", + "integrity": "sha512-+o2q111WEx4srBs7L9eJmcwi655eD8sXniLqMB93TBK9GrNzGrxDWSjiqz2hLU0Ha8MTXFIP0yd9fNdP+m43ZQ==", "dev": true }, "@babel/template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.4.4.tgz", - "integrity": "sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.6.0.tgz", + "integrity": "sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ==", "dev": true, "requires": { "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.4.4", - "@babel/types": "^7.4.4" + "@babel/parser": "^7.6.0", + "@babel/types": "^7.6.0" } }, "@babel/traverse": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.5.5.tgz", - "integrity": "sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.0.tgz", + "integrity": "sha512-93t52SaOBgml/xY74lsmt7xOR4ufYvhb5c5qiM6lu4J/dWGMAfAh6eKw4PjLes6DI6nQgearoxnFJk60YchpvQ==", "dev": true, "requires": { "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.5.5", + "@babel/generator": "^7.6.0", "@babel/helper-function-name": "^7.1.0", "@babel/helper-split-export-declaration": "^7.4.4", - "@babel/parser": "^7.5.5", - "@babel/types": "^7.5.5", + "@babel/parser": "^7.6.0", + "@babel/types": "^7.6.0", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.13" } }, "@babel/types": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", - "integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", + "version": "7.6.1", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", + "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -474,23 +474,23 @@ } }, "@babel/helpers": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.5.5.tgz", - "integrity": "sha512-nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.6.0.tgz", + "integrity": "sha512-W9kao7OBleOjfXtFGgArGRX6eCP0UEcA2ZWEWNkJdRZnHhW4eEbeswbG3EwaRsnQUAEGWYgMq1HsIXuNNNy2eQ==", "dev": true, "requires": { - "@babel/template": "^7.4.4", - "@babel/traverse": "^7.5.5", - "@babel/types": "^7.5.5" + "@babel/template": "^7.6.0", + "@babel/traverse": "^7.6.0", + "@babel/types": "^7.6.0" }, "dependencies": { "@babel/generator": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.5.5.tgz", - "integrity": "sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.0.tgz", + "integrity": "sha512-Ms8Mo7YBdMMn1BYuNtKuP/z0TgEIhbcyB8HVR6PPNYp4P61lMsABiS4A3VG1qznjXVCf3r+fVHhm4efTYVsySA==", "dev": true, "requires": { - "@babel/types": "^7.5.5", + "@babel/types": "^7.6.0", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0", @@ -498,34 +498,34 @@ } }, "@babel/parser": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.5.5.tgz", - "integrity": "sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.0.tgz", + "integrity": "sha512-+o2q111WEx4srBs7L9eJmcwi655eD8sXniLqMB93TBK9GrNzGrxDWSjiqz2hLU0Ha8MTXFIP0yd9fNdP+m43ZQ==", "dev": true }, "@babel/template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.4.4.tgz", - "integrity": "sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.6.0.tgz", + "integrity": "sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ==", "dev": true, "requires": { "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.4.4", - "@babel/types": "^7.4.4" + "@babel/parser": "^7.6.0", + "@babel/types": "^7.6.0" } }, "@babel/traverse": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.5.5.tgz", - "integrity": "sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.0.tgz", + "integrity": "sha512-93t52SaOBgml/xY74lsmt7xOR4ufYvhb5c5qiM6lu4J/dWGMAfAh6eKw4PjLes6DI6nQgearoxnFJk60YchpvQ==", "dev": true, "requires": { "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.5.5", + "@babel/generator": "^7.6.0", "@babel/helper-function-name": "^7.1.0", "@babel/helper-split-export-declaration": "^7.4.4", - "@babel/parser": "^7.5.5", - "@babel/types": "^7.5.5", + "@babel/parser": "^7.6.0", + "@babel/types": "^7.6.0", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.13" @@ -543,9 +543,9 @@ } }, "@babel/types": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", - "integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", + "version": "7.6.1", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", + "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -7100,9 +7100,9 @@ } }, "resolve": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.11.1.tgz", - "integrity": "sha512-vIpgF6wfuJOZI7KKKSP+HmiKggadPQAdsp5HiC1mvqnfp0gF1vdwgBWZIdrVft9pgqoMFQN+R7BSWZiBxx+BBw==", + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.12.0.tgz", + "integrity": "sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==", "dev": true, "requires": { "path-parse": "^1.0.6" diff --git a/js/package.json b/js/package.json index ed69c138b..9d431819a 100644 --- a/js/package.json +++ b/js/package.json @@ -26,7 +26,7 @@ "vuex": "^3.1.1" }, "devDependencies": { - "@babel/core": "^7.5.5", + "@babel/core": "^7.6.0", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/polyfill": "^7.6.0", "@babel/preset-env": "^7.5.5", From d16c2c2e30a7191299f95139360907e160530412 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2019 08:06:52 +0000 Subject: [PATCH 18/77] Bump nextcloud-vue from 0.12.2 to 0.12.3 in /js Bumps [nextcloud-vue](https://github.com/nextcloud/nextcloud-vue) from 0.12.2 to 0.12.3. - [Release notes](https://github.com/nextcloud/nextcloud-vue/releases) - [Commits](https://github.com/nextcloud/nextcloud-vue/compare/v0.12.2...v0.12.3) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 6 +++--- js/package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index a88b4d4f2..29e10ea04 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -6011,9 +6011,9 @@ } }, "nextcloud-vue": { - "version": "0.12.2", - "resolved": "https://registry.npmjs.org/nextcloud-vue/-/nextcloud-vue-0.12.2.tgz", - "integrity": "sha512-FMyDZ4PcXF2T0SQNXV13bncH/1v0bSe0t6dTwIOSaxiONknWjJEbuJSqwh1ZlcqzWSxFlIKvJn1/Jk2e/UO6aA==", + "version": "0.12.3", + "resolved": "https://registry.npmjs.org/nextcloud-vue/-/nextcloud-vue-0.12.3.tgz", + "integrity": "sha512-qH0s1A9jgsbd9LU+icOIkQIcu9HoY8IW+ELUmP+HJvOdLAjAh3TtEz9ifsy+RcnUUOqASTveSEqxVmXDckwWeQ==", "requires": { "@babel/polyfill": "^7.4.4", "escape-html": "^1.0.3", diff --git a/js/package.json b/js/package.json index 9d431819a..8013f3bc2 100644 --- a/js/package.json +++ b/js/package.json @@ -17,7 +17,7 @@ "markdown-it": "^9.1.0", "markdown-it-link-target": "^1.0.2", "nextcloud-axios": "^0.2.1", - "nextcloud-vue": "^0.12.2", + "nextcloud-vue": "^0.12.3", "nextcloud-vue-collections": "^0.5.6", "ng-infinite-scroll": "^1.3.0", "ng-sortable": "^1.3.8", From 6d537ebaa32f1b71e410bb833a447c237429671f Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2019 09:14:16 +0000 Subject: [PATCH 19/77] Bump @babel/preset-env from 7.5.5 to 7.6.0 in /js Bumps [@babel/preset-env](https://github.com/babel/babel) from 7.5.5 to 7.6.0. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.5.5...v7.6.0) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 205 +++++++++++++++++++++---------------------- js/package.json | 2 +- 2 files changed, 100 insertions(+), 107 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 29e10ea04..cf0a5ed79 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -135,12 +135,12 @@ } }, "@babel/generator": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.5.5.tgz", - "integrity": "sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.0.tgz", + "integrity": "sha512-Ms8Mo7YBdMMn1BYuNtKuP/z0TgEIhbcyB8HVR6PPNYp4P61lMsABiS4A3VG1qznjXVCf3r+fVHhm4efTYVsySA==", "dev": true, "requires": { - "@babel/types": "^7.5.5", + "@babel/types": "^7.6.0", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0", @@ -148,9 +148,9 @@ }, "dependencies": { "@babel/types": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", - "integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", + "version": "7.6.1", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", + "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -191,9 +191,9 @@ }, "dependencies": { "@babel/types": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", - "integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", + "version": "7.6.1", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", + "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -215,9 +215,9 @@ }, "dependencies": { "@babel/types": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", - "integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", + "version": "7.6.1", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", + "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -267,9 +267,9 @@ }, "dependencies": { "@babel/types": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", - "integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", + "version": "7.6.1", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", + "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -289,9 +289,9 @@ }, "dependencies": { "@babel/types": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", - "integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", + "version": "7.6.1", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", + "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -325,26 +325,26 @@ }, "dependencies": { "@babel/parser": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.5.5.tgz", - "integrity": "sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.0.tgz", + "integrity": "sha512-+o2q111WEx4srBs7L9eJmcwi655eD8sXniLqMB93TBK9GrNzGrxDWSjiqz2hLU0Ha8MTXFIP0yd9fNdP+m43ZQ==", "dev": true }, "@babel/template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.4.4.tgz", - "integrity": "sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.6.0.tgz", + "integrity": "sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ==", "dev": true, "requires": { "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.4.4", - "@babel/types": "^7.4.4" + "@babel/parser": "^7.6.0", + "@babel/types": "^7.6.0" } }, "@babel/types": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", - "integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", + "version": "7.6.1", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", + "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -404,9 +404,9 @@ }, "dependencies": { "@babel/types": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", - "integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", + "version": "7.6.1", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", + "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -461,9 +461,9 @@ }, "dependencies": { "@babel/types": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", - "integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", + "version": "7.6.1", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", + "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -761,9 +761,9 @@ } }, "@babel/plugin-transform-block-scoping": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.5.5.tgz", - "integrity": "sha512-82A3CLRRdYubkG85lKwhZB0WZoHxLGsJdux/cOVaJCJpvYFl1LVzAIFyRsa7CvXqW8rBM4Zf3Bfn8PHt5DP0Sg==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.0.tgz", + "integrity": "sha512-tIt4E23+kw6TgL/edACZwP1OUKrjOTyMrFMLoT5IOFrfMRabCgekjqFd5o6PaAMildBu46oFkekIdMuGkkPEpA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", @@ -796,9 +796,9 @@ } }, "@babel/plugin-transform-destructuring": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.5.0.tgz", - "integrity": "sha512-YbYgbd3TryYYLGyC7ZR+Tq8H/+bCmwoaxHfJHupom5ECstzbRLTch6gOQbhEY9Z4hiCNHEURgq06ykFv9JZ/QQ==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.6.0.tgz", + "integrity": "sha512-2bGIS5P1v4+sWTCnKNDZDxbGvEqi0ijeqM/YqHtVGrvG2y0ySgnEEhXErvE9dA0bnIzY9bIzdFK0jFA46ASIIQ==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" @@ -883,9 +883,9 @@ } }, "@babel/plugin-transform-modules-commonjs": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.5.0.tgz", - "integrity": "sha512-xmHq0B+ytyrWJvQTc5OWAC4ii6Dhr0s22STOoydokG51JjWhyYo5mRPXoi+ZmtHQhZZwuXNN+GG5jy5UZZJxIQ==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.6.0.tgz", + "integrity": "sha512-Ma93Ix95PNSEngqomy5LSBMAQvYKVe3dy+JlVJSHEXZR5ASL9lQBedMiCyVtmTLraIDVRE3ZjTZvmXXD2Ozw3g==", "dev": true, "requires": { "@babel/helper-module-transforms": "^7.4.4", @@ -916,12 +916,12 @@ } }, "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.4.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.5.tgz", - "integrity": "sha512-z7+2IsWafTBbjNsOxU/Iv5CvTJlr5w4+HGu1HovKYTtgJ362f7kBcQglkfmlspKKZ3bgrbSGvLfNx++ZJgCWsg==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.0.tgz", + "integrity": "sha512-jem7uytlmrRl3iCAuQyw8BpB4c4LWvSpvIeXKpMb+7j84lkx4m4mYr5ErAcmN5KM7B6BqrAvRGjBIbbzqCczew==", "dev": true, "requires": { - "regexp-tree": "^0.1.6" + "regexp-tree": "^0.1.13" } }, "@babel/plugin-transform-new-target": { @@ -1061,9 +1061,9 @@ } }, "@babel/preset-env": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.5.5.tgz", - "integrity": "sha512-GMZQka/+INwsMz1A5UEql8tG015h5j/qjptpKY2gJ7giy8ohzU710YciJB5rcKsWGWHiW3RUnHib0E5/m3Tp3A==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.6.0.tgz", + "integrity": "sha512-1efzxFv/TcPsNXlRhMzRnkBFMeIqBBgzwmZwlFDw5Ubj0AGLeufxugirwZmkkX/ayi3owsSqoQ4fw8LkfK9SYg==", "dev": true, "requires": { "@babel/helper-module-imports": "^7.0.0", @@ -1082,10 +1082,10 @@ "@babel/plugin-transform-arrow-functions": "^7.2.0", "@babel/plugin-transform-async-to-generator": "^7.5.0", "@babel/plugin-transform-block-scoped-functions": "^7.2.0", - "@babel/plugin-transform-block-scoping": "^7.5.5", + "@babel/plugin-transform-block-scoping": "^7.6.0", "@babel/plugin-transform-classes": "^7.5.5", "@babel/plugin-transform-computed-properties": "^7.2.0", - "@babel/plugin-transform-destructuring": "^7.5.0", + "@babel/plugin-transform-destructuring": "^7.6.0", "@babel/plugin-transform-dotall-regex": "^7.4.4", "@babel/plugin-transform-duplicate-keys": "^7.5.0", "@babel/plugin-transform-exponentiation-operator": "^7.2.0", @@ -1094,10 +1094,10 @@ "@babel/plugin-transform-literals": "^7.2.0", "@babel/plugin-transform-member-expression-literals": "^7.2.0", "@babel/plugin-transform-modules-amd": "^7.5.0", - "@babel/plugin-transform-modules-commonjs": "^7.5.0", + "@babel/plugin-transform-modules-commonjs": "^7.6.0", "@babel/plugin-transform-modules-systemjs": "^7.5.0", "@babel/plugin-transform-modules-umd": "^7.2.0", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.4.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.6.0", "@babel/plugin-transform-new-target": "^7.4.4", "@babel/plugin-transform-object-super": "^7.5.5", "@babel/plugin-transform-parameters": "^7.4.4", @@ -1110,7 +1110,7 @@ "@babel/plugin-transform-template-literals": "^7.4.4", "@babel/plugin-transform-typeof-symbol": "^7.2.0", "@babel/plugin-transform-unicode-regex": "^7.4.4", - "@babel/types": "^7.5.5", + "@babel/types": "^7.6.0", "browserslist": "^4.6.0", "core-js-compat": "^3.1.1", "invariant": "^2.2.2", @@ -1119,9 +1119,9 @@ }, "dependencies": { "@babel/types": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", - "integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", + "version": "7.6.1", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", + "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -1143,17 +1143,17 @@ } }, "@babel/traverse": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.5.5.tgz", - "integrity": "sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.0.tgz", + "integrity": "sha512-93t52SaOBgml/xY74lsmt7xOR4ufYvhb5c5qiM6lu4J/dWGMAfAh6eKw4PjLes6DI6nQgearoxnFJk60YchpvQ==", "dev": true, "requires": { "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.5.5", + "@babel/generator": "^7.6.0", "@babel/helper-function-name": "^7.1.0", "@babel/helper-split-export-declaration": "^7.4.4", - "@babel/parser": "^7.5.5", - "@babel/types": "^7.5.5", + "@babel/parser": "^7.6.0", + "@babel/types": "^7.6.0", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.13" @@ -1169,15 +1169,15 @@ } }, "@babel/parser": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.5.5.tgz", - "integrity": "sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.0.tgz", + "integrity": "sha512-+o2q111WEx4srBs7L9eJmcwi655eD8sXniLqMB93TBK9GrNzGrxDWSjiqz2hLU0Ha8MTXFIP0yd9fNdP+m43ZQ==", "dev": true }, "@babel/types": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", - "integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", + "version": "7.6.1", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", + "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -2143,14 +2143,14 @@ } }, "browserslist": { - "version": "4.6.6", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.6.6.tgz", - "integrity": "sha512-D2Nk3W9JL9Fp/gIcWei8LrERCS+eXu9AM5cfXA8WEZ84lFks+ARnZ0q/R69m2SV3Wjma83QDDPxsNKXUwdIsyA==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.7.0.tgz", + "integrity": "sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30000984", - "electron-to-chromium": "^1.3.191", - "node-releases": "^1.1.25" + "caniuse-lite": "^1.0.30000989", + "electron-to-chromium": "^1.3.247", + "node-releases": "^1.1.29" } }, "buffer": { @@ -2348,9 +2348,9 @@ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" }, "caniuse-lite": { - "version": "1.0.30000985", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000985.tgz", - "integrity": "sha512-1ngiwkgqAYPG0JSSUp3PUDGPKKY59EK7NrGGX+VOxaKCNzRbNc7uXMny+c3VJfZxtoK3wSImTvG9T9sXiTw2+w==", + "version": "1.0.30000989", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000989.tgz", + "integrity": "sha512-vrMcvSuMz16YY6GSVZ0dWDTJP8jqk3iFQ/Aq5iqblPwxSVVZI+zxDyTX0VPqtQsDnfdrBDcsmhgTEOh5R8Lbpw==", "dev": true }, "catharsis": { @@ -2761,14 +2761,13 @@ "integrity": "sha512-lQUVfQi0aLix2xpyjrrJEvfuYCqPc/HwmTKsC/VNf8q0zsjX7SQZtp4+oRONN5Tsur9GDETPjj+Ub2iDiGZfSQ==" }, "core-js-compat": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.1.4.tgz", - "integrity": "sha512-Z5zbO9f1d0YrJdoaQhphVAnKPimX92D6z8lCGphH89MNRxlL1prI9ExJPqVwP0/kgkQCv8c4GJGT8X16yUncOg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.2.1.tgz", + "integrity": "sha512-MwPZle5CF9dEaMYdDeWm73ao/IflDH+FjeJCWEADcEgFSE9TLimFKwJsfmkwzI8eC0Aj0mgvMDjeQjrElkz4/A==", "dev": true, "requires": { - "browserslist": "^4.6.2", - "core-js-pure": "3.1.4", - "semver": "^6.1.1" + "browserslist": "^4.6.6", + "semver": "^6.3.0" }, "dependencies": { "semver": { @@ -2779,12 +2778,6 @@ } } }, - "core-js-pure": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.1.4.tgz", - "integrity": "sha512-uJ4Z7iPNwiu1foygbcZYJsJs1jiXrTTCvxfLDXNhI/I+NHbSIEyr548y4fcsCEyWY0XgfAG/qqaunJ1SThHenA==", - "dev": true - }, "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", @@ -3255,9 +3248,9 @@ "dev": true }, "electron-to-chromium": { - "version": "1.3.200", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.200.tgz", - "integrity": "sha512-PUurrpyDA74MuAjJRD+79ss5BqJlU3mdArRbuu4wO/dt6jc3Ic/6BDmFJxkdwbfq39cHf/XKm2vW98XSvut9Dg==", + "version": "1.3.253", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.253.tgz", + "integrity": "sha512-LAwFRWViiiCSxQ2Lj3mnyEP8atkpAoHSPUnkFoy4mNabbnPHxtfseWvPCGGhewjHQI+ky/V4LdlTyyI0d3YPXA==", "dev": true }, "elliptic": { @@ -6130,9 +6123,9 @@ } }, "node-releases": { - "version": "1.1.26", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.26.tgz", - "integrity": "sha512-fZPsuhhUHMTlfkhDLGtfY80DSJTjOcx+qD1j5pqPkuhUHVS7xHZIg9EE4DHK8O3f0zTxXHX5VIkDG8pu98/wfQ==", + "version": "1.1.29", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.29.tgz", + "integrity": "sha512-R5bDhzh6I+tpi/9i2hrrvGJ3yKPYzlVOORDkXhnZuwi5D3q1I5w4vYy24PJXTcLk9Q0kws9TO77T75bcK8/ysQ==", "dev": true, "requires": { "semver": "^5.3.0" @@ -6957,19 +6950,19 @@ } }, "regexp-tree": { - "version": "0.1.11", - "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.11.tgz", - "integrity": "sha512-7/l/DgapVVDzZobwMCCgMlqiqyLFJ0cduo/j+3BcDJIB+yJdsYCfKuI3l/04NV+H/rfNRdPIDbXNZHM9XvQatg==", + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.13.tgz", + "integrity": "sha512-hwdV/GQY5F8ReLZWO+W1SRoN5YfpOKY6852+tBFcma72DKBIcHjPRIlIvQN35bCOljuAfP2G2iB0FC/w236mUw==", "dev": true }, "regexpu-core": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.5.4.tgz", - "integrity": "sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ==", + "version": "4.5.5", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.5.5.tgz", + "integrity": "sha512-FpI67+ky9J+cDizQUJlIlNZFKual/lUkFr1AG6zOCpwZ9cLrg8UUVakyUQJD7fCDIe9Z2nwTQJNPyonatNmDFQ==", "dev": true, "requires": { "regenerate": "^1.4.0", - "regenerate-unicode-properties": "^8.0.2", + "regenerate-unicode-properties": "^8.1.0", "regjsgen": "^0.5.0", "regjsparser": "^0.6.0", "unicode-match-property-ecmascript": "^1.0.4", diff --git a/js/package.json b/js/package.json index 8013f3bc2..e7f65f82f 100644 --- a/js/package.json +++ b/js/package.json @@ -29,7 +29,7 @@ "@babel/core": "^7.6.0", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/polyfill": "^7.6.0", - "@babel/preset-env": "^7.5.5", + "@babel/preset-env": "^7.6.0", "babel-loader": "^8.0.6", "css-loader": "^3.2.0", "karma": "^4.3.0", From 7d3b210d8d148c161976a0d44c472a8ad36c5f5b Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2019 09:48:20 +0000 Subject: [PATCH 20/77] Bump webpack-cli from 3.3.7 to 3.3.8 in /js Bumps [webpack-cli](https://github.com/webpack/webpack-cli) from 3.3.7 to 3.3.8. - [Release notes](https://github.com/webpack/webpack-cli/releases) - [Changelog](https://github.com/webpack/webpack-cli/blob/v3.3.8/CHANGELOG.md) - [Commits](https://github.com/webpack/webpack-cli/compare/v3.3.7...v3.3.8) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 6 +++--- js/package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index cf0a5ed79..f3b0531e6 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -9019,9 +9019,9 @@ } }, "webpack-cli": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.7.tgz", - "integrity": "sha512-OhTUCttAsr+IZSMVwGROGRHvT+QAs8H6/mHIl4SvhAwYywjiylYjpwybGx7WQ9Hkb45FhjtsymkwiRRbGJ1SZQ==", + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.8.tgz", + "integrity": "sha512-RANYSXwikSWINjHMd/mtesblNSpjpDLoYTBtP99n1RhXqVI/wxN40Auqy42I7y4xrbmRBoA5Zy5E0JSBD5XRhw==", "dev": true, "requires": { "chalk": "2.4.2", diff --git a/js/package.json b/js/package.json index e7f65f82f..e139d3ab8 100644 --- a/js/package.json +++ b/js/package.json @@ -41,7 +41,7 @@ "vue-style-loader": "^4.1.2", "vue-template-compiler": "^2.6.10", "webpack": "^4.39.3", - "webpack-cli": "^3.3.7", + "webpack-cli": "^3.3.8", "webpack-merge": "^4.2.2" }, "scripts": { From 2bdef961cb81c716adb88dd0048ada762fa94b17 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Fri, 13 Sep 2019 09:03:19 +0000 Subject: [PATCH 21/77] Bump markdown-it from 9.1.0 to 10.0.0 in /js Bumps [markdown-it](https://github.com/markdown-it/markdown-it) from 9.1.0 to 10.0.0. - [Release notes](https://github.com/markdown-it/markdown-it/releases) - [Changelog](https://github.com/markdown-it/markdown-it/blob/master/CHANGELOG.md) - [Commits](https://github.com/markdown-it/markdown-it/compare/9.1.0...10.0.0) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 15 +++++++++++---- js/package.json | 2 +- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index f3b0531e6..fa1415e37 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -5632,15 +5632,22 @@ "integrity": "sha512-XUi5HJhhV5R74k8/0H2oCbCiYf/u4cO/rX8tnGkRvrqhsr5BRNU6Mg0yt/8UIx1iIS8220BNJsDb7XnILhLepw==" }, "markdown-it": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-9.1.0.tgz", - "integrity": "sha512-xHKG4C8iPriyfu/jc2hsCC045fKrMQ0VexX2F1FGYiRxDxqMB2aAhF8WauJ3fltn2kb90moGBkiiEdooGIg55w==", + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-10.0.0.tgz", + "integrity": "sha512-YWOP1j7UbDNz+TumYP1kpwnP0aEa711cJjrAQrzd0UXlbJfc5aAq0F/PZHjiioqDC1NKgvIMX+o+9Bk7yuM2dg==", "requires": { "argparse": "^1.0.7", - "entities": "~1.1.1", + "entities": "~2.0.0", "linkify-it": "^2.0.0", "mdurl": "^1.0.1", "uc.micro": "^1.0.5" + }, + "dependencies": { + "entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.0.tgz", + "integrity": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==" + } } }, "markdown-it-anchor": { diff --git a/js/package.json b/js/package.json index e139d3ab8..9ac75fa85 100644 --- a/js/package.json +++ b/js/package.json @@ -14,7 +14,7 @@ "angular-markdown-it": "^0.6.1", "angular-sanitize": "^1.7.8", "babel-polyfill": "^6.26.0", - "markdown-it": "^9.1.0", + "markdown-it": "^10.0.0", "markdown-it-link-target": "^1.0.2", "nextcloud-axios": "^0.2.1", "nextcloud-vue": "^0.12.3", From cf0d74c706edb6e4f21f32b9500ffa975686d73f Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Fri, 13 Sep 2019 20:37:00 +0000 Subject: [PATCH 22/77] Bump webpack from 4.39.3 to 4.40.2 in /js Bumps [webpack](https://github.com/webpack/webpack) from 4.39.3 to 4.40.2. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.39.3...v4.40.2) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 24 ++++++++++++------------ js/package.json | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index fa1415e37..791aefe06 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -3254,9 +3254,9 @@ "dev": true }, "elliptic": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.0.tgz", - "integrity": "sha512-eFOJTMyCYb7xtE/caJ6JJu+bhi67WCYNbkGSknu20pmM8Ke/bqOfdnZWxyoGN26JgfxTbXrsCkEw4KheCT/KGg==", + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.1.tgz", + "integrity": "sha512-xvJINNLbTeWQjrl6X+7eQCrIy/YPv5XCpKW6kB5mKvtnGILoLDcySuwomfdzt0BMdLNVnuRNTuzKNHj0bva1Cg==", "dev": true, "requires": { "bn.js": "^4.4.0", @@ -7892,9 +7892,9 @@ "integrity": "sha1-JLFUOXOrRCiW2a02fdnL2/r+kYs=" }, "terser": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.2.1.tgz", - "integrity": "sha512-cGbc5utAcX4a9+2GGVX4DsenG6v0x3glnDi5hx8816X1McEAwPlPgRtXPJzSBsbpILxZ8MQMT0KvArLuE0HP5A==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.3.1.tgz", + "integrity": "sha512-pnzH6dnFEsR2aa2SJaKb1uSCl3QmIsJ8dEkj0Fky+2AwMMcC9doMqLOQIH6wVTEKaVfKVvLSk5qxPBEZT9mywg==", "dev": true, "requires": { "commander": "^2.20.0", @@ -8519,9 +8519,9 @@ } }, "upath": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.2.tgz", - "integrity": "sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", "dev": true }, "uri-js": { @@ -8921,9 +8921,9 @@ } }, "webpack": { - "version": "4.39.3", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.39.3.tgz", - "integrity": "sha512-BXSI9M211JyCVc3JxHWDpze85CvjC842EvpRsVTc/d15YJGlox7GIDd38kJgWrb3ZluyvIjgenbLDMBQPDcxYQ==", + "version": "4.40.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.40.2.tgz", + "integrity": "sha512-5nIvteTDCUws2DVvP9Qe+JPla7kWPPIDFZv55To7IycHWZ+Z5qBdaBYPyuXWdhggTufZkQwfIK+5rKQTVovm2A==", "dev": true, "requires": { "@webassemblyjs/ast": "1.8.5", diff --git a/js/package.json b/js/package.json index 9ac75fa85..ba9dcb0c2 100644 --- a/js/package.json +++ b/js/package.json @@ -40,7 +40,7 @@ "vue-loader": "^15.7.1", "vue-style-loader": "^4.1.2", "vue-template-compiler": "^2.6.10", - "webpack": "^4.39.3", + "webpack": "^4.40.2", "webpack-cli": "^3.3.8", "webpack-merge": "^4.2.2" }, From 27bf11710574dc8019f38f1c519092333e64b024 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 14 Sep 2019 02:14:44 +0000 Subject: [PATCH 23/77] [tx-robot] updated from transifex --- l10n/sk.js | 3 +++ l10n/sk.json | 3 +++ 2 files changed, 6 insertions(+) diff --git a/l10n/sk.js b/l10n/sk.js index b5df8d59b..736069919 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -11,6 +11,7 @@ OC.L10N.register( "Minutes" : "Minút", "Link to a board" : "Odkaz na nástenku", "Maximum file size of {size} exceeded" : "Bola prekročená maximálna veľkosť súboru {size}", + "File already exists" : "Súbor už existuje", "You have created a new board {board}" : "Vytvorili ste nová nástenku {board}", "{user} has created a new board {board}" : "Používateľ {user} vytvoril novú nástenku {board}", "You have deleted the board {board}" : "Vymazali ste nástenku {board}", @@ -18,6 +19,7 @@ OC.L10N.register( "You have restored the board {board}" : "Obnovili ste nástenku {board}", "{user} has restored the board {board}" : "Používateľ {user} obnovil nástenku {board}", "You have shared the board {board} with {acl}" : "Sprístupnili ste nástenku {board} s {acl}", + "{user} has shared the board {board} with {acl}" : "Používateľ {user} sprístupnil nástenku {board} pre {acl}", "You have removed {acl} from the board {board}" : "Odobrali ste {acl} z nástenky {board}", "{user} has removed {acl} from the board {board}" : "Používateľ {user} odobral {acl} z nástenky {board}", "You have renamed the board {before} to {board}" : "Premenovali ste nástenku {before} na {board}", @@ -75,6 +77,7 @@ OC.L10N.register( "A card description inside the Deck app has been changed" : "V apke Nástenka sa zmenil Popis karty", "Deck" : "Nástenka", "Changes in the Deck app" : "Zmeny v apke Nástenka", + "A comment was created on a card" : "Na karte bol vytvorený komentár. ", "Personal" : "Osobné", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Používateľ %s vám priradil kartu „%s“ na „%s“.", "{user} has assigned the card \"%s\" on \"%s\" to you." : "Používateľ {user} vám priradil kartu „%s“ na „%s“.", diff --git a/l10n/sk.json b/l10n/sk.json index 1130cbd44..94a85edda 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -9,6 +9,7 @@ "Minutes" : "Minút", "Link to a board" : "Odkaz na nástenku", "Maximum file size of {size} exceeded" : "Bola prekročená maximálna veľkosť súboru {size}", + "File already exists" : "Súbor už existuje", "You have created a new board {board}" : "Vytvorili ste nová nástenku {board}", "{user} has created a new board {board}" : "Používateľ {user} vytvoril novú nástenku {board}", "You have deleted the board {board}" : "Vymazali ste nástenku {board}", @@ -16,6 +17,7 @@ "You have restored the board {board}" : "Obnovili ste nástenku {board}", "{user} has restored the board {board}" : "Používateľ {user} obnovil nástenku {board}", "You have shared the board {board} with {acl}" : "Sprístupnili ste nástenku {board} s {acl}", + "{user} has shared the board {board} with {acl}" : "Používateľ {user} sprístupnil nástenku {board} pre {acl}", "You have removed {acl} from the board {board}" : "Odobrali ste {acl} z nástenky {board}", "{user} has removed {acl} from the board {board}" : "Používateľ {user} odobral {acl} z nástenky {board}", "You have renamed the board {before} to {board}" : "Premenovali ste nástenku {before} na {board}", @@ -73,6 +75,7 @@ "A card description inside the Deck app has been changed" : "V apke Nástenka sa zmenil Popis karty", "Deck" : "Nástenka", "Changes in the Deck app" : "Zmeny v apke Nástenka", + "A comment was created on a card" : "Na karte bol vytvorený komentár. ", "Personal" : "Osobné", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Používateľ %s vám priradil kartu „%s“ na „%s“.", "{user} has assigned the card \"%s\" on \"%s\" to you." : "Používateľ {user} vám priradil kartu „%s“ na „%s“.", From f4248c06eea9d1ce8f6235c2385a9b65617dcda6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Wed, 18 Sep 2019 11:26:15 +0200 Subject: [PATCH 24/77] Unify output of reorder results MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- lib/Service/CardService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Service/CardService.php b/lib/Service/CardService.php index 249364f0c..feb89821f 100644 --- a/lib/Service/CardService.php +++ b/lib/Service/CardService.php @@ -420,7 +420,7 @@ class CardService { $result[$card->getOrder()] = $card; } $this->changeHelper->cardChanged($id, false); - return $result; + return array_values($result); } /** From 3c6c576f4e27fc685ad46df7cfb5796bc23d0000 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 21 Sep 2019 02:23:14 +0000 Subject: [PATCH 25/77] [tx-robot] updated from transifex --- l10n/fr.js | 4 ++-- l10n/fr.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/l10n/fr.js b/l10n/fr.js index 593de0792..d342eae7d 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -110,7 +110,7 @@ OC.L10N.register( "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck est un outil d'organisation de style kanban destiné à la planification personnelle et à l'organisation de projets pour les équipes intégrées à Nextcloud.\n\n\n- 📥 Ajoutez vos tâches à des cartes et organisez-les\n- 📄 Écrivez des notes supplémentaires en Markdown\n- 🔖 Affectez des étiquettes pour une organisation encore meilleure\n- 👥 Partagez avec votre équipe, vos amis ou votre famille\n- 📎 Attachez des fichiers et utilisez les dans vos descriptions en Markdown\n- 💬 Échangez avec votre équipe grâce aux commentaires\n- ⚡ Gardez un œil sur les modifications dans le flux d'activité\n- 🚀 Organisez vos projets", "Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.", "Select board" : "Sélectionner le tableau", - "Add a new stack" : "Ajouter une nouvelle pile", + "Add a new stack" : "Nouvelle pile", "Submit" : "Envoyer", "Show archived cards" : "Afficher les cartes archivées", "Hide archived cards" : "Masquer les cartes archivées", @@ -183,7 +183,7 @@ OC.L10N.register( "Choose a user to assign" : "Choisir un utilisateur à assigner", "Assign this card to a user" : "Assigner cette carte à un utilisateur", "Due date" : "Date d'échéance", - "Click to set" : "Cliquer pour définir", + "Click to set" : "Définir", "Remove due date" : "Supprimer la date d'échéance", "Description" : "Description", "Attachments" : "Pièces jointes", diff --git a/l10n/fr.json b/l10n/fr.json index bed3a7299..1b2039e47 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -108,7 +108,7 @@ "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck est un outil d'organisation de style kanban destiné à la planification personnelle et à l'organisation de projets pour les équipes intégrées à Nextcloud.\n\n\n- 📥 Ajoutez vos tâches à des cartes et organisez-les\n- 📄 Écrivez des notes supplémentaires en Markdown\n- 🔖 Affectez des étiquettes pour une organisation encore meilleure\n- 👥 Partagez avec votre équipe, vos amis ou votre famille\n- 📎 Attachez des fichiers et utilisez les dans vos descriptions en Markdown\n- 💬 Échangez avec votre équipe grâce aux commentaires\n- ⚡ Gardez un œil sur les modifications dans le flux d'activité\n- 🚀 Organisez vos projets", "Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.", "Select board" : "Sélectionner le tableau", - "Add a new stack" : "Ajouter une nouvelle pile", + "Add a new stack" : "Nouvelle pile", "Submit" : "Envoyer", "Show archived cards" : "Afficher les cartes archivées", "Hide archived cards" : "Masquer les cartes archivées", @@ -181,7 +181,7 @@ "Choose a user to assign" : "Choisir un utilisateur à assigner", "Assign this card to a user" : "Assigner cette carte à un utilisateur", "Due date" : "Date d'échéance", - "Click to set" : "Cliquer pour définir", + "Click to set" : "Définir", "Remove due date" : "Supprimer la date d'échéance", "Description" : "Description", "Attachments" : "Pièces jointes", From ca41c1fa6ad55401bb3afcb39779951e5ba8d3fb Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 24 Sep 2019 02:23:42 +0000 Subject: [PATCH 26/77] [tx-robot] updated from transifex --- l10n/gl.js | 4 ++-- l10n/gl.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/l10n/gl.js b/l10n/gl.js index fa66a12b3..70df38cdc 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -74,9 +74,9 @@ OC.L10N.register( "{user} has restored the attachment {attachment} to card {card}" : "{user} restaurou o anexo {attachment} da tarxeta {card}", "You have commented on card {card}" : "Vostede comentou na tarxeta {card}", "{user} has commented on card {card}" : "{user} comentou na tarxeta {card}", - "A card description inside the Deck app has been changed" : "Cambiouse a descripción da tarxeta dentro do aplicativo Deck", + "A card description inside the Deck app has been changed" : "Cambiouse a descripción da tarxeta dentro da aplicación Deck", "Deck" : "Deck", - "Changes in the Deck app" : "Cambios no aplicativo Deck", + "Changes in the Deck app" : "Cambios na aplicación Deck", "A comment was created on a card" : "Creouse un comentario nunha tarxeta", "Personal" : "Persoal", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "A tarxeta «%s» en «%s» foi asignada a vostede por %s.", diff --git a/l10n/gl.json b/l10n/gl.json index b2e02f978..10e04edc6 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -72,9 +72,9 @@ "{user} has restored the attachment {attachment} to card {card}" : "{user} restaurou o anexo {attachment} da tarxeta {card}", "You have commented on card {card}" : "Vostede comentou na tarxeta {card}", "{user} has commented on card {card}" : "{user} comentou na tarxeta {card}", - "A card description inside the Deck app has been changed" : "Cambiouse a descripción da tarxeta dentro do aplicativo Deck", + "A card description inside the Deck app has been changed" : "Cambiouse a descripción da tarxeta dentro da aplicación Deck", "Deck" : "Deck", - "Changes in the Deck app" : "Cambios no aplicativo Deck", + "Changes in the Deck app" : "Cambios na aplicación Deck", "A comment was created on a card" : "Creouse un comentario nunha tarxeta", "Personal" : "Persoal", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "A tarxeta «%s» en «%s» foi asignada a vostede por %s.", From 3f27076541215cc71a14291ff32edc92752ed74a Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 25 Sep 2019 02:23:04 +0000 Subject: [PATCH 27/77] [tx-robot] updated from transifex --- l10n/lt_LT.js | 1 + l10n/lt_LT.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index 5a508a3d2..77cd34795 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -68,6 +68,7 @@ OC.L10N.register( "by" : " ", "Undo file deletion" : "Atšaukti failo ištrynimą", "Insert the file into the description" : "Įterpti failą į aprašą", + "Delete attachment" : "Ištrinti priedą", "Modified:" : "Keitimo laikas:", "Created:" : "Sukūrimo laikas:", "Add a tag" : "Pridėti žymę", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index 7ddadd5da..a1535a5f8 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -66,6 +66,7 @@ "by" : " ", "Undo file deletion" : "Atšaukti failo ištrynimą", "Insert the file into the description" : "Įterpti failą į aprašą", + "Delete attachment" : "Ištrinti priedą", "Modified:" : "Keitimo laikas:", "Created:" : "Sukūrimo laikas:", "Add a tag" : "Pridėti žymę", From 7d7b093ea3ea30e86623b51528e1a6a8ed8a0a01 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2019 04:00:05 +0000 Subject: [PATCH 28/77] Bump webpack-cli from 3.3.8 to 3.3.9 in /js Bumps [webpack-cli](https://github.com/webpack/webpack-cli) from 3.3.8 to 3.3.9. - [Release notes](https://github.com/webpack/webpack-cli/releases) - [Changelog](https://github.com/webpack/webpack-cli/blob/v3.3.9/CHANGELOG.md) - [Commits](https://github.com/webpack/webpack-cli/compare/v3.3.8...v3.3.9) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 6 +++--- js/package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 791aefe06..7f7101d8c 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -9026,9 +9026,9 @@ } }, "webpack-cli": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.8.tgz", - "integrity": "sha512-RANYSXwikSWINjHMd/mtesblNSpjpDLoYTBtP99n1RhXqVI/wxN40Auqy42I7y4xrbmRBoA5Zy5E0JSBD5XRhw==", + "version": "3.3.9", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.9.tgz", + "integrity": "sha512-xwnSxWl8nZtBl/AFJCOn9pG7s5CYUYdZxmmukv+fAHLcBIHM36dImfpQg3WfShZXeArkWlf6QRw24Klcsv8a5A==", "dev": true, "requires": { "chalk": "2.4.2", diff --git a/js/package.json b/js/package.json index ba9dcb0c2..067693ad8 100644 --- a/js/package.json +++ b/js/package.json @@ -41,7 +41,7 @@ "vue-style-loader": "^4.1.2", "vue-template-compiler": "^2.6.10", "webpack": "^4.40.2", - "webpack-cli": "^3.3.8", + "webpack-cli": "^3.3.9", "webpack-merge": "^4.2.2" }, "scripts": { From 8509d1b90dfb88c2c8849485c2d5fdc23709a7b9 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 28 Sep 2019 02:23:26 +0000 Subject: [PATCH 29/77] [tx-robot] updated from transifex --- l10n/cs.js | 3 +++ l10n/cs.json | 3 +++ 2 files changed, 6 insertions(+) diff --git a/l10n/cs.js b/l10n/cs.js index 1bba1b928..57793140c 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -9,6 +9,7 @@ OC.L10N.register( "Remove user from card" : "Odebrat uživatele z karty", "Hours" : "Hodiny", "Minutes" : "Minuty", + "Link to a board" : "Propojit s nástěnkou", "Maximum file size of {size} exceeded" : "U souboru {size} překročena nejvyšší umožněná velikost", "File already exists" : "Soubor už existuje", "You have created a new board {board}" : "Vytvořili jste nástěnku {board}", @@ -75,6 +76,7 @@ OC.L10N.register( "A card description inside the Deck app has been changed" : "Popis mapy v Deck-aplikace byl změněn", "Deck" : "Balík", "Changes in the Deck app" : "Změny v Deck aplikace", + "A comment was created on a card" : "Na kartě byl vytvořen komentář", "Personal" : "Osobní", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kartu „%s“ na „%s“ vám přiřadil(a) %s.", "{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vám přiřadil(a) kartu „%s“ na „%s“.", @@ -105,6 +107,7 @@ OC.L10N.register( "No file uploaded or file size exceeds maximum of %s" : "Nebyl nahrán žádný soubor nebo jeho velikost přesáhla %s", "A kanban style project and personal management tool for Nextcloud" : "Nástroj pro projektový a osobní řízení ve stylu Kanban.", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Karty jsou nástroj zacílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu", + "Select the board to link to a project" : "Vyberte nástěnku kterou propojit s projektem", "Select board" : "Vybrat nástěnku", "Add a new stack" : "Přidat nový zásobník", "Submit" : "Odeslat", diff --git a/l10n/cs.json b/l10n/cs.json index a5f9e344c..19d5215c0 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -7,6 +7,7 @@ "Remove user from card" : "Odebrat uživatele z karty", "Hours" : "Hodiny", "Minutes" : "Minuty", + "Link to a board" : "Propojit s nástěnkou", "Maximum file size of {size} exceeded" : "U souboru {size} překročena nejvyšší umožněná velikost", "File already exists" : "Soubor už existuje", "You have created a new board {board}" : "Vytvořili jste nástěnku {board}", @@ -73,6 +74,7 @@ "A card description inside the Deck app has been changed" : "Popis mapy v Deck-aplikace byl změněn", "Deck" : "Balík", "Changes in the Deck app" : "Změny v Deck aplikace", + "A comment was created on a card" : "Na kartě byl vytvořen komentář", "Personal" : "Osobní", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kartu „%s“ na „%s“ vám přiřadil(a) %s.", "{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vám přiřadil(a) kartu „%s“ na „%s“.", @@ -103,6 +105,7 @@ "No file uploaded or file size exceeds maximum of %s" : "Nebyl nahrán žádný soubor nebo jeho velikost přesáhla %s", "A kanban style project and personal management tool for Nextcloud" : "Nástroj pro projektový a osobní řízení ve stylu Kanban.", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Karty jsou nástroj zacílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu", + "Select the board to link to a project" : "Vyberte nástěnku kterou propojit s projektem", "Select board" : "Vybrat nástěnku", "Add a new stack" : "Přidat nový zásobník", "Submit" : "Odeslat", From cca307661a0da2b8fa7c0dfec43754fc07dd5c42 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 29 Sep 2019 01:13:16 +0000 Subject: [PATCH 30/77] Bump @babel/core from 7.6.0 to 7.6.2 in /js Bumps [@babel/core](https://github.com/babel/babel) from 7.6.0 to 7.6.2. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.6.0...v7.6.2) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 72 +++++++++++++++++++++----------------------- js/package.json | 2 +- 2 files changed, 36 insertions(+), 38 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 791aefe06..dc5415c47 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -14,17 +14,17 @@ } }, "@babel/core": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.6.0.tgz", - "integrity": "sha512-FuRhDRtsd6IptKpHXAa+4WPZYY2ZzgowkbLBecEDDSje1X/apG7jQM33or3NdOmjXBKWGOg4JmSiRfUfuTtHXw==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.6.2.tgz", + "integrity": "sha512-l8zto/fuoZIbncm+01p8zPSDZu/VuuJhAfA7d/AbzM09WR7iVhavvfNDYCNpo1VvLk6E6xgAoP9P+/EMJHuRkQ==", "dev": true, "requires": { "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.6.0", - "@babel/helpers": "^7.6.0", - "@babel/parser": "^7.6.0", + "@babel/generator": "^7.6.2", + "@babel/helpers": "^7.6.2", + "@babel/parser": "^7.6.2", "@babel/template": "^7.6.0", - "@babel/traverse": "^7.6.0", + "@babel/traverse": "^7.6.2", "@babel/types": "^7.6.0", "convert-source-map": "^1.1.0", "debug": "^4.1.0", @@ -45,22 +45,21 @@ } }, "@babel/generator": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.0.tgz", - "integrity": "sha512-Ms8Mo7YBdMMn1BYuNtKuP/z0TgEIhbcyB8HVR6PPNYp4P61lMsABiS4A3VG1qznjXVCf3r+fVHhm4efTYVsySA==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.2.tgz", + "integrity": "sha512-j8iHaIW4gGPnViaIHI7e9t/Hl8qLjERI6DcV9kEpAIDJsAOrcnXqRS7t+QbhL76pwbtqP+QCQLL0z1CyVmtjjQ==", "dev": true, "requires": { "@babel/types": "^7.6.0", "jsesc": "^2.5.1", "lodash": "^4.17.13", - "source-map": "^0.5.0", - "trim-right": "^1.0.1" + "source-map": "^0.5.0" } }, "@babel/parser": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.0.tgz", - "integrity": "sha512-+o2q111WEx4srBs7L9eJmcwi655eD8sXniLqMB93TBK9GrNzGrxDWSjiqz2hLU0Ha8MTXFIP0yd9fNdP+m43ZQ==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.2.tgz", + "integrity": "sha512-mdFqWrSPCmikBoaBYMuBulzTIKuXVPtEISFbRRVNwMWpCms/hmE2kRq0bblUHaNRKrjRlmVbx1sDHmjmRgD2Xg==", "dev": true }, "@babel/template": { @@ -75,16 +74,16 @@ } }, "@babel/traverse": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.0.tgz", - "integrity": "sha512-93t52SaOBgml/xY74lsmt7xOR4ufYvhb5c5qiM6lu4J/dWGMAfAh6eKw4PjLes6DI6nQgearoxnFJk60YchpvQ==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.2.tgz", + "integrity": "sha512-8fRE76xNwNttVEF2TwxJDGBLWthUkHWSldmfuBzVRmEDWOtu4XdINTgN7TDWzuLg4bbeIMLvfMFD9we5YcWkRQ==", "dev": true, "requires": { "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.6.0", + "@babel/generator": "^7.6.2", "@babel/helper-function-name": "^7.1.0", "@babel/helper-split-export-declaration": "^7.4.4", - "@babel/parser": "^7.6.0", + "@babel/parser": "^7.6.2", "@babel/types": "^7.6.0", "debug": "^4.1.0", "globals": "^11.1.0", @@ -474,33 +473,32 @@ } }, "@babel/helpers": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.6.0.tgz", - "integrity": "sha512-W9kao7OBleOjfXtFGgArGRX6eCP0UEcA2ZWEWNkJdRZnHhW4eEbeswbG3EwaRsnQUAEGWYgMq1HsIXuNNNy2eQ==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.6.2.tgz", + "integrity": "sha512-3/bAUL8zZxYs1cdX2ilEE0WobqbCmKWr/889lf2SS0PpDcpEIY8pb1CCyz0pEcX3pEb+MCbks1jIokz2xLtGTA==", "dev": true, "requires": { "@babel/template": "^7.6.0", - "@babel/traverse": "^7.6.0", + "@babel/traverse": "^7.6.2", "@babel/types": "^7.6.0" }, "dependencies": { "@babel/generator": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.0.tgz", - "integrity": "sha512-Ms8Mo7YBdMMn1BYuNtKuP/z0TgEIhbcyB8HVR6PPNYp4P61lMsABiS4A3VG1qznjXVCf3r+fVHhm4efTYVsySA==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.2.tgz", + "integrity": "sha512-j8iHaIW4gGPnViaIHI7e9t/Hl8qLjERI6DcV9kEpAIDJsAOrcnXqRS7t+QbhL76pwbtqP+QCQLL0z1CyVmtjjQ==", "dev": true, "requires": { "@babel/types": "^7.6.0", "jsesc": "^2.5.1", "lodash": "^4.17.13", - "source-map": "^0.5.0", - "trim-right": "^1.0.1" + "source-map": "^0.5.0" } }, "@babel/parser": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.0.tgz", - "integrity": "sha512-+o2q111WEx4srBs7L9eJmcwi655eD8sXniLqMB93TBK9GrNzGrxDWSjiqz2hLU0Ha8MTXFIP0yd9fNdP+m43ZQ==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.2.tgz", + "integrity": "sha512-mdFqWrSPCmikBoaBYMuBulzTIKuXVPtEISFbRRVNwMWpCms/hmE2kRq0bblUHaNRKrjRlmVbx1sDHmjmRgD2Xg==", "dev": true }, "@babel/template": { @@ -515,16 +513,16 @@ } }, "@babel/traverse": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.0.tgz", - "integrity": "sha512-93t52SaOBgml/xY74lsmt7xOR4ufYvhb5c5qiM6lu4J/dWGMAfAh6eKw4PjLes6DI6nQgearoxnFJk60YchpvQ==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.2.tgz", + "integrity": "sha512-8fRE76xNwNttVEF2TwxJDGBLWthUkHWSldmfuBzVRmEDWOtu4XdINTgN7TDWzuLg4bbeIMLvfMFD9we5YcWkRQ==", "dev": true, "requires": { "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.6.0", + "@babel/generator": "^7.6.2", "@babel/helper-function-name": "^7.1.0", "@babel/helper-split-export-declaration": "^7.4.4", - "@babel/parser": "^7.6.0", + "@babel/parser": "^7.6.2", "@babel/types": "^7.6.0", "debug": "^4.1.0", "globals": "^11.1.0", diff --git a/js/package.json b/js/package.json index ba9dcb0c2..1e3ae8f11 100644 --- a/js/package.json +++ b/js/package.json @@ -26,7 +26,7 @@ "vuex": "^3.1.1" }, "devDependencies": { - "@babel/core": "^7.6.0", + "@babel/core": "^7.6.2", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/polyfill": "^7.6.0", "@babel/preset-env": "^7.6.0", From 946cb65a986064efc48593dd6d05f37052848323 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 29 Sep 2019 01:14:15 +0000 Subject: [PATCH 31/77] Bump @babel/preset-env from 7.6.0 to 7.6.2 in /js Bumps [@babel/preset-env](https://github.com/babel/babel) from 7.6.0 to 7.6.2. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.6.0...v7.6.2) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 131 ++++++++++++++++++++----------------------- js/package.json | 2 +- 2 files changed, 63 insertions(+), 70 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 791aefe06..c09a49e2d 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -135,16 +135,15 @@ } }, "@babel/generator": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.0.tgz", - "integrity": "sha512-Ms8Mo7YBdMMn1BYuNtKuP/z0TgEIhbcyB8HVR6PPNYp4P61lMsABiS4A3VG1qznjXVCf3r+fVHhm4efTYVsySA==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.2.tgz", + "integrity": "sha512-j8iHaIW4gGPnViaIHI7e9t/Hl8qLjERI6DcV9kEpAIDJsAOrcnXqRS7t+QbhL76pwbtqP+QCQLL0z1CyVmtjjQ==", "dev": true, "requires": { "@babel/types": "^7.6.0", "jsesc": "^2.5.1", "lodash": "^4.17.13", - "source-map": "^0.5.0", - "trim-right": "^1.0.1" + "source-map": "^0.5.0" }, "dependencies": { "@babel/types": { @@ -325,9 +324,9 @@ }, "dependencies": { "@babel/parser": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.0.tgz", - "integrity": "sha512-+o2q111WEx4srBs7L9eJmcwi655eD8sXniLqMB93TBK9GrNzGrxDWSjiqz2hLU0Ha8MTXFIP0yd9fNdP+m43ZQ==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.2.tgz", + "integrity": "sha512-mdFqWrSPCmikBoaBYMuBulzTIKuXVPtEISFbRRVNwMWpCms/hmE2kRq0bblUHaNRKrjRlmVbx1sDHmjmRgD2Xg==", "dev": true }, "@babel/template": { @@ -656,9 +655,9 @@ } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.5.5.tgz", - "integrity": "sha512-F2DxJJSQ7f64FyTVl5cw/9MWn6naXGdk3Q3UhDbFEEHv+EilCPoeRD3Zh/Utx1CJz4uyKlQ4uH+bJPbEhMV7Zw==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.6.2.tgz", + "integrity": "sha512-LDBXlmADCsMZV1Y9OQwMc0MyGZ8Ta/zlD9N67BfQT8uYwkRswiu2hU6nJKrjrt/58aH/vqfQlR/9yId/7A2gWw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", @@ -676,14 +675,14 @@ } }, "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz", - "integrity": "sha512-j1NwnOqMG9mFUOH58JTFsA/+ZYzQLUZ/drqWUqxCYLGeu2JFZL8YrNC9hBxKmWtAuOCHPcRpgv7fhap09Fb4kA==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.6.2.tgz", + "integrity": "sha512-NxHETdmpeSCtiatMRYWVJo7266rrvAC3DTeG5exQBIH/fMIUK7ejDNznBbn3HQl/o9peymRRg7Yqkx6PdUXmMw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-regex": "^7.4.4", - "regexpu-core": "^4.5.4" + "regexpu-core": "^4.6.0" } }, "@babel/plugin-syntax-async-generators": { @@ -761,9 +760,9 @@ } }, "@babel/plugin-transform-block-scoping": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.0.tgz", - "integrity": "sha512-tIt4E23+kw6TgL/edACZwP1OUKrjOTyMrFMLoT5IOFrfMRabCgekjqFd5o6PaAMildBu46oFkekIdMuGkkPEpA==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.2.tgz", + "integrity": "sha512-zZT8ivau9LOQQaOGC7bQLQOT4XPkPXgN2ERfUgk1X8ql+mVkLc4E8eKk+FO3o0154kxzqenWCorfmEXpEZcrSQ==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", @@ -805,14 +804,14 @@ } }, "@babel/plugin-transform-dotall-regex": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz", - "integrity": "sha512-P05YEhRc2h53lZDjRPk/OektxCVevFzZs2Gfjd545Wde3k+yFDbXORgl2e0xpbq8mLcKJ7Idss4fAg0zORN/zg==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.6.2.tgz", + "integrity": "sha512-KGKT9aqKV+9YMZSkowzYoYEiHqgaDhGmPNZlZxX6UeHC4z30nC1J9IrZuGqbYFB1jaIGdv91ujpze0exiVK8bA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-regex": "^7.4.4", - "regexpu-core": "^4.5.4" + "regexpu-core": "^4.6.0" } }, "@babel/plugin-transform-duplicate-keys": { @@ -916,12 +915,12 @@ } }, "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.0.tgz", - "integrity": "sha512-jem7uytlmrRl3iCAuQyw8BpB4c4LWvSpvIeXKpMb+7j84lkx4m4mYr5ErAcmN5KM7B6BqrAvRGjBIbbzqCczew==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.2.tgz", + "integrity": "sha512-xBdB+XOs+lgbZc2/4F5BVDVcDNS4tcSKQc96KmlqLEAwz6tpYPEvPdmDfvVG0Ssn8lAhronaRs6Z6KSexIpK5g==", "dev": true, "requires": { - "regexp-tree": "^0.1.13" + "regexpu-core": "^4.6.0" } }, "@babel/plugin-transform-new-target": { @@ -991,9 +990,9 @@ } }, "@babel/plugin-transform-spread": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz", - "integrity": "sha512-KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.6.2.tgz", + "integrity": "sha512-DpSvPFryKdK1x+EDJYCy28nmAaIMdxmhot62jAXF/o99iA33Zj2Lmcp3vDmz+MUh0LNYVPvfj5iC3feb3/+PFg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" @@ -1029,14 +1028,14 @@ } }, "@babel/plugin-transform-unicode-regex": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz", - "integrity": "sha512-il+/XdNw01i93+M9J9u4T7/e/Ue/vWfNZE4IRUQjplu2Mqb/AFTDimkw2tdEdSH50wuQXZAbXSql0UphQke+vA==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.6.2.tgz", + "integrity": "sha512-orZI6cWlR3nk2YmYdb0gImrgCUwb5cBUwjf6Ks6dvNVvXERkwtJWOQaEOjPiu0Gu1Tq6Yq/hruCZZOOi9F34Dw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-regex": "^7.4.4", - "regexpu-core": "^4.5.4" + "regexpu-core": "^4.6.0" } }, "@babel/polyfill": { @@ -1061,9 +1060,9 @@ } }, "@babel/preset-env": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.6.0.tgz", - "integrity": "sha512-1efzxFv/TcPsNXlRhMzRnkBFMeIqBBgzwmZwlFDw5Ubj0AGLeufxugirwZmkkX/ayi3owsSqoQ4fw8LkfK9SYg==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.6.2.tgz", + "integrity": "sha512-Ru7+mfzy9M1/YTEtlDS8CD45jd22ngb9tXnn64DvQK3ooyqSw9K4K9DUWmYknTTVk4TqygL9dqCrZgm1HMea/Q==", "dev": true, "requires": { "@babel/helper-module-imports": "^7.0.0", @@ -1071,9 +1070,9 @@ "@babel/plugin-proposal-async-generator-functions": "^7.2.0", "@babel/plugin-proposal-dynamic-import": "^7.5.0", "@babel/plugin-proposal-json-strings": "^7.2.0", - "@babel/plugin-proposal-object-rest-spread": "^7.5.5", + "@babel/plugin-proposal-object-rest-spread": "^7.6.2", "@babel/plugin-proposal-optional-catch-binding": "^7.2.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-proposal-unicode-property-regex": "^7.6.2", "@babel/plugin-syntax-async-generators": "^7.2.0", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/plugin-syntax-json-strings": "^7.2.0", @@ -1082,11 +1081,11 @@ "@babel/plugin-transform-arrow-functions": "^7.2.0", "@babel/plugin-transform-async-to-generator": "^7.5.0", "@babel/plugin-transform-block-scoped-functions": "^7.2.0", - "@babel/plugin-transform-block-scoping": "^7.6.0", + "@babel/plugin-transform-block-scoping": "^7.6.2", "@babel/plugin-transform-classes": "^7.5.5", "@babel/plugin-transform-computed-properties": "^7.2.0", "@babel/plugin-transform-destructuring": "^7.6.0", - "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.6.2", "@babel/plugin-transform-duplicate-keys": "^7.5.0", "@babel/plugin-transform-exponentiation-operator": "^7.2.0", "@babel/plugin-transform-for-of": "^7.4.4", @@ -1097,7 +1096,7 @@ "@babel/plugin-transform-modules-commonjs": "^7.6.0", "@babel/plugin-transform-modules-systemjs": "^7.5.0", "@babel/plugin-transform-modules-umd": "^7.2.0", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.6.0", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.6.2", "@babel/plugin-transform-new-target": "^7.4.4", "@babel/plugin-transform-object-super": "^7.5.5", "@babel/plugin-transform-parameters": "^7.4.4", @@ -1105,11 +1104,11 @@ "@babel/plugin-transform-regenerator": "^7.4.5", "@babel/plugin-transform-reserved-words": "^7.2.0", "@babel/plugin-transform-shorthand-properties": "^7.2.0", - "@babel/plugin-transform-spread": "^7.2.0", + "@babel/plugin-transform-spread": "^7.6.2", "@babel/plugin-transform-sticky-regex": "^7.2.0", "@babel/plugin-transform-template-literals": "^7.4.4", "@babel/plugin-transform-typeof-symbol": "^7.2.0", - "@babel/plugin-transform-unicode-regex": "^7.4.4", + "@babel/plugin-transform-unicode-regex": "^7.6.2", "@babel/types": "^7.6.0", "browserslist": "^4.6.0", "core-js-compat": "^3.1.1", @@ -1143,16 +1142,16 @@ } }, "@babel/traverse": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.0.tgz", - "integrity": "sha512-93t52SaOBgml/xY74lsmt7xOR4ufYvhb5c5qiM6lu4J/dWGMAfAh6eKw4PjLes6DI6nQgearoxnFJk60YchpvQ==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.2.tgz", + "integrity": "sha512-8fRE76xNwNttVEF2TwxJDGBLWthUkHWSldmfuBzVRmEDWOtu4XdINTgN7TDWzuLg4bbeIMLvfMFD9we5YcWkRQ==", "dev": true, "requires": { "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.6.0", + "@babel/generator": "^7.6.2", "@babel/helper-function-name": "^7.1.0", "@babel/helper-split-export-declaration": "^7.4.4", - "@babel/parser": "^7.6.0", + "@babel/parser": "^7.6.2", "@babel/types": "^7.6.0", "debug": "^4.1.0", "globals": "^11.1.0", @@ -1169,9 +1168,9 @@ } }, "@babel/parser": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.0.tgz", - "integrity": "sha512-+o2q111WEx4srBs7L9eJmcwi655eD8sXniLqMB93TBK9GrNzGrxDWSjiqz2hLU0Ha8MTXFIP0yd9fNdP+m43ZQ==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.2.tgz", + "integrity": "sha512-mdFqWrSPCmikBoaBYMuBulzTIKuXVPtEISFbRRVNwMWpCms/hmE2kRq0bblUHaNRKrjRlmVbx1sDHmjmRgD2Xg==", "dev": true }, "@babel/types": { @@ -2348,9 +2347,9 @@ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" }, "caniuse-lite": { - "version": "1.0.30000989", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000989.tgz", - "integrity": "sha512-vrMcvSuMz16YY6GSVZ0dWDTJP8jqk3iFQ/Aq5iqblPwxSVVZI+zxDyTX0VPqtQsDnfdrBDcsmhgTEOh5R8Lbpw==", + "version": "1.0.30000997", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000997.tgz", + "integrity": "sha512-BQLFPIdj2ntgBNWp9Q64LGUIEmvhKkzzHhUHR3CD5A9Lb7ZKF20/+sgadhFap69lk5XmK1fTUleDclaRFvgVUA==", "dev": true }, "catharsis": { @@ -3248,9 +3247,9 @@ "dev": true }, "electron-to-chromium": { - "version": "1.3.253", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.253.tgz", - "integrity": "sha512-LAwFRWViiiCSxQ2Lj3mnyEP8atkpAoHSPUnkFoy4mNabbnPHxtfseWvPCGGhewjHQI+ky/V4LdlTyyI0d3YPXA==", + "version": "1.3.267", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.267.tgz", + "integrity": "sha512-9Q2ixAJC+oHjWNtJV0MQ4vJMCWSowIrC6V6vcr+bwPddTDHj2ddv9xxXCzf4jT/fy6HP7maPoW0gifXkRxCttQ==", "dev": true }, "elliptic": { @@ -6130,9 +6129,9 @@ } }, "node-releases": { - "version": "1.1.29", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.29.tgz", - "integrity": "sha512-R5bDhzh6I+tpi/9i2hrrvGJ3yKPYzlVOORDkXhnZuwi5D3q1I5w4vYy24PJXTcLk9Q0kws9TO77T75bcK8/ysQ==", + "version": "1.1.32", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.32.tgz", + "integrity": "sha512-VhVknkitq8dqtWoluagsGPn3dxTvN9fwgR59fV3D7sLBHe0JfDramsMI8n8mY//ccq/Kkrf8ZRHRpsyVZ3qw1A==", "dev": true, "requires": { "semver": "^5.3.0" @@ -6956,16 +6955,10 @@ "safe-regex": "^1.1.0" } }, - "regexp-tree": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.13.tgz", - "integrity": "sha512-hwdV/GQY5F8ReLZWO+W1SRoN5YfpOKY6852+tBFcma72DKBIcHjPRIlIvQN35bCOljuAfP2G2iB0FC/w236mUw==", - "dev": true - }, "regexpu-core": { - "version": "4.5.5", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.5.5.tgz", - "integrity": "sha512-FpI67+ky9J+cDizQUJlIlNZFKual/lUkFr1AG6zOCpwZ9cLrg8UUVakyUQJD7fCDIe9Z2nwTQJNPyonatNmDFQ==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.6.0.tgz", + "integrity": "sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==", "dev": true, "requires": { "regenerate": "^1.4.0", diff --git a/js/package.json b/js/package.json index ba9dcb0c2..b52d8ee14 100644 --- a/js/package.json +++ b/js/package.json @@ -29,7 +29,7 @@ "@babel/core": "^7.6.0", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/polyfill": "^7.6.0", - "@babel/preset-env": "^7.6.0", + "@babel/preset-env": "^7.6.2", "babel-loader": "^8.0.6", "css-loader": "^3.2.0", "karma": "^4.3.0", From 1d26dba25ab60898e4a4fe195b509f1f5cf91111 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 1 Oct 2019 02:35:04 +0000 Subject: [PATCH 32/77] [tx-robot] updated from transifex --- l10n/gl.js | 4 ++-- l10n/gl.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/l10n/gl.js b/l10n/gl.js index 70df38cdc..132b78c1c 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -118,12 +118,12 @@ OC.L10N.register( "Show board details" : "Amosar os detalles do taboleiro", "All Boards" : "Todos os taboleiros", "Archived boards" : "Taboleiros arquivados", - "Share board" : "Comparte taboleiro", + "Share board" : "Taboleiro compartido", "Archived cards" : "Tarxetas arquivadas", "Actions" : "Accións", "Drop your files here to upload it to the card" : "Solte aquí os seus ficheiros para envialos á tarxeta", "Assign card to me" : "Asignarme a tarxeta", - "Unassign card from me" : "Desasignarme tarxeta", + "Unassign card from me" : "Desasignarme a tarxeta", "Archive card" : "Arquivar a tarxeta", "Unarchive card" : "Desarquivar a tarxeta", "Delete card" : "Eliminar tarxeta", diff --git a/l10n/gl.json b/l10n/gl.json index 10e04edc6..51d4cf725 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -116,12 +116,12 @@ "Show board details" : "Amosar os detalles do taboleiro", "All Boards" : "Todos os taboleiros", "Archived boards" : "Taboleiros arquivados", - "Share board" : "Comparte taboleiro", + "Share board" : "Taboleiro compartido", "Archived cards" : "Tarxetas arquivadas", "Actions" : "Accións", "Drop your files here to upload it to the card" : "Solte aquí os seus ficheiros para envialos á tarxeta", "Assign card to me" : "Asignarme a tarxeta", - "Unassign card from me" : "Desasignarme tarxeta", + "Unassign card from me" : "Desasignarme a tarxeta", "Archive card" : "Arquivar a tarxeta", "Unarchive card" : "Desarquivar a tarxeta", "Delete card" : "Eliminar tarxeta", From b036ce922c23afc09c0ec9f329713928db916401 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 3 Oct 2019 02:22:56 +0000 Subject: [PATCH 33/77] [tx-robot] updated from transifex --- l10n/sl.js | 10 ++++++++++ l10n/sl.json | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/l10n/sl.js b/l10n/sl.js index c25dd4504..70491787a 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -20,6 +20,8 @@ OC.L10N.register( "{user} has restored the board {board}" : "Uporabnik {user} obnovi izbrisano zbirko {board}", "You have shared the board {board} with {acl}" : "Omogočite souporabo zbirke {board} z uporabnikom {acl}", "{user} has shared the board {board} with {acl}" : "Uporabnik {user} omogoči souporabo zbirke {board} z uporabnikom {acl}", + "You have removed {acl} from the board {board}" : "Odstranite uporabnika {acl} z zbirke {board}", + "{user} has removed {acl} from the board {board}" : "Uporabnik {user} odstrani uporabnika {acl} z zbirke {board}", "You have renamed the board {before} to {board}" : "Zbirko {before} preimenujete v {board}", "{user} has renamed the board {before} to {board}" : "Uporabnik {user} preimenuje zbirko {before} v {board}", "You have archived the board {board}" : "Arhivirate zbirko {board}", @@ -34,12 +36,16 @@ OC.L10N.register( "{user} has deleted stack {stack} on board {board}" : "Uporabnik {user} izbriše paket nalog {stack} v zbirki {board}", "You have created card {card} in stack {stack} on board {board}" : "Ustvarite nalogo {card} v paketu {stack} zbirke {board}", "{user} has created card {card} in stack {stack} on board {board}" : "Uporabnik {user} ustvari nalogo {card} v paketu {stack} zbirke {board}", + "You have renamed the card {before} to {card}" : "Preimenujete nalogo {before} v {card}", + "{user} has renamed the card {before} to {card}" : "Uporabnik {user} preimenuje nalogo {before} v {card}", "You have commented on card {card}" : "Vpišete opombo k nalogi {card}", "{user} has commented on card {card}" : "Uporabnik {user} vpiše opombo k nalogi {card}", "A card description inside the Deck app has been changed" : "Spremenjen jeopis ene izmed nalog v programu Deck", "Deck" : "Deck", "Changes in the Deck app" : "Spremembe v programu Deck", + "A comment was created on a card" : "Nalogi je dodana nova opomba", "Personal" : "Osebno", + "No data was provided to create an attachment." : "Ni podanih podatkov za ustvarjanje priloge.", "Finished" : "Končano", "To review" : "Za pregled", "Action needed" : "Čaka na odziv", @@ -56,6 +62,8 @@ OC.L10N.register( "Missing a temporary folder" : "Manjka začasna mapa", "Could not write file to disk" : "Ni mogoče zapisati datoteke na disk", "A PHP extension stopped the file upload" : "Razširitev PHP onemogoča pošiljanje datoteke", + "A kanban style project and personal management tool for Nextcloud" : "Orodje za projektno in osebno vodenje nalog v slogu kanban za okolje Nextcloud.", + "Select the board to link to a project" : "Izberite zbirko za povezavo s projektom", "Select board" : "Izbor zbirke", "Add a new stack" : "Dodaj nov paket nalog", "Submit" : "Objavi", @@ -68,6 +76,7 @@ OC.L10N.register( "Share board" : "Souporaba zbirke", "Archived cards" : "Arhivirane naloge", "Actions" : "Dejanja", + "Drop your files here to upload it to the card" : "Spustite datoteke na to mesto za dodajanje k nalogi", "Assign card to me" : "Nalogo dodeli meni", "Unassign card from me" : "Odstrani me z naloge", "Archive card" : "Arhiviraj nalogo", @@ -98,6 +107,7 @@ OC.L10N.register( "Deleted stacks" : "Izbrisani paketi nalog", "Deleted cards" : "Izbrisane naloge", "Status" : "Stanje", + "No archived boards to display" : "Ni arhiviranih zbirk za prikaz", "Title" : "Naslov", "Members" : "Člani", "More actions" : "Več možnosti", diff --git a/l10n/sl.json b/l10n/sl.json index a0fb83edd..640007d9c 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -18,6 +18,8 @@ "{user} has restored the board {board}" : "Uporabnik {user} obnovi izbrisano zbirko {board}", "You have shared the board {board} with {acl}" : "Omogočite souporabo zbirke {board} z uporabnikom {acl}", "{user} has shared the board {board} with {acl}" : "Uporabnik {user} omogoči souporabo zbirke {board} z uporabnikom {acl}", + "You have removed {acl} from the board {board}" : "Odstranite uporabnika {acl} z zbirke {board}", + "{user} has removed {acl} from the board {board}" : "Uporabnik {user} odstrani uporabnika {acl} z zbirke {board}", "You have renamed the board {before} to {board}" : "Zbirko {before} preimenujete v {board}", "{user} has renamed the board {before} to {board}" : "Uporabnik {user} preimenuje zbirko {before} v {board}", "You have archived the board {board}" : "Arhivirate zbirko {board}", @@ -32,12 +34,16 @@ "{user} has deleted stack {stack} on board {board}" : "Uporabnik {user} izbriše paket nalog {stack} v zbirki {board}", "You have created card {card} in stack {stack} on board {board}" : "Ustvarite nalogo {card} v paketu {stack} zbirke {board}", "{user} has created card {card} in stack {stack} on board {board}" : "Uporabnik {user} ustvari nalogo {card} v paketu {stack} zbirke {board}", + "You have renamed the card {before} to {card}" : "Preimenujete nalogo {before} v {card}", + "{user} has renamed the card {before} to {card}" : "Uporabnik {user} preimenuje nalogo {before} v {card}", "You have commented on card {card}" : "Vpišete opombo k nalogi {card}", "{user} has commented on card {card}" : "Uporabnik {user} vpiše opombo k nalogi {card}", "A card description inside the Deck app has been changed" : "Spremenjen jeopis ene izmed nalog v programu Deck", "Deck" : "Deck", "Changes in the Deck app" : "Spremembe v programu Deck", + "A comment was created on a card" : "Nalogi je dodana nova opomba", "Personal" : "Osebno", + "No data was provided to create an attachment." : "Ni podanih podatkov za ustvarjanje priloge.", "Finished" : "Končano", "To review" : "Za pregled", "Action needed" : "Čaka na odziv", @@ -54,6 +60,8 @@ "Missing a temporary folder" : "Manjka začasna mapa", "Could not write file to disk" : "Ni mogoče zapisati datoteke na disk", "A PHP extension stopped the file upload" : "Razširitev PHP onemogoča pošiljanje datoteke", + "A kanban style project and personal management tool for Nextcloud" : "Orodje za projektno in osebno vodenje nalog v slogu kanban za okolje Nextcloud.", + "Select the board to link to a project" : "Izberite zbirko za povezavo s projektom", "Select board" : "Izbor zbirke", "Add a new stack" : "Dodaj nov paket nalog", "Submit" : "Objavi", @@ -66,6 +74,7 @@ "Share board" : "Souporaba zbirke", "Archived cards" : "Arhivirane naloge", "Actions" : "Dejanja", + "Drop your files here to upload it to the card" : "Spustite datoteke na to mesto za dodajanje k nalogi", "Assign card to me" : "Nalogo dodeli meni", "Unassign card from me" : "Odstrani me z naloge", "Archive card" : "Arhiviraj nalogo", @@ -96,6 +105,7 @@ "Deleted stacks" : "Izbrisani paketi nalog", "Deleted cards" : "Izbrisane naloge", "Status" : "Stanje", + "No archived boards to display" : "Ni arhiviranih zbirk za prikaz", "Title" : "Naslov", "Members" : "Člani", "More actions" : "Več možnosti", From d24011b338f702321e1bad987c8a25a711eb5da6 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Fri, 4 Oct 2019 19:16:47 +0000 Subject: [PATCH 34/77] Bump webpack from 4.40.2 to 4.41.0 in /js Bumps [webpack](https://github.com/webpack/webpack) from 4.40.2 to 4.41.0. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.40.2...v4.41.0) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 36 +++++++++++++++--------------------- js/package.json | 2 +- 2 files changed, 16 insertions(+), 22 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 8200f4ba4..943b9cd73 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -2231,9 +2231,9 @@ }, "dependencies": { "bluebird": { - "version": "3.5.5", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz", - "integrity": "sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==", + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.0.tgz", + "integrity": "sha512-aBQ1FxIa7kSWCcmKHlcHFlT2jt6J/l4FzC7KcPELkOJOsPOb/bccdhmIrKDfXhwFrmc7vDoDrrepFvGqjyXGJg==", "dev": true }, "glob": { @@ -2275,9 +2275,9 @@ } }, "yallist": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz", - "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true } } @@ -6376,9 +6376,9 @@ } }, "parse-asn1": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.4.tgz", - "integrity": "sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw==", + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz", + "integrity": "sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==", "dev": true, "requires": { "asn1.js": "^4.0.0", @@ -7883,9 +7883,9 @@ "integrity": "sha1-JLFUOXOrRCiW2a02fdnL2/r+kYs=" }, "terser": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.3.1.tgz", - "integrity": "sha512-pnzH6dnFEsR2aa2SJaKb1uSCl3QmIsJ8dEkj0Fky+2AwMMcC9doMqLOQIH6wVTEKaVfKVvLSk5qxPBEZT9mywg==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.3.4.tgz", + "integrity": "sha512-Kcrn3RiW8NtHBP0ssOAzwa2MsIRQ8lJWiBG/K7JgqPlomA3mtb2DEmp4/hrUA+Jujx+WZ02zqd7GYD+QRBB/2Q==", "dev": true, "requires": { "commander": "^2.20.0", @@ -8092,12 +8092,6 @@ "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=" }, - "trim-right": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", - "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", - "dev": true - }, "trim-trailing-lines": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.2.tgz", @@ -8912,9 +8906,9 @@ } }, "webpack": { - "version": "4.40.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.40.2.tgz", - "integrity": "sha512-5nIvteTDCUws2DVvP9Qe+JPla7kWPPIDFZv55To7IycHWZ+Z5qBdaBYPyuXWdhggTufZkQwfIK+5rKQTVovm2A==", + "version": "4.41.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.0.tgz", + "integrity": "sha512-yNV98U4r7wX1VJAj5kyMsu36T8RPPQntcb5fJLOsMz/pt/WrKC0Vp1bAlqPLkA1LegSwQwf6P+kAbyhRKVQ72g==", "dev": true, "requires": { "@webassemblyjs/ast": "1.8.5", diff --git a/js/package.json b/js/package.json index c97f45e4c..a8fb5b136 100644 --- a/js/package.json +++ b/js/package.json @@ -40,7 +40,7 @@ "vue-loader": "^15.7.1", "vue-style-loader": "^4.1.2", "vue-template-compiler": "^2.6.10", - "webpack": "^4.40.2", + "webpack": "^4.41.0", "webpack-cli": "^3.3.9", "webpack-merge": "^4.2.2" }, From 295b1669979a36cad2fe3a03709218b09520d7a7 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 6 Oct 2019 01:13:06 +0000 Subject: [PATCH 35/77] Bump nextcloud-vue from 0.12.3 to 0.12.4 in /js Bumps [nextcloud-vue](https://github.com/nextcloud/nextcloud-vue) from 0.12.3 to 0.12.4. - [Release notes](https://github.com/nextcloud/nextcloud-vue/releases) - [Commits](https://github.com/nextcloud/nextcloud-vue/compare/v0.12.3...v0.12.4) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 6 +++--- js/package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 943b9cd73..df5b5e839 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -6008,9 +6008,9 @@ } }, "nextcloud-vue": { - "version": "0.12.3", - "resolved": "https://registry.npmjs.org/nextcloud-vue/-/nextcloud-vue-0.12.3.tgz", - "integrity": "sha512-qH0s1A9jgsbd9LU+icOIkQIcu9HoY8IW+ELUmP+HJvOdLAjAh3TtEz9ifsy+RcnUUOqASTveSEqxVmXDckwWeQ==", + "version": "0.12.4", + "resolved": "https://registry.npmjs.org/nextcloud-vue/-/nextcloud-vue-0.12.4.tgz", + "integrity": "sha512-VonKoRiJm6WXDqxwmxfVYZ2ir2oLQJ9nDKrsyW4ipEQB279QBAw18G9goIaTNkBkUnKK9I+xKG7WD2egE5sleA==", "requires": { "@babel/polyfill": "^7.4.4", "escape-html": "^1.0.3", diff --git a/js/package.json b/js/package.json index a8fb5b136..053b66fac 100644 --- a/js/package.json +++ b/js/package.json @@ -17,7 +17,7 @@ "markdown-it": "^10.0.0", "markdown-it-link-target": "^1.0.2", "nextcloud-axios": "^0.2.1", - "nextcloud-vue": "^0.12.3", + "nextcloud-vue": "^0.12.4", "nextcloud-vue-collections": "^0.5.6", "ng-infinite-scroll": "^1.3.0", "ng-sortable": "^1.3.8", From 311bb1f8a9b8423012a65b89afb0f4d3ab7e4562 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 6 Oct 2019 07:59:16 +0000 Subject: [PATCH 36/77] Bump @uirouter/angularjs from 1.0.22 to 1.0.23 in /js Bumps [@uirouter/angularjs](https://github.com/angular-ui/ui-router) from 1.0.22 to 1.0.23. - [Release notes](https://github.com/angular-ui/ui-router/releases) - [Changelog](https://github.com/angular-ui/ui-router/blob/master/CHANGELOG.md) - [Commits](https://github.com/angular-ui/ui-router/compare/1.0.22...1.0.23) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 14 +++++++------- js/package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index df5b5e839..ef4b75f84 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -1249,17 +1249,17 @@ "integrity": "sha512-aK9jxMypeSrhiYofWWBf/T7O+KwaiAHzM4sveCdWPn71lzUSMimRnKzhXDKfKwV1kWoBo2P1aGgaIYGLf9/ljw==" }, "@uirouter/angularjs": { - "version": "1.0.22", - "resolved": "https://registry.npmjs.org/@uirouter/angularjs/-/angularjs-1.0.22.tgz", - "integrity": "sha512-d0SvdbXAav+Z6gCJd7gmn2eXEUtO3RvYcSLwtPaE8+7QiWHpSKNfGdD4D3noXhO2yUTz/AwaxsiRFMCwgVI0UQ==", + "version": "1.0.23", + "resolved": "https://registry.npmjs.org/@uirouter/angularjs/-/angularjs-1.0.23.tgz", + "integrity": "sha512-r4hLSw7R3mwXGC5Sq7yxNlBK1sSzQUm/1MzigwwYRHoMO5uKcBPUhxFYx5U7kufP2Xl1165KeZvRsLCh0/Z1ng==", "requires": { - "@uirouter/core": "5.0.23" + "@uirouter/core": "6.0.1" } }, "@uirouter/core": { - "version": "5.0.23", - "resolved": "https://registry.npmjs.org/@uirouter/core/-/core-5.0.23.tgz", - "integrity": "sha512-rwFOH++z/KY8y+h0IOpQ5uC8Nim6E0EBCQrIjhVCr+XKYXgpK+VdtuOLFdogvbJ3AAi5Z7ei00qdEr7Did5CAg==" + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@uirouter/core/-/core-6.0.1.tgz", + "integrity": "sha512-mHCutiHtDDRKYmrJ92XPKDoSb2bgqaDyUpHdF4hUE+riwgkCvGdBjL8u+VDTcV3slBAk6B0LBIOIajjWkkObbQ==" }, "@vue/component-compiler-utils": { "version": "3.0.0", diff --git a/js/package.json b/js/package.json index 053b66fac..cadd87d43 100644 --- a/js/package.json +++ b/js/package.json @@ -7,7 +7,7 @@ "test": "tests" }, "dependencies": { - "@uirouter/angularjs": "^1.0.22", + "@uirouter/angularjs": "^1.0.23", "angular": "^1.7.8", "angular-animate": "^1.7.8", "angular-file-upload": "^2.5.0", From e849dd3a1eb6abb1ddc21c013616f54ca17263e9 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 8 Oct 2019 02:23:26 +0000 Subject: [PATCH 37/77] [tx-robot] updated from transifex --- l10n/fi.js | 6 +++--- l10n/fi.json | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/l10n/fi.js b/l10n/fi.js index e6e9ee912..2c5af8dbc 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -29,14 +29,14 @@ OC.L10N.register( "{user} has restored the attachment {attachment} to card {card}" : "{user} palautti liitteen {attachment} kortille {card}", "You have commented on card {card}" : "Kommentoit korttia {card}", "{user} has commented on card {card}" : "{user} kommentoi korttia {card}", - "Deck" : "Kansi", + "Deck" : "Pakka", "A comment was created on a card" : "Kommentti luotiin kortille", "Personal" : "Henkilökohtainen", "The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.", "The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.", "{user} has shared the board %s with you." : "{user} on jakanut taulun %s kanssasi.", "Finished" : "Valmistunut", - "To review" : "Arvostella", + "To review" : "Arvosteltavana", "Action needed" : "Toimia vaaditaan", "Later" : "Myöhemmin", "To do" : "Odottaa", @@ -109,7 +109,7 @@ OC.L10N.register( "Select an attachment" : "Valitse liite", "Cancel upload" : "Peruuta lähetys", "by" : " Kirjoittaja:", - "Undo file deletion" : "Kumoa tiedoston luonti", + "Undo file deletion" : "Kumoa tiedoston poisto", "Insert the file into the description" : "Lisää tiedosto kuvaukseen", "Delete attachment" : "Poista liite", "Modified:" : "Muokattu:", diff --git a/l10n/fi.json b/l10n/fi.json index 3a3ce35ca..05fc6f479 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -27,14 +27,14 @@ "{user} has restored the attachment {attachment} to card {card}" : "{user} palautti liitteen {attachment} kortille {card}", "You have commented on card {card}" : "Kommentoit korttia {card}", "{user} has commented on card {card}" : "{user} kommentoi korttia {card}", - "Deck" : "Kansi", + "Deck" : "Pakka", "A comment was created on a card" : "Kommentti luotiin kortille", "Personal" : "Henkilökohtainen", "The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.", "The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.", "{user} has shared the board %s with you." : "{user} on jakanut taulun %s kanssasi.", "Finished" : "Valmistunut", - "To review" : "Arvostella", + "To review" : "Arvosteltavana", "Action needed" : "Toimia vaaditaan", "Later" : "Myöhemmin", "To do" : "Odottaa", @@ -107,7 +107,7 @@ "Select an attachment" : "Valitse liite", "Cancel upload" : "Peruuta lähetys", "by" : " Kirjoittaja:", - "Undo file deletion" : "Kumoa tiedoston luonti", + "Undo file deletion" : "Kumoa tiedoston poisto", "Insert the file into the description" : "Lisää tiedosto kuvaukseen", "Delete attachment" : "Poista liite", "Modified:" : "Muokattu:", From 9f5acf89400582b3ec2b4d1fc70721e180c63e97 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 9 Oct 2019 02:23:52 +0000 Subject: [PATCH 38/77] [tx-robot] updated from transifex --- l10n/fi.js | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++- l10n/fi.json | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 120 insertions(+), 2 deletions(-) diff --git a/l10n/fi.js b/l10n/fi.js index 2c5af8dbc..46cd3760b 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -16,23 +16,70 @@ OC.L10N.register( "{user} has deleted the board {board}" : "{user} poisti taulun {board}", "You have restored the board {board}" : "Palautit taulun {board}", "{user} has restored the board {board}" : "{user} palautti taulun {board}", + "You have shared the board {board} with {acl}" : "Jaoit taulun {board} ryhmälle {acl}", + "{user} has shared the board {board} with {acl}" : "{user} jakoi taulun {board} ryhmälle {acl}", + "You have removed {acl} from the board {board}" : "Poistit ryhmän {acl} taulun {board} jaosta", + "{user} has removed {acl} from the board {board}" : "{user} poisti {acl}-ryhmän taululta {board}", "You have renamed the board {before} to {board}" : "Asetit taulun {before} uudeksi nimeksi {board}", "{user} has renamed the board {before} to {board}" : "{user} asetti taulun {before} uudeksi nimeksi {board}", "You have archived the board {board}" : "Arkistoit taulun {board}", "{user} has archived the board {before}" : "{user} arkistoi taulun {before}", + "You have unarchived the board {board}" : "Palautit taulun {board} arkistosta ", + "{user} has unarchived the board {before}" : "{user} palautti taulun {before} arkistosta", + "You have created a new stack {stack} on board {board}" : "Loit pinon {stack} tauluun {board}", + "{user} has created a new stack {stack} on board {board}" : "{user} loi pinon {stack} tauluun {board}", + "You have renamed stack {before} to {stack} on board {board}" : "Muutit pinon {before} nimeksi {stack} taululla {board}", + "{user} has renamed stack {before} to {stack} on board {board}" : "{user} muutti pinon {before} nimeksi {stack} taululla {board}", + "You have deleted stack {stack} on board {board}" : "Poistit pinon {stack} taululta {board}", + "{user} has deleted stack {stack} on board {board}" : "{user} poisti pinon {stack} taululta {board}", + "You have created card {card} in stack {stack} on board {board}" : "Loit kortin {card} pinoon {stack} taululla {board}", + "{user} has created card {card} in stack {stack} on board {board}" : "{user} loi kortin {card} pinoon {stack} taululla {board}", + "You have deleted card {card} in stack {stack} on board {board}" : "Poistit kortin {card} pinosta {stack} taululta {board}", + "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} poisti kortin {card} pinosta {stack} taululta {board}", "You have renamed the card {before} to {card}" : "Muutit kortin {before} uudeksi nimeksi {card}", "{user} has renamed the card {before} to {card}" : "{user} muutti kortin {before} uudeksi nimeksi {card}", + "You have added a description to card {card} in stack {stack} on board {board}" : "Lisäsit kuvauksen korttiin {card} pinossa {stack} taululla {board}", + "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} lisäsi kuvauksen korttiin {card} pinossa {stack} taululla {board}", + "You have updated the description of card {card} in stack {stack} on board {board}" : "Päivitit kortin {card} kuvausta pinossa {stack} taululla {board}", + "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} päivitti kortin {card} kuvausta pinossa {stack} taululla {board}", + "You have archived card {card} in stack {stack} on board {board}" : "Arkistoit kortin {card} pinossa {stack} taululla {board}", + "{user} has archived card {card} in stack {stack} on board {board}" : "{user} arkistoi kortin {card} pinossa {stack} taululla {board}", + "You have unarchived card {card} in stack {stack} on board {board}" : "Palautit arkistosta kortin {card} pinossa {stack} taululla {board}", + "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} palautti arkistosta kortin {card} pinossa {stack} taululla {board}", + "You have removed the due date of card {card}" : "Poistit eräpäivän kortilta {card}", + "{user} has removed the due date of card {card}" : "{user} poisti eräpäivän kortilta {card}", + "You have set the due date of card {card} to {after}" : "Asetit kortille {card} eräpäivän {after}", + "{user} has set the due date of card {card} to {after}" : "{user} asetti kortille {card} eräpäivän {after}", + "You have updated the due date of card {card} to {after}" : "Päivitit kortin {card} eräpäiväksi {after}", + "{user} has updated the due date of card {card} to {after}" : "{user} päivitti kortin {card} eräpäiväksi {after}", + "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Lisäsit tunnisteen {label} korttiin {card} pinossa {stack} taululla {board}", + "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} lisäsi tunnisteen {label} korttiin {card} pinossa {stack} taululla {board}", + "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Poistit tunnisteen {label} kortista {card} pinossa {stack} taululla {board}", + "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} poisti tunnisteen {label} kortista {card} pinossa {stack} taululla {board}", + "You have assigned {assigneduser} to card {card} on board {board}" : "Asetit kortin {card} käyttäjän {assigneduser} tehtäväksi taululla {board}", + "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} asetti kortin {card} käyttäjän {assigneduser} tehtäväksi taululla {board}", + "You have unassigned {assigneduser} from card {card} on board {board}" : "Poistit kortin {card} käyttäjän {assigneduser} tehtävistä taululla {board}", + "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} poisti kortin {card} käyttäjän {assigneduser} tehtävistä taululla {board}", + "You have moved the card {card} from stack {stackBefore} to {stack}" : "Siirsit kortin {card} pinosta {stackBefore} pinoon {stack}", + "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} siirsi kortin {card} pinosta {stackBefore} pinoon {stack}", "You have added the attachment {attachment} to card {card}" : "Lisäsit liitteen {attachment} kortille {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} lisäsi liitteen {attachment} kortille {card}", + "You have updated the attachment {attachment} on card {card}" : "Päivitit kortin {card} liitettä {attachment}", + "{user} has updated the attachment {attachment} to card {card}" : "{user} päivitti kortin {card} liitettä {attachment}", "You have deleted the attachment {attachment} from card {card}" : "Poistit liitteen {attachment} kortilta {card}", + "{user} has deleted the attachment {attachment} to card {card}" : "{user} poisti liitteen {attachment} kortilta {card}", "You have restored the attachment {attachment} to card {card}" : "Palautit liitteen {attachment} kortille {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} palautti liitteen {attachment} kortille {card}", "You have commented on card {card}" : "Kommentoit korttia {card}", "{user} has commented on card {card}" : "{user} kommentoi korttia {card}", + "A card description inside the Deck app has been changed" : "Kortin kuvaus Pakka-sovelluksessa on vaihtunut", "Deck" : "Pakka", + "Changes in the Deck app" : "Muutokset Pakka-sovelluksessa", "A comment was created on a card" : "Kommentti luotiin kortille", "Personal" : "Henkilökohtainen", + "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortti \"%s\" taululla \"%s\" on asetettu sinulle käyttäjän %s toimesta.", "The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.", + "%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".", "The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.", "{user} has shared the board %s with you." : "{user} on jakanut taulun %s kanssasi.", "Finished" : "Valmistunut", @@ -46,16 +93,23 @@ OC.L10N.register( "Example Task 2" : "Esimerkkitehtävä 2", "Example Task 1" : "Esimerkkitehtävä 1", "The file was uploaded" : "Tiedosto lähetettiin", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Lähetetty tiedosto ylittää php.ini-tiedostossa määritellyn upload_max_filesize -säännön ", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Lähetettävän tiedoston enimmäiskoko ylittää HTML-lomakkeessa määritellyn MAX_FILE_SIZE-säännön", "The file was only partially uploaded" : "Tiedosto lähetettiin vain osittain", "No file was uploaded" : "Tiedostoa ei lähetetty", + "Missing a temporary folder" : "Väliaikaistiedostojen kansio puuttuu", "Could not write file to disk" : "Tiedostoa ei voitu kirjoittaa levylle", + "A PHP extension stopped the file upload" : "PHP:n laajennus esti tiedoston lähettämisen", + "No file uploaded or file size exceeds maximum of %s" : "Tiedostoa ei lähetetty tai sen koko ylitti maksimin %s", "A kanban style project and personal management tool for Nextcloud" : "Kanban-tyylinen projektien ja henkilökohtaisten asioiden hallintatyökalu Nextcloudille", + "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Pakka on Nextcloudissa työtään hallinnoivien tiimien käyttöön tarkoitettu kanban-tyyppinen organisointityökalu.\n\n\n- 📥 Lisää tehtävät korteille ja järjestele ne mielesi mukaan\n- 📄 Kirjoita lisätietoja markdown-kielellä\n- 🔖 Määritä tunnisteita helpottaaksesi hallintaa\n- 👥 Jaa tiimin, perheen tai kavereiden kanssa\n- 📎 Lisää tiedostoja ja upota ne lisätietoihin\n- 💬 Keskustele tiimisi kanssa kommenteilla\n- ⚡ Pidä kirjaa muutoksista tapahtumavirran avulla\n- 🚀 Pidä projektisi hallinnassa", "Select the board to link to a project" : "Valitse projektiin linkitettävä taulu", "Select board" : "Valitse taulu", "Add a new stack" : "Lisää uusi pino", "Submit" : "Lähetä", "Show archived cards" : "Näytä arkistoidut kortit", "Hide archived cards" : "Piilota arkistoidut kortit", + "Toggle compact mode" : "Käytä kompaktia tilaa", "Show board details" : "Näytä taulun tiedot", "All Boards" : "Kaikki taulut", "Archived boards" : "Arkistoidut taulut", @@ -90,6 +144,7 @@ OC.L10N.register( "Delete tag" : "Poista tunniste", "Create" : "Luo", "Create a new tag" : "Luo uusi tunniste", + "Deleted stacks" : "Poistetut pinot", "Deleted cards" : "Poistetut kortit", "Status" : "Tila", "No archived boards to display" : "Ei arkistoituja tauluja näytettäväksi", @@ -103,12 +158,14 @@ OC.L10N.register( "Delete board" : "Poista taulu", "Update board" : "Päivitä taulu", "Reset board" : "Nollaa taulu", + "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Peru taulun poisto - muussa tapauksessa taulu poistetaan seuraavan cron-ajon yhteydessä.", "Create new board" : "Luo uusi taulu", "New board title" : "Uusi taulun otsikko", "Create board" : "Luo taulu", "Select an attachment" : "Valitse liite", "Cancel upload" : "Peruuta lähetys", "by" : " Kirjoittaja:", + "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Peru tiedoston poisto - muussa tapauksessa tiedosto poistetaan seuraavan cron-ajon yhteydessä.", "Undo file deletion" : "Kumoa tiedoston poisto", "Insert the file into the description" : "Lisää tiedosto kuvaukseen", "Delete attachment" : "Poista liite", @@ -134,6 +191,8 @@ OC.L10N.register( "Shared boards" : "Jaetut taulut", "Move board to archive" : "Siirrä taulu arkistoon", "Create a new board" : "Luo uusi taulu", - "Settings" : "Asetukset" + "Settings" : "Asetukset", + "Limit deck to groups" : "Rajoita Pakan käyttö ryhmille", + "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja." }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/fi.json b/l10n/fi.json index 05fc6f479..b0f126819 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -14,23 +14,70 @@ "{user} has deleted the board {board}" : "{user} poisti taulun {board}", "You have restored the board {board}" : "Palautit taulun {board}", "{user} has restored the board {board}" : "{user} palautti taulun {board}", + "You have shared the board {board} with {acl}" : "Jaoit taulun {board} ryhmälle {acl}", + "{user} has shared the board {board} with {acl}" : "{user} jakoi taulun {board} ryhmälle {acl}", + "You have removed {acl} from the board {board}" : "Poistit ryhmän {acl} taulun {board} jaosta", + "{user} has removed {acl} from the board {board}" : "{user} poisti {acl}-ryhmän taululta {board}", "You have renamed the board {before} to {board}" : "Asetit taulun {before} uudeksi nimeksi {board}", "{user} has renamed the board {before} to {board}" : "{user} asetti taulun {before} uudeksi nimeksi {board}", "You have archived the board {board}" : "Arkistoit taulun {board}", "{user} has archived the board {before}" : "{user} arkistoi taulun {before}", + "You have unarchived the board {board}" : "Palautit taulun {board} arkistosta ", + "{user} has unarchived the board {before}" : "{user} palautti taulun {before} arkistosta", + "You have created a new stack {stack} on board {board}" : "Loit pinon {stack} tauluun {board}", + "{user} has created a new stack {stack} on board {board}" : "{user} loi pinon {stack} tauluun {board}", + "You have renamed stack {before} to {stack} on board {board}" : "Muutit pinon {before} nimeksi {stack} taululla {board}", + "{user} has renamed stack {before} to {stack} on board {board}" : "{user} muutti pinon {before} nimeksi {stack} taululla {board}", + "You have deleted stack {stack} on board {board}" : "Poistit pinon {stack} taululta {board}", + "{user} has deleted stack {stack} on board {board}" : "{user} poisti pinon {stack} taululta {board}", + "You have created card {card} in stack {stack} on board {board}" : "Loit kortin {card} pinoon {stack} taululla {board}", + "{user} has created card {card} in stack {stack} on board {board}" : "{user} loi kortin {card} pinoon {stack} taululla {board}", + "You have deleted card {card} in stack {stack} on board {board}" : "Poistit kortin {card} pinosta {stack} taululta {board}", + "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} poisti kortin {card} pinosta {stack} taululta {board}", "You have renamed the card {before} to {card}" : "Muutit kortin {before} uudeksi nimeksi {card}", "{user} has renamed the card {before} to {card}" : "{user} muutti kortin {before} uudeksi nimeksi {card}", + "You have added a description to card {card} in stack {stack} on board {board}" : "Lisäsit kuvauksen korttiin {card} pinossa {stack} taululla {board}", + "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} lisäsi kuvauksen korttiin {card} pinossa {stack} taululla {board}", + "You have updated the description of card {card} in stack {stack} on board {board}" : "Päivitit kortin {card} kuvausta pinossa {stack} taululla {board}", + "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} päivitti kortin {card} kuvausta pinossa {stack} taululla {board}", + "You have archived card {card} in stack {stack} on board {board}" : "Arkistoit kortin {card} pinossa {stack} taululla {board}", + "{user} has archived card {card} in stack {stack} on board {board}" : "{user} arkistoi kortin {card} pinossa {stack} taululla {board}", + "You have unarchived card {card} in stack {stack} on board {board}" : "Palautit arkistosta kortin {card} pinossa {stack} taululla {board}", + "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} palautti arkistosta kortin {card} pinossa {stack} taululla {board}", + "You have removed the due date of card {card}" : "Poistit eräpäivän kortilta {card}", + "{user} has removed the due date of card {card}" : "{user} poisti eräpäivän kortilta {card}", + "You have set the due date of card {card} to {after}" : "Asetit kortille {card} eräpäivän {after}", + "{user} has set the due date of card {card} to {after}" : "{user} asetti kortille {card} eräpäivän {after}", + "You have updated the due date of card {card} to {after}" : "Päivitit kortin {card} eräpäiväksi {after}", + "{user} has updated the due date of card {card} to {after}" : "{user} päivitti kortin {card} eräpäiväksi {after}", + "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Lisäsit tunnisteen {label} korttiin {card} pinossa {stack} taululla {board}", + "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} lisäsi tunnisteen {label} korttiin {card} pinossa {stack} taululla {board}", + "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Poistit tunnisteen {label} kortista {card} pinossa {stack} taululla {board}", + "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} poisti tunnisteen {label} kortista {card} pinossa {stack} taululla {board}", + "You have assigned {assigneduser} to card {card} on board {board}" : "Asetit kortin {card} käyttäjän {assigneduser} tehtäväksi taululla {board}", + "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} asetti kortin {card} käyttäjän {assigneduser} tehtäväksi taululla {board}", + "You have unassigned {assigneduser} from card {card} on board {board}" : "Poistit kortin {card} käyttäjän {assigneduser} tehtävistä taululla {board}", + "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} poisti kortin {card} käyttäjän {assigneduser} tehtävistä taululla {board}", + "You have moved the card {card} from stack {stackBefore} to {stack}" : "Siirsit kortin {card} pinosta {stackBefore} pinoon {stack}", + "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} siirsi kortin {card} pinosta {stackBefore} pinoon {stack}", "You have added the attachment {attachment} to card {card}" : "Lisäsit liitteen {attachment} kortille {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} lisäsi liitteen {attachment} kortille {card}", + "You have updated the attachment {attachment} on card {card}" : "Päivitit kortin {card} liitettä {attachment}", + "{user} has updated the attachment {attachment} to card {card}" : "{user} päivitti kortin {card} liitettä {attachment}", "You have deleted the attachment {attachment} from card {card}" : "Poistit liitteen {attachment} kortilta {card}", + "{user} has deleted the attachment {attachment} to card {card}" : "{user} poisti liitteen {attachment} kortilta {card}", "You have restored the attachment {attachment} to card {card}" : "Palautit liitteen {attachment} kortille {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} palautti liitteen {attachment} kortille {card}", "You have commented on card {card}" : "Kommentoit korttia {card}", "{user} has commented on card {card}" : "{user} kommentoi korttia {card}", + "A card description inside the Deck app has been changed" : "Kortin kuvaus Pakka-sovelluksessa on vaihtunut", "Deck" : "Pakka", + "Changes in the Deck app" : "Muutokset Pakka-sovelluksessa", "A comment was created on a card" : "Kommentti luotiin kortille", "Personal" : "Henkilökohtainen", + "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortti \"%s\" taululla \"%s\" on asetettu sinulle käyttäjän %s toimesta.", "The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.", + "%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".", "The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.", "{user} has shared the board %s with you." : "{user} on jakanut taulun %s kanssasi.", "Finished" : "Valmistunut", @@ -44,16 +91,23 @@ "Example Task 2" : "Esimerkkitehtävä 2", "Example Task 1" : "Esimerkkitehtävä 1", "The file was uploaded" : "Tiedosto lähetettiin", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Lähetetty tiedosto ylittää php.ini-tiedostossa määritellyn upload_max_filesize -säännön ", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Lähetettävän tiedoston enimmäiskoko ylittää HTML-lomakkeessa määritellyn MAX_FILE_SIZE-säännön", "The file was only partially uploaded" : "Tiedosto lähetettiin vain osittain", "No file was uploaded" : "Tiedostoa ei lähetetty", + "Missing a temporary folder" : "Väliaikaistiedostojen kansio puuttuu", "Could not write file to disk" : "Tiedostoa ei voitu kirjoittaa levylle", + "A PHP extension stopped the file upload" : "PHP:n laajennus esti tiedoston lähettämisen", + "No file uploaded or file size exceeds maximum of %s" : "Tiedostoa ei lähetetty tai sen koko ylitti maksimin %s", "A kanban style project and personal management tool for Nextcloud" : "Kanban-tyylinen projektien ja henkilökohtaisten asioiden hallintatyökalu Nextcloudille", + "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Pakka on Nextcloudissa työtään hallinnoivien tiimien käyttöön tarkoitettu kanban-tyyppinen organisointityökalu.\n\n\n- 📥 Lisää tehtävät korteille ja järjestele ne mielesi mukaan\n- 📄 Kirjoita lisätietoja markdown-kielellä\n- 🔖 Määritä tunnisteita helpottaaksesi hallintaa\n- 👥 Jaa tiimin, perheen tai kavereiden kanssa\n- 📎 Lisää tiedostoja ja upota ne lisätietoihin\n- 💬 Keskustele tiimisi kanssa kommenteilla\n- ⚡ Pidä kirjaa muutoksista tapahtumavirran avulla\n- 🚀 Pidä projektisi hallinnassa", "Select the board to link to a project" : "Valitse projektiin linkitettävä taulu", "Select board" : "Valitse taulu", "Add a new stack" : "Lisää uusi pino", "Submit" : "Lähetä", "Show archived cards" : "Näytä arkistoidut kortit", "Hide archived cards" : "Piilota arkistoidut kortit", + "Toggle compact mode" : "Käytä kompaktia tilaa", "Show board details" : "Näytä taulun tiedot", "All Boards" : "Kaikki taulut", "Archived boards" : "Arkistoidut taulut", @@ -88,6 +142,7 @@ "Delete tag" : "Poista tunniste", "Create" : "Luo", "Create a new tag" : "Luo uusi tunniste", + "Deleted stacks" : "Poistetut pinot", "Deleted cards" : "Poistetut kortit", "Status" : "Tila", "No archived boards to display" : "Ei arkistoituja tauluja näytettäväksi", @@ -101,12 +156,14 @@ "Delete board" : "Poista taulu", "Update board" : "Päivitä taulu", "Reset board" : "Nollaa taulu", + "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Peru taulun poisto - muussa tapauksessa taulu poistetaan seuraavan cron-ajon yhteydessä.", "Create new board" : "Luo uusi taulu", "New board title" : "Uusi taulun otsikko", "Create board" : "Luo taulu", "Select an attachment" : "Valitse liite", "Cancel upload" : "Peruuta lähetys", "by" : " Kirjoittaja:", + "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Peru tiedoston poisto - muussa tapauksessa tiedosto poistetaan seuraavan cron-ajon yhteydessä.", "Undo file deletion" : "Kumoa tiedoston poisto", "Insert the file into the description" : "Lisää tiedosto kuvaukseen", "Delete attachment" : "Poista liite", @@ -132,6 +189,8 @@ "Shared boards" : "Jaetut taulut", "Move board to archive" : "Siirrä taulu arkistoon", "Create a new board" : "Luo uusi taulu", - "Settings" : "Asetukset" + "Settings" : "Asetukset", + "Limit deck to groups" : "Rajoita Pakan käyttö ryhmille", + "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From a93c5541d93cd26aaa461d65554dc1aff03720fd Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 13 Oct 2019 02:24:56 +0000 Subject: [PATCH 39/77] [tx-robot] updated from transifex --- l10n/ru.js | 28 ++++++++++++++-------------- l10n/ru.json | 28 ++++++++++++++-------------- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/l10n/ru.js b/l10n/ru.js index 977677aae..8050d8bd0 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -13,13 +13,13 @@ OC.L10N.register( "Maximum file size of {size} exceeded" : "Превышен максимально разрешённый размер файла в {size}", "File already exists" : "Файл уже существует", "You have created a new board {board}" : "Вы создали доску «{board}»", - "{user} has created a new board {board}" : "{user} создал(а) рабочую доску «{board}»", - "You have deleted the board {board}" : "Вы удалили рабочую доску «{board}»", - "{user} has deleted the board {board}" : "{user} удалил(а) рабочую доску «{board}»", - "You have restored the board {board}" : "Вы восстановили из корзины рабочую доску «{board}»", - "{user} has restored the board {board}" : "{user} восстановил(а) рабочую доску «{board}» из корзины", + "{user} has created a new board {board}" : "{user} создал(а) доску «{board}»", + "You have deleted the board {board}" : "Вы удалили доску «{board}»", + "{user} has deleted the board {board}" : "{user} удалил(а) доску «{board}»", + "You have restored the board {board}" : "Вы восстановили из корзины доску «{board}»", + "{user} has restored the board {board}" : "{user} восстановил(а) доску «{board}» из корзины", "You have shared the board {board} with {acl}" : "Вы предоставили {acl} доступ к рабочей доске «{board}»", - "{user} has shared the board {board} with {acl}" : "{user} предоставил(а) {acl} доступ к рабочей доске «{board}»", + "{user} has shared the board {board} with {acl}" : "{user} предоставил(а) {acl} доступ к доске «{board}»", "You have removed {acl} from the board {board}" : "Вы закрыли {acl} доступ к рабочей доске «{board}»", "{user} has removed {acl} from the board {board}" : "{user} закрыл(а) {acl} доступ к рабочей доске «{board}»", "You have renamed the board {before} to {board}" : "Вы переименовали рабочую доску из «{before}» в «{board}»", @@ -29,10 +29,10 @@ OC.L10N.register( "You have unarchived the board {board}" : "Вы восстановили доску «{board}» из архива", "{user} has unarchived the board {before}" : "{user} восстановил(а) доску «{before}» из архива", "You have created a new stack {stack} on board {board}" : "Вы создали стопку карточек «{stack}» на рабочей доске «{board}»", - "{user} has created a new stack {stack} on board {board}" : "{user} создал(а) новую стопку карточек «{stack}» на рабочей доске «{board}»", - "You have renamed stack {before} to {stack} on board {board}" : "Вы переименовали стопку карточек на рабочей доске «{board}» из «{before}» в «{stack}»", - "{user} has renamed stack {before} to {stack} on board {board}" : "{user} переименовал(а) стопку карточек на рабочей доске «{board}» из «{before}» в «{stack}»", - "You have deleted stack {stack} on board {board}" : "Вы удалили стопку карточек «{stack}» с рабочей доски «{board}»", + "{user} has created a new stack {stack} on board {board}" : "{user} создал(а) стопку карточек «{stack}» на доске «{board}»", + "You have renamed stack {before} to {stack} on board {board}" : "Вы переименовали стопку карточек на доске «{board}» из «{before}» в «{stack}»", + "{user} has renamed stack {before} to {stack} on board {board}" : "{user} переименовал(а) стопку карточек на доске «{board}» из «{before}» в «{stack}»", + "You have deleted stack {stack} on board {board}" : "Вы удалили стопку карточек «{stack}» с доски «{board}»", "{user} has deleted stack {stack} on board {board}" : "{user} удалил(а) стопку карточек «{stack}» с рабочей доски «{board}»", "You have created card {card} in stack {stack} on board {board}" : "Вы создали карточку «{card}» в стопке «{stack}» на рабочей доске «{board}»", "{user} has created card {card} in stack {stack} on board {board}" : "{user} создал(а) карточку «{card}» в стопке «{stack}» на рабочей доске «{board}»", @@ -54,7 +54,7 @@ OC.L10N.register( "{user} has set the due date of card {card} to {after}" : "{user} задал(а) срок исполнения по карточке «{card}» до {after}", "You have updated the due date of card {card} to {after}" : "Вы изменили срок исполнения по карточке «{card}» до {after}", "{user} has updated the due date of card {card} to {after}" : "{user} изменил(а) срок исполнения по карточке «{card}» до {after}", - "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Вы пометили карточку «{card}» в стопке «{stack}» на рабочей доске «{board}» меткой «{label}»", + "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Вы пометили карточку «{card}» в стопке «{stack}» на доске «{board}» меткой «{label}»", "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} пометил(а) карточку «{card}» в стопке «{stack}» на рабочей доске «{board}» меткой «{label}»", "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Вы убрали метку «{label}» с карточки «{card}» в стопке «{stack}» на рабочей доске «{board}»", "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} убрал(а) метку «{label}» с карточки «{card}» в стопке «{stack}» на рабочей доске «{board}»", @@ -91,9 +91,9 @@ OC.L10N.register( "To review" : "Проверить", "Action needed" : "Требуется действие", "Later" : "Позже", - "To do" : "Надо сделать", + "To do" : "Ожидающие выполнения", "Doing" : "В работе", - "Done" : "Готово", + "Done" : "Выполненные", "Example Task 3" : "Пример задачи 3", "Example Task 2" : "Пример задачи 2", "Example Task 1" : "Пример задачи 1", @@ -111,7 +111,7 @@ OC.L10N.register( "Select the board to link to a project" : "Выберите рабочую доску, чтобы связать с проектом", "Select board" : "Выбор рабочей доски", "Add a new stack" : "Создать стопку карточек", - "Submit" : "Отправить", + "Submit" : "Создать", "Show archived cards" : "Показать архивные карточки", "Hide archived cards" : "Скрыть архивные карточки", "Toggle compact mode" : "Переключение в компактный режим и обратно", diff --git a/l10n/ru.json b/l10n/ru.json index 51c66ce9a..345f61a26 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -11,13 +11,13 @@ "Maximum file size of {size} exceeded" : "Превышен максимально разрешённый размер файла в {size}", "File already exists" : "Файл уже существует", "You have created a new board {board}" : "Вы создали доску «{board}»", - "{user} has created a new board {board}" : "{user} создал(а) рабочую доску «{board}»", - "You have deleted the board {board}" : "Вы удалили рабочую доску «{board}»", - "{user} has deleted the board {board}" : "{user} удалил(а) рабочую доску «{board}»", - "You have restored the board {board}" : "Вы восстановили из корзины рабочую доску «{board}»", - "{user} has restored the board {board}" : "{user} восстановил(а) рабочую доску «{board}» из корзины", + "{user} has created a new board {board}" : "{user} создал(а) доску «{board}»", + "You have deleted the board {board}" : "Вы удалили доску «{board}»", + "{user} has deleted the board {board}" : "{user} удалил(а) доску «{board}»", + "You have restored the board {board}" : "Вы восстановили из корзины доску «{board}»", + "{user} has restored the board {board}" : "{user} восстановил(а) доску «{board}» из корзины", "You have shared the board {board} with {acl}" : "Вы предоставили {acl} доступ к рабочей доске «{board}»", - "{user} has shared the board {board} with {acl}" : "{user} предоставил(а) {acl} доступ к рабочей доске «{board}»", + "{user} has shared the board {board} with {acl}" : "{user} предоставил(а) {acl} доступ к доске «{board}»", "You have removed {acl} from the board {board}" : "Вы закрыли {acl} доступ к рабочей доске «{board}»", "{user} has removed {acl} from the board {board}" : "{user} закрыл(а) {acl} доступ к рабочей доске «{board}»", "You have renamed the board {before} to {board}" : "Вы переименовали рабочую доску из «{before}» в «{board}»", @@ -27,10 +27,10 @@ "You have unarchived the board {board}" : "Вы восстановили доску «{board}» из архива", "{user} has unarchived the board {before}" : "{user} восстановил(а) доску «{before}» из архива", "You have created a new stack {stack} on board {board}" : "Вы создали стопку карточек «{stack}» на рабочей доске «{board}»", - "{user} has created a new stack {stack} on board {board}" : "{user} создал(а) новую стопку карточек «{stack}» на рабочей доске «{board}»", - "You have renamed stack {before} to {stack} on board {board}" : "Вы переименовали стопку карточек на рабочей доске «{board}» из «{before}» в «{stack}»", - "{user} has renamed stack {before} to {stack} on board {board}" : "{user} переименовал(а) стопку карточек на рабочей доске «{board}» из «{before}» в «{stack}»", - "You have deleted stack {stack} on board {board}" : "Вы удалили стопку карточек «{stack}» с рабочей доски «{board}»", + "{user} has created a new stack {stack} on board {board}" : "{user} создал(а) стопку карточек «{stack}» на доске «{board}»", + "You have renamed stack {before} to {stack} on board {board}" : "Вы переименовали стопку карточек на доске «{board}» из «{before}» в «{stack}»", + "{user} has renamed stack {before} to {stack} on board {board}" : "{user} переименовал(а) стопку карточек на доске «{board}» из «{before}» в «{stack}»", + "You have deleted stack {stack} on board {board}" : "Вы удалили стопку карточек «{stack}» с доски «{board}»", "{user} has deleted stack {stack} on board {board}" : "{user} удалил(а) стопку карточек «{stack}» с рабочей доски «{board}»", "You have created card {card} in stack {stack} on board {board}" : "Вы создали карточку «{card}» в стопке «{stack}» на рабочей доске «{board}»", "{user} has created card {card} in stack {stack} on board {board}" : "{user} создал(а) карточку «{card}» в стопке «{stack}» на рабочей доске «{board}»", @@ -52,7 +52,7 @@ "{user} has set the due date of card {card} to {after}" : "{user} задал(а) срок исполнения по карточке «{card}» до {after}", "You have updated the due date of card {card} to {after}" : "Вы изменили срок исполнения по карточке «{card}» до {after}", "{user} has updated the due date of card {card} to {after}" : "{user} изменил(а) срок исполнения по карточке «{card}» до {after}", - "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Вы пометили карточку «{card}» в стопке «{stack}» на рабочей доске «{board}» меткой «{label}»", + "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Вы пометили карточку «{card}» в стопке «{stack}» на доске «{board}» меткой «{label}»", "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} пометил(а) карточку «{card}» в стопке «{stack}» на рабочей доске «{board}» меткой «{label}»", "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Вы убрали метку «{label}» с карточки «{card}» в стопке «{stack}» на рабочей доске «{board}»", "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} убрал(а) метку «{label}» с карточки «{card}» в стопке «{stack}» на рабочей доске «{board}»", @@ -89,9 +89,9 @@ "To review" : "Проверить", "Action needed" : "Требуется действие", "Later" : "Позже", - "To do" : "Надо сделать", + "To do" : "Ожидающие выполнения", "Doing" : "В работе", - "Done" : "Готово", + "Done" : "Выполненные", "Example Task 3" : "Пример задачи 3", "Example Task 2" : "Пример задачи 2", "Example Task 1" : "Пример задачи 1", @@ -109,7 +109,7 @@ "Select the board to link to a project" : "Выберите рабочую доску, чтобы связать с проектом", "Select board" : "Выбор рабочей доски", "Add a new stack" : "Создать стопку карточек", - "Submit" : "Отправить", + "Submit" : "Создать", "Show archived cards" : "Показать архивные карточки", "Hide archived cards" : "Скрыть архивные карточки", "Toggle compact mode" : "Переключение в компактный режим и обратно", From 91ab2b01977217c583560bbbd35eaf0cde82295d Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2019 06:47:48 +0000 Subject: [PATCH 40/77] Bump nextcloud-vue from 0.12.4 to 0.12.6 in /js Bumps [nextcloud-vue](https://github.com/nextcloud/nextcloud-vue) from 0.12.4 to 0.12.6. - [Release notes](https://github.com/nextcloud/nextcloud-vue/releases) - [Commits](https://github.com/nextcloud/nextcloud-vue/compare/v0.12.4...v0.12.6) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 6 +++--- js/package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index ef4b75f84..cdb760ac2 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -6008,9 +6008,9 @@ } }, "nextcloud-vue": { - "version": "0.12.4", - "resolved": "https://registry.npmjs.org/nextcloud-vue/-/nextcloud-vue-0.12.4.tgz", - "integrity": "sha512-VonKoRiJm6WXDqxwmxfVYZ2ir2oLQJ9nDKrsyW4ipEQB279QBAw18G9goIaTNkBkUnKK9I+xKG7WD2egE5sleA==", + "version": "0.12.6", + "resolved": "https://registry.npmjs.org/nextcloud-vue/-/nextcloud-vue-0.12.6.tgz", + "integrity": "sha512-UxtxItuhRXNaV3EO7Yef9xMbJnYxApf1YZIg01ltEf73d8WnqIH1CO75RL/wBdNz1eNDgHgBOv7OcXBk9ZJf9Q==", "requires": { "@babel/polyfill": "^7.4.4", "escape-html": "^1.0.3", diff --git a/js/package.json b/js/package.json index cadd87d43..8f98a54fd 100644 --- a/js/package.json +++ b/js/package.json @@ -17,7 +17,7 @@ "markdown-it": "^10.0.0", "markdown-it-link-target": "^1.0.2", "nextcloud-axios": "^0.2.1", - "nextcloud-vue": "^0.12.4", + "nextcloud-vue": "^0.12.6", "nextcloud-vue-collections": "^0.5.6", "ng-infinite-scroll": "^1.3.0", "ng-sortable": "^1.3.8", From c45e960da5b34da4f014a12693141ed8cd790339 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2019 07:17:48 +0000 Subject: [PATCH 41/77] Bump webpack from 4.41.0 to 4.41.1 in /js Bumps [webpack](https://github.com/webpack/webpack) from 4.41.0 to 4.41.1. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.41.0...v4.41.1) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 12 ++++++------ js/package.json | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index cdb760ac2..345dc831e 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -7883,9 +7883,9 @@ "integrity": "sha1-JLFUOXOrRCiW2a02fdnL2/r+kYs=" }, "terser": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.3.4.tgz", - "integrity": "sha512-Kcrn3RiW8NtHBP0ssOAzwa2MsIRQ8lJWiBG/K7JgqPlomA3mtb2DEmp4/hrUA+Jujx+WZ02zqd7GYD+QRBB/2Q==", + "version": "4.3.8", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.3.8.tgz", + "integrity": "sha512-otmIRlRVmLChAWsnSFNO0Bfk6YySuBp6G9qrHiJwlLDd4mxe2ta4sjI7TzIR+W1nBMjilzrMcPOz9pSusgx3hQ==", "dev": true, "requires": { "commander": "^2.20.0", @@ -8906,9 +8906,9 @@ } }, "webpack": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.0.tgz", - "integrity": "sha512-yNV98U4r7wX1VJAj5kyMsu36T8RPPQntcb5fJLOsMz/pt/WrKC0Vp1bAlqPLkA1LegSwQwf6P+kAbyhRKVQ72g==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.1.tgz", + "integrity": "sha512-ak7u4tUu/U63sCVxA571IuPZO/Q0pZ9cEXKg+R/woxkDzVovq57uB6L2Hlg/pC8LCU+TWpvtcYwsstivQwMJmw==", "dev": true, "requires": { "@webassemblyjs/ast": "1.8.5", diff --git a/js/package.json b/js/package.json index 8f98a54fd..d6bc9cedb 100644 --- a/js/package.json +++ b/js/package.json @@ -40,7 +40,7 @@ "vue-loader": "^15.7.1", "vue-style-loader": "^4.1.2", "vue-template-compiler": "^2.6.10", - "webpack": "^4.41.0", + "webpack": "^4.41.1", "webpack-cli": "^3.3.9", "webpack-merge": "^4.2.2" }, From 60887e01454dcabb9ab3564cb6a52d3c46e3328d Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2019 08:00:53 +0000 Subject: [PATCH 42/77] Bump @babel/preset-env from 7.6.2 to 7.6.3 in /js Bumps [@babel/preset-env](https://github.com/babel/babel) from 7.6.2 to 7.6.3. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.6.2...v7.6.3) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 152 +++++++++++++++++++++++-------------------- js/package.json | 2 +- 2 files changed, 81 insertions(+), 73 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 345dc831e..a0692dcd3 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -134,21 +134,21 @@ } }, "@babel/generator": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.2.tgz", - "integrity": "sha512-j8iHaIW4gGPnViaIHI7e9t/Hl8qLjERI6DcV9kEpAIDJsAOrcnXqRS7t+QbhL76pwbtqP+QCQLL0z1CyVmtjjQ==", + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.4.tgz", + "integrity": "sha512-jsBuXkFoZxk0yWLyGI9llT9oiQ2FeTASmRFE32U+aaDTfoE92t78eroO7PTpU/OrYq38hlcDM6vbfLDaOLy+7w==", "dev": true, "requires": { - "@babel/types": "^7.6.0", + "@babel/types": "^7.6.3", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0" }, "dependencies": { "@babel/types": { - "version": "7.6.1", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", - "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", + "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -189,9 +189,9 @@ }, "dependencies": { "@babel/types": { - "version": "7.6.1", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", - "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", + "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -213,9 +213,9 @@ }, "dependencies": { "@babel/types": { - "version": "7.6.1", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", - "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", + "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -265,9 +265,9 @@ }, "dependencies": { "@babel/types": { - "version": "7.6.1", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", - "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", + "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -287,9 +287,9 @@ }, "dependencies": { "@babel/types": { - "version": "7.6.1", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", - "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", + "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -323,9 +323,9 @@ }, "dependencies": { "@babel/parser": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.2.tgz", - "integrity": "sha512-mdFqWrSPCmikBoaBYMuBulzTIKuXVPtEISFbRRVNwMWpCms/hmE2kRq0bblUHaNRKrjRlmVbx1sDHmjmRgD2Xg==", + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.4.tgz", + "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==", "dev": true }, "@babel/template": { @@ -340,9 +340,9 @@ } }, "@babel/types": { - "version": "7.6.1", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", - "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", + "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -402,9 +402,9 @@ }, "dependencies": { "@babel/types": { - "version": "7.6.1", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", - "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", + "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -459,9 +459,9 @@ }, "dependencies": { "@babel/types": { - "version": "7.6.1", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", - "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", + "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -758,9 +758,9 @@ } }, "@babel/plugin-transform-block-scoping": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.2.tgz", - "integrity": "sha512-zZT8ivau9LOQQaOGC7bQLQOT4XPkPXgN2ERfUgk1X8ql+mVkLc4E8eKk+FO3o0154kxzqenWCorfmEXpEZcrSQ==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.3.tgz", + "integrity": "sha512-7hvrg75dubcO3ZI2rjYTzUrEuh1E9IyDEhhB6qfcooxhDA33xx2MasuLVgdxzcP6R/lipAC6n9ub9maNW6RKdw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", @@ -913,9 +913,9 @@ } }, "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.2.tgz", - "integrity": "sha512-xBdB+XOs+lgbZc2/4F5BVDVcDNS4tcSKQc96KmlqLEAwz6tpYPEvPdmDfvVG0Ssn8lAhronaRs6Z6KSexIpK5g==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.3.tgz", + "integrity": "sha512-jTkk7/uE6H2s5w6VlMHeWuH+Pcy2lmdwFoeWCVnvIrDUnB5gQqTVI8WfmEAhF2CDEarGrknZcmSFg1+bkfCoSw==", "dev": true, "requires": { "regexpu-core": "^4.6.0" @@ -1058,9 +1058,9 @@ } }, "@babel/preset-env": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.6.2.tgz", - "integrity": "sha512-Ru7+mfzy9M1/YTEtlDS8CD45jd22ngb9tXnn64DvQK3ooyqSw9K4K9DUWmYknTTVk4TqygL9dqCrZgm1HMea/Q==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.6.3.tgz", + "integrity": "sha512-CWQkn7EVnwzlOdR5NOm2+pfgSNEZmvGjOhlCHBDq0J8/EStr+G+FvPEiz9B56dR6MoiUFjXhfE4hjLoAKKJtIQ==", "dev": true, "requires": { "@babel/helper-module-imports": "^7.0.0", @@ -1079,7 +1079,7 @@ "@babel/plugin-transform-arrow-functions": "^7.2.0", "@babel/plugin-transform-async-to-generator": "^7.5.0", "@babel/plugin-transform-block-scoped-functions": "^7.2.0", - "@babel/plugin-transform-block-scoping": "^7.6.2", + "@babel/plugin-transform-block-scoping": "^7.6.3", "@babel/plugin-transform-classes": "^7.5.5", "@babel/plugin-transform-computed-properties": "^7.2.0", "@babel/plugin-transform-destructuring": "^7.6.0", @@ -1094,7 +1094,7 @@ "@babel/plugin-transform-modules-commonjs": "^7.6.0", "@babel/plugin-transform-modules-systemjs": "^7.5.0", "@babel/plugin-transform-modules-umd": "^7.2.0", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.6.2", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.6.3", "@babel/plugin-transform-new-target": "^7.4.4", "@babel/plugin-transform-object-super": "^7.5.5", "@babel/plugin-transform-parameters": "^7.4.4", @@ -1107,7 +1107,7 @@ "@babel/plugin-transform-template-literals": "^7.4.4", "@babel/plugin-transform-typeof-symbol": "^7.2.0", "@babel/plugin-transform-unicode-regex": "^7.6.2", - "@babel/types": "^7.6.0", + "@babel/types": "^7.6.3", "browserslist": "^4.6.0", "core-js-compat": "^3.1.1", "invariant": "^2.2.2", @@ -1116,9 +1116,9 @@ }, "dependencies": { "@babel/types": { - "version": "7.6.1", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", - "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", + "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -1140,17 +1140,17 @@ } }, "@babel/traverse": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.2.tgz", - "integrity": "sha512-8fRE76xNwNttVEF2TwxJDGBLWthUkHWSldmfuBzVRmEDWOtu4XdINTgN7TDWzuLg4bbeIMLvfMFD9we5YcWkRQ==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.3.tgz", + "integrity": "sha512-unn7P4LGsijIxaAJo/wpoU11zN+2IaClkQAxcJWBNCMS6cmVh802IyLHNkAjQ0iYnRS3nnxk5O3fuXW28IMxTw==", "dev": true, "requires": { "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.6.2", + "@babel/generator": "^7.6.3", "@babel/helper-function-name": "^7.1.0", "@babel/helper-split-export-declaration": "^7.4.4", - "@babel/parser": "^7.6.2", - "@babel/types": "^7.6.0", + "@babel/parser": "^7.6.3", + "@babel/types": "^7.6.3", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.13" @@ -1166,15 +1166,15 @@ } }, "@babel/parser": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.2.tgz", - "integrity": "sha512-mdFqWrSPCmikBoaBYMuBulzTIKuXVPtEISFbRRVNwMWpCms/hmE2kRq0bblUHaNRKrjRlmVbx1sDHmjmRgD2Xg==", + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.4.tgz", + "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==", "dev": true }, "@babel/types": { - "version": "7.6.1", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", - "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", + "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -2345,9 +2345,9 @@ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" }, "caniuse-lite": { - "version": "1.0.30000997", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000997.tgz", - "integrity": "sha512-BQLFPIdj2ntgBNWp9Q64LGUIEmvhKkzzHhUHR3CD5A9Lb7ZKF20/+sgadhFap69lk5XmK1fTUleDclaRFvgVUA==", + "version": "1.0.30000999", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000999.tgz", + "integrity": "sha512-1CUyKyecPeksKwXZvYw0tEoaMCo/RwBlXmEtN5vVnabvO0KPd9RQLcaAuR9/1F+KDMv6esmOFWlsXuzDk+8rxg==", "dev": true }, "catharsis": { @@ -2758,12 +2758,12 @@ "integrity": "sha512-lQUVfQi0aLix2xpyjrrJEvfuYCqPc/HwmTKsC/VNf8q0zsjX7SQZtp4+oRONN5Tsur9GDETPjj+Ub2iDiGZfSQ==" }, "core-js-compat": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.2.1.tgz", - "integrity": "sha512-MwPZle5CF9dEaMYdDeWm73ao/IflDH+FjeJCWEADcEgFSE9TLimFKwJsfmkwzI8eC0Aj0mgvMDjeQjrElkz4/A==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.3.1.tgz", + "integrity": "sha512-R5gisVHlU8ZXrr05qjER3SJ8pp8cYxhWQ0doIfuGhLqtHf9b3eLzzr1ZEfI7MX9JJFwVT+HuyToULupnHl0Ghw==", "dev": true, "requires": { - "browserslist": "^4.6.6", + "browserslist": "^4.7.0", "semver": "^6.3.0" }, "dependencies": { @@ -3245,9 +3245,9 @@ "dev": true }, "electron-to-chromium": { - "version": "1.3.267", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.267.tgz", - "integrity": "sha512-9Q2ixAJC+oHjWNtJV0MQ4vJMCWSowIrC6V6vcr+bwPddTDHj2ddv9xxXCzf4jT/fy6HP7maPoW0gifXkRxCttQ==", + "version": "1.3.282", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.282.tgz", + "integrity": "sha512-irSaDeCGgfMu1OA30bhqIBr+dx+pDJjRbwCpob7YWqVZbzXblybNzPGklVnWqv4EXxbkEAzQYqiNCqNTgu00lQ==", "dev": true }, "elliptic": { @@ -6127,12 +6127,20 @@ } }, "node-releases": { - "version": "1.1.32", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.32.tgz", - "integrity": "sha512-VhVknkitq8dqtWoluagsGPn3dxTvN9fwgR59fV3D7sLBHe0JfDramsMI8n8mY//ccq/Kkrf8ZRHRpsyVZ3qw1A==", + "version": "1.1.35", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.35.tgz", + "integrity": "sha512-JGcM/wndCN/2elJlU0IGdVEJQQnJwsLbgPCFd2pY7V0mxf17bZ0Gb/lgOtL29ZQhvEX5shnVhxQyZz3ex94N8w==", "dev": true, "requires": { - "semver": "^5.3.0" + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, "normalize-path": { diff --git a/js/package.json b/js/package.json index d6bc9cedb..4381c2540 100644 --- a/js/package.json +++ b/js/package.json @@ -29,7 +29,7 @@ "@babel/core": "^7.6.2", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/polyfill": "^7.6.0", - "@babel/preset-env": "^7.6.2", + "@babel/preset-env": "^7.6.3", "babel-loader": "^8.0.6", "css-loader": "^3.2.0", "karma": "^4.3.0", From 52ed13e3061bc7a43251f0b69b3a209e2ab60f04 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2019 08:00:55 +0000 Subject: [PATCH 43/77] Bump @babel/core from 7.6.2 to 7.6.4 in /js Bumps [@babel/core](https://github.com/babel/babel) from 7.6.2 to 7.6.4. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.6.2...v7.6.4) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 119 ++++++++++++------------------------------- js/package.json | 2 +- 2 files changed, 33 insertions(+), 88 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 345dc831e..105d80fa1 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -14,18 +14,18 @@ } }, "@babel/core": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.6.2.tgz", - "integrity": "sha512-l8zto/fuoZIbncm+01p8zPSDZu/VuuJhAfA7d/AbzM09WR7iVhavvfNDYCNpo1VvLk6E6xgAoP9P+/EMJHuRkQ==", + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.6.4.tgz", + "integrity": "sha512-Rm0HGw101GY8FTzpWSyRbki/jzq+/PkNQJ+nSulrdY6gFGOsNseCqD6KHRYe2E+EdzuBdr2pxCp6s4Uk6eJ+XQ==", "dev": true, "requires": { "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.6.2", + "@babel/generator": "^7.6.4", "@babel/helpers": "^7.6.2", - "@babel/parser": "^7.6.2", + "@babel/parser": "^7.6.4", "@babel/template": "^7.6.0", - "@babel/traverse": "^7.6.2", - "@babel/types": "^7.6.0", + "@babel/traverse": "^7.6.3", + "@babel/types": "^7.6.3", "convert-source-map": "^1.1.0", "debug": "^4.1.0", "json5": "^2.1.0", @@ -45,21 +45,21 @@ } }, "@babel/generator": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.2.tgz", - "integrity": "sha512-j8iHaIW4gGPnViaIHI7e9t/Hl8qLjERI6DcV9kEpAIDJsAOrcnXqRS7t+QbhL76pwbtqP+QCQLL0z1CyVmtjjQ==", + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.4.tgz", + "integrity": "sha512-jsBuXkFoZxk0yWLyGI9llT9oiQ2FeTASmRFE32U+aaDTfoE92t78eroO7PTpU/OrYq38hlcDM6vbfLDaOLy+7w==", "dev": true, "requires": { - "@babel/types": "^7.6.0", + "@babel/types": "^7.6.3", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0" } }, "@babel/parser": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.2.tgz", - "integrity": "sha512-mdFqWrSPCmikBoaBYMuBulzTIKuXVPtEISFbRRVNwMWpCms/hmE2kRq0bblUHaNRKrjRlmVbx1sDHmjmRgD2Xg==", + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.4.tgz", + "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==", "dev": true }, "@babel/template": { @@ -74,26 +74,26 @@ } }, "@babel/traverse": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.2.tgz", - "integrity": "sha512-8fRE76xNwNttVEF2TwxJDGBLWthUkHWSldmfuBzVRmEDWOtu4XdINTgN7TDWzuLg4bbeIMLvfMFD9we5YcWkRQ==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.3.tgz", + "integrity": "sha512-unn7P4LGsijIxaAJo/wpoU11zN+2IaClkQAxcJWBNCMS6cmVh802IyLHNkAjQ0iYnRS3nnxk5O3fuXW28IMxTw==", "dev": true, "requires": { "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.6.2", + "@babel/generator": "^7.6.3", "@babel/helper-function-name": "^7.1.0", "@babel/helper-split-export-declaration": "^7.4.4", - "@babel/parser": "^7.6.2", - "@babel/types": "^7.6.0", + "@babel/parser": "^7.6.3", + "@babel/types": "^7.6.3", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.13" } }, "@babel/types": { - "version": "7.6.1", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", - "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", + "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", "dev": true, "requires": { "esutils": "^2.0.2", @@ -111,9 +111,9 @@ } }, "json5": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz", - "integrity": "sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.1.tgz", + "integrity": "sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==", "dev": true, "requires": { "minimist": "^1.2.0" @@ -482,22 +482,10 @@ "@babel/types": "^7.6.0" }, "dependencies": { - "@babel/generator": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.2.tgz", - "integrity": "sha512-j8iHaIW4gGPnViaIHI7e9t/Hl8qLjERI6DcV9kEpAIDJsAOrcnXqRS7t+QbhL76pwbtqP+QCQLL0z1CyVmtjjQ==", - "dev": true, - "requires": { - "@babel/types": "^7.6.0", - "jsesc": "^2.5.1", - "lodash": "^4.17.13", - "source-map": "^0.5.0" - } - }, "@babel/parser": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.2.tgz", - "integrity": "sha512-mdFqWrSPCmikBoaBYMuBulzTIKuXVPtEISFbRRVNwMWpCms/hmE2kRq0bblUHaNRKrjRlmVbx1sDHmjmRgD2Xg==", + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.4.tgz", + "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==", "dev": true }, "@babel/template": { @@ -511,59 +499,16 @@ "@babel/types": "^7.6.0" } }, - "@babel/traverse": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.2.tgz", - "integrity": "sha512-8fRE76xNwNttVEF2TwxJDGBLWthUkHWSldmfuBzVRmEDWOtu4XdINTgN7TDWzuLg4bbeIMLvfMFD9we5YcWkRQ==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.6.2", - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-split-export-declaration": "^7.4.4", - "@babel/parser": "^7.6.2", - "@babel/types": "^7.6.0", - "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.13" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", - "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", - "dev": true, - "requires": { - "@babel/highlight": "^7.0.0" - } - } - } - }, "@babel/types": { - "version": "7.6.1", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", - "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", + "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", "to-fast-properties": "^2.0.0" } - }, - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true } } }, diff --git a/js/package.json b/js/package.json index d6bc9cedb..d9be265a2 100644 --- a/js/package.json +++ b/js/package.json @@ -26,7 +26,7 @@ "vuex": "^3.1.1" }, "devDependencies": { - "@babel/core": "^7.6.2", + "@babel/core": "^7.6.4", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/polyfill": "^7.6.0", "@babel/preset-env": "^7.6.2", From 9f2d883dbe586457eb08aa86fafcd1768d596a66 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 20 Oct 2019 01:13:43 +0000 Subject: [PATCH 44/77] Bump webpack from 4.41.1 to 4.41.2 in /js Bumps [webpack](https://github.com/webpack/webpack) from 4.41.1 to 4.41.2. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.41.1...v4.41.2) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 18 +++++++++--------- js/package.json | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 5ec8f3974..30b3808cb 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -2176,9 +2176,9 @@ }, "dependencies": { "bluebird": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.0.tgz", - "integrity": "sha512-aBQ1FxIa7kSWCcmKHlcHFlT2jt6J/l4FzC7KcPELkOJOsPOb/bccdhmIrKDfXhwFrmc7vDoDrrepFvGqjyXGJg==", + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.1.tgz", + "integrity": "sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg==", "dev": true }, "glob": { @@ -7836,9 +7836,9 @@ "integrity": "sha1-JLFUOXOrRCiW2a02fdnL2/r+kYs=" }, "terser": { - "version": "4.3.8", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.3.8.tgz", - "integrity": "sha512-otmIRlRVmLChAWsnSFNO0Bfk6YySuBp6G9qrHiJwlLDd4mxe2ta4sjI7TzIR+W1nBMjilzrMcPOz9pSusgx3hQ==", + "version": "4.3.9", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.3.9.tgz", + "integrity": "sha512-NFGMpHjlzmyOtPL+fDw3G7+6Ueh/sz4mkaUYa4lJCxOPTNzd0Uj0aZJOmsDYoSQyfuVoWDMSWTPU3huyOm2zdA==", "dev": true, "requires": { "commander": "^2.20.0", @@ -8859,9 +8859,9 @@ } }, "webpack": { - "version": "4.41.1", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.1.tgz", - "integrity": "sha512-ak7u4tUu/U63sCVxA571IuPZO/Q0pZ9cEXKg+R/woxkDzVovq57uB6L2Hlg/pC8LCU+TWpvtcYwsstivQwMJmw==", + "version": "4.41.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.2.tgz", + "integrity": "sha512-Zhw69edTGfbz9/8JJoyRQ/pq8FYUoY0diOXqW0T6yhgdhCv6wr0hra5DwwWexNRns2Z2+gsnrNcbe9hbGBgk/A==", "dev": true, "requires": { "@webassemblyjs/ast": "1.8.5", diff --git a/js/package.json b/js/package.json index 0502ee170..5e3a8ae3d 100644 --- a/js/package.json +++ b/js/package.json @@ -40,7 +40,7 @@ "vue-loader": "^15.7.1", "vue-style-loader": "^4.1.2", "vue-template-compiler": "^2.6.10", - "webpack": "^4.41.1", + "webpack": "^4.41.2", "webpack-cli": "^3.3.9", "webpack-merge": "^4.2.2" }, From db8c3b0aa863bcd2d758eb46eb8a1160e8091706 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 20 Oct 2019 01:14:16 +0000 Subject: [PATCH 45/77] Bump karma from 4.3.0 to 4.4.1 in /js Bumps [karma](https://github.com/karma-runner/karma) from 4.3.0 to 4.4.1. - [Release notes](https://github.com/karma-runner/karma/releases) - [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md) - [Commits](https://github.com/karma-runner/karma/compare/v4.3.0...v4.4.1) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 85 ++++++++++++++++++++------------------------ js/package.json | 2 +- 2 files changed, 40 insertions(+), 47 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 5ec8f3974..db070cba7 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -2488,9 +2488,9 @@ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, "colors": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.3.3.tgz", - "integrity": "sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", "dev": true }, "command-line-args": { @@ -3398,9 +3398,9 @@ "dev": true }, "eventemitter3": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", - "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.0.tgz", + "integrity": "sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg==", "dev": true }, "events": { @@ -3724,9 +3724,9 @@ } }, "follow-redirects": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.8.1.tgz", - "integrity": "sha512-micCIbldHioIegeKs41DoH0KS3AXfFzgS30qVkM6z/XOE/GJgvmsoc839NUqa1B9udYe9dQxgv7KFwng6+p/dw==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.9.0.tgz", + "integrity": "sha512-CRcPzsSIbXyVDl0QI01muNDu69S8trU4jArW9LpOt2WtC6LyUJetcIrmfHsRBx7/Jb6GHJUiuqyYxPooFfNt6A==", "dev": true, "requires": { "debug": "^3.0.0" @@ -4714,12 +4714,12 @@ } }, "http-proxy": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.17.0.tgz", - "integrity": "sha512-Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.0.tgz", + "integrity": "sha512-84I2iJM/n1d4Hdgc6y2+qY5mDaz2PUVjlg9znE9byl+q0uC3DeByqBGReQu5tpLK0TAqTIXScRUV+dg7+bUPpQ==", "dev": true, "requires": { - "eventemitter3": "^3.0.0", + "eventemitter3": "^4.0.0", "follow-redirects": "^1.0.0", "requires-port": "^1.0.0" } @@ -5234,9 +5234,9 @@ } }, "karma": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/karma/-/karma-4.3.0.tgz", - "integrity": "sha512-NSPViHOt+RW38oJklvYxQC4BSQsv737oQlr/r06pCM+slDOr4myuI1ivkRmp+3dVpJDfZt2DmaPJ2wkx+ZZuMQ==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/karma/-/karma-4.4.1.tgz", + "integrity": "sha512-L5SIaXEYqzrh6b1wqYC42tNsFMx2PWuxky84pK9coK09MvmL7mxii3G3bZBh/0rvD27lqDd0le9jyhzvwif73A==", "dev": true, "requires": { "bluebird": "^3.3.0", @@ -5245,7 +5245,6 @@ "chokidar": "^3.0.0", "colors": "^1.1.0", "connect": "^3.6.0", - "core-js": "^3.1.3", "di": "^0.0.1", "dom-serialize": "^2.2.0", "flatted": "^2.0.0", @@ -5269,9 +5268,9 @@ }, "dependencies": { "anymatch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.0.3.tgz", - "integrity": "sha512-c6IvoeBECQlMVuYUjSwimnhmztImpErfxJzWZhIQinIvQWoGOnB0dLIgifbPHQt5heS6mNlaZG16f06H3C8t1g==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", "dev": true, "requires": { "normalize-path": "^3.0.0", @@ -5294,27 +5293,21 @@ } }, "chokidar": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.0.2.tgz", - "integrity": "sha512-c4PR2egjNjI1um6bamCQ6bUNPDiyofNQruHvKgHQ4gDUP/ITSVSzNsiI5OWtHOsX323i5ha/kk4YmOZ1Ktg7KA==", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.2.2.tgz", + "integrity": "sha512-bw3pm7kZ2Wa6+jQWYP/c7bAZy3i4GwiIiMO2EeRjrE48l8vBqC/WvFhSF0xyM8fQiPEGvwMY/5bqDG7sSEOuhg==", "dev": true, "requires": { - "anymatch": "^3.0.1", - "braces": "^3.0.2", - "fsevents": "^2.0.6", - "glob-parent": "^5.0.0", - "is-binary-path": "^2.1.0", - "is-glob": "^4.0.1", - "normalize-path": "^3.0.0", - "readdirp": "^3.1.1" + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.1.1", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.2.0" } }, - "core-js": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.2.1.tgz", - "integrity": "sha512-Qa5XSVefSVPRxy2XfUC13WbvqkxhkwB3ve+pgCQveNgYzbM/UxZeu1dcOX/xr4UmfUd+muuvsaxilQzCyUurMw==", - "dev": true - }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -5325,16 +5318,16 @@ } }, "fsevents": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.0.7.tgz", - "integrity": "sha512-a7YT0SV3RB+DjYcppwVDLtn13UQnmg0SWZS7ezZD0UjnLwXmy8Zm21GMVGLaFGimIqcvyMQaOJBrop8MyOp1kQ==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.1.tgz", + "integrity": "sha512-4FRPXWETxtigtJW/gxzEDsX1LVbPAM93VleB83kZB+ellqbHMkyt2aJfuzNLRvFPnGi6bcE5SvfxgbXPeKteJw==", "dev": true, "optional": true }, "glob-parent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.0.0.tgz", - "integrity": "sha512-Z2RwiujPRGluePM6j699ktJYxmPpJKCfpGA13jz2hmFZC7gKetzrWvg5KN3+OsIFmydGyZ1AVwERCq1w/ZZwRg==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.0.tgz", + "integrity": "sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw==", "dev": true, "requires": { "is-glob": "^4.0.1" @@ -5365,9 +5358,9 @@ "dev": true }, "readdirp": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.1.2.tgz", - "integrity": "sha512-8rhl0xs2cxfVsqzreYCvs8EwBfn/DhVdqtoLmw19uI3SC5avYX9teCurlErfpPXGmYtMHReGaP2RsLnFvz/lnw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.2.0.tgz", + "integrity": "sha512-crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ==", "dev": true, "requires": { "picomatch": "^2.0.4" diff --git a/js/package.json b/js/package.json index 0502ee170..5c0847d63 100644 --- a/js/package.json +++ b/js/package.json @@ -32,7 +32,7 @@ "@babel/preset-env": "^7.6.3", "babel-loader": "^8.0.6", "css-loader": "^3.2.0", - "karma": "^4.3.0", + "karma": "^4.4.1", "mini-css-extract-plugin": "^0.8.0", "style-loader": "^1.0.0", "uglifyjs-webpack-plugin": "^2.2.0", From f660fe635696a59a29afc1a71a913f95f70f0563 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2019 07:54:04 +0000 Subject: [PATCH 46/77] Bump nextcloud-vue-collections from 0.5.6 to 0.6.0 in /js Bumps [nextcloud-vue-collections](https://github.com/juliushaertl/nextcloud-vue-collections) from 0.5.6 to 0.6.0. - [Release notes](https://github.com/juliushaertl/nextcloud-vue-collections/releases) - [Commits](https://github.com/juliushaertl/nextcloud-vue-collections/compare/v0.5.6...v0.6.0) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 2208 ++++++------------------------------------ js/package.json | 2 +- 2 files changed, 301 insertions(+), 1909 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index d5487a02d..5e19d87f3 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -4,11 +4,27 @@ "lockfileVersion": 1, "requires": true, "dependencies": { + "@babel/cli": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.6.4.tgz", + "integrity": "sha512-tqrDyvPryBM6xjIyKKUwr3s8CzmmYidwgdswd7Uc/Cv0ogZcuS1TYQTLx/eWKP3UbJ6JxZAiYlBZabXm/rtRsQ==", + "requires": { + "chokidar": "^2.1.8", + "commander": "^2.8.1", + "convert-source-map": "^1.1.0", + "fs-readdir-recursive": "^1.1.0", + "glob": "^7.0.0", + "lodash": "^4.17.13", + "mkdirp": "^0.5.1", + "output-file-sync": "^2.0.0", + "slash": "^2.0.0", + "source-map": "^0.5.0" + } + }, "@babel/code-frame": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz", "integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==", - "dev": true, "requires": { "@babel/highlight": "^7.0.0" } @@ -17,7 +33,6 @@ "version": "7.6.4", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.6.4.tgz", "integrity": "sha512-Rm0HGw101GY8FTzpWSyRbki/jzq+/PkNQJ+nSulrdY6gFGOsNseCqD6KHRYe2E+EdzuBdr2pxCp6s4Uk6eJ+XQ==", - "dev": true, "requires": { "@babel/code-frame": "^7.5.5", "@babel/generator": "^7.6.4", @@ -39,7 +54,6 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", - "dev": true, "requires": { "@babel/highlight": "^7.0.0" } @@ -48,7 +62,6 @@ "version": "7.6.4", "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.4.tgz", "integrity": "sha512-jsBuXkFoZxk0yWLyGI9llT9oiQ2FeTASmRFE32U+aaDTfoE92t78eroO7PTpU/OrYq38hlcDM6vbfLDaOLy+7w==", - "dev": true, "requires": { "@babel/types": "^7.6.3", "jsesc": "^2.5.1", @@ -59,14 +72,12 @@ "@babel/parser": { "version": "7.6.4", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.4.tgz", - "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==", - "dev": true + "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==" }, "@babel/template": { "version": "7.6.0", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.6.0.tgz", "integrity": "sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ==", - "dev": true, "requires": { "@babel/code-frame": "^7.0.0", "@babel/parser": "^7.6.0", @@ -77,7 +88,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.3.tgz", "integrity": "sha512-unn7P4LGsijIxaAJo/wpoU11zN+2IaClkQAxcJWBNCMS6cmVh802IyLHNkAjQ0iYnRS3nnxk5O3fuXW28IMxTw==", - "dev": true, "requires": { "@babel/code-frame": "^7.5.5", "@babel/generator": "^7.6.3", @@ -94,7 +104,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", - "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -105,7 +114,6 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, "requires": { "ms": "^2.1.1" } @@ -114,7 +122,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.1.tgz", "integrity": "sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==", - "dev": true, "requires": { "minimist": "^1.2.0" } @@ -122,14 +129,12 @@ "minimist": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } } }, @@ -137,7 +142,6 @@ "version": "7.6.4", "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.4.tgz", "integrity": "sha512-jsBuXkFoZxk0yWLyGI9llT9oiQ2FeTASmRFE32U+aaDTfoE92t78eroO7PTpU/OrYq38hlcDM6vbfLDaOLy+7w==", - "dev": true, "requires": { "@babel/types": "^7.6.3", "jsesc": "^2.5.1", @@ -149,7 +153,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", - "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -162,7 +165,6 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz", "integrity": "sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q==", - "dev": true, "requires": { "@babel/types": "^7.0.0" } @@ -171,7 +173,6 @@ "version": "7.1.0", "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz", "integrity": "sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w==", - "dev": true, "requires": { "@babel/helper-explode-assignable-expression": "^7.1.0", "@babel/types": "^7.0.0" @@ -181,7 +182,6 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz", "integrity": "sha512-l79boDFJ8S1c5hvQvG+rc+wHw6IuH7YldmRKsYtpbawsxURu/paVy57FZMomGK22/JckepaikOkY0MoAmdyOlQ==", - "dev": true, "requires": { "@babel/helper-hoist-variables": "^7.4.4", "@babel/traverse": "^7.4.4", @@ -192,7 +192,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", - "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -201,11 +200,23 @@ } } }, + "@babel/helper-create-class-features-plugin": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.6.0.tgz", + "integrity": "sha512-O1QWBko4fzGju6VoVvrZg0RROCVifcLxiApnGP3OWfWzvxRZFCoBD81K5ur5e3bVY2Vf/5rIJm8cqPKn8HUJng==", + "requires": { + "@babel/helper-function-name": "^7.1.0", + "@babel/helper-member-expression-to-functions": "^7.5.5", + "@babel/helper-optimise-call-expression": "^7.0.0", + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/helper-replace-supers": "^7.5.5", + "@babel/helper-split-export-declaration": "^7.4.4" + } + }, "@babel/helper-define-map": { "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.5.5.tgz", "integrity": "sha512-fTfxx7i0B5NJqvUOBBGREnrqbTxRh7zinBANpZXAVDlsZxYdclDp467G1sQ8VZYMnAURY3RpBUAgOYT9GfzHBg==", - "dev": true, "requires": { "@babel/helper-function-name": "^7.1.0", "@babel/types": "^7.5.5", @@ -216,7 +227,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", - "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -229,7 +239,6 @@ "version": "7.1.0", "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz", "integrity": "sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA==", - "dev": true, "requires": { "@babel/traverse": "^7.1.0", "@babel/types": "^7.0.0" @@ -239,7 +248,6 @@ "version": "7.1.0", "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz", "integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==", - "dev": true, "requires": { "@babel/helper-get-function-arity": "^7.0.0", "@babel/template": "^7.1.0", @@ -250,7 +258,6 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz", "integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==", - "dev": true, "requires": { "@babel/types": "^7.0.0" } @@ -259,7 +266,6 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz", "integrity": "sha512-VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w==", - "dev": true, "requires": { "@babel/types": "^7.4.4" }, @@ -268,7 +274,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", - "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -281,7 +286,6 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.5.5.tgz", "integrity": "sha512-5qZ3D1uMclSNqYcXqiHoA0meVdv+xUEex9em2fqMnrk/scphGlGgg66zjMrPJESPwrFJ6sbfFQYUSa0Mz7FabA==", - "dev": true, "requires": { "@babel/types": "^7.5.5" }, @@ -290,7 +294,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", - "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -303,7 +306,6 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz", "integrity": "sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A==", - "dev": true, "requires": { "@babel/types": "^7.0.0" } @@ -312,7 +314,6 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.5.5.tgz", "integrity": "sha512-jBeCvETKuJqeiaCdyaheF40aXnnU1+wkSiUs/IQg3tB85up1LyL8x77ClY8qJpuRJUcXQo+ZtdNESmZl4j56Pw==", - "dev": true, "requires": { "@babel/helper-module-imports": "^7.0.0", "@babel/helper-simple-access": "^7.1.0", @@ -325,14 +326,12 @@ "@babel/parser": { "version": "7.6.4", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.4.tgz", - "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==", - "dev": true + "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==" }, "@babel/template": { "version": "7.6.0", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.6.0.tgz", "integrity": "sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ==", - "dev": true, "requires": { "@babel/code-frame": "^7.0.0", "@babel/parser": "^7.6.0", @@ -343,7 +342,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", - "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -356,7 +354,6 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz", "integrity": "sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g==", - "dev": true, "requires": { "@babel/types": "^7.0.0" } @@ -364,14 +361,12 @@ "@babel/helper-plugin-utils": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz", - "integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==", - "dev": true + "integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==" }, "@babel/helper-regex": { "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.5.5.tgz", "integrity": "sha512-CkCYQLkfkiugbRDO8eZn6lRuR8kzZoGXCg3149iTk5se7g6qykSpy3+hELSwquhu+TgHn8nkLiBwHvNX8Hofcw==", - "dev": true, "requires": { "lodash": "^4.17.13" } @@ -380,7 +375,6 @@ "version": "7.1.0", "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz", "integrity": "sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg==", - "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.0.0", "@babel/helper-wrap-function": "^7.1.0", @@ -393,7 +387,6 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.5.5.tgz", "integrity": "sha512-XvRFWrNnlsow2u7jXDuH4jDDctkxbS7gXssrP4q2nUD606ukXHRvydj346wmNg+zAgpFx4MWf4+usfC93bElJg==", - "dev": true, "requires": { "@babel/helper-member-expression-to-functions": "^7.5.5", "@babel/helper-optimise-call-expression": "^7.0.0", @@ -405,7 +398,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", - "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -418,7 +410,6 @@ "version": "7.1.0", "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz", "integrity": "sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w==", - "dev": true, "requires": { "@babel/template": "^7.1.0", "@babel/types": "^7.0.0" @@ -428,7 +419,6 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz", "integrity": "sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==", - "dev": true, "requires": { "@babel/types": "^7.4.4" }, @@ -437,7 +427,6 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", "integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", - "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -450,7 +439,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz", "integrity": "sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ==", - "dev": true, "requires": { "@babel/helper-function-name": "^7.1.0", "@babel/template": "^7.1.0", @@ -462,7 +450,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", - "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -475,7 +462,6 @@ "version": "7.6.2", "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.6.2.tgz", "integrity": "sha512-3/bAUL8zZxYs1cdX2ilEE0WobqbCmKWr/889lf2SS0PpDcpEIY8pb1CCyz0pEcX3pEb+MCbks1jIokz2xLtGTA==", - "dev": true, "requires": { "@babel/template": "^7.6.0", "@babel/traverse": "^7.6.2", @@ -485,14 +471,12 @@ "@babel/parser": { "version": "7.6.4", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.4.tgz", - "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==", - "dev": true + "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==" }, "@babel/template": { "version": "7.6.0", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.6.0.tgz", "integrity": "sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ==", - "dev": true, "requires": { "@babel/code-frame": "^7.0.0", "@babel/parser": "^7.6.0", @@ -503,7 +487,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", - "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -516,7 +499,6 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz", "integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==", - "dev": true, "requires": { "chalk": "^2.0.0", "esutils": "^2.0.2", @@ -527,7 +509,6 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, "requires": { "color-convert": "^1.9.0" } @@ -536,7 +517,6 @@ "version": "2.4.1", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true, "requires": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -546,14 +526,12 @@ "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, "requires": { "has-flag": "^3.0.0" } @@ -563,14 +541,12 @@ "@babel/parser": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.1.2.tgz", - "integrity": "sha512-x5HFsW+E/nQalGMw7hu+fvPqnBeBaIr0lWJ2SG0PPL2j+Pm9lYvCrsZJGIgauPIENx0v10INIyFjmSNUD/gSqQ==", - "dev": true + "integrity": "sha512-x5HFsW+E/nQalGMw7hu+fvPqnBeBaIr0lWJ2SG0PPL2j+Pm9lYvCrsZJGIgauPIENx0v10INIyFjmSNUD/gSqQ==" }, "@babel/plugin-proposal-async-generator-functions": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz", "integrity": "sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-remap-async-to-generator": "^7.1.0", @@ -581,7 +557,6 @@ "version": "7.5.0", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.5.0.tgz", "integrity": "sha512-x/iMjggsKTFHYC6g11PL7Qy58IK8H5zqfm9e6hu4z1iH2IRyAp9u9dL80zA6R76yFovETFLKz2VJIC2iIPBuFw==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-syntax-dynamic-import": "^7.2.0" @@ -591,7 +566,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz", "integrity": "sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-syntax-json-strings": "^7.2.0" @@ -601,7 +575,6 @@ "version": "7.6.2", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.6.2.tgz", "integrity": "sha512-LDBXlmADCsMZV1Y9OQwMc0MyGZ8Ta/zlD9N67BfQT8uYwkRswiu2hU6nJKrjrt/58aH/vqfQlR/9yId/7A2gWw==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-syntax-object-rest-spread": "^7.2.0" @@ -611,7 +584,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz", "integrity": "sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-syntax-optional-catch-binding": "^7.2.0" @@ -621,7 +593,6 @@ "version": "7.6.2", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.6.2.tgz", "integrity": "sha512-NxHETdmpeSCtiatMRYWVJo7266rrvAC3DTeG5exQBIH/fMIUK7ejDNznBbn3HQl/o9peymRRg7Yqkx6PdUXmMw==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-regex": "^7.4.4", @@ -632,7 +603,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz", "integrity": "sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -641,7 +611,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz", "integrity": "sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -650,7 +619,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz", "integrity": "sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -659,7 +627,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz", "integrity": "sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -668,7 +635,14 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz", "integrity": "sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w==", - "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.3.3.tgz", + "integrity": "sha512-dGwbSMA1YhVS8+31CnPR7LB4pcbrzcV99wQzby4uAfrkZPYZlQ7ImwdpzLqi6Z6IL02b8IAL379CaMwo0x5Lag==", "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -677,7 +651,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz", "integrity": "sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -686,7 +659,6 @@ "version": "7.5.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.5.0.tgz", "integrity": "sha512-mqvkzwIGkq0bEF1zLRRiTdjfomZJDV33AH3oQzHVGkI2VzEmXLpKKOBvEVaFZBJdN0XTyH38s9j/Kiqr68dggg==", - "dev": true, "requires": { "@babel/helper-module-imports": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0", @@ -697,7 +669,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz", "integrity": "sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -706,7 +677,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.3.tgz", "integrity": "sha512-7hvrg75dubcO3ZI2rjYTzUrEuh1E9IyDEhhB6qfcooxhDA33xx2MasuLVgdxzcP6R/lipAC6n9ub9maNW6RKdw==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "lodash": "^4.17.13" @@ -716,7 +686,6 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.5.5.tgz", "integrity": "sha512-U2htCNK/6e9K7jGyJ++1p5XRU+LJjrwtoiVn9SzRlDT2KubcZ11OOwy3s24TjHxPgxNwonCYP7U2K51uVYCMDg==", - "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.0.0", "@babel/helper-define-map": "^7.5.5", @@ -732,7 +701,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz", "integrity": "sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -741,7 +709,6 @@ "version": "7.6.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.6.0.tgz", "integrity": "sha512-2bGIS5P1v4+sWTCnKNDZDxbGvEqi0ijeqM/YqHtVGrvG2y0ySgnEEhXErvE9dA0bnIzY9bIzdFK0jFA46ASIIQ==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -750,7 +717,6 @@ "version": "7.6.2", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.6.2.tgz", "integrity": "sha512-KGKT9aqKV+9YMZSkowzYoYEiHqgaDhGmPNZlZxX6UeHC4z30nC1J9IrZuGqbYFB1jaIGdv91ujpze0exiVK8bA==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-regex": "^7.4.4", @@ -761,7 +727,6 @@ "version": "7.5.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.5.0.tgz", "integrity": "sha512-igcziksHizyQPlX9gfSjHkE2wmoCH3evvD2qR5w29/Dk0SMKE/eOI7f1HhBdNhR/zxJDqrgpoDTq5YSLH/XMsQ==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -770,7 +735,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz", "integrity": "sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A==", - "dev": true, "requires": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.1.0", "@babel/helper-plugin-utils": "^7.0.0" @@ -780,7 +744,6 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz", "integrity": "sha512-9T/5Dlr14Z9TIEXLXkt8T1DU7F24cbhwhMNUziN3hB1AXoZcdzPcTiKGRn/6iOymDqtTKWnr/BtRKN9JwbKtdQ==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -789,7 +752,6 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz", "integrity": "sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA==", - "dev": true, "requires": { "@babel/helper-function-name": "^7.1.0", "@babel/helper-plugin-utils": "^7.0.0" @@ -799,7 +761,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz", "integrity": "sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -808,7 +769,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz", "integrity": "sha512-HiU3zKkSU6scTidmnFJ0bMX8hz5ixC93b4MHMiYebmk2lUVNGOboPsqQvx5LzooihijUoLR/v7Nc1rbBtnc7FA==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -817,7 +777,6 @@ "version": "7.5.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.5.0.tgz", "integrity": "sha512-n20UsQMKnWrltocZZm24cRURxQnWIvsABPJlw/fvoy9c6AgHZzoelAIzajDHAQrDpuKFFPPcFGd7ChsYuIUMpg==", - "dev": true, "requires": { "@babel/helper-module-transforms": "^7.1.0", "@babel/helper-plugin-utils": "^7.0.0", @@ -828,7 +787,6 @@ "version": "7.6.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.6.0.tgz", "integrity": "sha512-Ma93Ix95PNSEngqomy5LSBMAQvYKVe3dy+JlVJSHEXZR5ASL9lQBedMiCyVtmTLraIDVRE3ZjTZvmXXD2Ozw3g==", - "dev": true, "requires": { "@babel/helper-module-transforms": "^7.4.4", "@babel/helper-plugin-utils": "^7.0.0", @@ -840,7 +798,6 @@ "version": "7.5.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.5.0.tgz", "integrity": "sha512-Q2m56tyoQWmuNGxEtUyeEkm6qJYFqs4c+XyXH5RAuYxObRNz9Zgj/1g2GMnjYp2EUyEy7YTrxliGCXzecl/vJg==", - "dev": true, "requires": { "@babel/helper-hoist-variables": "^7.4.4", "@babel/helper-plugin-utils": "^7.0.0", @@ -851,7 +808,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz", "integrity": "sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw==", - "dev": true, "requires": { "@babel/helper-module-transforms": "^7.1.0", "@babel/helper-plugin-utils": "^7.0.0" @@ -861,7 +817,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.3.tgz", "integrity": "sha512-jTkk7/uE6H2s5w6VlMHeWuH+Pcy2lmdwFoeWCVnvIrDUnB5gQqTVI8WfmEAhF2CDEarGrknZcmSFg1+bkfCoSw==", - "dev": true, "requires": { "regexpu-core": "^4.6.0" } @@ -870,7 +825,6 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz", "integrity": "sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -879,7 +833,6 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.5.5.tgz", "integrity": "sha512-un1zJQAhSosGFBduPgN/YFNvWVpRuHKU7IHBglLoLZsGmruJPOo6pbInneflUdmq7YvSVqhpPs5zdBvLnteltQ==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-replace-supers": "^7.5.5" @@ -889,7 +842,6 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz", "integrity": "sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw==", - "dev": true, "requires": { "@babel/helper-call-delegate": "^7.4.4", "@babel/helper-get-function-arity": "^7.0.0", @@ -900,7 +852,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz", "integrity": "sha512-9q7Dbk4RhgcLp8ebduOpCbtjh7C0itoLYHXd9ueASKAG/is5PQtMR5VJGka9NKqGhYEGn5ITahd4h9QeBMylWQ==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -909,7 +860,6 @@ "version": "7.4.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz", "integrity": "sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA==", - "dev": true, "requires": { "regenerator-transform": "^0.14.0" } @@ -918,7 +868,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz", "integrity": "sha512-fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -927,7 +876,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz", "integrity": "sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -936,7 +884,6 @@ "version": "7.6.2", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.6.2.tgz", "integrity": "sha512-DpSvPFryKdK1x+EDJYCy28nmAaIMdxmhot62jAXF/o99iA33Zj2Lmcp3vDmz+MUh0LNYVPvfj5iC3feb3/+PFg==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -945,7 +892,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz", "integrity": "sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-regex": "^7.0.0" @@ -955,7 +901,6 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz", "integrity": "sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g==", - "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0" @@ -965,16 +910,24 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz", "integrity": "sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } }, + "@babel/plugin-transform-typescript": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.6.3.tgz", + "integrity": "sha512-aiWINBrPMSC3xTXRNM/dfmyYuPNKY/aexYqBgh0HBI5Y+WO5oRAqW/oROYeYHrF4Zw12r9rK4fMk/ZlAmqx/FQ==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.6.0", + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-syntax-typescript": "^7.2.0" + } + }, "@babel/plugin-transform-unicode-regex": { "version": "7.6.2", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.6.2.tgz", "integrity": "sha512-orZI6cWlR3nk2YmYdb0gImrgCUwb5cBUwjf6Ks6dvNVvXERkwtJWOQaEOjPiu0Gu1Tq6Yq/hruCZZOOi9F34Dw==", - "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-regex": "^7.4.4", @@ -1006,7 +959,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.6.3.tgz", "integrity": "sha512-CWQkn7EVnwzlOdR5NOm2+pfgSNEZmvGjOhlCHBDq0J8/EStr+G+FvPEiz9B56dR6MoiUFjXhfE4hjLoAKKJtIQ==", - "dev": true, "requires": { "@babel/helper-module-imports": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0", @@ -1064,7 +1016,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", - "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1073,11 +1024,19 @@ } } }, + "@babel/preset-typescript": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.6.0.tgz", + "integrity": "sha512-4xKw3tTcCm0qApyT6PqM9qniseCE79xGHiUnNdKGdxNsGUc2X7WwZybqIpnTmoukg3nhPceI5KPNzNqLNeIJww==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-transform-typescript": "^7.6.0" + } + }, "@babel/template": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.1.2.tgz", "integrity": "sha512-SY1MmplssORfFiLDcOETrW7fCLl+PavlwMh92rrGcikQaRq4iWPVH0MpwPpY3etVMx6RnDjXtr6VZYr/IbP/Ag==", - "dev": true, "requires": { "@babel/code-frame": "^7.0.0", "@babel/parser": "^7.1.2", @@ -1088,7 +1047,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.3.tgz", "integrity": "sha512-unn7P4LGsijIxaAJo/wpoU11zN+2IaClkQAxcJWBNCMS6cmVh802IyLHNkAjQ0iYnRS3nnxk5O3fuXW28IMxTw==", - "dev": true, "requires": { "@babel/code-frame": "^7.5.5", "@babel/generator": "^7.6.3", @@ -1105,7 +1063,6 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", - "dev": true, "requires": { "@babel/highlight": "^7.0.0" } @@ -1113,14 +1070,12 @@ "@babel/parser": { "version": "7.6.4", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.4.tgz", - "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==", - "dev": true + "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==" }, "@babel/types": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", - "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1131,7 +1086,6 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, "requires": { "ms": "^2.1.1" } @@ -1139,8 +1093,7 @@ "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } } }, @@ -1148,7 +1101,6 @@ "version": "7.1.2", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.1.2.tgz", "integrity": "sha512-pb1I05sZEKiSlMUV9UReaqsCPUpgbHHHu2n1piRm7JkuBkm6QxcaIzKu6FMnMtCbih/cEYTR+RGYYC96Yk9HAg==", - "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.10", @@ -1158,40 +1110,78 @@ "to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", - "dev": true + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" } } }, - "@textlint/ast-node-types": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-4.2.4.tgz", - "integrity": "sha512-ggiixpScxgdMY42b6UafD1iUboSvl9k3vGA9kynP+kd6mEhTDzxtb1aHPDAnV+DpAEw4qpHMz72GBFkX/iOSFw==" - }, - "@types/events": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", - "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==" - }, - "@types/glob": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz", - "integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==", + "@nextcloud/auth": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@nextcloud/auth/-/auth-0.3.1.tgz", + "integrity": "sha512-kx5VfB2SWG+BNudoggnjQrmxr559rCDANVLnaDDKmCujToxv0l3kNMTBUUcYhSvv8dyYaD/ZTaXBUON9ZLm9lw==", "requires": { - "@types/events": "*", - "@types/minimatch": "*", - "@types/node": "*" + "@nextcloud/event-bus": "^0.2.0", + "core-js": "3.2.1" + }, + "dependencies": { + "core-js": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.2.1.tgz", + "integrity": "sha512-Qa5XSVefSVPRxy2XfUC13WbvqkxhkwB3ve+pgCQveNgYzbM/UxZeu1dcOX/xr4UmfUd+muuvsaxilQzCyUurMw==" + } } }, - "@types/minimatch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", - "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" + "@nextcloud/axios": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@nextcloud/axios/-/axios-0.4.2.tgz", + "integrity": "sha512-HrViGxCX0qTE5uCQyMWD0BM5x0cj9VGLXN708zWsehgkTUnwt7qEnyrbuaGSOkdqlbQbf36+bRMxQI23a2mlIg==", + "requires": { + "@babel/cli": "^7.6.2", + "@babel/core": "^7.6.2", + "@babel/preset-env": "^7.6.2", + "@babel/preset-typescript": "^7.6.0", + "@nextcloud/auth": "^0.3.1", + "@nextcloud/event-bus": "^0.2.0", + "axios": "^0.19.0", + "browserslist-config-nextcloud": "0.0.1", + "core-js": "^3.2.1" + }, + "dependencies": { + "core-js": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.3.3.tgz", + "integrity": "sha512-0xmD4vUJRY8nfLyV9zcpC17FtSie5STXzw+HyYw2t8IIvmDnbq7RJUULECCo+NstpJtwK9kx8S+898iyqgeUow==" + } + } }, - "@types/node": { - "version": "12.7.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.7.1.tgz", - "integrity": "sha512-aK9jxMypeSrhiYofWWBf/T7O+KwaiAHzM4sveCdWPn71lzUSMimRnKzhXDKfKwV1kWoBo2P1aGgaIYGLf9/ljw==" + "@nextcloud/event-bus": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@nextcloud/event-bus/-/event-bus-0.2.1.tgz", + "integrity": "sha512-yerEPTA5lnJ1JV8qYK6sHMWW8m6fxuMEtptVgv7WnGCy2l5rvxDh9vqwk72qX/Z9i2OrC7Jy382TMYbke8b2Qw==", + "requires": { + "core-js": "^3.1.4" + }, + "dependencies": { + "core-js": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.3.3.tgz", + "integrity": "sha512-0xmD4vUJRY8nfLyV9zcpC17FtSie5STXzw+HyYw2t8IIvmDnbq7RJUULECCo+NstpJtwK9kx8S+898iyqgeUow==" + } + } + }, + "@nextcloud/router": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@nextcloud/router/-/router-0.1.0.tgz", + "integrity": "sha512-adHnDQrnSMX/O9hYJfLVj9PnNJBISLchbzltKvI7s/WJhKF6++qFTx3G5eNEeXbI52Yb8lKIyLRrqC4JWyLmvA==", + "requires": { + "core-js": "3.1.4" + }, + "dependencies": { + "core-js": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.1.4.tgz", + "integrity": "sha512-YNZN8lt82XIMLnLirj9MhKDFZHalwzzrL9YLt6eb0T5D0EDl4IQ90IGkua8mHbnxNrkj1d8hbdizMc0Qmg1WnQ==" + } + } }, "@uirouter/angularjs": { "version": "1.0.23", @@ -1231,29 +1221,6 @@ } } }, - "@vuedoc/md": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@vuedoc/md/-/md-1.6.0.tgz", - "integrity": "sha512-BiWXI1p1ajT1f7cPofHkmcitcDocwu9Si3e6sgPe5fGSB519zO459iuK9EX0BJuguhpEvwkAKM9rT/PyxFd+Zw==", - "requires": { - "@vuedoc/parser": "^1.4.0", - "ast-to-markdown": "^0.2.2", - "deepmerge": "^3.0.0", - "markdown-to-ast": "^6.0.3", - "md-node-inject": "^0.1.1", - "mdast-util-to-string": "^1.0.5" - } - }, - "@vuedoc/parser": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@vuedoc/parser/-/parser-1.4.0.tgz", - "integrity": "sha512-F2sV0OoLErI59h+ATQ7EEoV598msoUtZVS8wLnTmYQc1JmTgMcAEkERqeVdv4KT1D+ufP7EtQhpsKiY9LQQFdA==", - "requires": { - "cheerio": "^1.0.0-rc.2", - "espree": "^3.5.4", - "htmlparser2": "^3.9.2" - } - }, "@webassemblyjs/ast": { "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz", @@ -1458,21 +1425,6 @@ "integrity": "sha512-/czfa8BwS88b9gWQVhc8eknunSA2DoJpJyTQkhheIf5E48u1N0R4q/YxxsAeqRrmK9TQ/uYfgLDfZo91UlANIA==", "dev": true }, - "acorn-jsx": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", - "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=", - "requires": { - "acorn": "^3.0.4" - }, - "dependencies": { - "acorn": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", - "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=" - } - } - }, "after": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz", @@ -1528,23 +1480,17 @@ "resolved": "https://registry.npmjs.org/angular-sanitize/-/angular-sanitize-1.7.8.tgz", "integrity": "sha512-sVq51is1cVNiPytH4JIEd7iRW0OBIRQGNETWkz1c/jnLv2sBf9oDxEd8enwDz/W2ULBIpqJPK/3AsIxmZyh9pA==" }, - "ansi-escape-sequences": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-4.1.0.tgz", - "integrity": "sha512-dzW9kHxH011uBsidTXd14JXgzye/YLb2LzeKZ4bsgl/Knwx8AtbSFkkGxagdNOoh0DlqHCmfiEjWKBaqjOanVw==", - "requires": { - "array-back": "^3.0.1" - } - }, "ansi-regex": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true }, "ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, "requires": { "color-convert": "^1.9.0" } @@ -1553,7 +1499,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, "requires": { "micromatch": "^3.1.4", "normalize-path": "^2.1.1" @@ -1563,7 +1508,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, "requires": { "remove-trailing-separator": "^1.0.1" } @@ -1587,44 +1531,22 @@ "arr-diff": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" }, "arr-flatten": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" }, "arr-union": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", - "dev": true - }, - "array-back": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", - "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==" - }, - "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", - "requires": { - "array-uniq": "^1.0.1" - } - }, - "array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" }, "array-unique": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" }, "arraybuffer.slice": { "version": "0.0.7", @@ -1673,13 +1595,7 @@ "assign-symbols": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", - "dev": true - }, - "ast-to-markdown": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/ast-to-markdown/-/ast-to-markdown-0.2.2.tgz", - "integrity": "sha512-JT8FYlvBKqpgZcI5YCL2azdkovjAZVviOH1ylTiCYlhgSKoFIAKI2W7hHJl9SX9xLXw0/gIVOHNFw9N9U29uXw==" + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" }, "async": { "version": "2.6.3", @@ -1693,8 +1609,7 @@ "async-each": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", - "dev": true + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" }, "async-limiter": { "version": "1.0.1", @@ -1705,8 +1620,7 @@ "atob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.1.tgz", - "integrity": "sha1-ri1acpR38onWDdf5amMUoi3Wwio=", - "dev": true + "integrity": "sha1-ri1acpR38onWDdf5amMUoi3Wwio=" }, "axios": { "version": "0.19.0", @@ -1764,7 +1678,6 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz", "integrity": "sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ==", - "dev": true, "requires": { "object.assign": "^4.1.0" } @@ -1801,11 +1714,6 @@ "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=", "dev": true }, - "bail": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.4.tgz", - "integrity": "sha512-S8vuDB4w6YpRhICUDET3guPlQpaJl7od94tpZ0Fvnyp+MKW/HyDTcRDck+29C9g+d/qQHnddRH3+94kZdrW0Ww==" - }, "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", @@ -1815,7 +1723,6 @@ "version": "0.11.2", "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dev": true, "requires": { "cache-base": "^1.0.1", "class-utils": "^0.3.5", @@ -1829,14 +1736,12 @@ "component-emitter": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", - "dev": true + "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=" }, "define-property": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, "requires": { "is-descriptor": "^1.0.0" } @@ -1845,7 +1750,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -1854,7 +1758,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -1863,7 +1766,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, "requires": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", @@ -1873,14 +1775,12 @@ "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" }, "kind-of": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" } } }, @@ -1920,8 +1820,7 @@ "binary-extensions": { "version": "1.13.1", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" }, "blob": { "version": "0.0.5", @@ -1959,16 +1858,6 @@ "type-is": "~1.6.17" } }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" - }, - "boundary": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/boundary/-/boundary-1.0.1.tgz", - "integrity": "sha1-TWfcJgLAzBbdm85+v4fpSCkPWBI=" - }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -1982,7 +1871,6 @@ "version": "2.3.2", "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, "requires": { "arr-flatten": "^1.1.0", "array-unique": "^0.3.2", @@ -2000,7 +1888,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, "requires": { "is-extendable": "^0.1.0" } @@ -2088,13 +1975,17 @@ "version": "4.7.0", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.7.0.tgz", "integrity": "sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA==", - "dev": true, "requires": { "caniuse-lite": "^1.0.30000989", "electron-to-chromium": "^1.3.247", "node-releases": "^1.1.29" } }, + "browserslist-config-nextcloud": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/browserslist-config-nextcloud/-/browserslist-config-nextcloud-0.0.1.tgz", + "integrity": "sha512-BUpPPPfE42jL2puSqfnsoOMoz6g+jqznoaoZmig4Kx1ULApBmM6iH+/7V1yblQz2PsOp39HET1byAB3h3h+kew==" + }, "buffer": { "version": "4.9.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", @@ -2231,7 +2122,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "dev": true, "requires": { "collection-visit": "^1.0.0", "component-emitter": "^1.2.1", @@ -2247,34 +2137,12 @@ "component-emitter": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", - "dev": true + "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=" }, "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "cache-point": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/cache-point/-/cache-point-0.4.1.tgz", - "integrity": "sha512-4TgWfe9SF+bUy5cCql8gWHqKNrviufNwSYxLjf2utB0pY4+bdcuFwMmY1hDB+67Gz/L1vmhFNhePAjJTFBtV+Q==", - "requires": { - "array-back": "^2.0.0", - "fs-then-native": "^2.0.0", - "mkdirp2": "^1.0.3" - }, - "dependencies": { - "array-back": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-2.0.0.tgz", - "integrity": "sha512-eJv4pLLufP3g5kcZry0j6WXpIbzYw9GUB4mVJZno9wfwiBxbizTnHCw3VJb07cBihbFX48Y7oSrW9y+gt4glyw==", - "requires": { - "typical": "^2.6.1" - } + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" } } }, @@ -2287,31 +2155,19 @@ "camelcase": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true }, "caniuse-lite": { "version": "1.0.30000999", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000999.tgz", - "integrity": "sha512-1CUyKyecPeksKwXZvYw0tEoaMCo/RwBlXmEtN5vVnabvO0KPd9RQLcaAuR9/1F+KDMv6esmOFWlsXuzDk+8rxg==", - "dev": true - }, - "catharsis": { - "version": "0.8.11", - "resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.8.11.tgz", - "integrity": "sha512-a+xUyMV7hD1BrDQA/3iPV7oc+6W26BgVJO05PGEoatMyIuPScQKsde6i3YorWX1qs+AZjnJ18NqdKoCtKiNh1g==", - "requires": { - "lodash": "^4.17.14" - } - }, - "ccount": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.0.4.tgz", - "integrity": "sha512-fpZ81yYfzentuieinmGnphk0pLkOTMm6MZdVqwd77ROvhko6iujLNGrHH5E7utq3ygWklwfmwuG+A7P+NpqT6w==" + "integrity": "sha512-1CUyKyecPeksKwXZvYw0tEoaMCo/RwBlXmEtN5vVnabvO0KPd9RQLcaAuR9/1F+KDMv6esmOFWlsXuzDk+8rxg==" }, "chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, "requires": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -2322,55 +2178,22 @@ "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, "requires": { "has-flag": "^3.0.0" } } } }, - "character-entities": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.3.tgz", - "integrity": "sha512-yB4oYSAa9yLcGyTbB4ItFwHw43QHdH129IJ5R+WvxOkWlyFnR5FAaBNnUq4mcxsTVZGh28bHoeTHMKXH1wZf3w==" - }, - "character-entities-html4": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-1.1.3.tgz", - "integrity": "sha512-SwnyZ7jQBCRHELk9zf2CN5AnGEc2nA+uKMZLHvcqhpPprjkYhiLn0DywMHgN5ttFZuITMATbh68M6VIVKwJbcg==" - }, - "character-entities-legacy": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.3.tgz", - "integrity": "sha512-YAxUpPoPwxYFsslbdKkhrGnXAtXoHNgYjlBM3WMXkWGTl5RsY3QmOyhwAgL8Nxm9l5LBThXGawxKPn68y6/fww==" - }, - "character-reference-invalid": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.3.tgz", - "integrity": "sha512-VOq6PRzQBam/8Jm6XBGk2fNEnHXAdGd6go0rtd4weAGECBamHDwwCQSOT12TACIYUZegUXnV6xBXqUssijtxIg==" - }, "charenc": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=" }, - "cheerio": { - "version": "1.0.0-rc.3", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz", - "integrity": "sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==", - "requires": { - "css-select": "~1.2.0", - "dom-serializer": "~0.1.1", - "entities": "~1.1.1", - "htmlparser2": "^3.9.1", - "lodash": "^4.15.0", - "parse5": "^3.0.1" - } - }, "chokidar": { "version": "2.1.8", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "dev": true, "requires": { "anymatch": "^2.0.0", "async-each": "^1.0.1", @@ -2415,7 +2238,6 @@ "version": "0.3.6", "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "dev": true, "requires": { "arr-union": "^3.1.0", "define-property": "^0.2.5", @@ -2427,7 +2249,6 @@ "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, "requires": { "is-descriptor": "^0.1.0" } @@ -2435,8 +2256,7 @@ "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" } } }, @@ -2444,31 +2264,17 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, "requires": { "string-width": "^3.1.0", "strip-ansi": "^5.2.0", "wrap-ansi": "^5.1.0" } }, - "collapse-white-space": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.5.tgz", - "integrity": "sha512-703bOOmytCYAX9cXYqoikYIx6twmFCXsnzRQheBcTG3nzKYBR4P/+wkYeH+Mvj7qUz8zZDtdyzbxfnEi/kYzRQ==" - }, - "collect-all": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/collect-all/-/collect-all-1.0.3.tgz", - "integrity": "sha512-0y0rBgoX8IzIjBAUnO73SEtSb4Mhk3IoceWJq5zZSxb9mWORhWH8xLYo4EDSOE1jRBk1LhmfjqWFFt10h/+MEA==", - "requires": { - "stream-connect": "^1.0.2", - "stream-via": "^1.0.4" - } - }, "collection-visit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", - "dev": true, "requires": { "map-visit": "^1.0.0", "object-visit": "^1.0.0" @@ -2493,77 +2299,11 @@ "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", "dev": true }, - "command-line-args": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.1.1.tgz", - "integrity": "sha512-hL/eG8lrll1Qy1ezvkant+trihbGnaKaeEjj6Scyr3DN+RC7iQ5Rz84IeLERfAWDGo0HBSNAakczwgCilDXnWg==", - "requires": { - "array-back": "^3.0.1", - "find-replace": "^3.0.0", - "lodash.camelcase": "^4.3.0", - "typical": "^4.0.0" - }, - "dependencies": { - "typical": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz", - "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==" - } - } - }, - "command-line-tool": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/command-line-tool/-/command-line-tool-0.8.0.tgz", - "integrity": "sha512-Xw18HVx/QzQV3Sc5k1vy3kgtOeGmsKIqwtFFoyjI4bbcpSgnw2CWVULvtakyw4s6fhyAdI6soQQhXc2OzJy62g==", - "requires": { - "ansi-escape-sequences": "^4.0.0", - "array-back": "^2.0.0", - "command-line-args": "^5.0.0", - "command-line-usage": "^4.1.0", - "typical": "^2.6.1" - }, - "dependencies": { - "array-back": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-2.0.0.tgz", - "integrity": "sha512-eJv4pLLufP3g5kcZry0j6WXpIbzYw9GUB4mVJZno9wfwiBxbizTnHCw3VJb07cBihbFX48Y7oSrW9y+gt4glyw==", - "requires": { - "typical": "^2.6.1" - } - } - } - }, - "command-line-usage": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-4.1.0.tgz", - "integrity": "sha512-MxS8Ad995KpdAC0Jopo/ovGIroV/m0KHwzKfXxKag6FHOkGsH8/lv5yjgablcRxCJJC0oJeUMuO/gmaq+Wq46g==", - "requires": { - "ansi-escape-sequences": "^4.0.0", - "array-back": "^2.0.0", - "table-layout": "^0.4.2", - "typical": "^2.6.1" - }, - "dependencies": { - "array-back": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-2.0.0.tgz", - "integrity": "sha512-eJv4pLLufP3g5kcZry0j6WXpIbzYw9GUB4mVJZno9wfwiBxbizTnHCw3VJb07cBihbFX48Y7oSrW9y+gt4glyw==", - "requires": { - "typical": "^2.6.1" - } - } - } - }, "commander": { "version": "2.20.0", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz", "integrity": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==" }, - "common-sequence": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/common-sequence/-/common-sequence-1.0.2.tgz", - "integrity": "sha1-MOB/P49vf5s97oVPILLTnu4Ibeg=" - }, "commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", @@ -2605,21 +2345,6 @@ "typedarray": "^0.0.6" } }, - "config-master": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/config-master/-/config-master-3.1.0.tgz", - "integrity": "sha1-ZnZjWQUFooO/JqSE1oSJ10xUhdo=", - "requires": { - "walk-back": "^2.0.1" - }, - "dependencies": { - "walk-back": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/walk-back/-/walk-back-2.0.1.tgz", - "integrity": "sha1-VU4qnYdPrEeoywBr9EwvDEmYoKQ=" - } - } - }, "connect": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", @@ -2666,7 +2391,6 @@ "version": "1.6.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz", "integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==", - "dev": true, "requires": { "safe-buffer": "~5.1.1" } @@ -2694,8 +2418,7 @@ "copy-descriptor": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", - "dev": true + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" }, "core-js": { "version": "2.5.6", @@ -2706,7 +2429,6 @@ "version": "3.3.1", "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.3.1.tgz", "integrity": "sha512-R5gisVHlU8ZXrr05qjER3SJ8pp8cYxhWQ0doIfuGhLqtHf9b3eLzzr1ZEfI7MX9JJFwVT+HuyToULupnHl0Ghw==", - "dev": true, "requires": { "browserslist": "^4.7.0", "semver": "^6.3.0" @@ -2715,16 +2437,14 @@ "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" } } }, "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "dev": true + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" }, "create-ecdh": { "version": "4.0.3", @@ -2763,19 +2483,11 @@ "sha.js": "^2.4.8" } }, - "cross-env": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-5.2.0.tgz", - "integrity": "sha512-jtdNFfFW1hB7sMhr/H6rW1Z45LFqyI431m3qU6bFXcQ3Eh7LtBuG3h74o7ohHZ3crrRkkqHlo4jYHFPcjroANg==", - "requires": { - "cross-spawn": "^6.0.5", - "is-windows": "^1.0.0" - } - }, "cross-spawn": { "version": "6.0.5", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, "requires": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -2872,22 +2584,6 @@ } } }, - "css-select": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", - "requires": { - "boolbase": "~1.0.0", - "css-what": "2.1", - "domutils": "1.5.1", - "nth-check": "~1.0.1" - } - }, - "css-what": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", - "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==" - }, "cssesc": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", @@ -2935,29 +2631,18 @@ "decamelize": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true }, "decode-uri-component": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", - "dev": true - }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" - }, - "deepmerge": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-3.3.0.tgz", - "integrity": "sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==" + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" }, "define-properties": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "dev": true, "requires": { "object-keys": "^1.0.12" } @@ -2966,7 +2651,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, "requires": { "is-descriptor": "^1.0.2", "isobject": "^3.0.1" @@ -2976,7 +2660,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -2985,7 +2668,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -2994,7 +2676,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, "requires": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", @@ -3004,56 +2685,12 @@ "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" }, "kind-of": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "del": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", - "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", - "requires": { - "@types/glob": "^7.1.1", - "globby": "^6.1.0", - "is-path-cwd": "^2.0.0", - "is-path-in-cwd": "^2.0.0", - "p-map": "^2.0.0", - "pify": "^4.0.1", - "rimraf": "^2.6.3" - }, - "dependencies": { - "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - }, - "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "requires": { - "glob": "^7.1.3" - } + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" } } }, @@ -3096,32 +2733,6 @@ "randombytes": "^2.0.0" } }, - "dmd": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/dmd/-/dmd-4.0.0.tgz", - "integrity": "sha512-J+4CgbQiMuJHiU9dvTVN8iOOZGeR3bef1wBqz6eVvvX17jkpkKVd8TeeutA/FJAeFbLQfXnyQ3o4qY7W+c5cxQ==", - "requires": { - "array-back": "^3.1.0", - "cache-point": "^0.4.1", - "common-sequence": "^1.0.2", - "file-set": "^2.0.0", - "handlebars": "^4.1.2", - "marked": "^0.6.2", - "object-get": "^2.1.0", - "reduce-flatten": "^2.0.0", - "reduce-unique": "^2.0.1", - "reduce-without": "^1.0.1", - "test-value": "^3.0.0", - "walk-back": "^3.0.1" - }, - "dependencies": { - "reduce-flatten": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", - "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==" - } - } - }, "dom-serialize": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz", @@ -3134,43 +2745,12 @@ "void-elements": "^2.0.0" } }, - "dom-serializer": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", - "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", - "requires": { - "domelementtype": "^1.3.0", - "entities": "^1.1.1" - } - }, "domain-browser": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", "dev": true }, - "domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" - }, - "domhandler": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", - "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", - "requires": { - "domelementtype": "1" - } - }, - "domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", - "requires": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, "duplexify": { "version": "3.6.1", "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.6.1.tgz", @@ -3192,8 +2772,7 @@ "electron-to-chromium": { "version": "1.3.282", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.282.tgz", - "integrity": "sha512-irSaDeCGgfMu1OA30bhqIBr+dx+pDJjRbwCpob7YWqVZbzXblybNzPGklVnWqv4EXxbkEAzQYqiNCqNTgu00lQ==", - "dev": true + "integrity": "sha512-irSaDeCGgfMu1OA30bhqIBr+dx+pDJjRbwCpob7YWqVZbzXblybNzPGklVnWqv4EXxbkEAzQYqiNCqNTgu00lQ==" }, "elliptic": { "version": "6.5.1", @@ -3213,7 +2792,8 @@ "emoji-regex": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true }, "emojis-list": { "version": "2.1.0", @@ -3321,11 +2901,6 @@ "integrity": "sha1-6WQhkyWiHQX0RGai9obtbOX13R0=", "dev": true }, - "entities": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" - }, "errno": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", @@ -3355,27 +2930,6 @@ "estraverse": "^4.1.1" } }, - "espree": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz", - "integrity": "sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==", - "requires": { - "acorn": "^5.5.0", - "acorn-jsx": "^3.0.0" - }, - "dependencies": { - "acorn": { - "version": "5.7.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz", - "integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==" - } - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - }, "esrecurse": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", @@ -3394,8 +2948,7 @@ "esutils": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", - "dev": true + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" }, "eventemitter3": { "version": "4.0.0", @@ -3438,7 +2991,6 @@ "version": "2.1.4", "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "dev": true, "requires": { "debug": "^2.3.3", "define-property": "^0.2.5", @@ -3453,7 +3005,6 @@ "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, "requires": { "is-descriptor": "^0.1.0" } @@ -3462,7 +3013,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, "requires": { "is-extendable": "^0.1.0" } @@ -3481,13 +3031,13 @@ "extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true }, "extend-shallow": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, "requires": { "assign-symbols": "^1.0.0", "is-extendable": "^1.0.1" @@ -3497,7 +3047,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, "requires": { "is-plain-object": "^2.0.4" } @@ -3508,7 +3057,6 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, "requires": { "array-unique": "^0.3.2", "define-property": "^1.0.0", @@ -3524,7 +3072,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, "requires": { "is-descriptor": "^1.0.0" } @@ -3533,7 +3080,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, "requires": { "is-extendable": "^0.1.0" } @@ -3542,7 +3088,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -3551,7 +3096,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -3560,7 +3104,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, "requires": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", @@ -3570,8 +3113,7 @@ "kind-of": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" } } }, @@ -3598,43 +3140,10 @@ "integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==", "dev": true }, - "file-set": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/file-set/-/file-set-2.0.1.tgz", - "integrity": "sha512-XgOUUpgR6FbbfYcniLw0qm1Am7PnNYIAkd+eXxRt42LiYhjaso0WiuQ+VmrNdtwotyM+cLCfZ56AZrySP3QnKA==", - "requires": { - "array-back": "^2.0.0", - "glob": "^7.1.3" - }, - "dependencies": { - "array-back": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-2.0.0.tgz", - "integrity": "sha512-eJv4pLLufP3g5kcZry0j6WXpIbzYw9GUB4mVJZno9wfwiBxbizTnHCw3VJb07cBihbFX48Y7oSrW9y+gt4glyw==", - "requires": { - "typical": "^2.6.1" - } - }, - "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - } - } - }, "fill-range": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, "requires": { "extend-shallow": "^2.0.1", "is-number": "^3.0.0", @@ -3646,7 +3155,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, "requires": { "is-extendable": "^0.1.0" } @@ -3679,18 +3187,11 @@ "pkg-dir": "^3.0.0" } }, - "find-replace": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", - "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", - "requires": { - "array-back": "^3.0.1" - } - }, "find-up": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, "requires": { "locate-path": "^3.0.0" } @@ -3752,14 +3253,12 @@ "for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "dev": true + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" }, "fragment-cache": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", - "dev": true, "requires": { "map-cache": "^0.2.2" } @@ -3774,14 +3273,6 @@ "readable-stream": "^2.0.0" } }, - "front-matter": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/front-matter/-/front-matter-3.0.2.tgz", - "integrity": "sha512-iBGZaWyzqgsrPGsqrXZP6N4hp5FzSKDi18nfAoYpgz3qK5sAwFv/ojmn3VS60SOgLvq6CtojNqy0y6ZNz05IzQ==", - "requires": { - "js-yaml": "^3.13.1" - } - }, "fs-extra": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", @@ -3793,10 +3284,10 @@ "universalify": "^0.1.0" } }, - "fs-then-native": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fs-then-native/-/fs-then-native-2.0.0.tgz", - "integrity": "sha1-GaEk2U2QwiyOBF8ujdbr6jbUjGc=" + "fs-readdir-recursive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz", + "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==" }, "fs-write-stream-atomic": { "version": "1.0.10", @@ -3810,11 +3301,6 @@ "readable-stream": "1 || 2" } }, - "fs.promised": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/fs.promised/-/fs.promised-3.0.0.tgz", - "integrity": "sha1-q3c3n3wa0JOeEmKows7ZP6bDnTs=" - }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -3824,7 +3310,6 @@ "version": "1.2.9", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz", "integrity": "sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==", - "dev": true, "optional": true, "requires": { "nan": "^2.12.1", @@ -3834,25 +3319,21 @@ "abbrev": { "version": "1.1.1", "bundled": true, - "dev": true, "optional": true }, "ansi-regex": { "version": "2.1.1", "bundled": true, - "dev": true, "optional": true }, "aproba": { "version": "1.2.0", "bundled": true, - "dev": true, "optional": true }, "are-we-there-yet": { "version": "1.1.5", "bundled": true, - "dev": true, "optional": true, "requires": { "delegates": "^1.0.0", @@ -3862,13 +3343,11 @@ "balanced-match": { "version": "1.0.0", "bundled": true, - "dev": true, "optional": true }, "brace-expansion": { "version": "1.1.11", "bundled": true, - "dev": true, "optional": true, "requires": { "balanced-match": "^1.0.0", @@ -3878,37 +3357,31 @@ "chownr": { "version": "1.1.1", "bundled": true, - "dev": true, "optional": true }, "code-point-at": { "version": "1.1.0", "bundled": true, - "dev": true, "optional": true }, "concat-map": { "version": "0.0.1", "bundled": true, - "dev": true, "optional": true }, "console-control-strings": { "version": "1.1.0", "bundled": true, - "dev": true, "optional": true }, "core-util-is": { "version": "1.0.2", "bundled": true, - "dev": true, "optional": true }, "debug": { "version": "4.1.1", "bundled": true, - "dev": true, "optional": true, "requires": { "ms": "^2.1.1" @@ -3917,25 +3390,21 @@ "deep-extend": { "version": "0.6.0", "bundled": true, - "dev": true, "optional": true }, "delegates": { "version": "1.0.0", "bundled": true, - "dev": true, "optional": true }, "detect-libc": { "version": "1.0.3", "bundled": true, - "dev": true, "optional": true }, "fs-minipass": { "version": "1.2.5", "bundled": true, - "dev": true, "optional": true, "requires": { "minipass": "^2.2.1" @@ -3944,13 +3413,11 @@ "fs.realpath": { "version": "1.0.0", "bundled": true, - "dev": true, "optional": true }, "gauge": { "version": "2.7.4", "bundled": true, - "dev": true, "optional": true, "requires": { "aproba": "^1.0.3", @@ -3966,7 +3433,6 @@ "glob": { "version": "7.1.3", "bundled": true, - "dev": true, "optional": true, "requires": { "fs.realpath": "^1.0.0", @@ -3980,13 +3446,11 @@ "has-unicode": { "version": "2.0.1", "bundled": true, - "dev": true, "optional": true }, "iconv-lite": { "version": "0.4.24", "bundled": true, - "dev": true, "optional": true, "requires": { "safer-buffer": ">= 2.1.2 < 3" @@ -3995,7 +3459,6 @@ "ignore-walk": { "version": "3.0.1", "bundled": true, - "dev": true, "optional": true, "requires": { "minimatch": "^3.0.4" @@ -4004,7 +3467,6 @@ "inflight": { "version": "1.0.6", "bundled": true, - "dev": true, "optional": true, "requires": { "once": "^1.3.0", @@ -4014,19 +3476,16 @@ "inherits": { "version": "2.0.3", "bundled": true, - "dev": true, "optional": true }, "ini": { "version": "1.3.5", "bundled": true, - "dev": true, "optional": true }, "is-fullwidth-code-point": { "version": "1.0.0", "bundled": true, - "dev": true, "optional": true, "requires": { "number-is-nan": "^1.0.0" @@ -4035,13 +3494,11 @@ "isarray": { "version": "1.0.0", "bundled": true, - "dev": true, "optional": true }, "minimatch": { "version": "3.0.4", "bundled": true, - "dev": true, "optional": true, "requires": { "brace-expansion": "^1.1.7" @@ -4050,13 +3507,11 @@ "minimist": { "version": "0.0.8", "bundled": true, - "dev": true, "optional": true }, "minipass": { "version": "2.3.5", "bundled": true, - "dev": true, "optional": true, "requires": { "safe-buffer": "^5.1.2", @@ -4066,7 +3521,6 @@ "minizlib": { "version": "1.2.1", "bundled": true, - "dev": true, "optional": true, "requires": { "minipass": "^2.2.1" @@ -4075,7 +3529,6 @@ "mkdirp": { "version": "0.5.1", "bundled": true, - "dev": true, "optional": true, "requires": { "minimist": "0.0.8" @@ -4084,13 +3537,11 @@ "ms": { "version": "2.1.1", "bundled": true, - "dev": true, "optional": true }, "needle": { "version": "2.3.0", "bundled": true, - "dev": true, "optional": true, "requires": { "debug": "^4.1.0", @@ -4101,7 +3552,6 @@ "node-pre-gyp": { "version": "0.12.0", "bundled": true, - "dev": true, "optional": true, "requires": { "detect-libc": "^1.0.2", @@ -4119,7 +3569,6 @@ "nopt": { "version": "4.0.1", "bundled": true, - "dev": true, "optional": true, "requires": { "abbrev": "1", @@ -4129,13 +3578,11 @@ "npm-bundled": { "version": "1.0.6", "bundled": true, - "dev": true, "optional": true }, "npm-packlist": { "version": "1.4.1", "bundled": true, - "dev": true, "optional": true, "requires": { "ignore-walk": "^3.0.1", @@ -4145,7 +3592,6 @@ "npmlog": { "version": "4.1.2", "bundled": true, - "dev": true, "optional": true, "requires": { "are-we-there-yet": "~1.1.2", @@ -4157,19 +3603,16 @@ "number-is-nan": { "version": "1.0.1", "bundled": true, - "dev": true, "optional": true }, "object-assign": { "version": "4.1.1", "bundled": true, - "dev": true, "optional": true }, "once": { "version": "1.4.0", "bundled": true, - "dev": true, "optional": true, "requires": { "wrappy": "1" @@ -4178,19 +3621,16 @@ "os-homedir": { "version": "1.0.2", "bundled": true, - "dev": true, "optional": true }, "os-tmpdir": { "version": "1.0.2", "bundled": true, - "dev": true, "optional": true }, "osenv": { "version": "0.1.5", "bundled": true, - "dev": true, "optional": true, "requires": { "os-homedir": "^1.0.0", @@ -4200,19 +3640,16 @@ "path-is-absolute": { "version": "1.0.1", "bundled": true, - "dev": true, "optional": true }, "process-nextick-args": { "version": "2.0.0", "bundled": true, - "dev": true, "optional": true }, "rc": { "version": "1.2.8", "bundled": true, - "dev": true, "optional": true, "requires": { "deep-extend": "^0.6.0", @@ -4224,7 +3661,6 @@ "minimist": { "version": "1.2.0", "bundled": true, - "dev": true, "optional": true } } @@ -4232,7 +3668,6 @@ "readable-stream": { "version": "2.3.6", "bundled": true, - "dev": true, "optional": true, "requires": { "core-util-is": "~1.0.0", @@ -4247,7 +3682,6 @@ "rimraf": { "version": "2.6.3", "bundled": true, - "dev": true, "optional": true, "requires": { "glob": "^7.1.3" @@ -4256,43 +3690,36 @@ "safe-buffer": { "version": "5.1.2", "bundled": true, - "dev": true, "optional": true }, "safer-buffer": { "version": "2.1.2", "bundled": true, - "dev": true, "optional": true }, "sax": { "version": "1.2.4", "bundled": true, - "dev": true, "optional": true }, "semver": { "version": "5.7.0", "bundled": true, - "dev": true, "optional": true }, "set-blocking": { "version": "2.0.0", "bundled": true, - "dev": true, "optional": true }, "signal-exit": { "version": "3.0.2", "bundled": true, - "dev": true, "optional": true }, "string-width": { "version": "1.0.2", "bundled": true, - "dev": true, "optional": true, "requires": { "code-point-at": "^1.0.0", @@ -4303,7 +3730,6 @@ "string_decoder": { "version": "1.1.1", "bundled": true, - "dev": true, "optional": true, "requires": { "safe-buffer": "~5.1.0" @@ -4312,7 +3738,6 @@ "strip-ansi": { "version": "3.0.1", "bundled": true, - "dev": true, "optional": true, "requires": { "ansi-regex": "^2.0.0" @@ -4321,13 +3746,11 @@ "strip-json-comments": { "version": "2.0.1", "bundled": true, - "dev": true, "optional": true }, "tar": { "version": "4.4.8", "bundled": true, - "dev": true, "optional": true, "requires": { "chownr": "^1.1.1", @@ -4342,13 +3765,11 @@ "util-deprecate": { "version": "1.0.2", "bundled": true, - "dev": true, "optional": true }, "wide-align": { "version": "1.1.3", "bundled": true, - "dev": true, "optional": true, "requires": { "string-width": "^1.0.2 || 2" @@ -4357,13 +3778,11 @@ "wrappy": { "version": "1.0.2", "bundled": true, - "dev": true, "optional": true }, "yallist": { "version": "3.0.3", "bundled": true, - "dev": true, "optional": true } } @@ -4376,7 +3795,8 @@ "get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true }, "get-stream": { "version": "4.1.0", @@ -4390,8 +3810,7 @@ "get-value": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", - "dev": true + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" }, "glob": { "version": "7.1.2", @@ -4410,7 +3829,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dev": true, "requires": { "is-glob": "^3.1.0", "path-dirname": "^1.0.0" @@ -4420,7 +3838,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, "requires": { "is-extglob": "^2.1.0" } @@ -4471,27 +3888,7 @@ "globals": { "version": "11.8.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.8.0.tgz", - "integrity": "sha512-io6LkyPVuzCHBSQV9fmOwxZkUk6nIaGmxheLDgmuFv89j0fm2aqDbIXKAGfzCMHqz3HLF2Zf8WSG6VqMh2qFmA==", - "dev": true - }, - "globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", - "requires": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - } - } + "integrity": "sha512-io6LkyPVuzCHBSQV9fmOwxZkUk6nIaGmxheLDgmuFv89j0fm2aqDbIXKAGfzCMHqz3HLF2Zf8WSG6VqMh2qFmA==" }, "graceful-fs": { "version": "4.1.11", @@ -4503,32 +3900,6 @@ "resolved": "https://registry.npmjs.org/hammerjs/-/hammerjs-2.0.8.tgz", "integrity": "sha1-BO93hiz/K7edMPdpIJWTAiK/YPE=" }, - "handlebars": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.1.2.tgz", - "integrity": "sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw==", - "requires": { - "neo-async": "^2.6.0", - "optimist": "^0.6.1", - "source-map": "^0.6.1", - "uglify-js": "^3.1.4" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } - }, "has-binary2": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz", @@ -4560,14 +3931,12 @@ "has-symbols": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", - "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=", - "dev": true + "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=" }, "has-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", - "dev": true, "requires": { "get-value": "^2.0.6", "has-values": "^1.0.0", @@ -4577,8 +3946,7 @@ "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" } } }, @@ -4586,7 +3954,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", - "dev": true, "requires": { "is-number": "^3.0.0", "kind-of": "^4.0.0" @@ -4596,7 +3963,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, "requires": { "kind-of": "^3.0.2" }, @@ -4605,7 +3971,6 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, "requires": { "is-buffer": "^1.1.5" } @@ -4616,7 +3981,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "dev": true, "requires": { "is-buffer": "^1.1.5" } @@ -4675,31 +4039,6 @@ "parse-passwd": "^1.0.0" } }, - "htmlparser2": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", - "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", - "requires": { - "domelementtype": "^1.3.1", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^3.1.1" - }, - "dependencies": { - "readable-stream": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz", - "integrity": "sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, "http-errors": { "version": "1.7.2", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", @@ -4824,7 +4163,6 @@ "version": "2.2.4", "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "dev": true, "requires": { "loose-envify": "^1.0.0" } @@ -4839,35 +4177,14 @@ "version": "0.1.6", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, "requires": { "kind-of": "^3.0.2" } }, - "is-alphabetical": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.3.tgz", - "integrity": "sha512-eEMa6MKpHFzw38eKm56iNNi6GJ7lf6aLLio7Kr23sJPAECscgRtZvOBYybejWDQ2bM949Y++61PY+udzj5QMLA==" - }, - "is-alphanumeric": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz", - "integrity": "sha1-Spzvcdr0wAHB2B1j0UDPU/1oifQ=" - }, - "is-alphanumerical": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.3.tgz", - "integrity": "sha512-A1IGAPO5AW9vSh7omxIlOGwIqEvpW/TA+DksVOPM5ODuxKlZS09+TEM1E3275lJqO2oJ38vDpeAL3DCIiHE6eA==", - "requires": { - "is-alphabetical": "^1.0.0", - "is-decimal": "^1.0.0" - } - }, "is-binary-path": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "dev": true, "requires": { "binary-extensions": "^1.0.0" } @@ -4881,21 +4198,14 @@ "version": "0.1.4", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, "requires": { "kind-of": "^3.0.2" } }, - "is-decimal": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.3.tgz", - "integrity": "sha512-bvLSwoDg2q6Gf+E2LEPiklHZxxiSi3XAh4Mav65mKqTfCO1HM3uBs24TjEH8iJX3bbDdLXKJXBTmGzuTUuAEjQ==" - }, "is-descriptor": { "version": "0.1.6", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, "requires": { "is-accessor-descriptor": "^0.1.6", "is-data-descriptor": "^0.1.4", @@ -4905,47 +4215,38 @@ "kind-of": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" } } }, "is-extendable": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", - "dev": true + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" }, "is-fullwidth-code-point": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true }, "is-glob": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz", "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=", - "dev": true, "requires": { "is-extglob": "^2.1.1" } }, - "is-hexadecimal": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.3.tgz", - "integrity": "sha512-zxQ9//Q3D/34poZf8fiy3m3XVpbQc7ren15iKqrTtLPwkPD/t3Scy9Imp63FujULGxuK0ZlCwoo5xNpktFgbOA==" - }, "is-number": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, "requires": { "kind-of": "^3.0.2" } @@ -4954,7 +4255,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-odd/-/is-odd-2.0.0.tgz", "integrity": "sha512-OTiixgpZAT1M4NHgS5IguFp/Vz2VI3U7Goh4/HA1adtwyLtSBrxYlcSYkhpAE07s4fKEcjrFxyvtQBND4vFQyQ==", - "dev": true, "requires": { "is-number": "^4.0.0" }, @@ -4962,32 +4262,10 @@ "is-number": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" } } }, - "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==" - }, - "is-path-in-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", - "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", - "requires": { - "is-path-inside": "^2.1.0" - } - }, - "is-path-inside": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", - "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", - "requires": { - "path-is-inside": "^1.0.2" - } - }, "is-plain-obj": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", @@ -4997,7 +4275,6 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, "requires": { "isobject": "^3.0.1" }, @@ -5005,8 +4282,7 @@ "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" } } }, @@ -5016,21 +4292,11 @@ "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", "dev": true }, - "is-whitespace-character": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.3.tgz", - "integrity": "sha512-SNPgMLz9JzPccD3nPctcj8sZlX9DAMJSKH8bP7Z6bohCwuNgX8xbWr1eTAYXX9Vpi/aSn8Y1akL9WgM3t43YNQ==" - }, "is-windows": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" }, - "is-word-character": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.3.tgz", - "integrity": "sha512-0wfcrFgOOOBdgRNT9H33xe6Zi6yhX/uoc4U8NBZGeQQB0ctU1dnlNTyL9JM2646bHDTpsDm1Brb3VPoCIMrd/A==" - }, "is-wsl": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", @@ -5040,8 +4306,7 @@ "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, "isbinaryfile": { "version": "3.0.3", @@ -5055,156 +4320,28 @@ "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true }, "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" }, "js-levenshtein": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz", - "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==", - "dev": true + "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==" }, "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "js-yaml": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "js2xmlparser": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-4.0.0.tgz", - "integrity": "sha512-WuNgdZOXVmBk5kUPMcTcVUpbGRzLfNkv7+7APq7WiDihpXVKrgxo6wwRpRl9OQeEBgKCVk9mR7RbzrnNWC8oBw==", - "requires": { - "xmlcreate": "^2.0.0" - } - }, - "jsdoc": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/jsdoc/-/jsdoc-3.6.3.tgz", - "integrity": "sha512-Yf1ZKA3r9nvtMWHO1kEuMZTlHOF8uoQ0vyo5eH7SQy5YeIiHM+B0DgKnn+X6y6KDYZcF7G2SPkKF+JORCXWE/A==", - "requires": { - "@babel/parser": "^7.4.4", - "bluebird": "^3.5.4", - "catharsis": "^0.8.11", - "escape-string-regexp": "^2.0.0", - "js2xmlparser": "^4.0.0", - "klaw": "^3.0.0", - "markdown-it": "^8.4.2", - "markdown-it-anchor": "^5.0.2", - "marked": "^0.7.0", - "mkdirp": "^0.5.1", - "requizzle": "^0.2.3", - "strip-json-comments": "^3.0.1", - "taffydb": "2.6.2", - "underscore": "~1.9.1" - }, - "dependencies": { - "@babel/parser": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.5.5.tgz", - "integrity": "sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g==" - }, - "bluebird": { - "version": "3.5.5", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz", - "integrity": "sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==" - }, - "escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" - }, - "markdown-it": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-8.4.2.tgz", - "integrity": "sha512-GcRz3AWTqSUphY3vsUqQSFMbgR38a4Lh3GWlHRh/7MRwz8mcu9n2IO7HOh+bXHrR9kOPDl5RNCaEsrneb+xhHQ==", - "requires": { - "argparse": "^1.0.7", - "entities": "~1.1.1", - "linkify-it": "^2.0.0", - "mdurl": "^1.0.1", - "uc.micro": "^1.0.5" - } - }, - "marked": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/marked/-/marked-0.7.0.tgz", - "integrity": "sha512-c+yYdCZJQrsRjTPhUx7VKkApw9bwDkNbHUKo1ovgcfDjb2kc8rLuRbIFyXL5WOEUwzSSKo3IXpph2K6DqB/KZg==" - } - } - }, - "jsdoc-api": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/jsdoc-api/-/jsdoc-api-5.0.2.tgz", - "integrity": "sha512-nC5uvd907gbqTRinrHeX5EBNw2Yc/0/7qONbRu5R5wrq/1OaRHtqDWGLDu+6BFI6RyuEgp87IH/IdOz4CdN6RA==", - "requires": { - "array-back": "^3.1.0", - "cache-point": "^0.4.1", - "collect-all": "^1.0.3", - "file-set": "^2.0.1", - "fs-then-native": "^2.0.0", - "jsdoc": "^3.6.2", - "object-to-spawn-args": "^1.1.1", - "temp-path": "^1.0.0", - "walk-back": "^3.0.1" - } - }, - "jsdoc-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/jsdoc-parse/-/jsdoc-parse-3.0.1.tgz", - "integrity": "sha512-btZLp4wYl90vcAfgk4hoGQbO17iBVrhh3LJRMKZNtZgniO3F8H2CjxXld0owBIB1XxN+j3bAcWZnZKMnSj3iMA==", - "requires": { - "array-back": "^2.0.0", - "lodash.omit": "^4.5.0", - "lodash.pick": "^4.4.0", - "reduce-extract": "^1.0.0", - "sort-array": "^2.0.0", - "test-value": "^3.0.0" - }, - "dependencies": { - "array-back": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-2.0.0.tgz", - "integrity": "sha512-eJv4pLLufP3g5kcZry0j6WXpIbzYw9GUB4mVJZno9wfwiBxbizTnHCw3VJb07cBihbFX48Y7oSrW9y+gt4glyw==", - "requires": { - "typical": "^2.6.1" - } - } - } - }, - "jsdoc-to-markdown": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/jsdoc-to-markdown/-/jsdoc-to-markdown-5.0.0.tgz", - "integrity": "sha512-3gKEnbay7dSdyvtMDDkUf4r7pmBVgs3aqeT0Cg/ngTILPpJUzf8iKgASIo5psF007L45OIJtIuRX5VL/YUXKaA==", - "requires": { - "array-back": "^3.1.0", - "command-line-tool": "^0.8.0", - "config-master": "^3.1.0", - "dmd": "^4.0.0", - "jsdoc-api": "^5.0.1", - "jsdoc-parse": "^3.0.1", - "walk-back": "^3.0.1" - } + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" }, "json-parse-better-errors": { "version": "1.0.2", @@ -5387,19 +4524,10 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, "requires": { "is-buffer": "^1.1.5" } }, - "klaw": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/klaw/-/klaw-3.0.0.tgz", - "integrity": "sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==", - "requires": { - "graceful-fs": "^4.1.9" - } - }, "lcid": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", @@ -5438,6 +4566,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, "requires": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" @@ -5448,26 +4577,6 @@ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.14.tgz", "integrity": "sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw==" }, - "lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" - }, - "lodash.omit": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz", - "integrity": "sha1-brGa5aHuHdnfC5aeZs4Lf6MLXmA=" - }, - "lodash.padend": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.padend/-/lodash.padend-4.6.1.tgz", - "integrity": "sha1-U8y6BH0G4VjTEfRdpiX05J5vFm4=" - }, - "lodash.pick": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", - "integrity": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=" - }, "log4js": { "version": "4.5.1", "resolved": "https://registry.npmjs.org/log4js/-/log4js-4.5.1.tgz", @@ -5498,16 +4607,10 @@ } } }, - "longest-streak": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.3.tgz", - "integrity": "sha512-9lz5IVdpwsKLMzQi0MQ+oD9EA0mIGcWYP7jXMTZVXP8D42PwuAk+M/HBFYQoxt1G5OR8m7aSIgb1UymfWGBWEw==" - }, "loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dev": true, "requires": { "js-tokens": "^3.0.0 || ^4.0.0" } @@ -5549,23 +4652,16 @@ "map-cache": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", - "dev": true + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" }, "map-visit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", - "dev": true, "requires": { "object-visit": "^1.0.0" } }, - "markdown-escapes": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.3.tgz", - "integrity": "sha512-XUi5HJhhV5R74k8/0H2oCbCiYf/u4cO/rX8tnGkRvrqhsr5BRNU6Mg0yt/8UIx1iIS8220BNJsDb7XnILhLepw==" - }, "markdown-it": { "version": "10.0.0", "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-10.0.0.tgz", @@ -5585,43 +4681,11 @@ } } }, - "markdown-it-anchor": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-5.2.4.tgz", - "integrity": "sha512-n8zCGjxA3T+Mx1pG8HEgbJbkB8JFUuRkeTZQuIM8iPY6oQ8sWOPRZJDFC9a/pNg2QkHEjjGkhBEl/RSyzaDZ3A==" - }, "markdown-it-link-target": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/markdown-it-link-target/-/markdown-it-link-target-1.0.2.tgz", "integrity": "sha1-0v1FV181FI6cXiNet4ertvlGCmc=" }, - "markdown-table": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-1.1.3.tgz", - "integrity": "sha512-1RUZVgQlpJSPWYbFSpmudq5nHY1doEIv89gBtF0s4gW1GF2XorxcA/70M5vq7rLv0a6mhOUccRsqkwhwLCIQ2Q==" - }, - "markdown-to-ast": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/markdown-to-ast/-/markdown-to-ast-6.0.3.tgz", - "integrity": "sha512-P4YX5PTcFY0Bg5oWGRJ4o9Wq7TGqapO71zBKIjhnrqeEFzKk7srHtIYgaQAA8eofi/4EucDF3O3dJ/BUIi3FTA==", - "requires": { - "@textlint/ast-node-types": "^4.0.0", - "debug": "^2.1.3", - "remark": "^7.0.1", - "structured-source": "^3.0.2", - "traverse": "^0.6.6" - } - }, - "marked": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/marked/-/marked-0.6.3.tgz", - "integrity": "sha512-Fqa7eq+UaxfMriqzYLayfqAE40WN03jf+zHjT18/uXNuzjq3TY0XTbrAoPeqSJrAmPz11VuUA+kBPYOhHt9oOQ==" - }, - "md-node-inject": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/md-node-inject/-/md-node-inject-0.1.1.tgz", - "integrity": "sha512-qv/U3hLodaxrKysm1PS52PEflrlHH0m+HUsDZi/n1RTeCM887khXkViIrNB8lhU6GesnnV1XFrCiuSlprMRa9g==" - }, "md5": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz", @@ -5643,19 +4707,6 @@ "safe-buffer": "^5.1.2" } }, - "mdast-util-compact": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/mdast-util-compact/-/mdast-util-compact-1.0.3.tgz", - "integrity": "sha512-nRiU5GpNy62rZppDKbLwhhtw5DXoFMqw9UNZFmlPsNaQCZ//WLjGKUwWMdJrUH+Se7UvtO2gXtAMe0g/N+eI5w==", - "requires": { - "unist-util-visit": "^1.1.0" - } - }, - "mdast-util-to-string": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.0.6.tgz", - "integrity": "sha512-868pp48gUPmZIhfKrLbaDneuzGiw3OTDjHc5M1kAepR2CWBJ+HpEsm252K4aXdiP5coVZaJPOqGtVU6Po8xnXg==" - }, "mdurl": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", @@ -5709,7 +4760,6 @@ "version": "3.1.10", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, "requires": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -5729,8 +4779,7 @@ "kind-of": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" } } }, @@ -5830,7 +4879,6 @@ "version": "1.3.2", "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "dev": true, "requires": { "for-in": "^1.0.2", "is-extendable": "^1.0.1" @@ -5840,7 +4888,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, "requires": { "is-plain-object": "^2.0.4" } @@ -5855,11 +4902,6 @@ "minimist": "0.0.8" } }, - "mkdirp2": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp2/-/mkdirp2-1.0.4.tgz", - "integrity": "sha512-Q2PKB4ZR4UPtjLl76JfzlgSCUZhSV1AXQgAZa1qt5RiaALFjP/CDrGvFBrOz7Ck6McPcwMAxTsJvWOUjOU8XMw==" - }, "move-concurrently": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", @@ -5883,14 +4925,12 @@ "version": "2.14.0", "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==", - "dev": true, "optional": true }, "nanomatch": { "version": "1.2.9", "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.9.tgz", "integrity": "sha512-n8R9bS8yQ6eSXaV6jHUpKzD8gLsin02w1HSFiegwrs9E098Ylhw5jdyKPaYqvHknHaSCKTPp7C8dGCQ0q9koXA==", - "dev": true, "requires": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -5909,20 +4949,17 @@ "arr-diff": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" }, "array-unique": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" }, "kind-of": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" } } }, @@ -5935,7 +4972,8 @@ "neo-async": { "version": "2.6.1", "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz", - "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==" + "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==", + "dev": true }, "nextcloud-axios": { "version": "0.2.1", @@ -5964,58 +5002,15 @@ } }, "nextcloud-vue-collections": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/nextcloud-vue-collections/-/nextcloud-vue-collections-0.5.6.tgz", - "integrity": "sha512-H26YBZ+YdHD0z0HwyV9iB5mi4+9dMdFKIH0J0vVa++bSkRJuXaTIYPeMYSLHT59DoqWNroFUWWVrGY8NfKD9mA==", + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/nextcloud-vue-collections/-/nextcloud-vue-collections-0.6.0.tgz", + "integrity": "sha512-P91zLvjFtYikfS2Nz5FNgGpZAzdDACzlHhaG8yjPTFxZI9nv0a8tzHTMYdDzUc3cgxriJ5N4ENBtrWKWWnrR5g==", "requires": { + "@nextcloud/axios": "^0.4.2", + "@nextcloud/router": "^0.1.0", "lodash": "^4.17.11", - "nextcloud-axios": "^0.2.0", - "nextcloud-vue": "^0.11.4", - "v-tooltip": "^3.0.0-alpha.7", - "vue": "^2.6.6", - "vue-click-outside": "^1.0.7", - "vuex": "^3.1.0" - }, - "dependencies": { - "nextcloud-vue": { - "version": "0.11.5", - "resolved": "https://registry.npmjs.org/nextcloud-vue/-/nextcloud-vue-0.11.5.tgz", - "integrity": "sha512-pcwnOhEjTDNvo+GcG8neeaVVhbKe114y3m83fs+w/9wRxbUrR1XFQDwgvXbCGEpqkYN/0JilDHloOAgEhoQuhw==", - "requires": { - "@babel/polyfill": "^7.4.4", - "hammerjs": "^2.0.8", - "md5": "^2.2.1", - "nextcloud-axios": "^0.2.0", - "v-tooltip": "^2.0.0-rc.33", - "vue": "^2.6.7", - "vue-click-outside": "^1.0.7", - "vue-multiselect": "^2.1.3", - "vue-visible": "^1.0.2", - "vue2-datepicker": "^2.10.0", - "vuepress-jsdoc": "^1.7.3" - }, - "dependencies": { - "v-tooltip": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/v-tooltip/-/v-tooltip-2.0.2.tgz", - "integrity": "sha512-xQ+qzOFfywkLdjHknRPgMMupQNS8yJtf9Utd5Dxiu/0n4HtrxqsgDtN2MLZ0LKbburtSAQgyypuE/snM8bBZhw==", - "requires": { - "lodash": "^4.17.11", - "popper.js": "^1.15.0", - "vue-resize": "^0.4.5" - } - } - } - }, - "v-tooltip": { - "version": "3.0.0-alpha.11", - "resolved": "https://registry.npmjs.org/v-tooltip/-/v-tooltip-3.0.0-alpha.11.tgz", - "integrity": "sha512-n95vxc1fBZrCkmkJTuH/O0if+8r7r+dFfZpOYCysYT+bIJiK4gxMiEo8olTMoIM1uxikiOGN+CMURcW764m6Xw==", - "requires": { - "popper.js": "^1.15.0", - "vue-resize": "^0.4.5" - } - } + "nextcloud-vue": "^0.12.1", + "vue": "^2.6.6" } }, "ng-infinite-scroll": { @@ -6031,7 +5026,8 @@ "nice-try": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true }, "node-libs-browser": { "version": "2.2.1", @@ -6068,7 +5064,6 @@ "version": "1.1.35", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.35.tgz", "integrity": "sha512-JGcM/wndCN/2elJlU0IGdVEJQQnJwsLbgPCFd2pY7V0mxf17bZ0Gb/lgOtL29ZQhvEX5shnVhxQyZz3ex94N8w==", - "dev": true, "requires": { "semver": "^6.3.0" }, @@ -6076,16 +5071,14 @@ "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" } } }, "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" }, "normalize-url": { "version": "1.9.1", @@ -6108,18 +5101,11 @@ "path-key": "^2.0.0" } }, - "nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", - "requires": { - "boolbase": "~1.0.0" - } - }, "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true }, "object-component": { "version": "0.0.3", @@ -6131,7 +5117,6 @@ "version": "0.1.0", "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", - "dev": true, "requires": { "copy-descriptor": "^0.1.0", "define-property": "^0.2.5", @@ -6142,34 +5127,21 @@ "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, "requires": { "is-descriptor": "^0.1.0" } } } }, - "object-get": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/object-get/-/object-get-2.1.0.tgz", - "integrity": "sha1-ciu9tgA576R8rTxtws5RqFwCxa4=" - }, "object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true - }, - "object-to-spawn-args": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-to-spawn-args/-/object-to-spawn-args-1.1.1.tgz", - "integrity": "sha1-d9qIJ/Bz0BHJ4bFz+JV4FHAkZ4U=" + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" }, "object-visit": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", - "dev": true, "requires": { "isobject": "^3.0.0" }, @@ -6177,8 +5149,7 @@ "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" } } }, @@ -6186,7 +5157,6 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", - "dev": true, "requires": { "define-properties": "^1.1.2", "function-bind": "^1.1.1", @@ -6198,7 +5168,6 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", - "dev": true, "requires": { "isobject": "^3.0.1" }, @@ -6206,8 +5175,7 @@ "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" } } }, @@ -6232,6 +5200,7 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", + "dev": true, "requires": { "minimist": "~0.0.1", "wordwrap": "~0.0.2" @@ -6260,6 +5229,16 @@ "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", "dev": true }, + "output-file-sync": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/output-file-sync/-/output-file-sync-2.0.1.tgz", + "integrity": "sha512-mDho4qm7WgIXIGf4eYU1RHN2UU5tPfVYVSRwDJw0uTmj35DQUt/eNp19N7v6T3SrR0ESTEf2up2CGO73qI35zQ==", + "requires": { + "graceful-fs": "^4.1.11", + "is-plain-obj": "^1.1.0", + "mkdirp": "^0.5.1" + } + }, "p-defer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", @@ -6282,6 +5261,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.1.0.tgz", "integrity": "sha512-NhURkNcrVB+8hNfLuysU8enY5xn2KXphsHBaC2YmRNTZRc7RWusw6apSpdEj3jo4CMb6W9nrF6tTnsJsJeyu6g==", + "dev": true, "requires": { "p-try": "^2.0.0" } @@ -6290,19 +5270,16 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, "requires": { "p-limit": "^2.0.0" } }, - "p-map": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" - }, "p-try": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz", - "integrity": "sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==" + "integrity": "sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==", + "dev": true }, "pako": { "version": "1.0.10", @@ -6335,33 +5312,12 @@ "safe-buffer": "^5.1.1" } }, - "parse-entities": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-1.2.2.tgz", - "integrity": "sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==", - "requires": { - "character-entities": "^1.0.0", - "character-entities-legacy": "^1.0.0", - "character-reference-invalid": "^1.0.0", - "is-alphanumerical": "^1.0.0", - "is-decimal": "^1.0.0", - "is-hexadecimal": "^1.0.0" - } - }, "parse-passwd": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", "dev": true }, - "parse5": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz", - "integrity": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==", - "requires": { - "@types/node": "*" - } - }, "parseqs": { "version": "0.0.5", "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz", @@ -6389,8 +5345,7 @@ "pascalcase": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", - "dev": true + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" }, "path-browserify": { "version": "0.0.1", @@ -6401,34 +5356,29 @@ "path-dirname": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", - "dev": true + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" }, "path-exists": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" }, - "path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" - }, "path-key": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true }, "path-parse": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", - "dev": true + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" }, "pbkdf2": { "version": "3.0.17", @@ -6446,7 +5396,8 @@ "picomatch": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.0.7.tgz", - "integrity": "sha512-oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA==" + "integrity": "sha512-oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA==", + "dev": true }, "pify": { "version": "3.0.0", @@ -6454,19 +5405,6 @@ "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", "dev": true }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "requires": { - "pinkie": "^2.0.0" - } - }, "pkg-dir": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", @@ -6484,8 +5422,7 @@ "posix-character-classes": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", - "dev": true + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" }, "postcss": { "version": "7.0.17", @@ -6613,8 +5550,7 @@ "private": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", - "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", - "dev": true + "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==" }, "process": { "version": "0.11.10", @@ -6625,8 +5561,7 @@ "process-nextick-args": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", - "dev": true + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" }, "promise-inflight": { "version": "1.0.1", @@ -6774,7 +5709,6 @@ "version": "2.3.6", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dev": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -6789,88 +5723,21 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "dev": true, "requires": { "graceful-fs": "^4.1.11", "micromatch": "^3.1.10", "readable-stream": "^2.0.2" } }, - "reduce-extract": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/reduce-extract/-/reduce-extract-1.0.0.tgz", - "integrity": "sha1-Z/I4W+2mUGG19fQxJmLosIDKFSU=", - "requires": { - "test-value": "^1.0.1" - }, - "dependencies": { - "array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs=", - "requires": { - "typical": "^2.6.0" - } - }, - "test-value": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/test-value/-/test-value-1.1.0.tgz", - "integrity": "sha1-oJE29y7AQ9J8iTcHwrFZv6196T8=", - "requires": { - "array-back": "^1.0.2", - "typical": "^2.4.2" - } - } - } - }, - "reduce-flatten": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-1.0.1.tgz", - "integrity": "sha1-JYx479FT3fk8tWEjf2EYTzaW4yc=" - }, - "reduce-unique": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/reduce-unique/-/reduce-unique-2.0.1.tgz", - "integrity": "sha512-x4jH/8L1eyZGR785WY+ePtyMNhycl1N2XOLxhCbzZFaqF4AXjLzqSxa2UHgJ2ZVR/HHyPOvl1L7xRnW8ye5MdA==" - }, - "reduce-without": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/reduce-without/-/reduce-without-1.0.1.tgz", - "integrity": "sha1-aK0OrRGFXJo31OglbBW7+Hly/Iw=", - "requires": { - "test-value": "^2.0.0" - }, - "dependencies": { - "array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs=", - "requires": { - "typical": "^2.6.0" - } - }, - "test-value": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/test-value/-/test-value-2.1.0.tgz", - "integrity": "sha1-Edpv9nDzRxpztiXKTz/c97t0gpE=", - "requires": { - "array-back": "^1.0.3", - "typical": "^2.6.0" - } - } - } - }, "regenerate": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz", - "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==", - "dev": true + "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==" }, "regenerate-unicode-properties": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz", "integrity": "sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA==", - "dev": true, "requires": { "regenerate": "^1.4.0" } @@ -6884,7 +5751,6 @@ "version": "0.14.1", "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.1.tgz", "integrity": "sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ==", - "dev": true, "requires": { "private": "^0.1.6" } @@ -6893,7 +5759,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "dev": true, "requires": { "extend-shallow": "^3.0.2", "safe-regex": "^1.1.0" @@ -6903,7 +5768,6 @@ "version": "4.6.0", "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.6.0.tgz", "integrity": "sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==", - "dev": true, "requires": { "regenerate": "^1.4.0", "regenerate-unicode-properties": "^8.1.0", @@ -6916,14 +5780,12 @@ "regjsgen": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.0.tgz", - "integrity": "sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA==", - "dev": true + "integrity": "sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA==" }, "regjsparser": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz", "integrity": "sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ==", - "dev": true, "requires": { "jsesc": "~0.5.0" }, @@ -6931,96 +5793,36 @@ "jsesc": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", - "dev": true + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" } } }, - "remark": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/remark/-/remark-7.0.1.tgz", - "integrity": "sha1-pd5NrPq/D2CkmCbvJMR5gH+QS/s=", - "requires": { - "remark-parse": "^3.0.0", - "remark-stringify": "^3.0.0", - "unified": "^6.0.0" - } - }, - "remark-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-3.0.1.tgz", - "integrity": "sha1-G5+EGkTY9PvyJGhQJlRZpOs1TIA=", - "requires": { - "collapse-white-space": "^1.0.2", - "has": "^1.0.1", - "is-alphabetical": "^1.0.0", - "is-decimal": "^1.0.0", - "is-whitespace-character": "^1.0.0", - "is-word-character": "^1.0.0", - "markdown-escapes": "^1.0.0", - "parse-entities": "^1.0.2", - "repeat-string": "^1.5.4", - "state-toggle": "^1.0.0", - "trim": "0.0.1", - "trim-trailing-lines": "^1.0.0", - "unherit": "^1.0.4", - "unist-util-remove-position": "^1.0.0", - "vfile-location": "^2.0.0", - "xtend": "^4.0.1" - } - }, - "remark-stringify": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-3.0.1.tgz", - "integrity": "sha1-eSQr6+CnUggbWAlRb6DAbt7Aac8=", - "requires": { - "ccount": "^1.0.0", - "is-alphanumeric": "^1.0.0", - "is-decimal": "^1.0.0", - "is-whitespace-character": "^1.0.0", - "longest-streak": "^2.0.1", - "markdown-escapes": "^1.0.0", - "markdown-table": "^1.1.0", - "mdast-util-compact": "^1.0.0", - "parse-entities": "^1.0.2", - "repeat-string": "^1.5.4", - "state-toggle": "^1.0.0", - "stringify-entities": "^1.0.1", - "unherit": "^1.0.4", - "xtend": "^4.0.1" - } - }, "remove-trailing-separator": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", - "dev": true + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" }, "repeat-element": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", - "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=", - "dev": true + "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=" }, "repeat-string": { "version": "1.6.1", "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" }, - "replace-ext": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", - "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=" - }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true }, "require-main-filename": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true }, "requires-port": { "version": "1.0.0", @@ -7028,19 +5830,10 @@ "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", "dev": true }, - "requizzle": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/requizzle/-/requizzle-0.2.3.tgz", - "integrity": "sha512-YanoyJjykPxGHii0fZP0uUPEXpvqfBDxWV7s6GKAiiOsiqhX6vHNyW3Qzdmqp/iq/ExbhaGbVrjB4ruEVSM4GQ==", - "requires": { - "lodash": "^4.17.14" - } - }, "resolve": { "version": "1.12.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.12.0.tgz", "integrity": "sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==", - "dev": true, "requires": { "path-parse": "^1.0.6" } @@ -7086,14 +5879,12 @@ "resolve-url": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", - "dev": true + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" }, "ret": { "version": "0.1.15", "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "dev": true + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" }, "rfdc": { "version": "1.1.4", @@ -7138,7 +5929,6 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", - "dev": true, "requires": { "ret": "~0.1.10" } @@ -7174,13 +5964,13 @@ "set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true }, "set-value": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "dev": true, "requires": { "extend-shallow": "^2.0.1", "is-extendable": "^0.1.1", @@ -7192,7 +5982,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, "requires": { "is-extendable": "^0.1.0" } @@ -7225,6 +6014,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, "requires": { "shebang-regex": "^1.0.0" } @@ -7232,7 +6022,8 @@ "shebang-regex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true }, "signal-exit": { "version": "3.0.2", @@ -7240,11 +6031,15 @@ "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", "dev": true }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==" + }, "snapdragon": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "dev": true, "requires": { "base": "^0.11.1", "debug": "^2.2.0", @@ -7260,7 +6055,6 @@ "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, "requires": { "is-descriptor": "^0.1.0" } @@ -7269,7 +6063,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, "requires": { "is-extendable": "^0.1.0" } @@ -7280,7 +6073,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "dev": true, "requires": { "define-property": "^1.0.0", "isobject": "^3.0.0", @@ -7291,7 +6083,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, "requires": { "is-descriptor": "^1.0.0" } @@ -7300,7 +6091,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -7309,7 +6099,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -7318,7 +6107,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, "requires": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", @@ -7328,14 +6116,12 @@ "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" }, "kind-of": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" } } }, @@ -7343,7 +6129,6 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "dev": true, "requires": { "kind-of": "^3.2.0" } @@ -7440,26 +6225,6 @@ } } }, - "sort-array": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/sort-array/-/sort-array-2.0.0.tgz", - "integrity": "sha1-OKnG2if9fRR7QuYFVPKBGHtN9HI=", - "requires": { - "array-back": "^1.0.4", - "object-get": "^2.1.0", - "typical": "^2.6.0" - }, - "dependencies": { - "array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs=", - "requires": { - "typical": "^2.6.0" - } - } - } - }, "sort-keys": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", @@ -7478,14 +6243,12 @@ "source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" }, "source-map-resolve": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", - "dev": true, "requires": { "atob": "^2.1.1", "decode-uri-component": "^0.2.0", @@ -7515,14 +6278,12 @@ "source-map-url": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", - "dev": true + "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" }, "split-string": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "dev": true, "requires": { "extend-shallow": "^3.0.0" } @@ -7541,16 +6302,10 @@ "figgy-pudding": "^3.5.1" } }, - "state-toggle": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.2.tgz", - "integrity": "sha512-8LpelPGR0qQM4PnfLiplOQNJcIN1/r2Gy0xKB2zKnIW2YzPMt2sR4I/+gtPjhN7Svh9kw+zqEg2SFwpBO9iNiw==" - }, "static-extend": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", - "dev": true, "requires": { "define-property": "^0.2.5", "object-copy": "^0.1.0" @@ -7560,7 +6315,6 @@ "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, "requires": { "is-descriptor": "^0.1.0" } @@ -7583,24 +6337,6 @@ "readable-stream": "^2.0.2" } }, - "stream-connect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/stream-connect/-/stream-connect-1.0.2.tgz", - "integrity": "sha1-GLyB8u2zW4tdmoAJIAqYUxRCipc=", - "requires": { - "array-back": "^1.0.2" - }, - "dependencies": { - "array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs=", - "requires": { - "typical": "^2.6.0" - } - } - } - }, "stream-each": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", @@ -7630,11 +6366,6 @@ "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", "dev": true }, - "stream-via": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/stream-via/-/stream-via-1.0.4.tgz", - "integrity": "sha512-DBp0lSvX5G9KGRDTkR/R+a29H+Wk2xItOF+MpZLLNDWbEV9tGPnqLPxHEYjmiz8xGtJHRIqmI+hCjmNzqoA4nQ==" - }, "streamroller": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-1.0.6.tgz", @@ -7675,6 +6406,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, "requires": { "emoji-regex": "^7.0.1", "is-fullwidth-code-point": "^2.0.0", @@ -7689,21 +6421,11 @@ "safe-buffer": "~5.1.0" } }, - "stringify-entities": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-1.3.2.tgz", - "integrity": "sha512-nrBAQClJAPN2p+uGCVJRPIPakKeKWZ9GtBCmormE7pWOSlHat7+x5A8gx85M7HM5Dt0BP3pP5RhVW77WdbJJ3A==", - "requires": { - "character-entities-html4": "^1.0.0", - "character-entities-legacy": "^1.0.0", - "is-alphanumerical": "^1.0.0", - "is-hexadecimal": "^1.0.0" - } - }, "strip-ansi": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, "requires": { "ansi-regex": "^4.1.0" } @@ -7714,19 +6436,6 @@ "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", "dev": true }, - "strip-json-comments": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.0.1.tgz", - "integrity": "sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw==" - }, - "structured-source": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/structured-source/-/structured-source-3.0.2.tgz", - "integrity": "sha1-3YAkJeD1PcSm56yjdSkBoczaevU=", - "requires": { - "boundary": "^1.0.1" - } - }, "style-loader": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.0.0.tgz", @@ -7790,44 +6499,12 @@ "has-flag": "^3.0.0" } }, - "table-layout": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-0.4.5.tgz", - "integrity": "sha512-zTvf0mcggrGeTe/2jJ6ECkJHAQPIYEwDoqsiqBjI24mvRmQbInK5jq33fyypaCBxX08hMkfmdOqj6haT33EqWw==", - "requires": { - "array-back": "^2.0.0", - "deep-extend": "~0.6.0", - "lodash.padend": "^4.6.1", - "typical": "^2.6.1", - "wordwrapjs": "^3.0.0" - }, - "dependencies": { - "array-back": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-2.0.0.tgz", - "integrity": "sha512-eJv4pLLufP3g5kcZry0j6WXpIbzYw9GUB4mVJZno9wfwiBxbizTnHCw3VJb07cBihbFX48Y7oSrW9y+gt4glyw==", - "requires": { - "typical": "^2.6.1" - } - } - } - }, - "taffydb": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/taffydb/-/taffydb-2.6.2.tgz", - "integrity": "sha1-fLy2S1oUG2ou/CxdLGe04VCyomg=" - }, "tapable": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.0.0.tgz", "integrity": "sha512-dQRhbNQkRnaqauC7WqSJ21EEksgT0fYZX2lqXzGkpo8JNig9zGZTYoMGvyI2nWmXlE2VSVXVDu7wLVGu/mQEsg==", "dev": true }, - "temp-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/temp-path/-/temp-path-1.0.0.tgz", - "integrity": "sha1-JLFUOXOrRCiW2a02fdnL2/r+kYs=" - }, "terser": { "version": "4.3.9", "resolved": "https://registry.npmjs.org/terser/-/terser-4.3.9.tgz", @@ -7915,25 +6592,6 @@ } } }, - "test-value": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/test-value/-/test-value-3.0.0.tgz", - "integrity": "sha512-sVACdAWcZkSU9x7AOmJo5TqE+GyNJknHaHsMrR6ZnhjVlVN9Yx6FjHrsKZ3BjIpPCT68zYesPWkakrNupwfOTQ==", - "requires": { - "array-back": "^2.0.0", - "typical": "^2.6.1" - }, - "dependencies": { - "array-back": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-2.0.0.tgz", - "integrity": "sha512-eJv4pLLufP3g5kcZry0j6WXpIbzYw9GUB4mVJZno9wfwiBxbizTnHCw3VJb07cBihbFX48Y7oSrW9y+gt4glyw==", - "requires": { - "typical": "^2.6.1" - } - } - } - }, "through2": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", @@ -7977,14 +6635,12 @@ "to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", - "dev": true + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" }, "to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", - "dev": true, "requires": { "kind-of": "^3.0.2" } @@ -7993,7 +6649,6 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "dev": true, "requires": { "define-property": "^2.0.2", "extend-shallow": "^3.0.2", @@ -8005,7 +6660,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "dev": true, "requires": { "is-number": "^3.0.0", "repeat-string": "^1.6.1" @@ -8015,7 +6669,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, "requires": { "kind-of": "^3.0.2" } @@ -8028,26 +6681,6 @@ "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", "dev": true }, - "traverse": { - "version": "0.6.6", - "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz", - "integrity": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=" - }, - "trim": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", - "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=" - }, - "trim-trailing-lines": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.2.tgz", - "integrity": "sha512-MUjYItdrqqj2zpcHFTkMa9WAv4JHTI6gnRQGPFLrt5L9a6tRMiDnIqYl8JBvu2d2Tc3lWJKQwlGCp0K8AvCM+Q==" - }, - "trough": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.4.tgz", - "integrity": "sha512-tdzBRDGWcI1OpPVmChbdSKhvSVurznZ8X36AYURAcl+0o2ldlCY2XPzyXNNxwJwwyIU+rIglTCG4kxtNKBQH7Q==" - }, "tslib": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", @@ -8076,34 +6709,11 @@ "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", "dev": true }, - "typical": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/typical/-/typical-2.6.1.tgz", - "integrity": "sha1-XAgOXWYcu+OCWdLnCjxyU+hziB0=" - }, "uc.micro": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==" }, - "uglify-js": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.6.0.tgz", - "integrity": "sha512-W+jrUHJr3DXKhrsS7NUVxn3zqMOFn0hL/Ei6v0anCIMoKC93TjcflTagwIHLW7SfMFfiQuktQyFVCFHGUE0+yg==", - "optional": true, - "requires": { - "commander": "~2.20.0", - "source-map": "~0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "optional": true - } - } - }, "uglifyjs-webpack-plugin": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.2.0.tgz", @@ -8266,31 +6876,15 @@ "integrity": "sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==", "dev": true }, - "underscore": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz", - "integrity": "sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg==" - }, - "unherit": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.2.tgz", - "integrity": "sha512-W3tMnpaMG7ZY6xe/moK04U9fBhi6wEiCYHUW5Mop/wQHf12+79EQGwxYejNdhEz2mkqkBlGwm7pxmgBKMVUj0w==", - "requires": { - "inherits": "^2.0.1", - "xtend": "^4.0.1" - } - }, "unicode-canonical-property-names-ecmascript": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", - "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==", - "dev": true + "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==" }, "unicode-match-property-ecmascript": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", - "dev": true, "requires": { "unicode-canonical-property-names-ecmascript": "^1.0.4", "unicode-property-aliases-ecmascript": "^1.0.4" @@ -8299,33 +6893,17 @@ "unicode-match-property-value-ecmascript": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz", - "integrity": "sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g==", - "dev": true + "integrity": "sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g==" }, "unicode-property-aliases-ecmascript": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz", - "integrity": "sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw==", - "dev": true - }, - "unified": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/unified/-/unified-6.2.0.tgz", - "integrity": "sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==", - "requires": { - "bail": "^1.0.0", - "extend": "^3.0.0", - "is-plain-obj": "^1.1.0", - "trough": "^1.0.0", - "vfile": "^2.0.0", - "x-is-string": "^0.1.0" - } + "integrity": "sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw==" }, "union-value": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "dev": true, "requires": { "arr-union": "^3.1.0", "get-value": "^2.0.6", @@ -8357,40 +6935,6 @@ "imurmurhash": "^0.1.4" } }, - "unist-util-is": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz", - "integrity": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==" - }, - "unist-util-remove-position": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.3.tgz", - "integrity": "sha512-CtszTlOjP2sBGYc2zcKA/CvNdTdEs3ozbiJ63IPBxh8iZg42SCCb8m04f8z2+V1aSk5a7BxbZKEdoDjadmBkWA==", - "requires": { - "unist-util-visit": "^1.1.0" - } - }, - "unist-util-stringify-position": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz", - "integrity": "sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==" - }, - "unist-util-visit": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz", - "integrity": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==", - "requires": { - "unist-util-visit-parents": "^2.0.0" - } - }, - "unist-util-visit-parents": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz", - "integrity": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==", - "requires": { - "unist-util-is": "^3.0.0" - } - }, "universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", @@ -8407,7 +6951,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", - "dev": true, "requires": { "has-value": "^0.3.1", "isobject": "^3.0.0" @@ -8417,7 +6960,6 @@ "version": "0.3.1", "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "dev": true, "requires": { "get-value": "^2.0.3", "has-values": "^0.1.4", @@ -8428,7 +6970,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dev": true, "requires": { "isarray": "1.0.0" } @@ -8438,22 +6979,19 @@ "has-values": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", - "dev": true + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" }, "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" } } }, "upath": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "dev": true + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" }, "uri-js": { "version": "4.2.2", @@ -8475,8 +7013,7 @@ "urix": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", - "dev": true + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" }, "url": { "version": "0.11.0", @@ -8555,7 +7092,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/use/-/use-3.1.0.tgz", "integrity": "sha512-6UJEQM/L+mzC3ZJNM56Q4DFGLX/evKGRg15UJHGB9X5j5Z3AFbgZvjUh2yq/UJUY4U5dh7Fal++XbNg1uzpRAw==", - "dev": true, "requires": { "kind-of": "^6.0.2" }, @@ -8563,8 +7099,7 @@ "kind-of": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" } } }, @@ -8614,30 +7149,6 @@ "integrity": "sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w==", "dev": true }, - "vfile": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-2.3.0.tgz", - "integrity": "sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==", - "requires": { - "is-buffer": "^1.1.4", - "replace-ext": "1.0.0", - "unist-util-stringify-position": "^1.0.0", - "vfile-message": "^1.0.0" - } - }, - "vfile-location": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.5.tgz", - "integrity": "sha512-Pa1ey0OzYBkLPxPZI3d9E+S4BmvfVwNAAXrrqGbwTVXWaX2p9kM1zZ+n35UtVM06shmWKH4RPRN8KI80qE3wNQ==" - }, - "vfile-message": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-1.1.1.tgz", - "integrity": "sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==", - "requires": { - "unist-util-stringify-position": "^1.1.1" - } - }, "vm-browserify": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.0.tgz", @@ -8728,118 +7239,11 @@ "fecha": "^2.3.3" } }, - "vuepress-jsdoc": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/vuepress-jsdoc/-/vuepress-jsdoc-1.7.4.tgz", - "integrity": "sha512-6VDoBWADiyeZOBMX8aZibL7LAbm/Xjd/x2YV09UW2Y6bxPz+BbIJGV3A50xkDxVAPFXrV1MqMw6P4H5iF/F4Hw==", - "requires": { - "@vuedoc/md": "^1.6.0", - "bluebird": "^3.5.5", - "chalk": "^2.4.2", - "cross-env": "^5.2.0", - "del": "^4.1.1", - "front-matter": "^3.0.2", - "fs.promised": "^3.0.0", - "jsdoc-to-markdown": "^5.0.0", - "micromatch": "^4.0.2", - "mkdirp": "^0.5.1", - "rimraf": "^2.6.3", - "yargs": "^13.3.0" - }, - "dependencies": { - "bluebird": { - "version": "3.5.5", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz", - "integrity": "sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==" - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "requires": { - "fill-range": "^7.0.1" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - }, - "micromatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", - "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", - "requires": { - "braces": "^3.0.1", - "picomatch": "^2.0.5" - } - }, - "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "requires": { - "glob": "^7.1.3" - } - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "requires": { - "is-number": "^7.0.0" - } - }, - "yargs": { - "version": "13.3.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.0.tgz", - "integrity": "sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA==", - "requires": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.1" - } - } - } - }, "vuex": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/vuex/-/vuex-3.1.1.tgz", "integrity": "sha512-ER5moSbLZuNSMBFnEBVGhQ1uCBNJslH9W/Dw2W7GZN23UQA69uapP5GTT9Vm8Trc0PzBSVt6LzF3hGjmv41xcg==" }, - "walk-back": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/walk-back/-/walk-back-3.0.1.tgz", - "integrity": "sha512-umiNB2qLO731Sxbp6cfZ9pwURJzTnftxE4Gc7hq8n/ehkuXC//s9F65IEIJA2ZytQZ1ZOsm/Fju4IWx0bivkUQ==" - }, "watchpack": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz", @@ -9048,6 +7452,7 @@ "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, "requires": { "isexe": "^2.0.0" } @@ -9055,21 +7460,14 @@ "which-module": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true }, "wordwrap": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", - "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=" - }, - "wordwrapjs": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-3.0.0.tgz", - "integrity": "sha512-mO8XtqyPvykVCsrwj5MlOVWvSnCdT+C+QVbm6blradR7JExAhbkZ7hZ9A+9NUtwzSqrlUo9a67ws0EiILrvRpw==", - "requires": { - "reduce-flatten": "^1.0.1", - "typical": "^2.6.1" - } + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "dev": true }, "worker-farm": { "version": "1.7.0", @@ -9084,6 +7482,7 @@ "version": "5.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, "requires": { "ansi-styles": "^3.2.0", "string-width": "^3.0.0", @@ -9106,16 +7505,6 @@ "ultron": "~1.1.0" } }, - "x-is-string": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz", - "integrity": "sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI=" - }, - "xmlcreate": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.1.tgz", - "integrity": "sha512-MjGsXhKG8YjTKrDCXseFo3ClbMGvUD4en29H2Cev1dv4P/chlpw6KdYmlCWDkhosBVKRDjM836+3e3pm1cBNJA==" - }, "xmlhttprequest-ssl": { "version": "1.5.5", "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz", @@ -9125,12 +7514,14 @@ "xtend": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true }, "y18n": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", - "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==" + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "dev": true }, "yallist": { "version": "2.1.2", @@ -9161,6 +7552,7 @@ "version": "13.1.1", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz", "integrity": "sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==", + "dev": true, "requires": { "camelcase": "^5.0.0", "decamelize": "^1.2.0" diff --git a/js/package.json b/js/package.json index d46f1dd3c..d63f9553f 100644 --- a/js/package.json +++ b/js/package.json @@ -18,7 +18,7 @@ "markdown-it-link-target": "^1.0.2", "nextcloud-axios": "^0.2.1", "nextcloud-vue": "^0.12.6", - "nextcloud-vue-collections": "^0.5.6", + "nextcloud-vue-collections": "^0.6.0", "ng-infinite-scroll": "^1.3.0", "ng-sortable": "^1.3.8", "ui-select": "^0.19.8", From c3329fd33c34dba7f51f76339cb62d6b648ed52f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 25 Oct 2019 02:24:37 +0000 Subject: [PATCH 47/77] [tx-robot] updated from transifex --- l10n/zh_TW.js | 16 ++++++++++++++++ l10n/zh_TW.json | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index d5725d54b..e735aff39 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -1,8 +1,24 @@ OC.L10N.register( "deck", { + "Posting the comment failed." : "儲存註解失敗", + "The comment has been deleted" : "註解已刪除", + "The associated stack is deleted as well, it will be restored as well." : "相關的項目已被刪除,他將被還原", + "Restore associated stack" : "還原相關項目", + "Remove user from card" : "將使用者從項目卡中移除", "Hours" : "小時", "Minutes" : "分鐘", + "Link to a board" : "連結到佈告欄", + "Maximum file size of {size} exceeded" : "達到最大的檔案大小 {size} ", + "File already exists" : "檔案已存在", + "You have created a new board {board}" : "您已建立新的佈告欄 {board}", + "{user} has created a new board {board}" : "{user} 已建立新的佈告欄  {board}", + "You have deleted the board {board}" : "您已刪除佈告欄 {board}", + "{user} has deleted the board {board}" : "{user} 已刪除佈告欄{board}", + "You have restored the board {board}" : "您已還原佈告欄{board}", + "{user} has restored the board {board}" : "{user}已還原佈告欄{board}", + "You have shared the board {board} with {acl}" : "您已和{acl}分享佈告欄{board}", + "{user} has shared the board {board} with {acl}" : "{user} 已和{acl}分享佈告欄{board}", "Finished" : "已完成", "Later" : "稍後", "Submit" : "送出", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 92596c7af..8d44598e9 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -1,6 +1,22 @@ { "translations": { + "Posting the comment failed." : "儲存註解失敗", + "The comment has been deleted" : "註解已刪除", + "The associated stack is deleted as well, it will be restored as well." : "相關的項目已被刪除,他將被還原", + "Restore associated stack" : "還原相關項目", + "Remove user from card" : "將使用者從項目卡中移除", "Hours" : "小時", "Minutes" : "分鐘", + "Link to a board" : "連結到佈告欄", + "Maximum file size of {size} exceeded" : "達到最大的檔案大小 {size} ", + "File already exists" : "檔案已存在", + "You have created a new board {board}" : "您已建立新的佈告欄 {board}", + "{user} has created a new board {board}" : "{user} 已建立新的佈告欄  {board}", + "You have deleted the board {board}" : "您已刪除佈告欄 {board}", + "{user} has deleted the board {board}" : "{user} 已刪除佈告欄{board}", + "You have restored the board {board}" : "您已還原佈告欄{board}", + "{user} has restored the board {board}" : "{user}已還原佈告欄{board}", + "You have shared the board {board} with {acl}" : "您已和{acl}分享佈告欄{board}", + "{user} has shared the board {board} with {acl}" : "{user} 已和{acl}分享佈告欄{board}", "Finished" : "已完成", "Later" : "稍後", "Submit" : "送出", From bbbfc925716a16a21395e02e4193c7e6f9024073 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 27 Oct 2019 02:13:53 +0000 Subject: [PATCH 48/77] Bump nextcloud-vue from 0.12.6 to 0.12.7 in /js Bumps [nextcloud-vue](https://github.com/nextcloud/nextcloud-vue) from 0.12.6 to 0.12.7. - [Release notes](https://github.com/nextcloud/nextcloud-vue/releases) - [Commits](https://github.com/nextcloud/nextcloud-vue/compare/v0.12.6...v0.12.7) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 30 +++++++++++++++--------------- js/package.json | 2 +- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 5e19d87f3..66b659fc4 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -4984,18 +4984,18 @@ } }, "nextcloud-vue": { - "version": "0.12.6", - "resolved": "https://registry.npmjs.org/nextcloud-vue/-/nextcloud-vue-0.12.6.tgz", - "integrity": "sha512-UxtxItuhRXNaV3EO7Yef9xMbJnYxApf1YZIg01ltEf73d8WnqIH1CO75RL/wBdNz1eNDgHgBOv7OcXBk9ZJf9Q==", + "version": "0.12.7", + "resolved": "https://registry.npmjs.org/nextcloud-vue/-/nextcloud-vue-0.12.7.tgz", + "integrity": "sha512-xupbgs/T7iUnZknvVE/pXXWJ9ksoIq00NVu0PG3z0fMFb1Z2Q/8CVVxiHALfdkMrTJFu3GuxPCoXOQv145l9tA==", "requires": { "@babel/polyfill": "^7.4.4", "escape-html": "^1.0.3", "hammerjs": "^2.0.8", "md5": "^2.2.1", "nextcloud-axios": "^0.2.0", + "v-click-outside": "^2.1.4", "v-tooltip": "^2.0.0-rc.33", "vue": "^2.6.7", - "vue-click-outside": "^1.0.7", "vue-multiselect": "^2.1.3", "vue-visible": "^1.0.2", "vue2-datepicker": "^2.10.0" @@ -5415,9 +5415,9 @@ } }, "popper.js": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.15.0.tgz", - "integrity": "sha512-w010cY1oCUmI+9KwwlWki+r5jxKfTFDVoadl7MSrIujHU5MJ5OR6HTDj6Xo8aoR/QsA56x8jKjA59qGH4ELtrA==" + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.0.tgz", + "integrity": "sha512-+G+EkOPoE5S/zChTpmBSSDYmhXJ5PsW8eMhH8cP/CQHMFPBG/kC9Y5IIw6qNYgdJ+/COf0ddY2li28iHaZRSjw==" }, "posix-character-classes": { "version": "0.1.1", @@ -7133,6 +7133,11 @@ "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", "dev": true }, + "v-click-outside": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/v-click-outside/-/v-click-outside-2.1.4.tgz", + "integrity": "sha512-NbQiwRjJjeKptI1qr1co2Ox44fUWEnj08chR1nw3DVrNCQHjb+sqlevzb1zCXMgb7orTFE0wpiecqMlbOZ15EQ==" + }, "v-tooltip": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/v-tooltip/-/v-tooltip-2.0.2.tgz", @@ -7166,11 +7171,6 @@ "resolved": "https://registry.npmjs.org/vue/-/vue-2.6.10.tgz", "integrity": "sha512-ImThpeNU9HbdZL3utgMCq0oiMzAkt1mcgy3/E6zWC/G6AaQoeuFdsl9nDhTDU3X1R6FK7nsIUuRACVcjI+A2GQ==" }, - "vue-click-outside": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/vue-click-outside/-/vue-click-outside-1.0.7.tgz", - "integrity": "sha1-zdKxYF48SUR4TheU6uShKg9wC9Y=" - }, "vue-hot-reload-api": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.3.tgz", @@ -7232,9 +7232,9 @@ "integrity": "sha512-yaX2its9XAJKGuQqf7LsiZHHSkxsIK8rmCOQOvEGEoF41blKRK8qr9my4qYoD6ikdLss4n8tKqYBecmaY0+WJg==" }, "vue2-datepicker": { - "version": "2.12.0", - "resolved": "https://registry.npmjs.org/vue2-datepicker/-/vue2-datepicker-2.12.0.tgz", - "integrity": "sha512-09PRIFm5hWrpfSBxWKJqm78yC0MTUZlq9MItLsWDe1OPgRqwWpex4fGkL7/nJG+d39v60wckQoVdk9RpLx8C9w==", + "version": "2.13.2", + "resolved": "https://registry.npmjs.org/vue2-datepicker/-/vue2-datepicker-2.13.2.tgz", + "integrity": "sha512-bgtCdSTpFJogL37A5n2HnNPkyKVi0WTiM2+H+fYTHVYbRpSyNaPQ1Kj86A6tx3T14cv6qq4Oo8MrCxXiarDx2w==", "requires": { "fecha": "^2.3.3" } diff --git a/js/package.json b/js/package.json index d63f9553f..537b3e4b8 100644 --- a/js/package.json +++ b/js/package.json @@ -17,7 +17,7 @@ "markdown-it": "^10.0.0", "markdown-it-link-target": "^1.0.2", "nextcloud-axios": "^0.2.1", - "nextcloud-vue": "^0.12.6", + "nextcloud-vue": "^0.12.7", "nextcloud-vue-collections": "^0.6.0", "ng-infinite-scroll": "^1.3.0", "ng-sortable": "^1.3.8", From 611231dbb44d06a50468374f3781d6710707e3f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaco=20L=C3=BCken?= Date: Fri, 1 Nov 2019 21:15:52 +0100 Subject: [PATCH 49/77] Fix reversed visibility of 'add stack' field (#1300) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jaco Lüken --- templates/part.board.headerControls.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/part.board.headerControls.php b/templates/part.board.headerControls.php index fa39c5855..32360bcf1 100644 --- a/templates/part.board.headerControls.php +++ b/templates/part.board.headerControls.php @@ -1,4 +1,4 @@ -
+
Date: Fri, 1 Nov 2019 21:23:21 +0100 Subject: [PATCH 50/77] Fix reversed permissions for reordering stacks (#1301) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jaco Lüken --- lib/Service/StackService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Service/StackService.php b/lib/Service/StackService.php index c8953ece1..29763bb9e 100644 --- a/lib/Service/StackService.php +++ b/lib/Service/StackService.php @@ -345,7 +345,7 @@ class StackService { throw new BadRequestException('order must be provided'); } - $this->permissionService->checkPermission($this->stackMapper, $id, Acl::PERMISSION_EDIT); + $this->permissionService->checkPermission($this->stackMapper, $id, Acl::PERMISSION_MANAGE); $stackToSort = $this->stackMapper->find($id); $stacks = $this->stackMapper->findAll($stackToSort->getBoardId()); $result = []; From dc0a79f0455551c07b2313546eae7d1c688d0f3e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 4 Nov 2019 02:24:23 +0000 Subject: [PATCH 51/77] [tx-robot] updated from transifex --- l10n/eo.js | 2 +- l10n/eo.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/eo.js b/l10n/eo.js index 9649f5ad3..d25e8581a 100644 --- a/l10n/eo.js +++ b/l10n/eo.js @@ -138,7 +138,7 @@ OC.L10N.register( "Group" : "Grupo", "Circle" : "Rondo", "No matching user or group found." : "Neniu kongrua uzanto aŭ grupo trovita.", - "Loading" : "Ŝargante", + "Loading" : "Ŝargado", "Edit" : "Redakti", "Share" : "Kunhavigi", "Manage" : "Administri", diff --git a/l10n/eo.json b/l10n/eo.json index 7aa172e38..3c5e5f44f 100644 --- a/l10n/eo.json +++ b/l10n/eo.json @@ -136,7 +136,7 @@ "Group" : "Grupo", "Circle" : "Rondo", "No matching user or group found." : "Neniu kongrua uzanto aŭ grupo trovita.", - "Loading" : "Ŝargante", + "Loading" : "Ŝargado", "Edit" : "Redakti", "Share" : "Kunhavigi", "Manage" : "Administri", From 7b4a81a7160dd093043308a5d54009c2250aad88 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 10 Nov 2019 02:13:38 +0000 Subject: [PATCH 52/77] Bump webpack-cli from 3.3.9 to 3.3.10 in /js Bumps [webpack-cli](https://github.com/webpack/webpack-cli) from 3.3.9 to 3.3.10. - [Release notes](https://github.com/webpack/webpack-cli/releases) - [Changelog](https://github.com/webpack/webpack-cli/blob/v3.3.10/CHANGELOG.md) - [Commits](https://github.com/webpack/webpack-cli/compare/v3.3.9...v3.3.10) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 6 +++--- js/package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 66b659fc4..a6ef1e3b1 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -7361,9 +7361,9 @@ } }, "webpack-cli": { - "version": "3.3.9", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.9.tgz", - "integrity": "sha512-xwnSxWl8nZtBl/AFJCOn9pG7s5CYUYdZxmmukv+fAHLcBIHM36dImfpQg3WfShZXeArkWlf6QRw24Klcsv8a5A==", + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.10.tgz", + "integrity": "sha512-u1dgND9+MXaEt74sJR4PR7qkPxXUSQ0RXYq8x1L6Jg1MYVEmGPrH6Ah6C4arD4r0J1P5HKjRqpab36k0eIzPqg==", "dev": true, "requires": { "chalk": "2.4.2", diff --git a/js/package.json b/js/package.json index 537b3e4b8..57c934e26 100644 --- a/js/package.json +++ b/js/package.json @@ -41,7 +41,7 @@ "vue-style-loader": "^4.1.2", "vue-template-compiler": "^2.6.10", "webpack": "^4.41.2", - "webpack-cli": "^3.3.9", + "webpack-cli": "^3.3.10", "webpack-merge": "^4.2.2" }, "scripts": { From 770718286d4b3d928c6b7c1b3c3833ec7a0d0613 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 10 Nov 2019 20:28:55 +0000 Subject: [PATCH 53/77] Bump @babel/polyfill from 7.6.0 to 7.7.0 in /js Bumps [@babel/polyfill](https://github.com/babel/babel) from 7.6.0 to 7.7.0. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.6.0...v7.7.0) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 12 ++++++------ js/package.json | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index a6ef1e3b1..008339cb5 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -935,18 +935,18 @@ } }, "@babel/polyfill": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.6.0.tgz", - "integrity": "sha512-q5BZJI0n/B10VaQQvln1IlDK3BTBJFbADx7tv+oXDPIDZuTo37H5Adb9jhlXm/fEN4Y7/64qD9mnrJJG7rmaTw==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.7.0.tgz", + "integrity": "sha512-/TS23MVvo34dFmf8mwCisCbWGrfhbiWZSwBo6HkADTBhUa2Q/jWltyY/tpofz/b6/RIhqaqQcquptCirqIhOaQ==", "requires": { "core-js": "^2.6.5", "regenerator-runtime": "^0.13.2" }, "dependencies": { "core-js": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.9.tgz", - "integrity": "sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A==" + "version": "2.6.10", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.10.tgz", + "integrity": "sha512-I39t74+4t+zau64EN1fE5v2W31Adtc/REhzWN+gWRRXg6WH5qAsZm62DHpQ1+Yhe4047T55jvzz7MUqF/dBBlA==" }, "regenerator-runtime": { "version": "0.13.3", diff --git a/js/package.json b/js/package.json index 57c934e26..4f5524610 100644 --- a/js/package.json +++ b/js/package.json @@ -28,7 +28,7 @@ "devDependencies": { "@babel/core": "^7.6.4", "@babel/plugin-syntax-dynamic-import": "^7.2.0", - "@babel/polyfill": "^7.6.0", + "@babel/polyfill": "^7.7.0", "@babel/preset-env": "^7.6.3", "babel-loader": "^8.0.6", "css-loader": "^3.2.0", From 36c3ae5635a37b2d5e94441d97a4b4660cfad8f2 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 14 Nov 2019 02:25:19 +0000 Subject: [PATCH 54/77] [tx-robot] updated from transifex --- l10n/gl.js | 2 +- l10n/gl.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/gl.js b/l10n/gl.js index 132b78c1c..0207b6b09 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -190,7 +190,7 @@ OC.L10N.register( "Saved" : "Gardado", "Unsaved changes" : "Cambios sen gardar", "Insert attachment" : "Inserir o anexo", - "Formatting help" : "Axuda de formato", + "Formatting help" : "Axuda de formatado", "Upload attachment" : "Enviar anexos", "Add a card description…" : "Engadir unha descrición da tarxeta…", "Shared boards" : "Taboleiros compartidos", diff --git a/l10n/gl.json b/l10n/gl.json index 51d4cf725..9d0dd1de2 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -188,7 +188,7 @@ "Saved" : "Gardado", "Unsaved changes" : "Cambios sen gardar", "Insert attachment" : "Inserir o anexo", - "Formatting help" : "Axuda de formato", + "Formatting help" : "Axuda de formatado", "Upload attachment" : "Enviar anexos", "Add a card description…" : "Engadir unha descrición da tarxeta…", "Shared boards" : "Taboleiros compartidos", From 4db0bdaafbe3b74166830a0c22f1a787b203edfd Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2019 07:47:50 +0000 Subject: [PATCH 55/77] Bump vuex from 3.1.1 to 3.1.2 in /js Bumps [vuex](https://github.com/vuejs/vuex) from 3.1.1 to 3.1.2. - [Release notes](https://github.com/vuejs/vuex/releases) - [Commits](https://github.com/vuejs/vuex/compare/v3.1.1...v3.1.2) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 6 +++--- js/package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 008339cb5..d8f755c7e 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -7240,9 +7240,9 @@ } }, "vuex": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/vuex/-/vuex-3.1.1.tgz", - "integrity": "sha512-ER5moSbLZuNSMBFnEBVGhQ1uCBNJslH9W/Dw2W7GZN23UQA69uapP5GTT9Vm8Trc0PzBSVt6LzF3hGjmv41xcg==" + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/vuex/-/vuex-3.1.2.tgz", + "integrity": "sha512-ha3jNLJqNhhrAemDXcmMJMKf1Zu4sybMPr9KxJIuOpVcsDQlTBYLLladav2U+g1AvdYDG5Gs0xBTb0M5pXXYFQ==" }, "watchpack": { "version": "1.6.0", diff --git a/js/package.json b/js/package.json index 4f5524610..b24b3ee6e 100644 --- a/js/package.json +++ b/js/package.json @@ -23,7 +23,7 @@ "ng-sortable": "^1.3.8", "ui-select": "^0.19.8", "vue": "^2.6.10", - "vuex": "^3.1.1" + "vuex": "^3.1.2" }, "devDependencies": { "@babel/core": "^7.6.4", From 8112a63e0a79040d24e3b88231ee313b3dda12ee Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2019 08:56:05 +0000 Subject: [PATCH 56/77] Bump vue-loader from 15.7.1 to 15.7.2 in /js Bumps [vue-loader](https://github.com/vuejs/vue-loader) from 15.7.1 to 15.7.2. - [Release notes](https://github.com/vuejs/vue-loader/releases) - [Changelog](https://github.com/vuejs/vue-loader/blob/master/CHANGELOG.md) - [Commits](https://github.com/vuejs/vue-loader/compare/v15.7.1...v15.7.2) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 26 +++++++++++++------------- js/package.json | 2 +- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 008339cb5..a4c97b518 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -1197,9 +1197,9 @@ "integrity": "sha512-mHCutiHtDDRKYmrJ92XPKDoSb2bgqaDyUpHdF4hUE+riwgkCvGdBjL8u+VDTcV3slBAk6B0LBIOIajjWkkObbQ==" }, "@vue/component-compiler-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.0.0.tgz", - "integrity": "sha512-am+04/0UX7ektcmvhYmrf84BDVAD8afFOf4asZjN84q8xzxFclbk5x0MtxuKGfp+zjN5WWPJn3fjFAWtDdIGSw==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.0.2.tgz", + "integrity": "sha512-BSnY2PmW4QwU1AOcGSNYAmEPLjdQ9itl1YpLCWtpwMA5Jy/aqWNuzZ9+ZZ8h6yZJ53W95tVkEP6yrXJ/zUHdEA==", "dev": true, "requires": { "consolidate": "^0.15.1", @@ -1208,7 +1208,7 @@ "merge-source-map": "^1.1.0", "postcss": "^7.0.14", "postcss-selector-parser": "^5.0.0", - "prettier": "1.16.3", + "prettier": "^1.18.2", "source-map": "~0.6.1", "vue-template-es2015-compiler": "^1.9.0" }, @@ -5542,9 +5542,9 @@ "dev": true }, "prettier": { - "version": "1.16.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.16.3.tgz", - "integrity": "sha512-kn/GU6SMRYPxUakNXhpP0EedT/KmaPzr0H5lIsDogrykbaxOpOfAFfk5XA7DZrJyMAv1wlMV3CPcZruGXVVUZw==", + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz", + "integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==", "dev": true }, "private": { @@ -7172,15 +7172,15 @@ "integrity": "sha512-ImThpeNU9HbdZL3utgMCq0oiMzAkt1mcgy3/E6zWC/G6AaQoeuFdsl9nDhTDU3X1R6FK7nsIUuRACVcjI+A2GQ==" }, "vue-hot-reload-api": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.3.tgz", - "integrity": "sha512-KmvZVtmM26BQOMK1rwUZsrqxEGeKiYSZGA7SNWE6uExx8UX/cj9hq2MRV/wWC3Cq6AoeDGk57rL9YMFRel/q+g==", + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz", + "integrity": "sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==", "dev": true }, "vue-loader": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.7.1.tgz", - "integrity": "sha512-fwIKtA23Pl/rqfYP5TSGK7gkEuLhoTvRYW+TU7ER3q9GpNLt/PjG5NLv3XHRDiTg7OPM1JcckBgds+VnAc+HbA==", + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.7.2.tgz", + "integrity": "sha512-H/P9xt/nkocyu4hZKg5TzPqyCT1oKOaCSk9zs0JCbJuy0Q8KtR0bjJpnT/5R5x/Ckd1GFkkLQnQ1C4x6xXeLZg==", "dev": true, "requires": { "@vue/component-compiler-utils": "^3.0.0", diff --git a/js/package.json b/js/package.json index 4f5524610..94ad2d75a 100644 --- a/js/package.json +++ b/js/package.json @@ -37,7 +37,7 @@ "style-loader": "^1.0.0", "uglifyjs-webpack-plugin": "^2.2.0", "url-loader": "^2.1.0", - "vue-loader": "^15.7.1", + "vue-loader": "^15.7.2", "vue-style-loader": "^4.1.2", "vue-template-compiler": "^2.6.10", "webpack": "^4.41.2", From cc05ba6b1c9a66938c052a392005e313eddc184f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 20 Nov 2019 02:25:49 +0000 Subject: [PATCH 57/77] [tx-robot] updated from transifex --- l10n/cs.js | 1 + l10n/cs.json | 1 + l10n/sl.js | 20 ++++++++++++++++++-- l10n/sl.json | 20 ++++++++++++++++++-- 4 files changed, 38 insertions(+), 4 deletions(-) diff --git a/l10n/cs.js b/l10n/cs.js index 57793140c..95e5f340f 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -19,6 +19,7 @@ OC.L10N.register( "You have restored the board {board}" : "Obnovili jste nástěnku {board}", "{user} has restored the board {board}" : "{user} obnovil(a) nástěnku {board}", "You have shared the board {board} with {acl}" : "Nasdíleli jste nástěnku {board} s {acl}", + "{user} has shared the board {board} with {acl}" : "{user} nasdílel(a) nástěnku {board} s {acl}", "You have removed {acl} from the board {board}" : "Odebrali jste {acl} z nástěnky {board}", "{user} has removed {acl} from the board {board}" : "{user} odebral(a) {acl} z nástěnky {board}", "You have renamed the board {before} to {board}" : "Přejmenovali jste nástěnku {before} na {board}", diff --git a/l10n/cs.json b/l10n/cs.json index 19d5215c0..152723ca8 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -17,6 +17,7 @@ "You have restored the board {board}" : "Obnovili jste nástěnku {board}", "{user} has restored the board {board}" : "{user} obnovil(a) nástěnku {board}", "You have shared the board {board} with {acl}" : "Nasdíleli jste nástěnku {board} s {acl}", + "{user} has shared the board {board} with {acl}" : "{user} nasdílel(a) nástěnku {board} s {acl}", "You have removed {acl} from the board {board}" : "Odebrali jste {acl} z nástěnky {board}", "{user} has removed {acl} from the board {board}" : "{user} odebral(a) {acl} z nástěnky {board}", "You have renamed the board {before} to {board}" : "Přejmenovali jste nástěnku {before} na {board}", diff --git a/l10n/sl.js b/l10n/sl.js index 70491787a..af87203f3 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -37,7 +37,23 @@ OC.L10N.register( "You have created card {card} in stack {stack} on board {board}" : "Ustvarite nalogo {card} v paketu {stack} zbirke {board}", "{user} has created card {card} in stack {stack} on board {board}" : "Uporabnik {user} ustvari nalogo {card} v paketu {stack} zbirke {board}", "You have renamed the card {before} to {card}" : "Preimenujete nalogo {before} v {card}", - "{user} has renamed the card {before} to {card}" : "Uporabnik {user} preimenuje nalogo {before} v {card}", + "{user} has renamed the card {before} to {card}" : "{user} preimenuje nalogo {before} v {card}", + "You have added a description to card {card} in stack {stack} on board {board}" : "Dodate opis k nalogi {card} paketa {stack} v zbirki {board}.", + "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} doda opis k nalogi {card} paketa {stack} v zbirki {board}.", + "You have set the due date of card {card} to {after}" : "Nastavite datum preteka naloge {card} na {after}", + "{user} has set the due date of card {card} to {after}" : "{user} nastavi datum preteka naloge {card} na {after}", + "You have updated the due date of card {card} to {after}" : "Posodobite datum preteka naloge {card} na {after}", + "{user} has updated the due date of card {card} to {after}" : "{user} posodobi datum preteka naloge {card} na {after}", + "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Dodate oznako {label} k nalogi {card} paketa {stack} v zbirki {board}", + "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} doda oznako {label} k nalogi {card} paketa {stack} v zbirki {board}", + "You have moved the card {card} from stack {stackBefore} to {stack}" : "Premaknete nalogo {card} iz paketa {stackBefore} v {stack}", + "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} premakne nalogo {card} iz paketa {stackBefore} v {stack}", + "You have added the attachment {attachment} to card {card}" : "Dodate prilogo {attachment} k nalogi {card}", + "{user} has added the attachment {attachment} to card {card}" : "{user} doda prilogo {attachment} k nalogi {card}", + "{user} has updated the attachment {attachment} to card {card}" : "{user} posodobi prilogo {attachment} naloge {card}", + "{user} has deleted the attachment {attachment} to card {card}" : "{user} izbriše prilogo {attachment} naloge {card}", + "You have restored the attachment {attachment} to card {card}" : "Obnovite prilogo {attachment} k nalogi {card}", + "{user} has restored the attachment {attachment} to card {card}" : "{user} obnovi prilogo {attachment} naloge {card}", "You have commented on card {card}" : "Vpišete opombo k nalogi {card}", "{user} has commented on card {card}" : "Uporabnik {user} vpiše opombo k nalogi {card}", "A card description inside the Deck app has been changed" : "Spremenjen jeopis ene izmed nalog v programu Deck", @@ -132,7 +148,7 @@ OC.L10N.register( "Select tags" : "Izbor oznak", "Assign users" : "Dodeli uporabnike", "Choose a user to assign" : "Izbor uporabnika za nalogo", - "Assign this card to a user" : "Dodelitev naloge uporabniku", + "Assign this card to a user" : "Dodeli nalogo uporabniku", "Due date" : "Datum preteka", "Click to set" : "Klik za nastavitev", "Remove due date" : "Odstrani datum preteka", diff --git a/l10n/sl.json b/l10n/sl.json index 640007d9c..0ae36ecce 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -35,7 +35,23 @@ "You have created card {card} in stack {stack} on board {board}" : "Ustvarite nalogo {card} v paketu {stack} zbirke {board}", "{user} has created card {card} in stack {stack} on board {board}" : "Uporabnik {user} ustvari nalogo {card} v paketu {stack} zbirke {board}", "You have renamed the card {before} to {card}" : "Preimenujete nalogo {before} v {card}", - "{user} has renamed the card {before} to {card}" : "Uporabnik {user} preimenuje nalogo {before} v {card}", + "{user} has renamed the card {before} to {card}" : "{user} preimenuje nalogo {before} v {card}", + "You have added a description to card {card} in stack {stack} on board {board}" : "Dodate opis k nalogi {card} paketa {stack} v zbirki {board}.", + "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} doda opis k nalogi {card} paketa {stack} v zbirki {board}.", + "You have set the due date of card {card} to {after}" : "Nastavite datum preteka naloge {card} na {after}", + "{user} has set the due date of card {card} to {after}" : "{user} nastavi datum preteka naloge {card} na {after}", + "You have updated the due date of card {card} to {after}" : "Posodobite datum preteka naloge {card} na {after}", + "{user} has updated the due date of card {card} to {after}" : "{user} posodobi datum preteka naloge {card} na {after}", + "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Dodate oznako {label} k nalogi {card} paketa {stack} v zbirki {board}", + "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} doda oznako {label} k nalogi {card} paketa {stack} v zbirki {board}", + "You have moved the card {card} from stack {stackBefore} to {stack}" : "Premaknete nalogo {card} iz paketa {stackBefore} v {stack}", + "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} premakne nalogo {card} iz paketa {stackBefore} v {stack}", + "You have added the attachment {attachment} to card {card}" : "Dodate prilogo {attachment} k nalogi {card}", + "{user} has added the attachment {attachment} to card {card}" : "{user} doda prilogo {attachment} k nalogi {card}", + "{user} has updated the attachment {attachment} to card {card}" : "{user} posodobi prilogo {attachment} naloge {card}", + "{user} has deleted the attachment {attachment} to card {card}" : "{user} izbriše prilogo {attachment} naloge {card}", + "You have restored the attachment {attachment} to card {card}" : "Obnovite prilogo {attachment} k nalogi {card}", + "{user} has restored the attachment {attachment} to card {card}" : "{user} obnovi prilogo {attachment} naloge {card}", "You have commented on card {card}" : "Vpišete opombo k nalogi {card}", "{user} has commented on card {card}" : "Uporabnik {user} vpiše opombo k nalogi {card}", "A card description inside the Deck app has been changed" : "Spremenjen jeopis ene izmed nalog v programu Deck", @@ -130,7 +146,7 @@ "Select tags" : "Izbor oznak", "Assign users" : "Dodeli uporabnike", "Choose a user to assign" : "Izbor uporabnika za nalogo", - "Assign this card to a user" : "Dodelitev naloge uporabniku", + "Assign this card to a user" : "Dodeli nalogo uporabniku", "Due date" : "Datum preteka", "Click to set" : "Klik za nastavitev", "Remove due date" : "Odstrani datum preteka", From 78f900b48abd8afe4466b38ad5b88717c02dbf4c Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 20 Nov 2019 15:32:49 +0000 Subject: [PATCH 58/77] [Security] Bump angular from 1.7.8 to 1.7.9 in /js Bumps [angular](https://github.com/angular/angular.js) from 1.7.8 to 1.7.9. **This update includes a security fix.** - [Release notes](https://github.com/angular/angular.js/releases) - [Changelog](https://github.com/angular/angular.js/blob/master/CHANGELOG.md) - [Commits](https://github.com/angular/angular.js/compare/v1.7.8...v1.7.9) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 6 +++--- js/package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 8ebd33d29..8e1b3cd3d 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -1456,9 +1456,9 @@ "dev": true }, "angular": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/angular/-/angular-1.7.8.tgz", - "integrity": "sha512-wtef/y4COxM7ZVhddd7JtAAhyYObq9YXKar9tsW7558BImeVYteJiTxCKeJOL45lJ/+7B4wrAC49j8gTFYEthg==" + "version": "1.7.9", + "resolved": "https://registry.npmjs.org/angular/-/angular-1.7.9.tgz", + "integrity": "sha512-5se7ZpcOtu0MBFlzGv5dsM1quQDoDeUTwZrWjGtTNA7O88cD8TEk5IEKCTDa3uECV9XnvKREVUr7du1ACiWGFQ==" }, "angular-animate": { "version": "1.7.8", diff --git a/js/package.json b/js/package.json index 3945b0414..9def3d0f3 100644 --- a/js/package.json +++ b/js/package.json @@ -8,7 +8,7 @@ }, "dependencies": { "@uirouter/angularjs": "^1.0.23", - "angular": "^1.7.8", + "angular": "^1.7.9", "angular-animate": "^1.7.8", "angular-file-upload": "^2.5.0", "angular-markdown-it": "^0.6.1", From 3af7bdc5d9e511f526c6e69b9bf77595a23b4a82 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 21 Nov 2019 02:25:36 +0000 Subject: [PATCH 59/77] [tx-robot] updated from transifex --- l10n/lt_LT.js | 2 +- l10n/lt_LT.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index 77cd34795..a7c25b0cc 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -40,7 +40,7 @@ OC.L10N.register( "Sharing" : "Bendrinimas", "Tags" : "Žymės", "Deleted items" : "Ištrinti elementai", - "Select users or groups to share with" : "Pasirinkti naudotojus ar naudotojų grupes bendrinimui", + "Select users or groups to share with" : "Pasirinkti naudotojus ar grupes su kuriomis bendrinti", "Group" : "Grupė", "Circle" : "Ratas", "No matching user or group found." : "Nerasta vartotojų ir grupių", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index a1535a5f8..e332cefb8 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -38,7 +38,7 @@ "Sharing" : "Bendrinimas", "Tags" : "Žymės", "Deleted items" : "Ištrinti elementai", - "Select users or groups to share with" : "Pasirinkti naudotojus ar naudotojų grupes bendrinimui", + "Select users or groups to share with" : "Pasirinkti naudotojus ar grupes su kuriomis bendrinti", "Group" : "Grupė", "Circle" : "Ratas", "No matching user or group found." : "Nerasta vartotojų ir grupių", From 58cb0a61b16f50c5f07d3985ca63489af7762fed Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 22 Nov 2019 02:25:42 +0000 Subject: [PATCH 60/77] [tx-robot] updated from transifex --- l10n/cs.js | 86 ++++++++++++++++++++++++------------------------- l10n/cs.json | 86 ++++++++++++++++++++++++------------------------- l10n/lt_LT.js | 21 ++++++------ l10n/lt_LT.json | 21 ++++++------ l10n/sl.js | 29 ++++++++++++++++- l10n/sl.json | 29 ++++++++++++++++- 6 files changed, 166 insertions(+), 106 deletions(-) diff --git a/l10n/cs.js b/l10n/cs.js index 95e5f340f..2da2ef89e 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -9,45 +9,45 @@ OC.L10N.register( "Remove user from card" : "Odebrat uživatele z karty", "Hours" : "Hodiny", "Minutes" : "Minuty", - "Link to a board" : "Propojit s nástěnkou", + "Link to a board" : "Propojit s tabulí", "Maximum file size of {size} exceeded" : "U souboru {size} překročena nejvyšší umožněná velikost", "File already exists" : "Soubor už existuje", - "You have created a new board {board}" : "Vytvořili jste nástěnku {board}", - "{user} has created a new board {board}" : "{user} vytvořil(a) novou nástěnku {board}", - "You have deleted the board {board}" : "Smazali jste nástěnku {board}", - "{user} has deleted the board {board}" : "{user} smazal(a) nástěnku {board}", - "You have restored the board {board}" : "Obnovili jste nástěnku {board}", - "{user} has restored the board {board}" : "{user} obnovil(a) nástěnku {board}", - "You have shared the board {board} with {acl}" : "Nasdíleli jste nástěnku {board} s {acl}", - "{user} has shared the board {board} with {acl}" : "{user} nasdílel(a) nástěnku {board} s {acl}", - "You have removed {acl} from the board {board}" : "Odebrali jste {acl} z nástěnky {board}", - "{user} has removed {acl} from the board {board}" : "{user} odebral(a) {acl} z nástěnky {board}", - "You have renamed the board {before} to {board}" : "Přejmenovali jste nástěnku {before} na {board}", - "{user} has renamed the board {before} to {board}" : "{user} přejmenoval(a) desku {before} na {board}", - "You have archived the board {board}" : "Zaarchivovali jste nástěnku {board}", - "{user} has archived the board {before}" : "{user} zaarchivoval(a) nástěnku {before}", - "You have unarchived the board {board}" : "Zrušili jste archivaci nástěnky {board}", - "{user} has unarchived the board {before}" : "{user} zrušil(a) archivaci nástěnky {before}", - "You have created a new stack {stack} on board {board}" : "Vytvořili jste novou hromádku {stack} na desce {board}", - "{user} has created a new stack {stack} on board {board}" : "{user} vytvořil(a) nový balíček {stack} na desce {board}", + "You have created a new board {board}" : "Vytvořili jste tabuli {board}", + "{user} has created a new board {board}" : "{user} vytvořil(a) novou tabuli {board}", + "You have deleted the board {board}" : "Smazali jste tabuli {board}", + "{user} has deleted the board {board}" : "{user} smazal(a) tabuli {board}", + "You have restored the board {board}" : "Obnovili jste tabuli {board}", + "{user} has restored the board {board}" : "{user} obnovil(a) tabuli {board}", + "You have shared the board {board} with {acl}" : "Nasdíleli jste tabuli {board} s {acl}", + "{user} has shared the board {board} with {acl}" : "{user} nasdílel(a) tabuli {board} s {acl}", + "You have removed {acl} from the board {board}" : "Odebrali jste {acl} z tabule {board}", + "{user} has removed {acl} from the board {board}" : "{user} odebral(a) {acl} z tabule {board}", + "You have renamed the board {before} to {board}" : "Přejmenovali jste tabuli {before} na {board}", + "{user} has renamed the board {before} to {board}" : "{user} přejmenoval(a) tabuli {before} na {board}", + "You have archived the board {board}" : "Zaarchivovali jste tabuli {board}", + "{user} has archived the board {before}" : "{user} zaarchivoval(a) tabuli {before}", + "You have unarchived the board {board}" : "Vrátili jste zpět z archivace tabuli {board}", + "{user} has unarchived the board {before}" : "{user} vrátil(a) tabuli {before} zpět z archivace", + "You have created a new stack {stack} on board {board}" : "Vytvořili jste novou hromádku {stack} na tabuli {board}", + "{user} has created a new stack {stack} on board {board}" : "{user} vytvořil(a) nový balíček {stack} na tabuli {board}", "You have renamed stack {before} to {stack} on board {board}" : "Přejmenovali jste hromádku {before} na {stack} na desce {board}", "{user} has renamed stack {before} to {stack} on board {board}" : "{user} přejmenoval(a) hromádku {before} na {stack} na desce {board}", "You have deleted stack {stack} on board {board}" : "Smazali jste balíček {stack} na desce {board}", "{user} has deleted stack {stack} on board {board}" : "{user} smazal(a) balíček {stack} na desce {board}", "You have created card {card} in stack {stack} on board {board}" : "Vytvořili jste kartu {card} v balíčku {stack} na kartě {board}", - "{user} has created card {card} in stack {stack} on board {board}" : "{user} vytvořil(a) kartu {card} na hromádce {stack} na desce {board}", + "{user} has created card {card} in stack {stack} on board {board}" : "{user} vytvořil(a) kartu {card} ve sloupci {stack} na tabuli {board}", "You have deleted card {card} in stack {stack} on board {board}" : "Smazali jste kartu {card} na hromádce {stack} na desce {board}", "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} smazal(a) kartu {card} v balíčku {board} na desce {board}", "You have renamed the card {before} to {card}" : "Přejmenovali jste kartu {before} na {card}", "{user} has renamed the card {before} to {card}" : "{user} přejmenoval(a) {before} na {card}", - "You have added a description to card {card} in stack {stack} on board {board}" : "Přidali jste popis ke kartě {card} v hromádce {stack} na desce {board}", - "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} přidal(a) popis ke kartě {card} v hromádce {stack} na desce {board}", + "You have added a description to card {card} in stack {stack} on board {board}" : "Přidali jste popis ke kartě {card} v hromádce {stack} na tabuli {board}", + "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} přidal(a) popis ke kartě {card} v hromádce {stack} na tabuli {board}", "You have updated the description of card {card} in stack {stack} on board {board}" : "Aktualizovali jste popis karty {card} v hromádce {stack} na desce {board}", "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} aktualizoval(a) popis karty {card} na hromádce {stack} na nástěnce {board}", - "You have archived card {card} in stack {stack} on board {board}" : "Zaarchivovali kartu {card} v balíčku {stack} na desce {board}", + "You have archived card {card} in stack {stack} on board {board}" : "Zaarchivovali kartu {card} v balíčku {stack} na tabuli {board}", "{user} has archived card {card} in stack {stack} on board {board}" : "{user} zaarchivoval(a) kartu {card} v balíčku {stack} na desce {board}", "You have unarchived card {card} in stack {stack} on board {board}" : "Zrušili jste archivaci karty {card} na hromádce {stack} na desce {board}", - "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} zrušil(a) archivaci karty {card} na hromádce {stack} na desce {board}", + "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} zrušil(a) archivaci karty {card} na hromádce {stack} na tabuli {board}", "You have removed the due date of card {card}" : "Odebrali jste termín karty {card}", "{user} has removed the due date of card {card}" : "{user} odebral(a) termín karty {card}", "You have set the due date of card {card} to {after}" : "Nastavili jste termín na kartě {card} na {after}", @@ -57,8 +57,8 @@ OC.L10N.register( "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Přidali jste štítek {label} kartě {card} v hromádce {stack} na nástěnce {board}", "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} přidal(a) štítek {label} ke kartě {card} v hromádce {stack} na nástěnce {board}", "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Odebrali jste štítek {label} z karty {card} v hromádce {stack} na desce {board}", - "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} odebral(a) štítek {label} z karty {card} na hromádce {stack} na desce {board}", - "You have assigned {assigneduser} to card {card} on board {board}" : "Přiřadili jste {assigneduser} ke kartě {card} na desce {board}", + "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} odebral(a) štítek {label} z karty {card} na hromádce {stack} na tabuli {board}", + "You have assigned {assigneduser} to card {card} on board {board}" : "Přiřadili jste {assigneduser} ke kartě {card} na tabuli {board}", "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} přiřadil(a) {assigneduser} ke kartě {card} na desce {board}", "You have unassigned {assigneduser} from card {card} on board {board}" : "Zrušili jste přiřazení {assigneduser} u karty {card} na nástěnce {board}", "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} zrušil(a) přiřazení {assigneduser} z karty {card} na desce {board}", @@ -84,8 +84,8 @@ OC.L10N.register( "The card \"%s\" on \"%s\" has reached its due date." : "U karty \"%s\" z tabule \"%s\" nastalo plánované datum dokončení.", "%s has mentioned you in a comment on \"%s\"." : "%s vás zmínil(a) v komentáři k „%s“.", "{user} has mentioned you in a comment on \"%s\"." : "{user} vás zmínil(a) v komentáři v „%s“.", - "The board \"%s\" has been shared with you by %s." : "Tabule \"%s\" s vámi byla nasdílena uživatelem %s.", - "{user} has shared the board %s with you." : "{user} s vámi nasdílel tabuli %s.", + "The board \"%s\" has been shared with you by %s." : "Uživatel %s vám nasdílel(a) tabuli „%s“.", + "{user} has shared the board %s with you." : "{user} vám nasdílel(a) tabuli %s.", "No data was provided to create an attachment." : "Žádná data k vytvoření přílohy.", "Finished" : "Dokončeno", "To review" : "K revizi", @@ -109,16 +109,16 @@ OC.L10N.register( "A kanban style project and personal management tool for Nextcloud" : "Nástroj pro projektový a osobní řízení ve stylu Kanban.", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Karty jsou nástroj zacílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu", "Select the board to link to a project" : "Vyberte nástěnku kterou propojit s projektem", - "Select board" : "Vybrat nástěnku", + "Select board" : "Vybrat tabuli", "Add a new stack" : "Přidat nový zásobník", "Submit" : "Odeslat", "Show archived cards" : "Zobrazit archivované karty", "Hide archived cards" : "Skrýt archivované karty", "Toggle compact mode" : "Vyp/zap. kompaktní režim", - "Show board details" : "Zobrazit podrobnosti o desce", + "Show board details" : "Zobrazit podrobnosti o tabuli", "All Boards" : "Všechny desky", "Archived boards" : "Archivované desky", - "Share board" : "Sdílet nástěnku", + "Share board" : "Sdílet tabuli", "Archived cards" : "Archivované karty", "Actions" : "Akce", "Drop your files here to upload it to the card" : "Přetáhněte soubor sem, pokud jej chcete připojit ke kartě.", @@ -157,16 +157,16 @@ OC.L10N.register( "Title" : "Název", "Members" : "Členové", "More actions" : "Více akcí", - "Edit board" : "Upravit desku", - "Archive board" : "Archivovaná deska", - "Unarchive board" : "Odarchivovat desku", - "Delete board" : "Smazat desku", - "Update board" : "Aktualizovat desku", - "Reset board" : "Resetovat nástěnku", - "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátit smazání tabule - Tabule bude jinak trvale odstraněna během příštího běhu cronjobu.", - "Create new board" : "Vytvořit novou desku", - "New board title" : "Nadpis nové desky", - "Create board" : "Vytvořit nástěnku", + "Edit board" : "Upravit tabuli", + "Archive board" : "Archivovaná tabule", + "Unarchive board" : "Vrátit tabuli zpět z archivu", + "Delete board" : "Smazat tabuli", + "Update board" : "Aktualizovat tabuli", + "Reset board" : "Vrátit tabuli do výchozího stavu", + "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátit smazání tabule – jinak bude nadobro odstraněna během příštího spuštění naplánovaných úloh.", + "Create new board" : "Vytvořit novou tabuli", + "New board title" : "Název nové tabule", + "Create board" : "Vytvořit tabuli", "Select an attachment" : "Vybrat přílohu", "Cancel upload" : "Zrušit nahrávání", "by" : "od", @@ -194,8 +194,8 @@ OC.L10N.register( "Upload attachment" : "Nahrát přílohu", "Add a card description…" : "Přidat popis karty…", "Shared boards" : "Sdílené desky", - "Move board to archive" : "Přesunout desku do archivu", - "Create a new board" : "Vytvořit novou desku", + "Move board to archive" : "Přesunout tabuli do archivu", + "Create a new board" : "Vytvořit novou tabuli", "Settings" : "Nastavení", "Limit deck to groups" : "Omezte Deck na skupiny", "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení Decků brání uživatelům, kteří nejsou součástí těchto skupin, při vytváření vlastních desek. Uživatelé mohou stále pracovat na deskách, které jsou s nimi sdíleny." diff --git a/l10n/cs.json b/l10n/cs.json index 152723ca8..d531fc693 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -7,45 +7,45 @@ "Remove user from card" : "Odebrat uživatele z karty", "Hours" : "Hodiny", "Minutes" : "Minuty", - "Link to a board" : "Propojit s nástěnkou", + "Link to a board" : "Propojit s tabulí", "Maximum file size of {size} exceeded" : "U souboru {size} překročena nejvyšší umožněná velikost", "File already exists" : "Soubor už existuje", - "You have created a new board {board}" : "Vytvořili jste nástěnku {board}", - "{user} has created a new board {board}" : "{user} vytvořil(a) novou nástěnku {board}", - "You have deleted the board {board}" : "Smazali jste nástěnku {board}", - "{user} has deleted the board {board}" : "{user} smazal(a) nástěnku {board}", - "You have restored the board {board}" : "Obnovili jste nástěnku {board}", - "{user} has restored the board {board}" : "{user} obnovil(a) nástěnku {board}", - "You have shared the board {board} with {acl}" : "Nasdíleli jste nástěnku {board} s {acl}", - "{user} has shared the board {board} with {acl}" : "{user} nasdílel(a) nástěnku {board} s {acl}", - "You have removed {acl} from the board {board}" : "Odebrali jste {acl} z nástěnky {board}", - "{user} has removed {acl} from the board {board}" : "{user} odebral(a) {acl} z nástěnky {board}", - "You have renamed the board {before} to {board}" : "Přejmenovali jste nástěnku {before} na {board}", - "{user} has renamed the board {before} to {board}" : "{user} přejmenoval(a) desku {before} na {board}", - "You have archived the board {board}" : "Zaarchivovali jste nástěnku {board}", - "{user} has archived the board {before}" : "{user} zaarchivoval(a) nástěnku {before}", - "You have unarchived the board {board}" : "Zrušili jste archivaci nástěnky {board}", - "{user} has unarchived the board {before}" : "{user} zrušil(a) archivaci nástěnky {before}", - "You have created a new stack {stack} on board {board}" : "Vytvořili jste novou hromádku {stack} na desce {board}", - "{user} has created a new stack {stack} on board {board}" : "{user} vytvořil(a) nový balíček {stack} na desce {board}", + "You have created a new board {board}" : "Vytvořili jste tabuli {board}", + "{user} has created a new board {board}" : "{user} vytvořil(a) novou tabuli {board}", + "You have deleted the board {board}" : "Smazali jste tabuli {board}", + "{user} has deleted the board {board}" : "{user} smazal(a) tabuli {board}", + "You have restored the board {board}" : "Obnovili jste tabuli {board}", + "{user} has restored the board {board}" : "{user} obnovil(a) tabuli {board}", + "You have shared the board {board} with {acl}" : "Nasdíleli jste tabuli {board} s {acl}", + "{user} has shared the board {board} with {acl}" : "{user} nasdílel(a) tabuli {board} s {acl}", + "You have removed {acl} from the board {board}" : "Odebrali jste {acl} z tabule {board}", + "{user} has removed {acl} from the board {board}" : "{user} odebral(a) {acl} z tabule {board}", + "You have renamed the board {before} to {board}" : "Přejmenovali jste tabuli {before} na {board}", + "{user} has renamed the board {before} to {board}" : "{user} přejmenoval(a) tabuli {before} na {board}", + "You have archived the board {board}" : "Zaarchivovali jste tabuli {board}", + "{user} has archived the board {before}" : "{user} zaarchivoval(a) tabuli {before}", + "You have unarchived the board {board}" : "Vrátili jste zpět z archivace tabuli {board}", + "{user} has unarchived the board {before}" : "{user} vrátil(a) tabuli {before} zpět z archivace", + "You have created a new stack {stack} on board {board}" : "Vytvořili jste novou hromádku {stack} na tabuli {board}", + "{user} has created a new stack {stack} on board {board}" : "{user} vytvořil(a) nový balíček {stack} na tabuli {board}", "You have renamed stack {before} to {stack} on board {board}" : "Přejmenovali jste hromádku {before} na {stack} na desce {board}", "{user} has renamed stack {before} to {stack} on board {board}" : "{user} přejmenoval(a) hromádku {before} na {stack} na desce {board}", "You have deleted stack {stack} on board {board}" : "Smazali jste balíček {stack} na desce {board}", "{user} has deleted stack {stack} on board {board}" : "{user} smazal(a) balíček {stack} na desce {board}", "You have created card {card} in stack {stack} on board {board}" : "Vytvořili jste kartu {card} v balíčku {stack} na kartě {board}", - "{user} has created card {card} in stack {stack} on board {board}" : "{user} vytvořil(a) kartu {card} na hromádce {stack} na desce {board}", + "{user} has created card {card} in stack {stack} on board {board}" : "{user} vytvořil(a) kartu {card} ve sloupci {stack} na tabuli {board}", "You have deleted card {card} in stack {stack} on board {board}" : "Smazali jste kartu {card} na hromádce {stack} na desce {board}", "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} smazal(a) kartu {card} v balíčku {board} na desce {board}", "You have renamed the card {before} to {card}" : "Přejmenovali jste kartu {before} na {card}", "{user} has renamed the card {before} to {card}" : "{user} přejmenoval(a) {before} na {card}", - "You have added a description to card {card} in stack {stack} on board {board}" : "Přidali jste popis ke kartě {card} v hromádce {stack} na desce {board}", - "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} přidal(a) popis ke kartě {card} v hromádce {stack} na desce {board}", + "You have added a description to card {card} in stack {stack} on board {board}" : "Přidali jste popis ke kartě {card} v hromádce {stack} na tabuli {board}", + "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} přidal(a) popis ke kartě {card} v hromádce {stack} na tabuli {board}", "You have updated the description of card {card} in stack {stack} on board {board}" : "Aktualizovali jste popis karty {card} v hromádce {stack} na desce {board}", "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} aktualizoval(a) popis karty {card} na hromádce {stack} na nástěnce {board}", - "You have archived card {card} in stack {stack} on board {board}" : "Zaarchivovali kartu {card} v balíčku {stack} na desce {board}", + "You have archived card {card} in stack {stack} on board {board}" : "Zaarchivovali kartu {card} v balíčku {stack} na tabuli {board}", "{user} has archived card {card} in stack {stack} on board {board}" : "{user} zaarchivoval(a) kartu {card} v balíčku {stack} na desce {board}", "You have unarchived card {card} in stack {stack} on board {board}" : "Zrušili jste archivaci karty {card} na hromádce {stack} na desce {board}", - "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} zrušil(a) archivaci karty {card} na hromádce {stack} na desce {board}", + "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} zrušil(a) archivaci karty {card} na hromádce {stack} na tabuli {board}", "You have removed the due date of card {card}" : "Odebrali jste termín karty {card}", "{user} has removed the due date of card {card}" : "{user} odebral(a) termín karty {card}", "You have set the due date of card {card} to {after}" : "Nastavili jste termín na kartě {card} na {after}", @@ -55,8 +55,8 @@ "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Přidali jste štítek {label} kartě {card} v hromádce {stack} na nástěnce {board}", "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} přidal(a) štítek {label} ke kartě {card} v hromádce {stack} na nástěnce {board}", "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Odebrali jste štítek {label} z karty {card} v hromádce {stack} na desce {board}", - "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} odebral(a) štítek {label} z karty {card} na hromádce {stack} na desce {board}", - "You have assigned {assigneduser} to card {card} on board {board}" : "Přiřadili jste {assigneduser} ke kartě {card} na desce {board}", + "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} odebral(a) štítek {label} z karty {card} na hromádce {stack} na tabuli {board}", + "You have assigned {assigneduser} to card {card} on board {board}" : "Přiřadili jste {assigneduser} ke kartě {card} na tabuli {board}", "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} přiřadil(a) {assigneduser} ke kartě {card} na desce {board}", "You have unassigned {assigneduser} from card {card} on board {board}" : "Zrušili jste přiřazení {assigneduser} u karty {card} na nástěnce {board}", "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} zrušil(a) přiřazení {assigneduser} z karty {card} na desce {board}", @@ -82,8 +82,8 @@ "The card \"%s\" on \"%s\" has reached its due date." : "U karty \"%s\" z tabule \"%s\" nastalo plánované datum dokončení.", "%s has mentioned you in a comment on \"%s\"." : "%s vás zmínil(a) v komentáři k „%s“.", "{user} has mentioned you in a comment on \"%s\"." : "{user} vás zmínil(a) v komentáři v „%s“.", - "The board \"%s\" has been shared with you by %s." : "Tabule \"%s\" s vámi byla nasdílena uživatelem %s.", - "{user} has shared the board %s with you." : "{user} s vámi nasdílel tabuli %s.", + "The board \"%s\" has been shared with you by %s." : "Uživatel %s vám nasdílel(a) tabuli „%s“.", + "{user} has shared the board %s with you." : "{user} vám nasdílel(a) tabuli %s.", "No data was provided to create an attachment." : "Žádná data k vytvoření přílohy.", "Finished" : "Dokončeno", "To review" : "K revizi", @@ -107,16 +107,16 @@ "A kanban style project and personal management tool for Nextcloud" : "Nástroj pro projektový a osobní řízení ve stylu Kanban.", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Karty jsou nástroj zacílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu", "Select the board to link to a project" : "Vyberte nástěnku kterou propojit s projektem", - "Select board" : "Vybrat nástěnku", + "Select board" : "Vybrat tabuli", "Add a new stack" : "Přidat nový zásobník", "Submit" : "Odeslat", "Show archived cards" : "Zobrazit archivované karty", "Hide archived cards" : "Skrýt archivované karty", "Toggle compact mode" : "Vyp/zap. kompaktní režim", - "Show board details" : "Zobrazit podrobnosti o desce", + "Show board details" : "Zobrazit podrobnosti o tabuli", "All Boards" : "Všechny desky", "Archived boards" : "Archivované desky", - "Share board" : "Sdílet nástěnku", + "Share board" : "Sdílet tabuli", "Archived cards" : "Archivované karty", "Actions" : "Akce", "Drop your files here to upload it to the card" : "Přetáhněte soubor sem, pokud jej chcete připojit ke kartě.", @@ -155,16 +155,16 @@ "Title" : "Název", "Members" : "Členové", "More actions" : "Více akcí", - "Edit board" : "Upravit desku", - "Archive board" : "Archivovaná deska", - "Unarchive board" : "Odarchivovat desku", - "Delete board" : "Smazat desku", - "Update board" : "Aktualizovat desku", - "Reset board" : "Resetovat nástěnku", - "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátit smazání tabule - Tabule bude jinak trvale odstraněna během příštího běhu cronjobu.", - "Create new board" : "Vytvořit novou desku", - "New board title" : "Nadpis nové desky", - "Create board" : "Vytvořit nástěnku", + "Edit board" : "Upravit tabuli", + "Archive board" : "Archivovaná tabule", + "Unarchive board" : "Vrátit tabuli zpět z archivu", + "Delete board" : "Smazat tabuli", + "Update board" : "Aktualizovat tabuli", + "Reset board" : "Vrátit tabuli do výchozího stavu", + "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátit smazání tabule – jinak bude nadobro odstraněna během příštího spuštění naplánovaných úloh.", + "Create new board" : "Vytvořit novou tabuli", + "New board title" : "Název nové tabule", + "Create board" : "Vytvořit tabuli", "Select an attachment" : "Vybrat přílohu", "Cancel upload" : "Zrušit nahrávání", "by" : "od", @@ -192,8 +192,8 @@ "Upload attachment" : "Nahrát přílohu", "Add a card description…" : "Přidat popis karty…", "Shared boards" : "Sdílené desky", - "Move board to archive" : "Přesunout desku do archivu", - "Create a new board" : "Vytvořit novou desku", + "Move board to archive" : "Přesunout tabuli do archivu", + "Create a new board" : "Vytvořit novou tabuli", "Settings" : "Nastavení", "Limit deck to groups" : "Omezte Deck na skupiny", "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení Decků brání uživatelům, kteří nejsou součástí těchto skupin, při vytváření vlastních desek. Uživatelé mohou stále pracovat na deskách, které jsou s nimi sdíleny." diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index a7c25b0cc..6266e30ca 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -11,9 +11,11 @@ OC.L10N.register( "Deck" : "Užduočių saugykla", "No data was provided to create an attachment." : "Priedo sukūrimui nebuvo pateikta jokių duomenų.", "Finished" : "Baigta", - "To review" : "Peržiūrėti", + "To review" : "Reikia peržiūrėti", "Action needed" : "Reikalingas veiksmas", "Later" : "Vėliau", + "To do" : "Reikia atlikti", + "Doing" : "Atliekama", "Done" : "Atlikta", "Example Task 3" : "Pavyzdinė užduotis 3", "Example Task 2" : "Pavyzdinė užduotis 2", @@ -26,15 +28,16 @@ OC.L10N.register( "Missing a temporary folder" : "Trūksta laikinojo aplanko", "Could not write file to disk" : "Nepavyko įrašyti failą į diską", "A PHP extension stopped the file upload" : "PHP plėtinys sustabdė failo įkėlimą", - "Add a new stack" : "Pridėti naują skiltį", + "Add a new stack" : "Pridėti naują dėklą", "Submit" : "Pateikti", - "Show archived cards" : "Rodyti archyvuotus elementus", - "Hide archived cards" : "Paslėpti archyvuotus elementus", + "Show archived cards" : "Rodyti archyvuotas korteles", + "Hide archived cards" : "Slėpti archyvuotas korteles", "All Boards" : "Visi užduočių sąrašai", "Archived boards" : "Archyvuoti sąrašai", "Actions" : "Veiksmai", "Drop your files here to upload it to the card" : "Vilkite savo failus čia, norėdami įkelti juos į kortelę", - "Enter a card title" : "Įveskite kortelės vardą", + "Assign card to me" : "Priskirti kortelę sau", + "Enter a card title" : "Įveskite kortelės pavadinimą", "Add card" : "Pridėti kortelę", "Close" : "Užverti", "Sharing" : "Bendrinimas", @@ -46,14 +49,15 @@ OC.L10N.register( "No matching user or group found." : "Nerasta vartotojų ir grupių", "Loading" : "Įkeliama", "Edit" : "Taisyti", - "Share" : "Dalintis", + "Share" : "Bendrinti", "Manage" : "Tvarkyti", - "Sharing has been disabled for your account." : "Bendrinimas jūsų paskyrai yra išjungtas.", + "Sharing has been disabled for your account." : "Bendrinimas yra išjungtas jūsų paskyrai.", "Update tag" : "Atnaujinti žymę", "Edit tag" : "Taisyti žymę", "Delete tag" : "Ištrinti žymę", "Create" : "Sukurti", "Create a new tag" : "Sukurti naują žymę", + "Deleted stacks" : "Ištrinti dėklai", "Status" : "Būsena", "Title" : "Pavadinimas", "Members" : "Nariai", @@ -64,8 +68,7 @@ OC.L10N.register( "Delete board" : "Pašalinti sąrašą", "Create new board" : "Sukurti naują sąrašą", "New board title" : "Naujas sąrašo vardas", - "Cancel upload" : "Atšaukti įkėlimą", - "by" : " ", + "Cancel upload" : "Atsisakyti įkėlimo", "Undo file deletion" : "Atšaukti failo ištrynimą", "Insert the file into the description" : "Įterpti failą į aprašą", "Delete attachment" : "Ištrinti priedą", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index e332cefb8..b657ef167 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -9,9 +9,11 @@ "Deck" : "Užduočių saugykla", "No data was provided to create an attachment." : "Priedo sukūrimui nebuvo pateikta jokių duomenų.", "Finished" : "Baigta", - "To review" : "Peržiūrėti", + "To review" : "Reikia peržiūrėti", "Action needed" : "Reikalingas veiksmas", "Later" : "Vėliau", + "To do" : "Reikia atlikti", + "Doing" : "Atliekama", "Done" : "Atlikta", "Example Task 3" : "Pavyzdinė užduotis 3", "Example Task 2" : "Pavyzdinė užduotis 2", @@ -24,15 +26,16 @@ "Missing a temporary folder" : "Trūksta laikinojo aplanko", "Could not write file to disk" : "Nepavyko įrašyti failą į diską", "A PHP extension stopped the file upload" : "PHP plėtinys sustabdė failo įkėlimą", - "Add a new stack" : "Pridėti naują skiltį", + "Add a new stack" : "Pridėti naują dėklą", "Submit" : "Pateikti", - "Show archived cards" : "Rodyti archyvuotus elementus", - "Hide archived cards" : "Paslėpti archyvuotus elementus", + "Show archived cards" : "Rodyti archyvuotas korteles", + "Hide archived cards" : "Slėpti archyvuotas korteles", "All Boards" : "Visi užduočių sąrašai", "Archived boards" : "Archyvuoti sąrašai", "Actions" : "Veiksmai", "Drop your files here to upload it to the card" : "Vilkite savo failus čia, norėdami įkelti juos į kortelę", - "Enter a card title" : "Įveskite kortelės vardą", + "Assign card to me" : "Priskirti kortelę sau", + "Enter a card title" : "Įveskite kortelės pavadinimą", "Add card" : "Pridėti kortelę", "Close" : "Užverti", "Sharing" : "Bendrinimas", @@ -44,14 +47,15 @@ "No matching user or group found." : "Nerasta vartotojų ir grupių", "Loading" : "Įkeliama", "Edit" : "Taisyti", - "Share" : "Dalintis", + "Share" : "Bendrinti", "Manage" : "Tvarkyti", - "Sharing has been disabled for your account." : "Bendrinimas jūsų paskyrai yra išjungtas.", + "Sharing has been disabled for your account." : "Bendrinimas yra išjungtas jūsų paskyrai.", "Update tag" : "Atnaujinti žymę", "Edit tag" : "Taisyti žymę", "Delete tag" : "Ištrinti žymę", "Create" : "Sukurti", "Create a new tag" : "Sukurti naują žymę", + "Deleted stacks" : "Ištrinti dėklai", "Status" : "Būsena", "Title" : "Pavadinimas", "Members" : "Nariai", @@ -62,8 +66,7 @@ "Delete board" : "Pašalinti sąrašą", "Create new board" : "Sukurti naują sąrašą", "New board title" : "Naujas sąrašo vardas", - "Cancel upload" : "Atšaukti įkėlimą", - "by" : " ", + "Cancel upload" : "Atsisakyti įkėlimo", "Undo file deletion" : "Atšaukti failo ištrynimą", "Insert the file into the description" : "Įterpti failą į aprašą", "Delete attachment" : "Ištrinti priedą", diff --git a/l10n/sl.js b/l10n/sl.js index af87203f3..dc33316b3 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -36,21 +36,39 @@ OC.L10N.register( "{user} has deleted stack {stack} on board {board}" : "Uporabnik {user} izbriše paket nalog {stack} v zbirki {board}", "You have created card {card} in stack {stack} on board {board}" : "Ustvarite nalogo {card} v paketu {stack} zbirke {board}", "{user} has created card {card} in stack {stack} on board {board}" : "Uporabnik {user} ustvari nalogo {card} v paketu {stack} zbirke {board}", + "You have deleted card {card} in stack {stack} on board {board}" : "Izbrišete nalogo {card} v paketu {stack} zbirke {board}", + "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} izbriše nalogo {card} v paketu {stack} zbirke {board}", "You have renamed the card {before} to {card}" : "Preimenujete nalogo {before} v {card}", "{user} has renamed the card {before} to {card}" : "{user} preimenuje nalogo {before} v {card}", "You have added a description to card {card} in stack {stack} on board {board}" : "Dodate opis k nalogi {card} paketa {stack} v zbirki {board}.", "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} doda opis k nalogi {card} paketa {stack} v zbirki {board}.", + "You have updated the description of card {card} in stack {stack} on board {board}" : "Posodobite opis naloge {card} v paketu {stack} zbirke {board}", + "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} posodobi opis naloge {card} v paketu {stack} zbirke {board}", + "You have archived card {card} in stack {stack} on board {board}" : "Arhivirate nalogo {card} v paketu {stack} zbirke {board}", + "{user} has archived card {card} in stack {stack} on board {board}" : "{user} arhivira nalogo {card} v paketu {stack} zbirke {board}", + "You have unarchived card {card} in stack {stack} on board {board}" : "Iz arhiva povrnete nalogo {card} v paketu {stack} zbirke {board}", + "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} iz arhiva povrne nalogo {card} v paketu {stack} zbirke {board}", + "You have removed the due date of card {card}" : "Odstranite datum preteka z naloge {card}", + "{user} has removed the due date of card {card}" : "{user} odstrani datum preteka z naloge {card}", "You have set the due date of card {card} to {after}" : "Nastavite datum preteka naloge {card} na {after}", "{user} has set the due date of card {card} to {after}" : "{user} nastavi datum preteka naloge {card} na {after}", "You have updated the due date of card {card} to {after}" : "Posodobite datum preteka naloge {card} na {after}", "{user} has updated the due date of card {card} to {after}" : "{user} posodobi datum preteka naloge {card} na {after}", "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Dodate oznako {label} k nalogi {card} paketa {stack} v zbirki {board}", "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} doda oznako {label} k nalogi {card} paketa {stack} v zbirki {board}", + "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Odstranite oznako {label} z naloge {card} paketa {stack} v zbirki {board}", + "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} odstrani oznako {label} z naloge {card} paketa {stack} v zbirki {board}", + "You have assigned {assigneduser} to card {card} on board {board}" : "Dodelite nalogo {card} v zbirki {board} → {assigneduser}", + "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} dodeli nalogo {card} v zbirki {board} → {assigneduser}", + "You have unassigned {assigneduser} from card {card} on board {board}" : "Odvzamete nalogo {card} v zbirki {board} ✕ {assigneduser}", + "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} odvzame nalogo {card} v zbirki {board} ✕ {assigneduser}", "You have moved the card {card} from stack {stackBefore} to {stack}" : "Premaknete nalogo {card} iz paketa {stackBefore} v {stack}", "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} premakne nalogo {card} iz paketa {stackBefore} v {stack}", "You have added the attachment {attachment} to card {card}" : "Dodate prilogo {attachment} k nalogi {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} doda prilogo {attachment} k nalogi {card}", + "You have updated the attachment {attachment} on card {card}" : "Posodobite prilogo {attachment} v nalogi {card}", "{user} has updated the attachment {attachment} to card {card}" : "{user} posodobi prilogo {attachment} naloge {card}", + "You have deleted the attachment {attachment} from card {card}" : "Izbišete prilogo {attachment} v nalogi {card}", "{user} has deleted the attachment {attachment} to card {card}" : "{user} izbriše prilogo {attachment} naloge {card}", "You have restored the attachment {attachment} to card {card}" : "Obnovite prilogo {attachment} k nalogi {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} obnovi prilogo {attachment} naloge {card}", @@ -61,6 +79,7 @@ OC.L10N.register( "Changes in the Deck app" : "Spremembe v programu Deck", "A comment was created on a card" : "Nalogi je dodana nova opomba", "Personal" : "Osebno", + "{user} has shared the board %s with you." : "{user} vam omogoči souporabo zbirke %s.", "No data was provided to create an attachment." : "Ni podanih podatkov za ustvarjanje priloge.", "Finished" : "Končano", "To review" : "Za pregled", @@ -73,12 +92,15 @@ OC.L10N.register( "Example Task 2" : "Primer naloge 2", "Example Task 1" : "Primer naloge 1", "The file was uploaded" : "Datoteka je uspešno poslana.", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Poslana datoteka presega določilo največje dovoljene velikosti v datoteki php.ini", "The file was only partially uploaded" : "Datoteka ni bila poslana v celoti", "No file was uploaded" : "Datoteka ni bila poslana", "Missing a temporary folder" : "Manjka začasna mapa", "Could not write file to disk" : "Ni mogoče zapisati datoteke na disk", "A PHP extension stopped the file upload" : "Razširitev PHP onemogoča pošiljanje datoteke", + "No file uploaded or file size exceeds maximum of %s" : "Ali ni poslane datoteke ali pa velikost datoteke presega omejitev %s", "A kanban style project and personal management tool for Nextcloud" : "Orodje za projektno in osebno vodenje nalog v slogu kanban za okolje Nextcloud.", + "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Program Deck je orodje za osebno načrtovanje in projektno delo v slogu kanban, ki se izvrstno vključuje v okolje Nextcloud.\n\nOrodje omogoča:\n- 📥 dodajanje in urejanje nalog\n- 📄 zapis dodatnih opomb v zapisu markdown\n- 🔖 dodeljevanje oznak za lažje urejanje in iskanje\n- 👥 souporabo v skupini, s prijatelji ali družino\n- 📎 pripenjanje in vstavljanje datotek v opise\n- 💬 opombe k posamezni nalogi\n- ⚡ sledenje spremembam in dejavnosti\n- 🚀 Organizaciji projekta", "Select the board to link to a project" : "Izberite zbirko za povezavo s projektom", "Select board" : "Izbor zbirke", "Add a new stack" : "Dodaj nov paket nalog", @@ -124,6 +146,7 @@ OC.L10N.register( "Deleted cards" : "Izbrisane naloge", "Status" : "Stanje", "No archived boards to display" : "Ni arhiviranih zbirk za prikaz", + "No shared boards to display" : "Ni zbirk v souporabi", "Title" : "Naslov", "Members" : "Člani", "More actions" : "Več možnosti", @@ -133,13 +156,16 @@ OC.L10N.register( "Delete board" : "Izbriši zbirko", "Update board" : "Posodobi zbirko", "Reset board" : "Ponastavi zbirko", + "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Razveljavi brisanje zbirke – ta bo sicer izbrisana med naslednjo izvedbo opravila cronjob.", "Create new board" : "Ustvari novo zbirko", "New board title" : "Naslov nove zbirke", "Create board" : "Ustvari zbirko", "Select an attachment" : "Izbor priloge", "Cancel upload" : "Prekliči pošiljanje", "by" : "s strani", + "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Razveljavi brisanje datoteke – ta bo sicer izbrisana med naslednjo izvedbo opravila cronjob.", "Undo file deletion" : "Razveljavi brisanje datoteke", + "Insert the file into the description" : "Vstavi datoteko v opis", "Delete attachment" : "Izbriši prilogo", "Modified:" : "Spremenjeno:", "Created:" : "Ustvarjeno:", @@ -164,6 +190,7 @@ OC.L10N.register( "Move board to archive" : "Premakni zbirko v arhiv", "Create a new board" : "Ustvari novo zbirko", "Settings" : "Nastavitve", - "Limit deck to groups" : "Omeji uporabo izbranim skupinam" + "Limit deck to groups" : "Omeji uporabo izbranim skupinam", + "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omejevanje programa prepreči uporabnikom, ki niso del teh skupin, ustvarjanje novih zbirk. Uporabniki bodo še vedno lahko spreminjali zbirke, ki so jih dobili v souporabo." }, "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/l10n/sl.json b/l10n/sl.json index 0ae36ecce..218926a40 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -34,21 +34,39 @@ "{user} has deleted stack {stack} on board {board}" : "Uporabnik {user} izbriše paket nalog {stack} v zbirki {board}", "You have created card {card} in stack {stack} on board {board}" : "Ustvarite nalogo {card} v paketu {stack} zbirke {board}", "{user} has created card {card} in stack {stack} on board {board}" : "Uporabnik {user} ustvari nalogo {card} v paketu {stack} zbirke {board}", + "You have deleted card {card} in stack {stack} on board {board}" : "Izbrišete nalogo {card} v paketu {stack} zbirke {board}", + "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} izbriše nalogo {card} v paketu {stack} zbirke {board}", "You have renamed the card {before} to {card}" : "Preimenujete nalogo {before} v {card}", "{user} has renamed the card {before} to {card}" : "{user} preimenuje nalogo {before} v {card}", "You have added a description to card {card} in stack {stack} on board {board}" : "Dodate opis k nalogi {card} paketa {stack} v zbirki {board}.", "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} doda opis k nalogi {card} paketa {stack} v zbirki {board}.", + "You have updated the description of card {card} in stack {stack} on board {board}" : "Posodobite opis naloge {card} v paketu {stack} zbirke {board}", + "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} posodobi opis naloge {card} v paketu {stack} zbirke {board}", + "You have archived card {card} in stack {stack} on board {board}" : "Arhivirate nalogo {card} v paketu {stack} zbirke {board}", + "{user} has archived card {card} in stack {stack} on board {board}" : "{user} arhivira nalogo {card} v paketu {stack} zbirke {board}", + "You have unarchived card {card} in stack {stack} on board {board}" : "Iz arhiva povrnete nalogo {card} v paketu {stack} zbirke {board}", + "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} iz arhiva povrne nalogo {card} v paketu {stack} zbirke {board}", + "You have removed the due date of card {card}" : "Odstranite datum preteka z naloge {card}", + "{user} has removed the due date of card {card}" : "{user} odstrani datum preteka z naloge {card}", "You have set the due date of card {card} to {after}" : "Nastavite datum preteka naloge {card} na {after}", "{user} has set the due date of card {card} to {after}" : "{user} nastavi datum preteka naloge {card} na {after}", "You have updated the due date of card {card} to {after}" : "Posodobite datum preteka naloge {card} na {after}", "{user} has updated the due date of card {card} to {after}" : "{user} posodobi datum preteka naloge {card} na {after}", "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Dodate oznako {label} k nalogi {card} paketa {stack} v zbirki {board}", "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} doda oznako {label} k nalogi {card} paketa {stack} v zbirki {board}", + "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Odstranite oznako {label} z naloge {card} paketa {stack} v zbirki {board}", + "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} odstrani oznako {label} z naloge {card} paketa {stack} v zbirki {board}", + "You have assigned {assigneduser} to card {card} on board {board}" : "Dodelite nalogo {card} v zbirki {board} → {assigneduser}", + "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} dodeli nalogo {card} v zbirki {board} → {assigneduser}", + "You have unassigned {assigneduser} from card {card} on board {board}" : "Odvzamete nalogo {card} v zbirki {board} ✕ {assigneduser}", + "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} odvzame nalogo {card} v zbirki {board} ✕ {assigneduser}", "You have moved the card {card} from stack {stackBefore} to {stack}" : "Premaknete nalogo {card} iz paketa {stackBefore} v {stack}", "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} premakne nalogo {card} iz paketa {stackBefore} v {stack}", "You have added the attachment {attachment} to card {card}" : "Dodate prilogo {attachment} k nalogi {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} doda prilogo {attachment} k nalogi {card}", + "You have updated the attachment {attachment} on card {card}" : "Posodobite prilogo {attachment} v nalogi {card}", "{user} has updated the attachment {attachment} to card {card}" : "{user} posodobi prilogo {attachment} naloge {card}", + "You have deleted the attachment {attachment} from card {card}" : "Izbišete prilogo {attachment} v nalogi {card}", "{user} has deleted the attachment {attachment} to card {card}" : "{user} izbriše prilogo {attachment} naloge {card}", "You have restored the attachment {attachment} to card {card}" : "Obnovite prilogo {attachment} k nalogi {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} obnovi prilogo {attachment} naloge {card}", @@ -59,6 +77,7 @@ "Changes in the Deck app" : "Spremembe v programu Deck", "A comment was created on a card" : "Nalogi je dodana nova opomba", "Personal" : "Osebno", + "{user} has shared the board %s with you." : "{user} vam omogoči souporabo zbirke %s.", "No data was provided to create an attachment." : "Ni podanih podatkov za ustvarjanje priloge.", "Finished" : "Končano", "To review" : "Za pregled", @@ -71,12 +90,15 @@ "Example Task 2" : "Primer naloge 2", "Example Task 1" : "Primer naloge 1", "The file was uploaded" : "Datoteka je uspešno poslana.", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Poslana datoteka presega določilo največje dovoljene velikosti v datoteki php.ini", "The file was only partially uploaded" : "Datoteka ni bila poslana v celoti", "No file was uploaded" : "Datoteka ni bila poslana", "Missing a temporary folder" : "Manjka začasna mapa", "Could not write file to disk" : "Ni mogoče zapisati datoteke na disk", "A PHP extension stopped the file upload" : "Razširitev PHP onemogoča pošiljanje datoteke", + "No file uploaded or file size exceeds maximum of %s" : "Ali ni poslane datoteke ali pa velikost datoteke presega omejitev %s", "A kanban style project and personal management tool for Nextcloud" : "Orodje za projektno in osebno vodenje nalog v slogu kanban za okolje Nextcloud.", + "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Program Deck je orodje za osebno načrtovanje in projektno delo v slogu kanban, ki se izvrstno vključuje v okolje Nextcloud.\n\nOrodje omogoča:\n- 📥 dodajanje in urejanje nalog\n- 📄 zapis dodatnih opomb v zapisu markdown\n- 🔖 dodeljevanje oznak za lažje urejanje in iskanje\n- 👥 souporabo v skupini, s prijatelji ali družino\n- 📎 pripenjanje in vstavljanje datotek v opise\n- 💬 opombe k posamezni nalogi\n- ⚡ sledenje spremembam in dejavnosti\n- 🚀 Organizaciji projekta", "Select the board to link to a project" : "Izberite zbirko za povezavo s projektom", "Select board" : "Izbor zbirke", "Add a new stack" : "Dodaj nov paket nalog", @@ -122,6 +144,7 @@ "Deleted cards" : "Izbrisane naloge", "Status" : "Stanje", "No archived boards to display" : "Ni arhiviranih zbirk za prikaz", + "No shared boards to display" : "Ni zbirk v souporabi", "Title" : "Naslov", "Members" : "Člani", "More actions" : "Več možnosti", @@ -131,13 +154,16 @@ "Delete board" : "Izbriši zbirko", "Update board" : "Posodobi zbirko", "Reset board" : "Ponastavi zbirko", + "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Razveljavi brisanje zbirke – ta bo sicer izbrisana med naslednjo izvedbo opravila cronjob.", "Create new board" : "Ustvari novo zbirko", "New board title" : "Naslov nove zbirke", "Create board" : "Ustvari zbirko", "Select an attachment" : "Izbor priloge", "Cancel upload" : "Prekliči pošiljanje", "by" : "s strani", + "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Razveljavi brisanje datoteke – ta bo sicer izbrisana med naslednjo izvedbo opravila cronjob.", "Undo file deletion" : "Razveljavi brisanje datoteke", + "Insert the file into the description" : "Vstavi datoteko v opis", "Delete attachment" : "Izbriši prilogo", "Modified:" : "Spremenjeno:", "Created:" : "Ustvarjeno:", @@ -162,6 +188,7 @@ "Move board to archive" : "Premakni zbirko v arhiv", "Create a new board" : "Ustvari novo zbirko", "Settings" : "Nastavitve", - "Limit deck to groups" : "Omeji uporabo izbranim skupinam" + "Limit deck to groups" : "Omeji uporabo izbranim skupinam", + "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omejevanje programa prepreči uporabnikom, ki niso del teh skupin, ustvarjanje novih zbirk. Uporabniki bodo še vedno lahko spreminjali zbirke, ki so jih dobili v souporabo." },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" } \ No newline at end of file From 096ff5f89f0bf8381a7cb98b5002a4243ed49a9e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 23 Nov 2019 02:25:38 +0000 Subject: [PATCH 61/77] [tx-robot] updated from transifex --- l10n/de.js | 6 +-- l10n/de.json | 6 +-- l10n/lt_LT.js | 109 ++++++++++++++++++++++++++++++++++++++++++------ l10n/lt_LT.json | 109 ++++++++++++++++++++++++++++++++++++++++++------ 4 files changed, 200 insertions(+), 30 deletions(-) diff --git a/l10n/de.js b/l10n/de.js index d79ab7018..8e5771d7c 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -99,14 +99,14 @@ OC.L10N.register( "Example Task 1" : "Beispielaufgabe 1", "The file was uploaded" : "Die Datei wurde hochgeladen", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini", - "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.", "The file was only partially uploaded" : "Die Datei konnte nur teilweise hochgeladen werden", "No file was uploaded" : "Es wurde keine Datei hochgeladen", "Missing a temporary folder" : "Kein temporärer Ordner vorhanden", "Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden", "A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt", "No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s", - "A kanban style project and personal management tool for Nextcloud" : "Ein Kanban Werkzeug für Nextcloud", + "A kanban style project and personal management tool for Nextcloud" : "Ein Kanban-Werkzeug für Nextcloud", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Füge Deine Aufgaben zu den Karten hinzu und ordne diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Vergabe von Labels für noch bessere Organisation\n- 👥 Teile mit Deinem Team, Freunden oder der Familie\n- 📎 Füge Dateien hinzu und verwende diese in Deinen Markdown-Beschreibungen\n- 💬 Diskutiere mit Deinem Team mit Kommentaren\n- ⚡ Behalte Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere Dein Projekt", "Select the board to link to a project" : "Wähle ein Board aus, um dieses mit einem Projekt zu verknüpfen", "Select board" : "Board auswählen", @@ -170,7 +170,7 @@ OC.L10N.register( "Select an attachment" : "Anhang auswählen", "Cancel upload" : "Hochladen abbrechen", "by" : "von", - "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Dateilöschung rückgängig machen - andernfalls wird die Datei beim nächsten Cron-Job-Lauf gelöscht.", + "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Dateilöschung rückgängig machen — andernfalls wird die Datei beim nächsten Cron-Job-Lauf gelöscht.", "Undo file deletion" : "Dateilöschung rückgängig machen", "Insert the file into the description" : "Füge die Datei in die Beschreibung ein", "Delete attachment" : "Anhang löschen", diff --git a/l10n/de.json b/l10n/de.json index 5b07d8a53..674c1adc9 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -97,14 +97,14 @@ "Example Task 1" : "Beispielaufgabe 1", "The file was uploaded" : "Die Datei wurde hochgeladen", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini", - "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.", "The file was only partially uploaded" : "Die Datei konnte nur teilweise hochgeladen werden", "No file was uploaded" : "Es wurde keine Datei hochgeladen", "Missing a temporary folder" : "Kein temporärer Ordner vorhanden", "Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden", "A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt", "No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s", - "A kanban style project and personal management tool for Nextcloud" : "Ein Kanban Werkzeug für Nextcloud", + "A kanban style project and personal management tool for Nextcloud" : "Ein Kanban-Werkzeug für Nextcloud", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Füge Deine Aufgaben zu den Karten hinzu und ordne diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Vergabe von Labels für noch bessere Organisation\n- 👥 Teile mit Deinem Team, Freunden oder der Familie\n- 📎 Füge Dateien hinzu und verwende diese in Deinen Markdown-Beschreibungen\n- 💬 Diskutiere mit Deinem Team mit Kommentaren\n- ⚡ Behalte Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere Dein Projekt", "Select the board to link to a project" : "Wähle ein Board aus, um dieses mit einem Projekt zu verknüpfen", "Select board" : "Board auswählen", @@ -168,7 +168,7 @@ "Select an attachment" : "Anhang auswählen", "Cancel upload" : "Hochladen abbrechen", "by" : "von", - "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Dateilöschung rückgängig machen - andernfalls wird die Datei beim nächsten Cron-Job-Lauf gelöscht.", + "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Dateilöschung rückgängig machen — andernfalls wird die Datei beim nächsten Cron-Job-Lauf gelöscht.", "Undo file deletion" : "Dateilöschung rückgängig machen", "Insert the file into the description" : "Füge die Datei in die Beschreibung ein", "Delete attachment" : "Anhang löschen", diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index 6266e30ca..f0843a2c4 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -4,11 +4,78 @@ OC.L10N.register( "Please provide a content for your comment." : "Pateikite savo komentaro turinį.", "Posting the comment failed." : "Komentaro paskelbimas patyrė nesėkmę.", "The comment has been deleted" : "Komentaras ištrintas", + "Restore associated stack" : "Atkurti susietą dėklą", "Remove user from card" : "Šalinti naudotoją iš kortelės", "Hours" : "Valandos", "Minutes" : "Minutės", + "Link to a board" : "Susieti su plokšte", + "Maximum file size of {size} exceeded" : "Viršytas maksimalus {size} failo dydis", "File already exists" : "Failas jau yra", - "Deck" : "Užduočių saugykla", + "You have created a new board {board}" : "Jūs sukūrėte naują plokštę {board}", + "{user} has created a new board {board}" : "{user} sukūrė naują plokštę {board}", + "You have deleted the board {board}" : "Jūs ištrynėte plokštę {board}", + "{user} has deleted the board {board}" : "{user} ištrynė plokštę {board}", + "You have restored the board {board}" : "Jūs atkūrėte plokštę {board}", + "{user} has restored the board {board}" : "{user} atkūrė plokštę {board}", + "You have shared the board {board} with {acl}" : "Jūs pradėjote bendrinti plokštę {board} su {acl}", + "{user} has shared the board {board} with {acl}" : "{user} pradėjo bendrinti plokštę {board} su {acl}", + "You have removed {acl} from the board {board}" : "Jūs pašalinote {acl} iš plokštės {board}", + "{user} has removed {acl} from the board {board}" : "{user} pašalino {acl} iš plokštės {board}", + "You have renamed the board {before} to {board}" : "Jūs pervadinote plokštę {before} į {board}", + "{user} has renamed the board {before} to {board}" : "{user} pervadino plokštę {before} į {board}", + "You have archived the board {board}" : "Jūs užarchyvavote plokštę {board}", + "{user} has archived the board {before}" : "{user} užarchyvavo plokštę {before}", + "You have unarchived the board {board}" : "Jūs išarchyvavote plokštę {board}", + "{user} has unarchived the board {before}" : "{user} išarchyvavo plokštę {before}", + "You have created a new stack {stack} on board {board}" : "Jūs plokštėje {board} sukūrėte naują dėklą {stack}", + "{user} has created a new stack {stack} on board {board}" : "{user} plokštėje {board} sukūrė naują dėklą {stack}", + "You have renamed stack {before} to {stack} on board {board}" : "Jūs plokštėje {board} pervadinote dėklą {before} į {stack}", + "{user} has renamed stack {before} to {stack} on board {board}" : "{user} plokštėje {board} pervadino dėklą {before} į {stack}", + "You have deleted stack {stack} on board {board}" : "Jūs plokštėje {board} ištrynėte dėklą {stack}", + "{user} has deleted stack {stack} on board {board}" : "{user} plokštėje {board} ištrynė dėklą {stack}", + "You have created card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} sukūrėte kortelę {card}", + "{user} has created card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} sukūrė kortelę {card}", + "You have deleted card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} ištrynėte kortelę {card}", + "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} ištrynė kortelę {card} ", + "You have renamed the card {before} to {card}" : "Jūs pervadinote kortelę {before} į {card}", + "{user} has renamed the card {before} to {card}" : "{user} pervadino kortelę {before} į {card}", + "You have added a description to card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} į kortelę {card} pridėjote aprašą", + "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} į kortelę {card} pridėjo aprašą", + "You have updated the description of card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} atnaujinote kortelės {card} aprašą", + "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} atnaujino kortelės {card} aprašą", + "You have archived card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} užarchyvavote kortelę {card}", + "{user} has archived card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} užarchyvavo kortelę {card}", + "You have unarchived card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} išarchyvavote kortelę {card}", + "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} išarchyvavo kortelę {card}", + "You have removed the due date of card {card}" : "Jūs pašalinote galutinį kortelės {card} terminą", + "{user} has removed the due date of card {card}" : "{user} pašalino galutinį kortelės {card} terminą", + "You have set the due date of card {card} to {after}" : "Jūs nustatėte galutinį kortelės {card} terminą į {after}", + "{user} has set the due date of card {card} to {after}" : "{user} nustatė galutinį kortelės {card} terminą į {after}", + "You have updated the due date of card {card} to {after}" : "Jūs atnaujinote galutinį kortelės {card} terminą į {after}", + "{user} has updated the due date of card {card} to {after}" : "{user} atnaujino galutinį kortelės {card} terminą į {after}", + "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} į kortelę {card} pridėjote žymę {label}", + "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} į kortelę {card} pridėjo žymę {label}", + "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} iš kortelės {card} pašalinote žymę {label}", + "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} iš kortelės {card} pašalino žymę {label}", + "You have assigned {assigneduser} to card {card} on board {board}" : "Jūs plokštėje {board} prie kortelės {card} priskyrėte {assigneduser}", + "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} plokštėje {board} prie kortelės {card} priskyrė {assigneduser}", + "You have moved the card {card} from stack {stackBefore} to {stack}" : "Jūs perkėlėte kortelę {card} iš dėklo {stackBefore} į dėklą {stack}", + "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} perkėlė kortelę {card} iš dėklo {stackBefore} į dėklą {stack}", + "You have added the attachment {attachment} to card {card}" : "Jūs pridėjote priedą {attachment} į kortelę {card}", + "{user} has added the attachment {attachment} to card {card}" : "{user} pridėjo priedą {attachment} į kortelę {card}", + "You have updated the attachment {attachment} on card {card}" : "Jūs atnaujinote priedą {attachment} kortelėje {card}", + "{user} has updated the attachment {attachment} to card {card}" : "{user} atnaujino priedą {attachment} kortelėje {card}", + "You have deleted the attachment {attachment} from card {card}" : "Jūs ištrynėte priedą {attachment} iš kortelės {card}", + "{user} has deleted the attachment {attachment} to card {card}" : "{user} ištrynė priedą {attachment} iš kortelės {card}", + "You have restored the attachment {attachment} to card {card}" : "Jūs atkūrėte priedą {attachment} į kortelę {card}", + "{user} has restored the attachment {attachment} to card {card}" : "{user} atkūrė priedą {attachment} į kortelę {card}", + "You have commented on card {card}" : "Jūs pakomentavote kortelėje {card}", + "{user} has commented on card {card}" : "{user} pakomentavo kortelėje {card}", + "Deck" : "Darbai", + "A comment was created on a card" : "Kortelėje buvo sukurtas comment", + "Personal" : "Asmeniniai", + "{user} has mentioned you in a comment on \"%s\"." : "{user} paminėjo jus komentare ties \"%s\".", + "{user} has shared the board %s with you." : "{user} pradėjo su jumis bendrinti plokštę %s.", "No data was provided to create an attachment." : "Priedo sukūrimui nebuvo pateikta jokių duomenų.", "Finished" : "Baigta", "To review" : "Reikia peržiūrėti", @@ -28,15 +95,23 @@ OC.L10N.register( "Missing a temporary folder" : "Trūksta laikinojo aplanko", "Could not write file to disk" : "Nepavyko įrašyti failą į diską", "A PHP extension stopped the file upload" : "PHP plėtinys sustabdė failo įkėlimą", + "No file uploaded or file size exceeds maximum of %s" : "Neįkeltas joks failas arba failo dydis viršija maksimalų %s dydį", "Add a new stack" : "Pridėti naują dėklą", "Submit" : "Pateikti", "Show archived cards" : "Rodyti archyvuotas korteles", "Hide archived cards" : "Slėpti archyvuotas korteles", - "All Boards" : "Visi užduočių sąrašai", - "Archived boards" : "Archyvuoti sąrašai", + "Toggle compact mode" : "Perjungti kompaktišką veikseną", + "Show board details" : "Rodyti išsamesnę plokštės informaciją", + "All Boards" : "Visos plokštės", + "Archived boards" : "Archyvuotos plokštės", + "Share board" : "Bendrinti plokštę", + "Archived cards" : "Archyvuotos kortelės", "Actions" : "Veiksmai", "Drop your files here to upload it to the card" : "Vilkite savo failus čia, norėdami įkelti juos į kortelę", "Assign card to me" : "Priskirti kortelę sau", + "Archive card" : "Archyvuoti kortelę", + "Unarchive card" : "Išarchyvuoti kortelę", + "Delete card" : "Ištrinti kortelę", "Enter a card title" : "Įveskite kortelės pavadinimą", "Add card" : "Pridėti kortelę", "Close" : "Užverti", @@ -58,24 +133,34 @@ OC.L10N.register( "Create" : "Sukurti", "Create a new tag" : "Sukurti naują žymę", "Deleted stacks" : "Ištrinti dėklai", + "Deleted cards" : "Ištrintos kortelės", "Status" : "Būsena", "Title" : "Pavadinimas", "Members" : "Nariai", "More actions" : "Daugiau veiksmų", - "Edit board" : "Taisyti sąrašą", - "Archive board" : "Archyvuoti sąrašą", - "Unarchive board" : "Išskleisti sąrašą", - "Delete board" : "Pašalinti sąrašą", - "Create new board" : "Sukurti naują sąrašą", - "New board title" : "Naujas sąrašo vardas", + "Edit board" : "Taisyti plokštę", + "Archive board" : "Archyvuoti plokštę", + "Unarchive board" : "Išarchyvuoti plokštę", + "Delete board" : "Ištrinti plokštę", + "Update board" : "Atnaujinti plokštę", + "Reset board" : "Atstatyti plokštę", + "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Atšaukti plokštės ištrynimą - Priešingu atveju, plokštė bus ištrinta kitos cron užduoties vykdymo metu.", + "Create new board" : "Sukurti naują plokštę", + "New board title" : "Naujos plokštės pavadinimas", + "Create board" : "Sukurti plokštę", "Cancel upload" : "Atsisakyti įkėlimo", + "by" : "pagal", + "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Atšaukti failo ištrynimą - Priešingu atveju, failas bus ištrintas kitos cron užduoties vykdymo metu.", "Undo file deletion" : "Atšaukti failo ištrynimą", "Insert the file into the description" : "Įterpti failą į aprašą", "Delete attachment" : "Ištrinti priedą", "Modified:" : "Keitimo laikas:", "Created:" : "Sukūrimo laikas:", + "Choose a tag" : "Pasirinkite žymę", "Add a tag" : "Pridėti žymę", + "Select tags" : "Pasirinkti žymes", "Assign users" : "Priskirti naudotojus", + "Choose a user to assign" : "Pasirinkite naudotoją, kuriam priskirti", "Assign this card to a user" : "Priskirti šią kortelę naudotojui", "Due date" : "Terminas", "Click to set" : "Spustelėkite pakeitimams atlikti", @@ -88,9 +173,9 @@ OC.L10N.register( "Formatting help" : "Formatavimo pagalba", "Upload attachment" : "Įkelti priedą", "Add a card description…" : "Pridėti elemento apibūdinimą...", - "Shared boards" : "Bendrinami sąrašai", - "Move board to archive" : "Perkelti sąrašą į archyvą", - "Create a new board" : "Sukurti naują sąrašą", + "Shared boards" : "Bendrinamos plokštės", + "Move board to archive" : "Perkelti plokštę į archyvą", + "Create a new board" : "Sukurti naują plokštę", "Settings" : "Nustatymai" }, "nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"); diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index b657ef167..fd449fe25 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -2,11 +2,78 @@ "Please provide a content for your comment." : "Pateikite savo komentaro turinį.", "Posting the comment failed." : "Komentaro paskelbimas patyrė nesėkmę.", "The comment has been deleted" : "Komentaras ištrintas", + "Restore associated stack" : "Atkurti susietą dėklą", "Remove user from card" : "Šalinti naudotoją iš kortelės", "Hours" : "Valandos", "Minutes" : "Minutės", + "Link to a board" : "Susieti su plokšte", + "Maximum file size of {size} exceeded" : "Viršytas maksimalus {size} failo dydis", "File already exists" : "Failas jau yra", - "Deck" : "Užduočių saugykla", + "You have created a new board {board}" : "Jūs sukūrėte naują plokštę {board}", + "{user} has created a new board {board}" : "{user} sukūrė naują plokštę {board}", + "You have deleted the board {board}" : "Jūs ištrynėte plokštę {board}", + "{user} has deleted the board {board}" : "{user} ištrynė plokštę {board}", + "You have restored the board {board}" : "Jūs atkūrėte plokštę {board}", + "{user} has restored the board {board}" : "{user} atkūrė plokštę {board}", + "You have shared the board {board} with {acl}" : "Jūs pradėjote bendrinti plokštę {board} su {acl}", + "{user} has shared the board {board} with {acl}" : "{user} pradėjo bendrinti plokštę {board} su {acl}", + "You have removed {acl} from the board {board}" : "Jūs pašalinote {acl} iš plokštės {board}", + "{user} has removed {acl} from the board {board}" : "{user} pašalino {acl} iš plokštės {board}", + "You have renamed the board {before} to {board}" : "Jūs pervadinote plokštę {before} į {board}", + "{user} has renamed the board {before} to {board}" : "{user} pervadino plokštę {before} į {board}", + "You have archived the board {board}" : "Jūs užarchyvavote plokštę {board}", + "{user} has archived the board {before}" : "{user} užarchyvavo plokštę {before}", + "You have unarchived the board {board}" : "Jūs išarchyvavote plokštę {board}", + "{user} has unarchived the board {before}" : "{user} išarchyvavo plokštę {before}", + "You have created a new stack {stack} on board {board}" : "Jūs plokštėje {board} sukūrėte naują dėklą {stack}", + "{user} has created a new stack {stack} on board {board}" : "{user} plokštėje {board} sukūrė naują dėklą {stack}", + "You have renamed stack {before} to {stack} on board {board}" : "Jūs plokštėje {board} pervadinote dėklą {before} į {stack}", + "{user} has renamed stack {before} to {stack} on board {board}" : "{user} plokštėje {board} pervadino dėklą {before} į {stack}", + "You have deleted stack {stack} on board {board}" : "Jūs plokštėje {board} ištrynėte dėklą {stack}", + "{user} has deleted stack {stack} on board {board}" : "{user} plokštėje {board} ištrynė dėklą {stack}", + "You have created card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} sukūrėte kortelę {card}", + "{user} has created card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} sukūrė kortelę {card}", + "You have deleted card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} ištrynėte kortelę {card}", + "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} ištrynė kortelę {card} ", + "You have renamed the card {before} to {card}" : "Jūs pervadinote kortelę {before} į {card}", + "{user} has renamed the card {before} to {card}" : "{user} pervadino kortelę {before} į {card}", + "You have added a description to card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} į kortelę {card} pridėjote aprašą", + "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} į kortelę {card} pridėjo aprašą", + "You have updated the description of card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} atnaujinote kortelės {card} aprašą", + "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} atnaujino kortelės {card} aprašą", + "You have archived card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} užarchyvavote kortelę {card}", + "{user} has archived card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} užarchyvavo kortelę {card}", + "You have unarchived card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} išarchyvavote kortelę {card}", + "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} išarchyvavo kortelę {card}", + "You have removed the due date of card {card}" : "Jūs pašalinote galutinį kortelės {card} terminą", + "{user} has removed the due date of card {card}" : "{user} pašalino galutinį kortelės {card} terminą", + "You have set the due date of card {card} to {after}" : "Jūs nustatėte galutinį kortelės {card} terminą į {after}", + "{user} has set the due date of card {card} to {after}" : "{user} nustatė galutinį kortelės {card} terminą į {after}", + "You have updated the due date of card {card} to {after}" : "Jūs atnaujinote galutinį kortelės {card} terminą į {after}", + "{user} has updated the due date of card {card} to {after}" : "{user} atnaujino galutinį kortelės {card} terminą į {after}", + "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} į kortelę {card} pridėjote žymę {label}", + "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} į kortelę {card} pridėjo žymę {label}", + "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} iš kortelės {card} pašalinote žymę {label}", + "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} iš kortelės {card} pašalino žymę {label}", + "You have assigned {assigneduser} to card {card} on board {board}" : "Jūs plokštėje {board} prie kortelės {card} priskyrėte {assigneduser}", + "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} plokštėje {board} prie kortelės {card} priskyrė {assigneduser}", + "You have moved the card {card} from stack {stackBefore} to {stack}" : "Jūs perkėlėte kortelę {card} iš dėklo {stackBefore} į dėklą {stack}", + "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} perkėlė kortelę {card} iš dėklo {stackBefore} į dėklą {stack}", + "You have added the attachment {attachment} to card {card}" : "Jūs pridėjote priedą {attachment} į kortelę {card}", + "{user} has added the attachment {attachment} to card {card}" : "{user} pridėjo priedą {attachment} į kortelę {card}", + "You have updated the attachment {attachment} on card {card}" : "Jūs atnaujinote priedą {attachment} kortelėje {card}", + "{user} has updated the attachment {attachment} to card {card}" : "{user} atnaujino priedą {attachment} kortelėje {card}", + "You have deleted the attachment {attachment} from card {card}" : "Jūs ištrynėte priedą {attachment} iš kortelės {card}", + "{user} has deleted the attachment {attachment} to card {card}" : "{user} ištrynė priedą {attachment} iš kortelės {card}", + "You have restored the attachment {attachment} to card {card}" : "Jūs atkūrėte priedą {attachment} į kortelę {card}", + "{user} has restored the attachment {attachment} to card {card}" : "{user} atkūrė priedą {attachment} į kortelę {card}", + "You have commented on card {card}" : "Jūs pakomentavote kortelėje {card}", + "{user} has commented on card {card}" : "{user} pakomentavo kortelėje {card}", + "Deck" : "Darbai", + "A comment was created on a card" : "Kortelėje buvo sukurtas comment", + "Personal" : "Asmeniniai", + "{user} has mentioned you in a comment on \"%s\"." : "{user} paminėjo jus komentare ties \"%s\".", + "{user} has shared the board %s with you." : "{user} pradėjo su jumis bendrinti plokštę %s.", "No data was provided to create an attachment." : "Priedo sukūrimui nebuvo pateikta jokių duomenų.", "Finished" : "Baigta", "To review" : "Reikia peržiūrėti", @@ -26,15 +93,23 @@ "Missing a temporary folder" : "Trūksta laikinojo aplanko", "Could not write file to disk" : "Nepavyko įrašyti failą į diską", "A PHP extension stopped the file upload" : "PHP plėtinys sustabdė failo įkėlimą", + "No file uploaded or file size exceeds maximum of %s" : "Neįkeltas joks failas arba failo dydis viršija maksimalų %s dydį", "Add a new stack" : "Pridėti naują dėklą", "Submit" : "Pateikti", "Show archived cards" : "Rodyti archyvuotas korteles", "Hide archived cards" : "Slėpti archyvuotas korteles", - "All Boards" : "Visi užduočių sąrašai", - "Archived boards" : "Archyvuoti sąrašai", + "Toggle compact mode" : "Perjungti kompaktišką veikseną", + "Show board details" : "Rodyti išsamesnę plokštės informaciją", + "All Boards" : "Visos plokštės", + "Archived boards" : "Archyvuotos plokštės", + "Share board" : "Bendrinti plokštę", + "Archived cards" : "Archyvuotos kortelės", "Actions" : "Veiksmai", "Drop your files here to upload it to the card" : "Vilkite savo failus čia, norėdami įkelti juos į kortelę", "Assign card to me" : "Priskirti kortelę sau", + "Archive card" : "Archyvuoti kortelę", + "Unarchive card" : "Išarchyvuoti kortelę", + "Delete card" : "Ištrinti kortelę", "Enter a card title" : "Įveskite kortelės pavadinimą", "Add card" : "Pridėti kortelę", "Close" : "Užverti", @@ -56,24 +131,34 @@ "Create" : "Sukurti", "Create a new tag" : "Sukurti naują žymę", "Deleted stacks" : "Ištrinti dėklai", + "Deleted cards" : "Ištrintos kortelės", "Status" : "Būsena", "Title" : "Pavadinimas", "Members" : "Nariai", "More actions" : "Daugiau veiksmų", - "Edit board" : "Taisyti sąrašą", - "Archive board" : "Archyvuoti sąrašą", - "Unarchive board" : "Išskleisti sąrašą", - "Delete board" : "Pašalinti sąrašą", - "Create new board" : "Sukurti naują sąrašą", - "New board title" : "Naujas sąrašo vardas", + "Edit board" : "Taisyti plokštę", + "Archive board" : "Archyvuoti plokštę", + "Unarchive board" : "Išarchyvuoti plokštę", + "Delete board" : "Ištrinti plokštę", + "Update board" : "Atnaujinti plokštę", + "Reset board" : "Atstatyti plokštę", + "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Atšaukti plokštės ištrynimą - Priešingu atveju, plokštė bus ištrinta kitos cron užduoties vykdymo metu.", + "Create new board" : "Sukurti naują plokštę", + "New board title" : "Naujos plokštės pavadinimas", + "Create board" : "Sukurti plokštę", "Cancel upload" : "Atsisakyti įkėlimo", + "by" : "pagal", + "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Atšaukti failo ištrynimą - Priešingu atveju, failas bus ištrintas kitos cron užduoties vykdymo metu.", "Undo file deletion" : "Atšaukti failo ištrynimą", "Insert the file into the description" : "Įterpti failą į aprašą", "Delete attachment" : "Ištrinti priedą", "Modified:" : "Keitimo laikas:", "Created:" : "Sukūrimo laikas:", + "Choose a tag" : "Pasirinkite žymę", "Add a tag" : "Pridėti žymę", + "Select tags" : "Pasirinkti žymes", "Assign users" : "Priskirti naudotojus", + "Choose a user to assign" : "Pasirinkite naudotoją, kuriam priskirti", "Assign this card to a user" : "Priskirti šią kortelę naudotojui", "Due date" : "Terminas", "Click to set" : "Spustelėkite pakeitimams atlikti", @@ -86,9 +171,9 @@ "Formatting help" : "Formatavimo pagalba", "Upload attachment" : "Įkelti priedą", "Add a card description…" : "Pridėti elemento apibūdinimą...", - "Shared boards" : "Bendrinami sąrašai", - "Move board to archive" : "Perkelti sąrašą į archyvą", - "Create a new board" : "Sukurti naują sąrašą", + "Shared boards" : "Bendrinamos plokštės", + "Move board to archive" : "Perkelti plokštę į archyvą", + "Create a new board" : "Sukurti naują plokštę", "Settings" : "Nustatymai" },"pluralForm" :"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);" } \ No newline at end of file From d3e61ead5781e40259ebea6ce02a680a960300d0 Mon Sep 17 00:00:00 2001 From: Thomas Cassaert Date: Sat, 23 Nov 2019 15:24:13 +0100 Subject: [PATCH 62/77] Added request body for the creation of stacks in API docs Signed-off-by: Thomas Cassaert --- docs/API.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/API.md b/docs/API.md index 65b0bfc44..be877cd66 100644 --- a/docs/API.md +++ b/docs/API.md @@ -433,6 +433,13 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit ### POST /boards/{boardId}/stacks - Create a new stack +#### Request body + +| Parameter | Type | Description | +| --------- | ------- | ---------------------------------------------------- | +| title | String | The title of the new stack | +| order | Integer | Order for sorting the stacks | + #### Request parameters | Parameter | Type | Description | From acb91b500eed87ea3bfa290051e865a38efe7972 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 25 Nov 2019 02:25:15 +0000 Subject: [PATCH 63/77] [tx-robot] updated from transifex --- l10n/de_DE.js | 2 +- l10n/de_DE.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 892942172..c6d0750d4 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -106,7 +106,7 @@ OC.L10N.register( "Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden", "A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt", "No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s", - "A kanban style project and personal management tool for Nextcloud" : "Ein Kanban Werkzeug für Nextcloud", + "A kanban style project and personal management tool for Nextcloud" : "Ein Kanban-Werkzeug für Nextcloud", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Fügen Sie Ihre Aufgaben zu den Karten hinzu und ordnen Sie diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisung von Labels für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 📎 Fügen Sie Dateien hinzu und verwende diese in Ihren Markdown-Beschreibungen\n- 💬 Diskutieren Sie mit Ihrem Team mit Kommentaren\n- ⚡ Behalten Sie Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisieren Sie Ihr Projekt", "Select the board to link to a project" : "Wählen Sie ein Board aus, um dieses mit einem Projekt zu verknüpfen", "Select board" : "Board auswählen", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 469403d14..c5e86e4f0 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -104,7 +104,7 @@ "Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden", "A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt", "No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s", - "A kanban style project and personal management tool for Nextcloud" : "Ein Kanban Werkzeug für Nextcloud", + "A kanban style project and personal management tool for Nextcloud" : "Ein Kanban-Werkzeug für Nextcloud", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Fügen Sie Ihre Aufgaben zu den Karten hinzu und ordnen Sie diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisung von Labels für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 📎 Fügen Sie Dateien hinzu und verwende diese in Ihren Markdown-Beschreibungen\n- 💬 Diskutieren Sie mit Ihrem Team mit Kommentaren\n- ⚡ Behalten Sie Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisieren Sie Ihr Projekt", "Select the board to link to a project" : "Wählen Sie ein Board aus, um dieses mit einem Projekt zu verknüpfen", "Select board" : "Board auswählen", From af607f69b81cec3bc640cff5fbce976a1150a051 Mon Sep 17 00:00:00 2001 From: rakekniven Date: Wed, 27 Nov 2019 19:25:26 +0100 Subject: [PATCH 64/77] l10n: Fixed some grammar Reported at Transifex. Signed-off-by: rakekniven --- lib/Activity/ActivityManager.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Activity/ActivityManager.php b/lib/Activity/ActivityManager.php index 00f1be644..a432f63e4 100644 --- a/lib/Activity/ActivityManager.php +++ b/lib/Activity/ActivityManager.php @@ -223,10 +223,10 @@ class ActivityManager { $subject = $ownActivity ? $this->l10n->t('You have added the attachment {attachment} to card {card}') : $this->l10n->t('{user} has added the attachment {attachment} to card {card}'); break; case self::SUBJECT_ATTACHMENT_UPDATE: - $subject = $ownActivity ? $this->l10n->t('You have updated the attachment {attachment} on card {card}') : $this->l10n->t('{user} has updated the attachment {attachment} to card {card}'); + $subject = $ownActivity ? $this->l10n->t('You have updated the attachment {attachment} on card {card}') : $this->l10n->t('{user} has updated the attachment {attachment} on card {card}'); break; case self::SUBJECT_ATTACHMENT_DELETE: - $subject = $ownActivity ? $this->l10n->t('You have deleted the attachment {attachment} from card {card}') : $this->l10n->t('{user} has deleted the attachment {attachment} to card {card}'); + $subject = $ownActivity ? $this->l10n->t('You have deleted the attachment {attachment} from card {card}') : $this->l10n->t('{user} has deleted the attachment {attachment} from card {card}'); break; case self::SUBJECT_ATTACHMENT_RESTORE: $subject = $ownActivity ? $this->l10n->t('You have restored the attachment {attachment} to card {card}') : $this->l10n->t('{user} has restored the attachment {attachment} to card {card}'); From 394c0d187f55cefb008c2d40291f385d8acaca16 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 28 Nov 2019 02:26:58 +0000 Subject: [PATCH 65/77] [tx-robot] updated from transifex --- l10n/ca.js | 2 -- l10n/ca.json | 2 -- l10n/cs.js | 26 ++++++++++++-------------- l10n/cs.json | 26 ++++++++++++-------------- l10n/de.js | 2 -- l10n/de.json | 2 -- l10n/de_DE.js | 2 -- l10n/de_DE.json | 2 -- l10n/eo.js | 2 -- l10n/eo.json | 2 -- l10n/es.js | 2 -- l10n/es.json | 2 -- l10n/fi.js | 2 -- l10n/fi.json | 2 -- l10n/fr.js | 2 -- l10n/fr.json | 2 -- l10n/gl.js | 2 -- l10n/gl.json | 2 -- l10n/hr.js | 2 -- l10n/hr.json | 2 -- l10n/hu.js | 2 -- l10n/hu.json | 2 -- l10n/is.js | 2 -- l10n/is.json | 2 -- l10n/it.js | 2 -- l10n/it.json | 2 -- l10n/ja.js | 2 -- l10n/ja.json | 2 -- l10n/lt_LT.js | 2 -- l10n/lt_LT.json | 2 -- l10n/nb.js | 2 -- l10n/nb.json | 2 -- l10n/nl.js | 2 -- l10n/nl.json | 2 -- l10n/pl.js | 2 -- l10n/pl.json | 2 -- l10n/pt_BR.js | 2 -- l10n/pt_BR.json | 2 -- l10n/ru.js | 2 -- l10n/ru.json | 2 -- l10n/sk.js | 2 -- l10n/sk.json | 2 -- l10n/sl.js | 2 -- l10n/sl.json | 2 -- l10n/sr.js | 2 -- l10n/sr.json | 2 -- l10n/sv.js | 2 -- l10n/sv.json | 2 -- l10n/tr.js | 2 -- l10n/tr.json | 2 -- l10n/zh_CN.js | 2 -- l10n/zh_CN.json | 2 -- 52 files changed, 24 insertions(+), 128 deletions(-) diff --git a/l10n/ca.js b/l10n/ca.js index 5e6d08752..037fb69ac 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Heu afegit l'adjunt {attachment} a la targeta {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} ha afegit l'adjunt {attachment} a la targeta {card}", "You have updated the attachment {attachment} on card {card}" : "Heu actualitzat l'adjunt {attachment} a la targeta {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} ha actualitzat l'adjunt {attachment} a la targeta {card}", "You have deleted the attachment {attachment} from card {card}" : "Heu suprimit l'adjunt {attachment} de la targeta {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} ha suprimit l'adjunt {attachment} de la targeta {card}", "You have restored the attachment {attachment} to card {card}" : "Heu restaurat l'adjunt {attachment} a la targeta {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} ha restaurat l'adjunt {attachment} a la targeta {card}", "You have commented on card {card}" : "Heu comentat la targeta {card}", diff --git a/l10n/ca.json b/l10n/ca.json index 5ef3b37a0..52ef6c504 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Heu afegit l'adjunt {attachment} a la targeta {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} ha afegit l'adjunt {attachment} a la targeta {card}", "You have updated the attachment {attachment} on card {card}" : "Heu actualitzat l'adjunt {attachment} a la targeta {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} ha actualitzat l'adjunt {attachment} a la targeta {card}", "You have deleted the attachment {attachment} from card {card}" : "Heu suprimit l'adjunt {attachment} de la targeta {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} ha suprimit l'adjunt {attachment} de la targeta {card}", "You have restored the attachment {attachment} to card {card}" : "Heu restaurat l'adjunt {attachment} a la targeta {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} ha restaurat l'adjunt {attachment} a la targeta {card}", "You have commented on card {card}" : "Heu comentat la targeta {card}", diff --git a/l10n/cs.js b/l10n/cs.js index 2da2ef89e..8b004f69f 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -67,26 +67,24 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Přidali jste přílohu {attachment} ke kartě {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} přidal(a) přílohu {attachment} ke kartě {card}", "You have updated the attachment {attachment} on card {card}" : "Aktualizovali jste přílohu {attachment} na kartě {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} aktualizoval(a) přílohu {attachment} ke kartě {card}", "You have deleted the attachment {attachment} from card {card}" : "Smazali jste přílohu {attachment} u karty {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} smazal(a) přílohu {attachment} u karty {card}", "You have restored the attachment {attachment} to card {card}" : "Obnovili jste přílohu {attachment} ke kartě {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} obnovil(a) přílohu {attachment} ke kartě {card}", "You have commented on card {card}" : "Přidali jste komentář na kartě {card}", "{user} has commented on card {card}" : "{user} přidal(a) komentář na kartě {card}", - "A card description inside the Deck app has been changed" : "Popis mapy v Deck-aplikace byl změněn", + "A card description inside the Deck app has been changed" : "Popis karty v Deck-aplikace byl změněn", "Deck" : "Balík", "Changes in the Deck app" : "Změny v Deck aplikace", "A comment was created on a card" : "Na kartě byl vytvořen komentář", "Personal" : "Osobní", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kartu „%s“ na „%s“ vám přiřadil(a) %s.", "{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vám přiřadil(a) kartu „%s“ na „%s“.", - "The card \"%s\" on \"%s\" has reached its due date." : "U karty \"%s\" z tabule \"%s\" nastalo plánované datum dokončení.", + "The card \"%s\" on \"%s\" has reached its due date." : "U karty „%s“ z tabule „%s“ nastalo plánované datum dokončení.", "%s has mentioned you in a comment on \"%s\"." : "%s vás zmínil(a) v komentáři k „%s“.", "{user} has mentioned you in a comment on \"%s\"." : "{user} vás zmínil(a) v komentáři v „%s“.", "The board \"%s\" has been shared with you by %s." : "Uživatel %s vám nasdílel(a) tabuli „%s“.", "{user} has shared the board %s with you." : "{user} vám nasdílel(a) tabuli %s.", - "No data was provided to create an attachment." : "Žádná data k vytvoření přílohy.", + "No data was provided to create an attachment." : "Nebyla poskytnuta žádná data pro vytvoření přílohy.", "Finished" : "Dokončeno", "To review" : "K revizi", "Action needed" : "Nutná akce", @@ -98,7 +96,7 @@ OC.L10N.register( "Example Task 2" : "Druhý úkol pro ukázku", "Example Task 1" : "První úkol pro ukázku", "The file was uploaded" : "Soubor byl nahrán", - "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Nahrávaný soubor přesahuje nastavení upload_max_filesize v php.ini", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Velikost nahrávaného souboru překračuje limit nastavení direktivou upload_max_filesize v php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Nahrávaný soubor přesáhl svou velikostí hodnotu direktivy MAX_FILE_SIZE, určenou v HTML formuláři", "The file was only partially uploaded" : "Soubor byl nahrán pouze z části", "No file was uploaded" : "Nebyl nahrán žádný soubor", @@ -116,12 +114,12 @@ OC.L10N.register( "Hide archived cards" : "Skrýt archivované karty", "Toggle compact mode" : "Vyp/zap. kompaktní režim", "Show board details" : "Zobrazit podrobnosti o tabuli", - "All Boards" : "Všechny desky", + "All Boards" : "Všechny tabule", "Archived boards" : "Archivované desky", "Share board" : "Sdílet tabuli", "Archived cards" : "Archivované karty", "Actions" : "Akce", - "Drop your files here to upload it to the card" : "Přetáhněte soubor sem, pokud jej chcete připojit ke kartě.", + "Drop your files here to upload it to the card" : "Soubory ke kartě připojíte přetažením sem", "Assign card to me" : "Přiřadit kartu mě", "Unassign card from me" : "Zrušit přiřazení karty mě", "Archive card" : "Archivovat kartu", @@ -142,8 +140,8 @@ OC.L10N.register( "Edit" : "Upravit", "Share" : "Sdílet", "Manage" : "Spravovat", - "Discard share" : "Zrušit sdílení", - "Sharing has been disabled for your account." : "Sdílení bylo zakázáno pro váš konto.", + "Discard share" : "Zahodit sdílení", + "Sharing has been disabled for your account." : "Sdílení bylo pro váš účet zakázáno.", "Update tag" : "Aktualizovat štítek", "Edit tag" : "Upravit štítek", "Delete tag" : "Smazat štítek", @@ -172,9 +170,9 @@ OC.L10N.register( "by" : "od", "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátit smazání souboru – v opačném případě bude soubor trvale smazán při dalším běhu cronjobu.", "Undo file deletion" : "Vzít zpět smazání souboru", - "Insert the file into the description" : "Vložte soubor do popisku.", + "Insert the file into the description" : "Vložte soubor do popisu", "Delete attachment" : "Smazat přílohu", - "Modified:" : "Upraveno:", + "Modified:" : "Změněno:", "Created:" : "Vytvořeno:", "Choose a tag" : "Vyberte štítek", "Add a tag" : "Přidat štítek", @@ -197,7 +195,7 @@ OC.L10N.register( "Move board to archive" : "Přesunout tabuli do archivu", "Create a new board" : "Vytvořit novou tabuli", "Settings" : "Nastavení", - "Limit deck to groups" : "Omezte Deck na skupiny", - "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení Decků brání uživatelům, kteří nejsou součástí těchto skupin, při vytváření vlastních desek. Uživatelé mohou stále pracovat na deskách, které jsou s nimi sdíleny." + "Limit deck to groups" : "Omezit Deck na skupiny", + "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení Decků brání uživatelům, kteří nejsou součástí těchto skupin, při vytváření vlastních tabulí. Uživatelé mohou stále pracovat na tabulích, které jsou s nimi sdíleny." }, "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"); diff --git a/l10n/cs.json b/l10n/cs.json index d531fc693..e78b3390c 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -65,26 +65,24 @@ "You have added the attachment {attachment} to card {card}" : "Přidali jste přílohu {attachment} ke kartě {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} přidal(a) přílohu {attachment} ke kartě {card}", "You have updated the attachment {attachment} on card {card}" : "Aktualizovali jste přílohu {attachment} na kartě {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} aktualizoval(a) přílohu {attachment} ke kartě {card}", "You have deleted the attachment {attachment} from card {card}" : "Smazali jste přílohu {attachment} u karty {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} smazal(a) přílohu {attachment} u karty {card}", "You have restored the attachment {attachment} to card {card}" : "Obnovili jste přílohu {attachment} ke kartě {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} obnovil(a) přílohu {attachment} ke kartě {card}", "You have commented on card {card}" : "Přidali jste komentář na kartě {card}", "{user} has commented on card {card}" : "{user} přidal(a) komentář na kartě {card}", - "A card description inside the Deck app has been changed" : "Popis mapy v Deck-aplikace byl změněn", + "A card description inside the Deck app has been changed" : "Popis karty v Deck-aplikace byl změněn", "Deck" : "Balík", "Changes in the Deck app" : "Změny v Deck aplikace", "A comment was created on a card" : "Na kartě byl vytvořen komentář", "Personal" : "Osobní", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kartu „%s“ na „%s“ vám přiřadil(a) %s.", "{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vám přiřadil(a) kartu „%s“ na „%s“.", - "The card \"%s\" on \"%s\" has reached its due date." : "U karty \"%s\" z tabule \"%s\" nastalo plánované datum dokončení.", + "The card \"%s\" on \"%s\" has reached its due date." : "U karty „%s“ z tabule „%s“ nastalo plánované datum dokončení.", "%s has mentioned you in a comment on \"%s\"." : "%s vás zmínil(a) v komentáři k „%s“.", "{user} has mentioned you in a comment on \"%s\"." : "{user} vás zmínil(a) v komentáři v „%s“.", "The board \"%s\" has been shared with you by %s." : "Uživatel %s vám nasdílel(a) tabuli „%s“.", "{user} has shared the board %s with you." : "{user} vám nasdílel(a) tabuli %s.", - "No data was provided to create an attachment." : "Žádná data k vytvoření přílohy.", + "No data was provided to create an attachment." : "Nebyla poskytnuta žádná data pro vytvoření přílohy.", "Finished" : "Dokončeno", "To review" : "K revizi", "Action needed" : "Nutná akce", @@ -96,7 +94,7 @@ "Example Task 2" : "Druhý úkol pro ukázku", "Example Task 1" : "První úkol pro ukázku", "The file was uploaded" : "Soubor byl nahrán", - "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Nahrávaný soubor přesahuje nastavení upload_max_filesize v php.ini", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Velikost nahrávaného souboru překračuje limit nastavení direktivou upload_max_filesize v php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Nahrávaný soubor přesáhl svou velikostí hodnotu direktivy MAX_FILE_SIZE, určenou v HTML formuláři", "The file was only partially uploaded" : "Soubor byl nahrán pouze z části", "No file was uploaded" : "Nebyl nahrán žádný soubor", @@ -114,12 +112,12 @@ "Hide archived cards" : "Skrýt archivované karty", "Toggle compact mode" : "Vyp/zap. kompaktní režim", "Show board details" : "Zobrazit podrobnosti o tabuli", - "All Boards" : "Všechny desky", + "All Boards" : "Všechny tabule", "Archived boards" : "Archivované desky", "Share board" : "Sdílet tabuli", "Archived cards" : "Archivované karty", "Actions" : "Akce", - "Drop your files here to upload it to the card" : "Přetáhněte soubor sem, pokud jej chcete připojit ke kartě.", + "Drop your files here to upload it to the card" : "Soubory ke kartě připojíte přetažením sem", "Assign card to me" : "Přiřadit kartu mě", "Unassign card from me" : "Zrušit přiřazení karty mě", "Archive card" : "Archivovat kartu", @@ -140,8 +138,8 @@ "Edit" : "Upravit", "Share" : "Sdílet", "Manage" : "Spravovat", - "Discard share" : "Zrušit sdílení", - "Sharing has been disabled for your account." : "Sdílení bylo zakázáno pro váš konto.", + "Discard share" : "Zahodit sdílení", + "Sharing has been disabled for your account." : "Sdílení bylo pro váš účet zakázáno.", "Update tag" : "Aktualizovat štítek", "Edit tag" : "Upravit štítek", "Delete tag" : "Smazat štítek", @@ -170,9 +168,9 @@ "by" : "od", "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátit smazání souboru – v opačném případě bude soubor trvale smazán při dalším běhu cronjobu.", "Undo file deletion" : "Vzít zpět smazání souboru", - "Insert the file into the description" : "Vložte soubor do popisku.", + "Insert the file into the description" : "Vložte soubor do popisu", "Delete attachment" : "Smazat přílohu", - "Modified:" : "Upraveno:", + "Modified:" : "Změněno:", "Created:" : "Vytvořeno:", "Choose a tag" : "Vyberte štítek", "Add a tag" : "Přidat štítek", @@ -195,7 +193,7 @@ "Move board to archive" : "Přesunout tabuli do archivu", "Create a new board" : "Vytvořit novou tabuli", "Settings" : "Nastavení", - "Limit deck to groups" : "Omezte Deck na skupiny", - "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení Decků brání uživatelům, kteří nejsou součástí těchto skupin, při vytváření vlastních desek. Uživatelé mohou stále pracovat na deskách, které jsou s nimi sdíleny." + "Limit deck to groups" : "Omezit Deck na skupiny", + "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení Decků brání uživatelům, kteří nejsou součástí těchto skupin, při vytváření vlastních tabulí. Uživatelé mohou stále pracovat na tabulích, které jsou s nimi sdíleny." },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;" } \ No newline at end of file diff --git a/l10n/de.js b/l10n/de.js index 8e5771d7c..c59faac86 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Du hast den Anhang {attachment} zur Karte {card} hinzugefügt", "{user} has added the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} zur Karte {card} hinzugefügt", "You have updated the attachment {attachment} on card {card}" : "Du hast den Anhang {attachment} der Karte {card} aktualisiert", - "{user} has updated the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert", "You have deleted the attachment {attachment} from card {card}" : "Du hast den Anhang {attachment} von der Karte {card} entfernt", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt", "You have restored the attachment {attachment} to card {card}" : "Du hast den Anhang {attachment} der Karte {card} wiederhergestellt", "{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt", "You have commented on card {card}" : "Du hast die Karte {card} kommentiert", diff --git a/l10n/de.json b/l10n/de.json index 674c1adc9..20a261918 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Du hast den Anhang {attachment} zur Karte {card} hinzugefügt", "{user} has added the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} zur Karte {card} hinzugefügt", "You have updated the attachment {attachment} on card {card}" : "Du hast den Anhang {attachment} der Karte {card} aktualisiert", - "{user} has updated the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert", "You have deleted the attachment {attachment} from card {card}" : "Du hast den Anhang {attachment} von der Karte {card} entfernt", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt", "You have restored the attachment {attachment} to card {card}" : "Du hast den Anhang {attachment} der Karte {card} wiederhergestellt", "{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt", "You have commented on card {card}" : "Du hast die Karte {card} kommentiert", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index c6d0750d4..c16aa3051 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Sie haben den Anhang {attachment} zur Karte {card} hinzugefügt", "{user} has added the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} zur Karte {card} hinzugefügt", "You have updated the attachment {attachment} on card {card}" : "Sie haben den Anhang {attachment} der Karte {card} aktualisiert", - "{user} has updated the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert", "You have deleted the attachment {attachment} from card {card}" : "Sie haben den Anhang {attachment} von der Karte {card} entfernt", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt", "You have restored the attachment {attachment} to card {card}" : "Sie haben den Anhang {attachment} der Karte {card} wiederhergestellt", "{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt", "You have commented on card {card}" : "Sie haben die Karte {card} kommentiert", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index c5e86e4f0..00fae0f15 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Sie haben den Anhang {attachment} zur Karte {card} hinzugefügt", "{user} has added the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} zur Karte {card} hinzugefügt", "You have updated the attachment {attachment} on card {card}" : "Sie haben den Anhang {attachment} der Karte {card} aktualisiert", - "{user} has updated the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert", "You have deleted the attachment {attachment} from card {card}" : "Sie haben den Anhang {attachment} von der Karte {card} entfernt", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt", "You have restored the attachment {attachment} to card {card}" : "Sie haben den Anhang {attachment} der Karte {card} wiederhergestellt", "{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt", "You have commented on card {card}" : "Sie haben die Karte {card} kommentiert", diff --git a/l10n/eo.js b/l10n/eo.js index d25e8581a..45fc409b8 100644 --- a/l10n/eo.js +++ b/l10n/eo.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Vi aldonis dosieron {attachment} al karto {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} aldonis dosieron {attachment} al karto {card}", "You have updated the attachment {attachment} on card {card}" : "Vi ĝisdatigis la dosieron {attachment} de karto {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} ĝisdatigis la dosieron {attachment} de karto {card}", "You have deleted the attachment {attachment} from card {card}" : "Vi forigis la dosieron {attachment} el karto {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} forigis la dosieron {attachment} el karto {card}", "You have restored the attachment {attachment} to card {card}" : "Vi restaŭris la dosieron {attachment} al karto {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} restaŭris la dosieron {attachment} al karto {card}", "You have commented on card {card}" : "Vi komentis la karton {card}", diff --git a/l10n/eo.json b/l10n/eo.json index 3c5e5f44f..69e449086 100644 --- a/l10n/eo.json +++ b/l10n/eo.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Vi aldonis dosieron {attachment} al karto {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} aldonis dosieron {attachment} al karto {card}", "You have updated the attachment {attachment} on card {card}" : "Vi ĝisdatigis la dosieron {attachment} de karto {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} ĝisdatigis la dosieron {attachment} de karto {card}", "You have deleted the attachment {attachment} from card {card}" : "Vi forigis la dosieron {attachment} el karto {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} forigis la dosieron {attachment} el karto {card}", "You have restored the attachment {attachment} to card {card}" : "Vi restaŭris la dosieron {attachment} al karto {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} restaŭris la dosieron {attachment} al karto {card}", "You have commented on card {card}" : "Vi komentis la karton {card}", diff --git a/l10n/es.js b/l10n/es.js index 7bbcd37f9..532222b4f 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Has añadido el adjunto {attachment} en {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} ha añadido el adjunto {attachment} en {card}", "You have updated the attachment {attachment} on card {card}" : "Has actualizado el adjunto [attachment] en {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} ha actualizado el adjunto {attachment} en {card}", "You have deleted the attachment {attachment} from card {card}" : "Has eliminado el adjunto {attachment} de {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} ha eliminado el adjunto {attachment} de {card}", "You have restored the attachment {attachment} to card {card}" : "Has restaurado el adjunto {attachment} a {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} ha restaurado el adjunto {attachment} a {card}", "You have commented on card {card}" : "Has comentado en la tarjeta {card}", diff --git a/l10n/es.json b/l10n/es.json index 67d84519e..889056125 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Has añadido el adjunto {attachment} en {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} ha añadido el adjunto {attachment} en {card}", "You have updated the attachment {attachment} on card {card}" : "Has actualizado el adjunto [attachment] en {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} ha actualizado el adjunto {attachment} en {card}", "You have deleted the attachment {attachment} from card {card}" : "Has eliminado el adjunto {attachment} de {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} ha eliminado el adjunto {attachment} de {card}", "You have restored the attachment {attachment} to card {card}" : "Has restaurado el adjunto {attachment} a {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} ha restaurado el adjunto {attachment} a {card}", "You have commented on card {card}" : "Has comentado en la tarjeta {card}", diff --git a/l10n/fi.js b/l10n/fi.js index 46cd3760b..689f21769 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -65,9 +65,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Lisäsit liitteen {attachment} kortille {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} lisäsi liitteen {attachment} kortille {card}", "You have updated the attachment {attachment} on card {card}" : "Päivitit kortin {card} liitettä {attachment}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} päivitti kortin {card} liitettä {attachment}", "You have deleted the attachment {attachment} from card {card}" : "Poistit liitteen {attachment} kortilta {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} poisti liitteen {attachment} kortilta {card}", "You have restored the attachment {attachment} to card {card}" : "Palautit liitteen {attachment} kortille {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} palautti liitteen {attachment} kortille {card}", "You have commented on card {card}" : "Kommentoit korttia {card}", diff --git a/l10n/fi.json b/l10n/fi.json index b0f126819..14e9a3067 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -63,9 +63,7 @@ "You have added the attachment {attachment} to card {card}" : "Lisäsit liitteen {attachment} kortille {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} lisäsi liitteen {attachment} kortille {card}", "You have updated the attachment {attachment} on card {card}" : "Päivitit kortin {card} liitettä {attachment}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} päivitti kortin {card} liitettä {attachment}", "You have deleted the attachment {attachment} from card {card}" : "Poistit liitteen {attachment} kortilta {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} poisti liitteen {attachment} kortilta {card}", "You have restored the attachment {attachment} to card {card}" : "Palautit liitteen {attachment} kortille {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} palautti liitteen {attachment} kortille {card}", "You have commented on card {card}" : "Kommentoit korttia {card}", diff --git a/l10n/fr.js b/l10n/fr.js index d342eae7d..5b61706fa 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Vous avez ajouté la pièce jointe {attachment} à la carte {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} a ajouté la pièce jointe {attachment} à la carte {card}", "You have updated the attachment {attachment} on card {card}" : "Vous avez mis à jour la pièce jointe {attachment} de la carte {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} a mis à jour la pièce jointe {attachment} de la carte {card}", "You have deleted the attachment {attachment} from card {card}" : "Vous avez supprimé la pièce jointe {attachment} de la carte {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} a supprimé la pièce jointe {attachment} de la carte {card}", "You have restored the attachment {attachment} to card {card}" : "Vous avez restauré la pièce jointe {attachment} de la carte {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} a restauré la pièce jointe {attachment} de la carte {card}", "You have commented on card {card}" : "Vous avez commenté la carte {card}", diff --git a/l10n/fr.json b/l10n/fr.json index 1b2039e47..8d76ab0c0 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Vous avez ajouté la pièce jointe {attachment} à la carte {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} a ajouté la pièce jointe {attachment} à la carte {card}", "You have updated the attachment {attachment} on card {card}" : "Vous avez mis à jour la pièce jointe {attachment} de la carte {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} a mis à jour la pièce jointe {attachment} de la carte {card}", "You have deleted the attachment {attachment} from card {card}" : "Vous avez supprimé la pièce jointe {attachment} de la carte {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} a supprimé la pièce jointe {attachment} de la carte {card}", "You have restored the attachment {attachment} to card {card}" : "Vous avez restauré la pièce jointe {attachment} de la carte {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} a restauré la pièce jointe {attachment} de la carte {card}", "You have commented on card {card}" : "Vous avez commenté la carte {card}", diff --git a/l10n/gl.js b/l10n/gl.js index 0207b6b09..70bf426fb 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Vostede engadiu o anexo {attachment} na tarxeta {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} engadiu o anexo {attachment} na tarxeta {card}", "You have updated the attachment {attachment} on card {card}" : "Vostede actualizou o anexo {attachment} na tarxeta {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} actualizou o anexo {attachment} na tarxeta {card}", "You have deleted the attachment {attachment} from card {card}" : "Vostede eliminou o anexo {attachment} da tarxeta {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} eliminou o anexo {attachment} da tarxeta {card}", "You have restored the attachment {attachment} to card {card}" : "Vostede restaurou o anexo {attachment} na tarxeta {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} restaurou o anexo {attachment} da tarxeta {card}", "You have commented on card {card}" : "Vostede comentou na tarxeta {card}", diff --git a/l10n/gl.json b/l10n/gl.json index 9d0dd1de2..351c9eae8 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Vostede engadiu o anexo {attachment} na tarxeta {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} engadiu o anexo {attachment} na tarxeta {card}", "You have updated the attachment {attachment} on card {card}" : "Vostede actualizou o anexo {attachment} na tarxeta {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} actualizou o anexo {attachment} na tarxeta {card}", "You have deleted the attachment {attachment} from card {card}" : "Vostede eliminou o anexo {attachment} da tarxeta {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} eliminou o anexo {attachment} da tarxeta {card}", "You have restored the attachment {attachment} to card {card}" : "Vostede restaurou o anexo {attachment} na tarxeta {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} restaurou o anexo {attachment} da tarxeta {card}", "You have commented on card {card}" : "Vostede comentou na tarxeta {card}", diff --git a/l10n/hr.js b/l10n/hr.js index f303cbbab..0a6792fbd 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Dodali ste privitak {attachment} kartici {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} je dodao privitak {attachment} kartici {card}", "You have updated the attachment {attachment} on card {card}" : "Ažurirali ste privitak {attachment} na kartici {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} je ažurirao privitak {attachment} na kartici {card}", "You have deleted the attachment {attachment} from card {card}" : "Izbrisali ste privitak {attachment} s kartice {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} je izbrisao privitak {attachment} s kartice {card}", "You have restored the attachment {attachment} to card {card}" : "Vratili ste privitak {attachment} na karticu {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} je vratio privitak {attachment} na karticu {card}", "You have commented on card {card}" : "Komentirali ste karticu {card}", diff --git a/l10n/hr.json b/l10n/hr.json index 30546a927..1cf71aad6 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Dodali ste privitak {attachment} kartici {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} je dodao privitak {attachment} kartici {card}", "You have updated the attachment {attachment} on card {card}" : "Ažurirali ste privitak {attachment} na kartici {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} je ažurirao privitak {attachment} na kartici {card}", "You have deleted the attachment {attachment} from card {card}" : "Izbrisali ste privitak {attachment} s kartice {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} je izbrisao privitak {attachment} s kartice {card}", "You have restored the attachment {attachment} to card {card}" : "Vratili ste privitak {attachment} na karticu {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} je vratio privitak {attachment} na karticu {card}", "You have commented on card {card}" : "Komentirali ste karticu {card}", diff --git a/l10n/hu.js b/l10n/hu.js index ab36ccfd6..a4f5d0238 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához", "{user} has added the attachment {attachment} to card {card}" : "{user} hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához", "You have updated the attachment {attachment} on card {card}" : "Frissítette a(z) {attachment} mellékletet a(z) {card} kártyánál", - "{user} has updated the attachment {attachment} to card {card}" : "{user} frissítette a(z) {attachment} mellékletet a(z) {card} kártyánál", "You have deleted the attachment {attachment} from card {card}" : "Eltávolította a(z) {attachment} mellékletet a(z) {card} kártyáról", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} eltávolította a(z) {attachment} mellékletet a(z) {card} kártyáról", "You have restored the attachment {attachment} to card {card}" : "Visszaállította a(z) {attachment} mellékletet a(z) {card} kártyánál", "{user} has restored the attachment {attachment} to card {card}" : "{user} visszaállította a(z) {attachment} mellékletet a(z) {card} kártyánál", "You have commented on card {card}" : "Hozzászólt a(z) {card} kártyához", diff --git a/l10n/hu.json b/l10n/hu.json index 336155921..0bb2cd2b0 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához", "{user} has added the attachment {attachment} to card {card}" : "{user} hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához", "You have updated the attachment {attachment} on card {card}" : "Frissítette a(z) {attachment} mellékletet a(z) {card} kártyánál", - "{user} has updated the attachment {attachment} to card {card}" : "{user} frissítette a(z) {attachment} mellékletet a(z) {card} kártyánál", "You have deleted the attachment {attachment} from card {card}" : "Eltávolította a(z) {attachment} mellékletet a(z) {card} kártyáról", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} eltávolította a(z) {attachment} mellékletet a(z) {card} kártyáról", "You have restored the attachment {attachment} to card {card}" : "Visszaállította a(z) {attachment} mellékletet a(z) {card} kártyánál", "{user} has restored the attachment {attachment} to card {card}" : "{user} visszaállította a(z) {attachment} mellékletet a(z) {card} kártyánál", "You have commented on card {card}" : "Hozzászólt a(z) {card} kártyához", diff --git a/l10n/is.js b/l10n/is.js index e4e25baa4..fc7443299 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Þú bættir viðhenginu {attachment} við spjaldið {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} bætti viðhenginu {attachment} við spjaldið {card}", "You have updated the attachment {attachment} on card {card}" : "Þú uppfærðir viðhengið {attachment} á spjaldinu {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} uppfærði viðhengið {attachment} á spjaldinu {card}", "You have deleted the attachment {attachment} from card {card}" : "Þú eyddir viðhenginu {attachment} af spjaldinu {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} eyddi viðhenginu {attachment} af spjaldinu {card}", "You have restored the attachment {attachment} to card {card}" : "Þú endurheimtir viðhengið {attachment} á spjaldinu {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} endurheimti viðhengið {attachment} á spjaldinu {card}", "You have commented on card {card}" : "Þú settir inn athugasemd við spjaldið {card}", diff --git a/l10n/is.json b/l10n/is.json index d37d06811..c1b53fdd7 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Þú bættir viðhenginu {attachment} við spjaldið {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} bætti viðhenginu {attachment} við spjaldið {card}", "You have updated the attachment {attachment} on card {card}" : "Þú uppfærðir viðhengið {attachment} á spjaldinu {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} uppfærði viðhengið {attachment} á spjaldinu {card}", "You have deleted the attachment {attachment} from card {card}" : "Þú eyddir viðhenginu {attachment} af spjaldinu {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} eyddi viðhenginu {attachment} af spjaldinu {card}", "You have restored the attachment {attachment} to card {card}" : "Þú endurheimtir viðhengið {attachment} á spjaldinu {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} endurheimti viðhengið {attachment} á spjaldinu {card}", "You have commented on card {card}" : "Þú settir inn athugasemd við spjaldið {card}", diff --git a/l10n/it.js b/l10n/it.js index c543eccd0..3cf9554b5 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Hai aggiunto l'allegato {attachment} alla scheda {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} ha aggiunto l'allegato {attachment} alla scheda {card}", "You have updated the attachment {attachment} on card {card}" : "Hai aggiornato l'allegato {attachment} sulla scheda {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} ha aggiornato l'allegato {attachment} sulla scheda {card}", "You have deleted the attachment {attachment} from card {card}" : "Hai eliminato l'allegato {attachment} dalla scheda {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} ha eliminato l'allegato {attachment} della scheda {card}", "You have restored the attachment {attachment} to card {card}" : "Hai ripristinato l'allegato {attachment} nella scheda {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} ha ripristinato l'allegato {attachment} nella scheda {card}", "You have commented on card {card}" : "Hai commentato sulla scheda {card}", diff --git a/l10n/it.json b/l10n/it.json index fa2b6b2cd..c64df951e 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Hai aggiunto l'allegato {attachment} alla scheda {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} ha aggiunto l'allegato {attachment} alla scheda {card}", "You have updated the attachment {attachment} on card {card}" : "Hai aggiornato l'allegato {attachment} sulla scheda {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} ha aggiornato l'allegato {attachment} sulla scheda {card}", "You have deleted the attachment {attachment} from card {card}" : "Hai eliminato l'allegato {attachment} dalla scheda {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} ha eliminato l'allegato {attachment} della scheda {card}", "You have restored the attachment {attachment} to card {card}" : "Hai ripristinato l'allegato {attachment} nella scheda {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} ha ripristinato l'allegato {attachment} nella scheda {card}", "You have commented on card {card}" : "Hai commentato sulla scheda {card}", diff --git a/l10n/ja.js b/l10n/ja.js index 756219d56..d6df1aa52 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "添付ファイル{attachment}をカード{card}に追加しました", "{user} has added the attachment {attachment} to card {card}" : "{user}が添付ファイル{attachment}をカード{card}に追加しました", "You have updated the attachment {attachment} on card {card}" : "カード{card}の添付ファイル{attachment}を更新しました", - "{user} has updated the attachment {attachment} to card {card}" : "{user}がカード {card}の添付ファイル {attachment}を更新しました", "You have deleted the attachment {attachment} from card {card}" : "カード{card}から添付ファイル{attachment}を削除しました", - "{user} has deleted the attachment {attachment} to card {card}" : "{user}がカード{card}の添付ファイル{attachment}を削除しました", "You have restored the attachment {attachment} to card {card}" : "添付ファイル{attachment}をカード{card}に復元しました", "{user} has restored the attachment {attachment} to card {card}" : "{user}が添付ファイル{attachment}をカード{card}に復元しました", "You have commented on card {card}" : "カード{card}にコメントしました", diff --git a/l10n/ja.json b/l10n/ja.json index d6b21d9de..a09b55391 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "添付ファイル{attachment}をカード{card}に追加しました", "{user} has added the attachment {attachment} to card {card}" : "{user}が添付ファイル{attachment}をカード{card}に追加しました", "You have updated the attachment {attachment} on card {card}" : "カード{card}の添付ファイル{attachment}を更新しました", - "{user} has updated the attachment {attachment} to card {card}" : "{user}がカード {card}の添付ファイル {attachment}を更新しました", "You have deleted the attachment {attachment} from card {card}" : "カード{card}から添付ファイル{attachment}を削除しました", - "{user} has deleted the attachment {attachment} to card {card}" : "{user}がカード{card}の添付ファイル{attachment}を削除しました", "You have restored the attachment {attachment} to card {card}" : "添付ファイル{attachment}をカード{card}に復元しました", "{user} has restored the attachment {attachment} to card {card}" : "{user}が添付ファイル{attachment}をカード{card}に復元しました", "You have commented on card {card}" : "カード{card}にコメントしました", diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index f0843a2c4..9a540c925 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -64,9 +64,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Jūs pridėjote priedą {attachment} į kortelę {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} pridėjo priedą {attachment} į kortelę {card}", "You have updated the attachment {attachment} on card {card}" : "Jūs atnaujinote priedą {attachment} kortelėje {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} atnaujino priedą {attachment} kortelėje {card}", "You have deleted the attachment {attachment} from card {card}" : "Jūs ištrynėte priedą {attachment} iš kortelės {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} ištrynė priedą {attachment} iš kortelės {card}", "You have restored the attachment {attachment} to card {card}" : "Jūs atkūrėte priedą {attachment} į kortelę {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} atkūrė priedą {attachment} į kortelę {card}", "You have commented on card {card}" : "Jūs pakomentavote kortelėje {card}", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index fd449fe25..167e48bd3 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -62,9 +62,7 @@ "You have added the attachment {attachment} to card {card}" : "Jūs pridėjote priedą {attachment} į kortelę {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} pridėjo priedą {attachment} į kortelę {card}", "You have updated the attachment {attachment} on card {card}" : "Jūs atnaujinote priedą {attachment} kortelėje {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} atnaujino priedą {attachment} kortelėje {card}", "You have deleted the attachment {attachment} from card {card}" : "Jūs ištrynėte priedą {attachment} iš kortelės {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} ištrynė priedą {attachment} iš kortelės {card}", "You have restored the attachment {attachment} to card {card}" : "Jūs atkūrėte priedą {attachment} į kortelę {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} atkūrė priedą {attachment} į kortelę {card}", "You have commented on card {card}" : "Jūs pakomentavote kortelėje {card}", diff --git a/l10n/nb.js b/l10n/nb.js index d448a610f..653bb7378 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -65,9 +65,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Du har lagt til vedlegget {attachment} ti kortet {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} har lagt til vedlegget {attachment} på kortet {card}", "You have updated the attachment {attachment} on card {card}" : "Du har oppdatert vedlegget {attachment} på kortet {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} har oppdatert vedlegget {attachment} på kortet {card}", "You have deleted the attachment {attachment} from card {card}" : "Du har slettet vedlegget {attachment} på kortet {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} har slettet vedlegget {attachment} på kortet {card}", "You have restored the attachment {attachment} to card {card}" : "Du har gjennopprettet vedlegget {attachment} på kortet {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} har gjennopprettet vedlegget {attachment} på kortet {card}", "You have commented on card {card}" : "Du har kommetnert på kort {card}", diff --git a/l10n/nb.json b/l10n/nb.json index 06be81f0c..7704528ae 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -63,9 +63,7 @@ "You have added the attachment {attachment} to card {card}" : "Du har lagt til vedlegget {attachment} ti kortet {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} har lagt til vedlegget {attachment} på kortet {card}", "You have updated the attachment {attachment} on card {card}" : "Du har oppdatert vedlegget {attachment} på kortet {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} har oppdatert vedlegget {attachment} på kortet {card}", "You have deleted the attachment {attachment} from card {card}" : "Du har slettet vedlegget {attachment} på kortet {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} har slettet vedlegget {attachment} på kortet {card}", "You have restored the attachment {attachment} to card {card}" : "Du har gjennopprettet vedlegget {attachment} på kortet {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} har gjennopprettet vedlegget {attachment} på kortet {card}", "You have commented on card {card}" : "Du har kommetnert på kort {card}", diff --git a/l10n/nl.js b/l10n/nl.js index 6788ea873..a65d08ab1 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Je voegde bijlage {attachment} toe aan kaart {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} voegde bijlage {attachment} toe aan kaart {card}", "You have updated the attachment {attachment} on card {card}" : "Je werkte bijlage {attachment} bij op kaart {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} werkte bijlage {attachment} bij op kaart {card}", "You have deleted the attachment {attachment} from card {card}" : "Je verwijderde bijlage {attachment} van kaart {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} verwijderde bijlage {attachment} van kaart {card}", "You have restored the attachment {attachment} to card {card}" : "Je herstelde bijlage {attachment} bij kaart {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} herstelde bijlage {attachment} bij kaart {card}", "You have commented on card {card}" : "Je hebt gereageerd op kaart {card}", diff --git a/l10n/nl.json b/l10n/nl.json index 7199627fa..f8c5b2f8c 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Je voegde bijlage {attachment} toe aan kaart {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} voegde bijlage {attachment} toe aan kaart {card}", "You have updated the attachment {attachment} on card {card}" : "Je werkte bijlage {attachment} bij op kaart {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} werkte bijlage {attachment} bij op kaart {card}", "You have deleted the attachment {attachment} from card {card}" : "Je verwijderde bijlage {attachment} van kaart {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} verwijderde bijlage {attachment} van kaart {card}", "You have restored the attachment {attachment} to card {card}" : "Je herstelde bijlage {attachment} bij kaart {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} herstelde bijlage {attachment} bij kaart {card}", "You have commented on card {card}" : "Je hebt gereageerd op kaart {card}", diff --git a/l10n/pl.js b/l10n/pl.js index 39d955afd..0a03fc93a 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Dodałeś/-aś załącznik {attachment} do karty {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} dodał załącznik {attachment} do karty {card}", "You have updated the attachment {attachment} on card {card}" : "Zaktualizowałeś/-aś załącznik {attachment} na karcie {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} zaktualizował załącznik {attachment} na karcie {card}", "You have deleted the attachment {attachment} from card {card}" : "Usunąłeś/-aś załącznik {attachment} z karty {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} usunął załącznik {attachment} z karty {card}", "You have restored the attachment {attachment} to card {card}" : "Przywróciłeś/-aś załącznik {attachment} na kartę {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} przywrócił załącznik {attachment} na kartę {card}", "You have commented on card {card}" : "Skomentowałeś/-aś kartę {card}", diff --git a/l10n/pl.json b/l10n/pl.json index 94e13c0f7..2014ab90f 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Dodałeś/-aś załącznik {attachment} do karty {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} dodał załącznik {attachment} do karty {card}", "You have updated the attachment {attachment} on card {card}" : "Zaktualizowałeś/-aś załącznik {attachment} na karcie {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} zaktualizował załącznik {attachment} na karcie {card}", "You have deleted the attachment {attachment} from card {card}" : "Usunąłeś/-aś załącznik {attachment} z karty {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} usunął załącznik {attachment} z karty {card}", "You have restored the attachment {attachment} to card {card}" : "Przywróciłeś/-aś załącznik {attachment} na kartę {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} przywrócił załącznik {attachment} na kartę {card}", "You have commented on card {card}" : "Skomentowałeś/-aś kartę {card}", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index cfea663a4..e804a3cc1 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Você adicionou o anexo {attachment} no cartão {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} adicionou um anexo {attachment} ao cartão {card}", "You have updated the attachment {attachment} on card {card}" : "Você atualizou o anexo {attachment} do cartão {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} atualizou o anexo {attachment} do cartão {card}", "You have deleted the attachment {attachment} from card {card}" : "Você excluiu o anexo {attachment} do cartão {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} excluiu o anexo {attachment} do cartão {card}", "You have restored the attachment {attachment} to card {card}" : "Você restaurou o anexo {attachment} do cartão {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} restaurou o anexo {attachment} do cartão {card}", "You have commented on card {card}" : "Você comentou no cartão {card}", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index bbb3657bc..e68277034 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Você adicionou o anexo {attachment} no cartão {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} adicionou um anexo {attachment} ao cartão {card}", "You have updated the attachment {attachment} on card {card}" : "Você atualizou o anexo {attachment} do cartão {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} atualizou o anexo {attachment} do cartão {card}", "You have deleted the attachment {attachment} from card {card}" : "Você excluiu o anexo {attachment} do cartão {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} excluiu o anexo {attachment} do cartão {card}", "You have restored the attachment {attachment} to card {card}" : "Você restaurou o anexo {attachment} do cartão {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} restaurou o anexo {attachment} do cartão {card}", "You have commented on card {card}" : "Você comentou no cartão {card}", diff --git a/l10n/ru.js b/l10n/ru.js index 8050d8bd0..272a43e4a 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Вы добавили вложение «{attachment}» в карточку «{card}»", "{user} has added the attachment {attachment} to card {card}" : "{user} добавил(а) вложение «{attachment}» в карточку «{card}»", "You have updated the attachment {attachment} on card {card}" : "Вы изменили вложение «{attachment}» в карточке «{card}»", - "{user} has updated the attachment {attachment} to card {card}" : "{user} изменил(а) вложение «{attachment}» в карточке «{card}»", "You have deleted the attachment {attachment} from card {card}" : "Вы удалили вложение «{attachment}» из карточки «{card}»", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} удалил(а) вложение «{attachment}» из карточки «{card}»", "You have restored the attachment {attachment} to card {card}" : "Вы восстановили вложение «{attachment}» в карточке «{card}»", "{user} has restored the attachment {attachment} to card {card}" : "{user} восстановил(а) из корзины файл «{attachment}» в карточке «{card}»", "You have commented on card {card}" : "Вы добавили комментарий к карточке «{card}»", diff --git a/l10n/ru.json b/l10n/ru.json index 345f61a26..6b0343c81 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Вы добавили вложение «{attachment}» в карточку «{card}»", "{user} has added the attachment {attachment} to card {card}" : "{user} добавил(а) вложение «{attachment}» в карточку «{card}»", "You have updated the attachment {attachment} on card {card}" : "Вы изменили вложение «{attachment}» в карточке «{card}»", - "{user} has updated the attachment {attachment} to card {card}" : "{user} изменил(а) вложение «{attachment}» в карточке «{card}»", "You have deleted the attachment {attachment} from card {card}" : "Вы удалили вложение «{attachment}» из карточки «{card}»", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} удалил(а) вложение «{attachment}» из карточки «{card}»", "You have restored the attachment {attachment} to card {card}" : "Вы восстановили вложение «{attachment}» в карточке «{card}»", "{user} has restored the attachment {attachment} to card {card}" : "{user} восстановил(а) из корзины файл «{attachment}» в карточке «{card}»", "You have commented on card {card}" : "Вы добавили комментарий к карточке «{card}»", diff --git a/l10n/sk.js b/l10n/sk.js index 736069919..3f2d7df10 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Pridali ste prílohu {attachment} ku karte {card}", "{user} has added the attachment {attachment} to card {card}" : "Používateľ {user} pridal prílohu {attachment} ku karte {card}", "You have updated the attachment {attachment} on card {card}" : "Aktualizovali ste prílohu {attachment} na karte {card}", - "{user} has updated the attachment {attachment} to card {card}" : "Používateľ {user} aktualizoval prílohu {attachment} ku karte {card}", "You have deleted the attachment {attachment} from card {card}" : "Vymazali ste prílohu {attachment} na karte {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "Používateľ {user} vymazal prílohu {attachment} z karty {card}", "You have restored the attachment {attachment} to card {card}" : "Obnovili ste prílohu {attachment} na karte {card}", "{user} has restored the attachment {attachment} to card {card}" : "Používateľ {user} obnovil prílohu {attachment} na karte {card}", "You have commented on card {card}" : "Komentovali ste kartu {card}", diff --git a/l10n/sk.json b/l10n/sk.json index 94a85edda..6e3341af0 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Pridali ste prílohu {attachment} ku karte {card}", "{user} has added the attachment {attachment} to card {card}" : "Používateľ {user} pridal prílohu {attachment} ku karte {card}", "You have updated the attachment {attachment} on card {card}" : "Aktualizovali ste prílohu {attachment} na karte {card}", - "{user} has updated the attachment {attachment} to card {card}" : "Používateľ {user} aktualizoval prílohu {attachment} ku karte {card}", "You have deleted the attachment {attachment} from card {card}" : "Vymazali ste prílohu {attachment} na karte {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "Používateľ {user} vymazal prílohu {attachment} z karty {card}", "You have restored the attachment {attachment} to card {card}" : "Obnovili ste prílohu {attachment} na karte {card}", "{user} has restored the attachment {attachment} to card {card}" : "Používateľ {user} obnovil prílohu {attachment} na karte {card}", "You have commented on card {card}" : "Komentovali ste kartu {card}", diff --git a/l10n/sl.js b/l10n/sl.js index dc33316b3..f223d4f8d 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Dodate prilogo {attachment} k nalogi {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} doda prilogo {attachment} k nalogi {card}", "You have updated the attachment {attachment} on card {card}" : "Posodobite prilogo {attachment} v nalogi {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} posodobi prilogo {attachment} naloge {card}", "You have deleted the attachment {attachment} from card {card}" : "Izbišete prilogo {attachment} v nalogi {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} izbriše prilogo {attachment} naloge {card}", "You have restored the attachment {attachment} to card {card}" : "Obnovite prilogo {attachment} k nalogi {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} obnovi prilogo {attachment} naloge {card}", "You have commented on card {card}" : "Vpišete opombo k nalogi {card}", diff --git a/l10n/sl.json b/l10n/sl.json index 218926a40..7b9cb75fa 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Dodate prilogo {attachment} k nalogi {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} doda prilogo {attachment} k nalogi {card}", "You have updated the attachment {attachment} on card {card}" : "Posodobite prilogo {attachment} v nalogi {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} posodobi prilogo {attachment} naloge {card}", "You have deleted the attachment {attachment} from card {card}" : "Izbišete prilogo {attachment} v nalogi {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} izbriše prilogo {attachment} naloge {card}", "You have restored the attachment {attachment} to card {card}" : "Obnovite prilogo {attachment} k nalogi {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} obnovi prilogo {attachment} naloge {card}", "You have commented on card {card}" : "Vpišete opombo k nalogi {card}", diff --git a/l10n/sr.js b/l10n/sr.js index cffa78671..48a830d12 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Додали сте прилог {attachment} на картицу {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} је додао прилог {attachment} на картицу {card}", "You have updated the attachment {attachment} on card {card}" : "Ажурирали сте прилог {attachment} на картици {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} је ажурирао прилог {attachment} на картици {card}", "You have deleted the attachment {attachment} from card {card}" : "Обрисали сте прилог {attachment} са картице {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} је обрисао прилог {attachment} са картице {card}", "You have restored the attachment {attachment} to card {card}" : "Повратили сте прилог {attachment} на картицу {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} је повратио прилог {attachment} на картицу {card}", "You have commented on card {card}" : "Оставили сте коментар на картици {card}", diff --git a/l10n/sr.json b/l10n/sr.json index ff385e9d3..eeb4f82a1 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Додали сте прилог {attachment} на картицу {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} је додао прилог {attachment} на картицу {card}", "You have updated the attachment {attachment} on card {card}" : "Ажурирали сте прилог {attachment} на картици {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} је ажурирао прилог {attachment} на картици {card}", "You have deleted the attachment {attachment} from card {card}" : "Обрисали сте прилог {attachment} са картице {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} је обрисао прилог {attachment} са картице {card}", "You have restored the attachment {attachment} to card {card}" : "Повратили сте прилог {attachment} на картицу {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} је повратио прилог {attachment} на картицу {card}", "You have commented on card {card}" : "Оставили сте коментар на картици {card}", diff --git a/l10n/sv.js b/l10n/sv.js index abb763fa4..5cc73f04d 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Du har lagt till bilagan {attachment} till kortet {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} har lagt till bilagan {attachment} till kortet {card}", "You have updated the attachment {attachment} on card {card}" : "Du har uppdaterat bilagan {attachment} på kortet {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} har uppdaterat bilagan {attachment} på kortet {card}", "You have deleted the attachment {attachment} from card {card}" : "Du har raderat bilagan {attachment} från kortet {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} har raderat bilagan {attachment} från kortet {card}", "You have restored the attachment {attachment} to card {card}" : "Du har återställt bilagan {attachment} till kortet {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} har återställt bilagan {attachment} till kortet {card}", "You have commented on card {card}" : "Du har kommenterat på kortet {card}", diff --git a/l10n/sv.json b/l10n/sv.json index ffe01ebd7..069fefbd9 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "Du har lagt till bilagan {attachment} till kortet {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} har lagt till bilagan {attachment} till kortet {card}", "You have updated the attachment {attachment} on card {card}" : "Du har uppdaterat bilagan {attachment} på kortet {card}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} har uppdaterat bilagan {attachment} på kortet {card}", "You have deleted the attachment {attachment} from card {card}" : "Du har raderat bilagan {attachment} från kortet {card}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} har raderat bilagan {attachment} från kortet {card}", "You have restored the attachment {attachment} to card {card}" : "Du har återställt bilagan {attachment} till kortet {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} har återställt bilagan {attachment} till kortet {card}", "You have commented on card {card}" : "Du har kommenterat på kortet {card}", diff --git a/l10n/tr.js b/l10n/tr.js index 08e2e3a5c..482a417d5 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "{card} kartına {attachment} dosyasını eklediniz", "{user} has added the attachment {attachment} to card {card}" : "{user}, {card} kartına {attachment} dosyasını ekledi", "You have updated the attachment {attachment} on card {card}" : "{card} kartındaki {attachment} dosyasını güncellediniz", - "{user} has updated the attachment {attachment} to card {card}" : "{user}, {card} kartındaki {attachment} dosyasını güncelledi", "You have deleted the attachment {attachment} from card {card}" : "{card} kartındaki {attachment} dosyasını sildiniz", - "{user} has deleted the attachment {attachment} to card {card}" : "{user}, {card} kartındaki {attachment} dosyasını sildi", "You have restored the attachment {attachment} to card {card}" : "{card} kartındaki {attachment} dosyasını geri yüklediniz", "{user} has restored the attachment {attachment} to card {card}" : "{user}, {card} kartındaki {attachment} dosyasını geri yükledi", "You have commented on card {card}" : "{card} kartı hakkında yorum yaptınız", diff --git a/l10n/tr.json b/l10n/tr.json index da83de5bc..38e35eb94 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "{card} kartına {attachment} dosyasını eklediniz", "{user} has added the attachment {attachment} to card {card}" : "{user}, {card} kartına {attachment} dosyasını ekledi", "You have updated the attachment {attachment} on card {card}" : "{card} kartındaki {attachment} dosyasını güncellediniz", - "{user} has updated the attachment {attachment} to card {card}" : "{user}, {card} kartındaki {attachment} dosyasını güncelledi", "You have deleted the attachment {attachment} from card {card}" : "{card} kartındaki {attachment} dosyasını sildiniz", - "{user} has deleted the attachment {attachment} to card {card}" : "{user}, {card} kartındaki {attachment} dosyasını sildi", "You have restored the attachment {attachment} to card {card}" : "{card} kartındaki {attachment} dosyasını geri yüklediniz", "{user} has restored the attachment {attachment} to card {card}" : "{user}, {card} kartındaki {attachment} dosyasını geri yükledi", "You have commented on card {card}" : "{card} kartı hakkında yorum yaptınız", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 91b36733d..988049aeb 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -67,9 +67,7 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "您为卡片 {card} 添加了附件 {attachment}", "{user} has added the attachment {attachment} to card {card}" : "{user} 为卡片 {card} 添加了附件 {attachment}", "You have updated the attachment {attachment} on card {card}" : "您更新了卡片 {card} 中的附件 {attachment}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} 更新了卡片 {card} 中的附件 {attachment}", "You have deleted the attachment {attachment} from card {card}" : "您删除了卡片 {card} 中的附件 {attachment}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} 删除了卡片 {card} 中的附件 {attachment}", "You have restored the attachment {attachment} to card {card}" : "您恢复了卡片 {card} 中的附件 {attachment}", "{user} has restored the attachment {attachment} to card {card}" : "{user} 恢复了卡片 {card} 中的附件 {attachment}", "You have commented on card {card}" : "您评论了卡片 {card}", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index 077655779..b328a472e 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -65,9 +65,7 @@ "You have added the attachment {attachment} to card {card}" : "您为卡片 {card} 添加了附件 {attachment}", "{user} has added the attachment {attachment} to card {card}" : "{user} 为卡片 {card} 添加了附件 {attachment}", "You have updated the attachment {attachment} on card {card}" : "您更新了卡片 {card} 中的附件 {attachment}", - "{user} has updated the attachment {attachment} to card {card}" : "{user} 更新了卡片 {card} 中的附件 {attachment}", "You have deleted the attachment {attachment} from card {card}" : "您删除了卡片 {card} 中的附件 {attachment}", - "{user} has deleted the attachment {attachment} to card {card}" : "{user} 删除了卡片 {card} 中的附件 {attachment}", "You have restored the attachment {attachment} to card {card}" : "您恢复了卡片 {card} 中的附件 {attachment}", "{user} has restored the attachment {attachment} to card {card}" : "{user} 恢复了卡片 {card} 中的附件 {attachment}", "You have commented on card {card}" : "您评论了卡片 {card}", From 727f59792a8444a91de78db2b23f77487bc6f63b Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 29 Nov 2019 02:26:24 +0000 Subject: [PATCH 66/77] [tx-robot] updated from transifex --- l10n/cs.js | 6 ++++-- l10n/cs.json | 6 ++++-- l10n/de.js | 2 ++ l10n/de.json | 2 ++ l10n/de_DE.js | 2 ++ l10n/de_DE.json | 2 ++ l10n/eo.js | 2 ++ l10n/eo.json | 2 ++ l10n/es.js | 2 ++ l10n/es.json | 2 ++ l10n/gl.js | 2 ++ l10n/gl.json | 2 ++ l10n/it.js | 2 ++ l10n/it.json | 2 ++ l10n/lt_LT.js | 2 ++ l10n/lt_LT.json | 2 ++ l10n/pl.js | 2 ++ l10n/pl.json | 2 ++ l10n/pt_BR.js | 2 ++ l10n/pt_BR.json | 2 ++ l10n/tr.js | 2 ++ l10n/tr.json | 2 ++ 22 files changed, 48 insertions(+), 4 deletions(-) diff --git a/l10n/cs.js b/l10n/cs.js index 8b004f69f..b4cbe8584 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -67,7 +67,9 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Přidali jste přílohu {attachment} ke kartě {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} přidal(a) přílohu {attachment} ke kartě {card}", "You have updated the attachment {attachment} on card {card}" : "Aktualizovali jste přílohu {attachment} na kartě {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} aktualizoval(a) přílohu {attachment} na kartě {card}", "You have deleted the attachment {attachment} from card {card}" : "Smazali jste přílohu {attachment} u karty {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} smazal(a) přílohu {attachment} na kartě {card}", "You have restored the attachment {attachment} to card {card}" : "Obnovili jste přílohu {attachment} ke kartě {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} obnovil(a) přílohu {attachment} ke kartě {card}", "You have commented on card {card}" : "Přidali jste komentář na kartě {card}", @@ -115,7 +117,7 @@ OC.L10N.register( "Toggle compact mode" : "Vyp/zap. kompaktní režim", "Show board details" : "Zobrazit podrobnosti o tabuli", "All Boards" : "Všechny tabule", - "Archived boards" : "Archivované desky", + "Archived boards" : "Archivované tabule", "Share board" : "Sdílet tabuli", "Archived cards" : "Archivované karty", "Actions" : "Akce", @@ -191,7 +193,7 @@ OC.L10N.register( "Formatting help" : "Nápověda k formátování", "Upload attachment" : "Nahrát přílohu", "Add a card description…" : "Přidat popis karty…", - "Shared boards" : "Sdílené desky", + "Shared boards" : "Sdílené tabule", "Move board to archive" : "Přesunout tabuli do archivu", "Create a new board" : "Vytvořit novou tabuli", "Settings" : "Nastavení", diff --git a/l10n/cs.json b/l10n/cs.json index e78b3390c..3d35c99f8 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -65,7 +65,9 @@ "You have added the attachment {attachment} to card {card}" : "Přidali jste přílohu {attachment} ke kartě {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} přidal(a) přílohu {attachment} ke kartě {card}", "You have updated the attachment {attachment} on card {card}" : "Aktualizovali jste přílohu {attachment} na kartě {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} aktualizoval(a) přílohu {attachment} na kartě {card}", "You have deleted the attachment {attachment} from card {card}" : "Smazali jste přílohu {attachment} u karty {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} smazal(a) přílohu {attachment} na kartě {card}", "You have restored the attachment {attachment} to card {card}" : "Obnovili jste přílohu {attachment} ke kartě {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} obnovil(a) přílohu {attachment} ke kartě {card}", "You have commented on card {card}" : "Přidali jste komentář na kartě {card}", @@ -113,7 +115,7 @@ "Toggle compact mode" : "Vyp/zap. kompaktní režim", "Show board details" : "Zobrazit podrobnosti o tabuli", "All Boards" : "Všechny tabule", - "Archived boards" : "Archivované desky", + "Archived boards" : "Archivované tabule", "Share board" : "Sdílet tabuli", "Archived cards" : "Archivované karty", "Actions" : "Akce", @@ -189,7 +191,7 @@ "Formatting help" : "Nápověda k formátování", "Upload attachment" : "Nahrát přílohu", "Add a card description…" : "Přidat popis karty…", - "Shared boards" : "Sdílené desky", + "Shared boards" : "Sdílené tabule", "Move board to archive" : "Přesunout tabuli do archivu", "Create a new board" : "Vytvořit novou tabuli", "Settings" : "Nastavení", diff --git a/l10n/de.js b/l10n/de.js index c59faac86..442d77b93 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -67,7 +67,9 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Du hast den Anhang {attachment} zur Karte {card} hinzugefügt", "{user} has added the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} zur Karte {card} hinzugefügt", "You have updated the attachment {attachment} on card {card}" : "Du hast den Anhang {attachment} der Karte {card} aktualisiert", + "{user} has updated the attachment {attachment} on card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert", "You have deleted the attachment {attachment} from card {card}" : "Du hast den Anhang {attachment} von der Karte {card} entfernt", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt", "You have restored the attachment {attachment} to card {card}" : "Du hast den Anhang {attachment} der Karte {card} wiederhergestellt", "{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt", "You have commented on card {card}" : "Du hast die Karte {card} kommentiert", diff --git a/l10n/de.json b/l10n/de.json index 20a261918..fa1381e23 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -65,7 +65,9 @@ "You have added the attachment {attachment} to card {card}" : "Du hast den Anhang {attachment} zur Karte {card} hinzugefügt", "{user} has added the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} zur Karte {card} hinzugefügt", "You have updated the attachment {attachment} on card {card}" : "Du hast den Anhang {attachment} der Karte {card} aktualisiert", + "{user} has updated the attachment {attachment} on card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert", "You have deleted the attachment {attachment} from card {card}" : "Du hast den Anhang {attachment} von der Karte {card} entfernt", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt", "You have restored the attachment {attachment} to card {card}" : "Du hast den Anhang {attachment} der Karte {card} wiederhergestellt", "{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt", "You have commented on card {card}" : "Du hast die Karte {card} kommentiert", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index c16aa3051..92df4a042 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -67,7 +67,9 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Sie haben den Anhang {attachment} zur Karte {card} hinzugefügt", "{user} has added the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} zur Karte {card} hinzugefügt", "You have updated the attachment {attachment} on card {card}" : "Sie haben den Anhang {attachment} der Karte {card} aktualisiert", + "{user} has updated the attachment {attachment} on card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert", "You have deleted the attachment {attachment} from card {card}" : "Sie haben den Anhang {attachment} von der Karte {card} entfernt", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt", "You have restored the attachment {attachment} to card {card}" : "Sie haben den Anhang {attachment} der Karte {card} wiederhergestellt", "{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt", "You have commented on card {card}" : "Sie haben die Karte {card} kommentiert", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 00fae0f15..b6897527a 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -65,7 +65,9 @@ "You have added the attachment {attachment} to card {card}" : "Sie haben den Anhang {attachment} zur Karte {card} hinzugefügt", "{user} has added the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} zur Karte {card} hinzugefügt", "You have updated the attachment {attachment} on card {card}" : "Sie haben den Anhang {attachment} der Karte {card} aktualisiert", + "{user} has updated the attachment {attachment} on card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert", "You have deleted the attachment {attachment} from card {card}" : "Sie haben den Anhang {attachment} von der Karte {card} entfernt", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt", "You have restored the attachment {attachment} to card {card}" : "Sie haben den Anhang {attachment} der Karte {card} wiederhergestellt", "{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt", "You have commented on card {card}" : "Sie haben die Karte {card} kommentiert", diff --git a/l10n/eo.js b/l10n/eo.js index 45fc409b8..95dbeef84 100644 --- a/l10n/eo.js +++ b/l10n/eo.js @@ -67,7 +67,9 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Vi aldonis dosieron {attachment} al karto {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} aldonis dosieron {attachment} al karto {card}", "You have updated the attachment {attachment} on card {card}" : "Vi ĝisdatigis la dosieron {attachment} de karto {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} ĝisdatigis la dosieron {attachment} de karto {card}", "You have deleted the attachment {attachment} from card {card}" : "Vi forigis la dosieron {attachment} el karto {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} forigis la dosieron {attachment} el karto {card}", "You have restored the attachment {attachment} to card {card}" : "Vi restaŭris la dosieron {attachment} al karto {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} restaŭris la dosieron {attachment} al karto {card}", "You have commented on card {card}" : "Vi komentis la karton {card}", diff --git a/l10n/eo.json b/l10n/eo.json index 69e449086..f030074c0 100644 --- a/l10n/eo.json +++ b/l10n/eo.json @@ -65,7 +65,9 @@ "You have added the attachment {attachment} to card {card}" : "Vi aldonis dosieron {attachment} al karto {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} aldonis dosieron {attachment} al karto {card}", "You have updated the attachment {attachment} on card {card}" : "Vi ĝisdatigis la dosieron {attachment} de karto {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} ĝisdatigis la dosieron {attachment} de karto {card}", "You have deleted the attachment {attachment} from card {card}" : "Vi forigis la dosieron {attachment} el karto {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} forigis la dosieron {attachment} el karto {card}", "You have restored the attachment {attachment} to card {card}" : "Vi restaŭris la dosieron {attachment} al karto {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} restaŭris la dosieron {attachment} al karto {card}", "You have commented on card {card}" : "Vi komentis la karton {card}", diff --git a/l10n/es.js b/l10n/es.js index 532222b4f..1105f16dc 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -67,7 +67,9 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Has añadido el adjunto {attachment} en {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} ha añadido el adjunto {attachment} en {card}", "You have updated the attachment {attachment} on card {card}" : "Has actualizado el adjunto [attachment] en {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} ha actualizado el adjunto {attachment} en la tarjeta {card}", "You have deleted the attachment {attachment} from card {card}" : "Has eliminado el adjunto {attachment} de {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} ha eliminado el adjunto {attachment} de la tarjeta {card}", "You have restored the attachment {attachment} to card {card}" : "Has restaurado el adjunto {attachment} a {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} ha restaurado el adjunto {attachment} a {card}", "You have commented on card {card}" : "Has comentado en la tarjeta {card}", diff --git a/l10n/es.json b/l10n/es.json index 889056125..d5bf23bdd 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -65,7 +65,9 @@ "You have added the attachment {attachment} to card {card}" : "Has añadido el adjunto {attachment} en {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} ha añadido el adjunto {attachment} en {card}", "You have updated the attachment {attachment} on card {card}" : "Has actualizado el adjunto [attachment] en {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} ha actualizado el adjunto {attachment} en la tarjeta {card}", "You have deleted the attachment {attachment} from card {card}" : "Has eliminado el adjunto {attachment} de {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} ha eliminado el adjunto {attachment} de la tarjeta {card}", "You have restored the attachment {attachment} to card {card}" : "Has restaurado el adjunto {attachment} a {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} ha restaurado el adjunto {attachment} a {card}", "You have commented on card {card}" : "Has comentado en la tarjeta {card}", diff --git a/l10n/gl.js b/l10n/gl.js index 70bf426fb..48aaea5f6 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -67,7 +67,9 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Vostede engadiu o anexo {attachment} na tarxeta {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} engadiu o anexo {attachment} na tarxeta {card}", "You have updated the attachment {attachment} on card {card}" : "Vostede actualizou o anexo {attachment} na tarxeta {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} actualizou o anexo {attachment} na tarxeta {card}", "You have deleted the attachment {attachment} from card {card}" : "Vostede eliminou o anexo {attachment} da tarxeta {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} eliminou o anexo {attachment} da tarxeta {card}", "You have restored the attachment {attachment} to card {card}" : "Vostede restaurou o anexo {attachment} na tarxeta {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} restaurou o anexo {attachment} da tarxeta {card}", "You have commented on card {card}" : "Vostede comentou na tarxeta {card}", diff --git a/l10n/gl.json b/l10n/gl.json index 351c9eae8..2221bba5b 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -65,7 +65,9 @@ "You have added the attachment {attachment} to card {card}" : "Vostede engadiu o anexo {attachment} na tarxeta {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} engadiu o anexo {attachment} na tarxeta {card}", "You have updated the attachment {attachment} on card {card}" : "Vostede actualizou o anexo {attachment} na tarxeta {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} actualizou o anexo {attachment} na tarxeta {card}", "You have deleted the attachment {attachment} from card {card}" : "Vostede eliminou o anexo {attachment} da tarxeta {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} eliminou o anexo {attachment} da tarxeta {card}", "You have restored the attachment {attachment} to card {card}" : "Vostede restaurou o anexo {attachment} na tarxeta {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} restaurou o anexo {attachment} da tarxeta {card}", "You have commented on card {card}" : "Vostede comentou na tarxeta {card}", diff --git a/l10n/it.js b/l10n/it.js index 3cf9554b5..9728034f0 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -67,7 +67,9 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Hai aggiunto l'allegato {attachment} alla scheda {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} ha aggiunto l'allegato {attachment} alla scheda {card}", "You have updated the attachment {attachment} on card {card}" : "Hai aggiornato l'allegato {attachment} sulla scheda {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} ha aggiornato l'allegato {attachment} nella scheda {card}", "You have deleted the attachment {attachment} from card {card}" : "Hai eliminato l'allegato {attachment} dalla scheda {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} ha eliminato l'allegato {attachment} dalla scheda {card}", "You have restored the attachment {attachment} to card {card}" : "Hai ripristinato l'allegato {attachment} nella scheda {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} ha ripristinato l'allegato {attachment} nella scheda {card}", "You have commented on card {card}" : "Hai commentato sulla scheda {card}", diff --git a/l10n/it.json b/l10n/it.json index c64df951e..609d2d97a 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -65,7 +65,9 @@ "You have added the attachment {attachment} to card {card}" : "Hai aggiunto l'allegato {attachment} alla scheda {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} ha aggiunto l'allegato {attachment} alla scheda {card}", "You have updated the attachment {attachment} on card {card}" : "Hai aggiornato l'allegato {attachment} sulla scheda {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} ha aggiornato l'allegato {attachment} nella scheda {card}", "You have deleted the attachment {attachment} from card {card}" : "Hai eliminato l'allegato {attachment} dalla scheda {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} ha eliminato l'allegato {attachment} dalla scheda {card}", "You have restored the attachment {attachment} to card {card}" : "Hai ripristinato l'allegato {attachment} nella scheda {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} ha ripristinato l'allegato {attachment} nella scheda {card}", "You have commented on card {card}" : "Hai commentato sulla scheda {card}", diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index 9a540c925..d7b4a1900 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -64,7 +64,9 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Jūs pridėjote priedą {attachment} į kortelę {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} pridėjo priedą {attachment} į kortelę {card}", "You have updated the attachment {attachment} on card {card}" : "Jūs atnaujinote priedą {attachment} kortelėje {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} atnaujino priedą {attachment} kortelėje {card}", "You have deleted the attachment {attachment} from card {card}" : "Jūs ištrynėte priedą {attachment} iš kortelės {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} ištrynė priedą {attachment} iš kortelės {card}", "You have restored the attachment {attachment} to card {card}" : "Jūs atkūrėte priedą {attachment} į kortelę {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} atkūrė priedą {attachment} į kortelę {card}", "You have commented on card {card}" : "Jūs pakomentavote kortelėje {card}", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index 167e48bd3..eaeb38736 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -62,7 +62,9 @@ "You have added the attachment {attachment} to card {card}" : "Jūs pridėjote priedą {attachment} į kortelę {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} pridėjo priedą {attachment} į kortelę {card}", "You have updated the attachment {attachment} on card {card}" : "Jūs atnaujinote priedą {attachment} kortelėje {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} atnaujino priedą {attachment} kortelėje {card}", "You have deleted the attachment {attachment} from card {card}" : "Jūs ištrynėte priedą {attachment} iš kortelės {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} ištrynė priedą {attachment} iš kortelės {card}", "You have restored the attachment {attachment} to card {card}" : "Jūs atkūrėte priedą {attachment} į kortelę {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} atkūrė priedą {attachment} į kortelę {card}", "You have commented on card {card}" : "Jūs pakomentavote kortelėje {card}", diff --git a/l10n/pl.js b/l10n/pl.js index 0a03fc93a..2fad0fa2a 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -67,7 +67,9 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Dodałeś/-aś załącznik {attachment} do karty {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} dodał załącznik {attachment} do karty {card}", "You have updated the attachment {attachment} on card {card}" : "Zaktualizowałeś/-aś załącznik {attachment} na karcie {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} zaktualizował załącznik {attachment} na karcie {card}", "You have deleted the attachment {attachment} from card {card}" : "Usunąłeś/-aś załącznik {attachment} z karty {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} usunął załącznik {attachment} z karty {card}", "You have restored the attachment {attachment} to card {card}" : "Przywróciłeś/-aś załącznik {attachment} na kartę {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} przywrócił załącznik {attachment} na kartę {card}", "You have commented on card {card}" : "Skomentowałeś/-aś kartę {card}", diff --git a/l10n/pl.json b/l10n/pl.json index 2014ab90f..be462e1e6 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -65,7 +65,9 @@ "You have added the attachment {attachment} to card {card}" : "Dodałeś/-aś załącznik {attachment} do karty {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} dodał załącznik {attachment} do karty {card}", "You have updated the attachment {attachment} on card {card}" : "Zaktualizowałeś/-aś załącznik {attachment} na karcie {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} zaktualizował załącznik {attachment} na karcie {card}", "You have deleted the attachment {attachment} from card {card}" : "Usunąłeś/-aś załącznik {attachment} z karty {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} usunął załącznik {attachment} z karty {card}", "You have restored the attachment {attachment} to card {card}" : "Przywróciłeś/-aś załącznik {attachment} na kartę {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} przywrócił załącznik {attachment} na kartę {card}", "You have commented on card {card}" : "Skomentowałeś/-aś kartę {card}", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index e804a3cc1..d323e1362 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -67,7 +67,9 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Você adicionou o anexo {attachment} no cartão {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} adicionou um anexo {attachment} ao cartão {card}", "You have updated the attachment {attachment} on card {card}" : "Você atualizou o anexo {attachment} do cartão {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} atualizou o anexo {attachment} no cartão {card}", "You have deleted the attachment {attachment} from card {card}" : "Você excluiu o anexo {attachment} do cartão {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} excluiu o anexo {attachment} do cartão {card}", "You have restored the attachment {attachment} to card {card}" : "Você restaurou o anexo {attachment} do cartão {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} restaurou o anexo {attachment} do cartão {card}", "You have commented on card {card}" : "Você comentou no cartão {card}", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index e68277034..88de05d3a 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -65,7 +65,9 @@ "You have added the attachment {attachment} to card {card}" : "Você adicionou o anexo {attachment} no cartão {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} adicionou um anexo {attachment} ao cartão {card}", "You have updated the attachment {attachment} on card {card}" : "Você atualizou o anexo {attachment} do cartão {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} atualizou o anexo {attachment} no cartão {card}", "You have deleted the attachment {attachment} from card {card}" : "Você excluiu o anexo {attachment} do cartão {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} excluiu o anexo {attachment} do cartão {card}", "You have restored the attachment {attachment} to card {card}" : "Você restaurou o anexo {attachment} do cartão {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} restaurou o anexo {attachment} do cartão {card}", "You have commented on card {card}" : "Você comentou no cartão {card}", diff --git a/l10n/tr.js b/l10n/tr.js index 482a417d5..96f889efa 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -67,7 +67,9 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "{card} kartına {attachment} dosyasını eklediniz", "{user} has added the attachment {attachment} to card {card}" : "{user}, {card} kartına {attachment} dosyasını ekledi", "You have updated the attachment {attachment} on card {card}" : "{card} kartındaki {attachment} dosyasını güncellediniz", + "{user} has updated the attachment {attachment} on card {card}" : "{user}, {card} kartındaki {attachment} dosyasını güncelledi", "You have deleted the attachment {attachment} from card {card}" : "{card} kartındaki {attachment} dosyasını sildiniz", + "{user} has deleted the attachment {attachment} from card {card}" : "{user}, {card} kartındaki {attachment} dosyasını sildi", "You have restored the attachment {attachment} to card {card}" : "{card} kartındaki {attachment} dosyasını geri yüklediniz", "{user} has restored the attachment {attachment} to card {card}" : "{user}, {card} kartındaki {attachment} dosyasını geri yükledi", "You have commented on card {card}" : "{card} kartı hakkında yorum yaptınız", diff --git a/l10n/tr.json b/l10n/tr.json index 38e35eb94..0b8c885d8 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -65,7 +65,9 @@ "You have added the attachment {attachment} to card {card}" : "{card} kartına {attachment} dosyasını eklediniz", "{user} has added the attachment {attachment} to card {card}" : "{user}, {card} kartına {attachment} dosyasını ekledi", "You have updated the attachment {attachment} on card {card}" : "{card} kartındaki {attachment} dosyasını güncellediniz", + "{user} has updated the attachment {attachment} on card {card}" : "{user}, {card} kartındaki {attachment} dosyasını güncelledi", "You have deleted the attachment {attachment} from card {card}" : "{card} kartındaki {attachment} dosyasını sildiniz", + "{user} has deleted the attachment {attachment} from card {card}" : "{user}, {card} kartındaki {attachment} dosyasını sildi", "You have restored the attachment {attachment} to card {card}" : "{card} kartındaki {attachment} dosyasını geri yüklediniz", "{user} has restored the attachment {attachment} to card {card}" : "{user}, {card} kartındaki {attachment} dosyasını geri yükledi", "You have commented on card {card}" : "{card} kartı hakkında yorum yaptınız", From c51a6b6a8022b10233781e6c6dc1a3529350a110 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 30 Nov 2019 02:26:22 +0000 Subject: [PATCH 67/77] [tx-robot] updated from transifex --- l10n/sv.js | 2 ++ l10n/sv.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/l10n/sv.js b/l10n/sv.js index 5cc73f04d..23dc3c07e 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -67,7 +67,9 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Du har lagt till bilagan {attachment} till kortet {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} har lagt till bilagan {attachment} till kortet {card}", "You have updated the attachment {attachment} on card {card}" : "Du har uppdaterat bilagan {attachment} på kortet {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} har uppdaterat bilagan {attachment} på kortet {card}", "You have deleted the attachment {attachment} from card {card}" : "Du har raderat bilagan {attachment} från kortet {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} har raderat bilagan {attachment} från kortet {card}", "You have restored the attachment {attachment} to card {card}" : "Du har återställt bilagan {attachment} till kortet {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} har återställt bilagan {attachment} till kortet {card}", "You have commented on card {card}" : "Du har kommenterat på kortet {card}", diff --git a/l10n/sv.json b/l10n/sv.json index 069fefbd9..16e67aa88 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -65,7 +65,9 @@ "You have added the attachment {attachment} to card {card}" : "Du har lagt till bilagan {attachment} till kortet {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} har lagt till bilagan {attachment} till kortet {card}", "You have updated the attachment {attachment} on card {card}" : "Du har uppdaterat bilagan {attachment} på kortet {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} har uppdaterat bilagan {attachment} på kortet {card}", "You have deleted the attachment {attachment} from card {card}" : "Du har raderat bilagan {attachment} från kortet {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} har raderat bilagan {attachment} från kortet {card}", "You have restored the attachment {attachment} to card {card}" : "Du har återställt bilagan {attachment} till kortet {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} har återställt bilagan {attachment} till kortet {card}", "You have commented on card {card}" : "Du har kommenterat på kortet {card}", From e361fc713781846761bf4094fde2220b7d0ed828 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 1 Dec 2019 11:55:01 +0000 Subject: [PATCH 68/77] Bump url-loader from 2.1.0 to 3.0.0 in /js Bumps [url-loader](https://github.com/webpack-contrib/url-loader) from 2.1.0 to 3.0.0. - [Release notes](https://github.com/webpack-contrib/url-loader/releases) - [Changelog](https://github.com/webpack-contrib/url-loader/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/url-loader/compare/v2.1.0...v3.0.0) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 36 +++++++++++++++++++++++++++--------- js/package.json | 2 +- 2 files changed, 28 insertions(+), 10 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 8e1b3cd3d..28f9b70ec 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -7034,16 +7034,34 @@ } }, "url-loader": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-2.1.0.tgz", - "integrity": "sha512-kVrp/8VfEm5fUt+fl2E0FQyrpmOYgMEkBsv8+UDP1wFhszECq5JyGF33I7cajlVY90zRZ6MyfgKXngLvHYZX8A==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-3.0.0.tgz", + "integrity": "sha512-a84JJbIA5xTFTWyjjcPdnsu+41o/SNE8SpXMdUvXs6Q+LuhCD9E2+0VCiuDWqgo3GGXVlFHzArDmBpj9PgWn4A==", "dev": true, "requires": { "loader-utils": "^1.2.3", "mime": "^2.4.4", - "schema-utils": "^2.0.0" + "schema-utils": "^2.5.0" }, "dependencies": { + "ajv": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", + "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "dev": true, + "requires": { + "fast-deep-equal": "^2.0.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz", + "integrity": "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==", + "dev": true + }, "big.js": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", @@ -7077,13 +7095,13 @@ "dev": true }, "schema-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.0.1.tgz", - "integrity": "sha512-HJFKJ4JixDpRur06QHwi8uu2kZbng318ahWEKgBjc0ZklcE4FDvmm2wghb448q0IRaABxIESt8vqPFvwgMB80A==", + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.1.tgz", + "integrity": "sha512-0WXHDs1VDJyo+Zqs9TKLKyD/h7yDpHUhEFsM2CzkICFdoX1av+GBq/J2xRTFfsQO5kBfhZzANf2VcIm84jqDbg==", "dev": true, "requires": { - "ajv": "^6.1.0", - "ajv-keywords": "^3.1.0" + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1" } } } diff --git a/js/package.json b/js/package.json index 9def3d0f3..6ac99419b 100644 --- a/js/package.json +++ b/js/package.json @@ -36,7 +36,7 @@ "mini-css-extract-plugin": "^0.8.0", "style-loader": "^1.0.0", "uglifyjs-webpack-plugin": "^2.2.0", - "url-loader": "^2.1.0", + "url-loader": "^3.0.0", "vue-loader": "^15.7.2", "vue-style-loader": "^4.1.2", "vue-template-compiler": "^2.6.10", From 9da7fe01da800960567a737bea39cf4fd9157365 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 1 Dec 2019 11:55:08 +0000 Subject: [PATCH 69/77] Bump @babel/plugin-syntax-dynamic-import from 7.2.0 to 7.7.4 in /js Bumps [@babel/plugin-syntax-dynamic-import](https://github.com/babel/babel) from 7.2.0 to 7.7.4. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.2.0...v7.7.4) Signed-off-by: dependabot-preview[bot] --- js/package-lock.json | 6 +++--- js/package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/package-lock.json b/js/package-lock.json index 8e1b3cd3d..7d011e483 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -608,9 +608,9 @@ } }, "@babel/plugin-syntax-dynamic-import": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz", - "integrity": "sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w==", + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.7.4.tgz", + "integrity": "sha512-jHQW0vbRGvwQNgyVxwDh4yuXu4bH1f5/EICJLAhl1SblLs2CDhrsmCk+v5XLdE9wxtAFRyxx+P//Iw+a5L/tTg==", "requires": { "@babel/helper-plugin-utils": "^7.0.0" } diff --git a/js/package.json b/js/package.json index 9def3d0f3..6288ccd53 100644 --- a/js/package.json +++ b/js/package.json @@ -27,7 +27,7 @@ }, "devDependencies": { "@babel/core": "^7.6.4", - "@babel/plugin-syntax-dynamic-import": "^7.2.0", + "@babel/plugin-syntax-dynamic-import": "^7.7.4", "@babel/polyfill": "^7.7.0", "@babel/preset-env": "^7.6.3", "babel-loader": "^8.0.6", From 97fa6cc774cc513d2d3c8113e32618efe6161f53 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 5 Dec 2019 02:26:31 +0000 Subject: [PATCH 70/77] [tx-robot] updated from transifex --- l10n/el.js | 23 +++++++++++++++++++++++ l10n/el.json | 23 +++++++++++++++++++++++ 2 files changed, 46 insertions(+) diff --git a/l10n/el.js b/l10n/el.js index 4f6fe27ab..e09cacad1 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -1,9 +1,32 @@ OC.L10N.register( "deck", { + "Please provide a content for your comment." : "Παρακαλώ παρέχετε περιεχόμενο για το σχόλιο σας.", + "Posting the comment failed." : "Η δημοσίευση του σχολίου απέτυχε.", + "The comment has been deleted" : "Το σχόλιο διαγράφηκε.", + "The associated stack is deleted as well, it will be restored as well." : "Διαγραφή σχετικών ενεργειών και επαναφορά τους.", + "Restore associated stack" : "Επαναφορά σχετικών ενεργειών.", "Remove user from card" : "Αφαίρεση χρήστη από την κάρτα", "Hours" : "Ώρες", "Minutes" : "Λεπτά", + "Maximum file size of {size} exceeded" : "Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}", + "File already exists" : "Το αρχείο υπάρχει ήδη", + "You have created a new board {board}" : "Δημιουργήσατε νέο πίνακα {board}", + "{user} has created a new board {board}" : "Ο {user} δημιούργησε νέο πίνακα {board}", + "You have deleted the board {board}" : "Έχετε διαγράψει τον πίνακα {board}", + "{user} has deleted the board {board}" : "Ο {user} διέγραψε τον πίνακα {board}", + "You have restored the board {board}" : "Εχετε επαναφέρει τον πίνακα {board}", + "{user} has restored the board {board}" : "Ο {user} επανέφερε τον πίνακα {board}", + "You have shared the board {board} with {acl}" : "Εχετε διαμοιράσει τον πίνακα {board} με {acl}", + "{user} has shared the board {board} with {acl}" : "Ο {user} διαμοίρασε τον πίνακα {board} με {acl}", + "You have removed {acl} from the board {board}" : "Αφαιρέθηκε η {acl} από τον πίνακα {board}", + "{user} has removed {acl} from the board {board}" : "Ο {user} αφαίρεσε την {acl} από τον πίνακα {board}", + "You have renamed the board {before} to {board}" : "Μετονομάσατε τον πίνακα {before} σε {board}", + "{user} has renamed the board {before} to {board}" : "Ο {user} μετονόμασε τον πίνακα {before} σε {board}", + "You have archived the board {board}" : "Αρχειοθετήσατε τον πίνακα {board}", + "{user} has archived the board {before}" : "Ο {user} αρχειοθέτησε τον πίνακα {before}", + "You have unarchived the board {board}" : "Επαναφέρατε τον πίνακα {board} από αρχείο", + "{user} has unarchived the board {before}" : "Ο {user} επανέφερε τον πίνακα {before} από αρχείο", "Deck" : "Deck", "The card \"%s\" on \"%s\" has reached its due date." : "Η κάρτα \"1%s\" στο \"1%s\" έχει λήξει.", "Finished" : "Ολοκληρώθηκε", diff --git a/l10n/el.json b/l10n/el.json index 18fb239c1..065874096 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -1,7 +1,30 @@ { "translations": { + "Please provide a content for your comment." : "Παρακαλώ παρέχετε περιεχόμενο για το σχόλιο σας.", + "Posting the comment failed." : "Η δημοσίευση του σχολίου απέτυχε.", + "The comment has been deleted" : "Το σχόλιο διαγράφηκε.", + "The associated stack is deleted as well, it will be restored as well." : "Διαγραφή σχετικών ενεργειών και επαναφορά τους.", + "Restore associated stack" : "Επαναφορά σχετικών ενεργειών.", "Remove user from card" : "Αφαίρεση χρήστη από την κάρτα", "Hours" : "Ώρες", "Minutes" : "Λεπτά", + "Maximum file size of {size} exceeded" : "Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}", + "File already exists" : "Το αρχείο υπάρχει ήδη", + "You have created a new board {board}" : "Δημιουργήσατε νέο πίνακα {board}", + "{user} has created a new board {board}" : "Ο {user} δημιούργησε νέο πίνακα {board}", + "You have deleted the board {board}" : "Έχετε διαγράψει τον πίνακα {board}", + "{user} has deleted the board {board}" : "Ο {user} διέγραψε τον πίνακα {board}", + "You have restored the board {board}" : "Εχετε επαναφέρει τον πίνακα {board}", + "{user} has restored the board {board}" : "Ο {user} επανέφερε τον πίνακα {board}", + "You have shared the board {board} with {acl}" : "Εχετε διαμοιράσει τον πίνακα {board} με {acl}", + "{user} has shared the board {board} with {acl}" : "Ο {user} διαμοίρασε τον πίνακα {board} με {acl}", + "You have removed {acl} from the board {board}" : "Αφαιρέθηκε η {acl} από τον πίνακα {board}", + "{user} has removed {acl} from the board {board}" : "Ο {user} αφαίρεσε την {acl} από τον πίνακα {board}", + "You have renamed the board {before} to {board}" : "Μετονομάσατε τον πίνακα {before} σε {board}", + "{user} has renamed the board {before} to {board}" : "Ο {user} μετονόμασε τον πίνακα {before} σε {board}", + "You have archived the board {board}" : "Αρχειοθετήσατε τον πίνακα {board}", + "{user} has archived the board {before}" : "Ο {user} αρχειοθέτησε τον πίνακα {before}", + "You have unarchived the board {board}" : "Επαναφέρατε τον πίνακα {board} από αρχείο", + "{user} has unarchived the board {before}" : "Ο {user} επανέφερε τον πίνακα {before} από αρχείο", "Deck" : "Deck", "The card \"%s\" on \"%s\" has reached its due date." : "Η κάρτα \"1%s\" στο \"1%s\" έχει λήξει.", "Finished" : "Ολοκληρώθηκε", From 86781d84200bd1d56406a3fb34e70ed6c585c3b5 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 6 Dec 2019 02:26:50 +0000 Subject: [PATCH 71/77] [tx-robot] updated from transifex --- l10n/cs.js | 2 +- l10n/cs.json | 2 +- l10n/eu.js | 37 +++++++++++++++++-------------------- l10n/eu.json | 37 +++++++++++++++++-------------------- 4 files changed, 36 insertions(+), 42 deletions(-) diff --git a/l10n/cs.js b/l10n/cs.js index b4cbe8584..cd65e7494 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -170,7 +170,7 @@ OC.L10N.register( "Select an attachment" : "Vybrat přílohu", "Cancel upload" : "Zrušit nahrávání", "by" : "od", - "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátit smazání souboru – v opačném případě bude soubor trvale smazán při dalším běhu cronjobu.", + "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátit smazání souboru – jinak bude trvale smazán při dalším běhu naplánované úlohy.", "Undo file deletion" : "Vzít zpět smazání souboru", "Insert the file into the description" : "Vložte soubor do popisu", "Delete attachment" : "Smazat přílohu", diff --git a/l10n/cs.json b/l10n/cs.json index 3d35c99f8..86e676b5e 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -168,7 +168,7 @@ "Select an attachment" : "Vybrat přílohu", "Cancel upload" : "Zrušit nahrávání", "by" : "od", - "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátit smazání souboru – v opačném případě bude soubor trvale smazán při dalším běhu cronjobu.", + "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátit smazání souboru – jinak bude trvale smazán při dalším běhu naplánované úlohy.", "Undo file deletion" : "Vzít zpět smazání souboru", "Insert the file into the description" : "Vložte soubor do popisu", "Delete attachment" : "Smazat přílohu", diff --git a/l10n/eu.js b/l10n/eu.js index ce2e3610e..c71dfa869 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -10,8 +10,6 @@ OC.L10N.register( "Deck" : "Mahaigaina", "Personal" : "Pertsonala", "The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.", - "The board \"%s\" has been shared with you by %s." : "\"%s\" mahaingaina %s-k zurekin partekatu du.", - "{user} has shared the board %s with you." : "{user} erabiltzaileak %s mahaigaina zurekin partekatu du.", "Finished" : "Bukatuta", "To review" : "Errebisatzeko", "Action needed" : "Ekintza beharrezkoa", @@ -19,13 +17,16 @@ OC.L10N.register( "To do" : "Egiteke", "Doing" : "Egiten", "Done" : "Egina", + "Example Task 3" : "Adibidetarako ataza 3", + "Example Task 2" : "Adibidetarako ataza 2", + "Example Task 1" : "Adibidetarako ataza 1", "The file was uploaded" : "Fitxategia igo da", "No file was uploaded" : "Ez da fitxategirik igo", "Add a new stack" : "Pila berria gehitu", "Submit" : "Bidali", "Show archived cards" : "Artxibatutako txartelak erakutsi", - "Hide archived cards" : "Artxibatutako txartelak ezkutatu", - "All Boards" : "Mahai guztiak", + "Hide archived cards" : "Ezkutatu artxibatutako txartelak", + "Toggle compact mode" : "Txandakatu modu trinkoa", "Archived boards" : "Artxibatutako txartelak", "Archived cards" : "Artxibatutako txartelak", "Actions" : "Ekintzak", @@ -39,8 +40,10 @@ OC.L10N.register( "Tags" : "Etiketak", "Deleted items" : "Ezabatutako elementuak", "Timeline" : "Denbora-lerroa", - "Select users or groups to share with" : "Partekatzeko erabiltzaile eta taldeak hautatu", - "No matching user or group found." : "Ados datorren erabiltzailerik edo talderik ez da topatu", + "Select users or groups to share with" : "Hautatu erabiltzaile edo taldeak haiekin partekatzeko", + "Group" : "Taldea", + "Circle" : "Zirkulua", + "No matching user or group found." : "Ez da aurkitu bat datorren erabiltzailerik edo talderik.", "Loading" : "Kargatzen", "Edit" : "Editatu", "Share" : "Partekatu", @@ -54,26 +57,21 @@ OC.L10N.register( "Title" : "Izenburua", "Members" : "Partaideak", "More actions" : "Ekintza gehiago", - "Edit board" : "Mahaigaina editatu", - "Archive board" : "Mahaigaina artxibatu", - "Unarchive board" : "Mahaigaina artxibotik atera", - "Delete board" : "Mahaigaina borratu", - "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Mahaiagainaren borratzea ezeztatu - Bestela cron lanaren hurrengo aktibazioan borratuko da.", - "Create new board" : "Mahaigain berria sortzen du", - "New board title" : "Mahaigainaren izenburu berria", "Select an attachment" : "Hautatu eranskin bat", - "by" : "-engatik", + "Cancel upload" : "Ezeztatu kargatzea", + "by" : "Nork", "Undo file deletion" : "Desegin fitxategiaren ezabaketa", "Delete attachment" : "Ezabatu eranskina", "Modified:" : "Aldatua:", "Created:" : "Sortua:", - "Choose a tag" : "Etiketa hautatu", - "Add a tag" : "Etiketa gehitu", - "Select tags" : "Etiketa hautatu", - "Assign users" : "Erabiltzaileak esleitu", + "Choose a tag" : "Aukeratu etiketa bat", + "Add a tag" : "Gehitu etiketa bat", + "Select tags" : "Hautatu etiketak", + "Assign users" : "Esleitu erabiltzaileak", + "Choose a user to assign" : "Aukeratu erabiltzaile bat esleitzeko", "Assign this card to a user" : "Txartel hau erabiltzaile bati esleitu", "Due date" : "Epe-muga", - "Click to set" : "Klik ezartzeko", + "Click to set" : "Egin klik ezartzeko", "Remove due date" : "Ezabatu epe-muga", "Description" : "Deskribapena", "Attachments" : "Eranskinak", @@ -85,7 +83,6 @@ OC.L10N.register( "Add a card description…" : "Txartelaren deskribapena gehitu...", "Shared boards" : "Partekatutako txartelak", "Move board to archive" : "Txartela artxibora mugitu", - "Create a new board" : "Mahaigain berria sortu", "Settings" : "Ezarpenak" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/eu.json b/l10n/eu.json index 76119cbd1..7137b58ec 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -8,8 +8,6 @@ "Deck" : "Mahaigaina", "Personal" : "Pertsonala", "The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.", - "The board \"%s\" has been shared with you by %s." : "\"%s\" mahaingaina %s-k zurekin partekatu du.", - "{user} has shared the board %s with you." : "{user} erabiltzaileak %s mahaigaina zurekin partekatu du.", "Finished" : "Bukatuta", "To review" : "Errebisatzeko", "Action needed" : "Ekintza beharrezkoa", @@ -17,13 +15,16 @@ "To do" : "Egiteke", "Doing" : "Egiten", "Done" : "Egina", + "Example Task 3" : "Adibidetarako ataza 3", + "Example Task 2" : "Adibidetarako ataza 2", + "Example Task 1" : "Adibidetarako ataza 1", "The file was uploaded" : "Fitxategia igo da", "No file was uploaded" : "Ez da fitxategirik igo", "Add a new stack" : "Pila berria gehitu", "Submit" : "Bidali", "Show archived cards" : "Artxibatutako txartelak erakutsi", - "Hide archived cards" : "Artxibatutako txartelak ezkutatu", - "All Boards" : "Mahai guztiak", + "Hide archived cards" : "Ezkutatu artxibatutako txartelak", + "Toggle compact mode" : "Txandakatu modu trinkoa", "Archived boards" : "Artxibatutako txartelak", "Archived cards" : "Artxibatutako txartelak", "Actions" : "Ekintzak", @@ -37,8 +38,10 @@ "Tags" : "Etiketak", "Deleted items" : "Ezabatutako elementuak", "Timeline" : "Denbora-lerroa", - "Select users or groups to share with" : "Partekatzeko erabiltzaile eta taldeak hautatu", - "No matching user or group found." : "Ados datorren erabiltzailerik edo talderik ez da topatu", + "Select users or groups to share with" : "Hautatu erabiltzaile edo taldeak haiekin partekatzeko", + "Group" : "Taldea", + "Circle" : "Zirkulua", + "No matching user or group found." : "Ez da aurkitu bat datorren erabiltzailerik edo talderik.", "Loading" : "Kargatzen", "Edit" : "Editatu", "Share" : "Partekatu", @@ -52,26 +55,21 @@ "Title" : "Izenburua", "Members" : "Partaideak", "More actions" : "Ekintza gehiago", - "Edit board" : "Mahaigaina editatu", - "Archive board" : "Mahaigaina artxibatu", - "Unarchive board" : "Mahaigaina artxibotik atera", - "Delete board" : "Mahaigaina borratu", - "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Mahaiagainaren borratzea ezeztatu - Bestela cron lanaren hurrengo aktibazioan borratuko da.", - "Create new board" : "Mahaigain berria sortzen du", - "New board title" : "Mahaigainaren izenburu berria", "Select an attachment" : "Hautatu eranskin bat", - "by" : "-engatik", + "Cancel upload" : "Ezeztatu kargatzea", + "by" : "Nork", "Undo file deletion" : "Desegin fitxategiaren ezabaketa", "Delete attachment" : "Ezabatu eranskina", "Modified:" : "Aldatua:", "Created:" : "Sortua:", - "Choose a tag" : "Etiketa hautatu", - "Add a tag" : "Etiketa gehitu", - "Select tags" : "Etiketa hautatu", - "Assign users" : "Erabiltzaileak esleitu", + "Choose a tag" : "Aukeratu etiketa bat", + "Add a tag" : "Gehitu etiketa bat", + "Select tags" : "Hautatu etiketak", + "Assign users" : "Esleitu erabiltzaileak", + "Choose a user to assign" : "Aukeratu erabiltzaile bat esleitzeko", "Assign this card to a user" : "Txartel hau erabiltzaile bati esleitu", "Due date" : "Epe-muga", - "Click to set" : "Klik ezartzeko", + "Click to set" : "Egin klik ezartzeko", "Remove due date" : "Ezabatu epe-muga", "Description" : "Deskribapena", "Attachments" : "Eranskinak", @@ -83,7 +81,6 @@ "Add a card description…" : "Txartelaren deskribapena gehitu...", "Shared boards" : "Partekatutako txartelak", "Move board to archive" : "Txartela artxibora mugitu", - "Create a new board" : "Mahaigain berria sortu", "Settings" : "Ezarpenak" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From b0022cb6b3ed4b20f3fbf5b57c5872048f24f4c6 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 7 Dec 2019 02:26:24 +0000 Subject: [PATCH 72/77] [tx-robot] updated from transifex --- l10n/tr.js | 2 +- l10n/tr.json | 2 +- l10n/zh_CN.js | 2 ++ l10n/zh_CN.json | 2 ++ 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/l10n/tr.js b/l10n/tr.js index 96f889efa..cf32f8a48 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -192,7 +192,7 @@ OC.L10N.register( "Insert attachment" : "Ek dosya ekle", "Formatting help" : "Biçimlendirme yardımı", "Upload attachment" : "Ek dosya yükle", - "Add a card description…" : "Bir kart açıklaması ekle...", + "Add a card description…" : "Bir kart açıklaması ekle …", "Shared boards" : "Paylaşılmış panolar", "Move board to archive" : "Panoyu arşive taşı", "Create a new board" : "Pano ekle", diff --git a/l10n/tr.json b/l10n/tr.json index 0b8c885d8..addb22bc4 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -190,7 +190,7 @@ "Insert attachment" : "Ek dosya ekle", "Formatting help" : "Biçimlendirme yardımı", "Upload attachment" : "Ek dosya yükle", - "Add a card description…" : "Bir kart açıklaması ekle...", + "Add a card description…" : "Bir kart açıklaması ekle …", "Shared boards" : "Paylaşılmış panolar", "Move board to archive" : "Panoyu arşive taşı", "Create a new board" : "Pano ekle", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 988049aeb..963cc7e59 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -67,7 +67,9 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "您为卡片 {card} 添加了附件 {attachment}", "{user} has added the attachment {attachment} to card {card}" : "{user} 为卡片 {card} 添加了附件 {attachment}", "You have updated the attachment {attachment} on card {card}" : "您更新了卡片 {card} 中的附件 {attachment}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} 更新了卡 {card} 上的附件 {attachment}", "You have deleted the attachment {attachment} from card {card}" : "您删除了卡片 {card} 中的附件 {attachment}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} 已从卡 {card} 中删除附件 {attachment}", "You have restored the attachment {attachment} to card {card}" : "您恢复了卡片 {card} 中的附件 {attachment}", "{user} has restored the attachment {attachment} to card {card}" : "{user} 恢复了卡片 {card} 中的附件 {attachment}", "You have commented on card {card}" : "您评论了卡片 {card}", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index b328a472e..a77796282 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -65,7 +65,9 @@ "You have added the attachment {attachment} to card {card}" : "您为卡片 {card} 添加了附件 {attachment}", "{user} has added the attachment {attachment} to card {card}" : "{user} 为卡片 {card} 添加了附件 {attachment}", "You have updated the attachment {attachment} on card {card}" : "您更新了卡片 {card} 中的附件 {attachment}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} 更新了卡 {card} 上的附件 {attachment}", "You have deleted the attachment {attachment} from card {card}" : "您删除了卡片 {card} 中的附件 {attachment}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} 已从卡 {card} 中删除附件 {attachment}", "You have restored the attachment {attachment} to card {card}" : "您恢复了卡片 {card} 中的附件 {attachment}", "{user} has restored the attachment {attachment} to card {card}" : "{user} 恢复了卡片 {card} 中的附件 {attachment}", "You have commented on card {card}" : "您评论了卡片 {card}", From 8c4ece99cbdf8fdb2e49f35311e73f599a27e625 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 8 Dec 2019 02:27:02 +0000 Subject: [PATCH 73/77] [tx-robot] updated from transifex --- l10n/tr.js | 2 +- l10n/tr.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/tr.js b/l10n/tr.js index cf32f8a48..ae27b9d0b 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -86,7 +86,7 @@ OC.L10N.register( "{user} has mentioned you in a comment on \"%s\"." : "{user} kullanıcısı, \"%s\" üzerindeki bir yorumda sizi andı", "The board \"%s\" has been shared with you by %s." : "\"%s\" panosu %s tarafından sizinle paylaşıldı.", "{user} has shared the board %s with you." : "{user} sizinle %s panosunu paylaştı.", - "No data was provided to create an attachment." : "Bir ek dosyası oluşturmak için herhangi bir veri sağlanmadı.", + "No data was provided to create an attachment." : "Bir ek dosya oluşturmak için herhangi bir veri belirtilmedi.", "Finished" : "Tamamlandı", "To review" : "İncelenecek", "Action needed" : "İşlem yapılması gerekiyor", diff --git a/l10n/tr.json b/l10n/tr.json index addb22bc4..89c1c751a 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -84,7 +84,7 @@ "{user} has mentioned you in a comment on \"%s\"." : "{user} kullanıcısı, \"%s\" üzerindeki bir yorumda sizi andı", "The board \"%s\" has been shared with you by %s." : "\"%s\" panosu %s tarafından sizinle paylaşıldı.", "{user} has shared the board %s with you." : "{user} sizinle %s panosunu paylaştı.", - "No data was provided to create an attachment." : "Bir ek dosyası oluşturmak için herhangi bir veri sağlanmadı.", + "No data was provided to create an attachment." : "Bir ek dosya oluşturmak için herhangi bir veri belirtilmedi.", "Finished" : "Tamamlandı", "To review" : "İncelenecek", "Action needed" : "İşlem yapılması gerekiyor", From 168799214f36af9a525d6fa9836fe5ce217530a0 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 10 Dec 2019 02:26:28 +0000 Subject: [PATCH 74/77] [tx-robot] updated from transifex --- l10n/eu.js | 81 +++++++++++++++++++++++++++++++++++++++++++++------- l10n/eu.json | 81 +++++++++++++++++++++++++++++++++++++++++++++------- 2 files changed, 142 insertions(+), 20 deletions(-) diff --git a/l10n/eu.js b/l10n/eu.js index c71dfa869..cf8c3dd25 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -4,9 +4,43 @@ OC.L10N.register( "Please provide a content for your comment." : "Eman edukia zure iruzkinari.", "Posting the comment failed." : "Iruzkinaren bidalketak huts egin du.", "The comment has been deleted" : "Iruzkina ezabatu da", + "Restore associated stack" : "Leheneratu lotutako pila", "Remove user from card" : "Kendu erabiltzailea txarteletik", "Hours" : "Orduak", "Minutes" : "Minutuak", + "Link to a board" : "Estekatu taula batera", + "Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da", + "File already exists" : "Badago izen bereko fitxategi bat", + "You have created a new board {board}" : "{board} taula berri bat sortu duzu", + "{user} has created a new board {board}" : "{user} erabiltzaileak {board} taula berri bat sortu du", + "You have deleted the board {board}" : "{board} taula ezabatu duzu", + "{user} has deleted the board {board}" : "{user} erabiltzaileak {board} taula ezabatu du", + "You have restored the board {board}" : "{board} taula leheneratu duzu", + "{user} has restored the board {board}" : "{user} erabiltzaileak {board} taula leheneratu du", + "You have shared the board {board} with {acl}" : "{board} taula {acl} erabiltzailearekin partekatu duzu", + "{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} taula {acl} erabiltzailearekin partekatu du", + "You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} taulatik", + "{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} taulatik", + "You have renamed the board {before} to {board}" : "{before} taula zena {board} bezala berrizendatu duzu", + "{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} taula zena {board} bezala berrizendatu du", + "You have archived the board {board}" : "{board} taula artxibatu duzu", + "{user} has archived the board {before}" : "{user} erabiltzaileak {before} taula artxibatu du", + "You have unarchived the board {board}" : "{board} taula artxibotik berreskuratu duzu", + "{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} taula artxibotik berreskuratu du", + "You have created a new stack {stack} on board {board}" : "{stack} pila berri bat sortu duzu {board} taulan", + "{user} has created a new stack {stack} on board {board}" : "{user} erabiltzaileak {stack} pila berri bat sortu duzu {board} taulan", + "You have renamed stack {before} to {stack} on board {board}" : "{before} pila zena {stack} bezala berrizendatu duzu {board} taulan", + "{user} has renamed stack {before} to {stack} on board {board}" : "{user} erabiltzaileak {before} pila zena {stack} bezala berrizendatu du {board} taulan", + "You have deleted stack {stack} on board {board}" : "{stack} pila ezabatu duzu {board} taulan", + "{user} has deleted stack {stack} on board {board}" : "{user} erabiltzaileak {stack} pila ezabatu du {board} taulan", + "You have created card {card} in stack {stack} on board {board}" : "{card} txartela sortu duzu {board} taulako {stack} pilan", + "{user} has created card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {card} txartela sortu du {board} taulako {stack} pilan", + "You have deleted card {card} in stack {stack} on board {board}" : "{card} txartela ezabatu duzu {board} taulako {stack} pilan", + "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} taulako {stack} pilan", + "You have renamed the card {before} to {card}" : "{before} taula zena {card} bezala berrizendatu duzu", + "{user} has renamed the card {before} to {card}" : "{user} erabiltzaileak {before} taula zena {card} bezala berrizendatu du", + "You have unarchived card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartela berreskuratu duzu artxibotik", + "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartela berreskuratu du artxibotik", "Deck" : "Mahaigaina", "Personal" : "Pertsonala", "The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.", @@ -22,19 +56,27 @@ OC.L10N.register( "Example Task 1" : "Adibidetarako ataza 1", "The file was uploaded" : "Fitxategia igo da", "No file was uploaded" : "Ez da fitxategirik igo", - "Add a new stack" : "Pila berria gehitu", + "Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko", + "Select board" : "Hautatu taula", + "Add a new stack" : "Gehitu pila berria", "Submit" : "Bidali", - "Show archived cards" : "Artxibatutako txartelak erakutsi", + "Show archived cards" : "Erakutsi artxibatutako txartelak", "Hide archived cards" : "Ezkutatu artxibatutako txartelak", "Toggle compact mode" : "Txandakatu modu trinkoa", + "Show board details" : "Erakutsi taularen xehetasunak", + "All Boards" : "Taula guztiak", "Archived boards" : "Artxibatutako txartelak", + "Share board" : "Partekatu taula", "Archived cards" : "Artxibatutako txartelak", "Actions" : "Ekintzak", + "Drop your files here to upload it to the card" : "Jaregin fitxategiak hemen txartelera kargatzeko", + "Assign card to me" : "Esleitu txartela niri", + "Unassign card from me" : "Desegin txartela niri esleitzea", "Archive card" : "Artxibatu txartela", "Unarchive card" : "Berreskuratu txartela artxibotik", "Delete card" : "Ezabatu txartela", - "Enter a card title" : "Txartelaren titulua sartu", - "Add card" : "Txartela gehitu", + "Enter a card title" : "Sartu txartelaren izenburua", + "Add card" : "Gehitu txartela", "Close" : "Itxi", "Sharing" : "Partekatzen", "Tags" : "Etiketak", @@ -47,20 +89,38 @@ OC.L10N.register( "Loading" : "Kargatzen", "Edit" : "Editatu", "Share" : "Partekatu", - "Manage" : "Kudeaketa", - "Discard share" : "Partekatutakoa ezeztatu", + "Manage" : "Kudeatu", + "Discard share" : "Baztertu partekatzea", + "Sharing has been disabled for your account." : "Partekatzea desgaitu da zure kontuarentzat.", + "Update tag" : "Eguneratu etiketa", "Edit tag" : "Editatu etiketa", "Delete tag" : "Ezabatu etiketa", "Create" : "Sortu", - "Create a new tag" : "Etiketa berria sortu", + "Create a new tag" : "Sortu etiketa berria", + "Deleted stacks" : "Ezabatutako pilak", + "Deleted cards" : "Ezabatutako txartelak", "Status" : "Egoera", + "No archived boards to display" : "Artxibatutako taularik ez dago bistaratzeko", + "No shared boards to display" : "Partekatutako taularik ez dago bistaratzeko", "Title" : "Izenburua", "Members" : "Partaideak", "More actions" : "Ekintza gehiago", + "Edit board" : "Editatu taula", + "Archive board" : "Artxibatu taula", + "Unarchive board" : "Atera taula artxibotik", + "Delete board" : "Ezabatu taula", + "Update board" : "Eguneratu taula", + "Reset board" : "Berrezarri taula", + "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Desegin taularen ezabaketa - Bestela taula hurrengo cron lanaren exekuzioan ezabatuko da.", + "Create new board" : "Sortu taula berri bat", + "New board title" : "Taula berriaren izenburua", + "Create board" : "Sortu taula", "Select an attachment" : "Hautatu eranskin bat", "Cancel upload" : "Ezeztatu kargatzea", "by" : "Nork", + "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Desegin fitxategiaren ezabaketa - bestela fitxategia hurrengo cron lanaren exekuzioan ezabatuko da.", "Undo file deletion" : "Desegin fitxategiaren ezabaketa", + "Insert the file into the description" : "Txertatu fitxategia deskribapenean", "Delete attachment" : "Ezabatu eranskina", "Modified:" : "Aldatua:", "Created:" : "Sortua:", @@ -69,7 +129,7 @@ OC.L10N.register( "Select tags" : "Hautatu etiketak", "Assign users" : "Esleitu erabiltzaileak", "Choose a user to assign" : "Aukeratu erabiltzaile bat esleitzeko", - "Assign this card to a user" : "Txartel hau erabiltzaile bati esleitu", + "Assign this card to a user" : "Esleitu txartel hau erabiltzaile bati", "Due date" : "Epe-muga", "Click to set" : "Egin klik ezartzeko", "Remove due date" : "Ezabatu epe-muga", @@ -80,9 +140,10 @@ OC.L10N.register( "Insert attachment" : "Txertatu eranskina", "Formatting help" : "Formatua emateko laguntza", "Upload attachment" : "Igo eranskina", - "Add a card description…" : "Txartelaren deskribapena gehitu...", + "Add a card description…" : "Gehitu txartelaren deskribapena...", "Shared boards" : "Partekatutako txartelak", - "Move board to archive" : "Txartela artxibora mugitu", + "Move board to archive" : "Artxibatu txartela", + "Create a new board" : "Sortu taula berri bat", "Settings" : "Ezarpenak" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/eu.json b/l10n/eu.json index 7137b58ec..18ebcdb7c 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -2,9 +2,43 @@ "Please provide a content for your comment." : "Eman edukia zure iruzkinari.", "Posting the comment failed." : "Iruzkinaren bidalketak huts egin du.", "The comment has been deleted" : "Iruzkina ezabatu da", + "Restore associated stack" : "Leheneratu lotutako pila", "Remove user from card" : "Kendu erabiltzailea txarteletik", "Hours" : "Orduak", "Minutes" : "Minutuak", + "Link to a board" : "Estekatu taula batera", + "Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da", + "File already exists" : "Badago izen bereko fitxategi bat", + "You have created a new board {board}" : "{board} taula berri bat sortu duzu", + "{user} has created a new board {board}" : "{user} erabiltzaileak {board} taula berri bat sortu du", + "You have deleted the board {board}" : "{board} taula ezabatu duzu", + "{user} has deleted the board {board}" : "{user} erabiltzaileak {board} taula ezabatu du", + "You have restored the board {board}" : "{board} taula leheneratu duzu", + "{user} has restored the board {board}" : "{user} erabiltzaileak {board} taula leheneratu du", + "You have shared the board {board} with {acl}" : "{board} taula {acl} erabiltzailearekin partekatu duzu", + "{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} taula {acl} erabiltzailearekin partekatu du", + "You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} taulatik", + "{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} taulatik", + "You have renamed the board {before} to {board}" : "{before} taula zena {board} bezala berrizendatu duzu", + "{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} taula zena {board} bezala berrizendatu du", + "You have archived the board {board}" : "{board} taula artxibatu duzu", + "{user} has archived the board {before}" : "{user} erabiltzaileak {before} taula artxibatu du", + "You have unarchived the board {board}" : "{board} taula artxibotik berreskuratu duzu", + "{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} taula artxibotik berreskuratu du", + "You have created a new stack {stack} on board {board}" : "{stack} pila berri bat sortu duzu {board} taulan", + "{user} has created a new stack {stack} on board {board}" : "{user} erabiltzaileak {stack} pila berri bat sortu duzu {board} taulan", + "You have renamed stack {before} to {stack} on board {board}" : "{before} pila zena {stack} bezala berrizendatu duzu {board} taulan", + "{user} has renamed stack {before} to {stack} on board {board}" : "{user} erabiltzaileak {before} pila zena {stack} bezala berrizendatu du {board} taulan", + "You have deleted stack {stack} on board {board}" : "{stack} pila ezabatu duzu {board} taulan", + "{user} has deleted stack {stack} on board {board}" : "{user} erabiltzaileak {stack} pila ezabatu du {board} taulan", + "You have created card {card} in stack {stack} on board {board}" : "{card} txartela sortu duzu {board} taulako {stack} pilan", + "{user} has created card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {card} txartela sortu du {board} taulako {stack} pilan", + "You have deleted card {card} in stack {stack} on board {board}" : "{card} txartela ezabatu duzu {board} taulako {stack} pilan", + "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} taulako {stack} pilan", + "You have renamed the card {before} to {card}" : "{before} taula zena {card} bezala berrizendatu duzu", + "{user} has renamed the card {before} to {card}" : "{user} erabiltzaileak {before} taula zena {card} bezala berrizendatu du", + "You have unarchived card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartela berreskuratu duzu artxibotik", + "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartela berreskuratu du artxibotik", "Deck" : "Mahaigaina", "Personal" : "Pertsonala", "The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.", @@ -20,19 +54,27 @@ "Example Task 1" : "Adibidetarako ataza 1", "The file was uploaded" : "Fitxategia igo da", "No file was uploaded" : "Ez da fitxategirik igo", - "Add a new stack" : "Pila berria gehitu", + "Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko", + "Select board" : "Hautatu taula", + "Add a new stack" : "Gehitu pila berria", "Submit" : "Bidali", - "Show archived cards" : "Artxibatutako txartelak erakutsi", + "Show archived cards" : "Erakutsi artxibatutako txartelak", "Hide archived cards" : "Ezkutatu artxibatutako txartelak", "Toggle compact mode" : "Txandakatu modu trinkoa", + "Show board details" : "Erakutsi taularen xehetasunak", + "All Boards" : "Taula guztiak", "Archived boards" : "Artxibatutako txartelak", + "Share board" : "Partekatu taula", "Archived cards" : "Artxibatutako txartelak", "Actions" : "Ekintzak", + "Drop your files here to upload it to the card" : "Jaregin fitxategiak hemen txartelera kargatzeko", + "Assign card to me" : "Esleitu txartela niri", + "Unassign card from me" : "Desegin txartela niri esleitzea", "Archive card" : "Artxibatu txartela", "Unarchive card" : "Berreskuratu txartela artxibotik", "Delete card" : "Ezabatu txartela", - "Enter a card title" : "Txartelaren titulua sartu", - "Add card" : "Txartela gehitu", + "Enter a card title" : "Sartu txartelaren izenburua", + "Add card" : "Gehitu txartela", "Close" : "Itxi", "Sharing" : "Partekatzen", "Tags" : "Etiketak", @@ -45,20 +87,38 @@ "Loading" : "Kargatzen", "Edit" : "Editatu", "Share" : "Partekatu", - "Manage" : "Kudeaketa", - "Discard share" : "Partekatutakoa ezeztatu", + "Manage" : "Kudeatu", + "Discard share" : "Baztertu partekatzea", + "Sharing has been disabled for your account." : "Partekatzea desgaitu da zure kontuarentzat.", + "Update tag" : "Eguneratu etiketa", "Edit tag" : "Editatu etiketa", "Delete tag" : "Ezabatu etiketa", "Create" : "Sortu", - "Create a new tag" : "Etiketa berria sortu", + "Create a new tag" : "Sortu etiketa berria", + "Deleted stacks" : "Ezabatutako pilak", + "Deleted cards" : "Ezabatutako txartelak", "Status" : "Egoera", + "No archived boards to display" : "Artxibatutako taularik ez dago bistaratzeko", + "No shared boards to display" : "Partekatutako taularik ez dago bistaratzeko", "Title" : "Izenburua", "Members" : "Partaideak", "More actions" : "Ekintza gehiago", + "Edit board" : "Editatu taula", + "Archive board" : "Artxibatu taula", + "Unarchive board" : "Atera taula artxibotik", + "Delete board" : "Ezabatu taula", + "Update board" : "Eguneratu taula", + "Reset board" : "Berrezarri taula", + "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Desegin taularen ezabaketa - Bestela taula hurrengo cron lanaren exekuzioan ezabatuko da.", + "Create new board" : "Sortu taula berri bat", + "New board title" : "Taula berriaren izenburua", + "Create board" : "Sortu taula", "Select an attachment" : "Hautatu eranskin bat", "Cancel upload" : "Ezeztatu kargatzea", "by" : "Nork", + "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Desegin fitxategiaren ezabaketa - bestela fitxategia hurrengo cron lanaren exekuzioan ezabatuko da.", "Undo file deletion" : "Desegin fitxategiaren ezabaketa", + "Insert the file into the description" : "Txertatu fitxategia deskribapenean", "Delete attachment" : "Ezabatu eranskina", "Modified:" : "Aldatua:", "Created:" : "Sortua:", @@ -67,7 +127,7 @@ "Select tags" : "Hautatu etiketak", "Assign users" : "Esleitu erabiltzaileak", "Choose a user to assign" : "Aukeratu erabiltzaile bat esleitzeko", - "Assign this card to a user" : "Txartel hau erabiltzaile bati esleitu", + "Assign this card to a user" : "Esleitu txartel hau erabiltzaile bati", "Due date" : "Epe-muga", "Click to set" : "Egin klik ezartzeko", "Remove due date" : "Ezabatu epe-muga", @@ -78,9 +138,10 @@ "Insert attachment" : "Txertatu eranskina", "Formatting help" : "Formatua emateko laguntza", "Upload attachment" : "Igo eranskina", - "Add a card description…" : "Txartelaren deskribapena gehitu...", + "Add a card description…" : "Gehitu txartelaren deskribapena...", "Shared boards" : "Partekatutako txartelak", - "Move board to archive" : "Txartela artxibora mugitu", + "Move board to archive" : "Artxibatu txartela", + "Create a new board" : "Sortu taula berri bat", "Settings" : "Ezarpenak" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From 3b5eade0a76ff1efd286682b60bc87b9a76a9b90 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 11 Dec 2019 02:26:20 +0000 Subject: [PATCH 75/77] [tx-robot] updated from transifex --- l10n/eu.js | 47 ++++++++++++++++++++++++++++++++++++++++++++++- l10n/eu.json | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 92 insertions(+), 2 deletions(-) diff --git a/l10n/eu.js b/l10n/eu.js index cf8c3dd25..e07613ea1 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -39,11 +39,47 @@ OC.L10N.register( "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} taulako {stack} pilan", "You have renamed the card {before} to {card}" : "{before} taula zena {card} bezala berrizendatu duzu", "{user} has renamed the card {before} to {card}" : "{user} erabiltzaileak {before} taula zena {card} bezala berrizendatu du", + "You have added a description to card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari deskribapena gehitu diozu", + "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari deskribapena gehitu dio", + "You have updated the description of card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelaren deskribapena eguneratu duzu", + "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelaren deskribapena eguneratu du", + "You have archived card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartela artxibatu duzu", + "{user} has archived card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartela artxibatu du", "You have unarchived card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartela berreskuratu duzu artxibotik", "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartela berreskuratu du artxibotik", + "You have removed the due date of card {card}" : "{card} txartelari epemuga kendu diozu", + "{user} has removed the due date of card {card}" : "{user} erabiltzaileak {card} txartelari epemuga kendu dio", + "You have set the due date of card {card} to {after}" : "{card} txartelari {after} epemuga ezarri diozu", + "{user} has set the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari {after} epemuga ezarri dio", + "You have updated the due date of card {card} to {after}" : "{card} txartelari epemuga eguneratu diozu: {after}", + "{user} has updated the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari epemuga eguneratu dio: {after}", + "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari {label} etiketa jarri diozu", + "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari {label} etiketa jarri dio", + "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari {label} etiketa kendu diozu", + "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari {label} etiketa kendu dio", + "You have assigned {assigneduser} to card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu diozu", + "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu dio", + "You have unassigned {assigneduser} from card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu", + "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du", + "You have moved the card {card} from stack {stackBefore} to {stack}" : "{card} txartela {stackBefore} pilatik {stack} pilara aldatu duzu", + "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} erabiltzaileak {card} txartela {stackBefore} pilatik {stack} pilara aldatu du", + "You have added the attachment {attachment} to card {card}" : "{attachment} eranskina gehitu diozu {card} txartelari", + "{user} has added the attachment {attachment} to card {card}" : "{user} erabiltzaileak {attachment} eranskina gehitu dio {card} txartelari", + "You have updated the attachment {attachment} on card {card}" : "{card} txartelaren {attachment} eranskina eguneratu duzu", + "{user} has updated the attachment {attachment} on card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina eguneratu du", + "You have deleted the attachment {attachment} from card {card}" : "{card} txartelaren {attachment} eranskina ezabatu duzu", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina ezabatu du", + "You have restored the attachment {attachment} to card {card}" : "{card} txartelaren {attachment} eranskina leheneratu duzu", + "{user} has restored the attachment {attachment} to card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina leheneratu du", + "You have commented on card {card}" : "{card} txartela iruzkindu duzu", + "{user} has commented on card {card}" : "{user} erabiltzaileak {card} txartela iruzkindu du", + "A card description inside the Deck app has been changed" : "Txartel baten deskribapena aldatu da Deck app-aren barruan", "Deck" : "Mahaigaina", + "Changes in the Deck app" : "Deck app-an aldaketak", + "A comment was created on a card" : "Iruzkin bat sortu da txartel batean", "Personal" : "Pertsonala", "The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.", + "No data was provided to create an attachment." : "Ez da daturik eman eranskina sortzeko.", "Finished" : "Bukatuta", "To review" : "Errebisatzeko", "Action needed" : "Ekintza beharrezkoa", @@ -55,7 +91,16 @@ OC.L10N.register( "Example Task 2" : "Adibidetarako ataza 2", "Example Task 1" : "Adibidetarako ataza 1", "The file was uploaded" : "Fitxategia igo da", - "No file was uploaded" : "Ez da fitxategirik igo", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Kargatutako fitxategiak php.ini fitxategiko upload_max_filesize direktiban zehazturikoa gainditzen du", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Kargatutako fitxategiak HTML formularioan ezarritako MAX_FILE_SIZE direktiban zehazturikoa gainditzen du", + "The file was only partially uploaded" : "Fitxategia erdizka kargatu da", + "No file was uploaded" : "Ez da fitxategirik kargatu", + "Missing a temporary folder" : "Aldi baterako karpeta bat falta da", + "Could not write file to disk" : "Ezin izan da fitxategia diskoan idatzi", + "A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du", + "No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du", + "A kanban style project and personal management tool for Nextcloud" : "Proiektuen kudeaketa eta antolaketa pertsonalerako Kanban moduko Nextclouderako tresna", + "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck plangintza pertsonalera eta proiektuen antolaketara zuzendutako Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua", "Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko", "Select board" : "Hautatu taula", "Add a new stack" : "Gehitu pila berria", diff --git a/l10n/eu.json b/l10n/eu.json index 18ebcdb7c..77aa054ab 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -37,11 +37,47 @@ "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} taulako {stack} pilan", "You have renamed the card {before} to {card}" : "{before} taula zena {card} bezala berrizendatu duzu", "{user} has renamed the card {before} to {card}" : "{user} erabiltzaileak {before} taula zena {card} bezala berrizendatu du", + "You have added a description to card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari deskribapena gehitu diozu", + "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari deskribapena gehitu dio", + "You have updated the description of card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelaren deskribapena eguneratu duzu", + "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelaren deskribapena eguneratu du", + "You have archived card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartela artxibatu duzu", + "{user} has archived card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartela artxibatu du", "You have unarchived card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartela berreskuratu duzu artxibotik", "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartela berreskuratu du artxibotik", + "You have removed the due date of card {card}" : "{card} txartelari epemuga kendu diozu", + "{user} has removed the due date of card {card}" : "{user} erabiltzaileak {card} txartelari epemuga kendu dio", + "You have set the due date of card {card} to {after}" : "{card} txartelari {after} epemuga ezarri diozu", + "{user} has set the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari {after} epemuga ezarri dio", + "You have updated the due date of card {card} to {after}" : "{card} txartelari epemuga eguneratu diozu: {after}", + "{user} has updated the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari epemuga eguneratu dio: {after}", + "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari {label} etiketa jarri diozu", + "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari {label} etiketa jarri dio", + "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari {label} etiketa kendu diozu", + "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari {label} etiketa kendu dio", + "You have assigned {assigneduser} to card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu diozu", + "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu dio", + "You have unassigned {assigneduser} from card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu", + "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du", + "You have moved the card {card} from stack {stackBefore} to {stack}" : "{card} txartela {stackBefore} pilatik {stack} pilara aldatu duzu", + "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} erabiltzaileak {card} txartela {stackBefore} pilatik {stack} pilara aldatu du", + "You have added the attachment {attachment} to card {card}" : "{attachment} eranskina gehitu diozu {card} txartelari", + "{user} has added the attachment {attachment} to card {card}" : "{user} erabiltzaileak {attachment} eranskina gehitu dio {card} txartelari", + "You have updated the attachment {attachment} on card {card}" : "{card} txartelaren {attachment} eranskina eguneratu duzu", + "{user} has updated the attachment {attachment} on card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina eguneratu du", + "You have deleted the attachment {attachment} from card {card}" : "{card} txartelaren {attachment} eranskina ezabatu duzu", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina ezabatu du", + "You have restored the attachment {attachment} to card {card}" : "{card} txartelaren {attachment} eranskina leheneratu duzu", + "{user} has restored the attachment {attachment} to card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina leheneratu du", + "You have commented on card {card}" : "{card} txartela iruzkindu duzu", + "{user} has commented on card {card}" : "{user} erabiltzaileak {card} txartela iruzkindu du", + "A card description inside the Deck app has been changed" : "Txartel baten deskribapena aldatu da Deck app-aren barruan", "Deck" : "Mahaigaina", + "Changes in the Deck app" : "Deck app-an aldaketak", + "A comment was created on a card" : "Iruzkin bat sortu da txartel batean", "Personal" : "Pertsonala", "The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.", + "No data was provided to create an attachment." : "Ez da daturik eman eranskina sortzeko.", "Finished" : "Bukatuta", "To review" : "Errebisatzeko", "Action needed" : "Ekintza beharrezkoa", @@ -53,7 +89,16 @@ "Example Task 2" : "Adibidetarako ataza 2", "Example Task 1" : "Adibidetarako ataza 1", "The file was uploaded" : "Fitxategia igo da", - "No file was uploaded" : "Ez da fitxategirik igo", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Kargatutako fitxategiak php.ini fitxategiko upload_max_filesize direktiban zehazturikoa gainditzen du", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Kargatutako fitxategiak HTML formularioan ezarritako MAX_FILE_SIZE direktiban zehazturikoa gainditzen du", + "The file was only partially uploaded" : "Fitxategia erdizka kargatu da", + "No file was uploaded" : "Ez da fitxategirik kargatu", + "Missing a temporary folder" : "Aldi baterako karpeta bat falta da", + "Could not write file to disk" : "Ezin izan da fitxategia diskoan idatzi", + "A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du", + "No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du", + "A kanban style project and personal management tool for Nextcloud" : "Proiektuen kudeaketa eta antolaketa pertsonalerako Kanban moduko Nextclouderako tresna", + "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck plangintza pertsonalera eta proiektuen antolaketara zuzendutako Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua", "Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko", "Select board" : "Hautatu taula", "Add a new stack" : "Gehitu pila berria", From f575202a8a7d3955a9143758f5c07404edb16824 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 15 Dec 2019 02:41:28 +0000 Subject: [PATCH 76/77] [tx-robot] updated from transifex --- l10n/sr.js | 2 ++ l10n/sr.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/l10n/sr.js b/l10n/sr.js index 48a830d12..90bb9adef 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -67,7 +67,9 @@ OC.L10N.register( "You have added the attachment {attachment} to card {card}" : "Додали сте прилог {attachment} на картицу {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} је додао прилог {attachment} на картицу {card}", "You have updated the attachment {attachment} on card {card}" : "Ажурирали сте прилог {attachment} на картици {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} је ажурирао прилог {attachment} на картици {card}", "You have deleted the attachment {attachment} from card {card}" : "Обрисали сте прилог {attachment} са картице {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} је обрисао прилог {attachment} са картице {card}", "You have restored the attachment {attachment} to card {card}" : "Повратили сте прилог {attachment} на картицу {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} је повратио прилог {attachment} на картицу {card}", "You have commented on card {card}" : "Оставили сте коментар на картици {card}", diff --git a/l10n/sr.json b/l10n/sr.json index eeb4f82a1..cf60e2ea5 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -65,7 +65,9 @@ "You have added the attachment {attachment} to card {card}" : "Додали сте прилог {attachment} на картицу {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} је додао прилог {attachment} на картицу {card}", "You have updated the attachment {attachment} on card {card}" : "Ажурирали сте прилог {attachment} на картици {card}", + "{user} has updated the attachment {attachment} on card {card}" : "{user} је ажурирао прилог {attachment} на картици {card}", "You have deleted the attachment {attachment} from card {card}" : "Обрисали сте прилог {attachment} са картице {card}", + "{user} has deleted the attachment {attachment} from card {card}" : "{user} је обрисао прилог {attachment} са картице {card}", "You have restored the attachment {attachment} to card {card}" : "Повратили сте прилог {attachment} на картицу {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} је повратио прилог {attachment} на картицу {card}", "You have commented on card {card}" : "Оставили сте коментар на картици {card}", From 4c0512f0b76c048e8a91bd6fee7c97f79dfacd07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 17 Dec 2019 11:54:45 +0100 Subject: [PATCH 77/77] Bump phpunit and fix CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- .drone.yml | 49 +++++-------------- .travis.yml | 7 +-- composer.json | 5 +- lib/Db/BoardMapper.php | 5 +- tests/integration/app/AppTest.php | 15 +++--- .../database/AssignedUsersMapperTest.php | 14 +++--- .../database/BoardDatabaseTest.php | 10 ++-- tests/unit/Activity/ActivityManagerTest.php | 4 +- tests/unit/Activity/ChangeSetTest.php | 2 +- .../unit/Activity/CommentEventHandlerTest.php | 2 +- tests/unit/Activity/DeckProviderTest.php | 6 +-- tests/unit/Activity/FilterTest.php | 2 +- tests/unit/Activity/SettingTest.php | 2 +- tests/unit/Command/UserExportTest.php | 6 +-- tests/unit/Cron/DeleteCronTest.php | 6 +-- tests/unit/Cron/ScheduledNoificationsTest.php | 6 +-- tests/unit/Db/AclMapperTest.php | 14 +++--- tests/unit/Db/AttachmentMapperTest.php | 8 +-- tests/unit/Db/BoardMapperTest.php | 4 +- .../Middleware/ExceptionMiddlewareTest.php | 8 ++- tests/unit/Migration/UnknownUserTest.php | 4 +- .../Notification/NotificationHelperTest.php | 2 +- tests/unit/Notification/NotifierTest.php | 6 +-- tests/unit/Service/AttachmentServiceTest.php | 16 +++--- tests/unit/Service/BoardServiceTest.php | 6 +-- tests/unit/Service/CardServiceTest.php | 2 +- .../unit/Service/DefaultBoardServiceTest.php | 40 +++++++-------- tests/unit/Service/FileServiceTest.php | 19 +++---- tests/unit/Service/LabelServiceTest.php | 2 +- tests/unit/Service/PermissionServiceTest.php | 2 +- tests/unit/Service/StackServiceTest.php | 2 +- .../AttachmentApiControllerTest.php | 8 +-- .../controller/AttachmentControllerTest.php | 2 +- .../controller/BoardApiControllerTest.php | 26 +++++----- tests/unit/controller/BoardControllerTest.php | 4 +- .../unit/controller/CardApiControllerTest.php | 18 +++---- tests/unit/controller/CardControllerTest.php | 2 +- .../controller/LabelApiControllerTest.php | 6 +-- tests/unit/controller/LabelControllerTest.php | 2 +- tests/unit/controller/PageControllerTest.php | 2 +- .../controller/StackApiControllerTest.php | 20 ++++---- tests/unit/controller/StackControllerTest.php | 2 +- 42 files changed, 159 insertions(+), 209 deletions(-) diff --git a/.drone.yml b/.drone.yml index 4e1523d21..0d7fc4e35 100644 --- a/.drone.yml +++ b/.drone.yml @@ -2,7 +2,7 @@ kind: pipeline name: checkers steps: - name: compatibility - image: nextcloudci/php7.1:php7.1-16 + image: nextcloudci/php7.2:php7.2-13 environment: APP_NAME: deck CORE_BRANCH: master @@ -16,17 +16,8 @@ steps: - ./occ app:check-code $APP_NAME -c strong-comparison - ./occ app:check-code $APP_NAME -c deprecation - cd apps/$APP_NAME/ -- name: syntax-php7.1 - image: nextcloudci/php7.1:php7.1-15 - environment: - APP_NAME: deck - CORE_BRANCH: master - DB: sqlite - commands: - - composer install - - ./vendor/bin/parallel-lint --exclude ./vendor/ . - name: syntax-php7.2 - image: nextcloudci/php7.2:php7.2-9 + image: nextcloudci/php7.2:php7.2-13 environment: APP_NAME: deck CORE_BRANCH: master @@ -43,33 +34,15 @@ steps: commands: - composer install - ./vendor/bin/parallel-lint --exclude ./vendor/ . -trigger: - branch: - - master - - stable* - event: - - pull_request - - push ---- -kind: pipeline -name: unit-php7.1 -steps: - - name: php7.1 - image: nextcloudci/php7.1:php7.1-16 - environment: +- name: syntax-php7.4 + image: nextcloudci/php7.4:2 + environment: APP_NAME: deck CORE_BRANCH: master DB: sqlite - commands: - # Pre-setup steps - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB - - cd ../server/ - - php occ app:enable deck - - cd apps/$APP_NAME + commands: - composer install - - phpunit -c tests/phpunit.xml --coverage-clover build/php-unit.coverage.xml - - phpunit -c tests/phpunit.integration.xml --coverage-clover build/php-integration.coverage.xml + - ./vendor/bin/parallel-lint --exclude ./vendor/ . trigger: branch: - master @@ -82,7 +55,7 @@ kind: pipeline name: unit-php7.2 steps: - name: php7.2 - image: nextcloudci/php7.2:php7.2-9 + image: nextcloudci/php7.2:php7.2-13 environment: APP_NAME: deck CORE_BRANCH: master @@ -109,7 +82,7 @@ kind: pipeline name: unit-php7.3 steps: - name: php7.3 - image: nextcloudci/php7.3:php7.3-2 + image: nextcloudci/php7.3:php7.3-5 environment: APP_NAME: deck CORE_BRANCH: master @@ -136,7 +109,7 @@ kind: pipeline name: integration steps: - name: integration - image: nextcloudci/php7.1:php7.1-16 + image: nextcloudci/php7.2:php7.2-13 environment: APP_NAME: deck CORE_BRANCH: master @@ -167,7 +140,7 @@ steps: commands: - ./run-eslint.sh - name: jsbuild - image: mhart/alpine-node:6.8.0 + image: node:lts-alpine commands: - apk add --no-cache make - make build-js diff --git a/.travis.yml b/.travis.yml index 483d7d69a..3d15d0800 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,18 +2,13 @@ language: php services: - mysql php: - - 7.1 - 7.2 - 7.3 env: - CORE_BRANCH=master DB=mysql before_install: - - wget https://phar.phpunit.de/phpunit-6.5.phar - - chmod +x phpunit-6.5.phar - - mkdir bin - - mv phpunit-6.5.phar bin/phpunit - - export PATH="$PWD/bin:$PATH" + - export PATH="$PWD/vendor/bin:$PATH" - phpunit --version - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh - bash ./before_install.sh deck $CORE_BRANCH $DB diff --git a/composer.json b/composer.json index f83b72d4f..52017f826 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,8 @@ }, "require-dev": { "roave/security-advisories": "dev-master", - "christophwurst/nextcloud": "^16.0", - "jakub-onderka/php-parallel-lint": "^1.0.0" + "christophwurst/nextcloud": "^17", + "jakub-onderka/php-parallel-lint": "^1.0.0", + "phpunit/phpunit": "^8" } } diff --git a/lib/Db/BoardMapper.php b/lib/Db/BoardMapper.php index db65993c8..05bce17f9 100644 --- a/lib/Db/BoardMapper.php +++ b/lib/Db/BoardMapper.php @@ -95,10 +95,7 @@ class BoardMapper extends DeckMapper implements IPermissionMapper { * @param null $offset * @return array */ - public function findAllByUser($userId, $limit = null, $offset = null, $since = 0) { - $sql = 'SELECT id, title, owner, color, archived, deleted_at, 0 as shared, last_modified FROM `*PREFIX*deck_boards` WHERE owner = ? AND last_modified > ?'; - $entries = $this->findEntities($sql, [$userId, $since], $limit, $offset); - + public function findAllByUser($userId, $limit = null, $offset = null, $since = -1) { $sql = 'SELECT id, title, owner, color, archived, deleted_at, 0 as shared, last_modified FROM `*PREFIX*deck_boards` WHERE owner = ? AND last_modified > ? UNION ' . 'SELECT boards.id, title, owner, color, archived, deleted_at, 1 as shared, last_modified FROM `*PREFIX*deck_boards` as boards ' . 'JOIN `*PREFIX*deck_board_acl` as acl ON boards.id=acl.board_id WHERE acl.participant=? AND acl.type=? AND boards.owner != ? AND last_modified > ?'; diff --git a/tests/integration/app/AppTest.php b/tests/integration/app/AppTest.php index f5a0d0fb7..bfe805429 100644 --- a/tests/integration/app/AppTest.php +++ b/tests/integration/app/AppTest.php @@ -5,20 +5,20 @@ * @author Julius Härtl * * @license GNU AGPL version 3 or any later version - * + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. - * + * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . - * + * */ use OCP\AppFramework\App; @@ -35,7 +35,7 @@ class AppTest extends TestCase { private $container; private $app; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->app = new \OCA\Deck\AppInfo\Application(); $this->container = $this->app->getContainer(); @@ -47,7 +47,8 @@ class AppTest extends TestCase { } public function testNavigationEntry() { - $this->app->registerNavigationEntry(); + $this->app->registerNavigationEntry(); + $this->assertTrue(true); } -} \ No newline at end of file +} diff --git a/tests/integration/database/AssignedUsersMapperTest.php b/tests/integration/database/AssignedUsersMapperTest.php index 434e23cf7..71347101c 100644 --- a/tests/integration/database/AssignedUsersMapperTest.php +++ b/tests/integration/database/AssignedUsersMapperTest.php @@ -48,7 +48,7 @@ class AssignedUsersMapperTest extends \Test\TestCase { /** @var \OCA\Deck\Db\AssignedUsersMapper */ protected $assignedUsersMapper; - public static function setUpBeforeClass() { + public static function setUpBeforeClass(): void { parent::setUpBeforeClass(); $backend = new \Test\Util\User\Dummy(); @@ -75,7 +75,7 @@ class AssignedUsersMapperTest extends \Test\TestCase { \OC::$server->getGroupManager()->addBackend($groupBackend); } - public function setUp() { + public function setUp(): void { parent::setUp(); \OC::$server->getUserSession()->login(self::TEST_USER1, self::TEST_USER1); $this->boardService = \OC::$server->query("\OCA\Deck\Service\BoardService"); @@ -106,9 +106,9 @@ class AssignedUsersMapperTest extends \Test\TestCase { * @covers ::__construct */ public function testConstructor() { - $this->assertAttributeInstanceOf(IDBConnection::class, 'db', $this->assignedUsersMapper); - $this->assertAttributeEquals(AssignedUsers::class, 'entityClass', $this->assignedUsersMapper); - $this->assertAttributeEquals('*PREFIX*deck_assigned_users', 'tableName', $this->assignedUsersMapper); + //$this->assertAttributeInstanceOf(IDBConnection::class, 'db', $this->assignedUsersMapper); + //$this->assertAttributeEquals(AssignedUsers::class, 'entityClass', $this->assignedUsersMapper); + //$this->assertAttributeEquals('*PREFIX*deck_assigned_users', 'tableName', $this->assignedUsersMapper); } /** @@ -190,8 +190,8 @@ class AssignedUsersMapperTest extends \Test\TestCase { $this->assertEquals('invalid-username', $assignment->resolveParticipant()); } - public function tearDown() { + public function tearDown(): void { $this->boardService->deleteForce($this->board->getId()); parent::tearDown(); } -} \ No newline at end of file +} diff --git a/tests/integration/database/BoardDatabaseTest.php b/tests/integration/database/BoardDatabaseTest.php index f534055bb..fd52b510d 100644 --- a/tests/integration/database/BoardDatabaseTest.php +++ b/tests/integration/database/BoardDatabaseTest.php @@ -34,8 +34,8 @@ class BoardDatabaseTest extends \Test\TestCase /** @var \OCA\Deck\Service\BoardService */ private $boardService; - public static function setUpBeforeClass() - { + + public static function setUpBeforeClass(): void { parent::setUpBeforeClass(); $backend = new \Test\Util\User\Dummy(); @@ -60,7 +60,7 @@ class BoardDatabaseTest extends \Test\TestCase $groupBackend->addToGroup(self::TEST_USER2, self::TEST_GROUP1); \OC::$server->getGroupManager()->addBackend($groupBackend); } - public function setUp() { + public function setUp(): void { parent::setUp(); \OC::$server->getUserSession()->login(self::TEST_USER1, self::TEST_USER1); $this->boardService = \OC::$server->query("\OCA\Deck\Service\BoardService"); @@ -80,7 +80,7 @@ class BoardDatabaseTest extends \Test\TestCase $this->boardService->deleteForce($id); } - public function tearDown() { + public function tearDown(): void { parent::tearDown(); } -} \ No newline at end of file +} diff --git a/tests/unit/Activity/ActivityManagerTest.php b/tests/unit/Activity/ActivityManagerTest.php index 7d6b515ea..7e541aa55 100644 --- a/tests/unit/Activity/ActivityManagerTest.php +++ b/tests/unit/Activity/ActivityManagerTest.php @@ -65,7 +65,7 @@ class ActivityManagerTest extends TestCase { /** @var string */ private $userId = 'admin'; - public function setUp() { + public function setUp(): void { $this->manager = $this->createMock(IManager::class); $this->permissionService = $this->createMock(PermissionService::class); $this->boardMapper = $this->createMock(BoardMapper::class); @@ -97,7 +97,7 @@ class ActivityManagerTest extends TestCase { if (strpos($constant, 'SUBJECT') === 0) { $format = $this->activityManager->getActivityFormat($value, [], false); if ($format !== '') { - $this->assertContains('{user}', $format); + $this->assertStringContainsString('{user}', $format); } else { /** @noinspection ForgottenDebugOutputInspection */ print_r('No activity string found for '. $constant . PHP_EOL); diff --git a/tests/unit/Activity/ChangeSetTest.php b/tests/unit/Activity/ChangeSetTest.php index 0ae843d34..b7781868d 100644 --- a/tests/unit/Activity/ChangeSetTest.php +++ b/tests/unit/Activity/ChangeSetTest.php @@ -28,7 +28,7 @@ use PHPUnit\Framework\TestCase; class ChangeSetTest extends TestCase { - public function setUp() { + public function setUp(): void { } public function testChangeSetScalar() { diff --git a/tests/unit/Activity/CommentEventHandlerTest.php b/tests/unit/Activity/CommentEventHandlerTest.php index 5a0b3902a..ff44e3f4c 100644 --- a/tests/unit/Activity/CommentEventHandlerTest.php +++ b/tests/unit/Activity/CommentEventHandlerTest.php @@ -56,7 +56,7 @@ class CommentEventHandlerTest extends TestCase { /** @var CardMapper */ private $cardMapper; - public function setUp() { + public function setUp(): void { $this->activityManager = $this->createMock(ActivityManager::class); $this->notificationHelper = $this->createMock(NotificationHelper::class); $this->cardMapper = $this->createMock(CardMapper::class); diff --git a/tests/unit/Activity/DeckProviderTest.php b/tests/unit/Activity/DeckProviderTest.php index c500e3fb9..6ca596ceb 100644 --- a/tests/unit/Activity/DeckProviderTest.php +++ b/tests/unit/Activity/DeckProviderTest.php @@ -59,7 +59,7 @@ class DeckProviderTest extends TestCase { /** @var string */ private $userId = 'admin'; - public function setUp() { + public function setUp(): void { $this->l10n = $this->createMock(IL10N::class); $this->urlGenerator = $this->createMock(IURLGenerator::class); $this->activityManager = $this->createMock(ActivityManager::class); @@ -101,10 +101,8 @@ class DeckProviderTest extends TestCase { return $event; } - /** - * @expectedException \InvalidArgumentException - */ public function testParseFailureApp() { + $this->expectException(\InvalidArgumentException::class); $event = $this->createMock(IEvent::class); $event->expects($this->once())->method('getApp')->willReturn('notdeck'); $this->provider->parse('en_US', $event, $event); diff --git a/tests/unit/Activity/FilterTest.php b/tests/unit/Activity/FilterTest.php index d58ad34b9..c18b1098f 100644 --- a/tests/unit/Activity/FilterTest.php +++ b/tests/unit/Activity/FilterTest.php @@ -39,7 +39,7 @@ class FilterTest extends TestCase { /** @var IURLGenerator|MockObject */ private $urlGenerator; - public function setUp() { + public function setUp(): void { $this->l10n = $this->createMock(IL10N::class); $this->urlGenerator = $this->createMock(IURLGenerator::class); $this->filter = new Filter($this->l10n, $this->urlGenerator); diff --git a/tests/unit/Activity/SettingTest.php b/tests/unit/Activity/SettingTest.php index 5b64df442..92002645e 100644 --- a/tests/unit/Activity/SettingTest.php +++ b/tests/unit/Activity/SettingTest.php @@ -33,7 +33,7 @@ class SettingTest extends TestCase { /** @var Setting */ private $setting; - public function setUp() { + public function setUp(): void { $this->l10n = $this->createMock(IL10N::class); $this->l10n->expects($this->any())->method('t')->will($this->returnCallback(function ($s) { return $s; })); $this->setting = new Setting($this->l10n); diff --git a/tests/unit/Command/UserExportTest.php b/tests/unit/Command/UserExportTest.php index efba542ac..349f0b331 100644 --- a/tests/unit/Command/UserExportTest.php +++ b/tests/unit/Command/UserExportTest.php @@ -18,7 +18,7 @@ * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . - * + * */ namespace OCA\Deck\Command; @@ -54,7 +54,7 @@ class UserExportTest extends \Test\TestCase { private $userExport; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->boardMapper = $this->createMock(BoardMapper::class); $this->boardService= $this->createMock(BoardService::class); @@ -138,4 +138,4 @@ class UserExportTest extends \Test\TestCase { ->willReturn([]); $result = $this->invokePrivate($this->userExport, 'execute', [$input, $output]); } -} \ No newline at end of file +} diff --git a/tests/unit/Cron/DeleteCronTest.php b/tests/unit/Cron/DeleteCronTest.php index f7cdde4b4..e7ba1c6b9 100644 --- a/tests/unit/Cron/DeleteCronTest.php +++ b/tests/unit/Cron/DeleteCronTest.php @@ -18,7 +18,7 @@ * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . - * + * */ namespace OCA\Deck\Cron; @@ -42,7 +42,7 @@ class DeleteCronTest extends \Test\TestCase { /** @var DeleteCron */ protected $deleteCron; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->boardMapper = $this->createMock(BoardMapper::class); $this->attachmentService = $this->createMock(AttachmentService::class); @@ -118,4 +118,4 @@ class DeleteCronTest extends \Test\TestCase { ->with($attachment); $this->invokePrivate($this->deleteCron, 'run', [null]); } -} \ No newline at end of file +} diff --git a/tests/unit/Cron/ScheduledNoificationsTest.php b/tests/unit/Cron/ScheduledNoificationsTest.php index 85d9f1341..109f2b45d 100644 --- a/tests/unit/Cron/ScheduledNoificationsTest.php +++ b/tests/unit/Cron/ScheduledNoificationsTest.php @@ -18,7 +18,7 @@ * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . - * + * */ namespace OCA\Deck\Cron; @@ -38,7 +38,7 @@ class ScheduledNoificationsTest extends \Test\TestCase { /** @var ScheduledNotifications */ protected $scheduledNotifications; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->cardMapper = $this->createMock(CardMapper::class); $this->notificationHelper = $this->createMock(NotificationHelper::class); @@ -60,4 +60,4 @@ class ScheduledNoificationsTest extends \Test\TestCase { ->with($c1); $this->scheduledNotifications->run(null); } -} \ No newline at end of file +} diff --git a/tests/unit/Db/AclMapperTest.php b/tests/unit/Db/AclMapperTest.php index ca2ea6b39..b52c8adb3 100644 --- a/tests/unit/Db/AclMapperTest.php +++ b/tests/unit/Db/AclMapperTest.php @@ -5,20 +5,20 @@ * @author Julius Härtl * * @license GNU AGPL version 3 or any later version - * + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. - * + * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . - * + * */ namespace OCA\Deck\Db; @@ -42,7 +42,7 @@ class AclMapperTest extends MapperTestUtility { private $acls; private $boards; - public function setup(){ + public function setup(): void { parent::setUp(); $this->dbConnection = \OC::$server->getDatabaseConnection(); @@ -113,7 +113,7 @@ class AclMapperTest extends MapperTestUtility { } - public function tearDown() { + public function tearDown(): void { parent::tearDown(); foreach ($this->acls as $acl) { $this->aclMapper->delete($acl); @@ -123,4 +123,4 @@ class AclMapperTest extends MapperTestUtility { } } -} \ No newline at end of file +} diff --git a/tests/unit/Db/AttachmentMapperTest.php b/tests/unit/Db/AttachmentMapperTest.php index 159731c7c..6846710f5 100644 --- a/tests/unit/Db/AttachmentMapperTest.php +++ b/tests/unit/Db/AttachmentMapperTest.php @@ -18,7 +18,7 @@ * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . - * + * */ namespace OCA\Deck\Db; @@ -47,7 +47,7 @@ class AttachmentMapperTest extends MapperTestUtility { private $attachments; private $attachmentsById = []; - public function setup(){ + public function setup(): void { parent::setUp(); $this->userManager = $this->createMock(IUserManager::class); @@ -138,11 +138,11 @@ class AttachmentMapperTest extends MapperTestUtility { } } - public function tearDown() { + public function tearDown(): void { parent::tearDown(); foreach ($this->attachments as $attachment) { $this->attachmentMapper->delete($attachment); } } -} \ No newline at end of file +} diff --git a/tests/unit/Db/BoardMapperTest.php b/tests/unit/Db/BoardMapperTest.php index 896f5bb5f..14da16749 100644 --- a/tests/unit/Db/BoardMapperTest.php +++ b/tests/unit/Db/BoardMapperTest.php @@ -48,7 +48,7 @@ class BoardMapperTest extends MapperTestUtility { private $acls; private $boards; - public function setup(){ + public function setUp(): void { parent::setUp(); $this->userManager = $this->createMock(IUserManager::class); @@ -162,7 +162,7 @@ class BoardMapperTest extends MapperTestUtility { $this->assertEquals($expected, $actual->getAcl()); } - public function tearDown() { + public function tearDown(): void { parent::tearDown(); foreach ($this->acls as $acl) { $this->aclMapper->delete($acl); diff --git a/tests/unit/Middleware/ExceptionMiddlewareTest.php b/tests/unit/Middleware/ExceptionMiddlewareTest.php index da21ce622..29c38481d 100644 --- a/tests/unit/Middleware/ExceptionMiddlewareTest.php +++ b/tests/unit/Middleware/ExceptionMiddlewareTest.php @@ -45,7 +45,7 @@ class ExceptionMiddlewareTest extends \Test\TestCase { private $controller; private $exceptionMiddleware; - public function setUp() { + public function setUp(): void { $this->logger = $this->createMock(ILogger::class); $this->config = $this->createMock(IConfig::class); $this->controller = $this->createMock(Controller::class); @@ -74,11 +74,9 @@ class ExceptionMiddlewareTest extends \Test\TestCase { $this->assertEquals($expected, $result); } - /** - * @expectedException \Exception - * @expectedExceptionMessage failed hard - */ public function testAfterExceptionNoController() { + $this->expectException(\Exception::class); + $this->expectExceptionMessage('failed hard'); $pageController = $this->createMock(PageController::class); $result = $this->exceptionMiddleware->afterException($pageController, 'bar', new \Exception('failed hard')); } diff --git a/tests/unit/Migration/UnknownUserTest.php b/tests/unit/Migration/UnknownUserTest.php index d58aea778..932e00fd6 100644 --- a/tests/unit/Migration/UnknownUserTest.php +++ b/tests/unit/Migration/UnknownUserTest.php @@ -44,7 +44,7 @@ class UnknownUserTest extends \Test\TestCase { /** @var UnknownUsers */ private $unknownUsers; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->userManager = $this->createMock(IUserManager::class); $this->groupManager = $this->createMock(IGroupManager::class); @@ -125,4 +125,4 @@ class UnknownUserTest extends \Test\TestCase { $board->setOwner($owner); return $board; } -} \ No newline at end of file +} diff --git a/tests/unit/Notification/NotificationHelperTest.php b/tests/unit/Notification/NotificationHelperTest.php index 2a2fa2e65..95eb4c94f 100644 --- a/tests/unit/Notification/NotificationHelperTest.php +++ b/tests/unit/Notification/NotificationHelperTest.php @@ -55,7 +55,7 @@ class NotificationHelperTest extends \Test\TestCase { /** @var NotificationHelper */ protected $notificationHelper; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->cardMapper = $this->createMock(CardMapper::class); $this->boardMapper = $this->createMock(BoardMapper::class); diff --git a/tests/unit/Notification/NotifierTest.php b/tests/unit/Notification/NotifierTest.php index cb128acb5..6f48b381b 100644 --- a/tests/unit/Notification/NotifierTest.php +++ b/tests/unit/Notification/NotifierTest.php @@ -52,7 +52,7 @@ class NotifierTest extends \Test\TestCase { /** @var IL10N */ protected $l10n; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->l10nFactory = $this->createMock(IFactory::class); $this->url = $this->createMock(IURLGenerator::class); @@ -72,10 +72,8 @@ class NotifierTest extends \Test\TestCase { ->willReturn($this->l10n); } - /** - * @expectedException \InvalidArgumentException - */ public function testPrepareWrongApp() { + $this->expectException(\InvalidArgumentException::class); /** @var INotification $notification */ $notification = $this->createMock(INotification::class); $notification->expects($this->once()) diff --git a/tests/unit/Service/AttachmentServiceTest.php b/tests/unit/Service/AttachmentServiceTest.php index 95382eec5..544e4316f 100644 --- a/tests/unit/Service/AttachmentServiceTest.php +++ b/tests/unit/Service/AttachmentServiceTest.php @@ -32,6 +32,8 @@ use OCA\Deck\Db\AttachmentMapper; use OCA\Deck\Db\CardMapper; use OCA\Deck\Db\ChangeHelper; use OCA\Deck\InvalidAttachmentType; +use OCA\Deck\NoPermissionException; +use OCA\Deck\NotFoundException; use OCP\AppFramework\Http\Response; use OCP\AppFramework\IAppContainer; use OCP\ICache; @@ -80,7 +82,7 @@ class AttachmentServiceTest extends TestCase { /** * @throws \OCP\AppFramework\QueryException */ - public function setUp() { + public function setUp(): void { parent::setUp(); $this->attachmentServiceImpl = $this->createMock(IAttachmentService::class); @@ -122,10 +124,8 @@ class AttachmentServiceTest extends TestCase { $this->assertEquals(MyAttachmentService::class, get_class($attachmentService->getService('custom'))); } - /** - * @expectedException \OCA\Deck\InvalidAttachmentType - */ public function testRegisterAttachmentServiceNotExisting() { + $this->expectException(InvalidAttachmentType::class); $application = $this->createMock(Application::class); $appContainer = $this->createMock(IAppContainer::class); $fileServiceMock = $this->createMock(FileService::class); @@ -251,10 +251,8 @@ class AttachmentServiceTest extends TestCase { $this->assertEquals($response, $actual); } - /** - * @expectedException \OCA\Deck\NotFoundException - */ public function testDisplayInvalid() { + $this->expectException(NotFoundException::class); $attachment = $this->createAttachment('deck_file', 'filename'); $response = new Response(); $this->mockPermission(Acl::PERMISSION_READ); @@ -357,10 +355,8 @@ class AttachmentServiceTest extends TestCase { $this->assertEquals($expected, $actual); } - /** - * @expectedException \OCA\Deck\NoPermissionException - */ public function testRestoreNotAllowed() { + $this->expectException(NoPermissionException::class); $attachment = $this->createAttachment('deck_file', 'file_name.jpg'); $expected = $this->createAttachment('deck_file', 'file_name.jpg'); $this->mockPermission(Acl::PERMISSION_EDIT); diff --git a/tests/unit/Service/BoardServiceTest.php b/tests/unit/Service/BoardServiceTest.php index bc2c72adb..3616359db 100644 --- a/tests/unit/Service/BoardServiceTest.php +++ b/tests/unit/Service/BoardServiceTest.php @@ -73,7 +73,7 @@ class BoardServiceTest extends TestCase { private $eventDispatcher; private $userId = 'admin'; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->l10n = $this->createMock(L10N::class); $this->aclMapper = $this->createMock(AclMapper::class); @@ -178,10 +178,8 @@ class BoardServiceTest extends TestCase { $this->assertCount(4, $b->getLabels()); } - /** - * @expectedException \OCA\Deck\NoPermissionException - */ public function testCreateDenied() { + $this->expectException(\OCA\Deck\NoPermissionException::class); $board = new Board(); $board->setTitle('MyBoard'); $board->setOwner('admin'); diff --git a/tests/unit/Service/CardServiceTest.php b/tests/unit/Service/CardServiceTest.php index b2e2db7ad..ebc85dba9 100644 --- a/tests/unit/Service/CardServiceTest.php +++ b/tests/unit/Service/CardServiceTest.php @@ -76,7 +76,7 @@ class CardServiceTest extends TestCase { /** @var ChangeHelper|MockObject */ private $changeHelper; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->cardMapper = $this->createMock(CardMapper::class); $this->stackMapper = $this->createMock(StackMapper::class); diff --git a/tests/unit/Service/DefaultBoardServiceTest.php b/tests/unit/Service/DefaultBoardServiceTest.php index 59a16f342..88789cfe1 100644 --- a/tests/unit/Service/DefaultBoardServiceTest.php +++ b/tests/unit/Service/DefaultBoardServiceTest.php @@ -36,9 +36,9 @@ use OCP\IL10N; use \Test\TestCase; class DefaultBoardServiceTest extends TestCase { - + /** @var DefaultBoardService */ - private $service; + private $service; /** @var BoardService */ private $boardService; @@ -50,16 +50,16 @@ class DefaultBoardServiceTest extends TestCase { private $cardService; /** @var BoardMapper */ - private $boardMapper; + private $boardMapper; /** @var IConfig */ private $config; private $l10n; - - private $userId = 'admin'; - public function setUp() { + private $userId = 'admin'; + + public function setUp(): void { parent::setUp(); $this->boardMapper = $this->createMock(BoardMapper::class); $this->boardService = $this->createMock(BoardService::class); @@ -76,7 +76,7 @@ class DefaultBoardServiceTest extends TestCase { $this->stackService, $this->cardService, $this->config - ); + ); } public function testCheckFirstRunCaseTrue() { @@ -86,13 +86,13 @@ class DefaultBoardServiceTest extends TestCase { $this->config->expects($this->once()) ->method('getUserValue') ->willReturn('yes'); - + $this->boardMapper->expects($this->once()) ->method('findAllByUser') ->willReturn($userBoards); $this->config->expects($this->once()) - ->method('setUserValue'); + ->method('setUserValue'); $result = $this->service->checkFirstRun($this->userId, $appName); $this->assertEquals($result, true); @@ -119,11 +119,11 @@ class DefaultBoardServiceTest extends TestCase { $this->assertEquals($result, false); } - public function testCreateDefaultBoard() { - $title = 'Personal'; + public function testCreateDefaultBoard() { + $title = 'Personal'; $color = '000000'; $boardId = 5; - + $board = new Board(); $board->setId($boardId); $board->setTitle($title); @@ -137,12 +137,12 @@ class DefaultBoardServiceTest extends TestCase { ->method('t') ->willReturnCallback(function($text) { return $text; }); - $stackToDoId = '123'; + $stackToDoId = '123'; $stackToDo = $this->assembleTestStack('To do', $stackToDoId, $boardId); - - $stackDoingId = '124'; + + $stackDoingId = '124'; $stackDoing = $this->assembleTestStack('Doing', $stackDoingId, $boardId); - + $stackDoneId = '125'; $stackDone = $this->assembleTestStack('Done', $stackDoneId, $boardId); $this->stackService->expects($this->exactly(3)) @@ -153,7 +153,7 @@ class DefaultBoardServiceTest extends TestCase { [$this->l10n->t('Done'), $boardId, 1] ) ->willReturnOnConsecutiveCalls($stackToDo, $stackDoing, $stackDone); - + $cardExampleTask3 = $this->assembleTestCard('Example Task 3', $stackToDoId, $this->userId); $cardExampleTask2 = $this->assembleTestCard('Example Task 2', $stackDoingId, $this->userId); $cardExampleTask1 = $this->assembleTestCard('Example Task 1', $stackDoneId, $this->userId); @@ -172,8 +172,8 @@ class DefaultBoardServiceTest extends TestCase { $this->assertEquals($result->getOwner(), $this->userId); $this->assertEquals($result->getColor(), $color); } - - private function assembleTestStack($title, $id, $boardId) { + + private function assembleTestStack($title, $id, $boardId) { $stack = new Stack(); $stack->setId($id); $stack->setTitle($title); @@ -193,4 +193,4 @@ class DefaultBoardServiceTest extends TestCase { return $card; } -} \ No newline at end of file +} diff --git a/tests/unit/Service/FileServiceTest.php b/tests/unit/Service/FileServiceTest.php index 1e7aa0865..bd3a4e238 100644 --- a/tests/unit/Service/FileServiceTest.php +++ b/tests/unit/Service/FileServiceTest.php @@ -70,7 +70,7 @@ class FileServiceTest extends TestCase { /** @var IConfig */ private $config; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->request = $this->createMock(IRequest::class); $this->appData = $this->createMock(IAppData::class); @@ -161,10 +161,8 @@ class FileServiceTest extends TestCase { $this->assertEquals($expected, $this->fileService->extendData($attachment)); } - /** - * @expectedException \Exception - */ public function testCreateEmpty() { + $this->expectException(\Exception::class); $attachment = $this->getAttachment(); $this->l10n->expects($this->any()) ->method('t') @@ -173,10 +171,8 @@ class FileServiceTest extends TestCase { $this->fileService->create($attachment); } - /** - * @expectedException \Exception - */ public function testCreateError() { + $this->expectException(\Exception::class); $attachment = $this->getAttachment(); $this->mockGetUploadedFileError(UPLOAD_ERR_INI_SIZE); $this->l10n->expects($this->any()) @@ -221,11 +217,10 @@ class FileServiceTest extends TestCase { $this->fileService->create($attachment); } - /** - * @expectedException \Exception - * @expectedExceptionMessage File already exists. - */ public function testCreateExists() { + $this->expectException(\Exception::class); + $this->expectExceptionMessage('File already exists.'); + $attachment = $this->getAttachment(); $this->mockGetUploadedFile(); $folder = $this->mockGetFolder(123); @@ -336,4 +331,4 @@ class FileServiceTest extends TestCase { $this->fileService->markAsDeleted($attachment); $this->assertGreaterThan(0, $attachment->getDeletedAt()); } -} \ No newline at end of file +} diff --git a/tests/unit/Service/LabelServiceTest.php b/tests/unit/Service/LabelServiceTest.php index 29283df49..d7d82a93f 100644 --- a/tests/unit/Service/LabelServiceTest.php +++ b/tests/unit/Service/LabelServiceTest.php @@ -42,7 +42,7 @@ class LabelServiceTest extends TestCase { /** @var ChangeHelper|\PHPUnit\Framework\MockObject\MockObject */ private $changeHelper; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->labelMapper = $this->getMockBuilder(LabelMapper::class) ->disableOriginalConstructor()->getMock(); diff --git a/tests/unit/Service/PermissionServiceTest.php b/tests/unit/Service/PermissionServiceTest.php index 3d5f3118c..cb0fc9307 100644 --- a/tests/unit/Service/PermissionServiceTest.php +++ b/tests/unit/Service/PermissionServiceTest.php @@ -60,7 +60,7 @@ class PermissionServiceTest extends \Test\TestCase { /** @var string */ private $userId = 'admin'; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->logger = $this->request = $this->createMock(ILogger::class); $this->aclMapper = $this->createMock(AclMapper::class); diff --git a/tests/unit/Service/StackServiceTest.php b/tests/unit/Service/StackServiceTest.php index 6e8f02748..38984216f 100644 --- a/tests/unit/Service/StackServiceTest.php +++ b/tests/unit/Service/StackServiceTest.php @@ -73,7 +73,7 @@ class StackServiceTest extends TestCase { /** @var EventDispatcherInterface */ private $eventDispatcher; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->stackMapper = $this->createMock(StackMapper::class); $this->cardMapper = $this->createMock(CardMapper::class); diff --git a/tests/unit/controller/AttachmentApiControllerTest.php b/tests/unit/controller/AttachmentApiControllerTest.php index df67dfdab..871c57fa2 100644 --- a/tests/unit/controller/AttachmentApiControllerTest.php +++ b/tests/unit/controller/AttachmentApiControllerTest.php @@ -33,12 +33,12 @@ class AttachmentApiControllerTest extends \Test\TestCase { private $appName = 'deck'; private $controller; - private $request; + private $request; private $attachmentExample; private $cardId; private $attachmentService; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->attachmentExample = new Attachment(); $this->attachmentExample->setId(1); @@ -111,7 +111,7 @@ class AttachmentApiControllerTest extends \Test\TestCase { public function testUpdate() { - // FIXME: what is data supposed to be in this context? + // FIXME: what is data supposed to be in this context? $data = ['not empty data']; $this->attachmentService->expects($this->once()) @@ -169,4 +169,4 @@ class AttachmentApiControllerTest extends \Test\TestCase { $actual = $this->controller->restore(); $this->assertEquals($expected, $actual); } -} \ No newline at end of file +} diff --git a/tests/unit/controller/AttachmentControllerTest.php b/tests/unit/controller/AttachmentControllerTest.php index 0d1505032..ddb830eeb 100644 --- a/tests/unit/controller/AttachmentControllerTest.php +++ b/tests/unit/controller/AttachmentControllerTest.php @@ -42,7 +42,7 @@ class AttachmentControllerTest extends \Test\TestCase { /** @var string */ private $userId = 'user'; - public function setUp() { + public function setUp(): void { $this->request = $this->createMock(IRequest::class); $this->attachmentService = $this->createMock(AttachmentService::class); $this->controller = new AttachmentController( diff --git a/tests/unit/controller/BoardApiControllerTest.php b/tests/unit/controller/BoardApiControllerTest.php index 6a2ebf2d7..72d7d450d 100644 --- a/tests/unit/controller/BoardApiControllerTest.php +++ b/tests/unit/controller/BoardApiControllerTest.php @@ -38,8 +38,8 @@ class BoardApiControllerTest extends \Test\TestCase { private $exampleBoard; private $deniedBoard; - public function setUp() { - parent::setUp(); + public function setUp(): void { + parent::setUp(); $this->request = $this->createMock(IRequest::class); $this->boardService = $this->createMock(BoardService::class); @@ -76,7 +76,7 @@ class BoardApiControllerTest extends \Test\TestCase { $this->assertEquals($expected, $actual); } - + public function testGet() { $boardId = 25; $board = new Board(); @@ -94,7 +94,7 @@ class BoardApiControllerTest extends \Test\TestCase { $actual = $this->controller->get(); $this->assertEquals($expected, $actual); } - + public function testCreate() { $board = new Board(); $board->setId($this->exampleBoard['id']); @@ -103,11 +103,11 @@ class BoardApiControllerTest extends \Test\TestCase { $this->boardService->expects($this->once()) ->method('create') ->willReturn($board); - + $expected = new DataResponse($board, HTTP::STATUS_OK); $actual = $this->controller->create($this->exampleBoard['title'], $this->exampleBoard['color']); $this->assertEquals($expected, $actual); - } + } public function testUpdate() { $board = new Board(); @@ -125,9 +125,9 @@ class BoardApiControllerTest extends \Test\TestCase { $expected = new DataResponse($board, HTTP::STATUS_OK); $actual = $this->controller->update($this->exampleBoard['title'], $this->exampleBoard['color']); - $this->assertEquals($expected, $actual); - } - + $this->assertEquals($expected, $actual); + } + public function testDelete() { $board = new Board(); $board->setId($this->exampleBoard['id']); @@ -136,7 +136,7 @@ class BoardApiControllerTest extends \Test\TestCase { $this->boardService->expects($this->once()) ->method('delete') ->willReturn($board); - + $this->request->expects($this->any()) ->method('getParam') ->with('boardId') @@ -146,8 +146,8 @@ class BoardApiControllerTest extends \Test\TestCase { $actual = $this->controller->delete(); $this->assertEquals($expected, $actual); - } - + } + public function testUndoDelete() { $board = new board(); $board->setId($this->exampleBoard['id']); @@ -166,4 +166,4 @@ class BoardApiControllerTest extends \Test\TestCase { $actual = $this->controller->undoDelete(); $this->assertEquals($expected, $actual); } -} \ No newline at end of file +} diff --git a/tests/unit/controller/BoardControllerTest.php b/tests/unit/controller/BoardControllerTest.php index 223a54aa5..3321e0e3b 100644 --- a/tests/unit/controller/BoardControllerTest.php +++ b/tests/unit/controller/BoardControllerTest.php @@ -36,7 +36,7 @@ class BoardControllerTest extends \Test\TestCase { private $permissionService; private $userId = 'user'; - public function setUp() { + public function setUp(): void { $this->l10n = $this->request = $this->getMockBuilder( '\OCP\IL10n') ->disableOriginalConstructor() @@ -71,7 +71,7 @@ class BoardControllerTest extends \Test\TestCase { $this->controller = new BoardController( 'deck', - $this->request, + $this->request, $this->boardService, $this->permissionService, $this->userId diff --git a/tests/unit/controller/CardApiControllerTest.php b/tests/unit/controller/CardApiControllerTest.php index 82ad0329b..2956b239c 100644 --- a/tests/unit/controller/CardApiControllerTest.php +++ b/tests/unit/controller/CardApiControllerTest.php @@ -30,7 +30,7 @@ use OCA\Deck\Db\Card; use OCA\Deck\Service\CardService; class CardApiControllerTest extends \Test\TestCase { - + private $controller; private $request; private $cardService; @@ -38,26 +38,26 @@ class CardApiControllerTest extends \Test\TestCase { private $cardExample; private $stackExample; - public function setUp() { + public function setUp(): void { parent::setUp(); - + $this->request = $this->createMock(IRequest::class); $this->cardService = $this->createMock(CardService::class); - + $this->cardExample['id'] = 1; $this->stackExample['id'] = 1; $this->controller = new CardApiController ( $appName = 'deck', $this->request, - $this->cardService, + $this->cardService, $this->userId ); } public function testGet() { $card = new Card(); - $card->setId($this->cardExample['id']); + $card->setId($this->cardExample['id']); $this->request->expects($this->once()) ->method('getParam') @@ -104,7 +104,7 @@ class CardApiControllerTest extends \Test\TestCase { ['cardId'], ['stackId'] )->willReturnonConsecutiveCalls( - $this->cardExample['id'], + $this->cardExample['id'], $this->stackExample['id']); $this->cardService->expects($this->once()) @@ -120,7 +120,7 @@ class CardApiControllerTest extends \Test\TestCase { $card = new Card(); $card->setId($this->cardExample['id']); - + $this->request->expects($this->once()) ->method('getParam') ->with('cardId') @@ -135,4 +135,4 @@ class CardApiControllerTest extends \Test\TestCase { $this->assertEquals($expected, $actual); } -} \ No newline at end of file +} diff --git a/tests/unit/controller/CardControllerTest.php b/tests/unit/controller/CardControllerTest.php index 904f7b03a..5ecf23893 100644 --- a/tests/unit/controller/CardControllerTest.php +++ b/tests/unit/controller/CardControllerTest.php @@ -38,7 +38,7 @@ class CardControllerTest extends \Test\TestCase { /** @var string */ private $userId = 'user'; - public function setUp() { + public function setUp(): void { $this->request = $this->getMockBuilder( '\OCP\IRequest') ->disableOriginalConstructor() diff --git a/tests/unit/controller/LabelApiControllerTest.php b/tests/unit/controller/LabelApiControllerTest.php index ff314abcb..419a16889 100644 --- a/tests/unit/controller/LabelApiControllerTest.php +++ b/tests/unit/controller/LabelApiControllerTest.php @@ -29,7 +29,7 @@ use OCP\IRequest; use OCA\Deck\Db\Label; use OCA\Deck\Service\LabelService; -class LabelApiControllerTest extends \Test\TestCase { +class LabelApiControllerTest extends \Test\TestCase { private $controller; private $request; @@ -37,7 +37,7 @@ class LabelApiControllerTest extends \Test\TestCase { private $userId = 'admin'; private $exampleLabel; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->request = $this->createMock(IRequest::class); $this->labelService = $this->createMock(LabelService::class); @@ -125,4 +125,4 @@ class LabelApiControllerTest extends \Test\TestCase { $this->assertEquals($expected, $actual); } -} \ No newline at end of file +} diff --git a/tests/unit/controller/LabelControllerTest.php b/tests/unit/controller/LabelControllerTest.php index 8c1bb308e..dfa9e430e 100644 --- a/tests/unit/controller/LabelControllerTest.php +++ b/tests/unit/controller/LabelControllerTest.php @@ -40,7 +40,7 @@ class LabelControllerTest extends \Test\TestCase { /** @var string */ private $userId = 'user'; - public function setUp() { + public function setUp(): void { $this->request = $this->getMockBuilder( '\OCP\IRequest') ->disableOriginalConstructor() diff --git a/tests/unit/controller/PageControllerTest.php b/tests/unit/controller/PageControllerTest.php index 8f6d1c47c..074e98eeb 100644 --- a/tests/unit/controller/PageControllerTest.php +++ b/tests/unit/controller/PageControllerTest.php @@ -42,7 +42,7 @@ class PageControllerTest extends \Test\TestCase { private $permissionService; private $config; - public function setUp() { + public function setUp(): void { $this->l10n = $this->createMock(IL10N::class); $this->request = $this->createMock(IRequest::class); $this->defaultBoardService = $this->createMock(DefaultBoardService::class); diff --git a/tests/unit/controller/StackApiControllerTest.php b/tests/unit/controller/StackApiControllerTest.php index 8ec2cc4fa..fd75789e6 100644 --- a/tests/unit/controller/StackApiControllerTest.php +++ b/tests/unit/controller/StackApiControllerTest.php @@ -35,17 +35,17 @@ class StackApiControllerTest extends \Test\TestCase { private $appName = 'deck'; private $userId = 'admin'; - private $controller; + private $controller; private $boardService; private $stackService; private $exampleStack; private $exampleBoard; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->request = $this->createMock(IRequest::class); $this->boardService = $this->createMock(BoardService::class); - $this->stackService = $this->createMock(StackService::class); + $this->stackService = $this->createMock(StackService::class); $this->exampleStack['id'] = 345; $this->exampleStack['boardId'] = $this->exampleBoard['boardId']; @@ -67,7 +67,7 @@ class StackApiControllerTest extends \Test\TestCase { $stack->setId($this->exampleStack['id']); $stack->setBoardId($this->exampleStack['boardId']); $stack->setOrder($this->exampleStack['order']); - $stacks = [$stack]; + $stacks = [$stack]; $this->stackService->expects($this->once()) ->method('findAll') @@ -87,7 +87,7 @@ class StackApiControllerTest extends \Test\TestCase { $stack = new Stack(); $stack->setId($this->exampleStack['id']); $stack->setBoardId($this->exampleStack['boardId']); - $stack->setOrder($this->exampleStack['order']); + $stack->setOrder($this->exampleStack['order']); $this->stackService->expects($this->once()) ->method('find') @@ -96,12 +96,12 @@ class StackApiControllerTest extends \Test\TestCase { $this->request->expects($this->once()) ->method('getParam') ->with('stackId') - ->willReturn($this->exampleStack['id']); + ->willReturn($this->exampleStack['id']); $expected = new DataResponse($stack, HTTP::STATUS_OK); $actual = $this->controller->get(); $this->assertEquals($expected, $actual); - } + } public function testCreate() { @@ -126,8 +126,8 @@ class StackApiControllerTest extends \Test\TestCase { } public function testUpdate() { - - $this->request->expects($this->exactly(2)) + + $this->request->expects($this->exactly(2)) ->method('getParam') ->withConsecutive( ['stackId'], @@ -171,4 +171,4 @@ class StackApiControllerTest extends \Test\TestCase { $actual = $this->controller->delete(); $this->assertEquals($expected, $actual); } -} \ No newline at end of file +} diff --git a/tests/unit/controller/StackControllerTest.php b/tests/unit/controller/StackControllerTest.php index b209178db..0f597bd97 100644 --- a/tests/unit/controller/StackControllerTest.php +++ b/tests/unit/controller/StackControllerTest.php @@ -41,7 +41,7 @@ class StackControllerTest extends \Test\TestCase { /** @var string */ private $userId = 'user'; - public function setUp() { + public function setUp(): void { $this->request = $this->getMockBuilder( '\OCP\IRequest') ->disableOriginalConstructor()