From c03647a1c498edba36b5a429eee130511841c8ce Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Thu, 1 Aug 2019 17:02:45 +0200 Subject: [PATCH 001/109] Don't allow access if user has already taken part Signed-off-by: Marcel Klehr --- lib/Controller/ApiController.php | 1 + lib/Controller/PageController.php | 7 ++ lib/Db/Event.php | 4 + .../Version0010Date20190000000007.php | 77 +++++++++++++++++++ src/views/Create.vue | 8 ++ 5 files changed, 97 insertions(+) create mode 100644 lib/Migration/Version0010Date20190000000007.php diff --git a/lib/Controller/ApiController.php b/lib/Controller/ApiController.php index 690dc43..5118c21 100644 --- a/lib/Controller/ApiController.php +++ b/lib/Controller/ApiController.php @@ -438,6 +438,7 @@ class ApiController extends Controller { $newEvent->setDescription($event['description']); $newEvent->setIsAnonymous($event['isAnonymous']); + $newEvent->setUnique($event['unique']); if ($event['access'] === 'select') { $shareAccess = ''; diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php index 783c47a..dcb60f0 100644 --- a/lib/Controller/PageController.php +++ b/lib/Controller/PageController.php @@ -527,6 +527,13 @@ class PageController extends Controller { return false; } if ($access === 'registered') { + if ($form->getUnique()) { + $participants = $this->voteMapper->findParticipantsByForm($form->getId()); + foreach($participants as $participant) { + // Don't allow access if user has already taken part + if ($participant->getUserId() === $this->userId) return false; + } + } return true; } if ($owner === $this->userId) { diff --git a/lib/Db/Event.php b/lib/Db/Event.php index d05e911..6ba1e9c 100644 --- a/lib/Db/Event.php +++ b/lib/Db/Event.php @@ -45,6 +45,8 @@ use OCP\AppFramework\Db\Entity; * @method void setHash(string $value) * @method integer getIsAnonymous() * @method void setIsAnonymous(integer $value) + * @method integer getUnique() + * @method void setUnique(boolean $value) */ class Event extends Entity { protected $title; @@ -57,6 +59,7 @@ class Event extends Entity { protected $isAnonymous; protected $fullAnonymous; protected $allowMaybe; + protected $unique; /** * Event constructor. @@ -91,6 +94,7 @@ class Event extends Entity { 'expired' => $expired, 'expirationDate' => $this->getExpire(), 'isAnonymous' => $this->getIsAnonymous(), + 'unique' => $this->getUnique() ]; } } diff --git a/lib/Migration/Version0010Date20190000000007.php b/lib/Migration/Version0010Date20190000000007.php new file mode 100644 index 0000000..14f260c --- /dev/null +++ b/lib/Migration/Version0010Date20190000000007.php @@ -0,0 +1,77 @@ + + * + * @author Marcel Klehr + * + * @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\Forms\Migration; + +use Doctrine\DBAL\Exception\TableNotFoundException; +use Doctrine\DBAL\Platforms\PostgreSqlPlatform; +use Doctrine\DBAL\Types\Type; +use OCP\DB\ISchemaWrapper; +use OCP\DB\QueryBuilder\IQueryBuilder; +use OCP\IConfig; +use OCP\IDBConnection; +use OCP\Migration\SimpleMigrationStep; +use OCP\Migration\IOutput; + +/** + * Installation class for the forms app. + * Initial db creation + */ +class Version0010Date20190000000007 extends SimpleMigrationStep { + + /** @var IDBConnection */ + protected $connection; + + /** @var IConfig */ + protected $config; + + /** + * @param IDBConnection $connection + * @param IConfig $config + */ + public function __construct(IDBConnection $connection, IConfig $config) { + $this->connection = $connection; + $this->config = $config; + } + + /** + * @param IOutput $output + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` + * @param array $options + * @return null|ISchemaWrapper + * @since 13.0.0 + */ + public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { + /** @var ISchemaWrapper $schema */ + $schema = $schemaClosure(); + + if ($schema->hasTable('forms_events')) { + $schema->getTable('forms_events')->addColumn('unique', Type::INTEGER, [ + 'notnull' => false, + 'default' => 0, + ]); + } else { + } + return $schema; + } +} diff --git a/src/views/Create.vue b/src/views/Create.vue index 6fa4f23..c2bf517 100644 --- a/src/views/Create.vue +++ b/src/views/Create.vue @@ -126,6 +126,13 @@ {{ t('forms', 'Anonymous form') }} + + + @@ -217,6 +224,7 @@ export default { description: '', created: '', access: 'public', + unique: false, expiration: false, expirationDate: '', expired: false, From 9b3ba54a267e65624a4cbf9515dd3e0307205253 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2019 02:09:53 +0000 Subject: [PATCH 002/109] Bump json2csv from 4.5.2 to 4.5.3 Bumps [json2csv](https://github.com/zemirco/json2csv) from 4.5.2 to 4.5.3. - [Release notes](https://github.com/zemirco/json2csv/releases) - [Changelog](https://github.com/zemirco/json2csv/blob/v4.5.3/CHANGELOG.md) - [Commits](https://github.com/zemirco/json2csv/compare/v4.5.2...v4.5.3) Signed-off-by: dependabot-preview[bot] --- package-lock.json | 30 +++++++++++------------------- package.json | 2 +- 2 files changed, 12 insertions(+), 20 deletions(-) diff --git a/package-lock.json b/package-lock.json index 541d42f..904d7a1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3451,21 +3451,13 @@ } }, "eslint-plugin-es": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-2.0.0.tgz", - "integrity": "sha512-f6fceVtg27BR02EYnBhgWLFQfK6bN4Ll0nQFrBHOlCsAyxeZkn0NHns5O0YZOPrV1B3ramd6cgFwaoFLcSkwEQ==", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-1.4.1.tgz", + "integrity": "sha512-5fa/gR2yR3NxQf+UXkeLeP8FBBl6tSgdrAz1+cF84v1FMM4twGwQoqTnn+QxFLcPOrF4pdKEJKDB/q9GoyJrCA==", "dev": true, "requires": { "eslint-utils": "^1.4.2", - "regexpp": "^3.0.0" - }, - "dependencies": { - "regexpp": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.0.0.tgz", - "integrity": "sha512-Z+hNr7RAVWxznLPuA7DIh8UNX1j9CDrUQxskw9IrBE1Dxue2lyXT+shqEIeLUjrokxIP8CMy1WkjgG3rTsd5/g==", - "dev": true - } + "regexpp": "^2.0.1" } }, "eslint-plugin-import": { @@ -3518,12 +3510,12 @@ } }, "eslint-plugin-node": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-10.0.0.tgz", - "integrity": "sha512-1CSyM/QCjs6PXaT18+zuAXsjXGIGo5Rw630rSKwokSs2jrYURQc4R5JZpoanNCqwNmepg+0eZ9L7YiRUJb8jiQ==", + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-9.2.0.tgz", + "integrity": "sha512-2abNmzAH/JpxI4gEOwd6K8wZIodK3BmHbTxz4s79OIYwwIt2gkpEXlAouJXu4H1c9ySTnRso0tsuthSOZbUMlA==", "dev": true, "requires": { - "eslint-plugin-es": "^2.0.0", + "eslint-plugin-es": "^1.4.1", "eslint-utils": "^1.4.2", "ignore": "^5.1.1", "minimatch": "^3.0.4", @@ -5928,9 +5920,9 @@ "dev": true }, "json2csv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/json2csv/-/json2csv-4.5.2.tgz", - "integrity": "sha512-Te2Knce3VfLKyurH3AolM6Y781ZE+R3jQ+0YQ0HYLiubyicST/19vML24e1dpScaaEQb+1Q1t5IcGXr6esM9Lw==", + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/json2csv/-/json2csv-4.5.3.tgz", + "integrity": "sha512-tg5sm25TOwgMsPUixPFmmuOUFtVCj4p57XipoE8gi/ejNftce/0d8LBgWnCkjF4HsLDsFzszdbIEV6mnK0WfNg==", "requires": { "commander": "^2.15.1", "jsonparse": "^1.3.1", diff --git a/package.json b/package.json index 8a1e340..5898fbf 100644 --- a/package.json +++ b/package.json @@ -69,7 +69,7 @@ "test:coverage": "jest --coverage" }, "dependencies": { - "json2csv": "4.5.2", + "json2csv": "4.5.3", "moment": "^2.23.0", "nextcloud-axios": "^0.2.1", "nextcloud-vue": "^0.12.3", From fbb8d2e95343860e34b4da28445df9502f44369f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 11 Sep 2019 02:59:59 +0000 Subject: [PATCH 003/109] [tx-robot] updated from transifex --- l10n/it.js | 1 + l10n/it.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/it.js b/l10n/it.js index 277d43e..98a4598 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Proprietario", "Created" : "Creato", "Expires" : "Scade", + "View Results" : "Visualizza risultati", "Public access" : "Accesso pubblico", "Only shared" : "Solo condiviso", "Registered users only" : "Solo utenti registrati", diff --git a/l10n/it.json b/l10n/it.json index df4f7c8..cb5a622 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -18,6 +18,7 @@ "Owner" : "Proprietario", "Created" : "Creato", "Expires" : "Scade", + "View Results" : "Visualizza risultati", "Public access" : "Accesso pubblico", "Only shared" : "Solo condiviso", "Registered users only" : "Solo utenti registrati", From 220fa40d9603c2f558931183eac3bd5dc99048d6 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:02:57 +0000 Subject: [PATCH 004/109] Bump eslint-plugin-node from 9.2.0 to 10.0.0 Bumps [eslint-plugin-node](https://github.com/mysticatea/eslint-plugin-node) from 9.2.0 to 10.0.0. - [Release notes](https://github.com/mysticatea/eslint-plugin-node/releases) - [Commits](https://github.com/mysticatea/eslint-plugin-node/compare/v9.2.0...v10.0.0) Signed-off-by: dependabot-preview[bot] --- package-lock.json | 24 ++++++++++++++++-------- package.json | 2 +- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 904d7a1..706c548 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3451,13 +3451,21 @@ } }, "eslint-plugin-es": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-1.4.1.tgz", - "integrity": "sha512-5fa/gR2yR3NxQf+UXkeLeP8FBBl6tSgdrAz1+cF84v1FMM4twGwQoqTnn+QxFLcPOrF4pdKEJKDB/q9GoyJrCA==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-2.0.0.tgz", + "integrity": "sha512-f6fceVtg27BR02EYnBhgWLFQfK6bN4Ll0nQFrBHOlCsAyxeZkn0NHns5O0YZOPrV1B3ramd6cgFwaoFLcSkwEQ==", "dev": true, "requires": { "eslint-utils": "^1.4.2", - "regexpp": "^2.0.1" + "regexpp": "^3.0.0" + }, + "dependencies": { + "regexpp": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.0.0.tgz", + "integrity": "sha512-Z+hNr7RAVWxznLPuA7DIh8UNX1j9CDrUQxskw9IrBE1Dxue2lyXT+shqEIeLUjrokxIP8CMy1WkjgG3rTsd5/g==", + "dev": true + } } }, "eslint-plugin-import": { @@ -3510,12 +3518,12 @@ } }, "eslint-plugin-node": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-9.2.0.tgz", - "integrity": "sha512-2abNmzAH/JpxI4gEOwd6K8wZIodK3BmHbTxz4s79OIYwwIt2gkpEXlAouJXu4H1c9ySTnRso0tsuthSOZbUMlA==", + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-10.0.0.tgz", + "integrity": "sha512-1CSyM/QCjs6PXaT18+zuAXsjXGIGo5Rw630rSKwokSs2jrYURQc4R5JZpoanNCqwNmepg+0eZ9L7YiRUJb8jiQ==", "dev": true, "requires": { - "eslint-plugin-es": "^1.4.1", + "eslint-plugin-es": "^2.0.0", "eslint-utils": "^1.4.2", "ignore": "^5.1.1", "minimatch": "^3.0.4", diff --git a/package.json b/package.json index 5898fbf..f20fb56 100644 --- a/package.json +++ b/package.json @@ -97,7 +97,7 @@ "eslint-loader": "^3.0.0", "eslint-plugin-import": "^2.18.2", "eslint-plugin-nextcloud": "^0.3.0", - "eslint-plugin-node": "^9.2.0", + "eslint-plugin-node": "^10.0.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.1", "eslint-plugin-vue": "^5.2.3", From d263138a1df36058aacfc4441d4b0bc06c3f937c 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:33 +0000 Subject: [PATCH 005/109] Bump webpack from 4.39.3 to 4.40.1 Bumps [webpack](https://github.com/webpack/webpack) from 4.39.3 to 4.40.1. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.39.3...v4.40.1) Signed-off-by: dependabot-preview[bot] --- package-lock.json | 32 ++++++++++++++++---------------- package.json | 2 +- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/package-lock.json b/package-lock.json index 904d7a1..1fee8fd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2854,9 +2854,9 @@ } }, "cyclist": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz", - "integrity": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=", "dev": true }, "dashdash": { @@ -7143,12 +7143,12 @@ "dev": true }, "parallel-transform": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz", - "integrity": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", "dev": true, "requires": { - "cyclist": "~0.2.2", + "cyclist": "^1.0.1", "inherits": "^2.0.3", "readable-stream": "^2.1.5" } @@ -8684,9 +8684,9 @@ "dev": true }, "serialize-javascript": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.0.tgz", - "integrity": "sha512-UkGlcYMtw4d9w7YfCtJFgdRTps8N4L0A48R+SmcGL57ki1+yHwJXnalk5bjgrw+ljv6SfzjzPjhohod2qllg/Q==", + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz", + "integrity": "sha512-0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A==", "dev": true }, "set-blocking": { @@ -9945,9 +9945,9 @@ } }, "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", @@ -10702,9 +10702,9 @@ } }, "webpack": { - "version": "4.39.3", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.39.3.tgz", - "integrity": "sha512-BXSI9M211JyCVc3JxHWDpze85CvjC842EvpRsVTc/d15YJGlox7GIDd38kJgWrb3ZluyvIjgenbLDMBQPDcxYQ==", + "version": "4.40.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.40.1.tgz", + "integrity": "sha512-AAP7F9X1cVNnQl0ZsG52qF89tqCKS8lqVEnFOA0g/G25/VyH4CejwTbSD9aEDGStAIuH+l6W1yOYRZNOP0VE1g==", "dev": true, "requires": { "@webassemblyjs/ast": "1.8.5", diff --git a/package.json b/package.json index 5898fbf..f0ac2fd 100644 --- a/package.json +++ b/package.json @@ -111,7 +111,7 @@ "vue-loader": "^15.7.1", "vue-style-loader": "^4.1.1", "vue-template-compiler": "^2.6.10", - "webpack": "^4.39.3", + "webpack": "^4.40.1", "webpack-cli": "^3.3.8", "webpack-merge": "^4.2.2" } From 81c857b95e750a10e742795320290560b467e334 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 14 Sep 2019 02:52:01 +0000 Subject: [PATCH 006/109] [tx-robot] updated from transifex --- l10n/es.js | 1 + l10n/es.json | 1 + l10n/zh_CN.js | 1 + l10n/zh_CN.json | 1 + 4 files changed, 4 insertions(+) diff --git a/l10n/es.js b/l10n/es.js index dca4d2b..90c5372 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Propietario", "Created" : "Creado", "Expires" : "Expira", + "View Results" : "Ver resultados", "Public access" : "Acceso público", "Only shared" : "Solo compartido", "Registered users only" : "Solo usuarios registrados", diff --git a/l10n/es.json b/l10n/es.json index f19bf44..66bfca9 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -18,6 +18,7 @@ "Owner" : "Propietario", "Created" : "Creado", "Expires" : "Expira", + "View Results" : "Ver resultados", "Public access" : "Acceso público", "Only shared" : "Solo compartido", "Registered users only" : "Solo usuarios registrados", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 68924e6..51e0f71 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "所有者", "Created" : "已创建", "Expires" : "过期", + "View Results" : "查看结果", "Public access" : "公开访问", "Only shared" : "只共享给特定用户或分组", "Registered users only" : "只允许注册用户", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index a765e19..5afda40 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -18,6 +18,7 @@ "Owner" : "所有者", "Created" : "已创建", "Expires" : "过期", + "View Results" : "查看结果", "Public access" : "公开访问", "Only shared" : "只共享给特定用户或分组", "Registered users only" : "只允许注册用户", From d8a86a4ff11b6478ae98c095721eb44aa1604971 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 19 Sep 2019 03:02:28 +0000 Subject: [PATCH 007/109] [tx-robot] updated from transifex --- l10n/ca.js | 1 + l10n/ca.json | 1 + l10n/fa.js | 23 +++++++++++++++++++++++ l10n/fa.json | 21 +++++++++++++++++++++ 4 files changed, 46 insertions(+) create mode 100644 l10n/fa.js create mode 100644 l10n/fa.json diff --git a/l10n/ca.js b/l10n/ca.js index 883b3ad..d814748 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Propietari", "Created" : "Creat", "Expires" : "Venç", + "View Results" : "Mostra els resultats", "Public access" : "Accés públic", "Only shared" : "Només compartit", "Registered users only" : "Només usuaris registrats", diff --git a/l10n/ca.json b/l10n/ca.json index 21372e4..4e8ba0f 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -18,6 +18,7 @@ "Owner" : "Propietari", "Created" : "Creat", "Expires" : "Venç", + "View Results" : "Mostra els resultats", "Public access" : "Accés públic", "Only shared" : "Només compartit", "Registered users only" : "Només usuaris registrats", diff --git a/l10n/fa.js b/l10n/fa.js new file mode 100644 index 0000000..69ae894 --- /dev/null +++ b/l10n/fa.js @@ -0,0 +1,23 @@ +OC.L10N.register( + "forms", + { + "Forms" : "فرم‌ها", + "Go to form" : "برو به فرم", + "Expired" : "منقضی شده", + "Group" : "گروه", + "Access" : "دسترسی", + "Created" : "ایجاد شده", + "Public access" : "دسترسی عمومی", + "Hidden form" : "فرم مخفی", + "Add Answer" : "جواب جدید", + "Form description" : "توضیح فرم", + "Add Question" : "سؤال جدید", + "Configuration" : "تنظیمات", + "Form configurations" : "تنظیمات فرم", + "Create new form" : "ایجاد فرم جدید", + "Update form" : "بروزرسانی فرم", + "Done" : "انجام شد", + "All questions need answers!" : "همه سؤالات باید پاسخ داده شوند!", + "Delete form" : "حذف فرم" +}, +"nplurals=2; plural=(n > 1);"); diff --git a/l10n/fa.json b/l10n/fa.json new file mode 100644 index 0000000..2f13b57 --- /dev/null +++ b/l10n/fa.json @@ -0,0 +1,21 @@ +{ "translations": { + "Forms" : "فرم‌ها", + "Go to form" : "برو به فرم", + "Expired" : "منقضی شده", + "Group" : "گروه", + "Access" : "دسترسی", + "Created" : "ایجاد شده", + "Public access" : "دسترسی عمومی", + "Hidden form" : "فرم مخفی", + "Add Answer" : "جواب جدید", + "Form description" : "توضیح فرم", + "Add Question" : "سؤال جدید", + "Configuration" : "تنظیمات", + "Form configurations" : "تنظیمات فرم", + "Create new form" : "ایجاد فرم جدید", + "Update form" : "بروزرسانی فرم", + "Done" : "انجام شد", + "All questions need answers!" : "همه سؤالات باید پاسخ داده شوند!", + "Delete form" : "حذف فرم" +},"pluralForm" :"nplurals=2; plural=(n > 1);" +} \ No newline at end of file From 2031a3b631476dc24022366519e1ac064fb53730 Mon Sep 17 00:00:00 2001 From: rakekniven Date: Fri, 20 Sep 2019 15:36:35 +0200 Subject: [PATCH 008/109] l10n: Aligned upper / lowercase of some strings. Signed-off-by: Mark Ziegler --- src/components/formListItem.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/formListItem.vue b/src/components/formListItem.vue index 2e2d46c..2486a56 100644 --- a/src/components/formListItem.vue +++ b/src/components/formListItem.vue @@ -34,17 +34,17 @@
- {{ t('forms',"Delete Form") }} + {{ t('forms',"Delete form") }}
- {{ t('forms', "Copy Link") }} + {{ t('forms', "Copy link") }}
- {{ t('forms', "View Results") }} + {{ t('forms', "View results") }}
@@ -90,7 +90,7 @@
From 2c17a0fbb6f346ec3020583fa1b40e44e377106e Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 22 Sep 2019 01:12:49 +0000 Subject: [PATCH 009/109] Bump stylelint-scss from 3.10.1 to 3.11.1 Bumps [stylelint-scss](https://github.com/kristerkari/stylelint-scss) from 3.10.1 to 3.11.1. - [Release notes](https://github.com/kristerkari/stylelint-scss/releases) - [Changelog](https://github.com/kristerkari/stylelint-scss/blob/master/CHANGELOG.md) - [Commits](https://github.com/kristerkari/stylelint-scss/compare/3.10.1...3.11.1) Signed-off-by: dependabot-preview[bot] --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7f268cf..c972789 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9549,9 +9549,9 @@ } }, "stylelint-scss": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-3.10.1.tgz", - "integrity": "sha512-YnzYmcLd5DGGsjfoj44gArjo3TWhMWjS/ytfu+1HKtToZae5ditZOXHBmrgitsHvNk9mzp5WO3/PjA5IO1GpUw==", + "version": "3.11.1", + "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-3.11.1.tgz", + "integrity": "sha512-0FZNSfy5X2Or4VRA3Abwfrw1NHrI6jHT8ji9xSwP8Re2Kno0i90qbHwm8ohPO0kRB1RP9x1vCYBh4Tij+SZjIg==", "dev": true, "requires": { "lodash": "^4.17.15", diff --git a/package.json b/package.json index 4b3d04f..f84f74e 100644 --- a/package.json +++ b/package.json @@ -106,7 +106,7 @@ "sass-loader": "^7.3.1", "stylelint": "^8.4.0", "stylelint-config-recommended-scss": "^3.3.0", - "stylelint-scss": "^3.10.1", + "stylelint-scss": "^3.11.1", "stylelint-webpack-plugin": "^0.10.5", "vue-loader": "^15.7.1", "vue-style-loader": "^4.1.1", From 68f67df706fd862371a083cf32723edf4fb24bde Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 22 Sep 2019 01:13:40 +0000 Subject: [PATCH 010/109] Bump webpack-cli from 3.3.8 to 3.3.9 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] --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7f268cf..b1e2a60 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11058,9 +11058,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/package.json b/package.json index 4b3d04f..6821346 100644 --- a/package.json +++ b/package.json @@ -112,7 +112,7 @@ "vue-style-loader": "^4.1.1", "vue-template-compiler": "^2.6.10", "webpack": "^4.40.1", - "webpack-cli": "^3.3.8", + "webpack-cli": "^3.3.9", "webpack-merge": "^4.2.2" } } From e163ab346ede284da9220ea6d5b1b6ccfd8f1faa Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 22 Sep 2019 03:01:01 +0000 Subject: [PATCH 011/109] [tx-robot] updated from transifex --- l10n/ca.js | 1 - l10n/ca.json | 1 - l10n/de.js | 1 - l10n/de.json | 1 - l10n/de_DE.js | 1 - l10n/de_DE.json | 1 - l10n/es.js | 1 - l10n/es.json | 1 - l10n/fr.js | 1 - l10n/fr.json | 1 - l10n/gl.js | 1 - l10n/gl.json | 1 - l10n/it.js | 1 - l10n/it.json | 1 - l10n/nl.js | 1 - l10n/nl.json | 1 - l10n/pl.js | 1 - l10n/pl.json | 1 - l10n/pt_BR.js | 1 - l10n/pt_BR.json | 1 - l10n/sv.js | 1 - l10n/sv.json | 1 - l10n/tr.js | 1 - l10n/tr.json | 1 - l10n/zh_CN.js | 1 - l10n/zh_CN.json | 1 - 26 files changed, 26 deletions(-) diff --git a/l10n/ca.js b/l10n/ca.js index d814748..883b3ad 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -20,7 +20,6 @@ OC.L10N.register( "Owner" : "Propietari", "Created" : "Creat", "Expires" : "Venç", - "View Results" : "Mostra els resultats", "Public access" : "Accés públic", "Only shared" : "Només compartit", "Registered users only" : "Només usuaris registrats", diff --git a/l10n/ca.json b/l10n/ca.json index 4e8ba0f..21372e4 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -18,7 +18,6 @@ "Owner" : "Propietari", "Created" : "Creat", "Expires" : "Venç", - "View Results" : "Mostra els resultats", "Public access" : "Accés públic", "Only shared" : "Només compartit", "Registered users only" : "Només usuaris registrats", diff --git a/l10n/de.js b/l10n/de.js index d5be3a1..ae68a74 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -20,7 +20,6 @@ OC.L10N.register( "Owner" : "Besitzer", "Created" : "Erstellt", "Expires" : "Läuft ab", - "View Results" : "Ergebnisse anzeigen", "Public access" : "Öffentlicher Zugriff", "Only shared" : "Nur geteilt", "Registered users only" : "Nur registrierte Benutzer", diff --git a/l10n/de.json b/l10n/de.json index b69b984..a39a4af 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -18,7 +18,6 @@ "Owner" : "Besitzer", "Created" : "Erstellt", "Expires" : "Läuft ab", - "View Results" : "Ergebnisse anzeigen", "Public access" : "Öffentlicher Zugriff", "Only shared" : "Nur geteilt", "Registered users only" : "Nur registrierte Benutzer", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index ea6722d..807ccad 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -20,7 +20,6 @@ OC.L10N.register( "Owner" : "Besitzer", "Created" : "Erstellt", "Expires" : "Läuft ab", - "View Results" : "Ergebnisse anzeigen", "Public access" : "Öffentlicher Zugriff", "Only shared" : "Nur geteilt", "Registered users only" : "Nur für registrierte Benutzer", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 86c8b25..c7a2b31 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -18,7 +18,6 @@ "Owner" : "Besitzer", "Created" : "Erstellt", "Expires" : "Läuft ab", - "View Results" : "Ergebnisse anzeigen", "Public access" : "Öffentlicher Zugriff", "Only shared" : "Nur geteilt", "Registered users only" : "Nur für registrierte Benutzer", diff --git a/l10n/es.js b/l10n/es.js index 90c5372..dca4d2b 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -20,7 +20,6 @@ OC.L10N.register( "Owner" : "Propietario", "Created" : "Creado", "Expires" : "Expira", - "View Results" : "Ver resultados", "Public access" : "Acceso público", "Only shared" : "Solo compartido", "Registered users only" : "Solo usuarios registrados", diff --git a/l10n/es.json b/l10n/es.json index 66bfca9..f19bf44 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -18,7 +18,6 @@ "Owner" : "Propietario", "Created" : "Creado", "Expires" : "Expira", - "View Results" : "Ver resultados", "Public access" : "Acceso público", "Only shared" : "Solo compartido", "Registered users only" : "Solo usuarios registrados", diff --git a/l10n/fr.js b/l10n/fr.js index e410cda..2bdada5 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -20,7 +20,6 @@ OC.L10N.register( "Owner" : "Propriétaire", "Created" : "Créé", "Expires" : "Expire", - "View Results" : "Afficher les résultats", "Public access" : "Accès public", "Only shared" : "Partagé seulement", "Registered users only" : "Utilisateurs enregistrés uniquement", diff --git a/l10n/fr.json b/l10n/fr.json index 8854f8c..b47d9a7 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -18,7 +18,6 @@ "Owner" : "Propriétaire", "Created" : "Créé", "Expires" : "Expire", - "View Results" : "Afficher les résultats", "Public access" : "Accès public", "Only shared" : "Partagé seulement", "Registered users only" : "Utilisateurs enregistrés uniquement", diff --git a/l10n/gl.js b/l10n/gl.js index fb8dc16..7de1e33 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -20,7 +20,6 @@ OC.L10N.register( "Owner" : "Propietario", "Created" : "Creado", "Expires" : "Caduca", - "View Results" : "Ver os resultados", "Public access" : "Acceso público", "Only shared" : "Só compartido", "Registered users only" : "Só usuarios rexistrados", diff --git a/l10n/gl.json b/l10n/gl.json index 7ad64d3..cde5a7a 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -18,7 +18,6 @@ "Owner" : "Propietario", "Created" : "Creado", "Expires" : "Caduca", - "View Results" : "Ver os resultados", "Public access" : "Acceso público", "Only shared" : "Só compartido", "Registered users only" : "Só usuarios rexistrados", diff --git a/l10n/it.js b/l10n/it.js index 98a4598..277d43e 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -20,7 +20,6 @@ OC.L10N.register( "Owner" : "Proprietario", "Created" : "Creato", "Expires" : "Scade", - "View Results" : "Visualizza risultati", "Public access" : "Accesso pubblico", "Only shared" : "Solo condiviso", "Registered users only" : "Solo utenti registrati", diff --git a/l10n/it.json b/l10n/it.json index cb5a622..df4f7c8 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -18,7 +18,6 @@ "Owner" : "Proprietario", "Created" : "Creato", "Expires" : "Scade", - "View Results" : "Visualizza risultati", "Public access" : "Accesso pubblico", "Only shared" : "Solo condiviso", "Registered users only" : "Solo utenti registrati", diff --git a/l10n/nl.js b/l10n/nl.js index 2873635..c9452f5 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -20,7 +20,6 @@ OC.L10N.register( "Owner" : "Eigenaar", "Created" : "Gemaakt", "Expires" : "Verloopt", - "View Results" : "Toon resultaten", "Public access" : "Openbare toegang", "Only shared" : "Alleen gedeeld", "Registered users only" : "Alleen geregistreerde gebruikers", diff --git a/l10n/nl.json b/l10n/nl.json index d65b16d..7567133 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -18,7 +18,6 @@ "Owner" : "Eigenaar", "Created" : "Gemaakt", "Expires" : "Verloopt", - "View Results" : "Toon resultaten", "Public access" : "Openbare toegang", "Only shared" : "Alleen gedeeld", "Registered users only" : "Alleen geregistreerde gebruikers", diff --git a/l10n/pl.js b/l10n/pl.js index 7f3e2c5..18c86cf 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -20,7 +20,6 @@ OC.L10N.register( "Owner" : "Właściciel", "Created" : "Utworzono", "Expires" : "Wygasa", - "View Results" : "Pokaż wyniki", "Public access" : "Dostęp publiczny", "Only shared" : "Tylko udostępnione", "Registered users only" : "Tylko dla zarejestrowanych użytkowników", diff --git a/l10n/pl.json b/l10n/pl.json index 8aec947..dbb107a 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -18,7 +18,6 @@ "Owner" : "Właściciel", "Created" : "Utworzono", "Expires" : "Wygasa", - "View Results" : "Pokaż wyniki", "Public access" : "Dostęp publiczny", "Only shared" : "Tylko udostępnione", "Registered users only" : "Tylko dla zarejestrowanych użytkowników", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 2d15b15..362f49f 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -20,7 +20,6 @@ OC.L10N.register( "Owner" : "Proprietário", "Created" : "Criado", "Expires" : "Expira", - "View Results" : "Ver Resultados", "Public access" : "Acesso público", "Only shared" : "Apenas para compartilhamento", "Registered users only" : "Apenas para usuários registrados", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 4010612..abb4e4f 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -18,7 +18,6 @@ "Owner" : "Proprietário", "Created" : "Criado", "Expires" : "Expira", - "View Results" : "Ver Resultados", "Public access" : "Acesso público", "Only shared" : "Apenas para compartilhamento", "Registered users only" : "Apenas para usuários registrados", diff --git a/l10n/sv.js b/l10n/sv.js index f1cd9a5..de85d3b 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -20,7 +20,6 @@ OC.L10N.register( "Owner" : "Ägare", "Created" : "Skapat", "Expires" : "Upphör", - "View Results" : "Visa resultat", "Public access" : "Publik åtkomst", "Only shared" : "Endast delad", "Registered users only" : "Endast registrerade användare", diff --git a/l10n/sv.json b/l10n/sv.json index b3095aa..2335559 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -18,7 +18,6 @@ "Owner" : "Ägare", "Created" : "Skapat", "Expires" : "Upphör", - "View Results" : "Visa resultat", "Public access" : "Publik åtkomst", "Only shared" : "Endast delad", "Registered users only" : "Endast registrerade användare", diff --git a/l10n/tr.js b/l10n/tr.js index 4d0d258..1376386 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -20,7 +20,6 @@ OC.L10N.register( "Owner" : "Sahip", "Created" : "Oluşturulma", "Expires" : "Sona erme", - "View Results" : "Sonuçları Görüntüle", "Public access" : "Herkese açık erişim", "Only shared" : "Yalnız paylaşılanlar", "Registered users only" : "Yalnız kayıtlı kullanıcılar", diff --git a/l10n/tr.json b/l10n/tr.json index b3b38da..587d177 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -18,7 +18,6 @@ "Owner" : "Sahip", "Created" : "Oluşturulma", "Expires" : "Sona erme", - "View Results" : "Sonuçları Görüntüle", "Public access" : "Herkese açık erişim", "Only shared" : "Yalnız paylaşılanlar", "Registered users only" : "Yalnız kayıtlı kullanıcılar", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 51e0f71..68924e6 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -20,7 +20,6 @@ OC.L10N.register( "Owner" : "所有者", "Created" : "已创建", "Expires" : "过期", - "View Results" : "查看结果", "Public access" : "公开访问", "Only shared" : "只共享给特定用户或分组", "Registered users only" : "只允许注册用户", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index 5afda40..a765e19 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -18,7 +18,6 @@ "Owner" : "所有者", "Created" : "已创建", "Expires" : "过期", - "View Results" : "查看结果", "Public access" : "公开访问", "Only shared" : "只共享给特定用户或分组", "Registered users only" : "只允许注册用户", From c70a9f27db98972ea69b719fbb78d66b4681a303 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 22 Sep 2019 14:26:18 +0000 Subject: [PATCH 012/109] Bump webpack from 4.40.1 to 4.40.2 Bumps [webpack](https://github.com/webpack/webpack) from 4.40.1 to 4.40.2. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.40.1...v4.40.2) Signed-off-by: dependabot-preview[bot] --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index d3dea57..1110d6a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10710,9 +10710,9 @@ } }, "webpack": { - "version": "4.40.1", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.40.1.tgz", - "integrity": "sha512-AAP7F9X1cVNnQl0ZsG52qF89tqCKS8lqVEnFOA0g/G25/VyH4CejwTbSD9aEDGStAIuH+l6W1yOYRZNOP0VE1g==", + "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/package.json b/package.json index e02148e..164238a 100644 --- a/package.json +++ b/package.json @@ -111,7 +111,7 @@ "vue-loader": "^15.7.1", "vue-style-loader": "^4.1.1", "vue-template-compiler": "^2.6.10", - "webpack": "^4.40.1", + "webpack": "^4.40.2", "webpack-cli": "^3.3.9", "webpack-merge": "^4.2.2" } From 2f159dbef64f5c0c60e9cd17b703c7fb3d11560f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 23 Sep 2019 02:59:15 +0000 Subject: [PATCH 013/109] [tx-robot] updated from transifex --- l10n/de.js | 1 + l10n/de.json | 1 + l10n/de_DE.js | 1 + l10n/de_DE.json | 1 + l10n/fr.js | 1 + l10n/fr.json | 1 + l10n/gl.js | 1 + l10n/gl.json | 1 + l10n/it.js | 1 + l10n/it.json | 1 + l10n/pt_BR.js | 1 + l10n/pt_BR.json | 1 + l10n/sv.js | 1 + l10n/sv.json | 1 + l10n/tr.js | 1 + l10n/tr.json | 1 + 16 files changed, 16 insertions(+) diff --git a/l10n/de.js b/l10n/de.js index ae68a74..d61cd65 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Besitzer", "Created" : "Erstellt", "Expires" : "Läuft ab", + "View results" : "Ergebnisse anzeigen", "Public access" : "Öffentlicher Zugriff", "Only shared" : "Nur geteilt", "Registered users only" : "Nur registrierte Benutzer", diff --git a/l10n/de.json b/l10n/de.json index a39a4af..4c38dc1 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -18,6 +18,7 @@ "Owner" : "Besitzer", "Created" : "Erstellt", "Expires" : "Läuft ab", + "View results" : "Ergebnisse anzeigen", "Public access" : "Öffentlicher Zugriff", "Only shared" : "Nur geteilt", "Registered users only" : "Nur registrierte Benutzer", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 807ccad..eb36c0d 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Besitzer", "Created" : "Erstellt", "Expires" : "Läuft ab", + "View results" : "Ergebnisse anzeigen", "Public access" : "Öffentlicher Zugriff", "Only shared" : "Nur geteilt", "Registered users only" : "Nur für registrierte Benutzer", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index c7a2b31..46f220b 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -18,6 +18,7 @@ "Owner" : "Besitzer", "Created" : "Erstellt", "Expires" : "Läuft ab", + "View results" : "Ergebnisse anzeigen", "Public access" : "Öffentlicher Zugriff", "Only shared" : "Nur geteilt", "Registered users only" : "Nur für registrierte Benutzer", diff --git a/l10n/fr.js b/l10n/fr.js index 2bdada5..bd44f26 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Propriétaire", "Created" : "Créé", "Expires" : "Expire", + "View results" : "Afficher les résultats", "Public access" : "Accès public", "Only shared" : "Partagé seulement", "Registered users only" : "Utilisateurs enregistrés uniquement", diff --git a/l10n/fr.json b/l10n/fr.json index b47d9a7..b267517 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -18,6 +18,7 @@ "Owner" : "Propriétaire", "Created" : "Créé", "Expires" : "Expire", + "View results" : "Afficher les résultats", "Public access" : "Accès public", "Only shared" : "Partagé seulement", "Registered users only" : "Utilisateurs enregistrés uniquement", diff --git a/l10n/gl.js b/l10n/gl.js index 7de1e33..2ae7cd7 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Propietario", "Created" : "Creado", "Expires" : "Caduca", + "View results" : "Ver os resultados", "Public access" : "Acceso público", "Only shared" : "Só compartido", "Registered users only" : "Só usuarios rexistrados", diff --git a/l10n/gl.json b/l10n/gl.json index cde5a7a..2321c0b 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -18,6 +18,7 @@ "Owner" : "Propietario", "Created" : "Creado", "Expires" : "Caduca", + "View results" : "Ver os resultados", "Public access" : "Acceso público", "Only shared" : "Só compartido", "Registered users only" : "Só usuarios rexistrados", diff --git a/l10n/it.js b/l10n/it.js index 277d43e..18398a2 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Proprietario", "Created" : "Creato", "Expires" : "Scade", + "View results" : "Visualizza risultati", "Public access" : "Accesso pubblico", "Only shared" : "Solo condiviso", "Registered users only" : "Solo utenti registrati", diff --git a/l10n/it.json b/l10n/it.json index df4f7c8..66effec 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -18,6 +18,7 @@ "Owner" : "Proprietario", "Created" : "Creato", "Expires" : "Scade", + "View results" : "Visualizza risultati", "Public access" : "Accesso pubblico", "Only shared" : "Solo condiviso", "Registered users only" : "Solo utenti registrati", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 362f49f..e5faf8f 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Proprietário", "Created" : "Criado", "Expires" : "Expira", + "View results" : "Ver resultados", "Public access" : "Acesso público", "Only shared" : "Apenas para compartilhamento", "Registered users only" : "Apenas para usuários registrados", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index abb4e4f..493be6a 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -18,6 +18,7 @@ "Owner" : "Proprietário", "Created" : "Criado", "Expires" : "Expira", + "View results" : "Ver resultados", "Public access" : "Acesso público", "Only shared" : "Apenas para compartilhamento", "Registered users only" : "Apenas para usuários registrados", diff --git a/l10n/sv.js b/l10n/sv.js index de85d3b..89cc95a 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Ägare", "Created" : "Skapat", "Expires" : "Upphör", + "View results" : "Visa resultat", "Public access" : "Publik åtkomst", "Only shared" : "Endast delad", "Registered users only" : "Endast registrerade användare", diff --git a/l10n/sv.json b/l10n/sv.json index 2335559..0bdcfb4 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -18,6 +18,7 @@ "Owner" : "Ägare", "Created" : "Skapat", "Expires" : "Upphör", + "View results" : "Visa resultat", "Public access" : "Publik åtkomst", "Only shared" : "Endast delad", "Registered users only" : "Endast registrerade användare", diff --git a/l10n/tr.js b/l10n/tr.js index 1376386..125483f 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Sahip", "Created" : "Oluşturulma", "Expires" : "Sona erme", + "View results" : "Sonuçları görüntüle", "Public access" : "Herkese açık erişim", "Only shared" : "Yalnız paylaşılanlar", "Registered users only" : "Yalnız kayıtlı kullanıcılar", diff --git a/l10n/tr.json b/l10n/tr.json index 587d177..fd33f40 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -18,6 +18,7 @@ "Owner" : "Sahip", "Created" : "Oluşturulma", "Expires" : "Sona erme", + "View results" : "Sonuçları görüntüle", "Public access" : "Herkese açık erişim", "Only shared" : "Yalnız paylaşılanlar", "Registered users only" : "Yalnız kayıtlı kullanıcılar", From efae64432f2f67cbbe40c6f78ac287995720267a Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 24 Sep 2019 03:03:12 +0000 Subject: [PATCH 014/109] [tx-robot] updated from transifex --- l10n/gl.js | 6 +++--- l10n/gl.json | 6 +++--- l10n/pl.js | 1 + l10n/pl.json | 1 + 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/l10n/gl.js b/l10n/gl.js index 2ae7cd7..b897e00 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -3,11 +3,11 @@ OC.L10N.register( { "Do you really want to delete this new form?" : "Confirma que quere eliminar este formulario novo?", "Forms" : "Formularios", - "Forms App - New Activity" : "Aplicativo de formularios – Actividade nova", + "Forms App - New Activity" : "Aplicación de formularios – Actividade nova", "{user} participated in the form \"{title}\"" : "{user} participou no formulario «{title}»", "Go to form" : "Ir ao formulario", - "A forms app, similar to Google Forms." : "Un aplicativo de formularios, semellante ao Google Forms.", - "A forms app, similar to Google Forms with the possibility to restrict access (members, certain groups/users, and public)." : "Un aplicativo de formularios, semellante ao Google Forms, coa posibilidade de restrinxir o acceso (membros, determinados grupos/usuarios, agochados e públicos).", + "A forms app, similar to Google Forms." : "Unha aplicación de formularios, semellante ao Google Forms.", + "A forms app, similar to Google Forms with the possibility to restrict access (members, certain groups/users, and public)." : "Unha aplicación de formularios, semellante ao Google Forms, coa posibilidade de restrinxir o acceso (membros, determinados grupos/usuarios, agochados e públicos).", "Expired" : "Caducado", "Expires %n" : "Caduca o %n", "Expires never" : "Non caduca nunca", diff --git a/l10n/gl.json b/l10n/gl.json index 2321c0b..ad64fc4 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -1,11 +1,11 @@ { "translations": { "Do you really want to delete this new form?" : "Confirma que quere eliminar este formulario novo?", "Forms" : "Formularios", - "Forms App - New Activity" : "Aplicativo de formularios – Actividade nova", + "Forms App - New Activity" : "Aplicación de formularios – Actividade nova", "{user} participated in the form \"{title}\"" : "{user} participou no formulario «{title}»", "Go to form" : "Ir ao formulario", - "A forms app, similar to Google Forms." : "Un aplicativo de formularios, semellante ao Google Forms.", - "A forms app, similar to Google Forms with the possibility to restrict access (members, certain groups/users, and public)." : "Un aplicativo de formularios, semellante ao Google Forms, coa posibilidade de restrinxir o acceso (membros, determinados grupos/usuarios, agochados e públicos).", + "A forms app, similar to Google Forms." : "Unha aplicación de formularios, semellante ao Google Forms.", + "A forms app, similar to Google Forms with the possibility to restrict access (members, certain groups/users, and public)." : "Unha aplicación de formularios, semellante ao Google Forms, coa posibilidade de restrinxir o acceso (membros, determinados grupos/usuarios, agochados e públicos).", "Expired" : "Caducado", "Expires %n" : "Caduca o %n", "Expires never" : "Non caduca nunca", diff --git a/l10n/pl.js b/l10n/pl.js index 18c86cf..bbf3e12 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Właściciel", "Created" : "Utworzono", "Expires" : "Wygasa", + "View results" : "Pokaż wyniki", "Public access" : "Dostęp publiczny", "Only shared" : "Tylko udostępnione", "Registered users only" : "Tylko dla zarejestrowanych użytkowników", diff --git a/l10n/pl.json b/l10n/pl.json index dbb107a..937af7f 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -18,6 +18,7 @@ "Owner" : "Właściciel", "Created" : "Utworzono", "Expires" : "Wygasa", + "View results" : "Pokaż wyniki", "Public access" : "Dostęp publiczny", "Only shared" : "Tylko udostępnione", "Registered users only" : "Tylko dla zarejestrowanych użytkowników", From cda68e15b3a4a54349d2c54cdf2da5503e2b3532 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 25 Sep 2019 02:59:58 +0000 Subject: [PATCH 015/109] [tx-robot] updated from transifex --- l10n/hr.js | 38 +++++++++++++++++++------------------- l10n/hr.json | 38 +++++++++++++++++++------------------- l10n/lt_LT.js | 9 +++++++++ l10n/lt_LT.json | 7 +++++++ 4 files changed, 54 insertions(+), 38 deletions(-) create mode 100644 l10n/lt_LT.js create mode 100644 l10n/lt_LT.json diff --git a/l10n/hr.js b/l10n/hr.js index d1b8ed2..f3dc2a5 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -2,12 +2,12 @@ OC.L10N.register( "forms", { "Do you really want to delete this new form?" : "Želite li zaista izbrisati ovaj novi obrazac?", - "Forms" : "Obrazac", + "Forms" : "Obrasci", "Forms App - New Activity" : "Aplikacija za obrasce – nova aktivnost", - "{user} participated in the form \"{title}\"" : "{user} je sudjelovao u anketi „{title}”", + "{user} participated in the form \"{title}\"" : "{user} je sudjelovao u obrascu „{title}”", "Go to form" : "Idi na obrazac", - "A forms app, similar to Google Forms." : "Aplikacija za obrasce, slično poput Google obrazaca", - "A forms app, similar to Google Forms with the possibility to restrict access (members, certain groups/users, and public)." : "Aplikacija za obrasce, nalik aplikaciji Google obrasci s mogućnošću ograničavanja pristupa (članovi, određene grupe/korisnici, skriveno, javno).", + "A forms app, similar to Google Forms." : "Aplikacija za upravljanje obrascima, nalik aplikaciji Google Forms.", + "A forms app, similar to Google Forms with the possibility to restrict access (members, certain groups/users, and public)." : "Aplikacija za upravljanje obrascima, nalik aplikaciji Google Forms s mogućnošću ograničavanja pristupa (članovi, određene grupe/korisnici, javno).", "Expired" : "Istekao", "Expires %n" : "Istječe %n", "Expires never" : "Istječe nikada", @@ -23,8 +23,8 @@ OC.L10N.register( "Public access" : "Javni pristup", "Only shared" : "Samo dijeljeno", "Registered users only" : "Samo registrirani korisnici", - "Hidden form" : "Skriven obrazac", - "Text form" : "Tekstualni obrazac", + "Hidden form" : "Skriveni obrazac", + "Text form" : "Tekst obrasca", "never" : "nikad", "Link copied to clipboard" : "Poveznica je kopirana u međuspremnik", "Error, while copying link to clipboard" : "Pogreška tijekom kopiranja poveznice u međuspremnik", @@ -32,7 +32,7 @@ OC.L10N.register( "Share with" : "Dijeli s", "Form description" : "Opis obrasca", "Description" : "Opis", - "Make a Form" : "Kreiraj obrazac", + "Make a Form" : "Izradi obrazac", "Add Question" : "Dodaj pitanje", "You are editing in admin mode" : "Uređujete u načinu rada administratora", "Configuration" : "Konfiguracija", @@ -42,30 +42,30 @@ OC.L10N.register( "Name of user or group" : "Ime korisnika ili grupe", "Create new form" : "Stvori novi obrazac", "Writing form" : "Pisanje obrasca", - "Update form" : "Ažuriranje obrasca", + "Update form" : "Ažuriraj obrazac", "Done" : "Gotovo", "Expiration date" : "Datum isteka", "Click to add a date" : "Klikni za dodavanje datuma", - "Select a question type!" : "Odaberi vrstu pitanja!", - "Cannot have the same question!" : "Ne može biti isto pitanje!", - "Two answers cannot be the same!" : "Ne mogu biti dva ista odgovora!", + "Select a question type!" : "Odaberite vrstu pitanja!", + "Cannot have the same question!" : "Ne možete imati isto pitanje!", + "Two answers cannot be the same!" : "Ne mogu postojati dva ista odgovora!", "Title must not be empty!" : "Naslov ne smije biti prazan!", - "Must have at least one question!" : "Mora biti barem jedno pitanje!", - "All questions need answers!" : "Sva pitanja zahtijevaju odgovore!", - "Need to pick an expiration date!" : "Mora se postaviti datum isteka!", + "Must have at least one question!" : "Mora postojati barem jedno pitanje!", + "All questions need answers!" : "Potrebno je odgovoriti na sva pitanja!", + "Need to pick an expiration date!" : "Odaberite datum isteka!", "%n successfully saved" : "%n uspješno spremljenih", "Error on saving form, see console" : "Pogreška pri spremanju obrasca, pogledajte konzolu", "Clone of %n" : "Klon %n", "New" : "Novo", - "Click here to add a form" : "Klikni ovdje za dodavanje obrasca", + "Click here to add a form" : "Kliknite ovdje za dodavanje obrasca", "Delete form" : "Izbriši obrazac", "Do you want to delete \"%n\"?" : "Želite li izbrisati „%n”?", "No, keep form." : "Ne, zadrži obrazac.", "Yes, delete form." : "Da, izbriši obrazac.", - "Form \"%n\" deleted" : "Obrazac „%n” izbrisan", - "Error while deleting Form \"%n\"" : "Pogreška pri brisanju obrasca „%n”", - "Form Expired" : "Obrazac istekao", - "This Form has expired and is no longer taking answers." : "Obrazac je istekao i ne prima više odgovore.", + "Form \"%n\" deleted" : "Obrazac „%n” je izbrisan", + "Error while deleting Form \"%n\"" : "Pogreška pri brisanju obrasca „%n“", + "Form Expired" : "Obrazac je istekao", + "This Form has expired and is no longer taking answers." : "Ovaj je obrazac istekao i nije moguće unositi odgovore.", "Access denied" : "Pristup odbijen", "You are not allowed to view this form or the form does not exist." : "Nije vam dopušteno pregledavati ovaj obrazac ili obrazac ne postoji.", "You are not allowed to edit this form or the form does not exist." : "Nije vam dopušteno uređivati ovaj obrazac ili obrazac ne postoji.", diff --git a/l10n/hr.json b/l10n/hr.json index da70586..c8d1156 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -1,11 +1,11 @@ { "translations": { "Do you really want to delete this new form?" : "Želite li zaista izbrisati ovaj novi obrazac?", - "Forms" : "Obrazac", + "Forms" : "Obrasci", "Forms App - New Activity" : "Aplikacija za obrasce – nova aktivnost", - "{user} participated in the form \"{title}\"" : "{user} je sudjelovao u anketi „{title}”", + "{user} participated in the form \"{title}\"" : "{user} je sudjelovao u obrascu „{title}”", "Go to form" : "Idi na obrazac", - "A forms app, similar to Google Forms." : "Aplikacija za obrasce, slično poput Google obrazaca", - "A forms app, similar to Google Forms with the possibility to restrict access (members, certain groups/users, and public)." : "Aplikacija za obrasce, nalik aplikaciji Google obrasci s mogućnošću ograničavanja pristupa (članovi, određene grupe/korisnici, skriveno, javno).", + "A forms app, similar to Google Forms." : "Aplikacija za upravljanje obrascima, nalik aplikaciji Google Forms.", + "A forms app, similar to Google Forms with the possibility to restrict access (members, certain groups/users, and public)." : "Aplikacija za upravljanje obrascima, nalik aplikaciji Google Forms s mogućnošću ograničavanja pristupa (članovi, određene grupe/korisnici, javno).", "Expired" : "Istekao", "Expires %n" : "Istječe %n", "Expires never" : "Istječe nikada", @@ -21,8 +21,8 @@ "Public access" : "Javni pristup", "Only shared" : "Samo dijeljeno", "Registered users only" : "Samo registrirani korisnici", - "Hidden form" : "Skriven obrazac", - "Text form" : "Tekstualni obrazac", + "Hidden form" : "Skriveni obrazac", + "Text form" : "Tekst obrasca", "never" : "nikad", "Link copied to clipboard" : "Poveznica je kopirana u međuspremnik", "Error, while copying link to clipboard" : "Pogreška tijekom kopiranja poveznice u međuspremnik", @@ -30,7 +30,7 @@ "Share with" : "Dijeli s", "Form description" : "Opis obrasca", "Description" : "Opis", - "Make a Form" : "Kreiraj obrazac", + "Make a Form" : "Izradi obrazac", "Add Question" : "Dodaj pitanje", "You are editing in admin mode" : "Uređujete u načinu rada administratora", "Configuration" : "Konfiguracija", @@ -40,30 +40,30 @@ "Name of user or group" : "Ime korisnika ili grupe", "Create new form" : "Stvori novi obrazac", "Writing form" : "Pisanje obrasca", - "Update form" : "Ažuriranje obrasca", + "Update form" : "Ažuriraj obrazac", "Done" : "Gotovo", "Expiration date" : "Datum isteka", "Click to add a date" : "Klikni za dodavanje datuma", - "Select a question type!" : "Odaberi vrstu pitanja!", - "Cannot have the same question!" : "Ne može biti isto pitanje!", - "Two answers cannot be the same!" : "Ne mogu biti dva ista odgovora!", + "Select a question type!" : "Odaberite vrstu pitanja!", + "Cannot have the same question!" : "Ne možete imati isto pitanje!", + "Two answers cannot be the same!" : "Ne mogu postojati dva ista odgovora!", "Title must not be empty!" : "Naslov ne smije biti prazan!", - "Must have at least one question!" : "Mora biti barem jedno pitanje!", - "All questions need answers!" : "Sva pitanja zahtijevaju odgovore!", - "Need to pick an expiration date!" : "Mora se postaviti datum isteka!", + "Must have at least one question!" : "Mora postojati barem jedno pitanje!", + "All questions need answers!" : "Potrebno je odgovoriti na sva pitanja!", + "Need to pick an expiration date!" : "Odaberite datum isteka!", "%n successfully saved" : "%n uspješno spremljenih", "Error on saving form, see console" : "Pogreška pri spremanju obrasca, pogledajte konzolu", "Clone of %n" : "Klon %n", "New" : "Novo", - "Click here to add a form" : "Klikni ovdje za dodavanje obrasca", + "Click here to add a form" : "Kliknite ovdje za dodavanje obrasca", "Delete form" : "Izbriši obrazac", "Do you want to delete \"%n\"?" : "Želite li izbrisati „%n”?", "No, keep form." : "Ne, zadrži obrazac.", "Yes, delete form." : "Da, izbriši obrazac.", - "Form \"%n\" deleted" : "Obrazac „%n” izbrisan", - "Error while deleting Form \"%n\"" : "Pogreška pri brisanju obrasca „%n”", - "Form Expired" : "Obrazac istekao", - "This Form has expired and is no longer taking answers." : "Obrazac je istekao i ne prima više odgovore.", + "Form \"%n\" deleted" : "Obrazac „%n” je izbrisan", + "Error while deleting Form \"%n\"" : "Pogreška pri brisanju obrasca „%n“", + "Form Expired" : "Obrazac je istekao", + "This Form has expired and is no longer taking answers." : "Ovaj je obrazac istekao i nije moguće unositi odgovore.", "Access denied" : "Pristup odbijen", "You are not allowed to view this form or the form does not exist." : "Nije vam dopušteno pregledavati ovaj obrazac ili obrazac ne postoji.", "You are not allowed to edit this form or the form does not exist." : "Nije vam dopušteno uređivati ovaj obrazac ili obrazac ne postoji.", diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js new file mode 100644 index 0000000..d832ef5 --- /dev/null +++ b/l10n/lt_LT.js @@ -0,0 +1,9 @@ +OC.L10N.register( + "forms", + { + "Link copied to clipboard" : "Nuoroda nukopijuota į iškarpinę", + "Error, while copying link to clipboard" : "Klaida kopijuojant nuorodą į iškarpinę", + "Description" : "Aprašas", + "Access denied" : "Prieiga negalima" +}, +"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 new file mode 100644 index 0000000..dfe36a7 --- /dev/null +++ b/l10n/lt_LT.json @@ -0,0 +1,7 @@ +{ "translations": { + "Link copied to clipboard" : "Nuoroda nukopijuota į iškarpinę", + "Error, while copying link to clipboard" : "Klaida kopijuojant nuorodą į iškarpinę", + "Description" : "Aprašas", + "Access denied" : "Prieiga negalima" +},"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 6cd6d9c2fe51d9eff718ea69823762f858e85803 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 26 Sep 2019 02:59:10 +0000 Subject: [PATCH 016/109] [tx-robot] updated from transifex --- l10n/es.js | 1 + l10n/es.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/es.js b/l10n/es.js index dca4d2b..4815352 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Propietario", "Created" : "Creado", "Expires" : "Expira", + "View results" : "Ver resultados", "Public access" : "Acceso público", "Only shared" : "Solo compartido", "Registered users only" : "Solo usuarios registrados", diff --git a/l10n/es.json b/l10n/es.json index f19bf44..47db4a5 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -18,6 +18,7 @@ "Owner" : "Propietario", "Created" : "Creado", "Expires" : "Expira", + "View results" : "Ver resultados", "Public access" : "Acceso público", "Only shared" : "Solo compartido", "Registered users only" : "Solo usuarios registrados", From dafafaf633ec405e1c0692de4a764313a69c9c85 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 28 Sep 2019 02:59:54 +0000 Subject: [PATCH 017/109] [tx-robot] updated from transifex --- l10n/cs.js | 1 + l10n/cs.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/cs.js b/l10n/cs.js index 0e9dbe8..f5efaf4 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -17,6 +17,7 @@ OC.L10N.register( "Owner" : "Vlastník", "Created" : "Vytvořeno", "Expires" : "Platnost končí", + "View results" : "Zobrazit výsledky", "Public access" : "Veřejný přístup", "Only shared" : "Pouze sdílené", "Registered users only" : "Pouze registrovaní uživatelé", diff --git a/l10n/cs.json b/l10n/cs.json index 8adda7b..d2178a9 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -15,6 +15,7 @@ "Owner" : "Vlastník", "Created" : "Vytvořeno", "Expires" : "Platnost končí", + "View results" : "Zobrazit výsledky", "Public access" : "Veřejný přístup", "Only shared" : "Pouze sdílené", "Registered users only" : "Pouze registrovaní uživatelé", From c383db242f5432730ff86c82197c72eee54fcd85 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:59 +0000 Subject: [PATCH 018/109] Bump @babel/preset-env from 7.6.0 to 7.6.2 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] --- package-lock.json | 88 ++++++++++++++++++++++------------------------- package.json | 2 +- 2 files changed, 42 insertions(+), 48 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1110d6a..d948ab9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -450,9 +450,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", @@ -470,14 +470,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": { @@ -555,9 +555,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", @@ -599,14 +599,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": { @@ -710,12 +710,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": { @@ -785,9 +785,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" @@ -823,14 +823,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": { @@ -843,9 +843,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", @@ -853,9 +853,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", @@ -864,11 +864,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", @@ -879,7 +879,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", @@ -887,11 +887,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", @@ -6757,9 +6757,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" @@ -8282,12 +8282,6 @@ "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 - }, "regexpp": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", @@ -8295,9 +8289,9 @@ "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/package.json b/package.json index 164238a..f391faa 100644 --- a/package.json +++ b/package.json @@ -86,7 +86,7 @@ "devDependencies": { "@babel/core": "^7.6.0", "@babel/plugin-syntax-dynamic-import": "^7.2.0", - "@babel/preset-env": "^7.6.0", + "@babel/preset-env": "^7.6.2", "babel-eslint": "^10.0.1", "babel-loader": "^8.0.4", "browserslist-config-nextcloud": "0.0.1", From 99a061dd9f68e363cce7a14df920451eb9d62430 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:48 +0000 Subject: [PATCH 019/109] Bump webpack from 4.40.2 to 4.41.0 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] --- package-lock.json | 24 ++++++++++++------------ package.json | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1110d6a..cb9d57b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2153,9 +2153,9 @@ "dev": true }, "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.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.0.tgz", + "integrity": "sha512-6gpP93MR+VOOehKbCPchro3wFZNSNmek8A2kbkOAZLIZAYx1KP/zAqwO0sOHi3xJEb+UBz8NaYt/17UNit1Q9w==", "dev": true } } @@ -2399,9 +2399,9 @@ } }, "chownr": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.2.tgz", - "integrity": "sha512-GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.3.tgz", + "integrity": "sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw==", "dev": true }, "chrome-trace-event": { @@ -9953,9 +9953,9 @@ } }, "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", @@ -10710,9 +10710,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/package.json b/package.json index 164238a..22d0560 100644 --- a/package.json +++ b/package.json @@ -111,7 +111,7 @@ "vue-loader": "^15.7.1", "vue-style-loader": "^4.1.1", "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 3118df91b2de89816ffdd25c8eb9912f8828fe01 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:15:24 +0000 Subject: [PATCH 020/109] Bump @babel/core from 7.6.0 to 7.6.2 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] --- package-lock.json | 72 +++++++++++++++++++++++------------------------ package.json | 2 +- 2 files changed, 36 insertions(+), 38 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1110d6a..93719db 100644 --- a/package-lock.json +++ b/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", @@ -36,22 +36,21 @@ }, "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": { @@ -66,16 +65,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", @@ -316,33 +315,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": { @@ -357,16 +355,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/package.json b/package.json index 164238a..75a90a8 100644 --- a/package.json +++ b/package.json @@ -84,7 +84,7 @@ "node": ">=10.0.0" }, "devDependencies": { - "@babel/core": "^7.6.0", + "@babel/core": "^7.6.2", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/preset-env": "^7.6.0", "babel-eslint": "^10.0.1", From e5d3149b69b347c5c17efbcc51ae46cc2b3b210d 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:16:01 +0000 Subject: [PATCH 021/109] Bump eslint-loader from 3.0.0 to 3.0.2 Bumps [eslint-loader](https://github.com/webpack-contrib/eslint-loader) from 3.0.0 to 3.0.2. - [Release notes](https://github.com/webpack-contrib/eslint-loader/releases) - [Changelog](https://github.com/webpack-contrib/eslint-loader/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/eslint-loader/compare/v3.0.0...v3.0.2) Signed-off-by: dependabot-preview[bot] --- package-lock.json | 35 +++++++++++++++++++++++++++++++---- package.json | 2 +- 2 files changed, 32 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1110d6a..a079baf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3366,15 +3366,16 @@ } }, "eslint-loader": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-3.0.0.tgz", - "integrity": "sha512-rdxyQ0i9VlhwVlR6oEzrIft8WNKYSD2/cOAJ1YVH/F76gAta7Zv1Dr5xJOUyx0fAsHB5cKNz9hwlUVLMFsQlPA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-3.0.2.tgz", + "integrity": "sha512-S5VnD+UpVY1PyYRqeBd/4pgsmkvSokbHqTXAQMpvCyRr3XN2tvSLo9spm2nEpqQqh9dezw3os/0zWihLeOg2Rw==", "dev": true, "requires": { + "fs-extra": "^8.1.0", "loader-fs-cache": "^1.0.2", "loader-utils": "^1.2.3", "object-hash": "^1.3.1", - "schema-utils": "^2.1.0" + "schema-utils": "^2.2.0" } }, "eslint-module-utils": { @@ -4263,6 +4264,17 @@ "readable-stream": "^2.0.0" } }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, "fs-write-stream-atomic": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", @@ -5946,6 +5958,15 @@ "minimist": "^1.2.0" } }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, "jsonparse": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", @@ -10373,6 +10394,12 @@ "unist-util-is": "^3.0.0" } }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + }, "unset-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", diff --git a/package.json b/package.json index 164238a..98e7dc3 100644 --- a/package.json +++ b/package.json @@ -94,7 +94,7 @@ "eslint": "^5.16.0", "eslint-config-standard": "^12.0.0", "eslint-import-resolver-webpack": "^0.11.1", - "eslint-loader": "^3.0.0", + "eslint-loader": "^3.0.2", "eslint-plugin-import": "^2.18.2", "eslint-plugin-nextcloud": "^0.3.0", "eslint-plugin-node": "^10.0.0", From 4dcfc54fc1f06889d9645e451e4438a885b8cf37 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 29 Sep 2019 03:11:49 +0000 Subject: [PATCH 022/109] [tx-robot] updated from transifex --- l10n/zh_CN.js | 1 + l10n/zh_CN.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 68924e6..a4c7182 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "所有者", "Created" : "已创建", "Expires" : "过期", + "View results" : "查看结果", "Public access" : "公开访问", "Only shared" : "只共享给特定用户或分组", "Registered users only" : "只允许注册用户", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index a765e19..6d78a80 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -18,6 +18,7 @@ "Owner" : "所有者", "Created" : "已创建", "Expires" : "过期", + "View results" : "查看结果", "Public access" : "公开访问", "Only shared" : "只共享给特定用户或分组", "Registered users only" : "只允许注册用户", From 2ae4644724f77e9772e6d0b8db74136cfabae331 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 1 Oct 2019 03:11:32 +0000 Subject: [PATCH 023/109] [tx-robot] updated from transifex --- l10n/ca.js | 1 + l10n/ca.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/ca.js b/l10n/ca.js index 883b3ad..e90d469 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Propietari", "Created" : "Creat", "Expires" : "Venç", + "View results" : "Mostra els resultats", "Public access" : "Accés públic", "Only shared" : "Només compartit", "Registered users only" : "Només usuaris registrats", diff --git a/l10n/ca.json b/l10n/ca.json index 21372e4..dc6144f 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -18,6 +18,7 @@ "Owner" : "Propietari", "Created" : "Creat", "Expires" : "Venç", + "View results" : "Mostra els resultats", "Public access" : "Accés públic", "Only shared" : "Només compartit", "Registered users only" : "Només usuaris registrats", From bed7ee7e4e3c88628ea5ad3dc40befd930912d3c Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 2 Oct 2019 03:01:57 +0000 Subject: [PATCH 024/109] [tx-robot] updated from transifex --- l10n/sl.js | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++ l10n/sl.json | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 118 insertions(+) create mode 100644 l10n/sl.js create mode 100644 l10n/sl.json diff --git a/l10n/sl.js b/l10n/sl.js new file mode 100644 index 0000000..1954ccd --- /dev/null +++ b/l10n/sl.js @@ -0,0 +1,60 @@ +OC.L10N.register( + "forms", + { + "Do you really want to delete this new form?" : "Ali ste prepričani, da želite izbrisati ta vprašalnik?", + "Forms" : "Vprašalniki", + "Expired" : "Poteklo", + "Group" : "Skupina", + "Title" : "Naslov", + "Access" : "Dostop", + "Owner" : "Lastnik", + "Created" : "Ustvarjeno", + "Expires" : "Poteče", + "View results" : "Rezultati", + "Public access" : "Javni dostop", + "Only shared" : "Le objavljeno", + "Registered users only" : "Le prijavljeni uporabniki", + "Hidden form" : "Skrita anketa", + "Text form" : "Besedilna anketa", + "never" : "nikoli", + "Link copied to clipboard" : "Povezava je kopirana v odložišče", + "Error, while copying link to clipboard" : "Prišlo je do napake med kopiranjem povezave v odložišče", + "Add Answer" : "Dodaj odgovor", + "Share with" : "Omogoči souporabo", + "Form description" : "Opis vprašalnika", + "Description" : "Opis", + "Make a Form" : "Ustvari vprašalnik", + "Add Question" : "Dodaj vprašanje", + "You are editing in admin mode" : "Urejanje poteka v skrbniškem načinu", + "Configuration" : "Nastavitve", + "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Nastavitve so zaklenjene. Spreminjanje možnosti lahko vpliva na nepričakovano delovanje ankete, seveda pa lahko to vseeno storite!", + "Unlock configuration " : "Odkleni nastavitve", + "Form configurations" : "Nastavitve vprašalnika", + "Name of user or group" : "Ime uporabnika oziroma skupine", + "Create new form" : "Ustvari nov vprašalnik", + "Writing form" : "Zapisovanje vprašalnika", + "Update form" : "Posodobi vprašalnik", + "Done" : "Končano", + "Expiration date" : "Datum preteka", + "Click to add a date" : "Kliknite za dodajanje datuma", + "Select a question type!" : "Izbor vrste vprašanja", + "Cannot have the same question!" : "Ni mogoče vpisati enakega vprašanja!", + "Two answers cannot be the same!" : "Dva odgovora ne smeta biti enaka!", + "Title must not be empty!" : "Polje naslova ne sme biti prazno!", + "Must have at least one question!" : "Vpisati je treba vsaj eno vprašanje!", + "All questions need answers!" : "Vsa vprašanja zahtevajo odziv!", + "New" : "Novo", + "Click here to add a form" : "Kliknite za dodajanje novega vprašalnika", + "Delete form" : "Izbriši vprašalnik", + "Do you want to delete \"%n\"?" : "Ali res želite izbrisati vprašalnik » %n «", + "No, keep form." : "Ne, ohrani vprašalnik", + "Yes, delete form." : "Da, izbriši vprašalnik", + "Form \"%n\" deleted" : "Vprašalnik » %n « je izbrisan", + "Error while deleting Form \"%n\"" : "Prišlo je do napake med brisanjem vprašalnika » %n «", + "Form Expired" : "Vprašalnik je potekel", + "Access denied" : "Dostop je zavrnjen", + "You are not allowed to view this form or the form does not exist." : "Za ogled tega vprašalnika nimate ustreznih dovoljen, ali pa ta ne obstaja.", + "You are not allowed to edit this form or the form does not exist." : "Za urejanje tega vprašalnika nimate ustreznih dovoljen, ali pa ta ne obstaja.", + "You are either not allowed to delete this form or it doesn't exist." : "Za brisanje tega vprašalnika nimate ustreznih dovoljen, ali pa ta ne obstaja." +}, +"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 new file mode 100644 index 0000000..113af69 --- /dev/null +++ b/l10n/sl.json @@ -0,0 +1,58 @@ +{ "translations": { + "Do you really want to delete this new form?" : "Ali ste prepričani, da želite izbrisati ta vprašalnik?", + "Forms" : "Vprašalniki", + "Expired" : "Poteklo", + "Group" : "Skupina", + "Title" : "Naslov", + "Access" : "Dostop", + "Owner" : "Lastnik", + "Created" : "Ustvarjeno", + "Expires" : "Poteče", + "View results" : "Rezultati", + "Public access" : "Javni dostop", + "Only shared" : "Le objavljeno", + "Registered users only" : "Le prijavljeni uporabniki", + "Hidden form" : "Skrita anketa", + "Text form" : "Besedilna anketa", + "never" : "nikoli", + "Link copied to clipboard" : "Povezava je kopirana v odložišče", + "Error, while copying link to clipboard" : "Prišlo je do napake med kopiranjem povezave v odložišče", + "Add Answer" : "Dodaj odgovor", + "Share with" : "Omogoči souporabo", + "Form description" : "Opis vprašalnika", + "Description" : "Opis", + "Make a Form" : "Ustvari vprašalnik", + "Add Question" : "Dodaj vprašanje", + "You are editing in admin mode" : "Urejanje poteka v skrbniškem načinu", + "Configuration" : "Nastavitve", + "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Nastavitve so zaklenjene. Spreminjanje možnosti lahko vpliva na nepričakovano delovanje ankete, seveda pa lahko to vseeno storite!", + "Unlock configuration " : "Odkleni nastavitve", + "Form configurations" : "Nastavitve vprašalnika", + "Name of user or group" : "Ime uporabnika oziroma skupine", + "Create new form" : "Ustvari nov vprašalnik", + "Writing form" : "Zapisovanje vprašalnika", + "Update form" : "Posodobi vprašalnik", + "Done" : "Končano", + "Expiration date" : "Datum preteka", + "Click to add a date" : "Kliknite za dodajanje datuma", + "Select a question type!" : "Izbor vrste vprašanja", + "Cannot have the same question!" : "Ni mogoče vpisati enakega vprašanja!", + "Two answers cannot be the same!" : "Dva odgovora ne smeta biti enaka!", + "Title must not be empty!" : "Polje naslova ne sme biti prazno!", + "Must have at least one question!" : "Vpisati je treba vsaj eno vprašanje!", + "All questions need answers!" : "Vsa vprašanja zahtevajo odziv!", + "New" : "Novo", + "Click here to add a form" : "Kliknite za dodajanje novega vprašalnika", + "Delete form" : "Izbriši vprašalnik", + "Do you want to delete \"%n\"?" : "Ali res želite izbrisati vprašalnik » %n «", + "No, keep form." : "Ne, ohrani vprašalnik", + "Yes, delete form." : "Da, izbriši vprašalnik", + "Form \"%n\" deleted" : "Vprašalnik » %n « je izbrisan", + "Error while deleting Form \"%n\"" : "Prišlo je do napake med brisanjem vprašalnika » %n «", + "Form Expired" : "Vprašalnik je potekel", + "Access denied" : "Dostop je zavrnjen", + "You are not allowed to view this form or the form does not exist." : "Za ogled tega vprašalnika nimate ustreznih dovoljen, ali pa ta ne obstaja.", + "You are not allowed to edit this form or the form does not exist." : "Za urejanje tega vprašalnika nimate ustreznih dovoljen, ali pa ta ne obstaja.", + "You are either not allowed to delete this form or it doesn't exist." : "Za brisanje tega vprašalnika nimate ustreznih dovoljen, ali pa ta ne obstaja." +},"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 d29d596db09f9c4c64569d6242402c41b1eb006c Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 4 Oct 2019 03:01:45 +0000 Subject: [PATCH 025/109] [tx-robot] updated from transifex --- l10n/sr.js | 1 + l10n/sr.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/sr.js b/l10n/sr.js index 3ef88ad..7d49019 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Власник", "Created" : "Направљен", "Expires" : "Истиче", + "View results" : "Види резултате", "Public access" : "Јавни приступ", "Only shared" : "Само дељено", "Registered users only" : "Само регистровани корисници", diff --git a/l10n/sr.json b/l10n/sr.json index 6795a51..2e7b9ce 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -18,6 +18,7 @@ "Owner" : "Власник", "Created" : "Направљен", "Expires" : "Истиче", + "View results" : "Види резултате", "Public access" : "Јавни приступ", "Only shared" : "Само дељено", "Registered users only" : "Само регистровани корисници", From 35b9a564401189c1068db1c546113a630eb02a65 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 5 Oct 2019 03:00:02 +0000 Subject: [PATCH 026/109] [tx-robot] updated from transifex --- l10n/nl.js | 1 + l10n/nl.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/nl.js b/l10n/nl.js index c9452f5..7a40227 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Eigenaar", "Created" : "Gemaakt", "Expires" : "Verloopt", + "View results" : "Bekijk resultaten", "Public access" : "Openbare toegang", "Only shared" : "Alleen gedeeld", "Registered users only" : "Alleen geregistreerde gebruikers", diff --git a/l10n/nl.json b/l10n/nl.json index 7567133..d59a396 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -18,6 +18,7 @@ "Owner" : "Eigenaar", "Created" : "Gemaakt", "Expires" : "Verloopt", + "View results" : "Bekijk resultaten", "Public access" : "Openbare toegang", "Only shared" : "Alleen gedeeld", "Registered users only" : "Alleen geregistreerde gebruikers", From a37ae59ebbf3437e99df2cb662ffb6f76b23871b Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 11 Oct 2019 02:58:13 +0000 Subject: [PATCH 027/109] [tx-robot] updated from transifex --- l10n/pl.js | 4 ++-- l10n/pl.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/l10n/pl.js b/l10n/pl.js index bbf3e12..0bdfa17 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -27,8 +27,8 @@ OC.L10N.register( "Hidden form" : "Niewidoczny formularz", "Text form" : "Formularz tekstowy", "never" : "nigdy", - "Link copied to clipboard" : "Odnośnik skopiowany do schowka", - "Error, while copying link to clipboard" : "Błąd podczas kopiowania odnośnika do schowka", + "Link copied to clipboard" : "Link skopiowany do schowka", + "Error, while copying link to clipboard" : "Błąd podczas kopiowania linku do schowka", "Add Answer" : "Dodaj odpowiedź", "Share with" : "Udostępnij dla", "Form description" : "Opis formularza", diff --git a/l10n/pl.json b/l10n/pl.json index 937af7f..aa6aafc 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -25,8 +25,8 @@ "Hidden form" : "Niewidoczny formularz", "Text form" : "Formularz tekstowy", "never" : "nigdy", - "Link copied to clipboard" : "Odnośnik skopiowany do schowka", - "Error, while copying link to clipboard" : "Błąd podczas kopiowania odnośnika do schowka", + "Link copied to clipboard" : "Link skopiowany do schowka", + "Error, while copying link to clipboard" : "Błąd podczas kopiowania linku do schowka", "Add Answer" : "Dodaj odpowiedź", "Share with" : "Udostępnij dla", "Form description" : "Opis formularza", From a8ff99314918948ff84d89decac20e9ca13bcddf Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 13 Oct 2019 01:14:39 +0000 Subject: [PATCH 028/109] Bump @babel/core from 7.6.2 to 7.6.4 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] --- package-lock.json | 84 +++++++++++++++++++++++------------------------ package.json | 2 +- 2 files changed, 43 insertions(+), 43 deletions(-) diff --git a/package-lock.json b/package-lock.json index 628ef3f..9990f6d 100644 --- a/package-lock.json +++ b/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", @@ -36,21 +36,21 @@ }, "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==", + "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": { @@ -65,26 +65,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", @@ -326,21 +326,21 @@ }, "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==", + "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": { @@ -355,26 +355,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", @@ -5948,9 +5948,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" diff --git a/package.json b/package.json index b585a7b..c6bb6e8 100644 --- a/package.json +++ b/package.json @@ -84,7 +84,7 @@ "node": ">=10.0.0" }, "devDependencies": { - "@babel/core": "^7.6.2", + "@babel/core": "^7.6.4", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/preset-env": "^7.6.2", "babel-eslint": "^10.0.1", From e4fb8930b74ed5d51b8f4d97381350080956d650 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 13 Oct 2019 01:15:15 +0000 Subject: [PATCH 029/109] Bump webpack from 4.41.0 to 4.41.1 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] --- package-lock.json | 38 +++++++++++++++++++++++++------------- package.json | 2 +- 2 files changed, 26 insertions(+), 14 deletions(-) diff --git a/package-lock.json b/package-lock.json index 628ef3f..4d1b3a5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2151,9 +2151,9 @@ "dev": true }, "yallist": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.0.tgz", - "integrity": "sha512-6gpP93MR+VOOehKbCPchro3wFZNSNmek8A2kbkOAZLIZAYx1KP/zAqwO0sOHi3xJEb+UBz8NaYt/17UNit1Q9w==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true } } @@ -9966,9 +9966,9 @@ } }, "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", @@ -10729,9 +10729,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", @@ -10810,14 +10810,26 @@ } }, "enhanced-resolve": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz", - "integrity": "sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz", + "integrity": "sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA==", "dev": true, "requires": { "graceful-fs": "^4.1.2", - "memory-fs": "^0.4.0", + "memory-fs": "^0.5.0", "tapable": "^1.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + } } }, "expand-brackets": { diff --git a/package.json b/package.json index b585a7b..6221f43 100644 --- a/package.json +++ b/package.json @@ -111,7 +111,7 @@ "vue-loader": "^15.7.1", "vue-style-loader": "^4.1.1", "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 0b1ecf46707565bfcc3ba5276dde78314bcae08d Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 13 Oct 2019 01:16:19 +0000 Subject: [PATCH 030/109] Bump json2csv from 4.5.3 to 4.5.4 Bumps [json2csv](https://github.com/zemirco/json2csv) from 4.5.3 to 4.5.4. - [Release notes](https://github.com/zemirco/json2csv/releases) - [Changelog](https://github.com/zemirco/json2csv/blob/master/CHANGELOG.md) - [Commits](https://github.com/zemirco/json2csv/commits) Signed-off-by: dependabot-preview[bot] --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 628ef3f..0a204bc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5938,9 +5938,9 @@ "dev": true }, "json2csv": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/json2csv/-/json2csv-4.5.3.tgz", - "integrity": "sha512-tg5sm25TOwgMsPUixPFmmuOUFtVCj4p57XipoE8gi/ejNftce/0d8LBgWnCkjF4HsLDsFzszdbIEV6mnK0WfNg==", + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/json2csv/-/json2csv-4.5.4.tgz", + "integrity": "sha512-YxBhY4Lmn8IvVZ36nqg5omxneLy9JlorkqW1j/EDCeqvmi+CQ4uM+wsvXlcIqvGDewIPXMC/O/oF8DX9EH5aoA==", "requires": { "commander": "^2.15.1", "jsonparse": "^1.3.1", diff --git a/package.json b/package.json index b585a7b..1ca9b02 100644 --- a/package.json +++ b/package.json @@ -69,7 +69,7 @@ "test:coverage": "jest --coverage" }, "dependencies": { - "json2csv": "4.5.3", + "json2csv": "4.5.4", "moment": "^2.23.0", "nextcloud-axios": "^0.2.1", "nextcloud-vue": "^0.12.3", From 4c49fb73d4880ab003bacba2e3c924aabcf13264 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 13 Oct 2019 01:18:49 +0000 Subject: [PATCH 031/109] Bump @babel/preset-env from 7.6.2 to 7.6.3 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] --- package-lock.json | 46 +++++++++++++++++++++++++++------------------- package.json | 2 +- 2 files changed, 28 insertions(+), 20 deletions(-) diff --git a/package-lock.json b/package-lock.json index 628ef3f..8e782a2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -553,9 +553,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", @@ -708,9 +708,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" @@ -841,9 +841,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", @@ -862,7 +862,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", @@ -877,7 +877,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", @@ -890,7 +890,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", @@ -899,9 +899,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", @@ -6776,12 +6776,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 + } } }, "node-sass": { diff --git a/package.json b/package.json index b585a7b..4bb78b8 100644 --- a/package.json +++ b/package.json @@ -86,7 +86,7 @@ "devDependencies": { "@babel/core": "^7.6.2", "@babel/plugin-syntax-dynamic-import": "^7.2.0", - "@babel/preset-env": "^7.6.2", + "@babel/preset-env": "^7.6.3", "babel-eslint": "^10.0.1", "babel-loader": "^8.0.4", "browserslist-config-nextcloud": "0.0.1", From 364f3c46321d36ac75b4525a9e34f825cc7db273 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 13 Oct 2019 01:19:36 +0000 Subject: [PATCH 032/109] Bump nextcloud-vue from 0.12.3 to 0.12.6 Bumps [nextcloud-vue](https://github.com/nextcloud/nextcloud-vue) from 0.12.3 to 0.12.6. - [Release notes](https://github.com/nextcloud/nextcloud-vue/releases) - [Commits](https://github.com/nextcloud/nextcloud-vue/compare/v0.12.3...v0.12.6) Signed-off-by: dependabot-preview[bot] --- package-lock.json | 12 ++++++------ package.json | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index 628ef3f..5ab9c71 100644 --- a/package-lock.json +++ b/package-lock.json @@ -832,9 +832,9 @@ } }, "@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" @@ -6685,9 +6685,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.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/package.json b/package.json index b585a7b..5984f56 100644 --- a/package.json +++ b/package.json @@ -72,7 +72,7 @@ "json2csv": "4.5.3", "moment": "^2.23.0", "nextcloud-axios": "^0.2.1", - "nextcloud-vue": "^0.12.3", + "nextcloud-vue": "^0.12.6", "vue": "^2.6.10", "vue-clipboard2": "^0.3.1", "vue-router": "^3.1.3" From 16c1e4bfd4281730eda3f733d165c91898bd6a18 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 13 Oct 2019 03:02:04 +0000 Subject: [PATCH 033/109] [tx-robot] updated from transifex --- l10n/ru.js | 39 ++++++++++++++++++++------------------- l10n/ru.json | 39 ++++++++++++++++++++------------------- 2 files changed, 40 insertions(+), 38 deletions(-) diff --git a/l10n/ru.js b/l10n/ru.js index 0b08632..4ceaa62 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -1,10 +1,10 @@ OC.L10N.register( "forms", { - "Do you really want to delete this new form?" : "Вы точно уверены, что хотите удалить эту форму?", + "Do you really want to delete this new form?" : "Действительно удалить эту форму?", "Forms" : "Формы", - "Forms App - New Activity" : "Приложение Формы — Новые события", - "{user} participated in the form \"{title}\"" : "{user} поучавствовал в форме \"{title}\"", + "Forms App - New Activity" : "Приложение Формы — Новые события", + "{user} participated in the form \"{title}\"" : "{user} принял(а) участие в форме «{title}»", "Go to form" : "Перейти к форме", "A forms app, similar to Google Forms." : "Приложени форм, похожее на Google Forms.", "A forms app, similar to Google Forms with the possibility to restrict access (members, certain groups/users, and public)." : "Приложение форм, похожее на Google Forms с возможностью ограничения доступа.", @@ -20,6 +20,7 @@ OC.L10N.register( "Owner" : "Владелец", "Created" : "Создана", "Expires" : "Заканивается", + "View results" : "Просмотр результатов", "Public access" : "Общедоступная", "Only shared" : "Только по приглашению", "Registered users only" : "Только для зарегистрированных пользователей", @@ -28,30 +29,30 @@ OC.L10N.register( "never" : "никогда", "Link copied to clipboard" : "Ссылка скопирована в буфер обмена", "Error, while copying link to clipboard" : "Ошибка при копировании ссылки в буфер обмена", - "Add Answer" : "Добавить Ответ", + "Add Answer" : "Добавить вариант ответа", "Share with" : "Поделиться с", "Form description" : "Описание формы", "Description" : "Описание", - "Make a Form" : "Создать Форму", - "Add Question" : "Добавить Вопрос", + "Make a Form" : "Создать форму", + "Add Question" : "Добавить вопрос", "You are editing in admin mode" : "Вы вносите изменения в режиме администратора", - "Configuration" : "Настройка", - "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Настройка заблокирована. Вы можете её разблокировать, но смена опций может привести к нежелательному поведению.", - "Unlock configuration " : "Разблокировать настройку", - "Form configurations" : "Настройки форм", + "Configuration" : "Конфигурация", + "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Конфигурация заблокирована. Её возможно разблокировать, но изменение параметров может привести к нежелательному поведению.", + "Unlock configuration " : "Разблокировать конфигурацию", + "Form configurations" : "Конфигурация форм", "Name of user or group" : "Имя пользователя или группы", "Create new form" : "Создать новую форму", "Update form" : "Обновить форму", "Done" : "Готово", "Expiration date" : "Дата окончания", "Click to add a date" : "Нажмите, чтобы добавить дату", - "Select a question type!" : "Выберите тип вопроса", - "Cannot have the same question!" : "Нельзя добавлять одинаковые вопросы!", - "Two answers cannot be the same!" : "Два ответа не могут быть одинаковыми!", - "Title must not be empty!" : "Заголовок не может быть пустым!", - "Must have at least one question!" : "Должен быть хотя бы один вопрос!", - "All questions need answers!" : "Все вопросы должны быть с ответом!", - "Need to pick an expiration date!" : "Необходимо выбрать дату окончания!", + "Select a question type!" : "Необходимо выбрать тип вопроса.", + "Cannot have the same question!" : "Нельзя добавлять одинаковые вопросы.", + "Two answers cannot be the same!" : "Два ответа не могут быть одинаковыми.", + "Title must not be empty!" : "Заголовок не может быть пустым.", + "Must have at least one question!" : "Должен быть хотя бы один вопрос.", + "All questions need answers!" : "Все вопросы должны быть с ответом.", + "Need to pick an expiration date!" : "Необходимо выбрать дату окончания.", "%n successfully saved" : "%n успешно сохранена", "Error on saving form, see console" : "Ошибка при сохранении формы, проверьте консоль", "Clone of %n" : "Копия %n", @@ -61,8 +62,8 @@ OC.L10N.register( "Do you want to delete \"%n\"?" : "Удалить \"%n\"?", "No, keep form." : "Нет, оставить форму.", "Yes, delete form." : "Да, удалить форму.", - "Form \"%n\" deleted" : "Форма \"%n\" удалена", - "Error while deleting Form \"%n\"" : "Ошибка при удалении формы \"%n\"", + "Form \"%n\" deleted" : "Форма «%n» удалена", + "Error while deleting Form \"%n\"" : "Ошибка при удалении формы «%n»", "Form Expired" : "Форма закончилась", "This Form has expired and is no longer taking answers." : "Эта форма закончилась и ответы больше не принимаются.", "Access denied" : "Доступ запрещён", diff --git a/l10n/ru.json b/l10n/ru.json index 8f1e7a3..202f4e1 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -1,8 +1,8 @@ { "translations": { - "Do you really want to delete this new form?" : "Вы точно уверены, что хотите удалить эту форму?", + "Do you really want to delete this new form?" : "Действительно удалить эту форму?", "Forms" : "Формы", - "Forms App - New Activity" : "Приложение Формы — Новые события", - "{user} participated in the form \"{title}\"" : "{user} поучавствовал в форме \"{title}\"", + "Forms App - New Activity" : "Приложение Формы — Новые события", + "{user} participated in the form \"{title}\"" : "{user} принял(а) участие в форме «{title}»", "Go to form" : "Перейти к форме", "A forms app, similar to Google Forms." : "Приложени форм, похожее на Google Forms.", "A forms app, similar to Google Forms with the possibility to restrict access (members, certain groups/users, and public)." : "Приложение форм, похожее на Google Forms с возможностью ограничения доступа.", @@ -18,6 +18,7 @@ "Owner" : "Владелец", "Created" : "Создана", "Expires" : "Заканивается", + "View results" : "Просмотр результатов", "Public access" : "Общедоступная", "Only shared" : "Только по приглашению", "Registered users only" : "Только для зарегистрированных пользователей", @@ -26,30 +27,30 @@ "never" : "никогда", "Link copied to clipboard" : "Ссылка скопирована в буфер обмена", "Error, while copying link to clipboard" : "Ошибка при копировании ссылки в буфер обмена", - "Add Answer" : "Добавить Ответ", + "Add Answer" : "Добавить вариант ответа", "Share with" : "Поделиться с", "Form description" : "Описание формы", "Description" : "Описание", - "Make a Form" : "Создать Форму", - "Add Question" : "Добавить Вопрос", + "Make a Form" : "Создать форму", + "Add Question" : "Добавить вопрос", "You are editing in admin mode" : "Вы вносите изменения в режиме администратора", - "Configuration" : "Настройка", - "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Настройка заблокирована. Вы можете её разблокировать, но смена опций может привести к нежелательному поведению.", - "Unlock configuration " : "Разблокировать настройку", - "Form configurations" : "Настройки форм", + "Configuration" : "Конфигурация", + "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Конфигурация заблокирована. Её возможно разблокировать, но изменение параметров может привести к нежелательному поведению.", + "Unlock configuration " : "Разблокировать конфигурацию", + "Form configurations" : "Конфигурация форм", "Name of user or group" : "Имя пользователя или группы", "Create new form" : "Создать новую форму", "Update form" : "Обновить форму", "Done" : "Готово", "Expiration date" : "Дата окончания", "Click to add a date" : "Нажмите, чтобы добавить дату", - "Select a question type!" : "Выберите тип вопроса", - "Cannot have the same question!" : "Нельзя добавлять одинаковые вопросы!", - "Two answers cannot be the same!" : "Два ответа не могут быть одинаковыми!", - "Title must not be empty!" : "Заголовок не может быть пустым!", - "Must have at least one question!" : "Должен быть хотя бы один вопрос!", - "All questions need answers!" : "Все вопросы должны быть с ответом!", - "Need to pick an expiration date!" : "Необходимо выбрать дату окончания!", + "Select a question type!" : "Необходимо выбрать тип вопроса.", + "Cannot have the same question!" : "Нельзя добавлять одинаковые вопросы.", + "Two answers cannot be the same!" : "Два ответа не могут быть одинаковыми.", + "Title must not be empty!" : "Заголовок не может быть пустым.", + "Must have at least one question!" : "Должен быть хотя бы один вопрос.", + "All questions need answers!" : "Все вопросы должны быть с ответом.", + "Need to pick an expiration date!" : "Необходимо выбрать дату окончания.", "%n successfully saved" : "%n успешно сохранена", "Error on saving form, see console" : "Ошибка при сохранении формы, проверьте консоль", "Clone of %n" : "Копия %n", @@ -59,8 +60,8 @@ "Do you want to delete \"%n\"?" : "Удалить \"%n\"?", "No, keep form." : "Нет, оставить форму.", "Yes, delete form." : "Да, удалить форму.", - "Form \"%n\" deleted" : "Форма \"%n\" удалена", - "Error while deleting Form \"%n\"" : "Ошибка при удалении формы \"%n\"", + "Form \"%n\" deleted" : "Форма «%n» удалена", + "Error while deleting Form \"%n\"" : "Ошибка при удалении формы «%n»", "Form Expired" : "Форма закончилась", "This Form has expired and is no longer taking answers." : "Эта форма закончилась и ответы больше не принимаются.", "Access denied" : "Доступ запрещён", From 42f376c63a0117b2e12ec55184c22006965ab17a Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 18 Oct 2019 03:00:35 +0000 Subject: [PATCH 034/109] [tx-robot] updated from transifex --- l10n/ca.js | 1 + l10n/ca.json | 1 + l10n/de.js | 1 + l10n/de.json | 1 + l10n/de_DE.js | 1 + l10n/de_DE.json | 1 + l10n/es.js | 1 + l10n/es.json | 1 + l10n/fr.js | 1 + l10n/fr.json | 1 + l10n/gl.js | 1 + l10n/gl.json | 1 + l10n/it.js | 1 + l10n/it.json | 1 + l10n/pl.js | 1 + l10n/pl.json | 1 + l10n/pt_BR.js | 1 + l10n/pt_BR.json | 1 + 18 files changed, 18 insertions(+) diff --git a/l10n/ca.js b/l10n/ca.js index e90d469..d5dccb9 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -40,6 +40,7 @@ OC.L10N.register( "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "La configuració està blocada. Canviar opcions ara podria esdevenir en comportaments no desitjats, però ho podeu desblocar de totes maneres.", "Unlock configuration " : "Desbloca configuració", "Form configurations" : "Configuracions del formulari", + "Only allow one submission per user" : "Admet només una presentació per usuari.", "Name of user or group" : "Nom de l'usuari o del grup", "Create new form" : "Crea un nou formulari", "Writing form" : "S'està desant el formulari", diff --git a/l10n/ca.json b/l10n/ca.json index dc6144f..c58f451 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -38,6 +38,7 @@ "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "La configuració està blocada. Canviar opcions ara podria esdevenir en comportaments no desitjats, però ho podeu desblocar de totes maneres.", "Unlock configuration " : "Desbloca configuració", "Form configurations" : "Configuracions del formulari", + "Only allow one submission per user" : "Admet només una presentació per usuari.", "Name of user or group" : "Nom de l'usuari o del grup", "Create new form" : "Crea un nou formulari", "Writing form" : "S'està desant el formulari", diff --git a/l10n/de.js b/l10n/de.js index d61cd65..6c55119 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -40,6 +40,7 @@ OC.L10N.register( "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Die Konfiguration ist gesperrt. Änderungen können zu unerwünschtem Verhalten führen, Du kannst die Konfiguration trotzdem entsperren. ", "Unlock configuration " : "Konfiguration entsperren", "Form configurations" : "Formulareinstellungen", + "Only allow one submission per user" : "Nur einen Beitrag pro Benutzer erlauben", "Name of user or group" : "Name des Benutzers oder der Gruppe", "Create new form" : "Ein neues Formular erstellen", "Writing form" : "Formular schreiben", diff --git a/l10n/de.json b/l10n/de.json index 4c38dc1..d8e1a9a 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -38,6 +38,7 @@ "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Die Konfiguration ist gesperrt. Änderungen können zu unerwünschtem Verhalten führen, Du kannst die Konfiguration trotzdem entsperren. ", "Unlock configuration " : "Konfiguration entsperren", "Form configurations" : "Formulareinstellungen", + "Only allow one submission per user" : "Nur einen Beitrag pro Benutzer erlauben", "Name of user or group" : "Name des Benutzers oder der Gruppe", "Create new form" : "Ein neues Formular erstellen", "Writing form" : "Formular schreiben", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index eb36c0d..21c69dc 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -40,6 +40,7 @@ OC.L10N.register( "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Die Konfiguration ist gesperrt. Das Ändern von Optionen kann zu unerwünschtem Verhalten führen, Sie können die Konfiguration trotzdem entsperren. ", "Unlock configuration " : "Konfiguration entsperren", "Form configurations" : "Formulareinstellungen", + "Only allow one submission per user" : "Nur einen Beitrag pro Benutzer erlauben", "Name of user or group" : "Name des Benutzers oder der Gruppe", "Create new form" : "Ein neues Formular erstellen", "Writing form" : "Formular schreiben", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 46f220b..c124547 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -38,6 +38,7 @@ "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Die Konfiguration ist gesperrt. Das Ändern von Optionen kann zu unerwünschtem Verhalten führen, Sie können die Konfiguration trotzdem entsperren. ", "Unlock configuration " : "Konfiguration entsperren", "Form configurations" : "Formulareinstellungen", + "Only allow one submission per user" : "Nur einen Beitrag pro Benutzer erlauben", "Name of user or group" : "Name des Benutzers oder der Gruppe", "Create new form" : "Ein neues Formular erstellen", "Writing form" : "Formular schreiben", diff --git a/l10n/es.js b/l10n/es.js index 4815352..217c839 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -40,6 +40,7 @@ OC.L10N.register( "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "La configuración está bloqueada. Cambiar las opciones puede resultar en comportamiento indeseado, pero aun así puedes desbloquearla.", "Unlock configuration " : "Desbloquear configuración", "Form configurations" : "Configuraciones de formulario", + "Only allow one submission per user" : "Sólo se permite un envío por usuario", "Name of user or group" : "Nombre del usuario o grupo", "Create new form" : "Crear formulario nuevo", "Writing form" : "Escribiendo formulario", diff --git a/l10n/es.json b/l10n/es.json index 47db4a5..6594352 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -38,6 +38,7 @@ "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "La configuración está bloqueada. Cambiar las opciones puede resultar en comportamiento indeseado, pero aun así puedes desbloquearla.", "Unlock configuration " : "Desbloquear configuración", "Form configurations" : "Configuraciones de formulario", + "Only allow one submission per user" : "Sólo se permite un envío por usuario", "Name of user or group" : "Nombre del usuario o grupo", "Create new form" : "Crear formulario nuevo", "Writing form" : "Escribiendo formulario", diff --git a/l10n/fr.js b/l10n/fr.js index bd44f26..0c6feb3 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -40,6 +40,7 @@ OC.L10N.register( "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "La configuration est verrouillée. Changer les options peut entraîner un comportement indésirable, mais vous pouvez quand même la déverrouiller.", "Unlock configuration " : "Déverrouiller la configuration", "Form configurations" : "Paramètres du formulaire", + "Only allow one submission per user" : "Autoriser un seul envoi par utilisateur", "Name of user or group" : "Nom d'utilisateur ou de groupe", "Create new form" : "Créer un nouveau formulaire", "Writing form" : "Rédiger le formulaire", diff --git a/l10n/fr.json b/l10n/fr.json index b267517..600570d 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -38,6 +38,7 @@ "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "La configuration est verrouillée. Changer les options peut entraîner un comportement indésirable, mais vous pouvez quand même la déverrouiller.", "Unlock configuration " : "Déverrouiller la configuration", "Form configurations" : "Paramètres du formulaire", + "Only allow one submission per user" : "Autoriser un seul envoi par utilisateur", "Name of user or group" : "Nom d'utilisateur ou de groupe", "Create new form" : "Créer un nouveau formulaire", "Writing form" : "Rédiger le formulaire", diff --git a/l10n/gl.js b/l10n/gl.js index b897e00..ae80a74 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -40,6 +40,7 @@ OC.L10N.register( "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : " A configuración está bloqueada. Cambiar as opcións pode dar lugar a un comportamento non desexado, aínda así pode desbloqueala.", "Unlock configuration " : "Desbloquear a configuracioń", "Form configurations" : "Configuracións de formulario ", + "Only allow one submission per user" : "Permitir só unha presentación por usuario", "Name of user or group" : "Nome de usuario ou grupo", "Create new form" : "Crear un formulario novo", "Writing form" : "Rexistrando o formulario", diff --git a/l10n/gl.json b/l10n/gl.json index ad64fc4..85c4070 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -38,6 +38,7 @@ "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : " A configuración está bloqueada. Cambiar as opcións pode dar lugar a un comportamento non desexado, aínda así pode desbloqueala.", "Unlock configuration " : "Desbloquear a configuracioń", "Form configurations" : "Configuracións de formulario ", + "Only allow one submission per user" : "Permitir só unha presentación por usuario", "Name of user or group" : "Nome de usuario ou grupo", "Create new form" : "Crear un formulario novo", "Writing form" : "Rexistrando o formulario", diff --git a/l10n/it.js b/l10n/it.js index 18398a2..6f4909c 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -40,6 +40,7 @@ OC.L10N.register( "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "La configurazione è bloccata. La modifica delle opzioni potrebbe risultare in un comportamento inatteso, ma puoi sbloccarla comunque.", "Unlock configuration " : "Sblocca la configurazione", "Form configurations" : "Configurazioni modulo", + "Only allow one submission per user" : "Consenti solo un invio per utente", "Name of user or group" : "Nome dell'utente o del gruppo", "Create new form" : "Crea una nuova modulo", "Writing form" : "Scrittura del modulo", diff --git a/l10n/it.json b/l10n/it.json index 66effec..70f8610 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -38,6 +38,7 @@ "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "La configurazione è bloccata. La modifica delle opzioni potrebbe risultare in un comportamento inatteso, ma puoi sbloccarla comunque.", "Unlock configuration " : "Sblocca la configurazione", "Form configurations" : "Configurazioni modulo", + "Only allow one submission per user" : "Consenti solo un invio per utente", "Name of user or group" : "Nome dell'utente o del gruppo", "Create new form" : "Crea una nuova modulo", "Writing form" : "Scrittura del modulo", diff --git a/l10n/pl.js b/l10n/pl.js index 0bdfa17..d77010c 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -40,6 +40,7 @@ OC.L10N.register( "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Konfiguracja jest zablokowana. Zmiana opcji może spowodować niepożądane efekty. Możesz ją odblokować.", "Unlock configuration " : "Odblokuj konfigurację", "Form configurations" : "Ustawienia formularza", + "Only allow one submission per user" : "Zezwól tylko na jedno przysłanie na użytkownika", "Name of user or group" : "Nazwa użytkownika lub grupy", "Create new form" : "Utwórz nowy formularz", "Writing form" : "Pisanie formularza", diff --git a/l10n/pl.json b/l10n/pl.json index aa6aafc..1a82090 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -38,6 +38,7 @@ "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Konfiguracja jest zablokowana. Zmiana opcji może spowodować niepożądane efekty. Możesz ją odblokować.", "Unlock configuration " : "Odblokuj konfigurację", "Form configurations" : "Ustawienia formularza", + "Only allow one submission per user" : "Zezwól tylko na jedno przysłanie na użytkownika", "Name of user or group" : "Nazwa użytkownika lub grupy", "Create new form" : "Utwórz nowy formularz", "Writing form" : "Pisanie formularza", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index e5faf8f..07711ef 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -40,6 +40,7 @@ OC.L10N.register( "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "A configuração está bloqueada. A alteração de opções pode resultar em comportamento inesperado, mas você pode pode desbloqueá-la mesmo assim.", "Unlock configuration " : "Desbloquear a configuração", "Form configurations" : "Configurações do formulário", + "Only allow one submission per user" : "Permitir somente um envio por usuário", "Name of user or group" : "Nome do usuário ou grupo", "Create new form" : "Criar novo formulário", "Writing form" : "Escrevendo formulário", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 493be6a..90674eb 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -38,6 +38,7 @@ "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "A configuração está bloqueada. A alteração de opções pode resultar em comportamento inesperado, mas você pode pode desbloqueá-la mesmo assim.", "Unlock configuration " : "Desbloquear a configuração", "Form configurations" : "Configurações do formulário", + "Only allow one submission per user" : "Permitir somente um envio por usuário", "Name of user or group" : "Nome do usuário ou grupo", "Create new form" : "Criar novo formulário", "Writing form" : "Escrevendo formulário", From a5f6415baff54f781cf2a0552c784f701295cf46 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 19 Oct 2019 03:00:51 +0000 Subject: [PATCH 035/109] [tx-robot] updated from transifex --- l10n/sv.js | 1 + l10n/sv.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/sv.js b/l10n/sv.js index 89cc95a..bf82d67 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -40,6 +40,7 @@ OC.L10N.register( "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Inställningarna är låsta. Att ändra variabler kan resultera i oväntade beteenden. Men du kan låsa upp inställningarna ändå.", "Unlock configuration " : "Lås upp inställningar", "Form configurations" : "Formulär-inställningar", + "Only allow one submission per user" : "Tillåt endast ett svar per användare", "Name of user or group" : "Användar- eller grupp-namn", "Create new form" : "Skapa nytt formulär", "Writing form" : "Skriver formuläret", diff --git a/l10n/sv.json b/l10n/sv.json index 0bdcfb4..21f9aad 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -38,6 +38,7 @@ "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Inställningarna är låsta. Att ändra variabler kan resultera i oväntade beteenden. Men du kan låsa upp inställningarna ändå.", "Unlock configuration " : "Lås upp inställningar", "Form configurations" : "Formulär-inställningar", + "Only allow one submission per user" : "Tillåt endast ett svar per användare", "Name of user or group" : "Användar- eller grupp-namn", "Create new form" : "Skapa nytt formulär", "Writing form" : "Skriver formuläret", From eda5ad72995c64477dc9574278e96813ab97e5cf 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:15:13 +0000 Subject: [PATCH 036/109] Bump webpack from 4.41.1 to 4.41.2 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] --- package-lock.json | 12 ++++++------ package.json | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1d94b26..c707278 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9974,9 +9974,9 @@ } }, "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", @@ -10737,9 +10737,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/package.json b/package.json index c51e066..22990ea 100644 --- a/package.json +++ b/package.json @@ -111,7 +111,7 @@ "vue-loader": "^15.7.1", "vue-style-loader": "^4.1.1", "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 e79270e97277fa8e0ba7cb5141a1f7a1390ffbe2 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:15:41 +0000 Subject: [PATCH 037/109] Bump browserslist-config-nextcloud from 0.0.1 to 0.1.0 Bumps browserslist-config-nextcloud from 0.0.1 to 0.1.0. Signed-off-by: dependabot-preview[bot] --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1d94b26..e0ee87e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2078,9 +2078,9 @@ } }, "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==", + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/browserslist-config-nextcloud/-/browserslist-config-nextcloud-0.1.0.tgz", + "integrity": "sha512-ruAx5nBTtSLKel+eSw12C0ylGzzfy5loJcfe8gbZ5JoxjwVkpe4V5TX1EHrImTHzhYOA2dXTfHUcCvF174Y1jg==", "dev": true }, "buffer": { diff --git a/package.json b/package.json index c51e066..2b5eadc 100644 --- a/package.json +++ b/package.json @@ -89,7 +89,7 @@ "@babel/preset-env": "^7.6.3", "babel-eslint": "^10.0.1", "babel-loader": "^8.0.4", - "browserslist-config-nextcloud": "0.0.1", + "browserslist-config-nextcloud": "0.1.0", "css-loader": "^3.2.0", "eslint": "^5.16.0", "eslint-config-standard": "^12.0.0", From 311636e395d250cf2853a8f5e5421d666377005d Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 20 Oct 2019 03:04:18 +0000 Subject: [PATCH 038/109] [tx-robot] updated from transifex --- l10n/tr.js | 1 + l10n/tr.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/tr.js b/l10n/tr.js index 125483f..0df5e0f 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -40,6 +40,7 @@ OC.L10N.register( "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Yapılandırma kilitlenmiş. Ayarların değiştirilmesi istenmeyen sonuçlara yol açabilir ancak isterseniz kilidi açabilirsiniz.", "Unlock configuration " : "Yapılandırma kilidini aç", "Form configurations" : "Form yapılandırmaları", + "Only allow one submission per user" : "Her kullanıcı formu yalnız bir kez gönderebilsin", "Name of user or group" : "Kullanıcı ya da grup adı", "Create new form" : "Yeni form oluştur", "Writing form" : "Form yazılıyor", diff --git a/l10n/tr.json b/l10n/tr.json index fd33f40..e7b3fad 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -38,6 +38,7 @@ "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Yapılandırma kilitlenmiş. Ayarların değiştirilmesi istenmeyen sonuçlara yol açabilir ancak isterseniz kilidi açabilirsiniz.", "Unlock configuration " : "Yapılandırma kilidini aç", "Form configurations" : "Form yapılandırmaları", + "Only allow one submission per user" : "Her kullanıcı formu yalnız bir kez gönderebilsin", "Name of user or group" : "Kullanıcı ya da grup adı", "Create new form" : "Yeni form oluştur", "Writing form" : "Form yazılıyor", From a9e419d5bd3291e889820096f9277bdd15b7d942 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 21 Oct 2019 03:01:48 +0000 Subject: [PATCH 039/109] [tx-robot] updated from transifex --- l10n/fi.js | 9 +++++++++ l10n/fi.json | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/l10n/fi.js b/l10n/fi.js index 4ca6a4a..f4545f9 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -3,7 +3,9 @@ OC.L10N.register( { "Do you really want to delete this new form?" : "Haluatko varmasti poistaa tämän uuden lomakkeen?", "Forms" : "Lomakkeet", + "{user} participated in the form \"{title}\"" : "{user} täytti lomakkeen \"{title}\"", "Go to form" : "Siirry lomakkeelle", + "A forms app, similar to Google Forms." : "Lomakesovellus Google Formsin tyyliin.", "Expired" : "Vanhentunut", "Expires %n" : "Vanhenee %n", "Expires never" : "Ei vanhene koskaan", @@ -11,15 +13,20 @@ OC.L10N.register( "Usernames hidden to Owner" : "Käyttäjänimet piilotettu omistajalta", "Usernames visible to Owner" : "Käyttäjänimet näkyvissä omistajalle", "Group" : "Ryhmä", + "Title" : "Otsikko", + "Access" : "Käyttöoikeudet", "Owner" : "Omistaja", "Created" : "Luotu", "Expires" : "Vanhenee", + "View results" : "Näytä tulokset", "Public access" : "Avoin pääsy", + "Only shared" : "Vain jaettu", "Registered users only" : "Vain rekisteröityneet käyttäjät", "Hidden form" : "Piilotettu lomake", "Text form" : "Tekstilomake", "never" : "ei koskaan", "Link copied to clipboard" : "Linkki kopioitu leikepöydälle", + "Error, while copying link to clipboard" : "Virhe kopioitaessa linkkiä leikepöydälle", "Add Answer" : "Lisää vastaus", "Share with" : "Jaa", "Form description" : "Lomakkeen kuvaus", @@ -30,6 +37,7 @@ OC.L10N.register( "Configuration" : "Asetukset", "Unlock configuration " : "Avaa asetusten lukitus", "Form configurations" : "Lomakkeen asetukset", + "Only allow one submission per user" : "Salli vain yksi vastaus per käyttäjä", "Name of user or group" : "Käyttäjän tai ryhmän nimi", "Create new form" : "Luo uusi lomake", "Update form" : "Päivitä lomake", @@ -39,6 +47,7 @@ OC.L10N.register( "Select a question type!" : "Valitse kysymyksen tyyppi!", "Cannot have the same question!" : "Sama kysymys ei voi esiintyä useaan kertaan!", "Two answers cannot be the same!" : "Kaksi vastausta ei voi olla samoja", + "Title must not be empty!" : "Otsikko ei voi olla tyhjä!", "Must have at least one question!" : "Vaaditaan vähintään yksi kysymys!", "All questions need answers!" : "Kaikki kysymykset tarvitsevat vastauksen!", "Need to pick an expiration date!" : "Vanhenemispäiväys tulee valita!", diff --git a/l10n/fi.json b/l10n/fi.json index 6ac0130..dd43df6 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -1,7 +1,9 @@ { "translations": { "Do you really want to delete this new form?" : "Haluatko varmasti poistaa tämän uuden lomakkeen?", "Forms" : "Lomakkeet", + "{user} participated in the form \"{title}\"" : "{user} täytti lomakkeen \"{title}\"", "Go to form" : "Siirry lomakkeelle", + "A forms app, similar to Google Forms." : "Lomakesovellus Google Formsin tyyliin.", "Expired" : "Vanhentunut", "Expires %n" : "Vanhenee %n", "Expires never" : "Ei vanhene koskaan", @@ -9,15 +11,20 @@ "Usernames hidden to Owner" : "Käyttäjänimet piilotettu omistajalta", "Usernames visible to Owner" : "Käyttäjänimet näkyvissä omistajalle", "Group" : "Ryhmä", + "Title" : "Otsikko", + "Access" : "Käyttöoikeudet", "Owner" : "Omistaja", "Created" : "Luotu", "Expires" : "Vanhenee", + "View results" : "Näytä tulokset", "Public access" : "Avoin pääsy", + "Only shared" : "Vain jaettu", "Registered users only" : "Vain rekisteröityneet käyttäjät", "Hidden form" : "Piilotettu lomake", "Text form" : "Tekstilomake", "never" : "ei koskaan", "Link copied to clipboard" : "Linkki kopioitu leikepöydälle", + "Error, while copying link to clipboard" : "Virhe kopioitaessa linkkiä leikepöydälle", "Add Answer" : "Lisää vastaus", "Share with" : "Jaa", "Form description" : "Lomakkeen kuvaus", @@ -28,6 +35,7 @@ "Configuration" : "Asetukset", "Unlock configuration " : "Avaa asetusten lukitus", "Form configurations" : "Lomakkeen asetukset", + "Only allow one submission per user" : "Salli vain yksi vastaus per käyttäjä", "Name of user or group" : "Käyttäjän tai ryhmän nimi", "Create new form" : "Luo uusi lomake", "Update form" : "Päivitä lomake", @@ -37,6 +45,7 @@ "Select a question type!" : "Valitse kysymyksen tyyppi!", "Cannot have the same question!" : "Sama kysymys ei voi esiintyä useaan kertaan!", "Two answers cannot be the same!" : "Kaksi vastausta ei voi olla samoja", + "Title must not be empty!" : "Otsikko ei voi olla tyhjä!", "Must have at least one question!" : "Vaaditaan vähintään yksi kysymys!", "All questions need answers!" : "Kaikki kysymykset tarvitsevat vastauksen!", "Need to pick an expiration date!" : "Vanhenemispäiväys tulee valita!", From 22b1dfd2b4a5ae32e4af0ffc5f149e329c822009 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 25 Oct 2019 03:02:07 +0000 Subject: [PATCH 040/109] [tx-robot] updated from transifex --- l10n/pl.js | 2 +- l10n/pl.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/pl.js b/l10n/pl.js index d77010c..a79bf22 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -27,7 +27,7 @@ OC.L10N.register( "Hidden form" : "Niewidoczny formularz", "Text form" : "Formularz tekstowy", "never" : "nigdy", - "Link copied to clipboard" : "Link skopiowany do schowka", + "Link copied to clipboard" : "Link został skopiowany do schowka", "Error, while copying link to clipboard" : "Błąd podczas kopiowania linku do schowka", "Add Answer" : "Dodaj odpowiedź", "Share with" : "Udostępnij dla", diff --git a/l10n/pl.json b/l10n/pl.json index 1a82090..742fd72 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -25,7 +25,7 @@ "Hidden form" : "Niewidoczny formularz", "Text form" : "Formularz tekstowy", "never" : "nigdy", - "Link copied to clipboard" : "Link skopiowany do schowka", + "Link copied to clipboard" : "Link został skopiowany do schowka", "Error, while copying link to clipboard" : "Błąd podczas kopiowania linku do schowka", "Add Answer" : "Dodaj odpowiedź", "Share with" : "Udostępnij dla", From e2563da2a24eef0e39814785ccb7f22a1ca2270a Mon Sep 17 00:00:00 2001 From: Simon PIGNE Date: Fri, 25 Oct 2019 16:32:58 +0200 Subject: [PATCH 041/109] Hotfixcss --- css/vote.scss | 38 ++++++++++++++++++++++++++++++++++---- 1 file changed, 34 insertions(+), 4 deletions(-) diff --git a/css/vote.scss b/css/vote.scss index 0259cbc..bd5be9c 100644 --- a/css/vote.scss +++ b/css/vote.scss @@ -8,36 +8,66 @@ font-size: 420px; } +/* hotfixcss + setting the width to 70% so it takes a more reasonable place for long titles + line height to 1 so the lines don't overlap + adding a margin-bottom for confort +*/ .sv_container { h3 { - width: 400px; + width: 70%; + line-height: 1; + margin-bottom: 5%; font-size: 30px; } } + +/* hotfixcss +changing to color so it matches the header +setting the width to 70% to match the previous fix +setting a more confortable margin-bottom +*/ .sv_qstn .sq-root { border: 1px solid gray; - border-left: 4px solid #18a689; + border-left: 4px solid #0082c9; border-radius: 5px; padding: 20px; - width: 400px; - margin-bottom: 30px; + width: 70%; + margin-bottom: 6%; font-size: 18px; } + +/* hotfixcss +adding a margin +*/ .sq-title { font-size: 20px; margin-left: 20px; + margin-bottom: 2%; } .sq-title-required { color: black; } +/* hotfixcss +display fex and align items center so the radio button is aligned with the text +*/ .sq-label { margin-left: 30px; + display: flex; + align-items: center; } .sq-item:nth-child(1) { margin-bottom: 5px; } + +/* hotfixcss +adding the checkbox text's class to add a comfort margin +*/ +.sv_q_checkbox_control_label { + margin-left: 1%; +} From f0b664b1feda534631927adc71a7ae347f1268dc 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:14:45 +0000 Subject: [PATCH 042/109] Bump nextcloud-vue from 0.12.6 to 0.12.7 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] --- package-lock.json | 36 ++++++++++++++++++------------------ package.json | 2 +- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/package-lock.json b/package-lock.json index 46a0487..45c3501 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2691,9 +2691,9 @@ "dev": true }, "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==" }, "core-js-compat": { "version": "3.2.1", @@ -6685,18 +6685,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" @@ -7367,9 +7367,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", @@ -10514,6 +10514,11 @@ "integrity": "sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==", "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", @@ -10597,11 +10602,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-clipboard2": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/vue-clipboard2/-/vue-clipboard2-0.3.1.tgz", @@ -10718,9 +10718,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/package.json b/package.json index dba2819..b812558 100644 --- a/package.json +++ b/package.json @@ -72,7 +72,7 @@ "json2csv": "4.5.4", "moment": "^2.23.0", "nextcloud-axios": "^0.2.1", - "nextcloud-vue": "^0.12.6", + "nextcloud-vue": "^0.12.7", "vue": "^2.6.10", "vue-clipboard2": "^0.3.1", "vue-router": "^3.1.3" From d29af06b901a85d93cc2c34f28b345f46d2fa596 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:15:53 +0000 Subject: [PATCH 043/109] Bump node-sass from 4.12.0 to 4.13.0 Bumps [node-sass](https://github.com/sass/node-sass) from 4.12.0 to 4.13.0. - [Release notes](https://github.com/sass/node-sass/releases) - [Changelog](https://github.com/sass/node-sass/blob/master/CHANGELOG.md) - [Commits](https://github.com/sass/node-sass/compare/v4.12.0...v4.13.0) Signed-off-by: dependabot-preview[bot] --- package-lock.json | 14 +++++++------- package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/package-lock.json b/package-lock.json index 46a0487..5adc85a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6793,9 +6793,9 @@ } }, "node-sass": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.12.0.tgz", - "integrity": "sha512-A1Iv4oN+Iel6EPv77/HddXErL2a+gZ4uBeZUy+a8O35CFYTXhgA8MgLCWBtwpGZdCvTvQ9d+bQxX/QC36GDPpQ==", + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.13.0.tgz", + "integrity": "sha512-W1XBrvoJ1dy7VsvTAS5q1V45lREbTlZQqFbiHb3R3OTTCma0XBtuG6xZ6Z4506nR4lmHPTqVRwxT6KgtWC97CA==", "dev": true, "requires": { "async-foreach": "^0.1.3", @@ -6805,7 +6805,7 @@ "get-stdin": "^4.0.1", "glob": "^7.0.3", "in-publish": "^2.0.0", - "lodash": "^4.17.11", + "lodash": "^4.17.15", "meow": "^3.7.0", "mkdirp": "^0.5.1", "nan": "^2.13.2", @@ -7743,9 +7743,9 @@ "dev": true }, "psl": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.3.1.tgz", - "integrity": "sha512-2KLd5fKOdAfShtY2d/8XDWVRnmp3zp40Qt6ge2zBPFARLXOGUf2fHD5eg+TV/5oxBtQKVhjUaKFsAaE4HnwfSA==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.4.0.tgz", + "integrity": "sha512-HZzqCGPecFLyoRj5HLfuDSKYTJkAfB5thKBIkRHtGjWwY7p1dAyveIbXIq4tO0KYfDF2tHqPUgY9SDnGm00uFw==", "dev": true }, "public-encrypt": { diff --git a/package.json b/package.json index dba2819..1c94967 100644 --- a/package.json +++ b/package.json @@ -102,7 +102,7 @@ "eslint-plugin-standard": "^4.0.1", "eslint-plugin-vue": "^5.2.3", "file-loader": "^4.2.0", - "node-sass": "^4.12.0", + "node-sass": "^4.13.0", "sass-loader": "^7.3.1", "stylelint": "^8.4.0", "stylelint-config-recommended-scss": "^3.3.0", From 434ea78a456e535e765db2711f974d057c1f8547 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:16:21 +0000 Subject: [PATCH 044/109] Bump stylelint-scss from 3.11.1 to 3.12.0 Bumps [stylelint-scss](https://github.com/kristerkari/stylelint-scss) from 3.11.1 to 3.12.0. - [Release notes](https://github.com/kristerkari/stylelint-scss/releases) - [Changelog](https://github.com/kristerkari/stylelint-scss/blob/master/CHANGELOG.md) - [Commits](https://github.com/kristerkari/stylelint-scss/compare/3.11.1...3.12.0) Signed-off-by: dependabot-preview[bot] --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 46a0487..384be10 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9570,9 +9570,9 @@ } }, "stylelint-scss": { - "version": "3.11.1", - "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-3.11.1.tgz", - "integrity": "sha512-0FZNSfy5X2Or4VRA3Abwfrw1NHrI6jHT8ji9xSwP8Re2Kno0i90qbHwm8ohPO0kRB1RP9x1vCYBh4Tij+SZjIg==", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-3.12.0.tgz", + "integrity": "sha512-RvZqmCnILJ0etFBjSGTXQKOspYjF+jjtFdUGoqjuis2YILy/3LCtgSdBP2I+LUOfRT+eJFCrb8g+j3ZND4FaNA==", "dev": true, "requires": { "lodash": "^4.17.15", diff --git a/package.json b/package.json index dba2819..4a681c9 100644 --- a/package.json +++ b/package.json @@ -106,7 +106,7 @@ "sass-loader": "^7.3.1", "stylelint": "^8.4.0", "stylelint-config-recommended-scss": "^3.3.0", - "stylelint-scss": "^3.11.1", + "stylelint-scss": "^3.12.0", "stylelint-webpack-plugin": "^0.10.5", "vue-loader": "^15.7.1", "vue-style-loader": "^4.1.1", From 263c64731382333c390a3b6faecf9d73ea48ab97 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 29 Oct 2019 03:01:26 +0000 Subject: [PATCH 045/109] [tx-robot] updated from transifex --- l10n/zh_CN.js | 1 + l10n/zh_CN.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index a4c7182..169349b 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -40,6 +40,7 @@ OC.L10N.register( "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "配置已被锁定。修改选项可能导致异常行为,但您可以将其解锁。", "Unlock configuration " : "解锁配置", "Form configurations" : "表单配置", + "Only allow one submission per user" : "一个用户只允许一次提交", "Name of user or group" : "用户或分组名称", "Create new form" : "创建新表单", "Writing form" : "编写表单", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index 6d78a80..21d006f 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -38,6 +38,7 @@ "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "配置已被锁定。修改选项可能导致异常行为,但您可以将其解锁。", "Unlock configuration " : "解锁配置", "Form configurations" : "表单配置", + "Only allow one submission per user" : "一个用户只允许一次提交", "Name of user or group" : "用户或分组名称", "Create new form" : "创建新表单", "Writing form" : "编写表单", From 584818956a4730a1d2e4743d751a0d6ea36629f6 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 31 Oct 2019 02:53:48 +0000 Subject: [PATCH 046/109] [tx-robot] updated from transifex --- l10n/nl.js | 1 + l10n/nl.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/nl.js b/l10n/nl.js index 7a40227..d715caf 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -40,6 +40,7 @@ OC.L10N.register( "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Configuratie is beschermd. Wijzigen van de opties kan leiden tot ongewenst gedrag, maar je kunt de configuratie hoe dan ook vrijgeven.", "Unlock configuration " : "Vrijgeven configuratie", "Form configurations" : "Formulierconfiguratie", + "Only allow one submission per user" : "Sta slechts één inzending per gebruiker toe", "Name of user or group" : "Naam van gebruiker of groep", "Create new form" : "Creëren nieuw formulier", "Writing form" : "Wegschrijven formulier", diff --git a/l10n/nl.json b/l10n/nl.json index d59a396..6991ae3 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -38,6 +38,7 @@ "Configuration is locked. Changing options may result in unwanted behaviour, but you can unlock it anyway." : "Configuratie is beschermd. Wijzigen van de opties kan leiden tot ongewenst gedrag, maar je kunt de configuratie hoe dan ook vrijgeven.", "Unlock configuration " : "Vrijgeven configuratie", "Form configurations" : "Formulierconfiguratie", + "Only allow one submission per user" : "Sta slechts één inzending per gebruiker toe", "Name of user or group" : "Naam van gebruiker of groep", "Create new form" : "Creëren nieuw formulier", "Writing form" : "Wegschrijven formulier", From fff9c5604c73d07f6edb88682e82e42b1e9c6d76 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 8 Nov 2019 03:02:09 +0000 Subject: [PATCH 047/109] [tx-robot] updated from transifex --- l10n/sl.js | 2 ++ l10n/sl.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/l10n/sl.js b/l10n/sl.js index 1954ccd..b0a6a38 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -4,6 +4,8 @@ OC.L10N.register( "Do you really want to delete this new form?" : "Ali ste prepričani, da želite izbrisati ta vprašalnik?", "Forms" : "Vprašalniki", "Expired" : "Poteklo", + "Usernames hidden to Owner" : "Uporabniška imena so skrita tudi lastniku", + "Usernames visible to Owner" : "Uporabniška imena so vidna lastniku", "Group" : "Skupina", "Title" : "Naslov", "Access" : "Dostop", diff --git a/l10n/sl.json b/l10n/sl.json index 113af69..a1843af 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -2,6 +2,8 @@ "Do you really want to delete this new form?" : "Ali ste prepričani, da želite izbrisati ta vprašalnik?", "Forms" : "Vprašalniki", "Expired" : "Poteklo", + "Usernames hidden to Owner" : "Uporabniška imena so skrita tudi lastniku", + "Usernames visible to Owner" : "Uporabniška imena so vidna lastniku", "Group" : "Skupina", "Title" : "Naslov", "Access" : "Dostop", From 6d43b045f8e5070cebb39696ae6fa54c4f216d48 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Fri, 8 Nov 2019 12:40:35 +0100 Subject: [PATCH 048/109] Fix build errors Signed-off-by: Marcel Klehr --- src/components/quizFormItem.vue | 2 +- src/main.js | 12 ++++++------ src/views/Create.vue | 2 +- src/views/List.vue | 2 +- src/views/Results.vue | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/components/quizFormItem.vue b/src/components/quizFormItem.vue index e868a20..1c87d0a 100644 --- a/src/components/quizFormItem.vue +++ b/src/components/quizFormItem.vue @@ -50,7 +50,7 @@