diff --git a/frontend/build.sh b/frontend/build.sh deleted file mode 100755 index 1793ec382f..0000000000 --- a/frontend/build.sh +++ /dev/null @@ -1,53 +0,0 @@ -#!/usr/bin/env bash - -# -# build.sh -# Copyright (c) 2021 james@firefly-iii.org -# -# This file is part of Firefly III (https://github.com/firefly-iii). -# -# 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 . -# - -[ -d "~/Sites" ] && exit 1; - -# build translations. -php /sites/FF3/dev/tools/cli.php ff3:json-translations v2 - -# remove old stuff -rm -rf public/ -rm -rf ../public/fonts -rm -rf ../public/images -rm -rf ../public/v2/js -rm -rf ../public/v2/css -mkdir -p public/js -mkdir -p public/css - -# build new stuff -yarn install -yarn audit fix -yarn upgrade -yarn prod - -# yarn watch - -# move to right directory -# mv public/js ../public/v2 -# mv public/css ../public/v2 - -# also copy fonts -#cp -r fonts ../public/v2/css - -# remove built stuff -rm -rf public/ diff --git a/frontend/mix-manifest.json b/frontend/mix-manifest.json deleted file mode 100644 index ea8b85ae3e..0000000000 --- a/frontend/mix-manifest.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "/public/js/dashboard.js": "/public/js/dashboard.js", - "/public/js/accounts/index.js": "/public/js/accounts/index.js", - "/public/js/accounts/delete.js": "/public/js/accounts/delete.js", - "/public/js/accounts/show.js": "/public/js/accounts/show.js", - "/public/js/accounts/create.js": "/public/js/accounts/create.js", - "/public/js/accounts/edit.js": "/public/js/accounts/edit.js", - "/public/js/bills/index.js": "/public/js/bills/index.js", - "/public/js/bills/create.js": "/public/js/bills/create.js", - "/public/js/budgets/index.js": "/public/js/budgets/index.js", - "/public/js/transactions/create.js": "/public/js/transactions/create.js", - "/public/js/transactions/edit.js": "/public/js/transactions/edit.js", - "/public/js/transactions/index.js": "/public/js/transactions/index.js", - "/public/js/empty.js": "/public/js/empty.js", - "/public/js/register.js": "/public/js/register.js", - "/public/js/manifest.js": "/public/js/manifest.js", - "/public/css/app.css": "/public/css/app.css", - "/public/js/vendor.js": "/public/js/vendor.js", - "/public/v2/js/dashboard.js": "/public/v2/js/dashboard.js", - "/public/v2/js/dashboard.js.map": "/public/v2/js/dashboard.js.map", - "/public/v2/js/empty.js": "/public/v2/js/empty.js", - "/public/v2/js/empty.js.map": "/public/v2/js/empty.js.map", - "/public/v2/js/manifest.js": "/public/v2/js/manifest.js", - "/public/v2/js/manifest.js.map": "/public/v2/js/manifest.js.map", - "/public/v2/js/register.js": "/public/v2/js/register.js", - "/public/v2/js/register.js.map": "/public/v2/js/register.js.map", - "/public/v2/js/vendor.js": "/public/v2/js/vendor.js", - "/public/v2/js/vendor.js.LICENSE.txt": "/public/v2/js/vendor.js.LICENSE.txt", - "/public/v2/js/vendor.js.map": "/public/v2/js/vendor.js.map", - "/public/v2/css/app.css": "/public/v2/css/app.css", - "/public/v2/css/app.css.map": "/public/v2/css/app.css.map" -} diff --git a/frontend/package.json b/frontend/package.json deleted file mode 100644 index e1324b85e7..0000000000 --- a/frontend/package.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "private": true, - "scripts": { - "dev": "npm run development", - "development": "mix", - "watch": "mix watch", - "watch-poll": "mix watch -- --watch-options-poll=1000", - "hot": "mix watch --hot", - "prod": "npm run production", - "production": "mix --production" - }, - "devDependencies": { - "axios": "^0.21", - "date-fns": "^2.27.0", - "laravel-mix": "^6", - "lodash": "^4.17.21", - "lodash.clonedeep": "^4.5.0", - "postcss": "^8.4.5", - "resolve-url-loader": "^4.0.0", - "sass": "^1.49.0", - "sass-loader": "^12.2.0", - "vue-i18n": "^8.27.0", - "vue-loader": "^15", - "vue-template-compiler": "^2.6.12", - "vuex": "^3.6.2", - "webpack": "^5.67.0" - }, - "dependencies": { - "@fortawesome/fontawesome-free": "^5.15.3", - "@johmun/vue-tags-input": "^2.1.0", - "admin-lte": "^3.1.0", - "axios-cache-adapter": "^2.7.3", - "bootstrap": "^4.6.0", - "bootstrap-vue": "^2.21.2", - "chart.js": "^3.7.0", - "icheck-bootstrap": "^3.0.1", - "jquery-ui": "^1.13.1", - "leaflet": "^1.7.1", - "localforage": "^1.9.0", - "localforage-memoryStorageDriver": "^0.9.2", - "overlayscrollbars": "^1.13.1", - "sortablejs": "^1.14.0", - "uiv": "^1.4.1", - "v-calendar": "^2.3.2", - "vue-typeahead-bootstrap": "^2.8.0", - "vue2-leaflet": "^2.7.1" - } -} diff --git a/frontend/render.sh b/frontend/render.sh deleted file mode 100755 index da6d9b0363..0000000000 --- a/frontend/render.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env bash - -# -# render.sh -# Copyright (c) 2021 james@firefly-iii.org -# -# This file is part of Firefly III (https://github.com/firefly-iii). -# -# 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 . -# - -[ -d "~/Sites" ] && exit 1; - -# build translations. -php /sites/FF3/dev/tools/cli.php ff3:json-translations v2 diff --git a/frontend/src/app.scss b/frontend/src/app.scss deleted file mode 100644 index d5b017f480..0000000000 --- a/frontend/src/app.scss +++ /dev/null @@ -1,90 +0,0 @@ -/*! - * app.scss - * Copyright (c) 2021 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ -$blue: #1E6581; -$green: #64B624; -$red: #CD5029; - - - -// Fonts -@import '~@fortawesome/fontawesome-free/css/all.css'; -// OverlayScrollbars -@import '~overlayscrollbars/css/OverlayScrollbars.css'; -// iCheck -@import '~icheck-bootstrap/icheck-bootstrap.css'; -// AdminLTE -//@import 'dist/css/adminlte.css'; - -//@import 'adminlte/scss/adminlte.css' - -//@import '~admin-lte/build/scss/AdminLTE'; - -// ADMIN LTE -@import '~bootstrap/scss/functions'; -@import '~admin-lte/build/scss/bootstrap-variables'; -@import '~bootstrap/scss/bootstrap'; - -@import '~bootstrap-vue/src/index'; - -// Variables and Mixins -// --------------------------------------------------- -@import '~admin-lte/build/scss/variables'; -@import '~admin-lte/build/scss/variables-alt'; - - - -@import '~admin-lte/build/scss/mixins'; -@import '~admin-lte/build/scss/parts/core'; - -// admin LTE components -@import '~admin-lte/build/scss/forms'; -@import '~admin-lte/build/scss/progress-bars'; -@import '~admin-lte/build/scss/cards'; -@import '~admin-lte/build/scss/modals'; -//@import '../toasts'; -@import '~admin-lte/build/scss/buttons'; -@import '~admin-lte/build/scss/callout'; -@import '~admin-lte/build/scss/alerts'; -@import '~admin-lte/build/scss/table'; -//@import '../carousel'; - -// admin LTE extra components -//@import '../small-box'; -@import '~admin-lte/build/scss/info-box'; -//@import '../timeline'; -//@import '../products'; -//@import '../direct-chat'; -//@import '../users-list'; -//@import '../social-widgets'; - -// admin LTE pages (unused) -@import '~admin-lte/build/scss/parts/pages'; - -// admin LTE plugins (unused) -// @import 'parts/plugins'; - -// admin LTE misc -@import '~admin-lte/build/scss/miscellaneous'; -@import '~admin-lte/build/scss/print'; -@import '~admin-lte/build/scss/text'; -@import '~admin-lte/build/scss/elevation'; -@import '~admin-lte/build/scss/colors'; - - diff --git a/frontend/src/bootstrap-basic.js b/frontend/src/bootstrap-basic.js deleted file mode 100644 index 9ff4a456d2..0000000000 --- a/frontend/src/bootstrap-basic.js +++ /dev/null @@ -1,26 +0,0 @@ - -/* - * bootstrap-basic.js - * Copyright (c) 2020 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -// export jquery for others scripts to use -window.$ = window.jQuery = require('jquery'); - -// admin stuff -require('bootstrap'); diff --git a/frontend/src/bootstrap.js b/frontend/src/bootstrap.js deleted file mode 100644 index 5a3c0f6605..0000000000 --- a/frontend/src/bootstrap.js +++ /dev/null @@ -1,64 +0,0 @@ -/* - * bootstrap.js - * Copyright (c) 2021 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -// // imports -import Vue from 'vue'; -import VueI18n from 'vue-i18n' -import * as uiv from 'uiv'; - -// export jquery for others scripts to use -window.$ = window.jQuery = require('jquery'); - -// axios -window.axios = require('axios'); -window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; - -// CSRF -let token = document.head.querySelector('meta[name="csrf-token"]'); - -if (token) { - window.axios.defaults.headers.common['X-CSRF-TOKEN'] = token.content; -} else { - console.error('CSRF token not found: https://laravel.com/docs/csrf#csrf-x-csrf-token'); -} - -// locale -let localeToken = document.head.querySelector('meta[name="locale"]'); - -if (localeToken) { - localStorage.locale = localeToken.content; -} else { - localStorage.locale = 'en_US'; -} - -// admin stuff -require('jquery-ui'); -require('bootstrap'); // bootstrap CSS? - -require('admin-lte/dist/js/adminlte'); -require('overlayscrollbars'); - - -// vue -window.vuei18n = VueI18n; -window.uiv = uiv; -Vue.use(vuei18n); -Vue.use(uiv); -window.Vue = Vue; \ No newline at end of file diff --git a/frontend/src/components/accounts/AssetAccountRole.vue b/frontend/src/components/accounts/AssetAccountRole.vue deleted file mode 100644 index 22f3266920..0000000000 --- a/frontend/src/components/accounts/AssetAccountRole.vue +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - diff --git a/frontend/src/components/accounts/Create.vue b/frontend/src/components/accounts/Create.vue deleted file mode 100644 index 78c5c6ec95..0000000000 --- a/frontend/src/components/accounts/Create.vue +++ /dev/null @@ -1,397 +0,0 @@ - - - - - - diff --git a/frontend/src/components/accounts/CreditCardType.vue b/frontend/src/components/accounts/CreditCardType.vue deleted file mode 100644 index ab7d5ce5e6..0000000000 --- a/frontend/src/components/accounts/CreditCardType.vue +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - diff --git a/frontend/src/components/accounts/Delete.vue b/frontend/src/components/accounts/Delete.vue deleted file mode 100644 index 4ca33720a0..0000000000 --- a/frontend/src/components/accounts/Delete.vue +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - diff --git a/frontend/src/components/accounts/Edit.vue b/frontend/src/components/accounts/Edit.vue deleted file mode 100644 index f3962eb7d5..0000000000 --- a/frontend/src/components/accounts/Edit.vue +++ /dev/null @@ -1,388 +0,0 @@ - - - - - - diff --git a/frontend/src/components/accounts/Index.vue b/frontend/src/components/accounts/Index.vue deleted file mode 100644 index 440a93d9c2..0000000000 --- a/frontend/src/components/accounts/Index.vue +++ /dev/null @@ -1,611 +0,0 @@ - - - - - diff --git a/frontend/src/components/accounts/IndexOptions.vue b/frontend/src/components/accounts/IndexOptions.vue deleted file mode 100644 index 61264d67a3..0000000000 --- a/frontend/src/components/accounts/IndexOptions.vue +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - diff --git a/frontend/src/components/accounts/Interest.vue b/frontend/src/components/accounts/Interest.vue deleted file mode 100644 index 38a742f4fb..0000000000 --- a/frontend/src/components/accounts/Interest.vue +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - diff --git a/frontend/src/components/accounts/InterestPeriod.vue b/frontend/src/components/accounts/InterestPeriod.vue deleted file mode 100644 index 5171d55158..0000000000 --- a/frontend/src/components/accounts/InterestPeriod.vue +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - diff --git a/frontend/src/components/accounts/LiabilityAmount.vue b/frontend/src/components/accounts/LiabilityAmount.vue deleted file mode 100644 index 69ce7ad4d9..0000000000 --- a/frontend/src/components/accounts/LiabilityAmount.vue +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - diff --git a/frontend/src/components/accounts/LiabilityDate.vue b/frontend/src/components/accounts/LiabilityDate.vue deleted file mode 100644 index 5bfa8279c1..0000000000 --- a/frontend/src/components/accounts/LiabilityDate.vue +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - diff --git a/frontend/src/components/accounts/LiabilityDirection.vue b/frontend/src/components/accounts/LiabilityDirection.vue deleted file mode 100644 index 6e2e2e71ad..0000000000 --- a/frontend/src/components/accounts/LiabilityDirection.vue +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - diff --git a/frontend/src/components/accounts/LiabilityType.vue b/frontend/src/components/accounts/LiabilityType.vue deleted file mode 100644 index a06732040c..0000000000 --- a/frontend/src/components/accounts/LiabilityType.vue +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - diff --git a/frontend/src/components/accounts/Show.vue b/frontend/src/components/accounts/Show.vue deleted file mode 100644 index 835567534c..0000000000 --- a/frontend/src/components/accounts/Show.vue +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - diff --git a/frontend/src/components/bills/Create.vue b/frontend/src/components/bills/Create.vue deleted file mode 100644 index 17a674f89e..0000000000 --- a/frontend/src/components/bills/Create.vue +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - diff --git a/frontend/src/components/bills/Index.vue b/frontend/src/components/bills/Index.vue deleted file mode 100644 index 535b32af15..0000000000 --- a/frontend/src/components/bills/Index.vue +++ /dev/null @@ -1,360 +0,0 @@ - - - - - \ No newline at end of file diff --git a/frontend/src/components/bills/RepeatFrequencyPeriod.vue b/frontend/src/components/bills/RepeatFrequencyPeriod.vue deleted file mode 100644 index a4714f81b2..0000000000 --- a/frontend/src/components/bills/RepeatFrequencyPeriod.vue +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - diff --git a/frontend/src/components/budgets/Index.vue b/frontend/src/components/budgets/Index.vue deleted file mode 100644 index cc9f2bdb46..0000000000 --- a/frontend/src/components/budgets/Index.vue +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/frontend/src/components/charts/DataConverter.vue b/frontend/src/components/charts/DataConverter.vue deleted file mode 100644 index cd767e3a53..0000000000 --- a/frontend/src/components/charts/DataConverter.vue +++ /dev/null @@ -1,187 +0,0 @@ - - - diff --git a/frontend/src/components/charts/DefaultBarOptions.vue b/frontend/src/components/charts/DefaultBarOptions.vue deleted file mode 100644 index 99aa184d24..0000000000 --- a/frontend/src/components/charts/DefaultBarOptions.vue +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - diff --git a/frontend/src/components/charts/DefaultLineOptions.vue b/frontend/src/components/charts/DefaultLineOptions.vue deleted file mode 100644 index b28ef99c29..0000000000 --- a/frontend/src/components/charts/DefaultLineOptions.vue +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - diff --git a/frontend/src/components/charts/DefaultPieOptions.vue b/frontend/src/components/charts/DefaultPieOptions.vue deleted file mode 100644 index 76a308fea8..0000000000 --- a/frontend/src/components/charts/DefaultPieOptions.vue +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - diff --git a/frontend/src/components/charts/FormatLabel.vue b/frontend/src/components/charts/FormatLabel.vue deleted file mode 100644 index b25fd1b681..0000000000 --- a/frontend/src/components/charts/FormatLabel.vue +++ /dev/null @@ -1,73 +0,0 @@ - - diff --git a/frontend/src/components/dashboard/BudgetLimitRow.vue b/frontend/src/components/dashboard/BudgetLimitRow.vue deleted file mode 100644 index d26762a4ef..0000000000 --- a/frontend/src/components/dashboard/BudgetLimitRow.vue +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - diff --git a/frontend/src/components/dashboard/BudgetListGroup.vue b/frontend/src/components/dashboard/BudgetListGroup.vue deleted file mode 100644 index bf6bc7e495..0000000000 --- a/frontend/src/components/dashboard/BudgetListGroup.vue +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - diff --git a/frontend/src/components/dashboard/BudgetRow.vue b/frontend/src/components/dashboard/BudgetRow.vue deleted file mode 100644 index bed13c0dba..0000000000 --- a/frontend/src/components/dashboard/BudgetRow.vue +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - diff --git a/frontend/src/components/dashboard/Calendar.vue b/frontend/src/components/dashboard/Calendar.vue deleted file mode 100644 index fb7ef8823c..0000000000 --- a/frontend/src/components/dashboard/Calendar.vue +++ /dev/null @@ -1,602 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/frontend/src/components/dashboard/Dashboard.vue b/frontend/src/components/dashboard/Dashboard.vue deleted file mode 100644 index deb3c06a09..0000000000 --- a/frontend/src/components/dashboard/Dashboard.vue +++ /dev/null @@ -1,66 +0,0 @@ - - - - - diff --git a/frontend/src/components/dashboard/DashboardListLarge.vue b/frontend/src/components/dashboard/DashboardListLarge.vue deleted file mode 100644 index d69880bb97..0000000000 --- a/frontend/src/components/dashboard/DashboardListLarge.vue +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - diff --git a/frontend/src/components/dashboard/DashboardListMedium.vue b/frontend/src/components/dashboard/DashboardListMedium.vue deleted file mode 100644 index 3f840cb95e..0000000000 --- a/frontend/src/components/dashboard/DashboardListMedium.vue +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - diff --git a/frontend/src/components/dashboard/DashboardListSmall.vue b/frontend/src/components/dashboard/DashboardListSmall.vue deleted file mode 100644 index 9dbe46bbbf..0000000000 --- a/frontend/src/components/dashboard/DashboardListSmall.vue +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - diff --git a/frontend/src/components/dashboard/MainAccount.vue b/frontend/src/components/dashboard/MainAccount.vue deleted file mode 100644 index 113b43390c..0000000000 --- a/frontend/src/components/dashboard/MainAccount.vue +++ /dev/null @@ -1,146 +0,0 @@ - - - - - diff --git a/frontend/src/components/dashboard/MainAccountChart.vue b/frontend/src/components/dashboard/MainAccountChart.vue deleted file mode 100644 index 56bf34714c..0000000000 --- a/frontend/src/components/dashboard/MainAccountChart.vue +++ /dev/null @@ -1,35 +0,0 @@ - - - diff --git a/frontend/src/components/dashboard/MainAccountList.vue b/frontend/src/components/dashboard/MainAccountList.vue deleted file mode 100644 index 3d80960e9d..0000000000 --- a/frontend/src/components/dashboard/MainAccountList.vue +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - diff --git a/frontend/src/components/dashboard/MainBillsList.vue b/frontend/src/components/dashboard/MainBillsList.vue deleted file mode 100644 index ae43cdf0ff..0000000000 --- a/frontend/src/components/dashboard/MainBillsList.vue +++ /dev/null @@ -1,164 +0,0 @@ - - - - diff --git a/frontend/src/components/dashboard/MainBudgetList.vue b/frontend/src/components/dashboard/MainBudgetList.vue deleted file mode 100644 index 5c19c2c6be..0000000000 --- a/frontend/src/components/dashboard/MainBudgetList.vue +++ /dev/null @@ -1,278 +0,0 @@ - - - - - - diff --git a/frontend/src/components/dashboard/MainCategoryList.vue b/frontend/src/components/dashboard/MainCategoryList.vue deleted file mode 100644 index 20a322f59d..0000000000 --- a/frontend/src/components/dashboard/MainCategoryList.vue +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - diff --git a/frontend/src/components/dashboard/MainCreditList.vue b/frontend/src/components/dashboard/MainCreditList.vue deleted file mode 100644 index 61be807717..0000000000 --- a/frontend/src/components/dashboard/MainCreditList.vue +++ /dev/null @@ -1,169 +0,0 @@ - - - - - diff --git a/frontend/src/components/dashboard/MainDebitList.vue b/frontend/src/components/dashboard/MainDebitList.vue deleted file mode 100644 index 15dcf36f2b..0000000000 --- a/frontend/src/components/dashboard/MainDebitList.vue +++ /dev/null @@ -1,169 +0,0 @@ - - - - - diff --git a/frontend/src/components/dashboard/MainPiggyList.vue b/frontend/src/components/dashboard/MainPiggyList.vue deleted file mode 100644 index dcc47b536e..0000000000 --- a/frontend/src/components/dashboard/MainPiggyList.vue +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - diff --git a/frontend/src/components/dashboard/TopBoxes.vue b/frontend/src/components/dashboard/TopBoxes.vue deleted file mode 100644 index f80fedb11c..0000000000 --- a/frontend/src/components/dashboard/TopBoxes.vue +++ /dev/null @@ -1,313 +0,0 @@ - - - - - diff --git a/frontend/src/components/form/GenericAttachments.vue b/frontend/src/components/form/GenericAttachments.vue deleted file mode 100644 index 8b11710bfe..0000000000 --- a/frontend/src/components/form/GenericAttachments.vue +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - diff --git a/frontend/src/components/form/GenericCheckbox.vue b/frontend/src/components/form/GenericCheckbox.vue deleted file mode 100644 index 0cc2074c37..0000000000 --- a/frontend/src/components/form/GenericCheckbox.vue +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - diff --git a/frontend/src/components/form/GenericCurrency.vue b/frontend/src/components/form/GenericCurrency.vue deleted file mode 100644 index c0cbff5266..0000000000 --- a/frontend/src/components/form/GenericCurrency.vue +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - diff --git a/frontend/src/components/form/GenericGroup.vue b/frontend/src/components/form/GenericGroup.vue deleted file mode 100644 index 1ea9d244a7..0000000000 --- a/frontend/src/components/form/GenericGroup.vue +++ /dev/null @@ -1,116 +0,0 @@ - - - - -import VueTypeaheadBootstrap from 'vue-typeahead-bootstrap'; -import {debounce} from "lodash"; - - diff --git a/frontend/src/components/form/GenericLocation.vue b/frontend/src/components/form/GenericLocation.vue deleted file mode 100644 index bbdcb3a75b..0000000000 --- a/frontend/src/components/form/GenericLocation.vue +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - diff --git a/frontend/src/components/form/GenericTextInput.vue b/frontend/src/components/form/GenericTextInput.vue deleted file mode 100644 index 59b542de39..0000000000 --- a/frontend/src/components/form/GenericTextInput.vue +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - diff --git a/frontend/src/components/form/GenericTextarea.vue b/frontend/src/components/form/GenericTextarea.vue deleted file mode 100644 index 10171fc694..0000000000 --- a/frontend/src/components/form/GenericTextarea.vue +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - diff --git a/frontend/src/components/new-user/Index.vue b/frontend/src/components/new-user/Index.vue deleted file mode 100644 index 1f00586648..0000000000 --- a/frontend/src/components/new-user/Index.vue +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - diff --git a/frontend/src/components/partials/Alert.vue b/frontend/src/components/partials/Alert.vue deleted file mode 100644 index 59fd9e5561..0000000000 --- a/frontend/src/components/partials/Alert.vue +++ /dev/null @@ -1,37 +0,0 @@ - - - \ No newline at end of file diff --git a/frontend/src/components/store/index.js b/frontend/src/components/store/index.js deleted file mode 100644 index 32af6ede47..0000000000 --- a/frontend/src/components/store/index.js +++ /dev/null @@ -1,136 +0,0 @@ -/* - * index.js - * Copyright (c) 2020 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -import Vue from 'vue' -import Vuex, {createLogger} from 'vuex' -import transactions_create from './modules/transactions/create'; -import transactions_edit from './modules/transactions/edit'; -import dashboard_index from './modules/dashboard/index'; -import root_store from './modules/root'; -import accounts_index from './modules/accounts/index'; - -Vue.use(Vuex) -const debug = process.env.NODE_ENV !== 'production' - -export default new Vuex.Store( - { - namespaced: true, - modules: { - root: root_store, - transactions: { - namespaced: true, - modules: { - create: transactions_create, - edit: transactions_edit - } - }, - accounts: { - namespaced: true, - modules: { - index: accounts_index - }, - }, - dashboard: { - namespaced: true, - modules: { - index: dashboard_index - } - } - }, - strict: debug, - plugins: debug ? [createLogger()] : [], - state: { - currencyPreference: {}, - locale: 'en-US', - listPageSize: 50 - }, - mutations: { - setCurrencyPreference(state, payload) { - state.currencyPreference = payload.payload; - }, - initialiseStore(state) { - // console.log('Now in initialiseStore()') - // if locale in local storage: - if (localStorage.locale) { - state.locale = localStorage.locale; - return; - } - - // set locale from HTML: - let localeToken = document.head.querySelector('meta[name="locale"]'); - if (localeToken) { - state.locale = localeToken.content; - localStorage.locale = localeToken.content; - } - } - }, - getters: { - currencyCode: state => { - return state.currencyPreference.code; - }, - currencyPreference: state => { - return state.currencyPreference; - }, - currencyId: state => { - return state.currencyPreference.id; - }, - locale: state => { - return state.locale; - } - }, - actions: { - - updateCurrencyPreference(context) { - // console.log('Now in updateCurrencyPreference'); - if (localStorage.currencyPreference) { - context.commit('setCurrencyPreference', {payload: JSON.parse(localStorage.currencyPreference)}); - return; - } - axios.get('./api/v1/currencies/default') - .then(response => { - let currencyResponse = { - id: parseInt(response.data.data.id), - name: response.data.data.attributes.name, - symbol: response.data.data.attributes.symbol, - code: response.data.data.attributes.code, - decimal_places: parseInt(response.data.data.attributes.decimal_places), - }; - localStorage.currencyPreference = JSON.stringify(currencyResponse); - //console.log('getCurrencyPreference from server') - //console.log(JSON.stringify(currencyResponse)); - context.commit('setCurrencyPreference', {payload: currencyResponse}); - }).catch(err => { - // console.log('Got error response.'); - console.error(err); - context.commit('setCurrencyPreference', { - payload: { - id: 1, - name: 'Euro', - symbol: '€', - code: 'EUR', - decimal_places: 2 - } - }); - }); - - } - } - } -); \ No newline at end of file diff --git a/frontend/src/components/store/modules/accounts/index.js b/frontend/src/components/store/modules/accounts/index.js deleted file mode 100644 index 3a0c552534..0000000000 --- a/frontend/src/components/store/modules/accounts/index.js +++ /dev/null @@ -1,59 +0,0 @@ -/* - * index.js - * Copyright (c) 2021 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -// initial state -const state = () => ( - { - orderMode: false, - activeFilter: 1 - } -) - - -// getters -const getters = { - orderMode: state => { - return state.orderMode; - }, - activeFilter: state => { - return state.activeFilter; - } -} - -// actions -const actions = {} - -// mutations -const mutations = { - setOrderMode(state, payload) { - state.orderMode = payload; - }, - setActiveFilter(state, payload) { - state.activeFilter = payload; - } -} - -export default { - namespaced: true, - state, - getters, - actions, - mutations -} diff --git a/frontend/src/components/store/modules/dashboard/index.js b/frontend/src/components/store/modules/dashboard/index.js deleted file mode 100644 index 7bca42b615..0000000000 --- a/frontend/src/components/store/modules/dashboard/index.js +++ /dev/null @@ -1,222 +0,0 @@ -/* - * index.js - * Copyright (c) 2020 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -// initial state -import startOfDay from "date-fns/startOfDay"; -import endOfDay from 'date-fns/endOfDay' -import startOfWeek from 'date-fns/startOfWeek' -import endOfWeek from 'date-fns/endOfWeek' -import startOfQuarter from 'date-fns/startOfQuarter'; -import endOfQuarter from 'date-fns/endOfQuarter'; -import endOfMonth from "date-fns/endOfMonth"; -import startOfMonth from 'date-fns/startOfMonth'; - -const state = () => ( - { - viewRange: 'default', - start: null, - end: null, - defaultStart: null, - defaultEnd: null, - } -) - - -// getters -const getters = { - start: state => { - return state.start; - }, - end: state => { - return state.end; - }, - defaultStart: state => { - return state.defaultStart; - }, - defaultEnd: state => { - return state.defaultEnd; - }, - viewRange: state => { - return state.viewRange; - } -} - -// actions -const actions = { - initialiseStore(context) { - // console.log('initialiseStore for dashboard.'); - - // restore from local storage: - context.dispatch('restoreViewRange'); - - axios.get('./api/v1/preferences/viewRange') - .then(response => { - let viewRange = response.data.data.attributes.data; - let oldViewRange = context.getters.viewRange; - context.commit('setViewRange', viewRange); - if (viewRange !== oldViewRange) { - // console.log('View range changed from "' + oldViewRange + '" to "' + viewRange + '"'); - context.dispatch('setDatesFromViewRange'); - } - if (viewRange === oldViewRange) { - // console.log('Restore view range dates'); - context.dispatch('restoreViewRangeDates'); - } - } - ).catch(() => { - context.commit('setViewRange', '1M'); - context.dispatch('setDatesFromViewRange'); - }); - - }, - restoreViewRangeDates: function (context) { - // check local storage first? - if (localStorage.viewRangeStart) { - // console.log('view range start set from local storage.'); - context.commit('setStart', new Date(localStorage.viewRangeStart)); - } - if (localStorage.viewRangeEnd) { - // console.log('view range end set from local storage.'); - context.commit('setEnd', new Date(localStorage.viewRangeEnd)); - } - // also set default: - if (localStorage.viewRangeDefaultStart) { - // console.log('view range default start set from local storage.'); - // console.log(localStorage.viewRangeDefaultStart); - context.commit('setDefaultStart', new Date(localStorage.viewRangeDefaultStart)); - } - if (localStorage.viewRangeDefaultEnd) { - // console.log('view range default end set from local storage.'); - // console.log(localStorage.viewRangeDefaultEnd); - context.commit('setDefaultEnd', new Date(localStorage.viewRangeDefaultEnd)); - } - }, - restoreViewRange: function (context) { - // console.log('restoreViewRange'); - let viewRange = localStorage.getItem('viewRange'); - if (null !== viewRange) { - // console.log('restored restoreViewRange ' + viewRange ); - context.commit('setViewRange', viewRange); - } - }, - setDatesFromViewRange(context) { - let start; - let end; - let viewRange = context.getters.viewRange; - let today = new Date; - // console.log('Will recreate view range on ' + viewRange); - switch (viewRange) { - case '1D': - // today: - start = startOfDay(today); - end = endOfDay(today); - break; - case '1W': - // this week: - start = startOfDay(startOfWeek(today, {weekStartsOn: 1})); - end = endOfDay(endOfWeek(today, {weekStartsOn: 1})); - break; - case '1M': - // this month: - start = startOfDay(startOfMonth(today)); - end = endOfDay(endOfMonth(today)); - break; - case '3M': - // this quarter - start = startOfDay(startOfQuarter(today)); - end = endOfDay(endOfQuarter(today)); - break; - case '6M': - // this half-year - if (today.getMonth() <= 5) { - start = new Date(today); - start.setMonth(0); - start.setDate(1); - start = startOfDay(start); - end = new Date(today); - end.setMonth(5); - end.setDate(30); - end = endOfDay(start); - } - if (today.getMonth() > 5) { - start = new Date(today); - start.setMonth(6); - start.setDate(1); - start = startOfDay(start); - end = new Date(today); - end.setMonth(11); - end.setDate(31); - end = endOfDay(start); - } - break; - case '1Y': - // this year - start = new Date(today); - start.setMonth(0); - start.setDate(1); - start = startOfDay(start); - - end = new Date(today); - end.setMonth(11); - end.setDate(31); - end = endOfDay(end); - break; - } - // console.log('Range is ' + viewRange); - // console.log('Start is ' + start); - // console.log('End is ' + end); - context.commit('setStart', start); - context.commit('setEnd', end); - context.commit('setDefaultStart', start); - context.commit('setDefaultEnd', end); - } -} - -// mutations -const mutations = { - setStart(state, value) { - state.start = value; - window.localStorage.setItem('viewRangeStart', value); - }, - setEnd(state, value) { - state.end = value; - window.localStorage.setItem('viewRangeEnd', value); - }, - setDefaultStart(state, value) { - state.defaultStart = value; - window.localStorage.setItem('viewRangeDefaultStart', value); - }, - setDefaultEnd(state, value) { - state.defaultEnd = value; - window.localStorage.setItem('viewRangeDefaultEnd', value); - }, - setViewRange(state, range) { - state.viewRange = range; - window.localStorage.setItem('viewRange', range); - } -} - -export default { - namespaced: true, - state, - getters, - actions, - mutations -} diff --git a/frontend/src/components/store/modules/root.js b/frontend/src/components/store/modules/root.js deleted file mode 100644 index f06fd14fbe..0000000000 --- a/frontend/src/components/store/modules/root.js +++ /dev/null @@ -1,138 +0,0 @@ -/* - * root.js - * Copyright (c) 2021 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -// initial state -const state = () => ( - { - listPageSize: 33, - timezone: '', - cacheKey: { - age: 0, - value: 'empty', - }, - } -) - - -// getters -const getters = { - listPageSize: state => { - return state.listPageSize; - }, - timezone: state => { - // console.log('Wil return ' + state.listPageSize); - return state.timezone; - }, - cacheKey: state => { - return state.cacheKey.value; - }, -} - -// actions -const actions = { - initialiseStore(context) { - // cache key auto refreshes every day - // console.log('Now in initialize store.') - if (localStorage.cacheKey) { - // console.log('Storage has cache key: '); - // console.log(localStorage.cacheKey); - let object = JSON.parse(localStorage.cacheKey); - if (Date.now() - object.age > 86400000) { - // console.log('Key is here but is old.'); - context.commit('refreshCacheKey'); - } else { - // console.log('Cache key from local storage: ' + object.value); - context.commit('setCacheKey', object); - } - } else { - // console.log('No key need new one.'); - context.commit('refreshCacheKey'); - } - if (localStorage.listPageSize) { - state.listPageSize = localStorage.listPageSize; - context.commit('setListPageSize', {length: localStorage.listPageSize}); - } - if (!localStorage.listPageSize) { - axios.get('./api/v1/preferences/listPageSize') - .then(response => { - // console.log('from API: listPageSize is ' + parseInt(response.data.data.attributes.data)); - context.commit('setListPageSize', {length: parseInt(response.data.data.attributes.data)}); - } - ); - } - if (localStorage.timezone) { - state.timezone = localStorage.timezone; - context.commit('setTimezone', {timezone: localStorage.timezone}); - } - if (!localStorage.timezone) { - axios.get('./api/v1/configuration/app.timezone') - .then(response => { - context.commit('setTimezone', {timezone: response.data.data.value}); - } - ); - } - } -} - -// mutations -const mutations = { - refreshCacheKey(state) { - let age = Date.now(); - let N = 8; - let cacheKey = Array(N+1).join((Math.random().toString(36)+'00000000000000000').slice(2, 18)).slice(0, N); - let object = {age: age, value: cacheKey}; - // console.log('Store new key in string JSON'); - // console.log(JSON.stringify(object)); - localStorage.cacheKey = JSON.stringify(object); - state.cacheKey = {age: age, value: cacheKey}; - // console.log('Refresh: cachekey is now ' + cacheKey); - }, - setCacheKey(state, payload) { - // console.log('Stored cache key in localstorage.'); - // console.log(payload); - // console.log(JSON.stringify(payload)); - localStorage.cacheKey = JSON.stringify(payload); - state.cacheKey = payload; - }, - setListPageSize(state, payload) { - // console.log('Got a payload in setListPageSize'); - // console.log(payload); - let number = parseInt(payload.length); - if (0 !== number) { - state.listPageSize = number; - localStorage.listPageSize = number; - } - }, - setTimezone(state, payload) { - - if ('' !== payload.timezone) { - state.timezone = payload.timezone; - localStorage.timezone = payload.timezone; - } - }, -} - -export default { - namespaced: true, - state, - getters, - actions, - mutations -} diff --git a/frontend/src/components/store/modules/transactions/create.js b/frontend/src/components/store/modules/transactions/create.js deleted file mode 100644 index 829c83e9cf..0000000000 --- a/frontend/src/components/store/modules/transactions/create.js +++ /dev/null @@ -1,153 +0,0 @@ -/* - * create.js - * Copyright (c) 2020 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -const lodashClonedeep = require('lodash.clonedeep'); - -import {getDefaultErrors, getDefaultTransaction} from '../../../../shared/transactions'; - -// initial state -const state = () => ({ - transactionType: 'any', - groupTitle: '', - transactions: [], - customDateFields: { - interest_date: false, - book_date: false, - process_date: false, - due_date: false, - payment_date: false, - invoice_date: false, - }, - defaultTransaction: getDefaultTransaction(), - defaultErrors: getDefaultErrors() - } -) - - -// getters -const getters = { - transactions: state => { - return state.transactions; - }, - defaultErrors: state => { - return state.defaultErrors; - }, - groupTitle: state => { - return state.groupTitle; - }, - transactionType: state => { - return state.transactionType; - }, - accountToTransaction: state => { -// See reference nr. 1 - // possible API point!! - return state.accountToTransaction; - }, - defaultTransaction: state => { - return state.defaultTransaction; - }, - sourceAllowedTypes: state => { - return state.sourceAllowedTypes; - }, - destinationAllowedTypes: state => { - return state.destinationAllowedTypes; - }, - allowedOpposingTypes: state => { - return state.allowedOpposingTypes; - }, - customDateFields: state => { - return state.customDateFields; - } - // // `getters` is localized to this module's getters - // // you can use rootGetters via 4th argument of getters - // someGetter (state, getters, rootState, rootGetters) { - // getters.someOtherGetter // -> 'foo/someOtherGetter' - // rootGetters.someOtherGetter // -> 'someOtherGetter' - // rootGetters['bar/someOtherGetter'] // -> 'bar/someOtherGetter' - // }, - -} - -// actions -const actions = {} - -// mutations -const mutations = { - addTransaction(state) { - let newTransaction = lodashClonedeep(state.defaultTransaction); - newTransaction.errors = lodashClonedeep(state.defaultErrors); - state.transactions.push(newTransaction); - }, - resetErrors(state, payload) { - //console.log('resetErrors for index ' + payload.index); - state.transactions[payload.index].errors = lodashClonedeep(state.defaultErrors); - }, - resetTransactions(state) { - // console.log('Store: Record call to resetTransactions :('); - state.transactions = []; - }, - setGroupTitle(state, payload) { - state.groupTitle = payload.groupTitle; - }, - setCustomDateFields(state, payload) { - state.customDateFields = payload; - }, - deleteTransaction(state, payload) { - // console.log('Record call to deleteTransaction!'); - state.transactions.splice(payload.index, 1); - // console.log('Deleted transaction ' + payload.index); - // console.log(state.transactions); - // if (0 === state.transactions.length) { - // console.log('array is empty!'); - // } - }, - setTransactionType(state, transactionType) { - state.transactionType = transactionType; - }, - setAllowedOpposingTypes(state, allowedOpposingTypes) { - state.allowedOpposingTypes = allowedOpposingTypes; - }, - setAccountToTransaction(state, payload) { - state.accountToTransaction = payload; - }, - updateField(state, payload) { - state.transactions[payload.index][payload.field] = payload.value; - }, - setTransactionError(state, payload) { - //console.log('Will set transactions[' + payload.index + '][errors][' + payload.field + '] to '); - //console.log(payload.errors); - state.transactions[payload.index].errors[payload.field] = payload.errors; - }, - setDestinationAllowedTypes(state, payload) { - // console.log('Destination allowed types was changed!'); - state.destinationAllowedTypes = payload; - }, - setSourceAllowedTypes(state, payload) { - state.sourceAllowedTypes = payload; - } -} - -export default { - namespaced: true, - state, - getters, - actions, - mutations -} diff --git a/frontend/src/components/store/modules/transactions/edit.js b/frontend/src/components/store/modules/transactions/edit.js deleted file mode 100644 index c813b5c26d..0000000000 --- a/frontend/src/components/store/modules/transactions/edit.js +++ /dev/null @@ -1,40 +0,0 @@ -/* - * edit.js - * Copyright (c) 2021 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -// initial state -const state = () => ({}); - - -// getters -const getters = {}; - -// actions -const actions = {}; - -// mutations -const mutations = {}; - -export default { - namespaced: true, - state, - getters, - actions, - mutations -} diff --git a/frontend/src/components/transactions/Create.vue b/frontend/src/components/transactions/Create.vue deleted file mode 100644 index 7dfd65342f..0000000000 --- a/frontend/src/components/transactions/Create.vue +++ /dev/null @@ -1,905 +0,0 @@ - - - - - - diff --git a/frontend/src/components/transactions/Edit.vue b/frontend/src/components/transactions/Edit.vue deleted file mode 100644 index 77a670274b..0000000000 --- a/frontend/src/components/transactions/Edit.vue +++ /dev/null @@ -1,1195 +0,0 @@ - - - - - - diff --git a/frontend/src/components/transactions/Index.vue b/frontend/src/components/transactions/Index.vue deleted file mode 100644 index 89b229ceb9..0000000000 --- a/frontend/src/components/transactions/Index.vue +++ /dev/null @@ -1,177 +0,0 @@ - - - - - \ No newline at end of file diff --git a/frontend/src/components/transactions/SplitForm.vue b/frontend/src/components/transactions/SplitForm.vue deleted file mode 100644 index b4a4dca460..0000000000 --- a/frontend/src/components/transactions/SplitForm.vue +++ /dev/null @@ -1,464 +0,0 @@ - - - - - diff --git a/frontend/src/components/transactions/SplitPills.vue b/frontend/src/components/transactions/SplitPills.vue deleted file mode 100644 index cf9f535bbf..0000000000 --- a/frontend/src/components/transactions/SplitPills.vue +++ /dev/null @@ -1,57 +0,0 @@ - - - - - diff --git a/frontend/src/components/transactions/SwitchAccount.vue b/frontend/src/components/transactions/SwitchAccount.vue deleted file mode 100644 index 3706a88b13..0000000000 --- a/frontend/src/components/transactions/SwitchAccount.vue +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - diff --git a/frontend/src/components/transactions/TransactionAccount.vue b/frontend/src/components/transactions/TransactionAccount.vue deleted file mode 100644 index ff6fb8d969..0000000000 --- a/frontend/src/components/transactions/TransactionAccount.vue +++ /dev/null @@ -1,309 +0,0 @@ - - - - - diff --git a/frontend/src/components/transactions/TransactionAmount.vue b/frontend/src/components/transactions/TransactionAmount.vue deleted file mode 100644 index 38737b6294..0000000000 --- a/frontend/src/components/transactions/TransactionAmount.vue +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - diff --git a/frontend/src/components/transactions/TransactionAttachments.vue b/frontend/src/components/transactions/TransactionAttachments.vue deleted file mode 100644 index 84fdc8b0a9..0000000000 --- a/frontend/src/components/transactions/TransactionAttachments.vue +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - diff --git a/frontend/src/components/transactions/TransactionBill.vue b/frontend/src/components/transactions/TransactionBill.vue deleted file mode 100644 index 5bda067e35..0000000000 --- a/frontend/src/components/transactions/TransactionBill.vue +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - diff --git a/frontend/src/components/transactions/TransactionBudget.vue b/frontend/src/components/transactions/TransactionBudget.vue deleted file mode 100644 index 24e47b976e..0000000000 --- a/frontend/src/components/transactions/TransactionBudget.vue +++ /dev/null @@ -1,107 +0,0 @@ - - - - - diff --git a/frontend/src/components/transactions/TransactionCategory.vue b/frontend/src/components/transactions/TransactionCategory.vue deleted file mode 100644 index 9f6da4e538..0000000000 --- a/frontend/src/components/transactions/TransactionCategory.vue +++ /dev/null @@ -1,120 +0,0 @@ - - - - - \ No newline at end of file diff --git a/frontend/src/components/transactions/TransactionCustomDates.vue b/frontend/src/components/transactions/TransactionCustomDates.vue deleted file mode 100644 index fce3979110..0000000000 --- a/frontend/src/components/transactions/TransactionCustomDates.vue +++ /dev/null @@ -1,108 +0,0 @@ - - - - - diff --git a/frontend/src/components/transactions/TransactionDate.vue b/frontend/src/components/transactions/TransactionDate.vue deleted file mode 100644 index 2ba05c0068..0000000000 --- a/frontend/src/components/transactions/TransactionDate.vue +++ /dev/null @@ -1,99 +0,0 @@ - - - - - diff --git a/frontend/src/components/transactions/TransactionDescription.vue b/frontend/src/components/transactions/TransactionDescription.vue deleted file mode 100644 index b68121d85d..0000000000 --- a/frontend/src/components/transactions/TransactionDescription.vue +++ /dev/null @@ -1,100 +0,0 @@ - - - - - diff --git a/frontend/src/components/transactions/TransactionExternalUrl.vue b/frontend/src/components/transactions/TransactionExternalUrl.vue deleted file mode 100644 index 349111b041..0000000000 --- a/frontend/src/components/transactions/TransactionExternalUrl.vue +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - diff --git a/frontend/src/components/transactions/TransactionForeignAmount.vue b/frontend/src/components/transactions/TransactionForeignAmount.vue deleted file mode 100644 index dc96a5af86..0000000000 --- a/frontend/src/components/transactions/TransactionForeignAmount.vue +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - diff --git a/frontend/src/components/transactions/TransactionForeignCurrency.vue b/frontend/src/components/transactions/TransactionForeignCurrency.vue deleted file mode 100644 index 728390963a..0000000000 --- a/frontend/src/components/transactions/TransactionForeignCurrency.vue +++ /dev/null @@ -1,146 +0,0 @@ - - - - - diff --git a/frontend/src/components/transactions/TransactionGroupTitle.vue b/frontend/src/components/transactions/TransactionGroupTitle.vue deleted file mode 100644 index aa35d34ed4..0000000000 --- a/frontend/src/components/transactions/TransactionGroupTitle.vue +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - diff --git a/frontend/src/components/transactions/TransactionInternalReference.vue b/frontend/src/components/transactions/TransactionInternalReference.vue deleted file mode 100644 index 0652fd82c7..0000000000 --- a/frontend/src/components/transactions/TransactionInternalReference.vue +++ /dev/null @@ -1,74 +0,0 @@ - - - - - diff --git a/frontend/src/components/transactions/TransactionLinks.vue b/frontend/src/components/transactions/TransactionLinks.vue deleted file mode 100644 index 1c81805095..0000000000 --- a/frontend/src/components/transactions/TransactionLinks.vue +++ /dev/null @@ -1,390 +0,0 @@ - - - - - diff --git a/frontend/src/components/transactions/TransactionListLarge.vue b/frontend/src/components/transactions/TransactionListLarge.vue deleted file mode 100644 index cf17c04020..0000000000 --- a/frontend/src/components/transactions/TransactionListLarge.vue +++ /dev/null @@ -1,435 +0,0 @@ - - - - - - diff --git a/frontend/src/components/transactions/TransactionLocation.vue b/frontend/src/components/transactions/TransactionLocation.vue deleted file mode 100644 index 9ab2bbe73d..0000000000 --- a/frontend/src/components/transactions/TransactionLocation.vue +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - diff --git a/frontend/src/components/transactions/TransactionNotes.vue b/frontend/src/components/transactions/TransactionNotes.vue deleted file mode 100644 index 6bb594d609..0000000000 --- a/frontend/src/components/transactions/TransactionNotes.vue +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - diff --git a/frontend/src/components/transactions/TransactionPiggyBank.vue b/frontend/src/components/transactions/TransactionPiggyBank.vue deleted file mode 100644 index 8af0a74a1c..0000000000 --- a/frontend/src/components/transactions/TransactionPiggyBank.vue +++ /dev/null @@ -1,100 +0,0 @@ - - - - - diff --git a/frontend/src/components/transactions/TransactionTags.vue b/frontend/src/components/transactions/TransactionTags.vue deleted file mode 100644 index 884a14217b..0000000000 --- a/frontend/src/components/transactions/TransactionTags.vue +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - diff --git a/frontend/src/i18n.js b/frontend/src/i18n.js deleted file mode 100644 index aba9c88bb7..0000000000 --- a/frontend/src/i18n.js +++ /dev/null @@ -1,54 +0,0 @@ -/* - * i18n.js - * Copyright (c) 2020 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -// Create VueI18n instance with options -module.exports = new vuei18n({ - locale: document.documentElement.lang, // set locale - fallbackLocale: 'en', - messages: { - 'bg': require('./locales/bg.json'), - 'cs': require('./locales/cs.json'), - 'de': require('./locales/de.json'), - 'en': require('./locales/en.json'), - 'en-us': require('./locales/en.json'), - 'en-gb': require('./locales/en-gb.json'), - 'es': require('./locales/es.json'), - 'el': require('./locales/el.json'), - 'fr': require('./locales/fr.json'), - 'hu': require('./locales/hu.json'), - //'id': require('./locales/id.json'), - 'it': require('./locales/it.json'), - 'ja': require('./locales/ja.json'), - 'nl': require('./locales/nl.json'), - 'nb': require('./locales/nb.json'), - 'pl': require('./locales/pl.json'), - 'fi': require('./locales/fi.json'), - 'pt-br': require('./locales/pt-br.json'), - 'pt-pt': require('./locales/pt.json'), - 'ro': require('./locales/ro.json'), - 'ru': require('./locales/ru.json'), - //'zh': require('./locales/zh.json'), - 'zh-tw': require('./locales/zh-tw.json'), - 'zh-cn': require('./locales/zh-cn.json'), - 'sk': require('./locales/sk.json'), - 'sv': require('./locales/sv.json'), - 'vi': require('./locales/vi.json'), - } -}); diff --git a/frontend/src/locales/bg.json b/frontend/src/locales/bg.json deleted file mode 100644 index c612b802c9..0000000000 --- a/frontend/src/locales/bg.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "\u041f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435", - "Withdrawal": "\u0422\u0435\u0433\u043b\u0435\u043d\u0435", - "Deposit": "\u0414\u0435\u043f\u043e\u0437\u0438\u0442", - "date_and_time": "Date and time", - "no_currency": "(\u0431\u0435\u0437 \u0432\u0430\u043b\u0443\u0442\u0430)", - "date": "\u0414\u0430\u0442\u0430", - "time": "Time", - "no_budget": "(\u0431\u0435\u0437 \u0431\u044e\u0434\u0436\u0435\u0442)", - "destination_account": "\u041f\u0440\u0438\u0445\u043e\u0434\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430", - "source_account": "\u0420\u0430\u0437\u0445\u043e\u0434\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430", - "single_split": "\u0420\u0430\u0437\u0434\u0435\u043b", - "create_new_transaction": "Create a new transaction", - "balance": "\u0421\u0430\u043b\u0434\u043e", - "transaction_journal_extra": "Extra information", - "transaction_journal_meta": "\u041c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f", - "basic_journal_information": "Basic transaction information", - "bills_to_pay": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", - "left_to_spend": "\u041e\u0441\u0442\u0430\u043d\u0430\u043b\u0438 \u0437\u0430 \u0445\u0430\u0440\u0447\u0435\u043d\u0435", - "attachments": "\u041f\u0440\u0438\u043a\u0430\u0447\u0435\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435", - "net_worth": "\u041d\u0435\u0442\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442", - "bill": "\u0421\u043c\u0435\u0442\u043a\u0430", - "no_bill": "(\u043d\u044f\u043c\u0430 \u0441\u043c\u0435\u0442\u043a\u0430)", - "tags": "\u0415\u0442\u0438\u043a\u0435\u0442\u0438", - "internal_reference": "Internal reference", - "external_url": "External URL", - "no_piggy_bank": "(\u0431\u0435\u0437 \u043a\u0430\u0441\u0438\u0447\u043a\u0430)", - "paid": "\u041f\u043b\u0430\u0442\u0435\u043d\u0438", - "notes": "\u0411\u0435\u043b\u0435\u0436\u043a\u0438", - "yourAccounts": "\u0412\u0430\u0448\u0438\u0442\u0435 \u0441\u043c\u0435\u0442\u043a\u0438", - "go_to_asset_accounts": "\u0412\u0438\u0436\u0442\u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0442\u0435 \u0441\u0438", - "delete_account": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b", - "transaction_table_description": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u0449\u0430 \u0432\u0430\u0448\u0438\u0442\u0435 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438", - "account": "\u0421\u043c\u0435\u0442\u043a\u0430", - "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", - "amount": "\u0421\u0443\u043c\u0430", - "budget": "\u0411\u044e\u0434\u0436\u0435\u0442", - "category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f", - "opposing_account": "\u041f\u0440\u043e\u0442\u0438\u0432\u043e\u043f\u043e\u043b\u043e\u0436\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430", - "budgets": "\u0411\u044e\u0434\u0436\u0435\u0442\u0438", - "categories": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438", - "go_to_budgets": "\u0412\u0438\u0436\u0442\u0435 \u0431\u044e\u0434\u0436\u0435\u0442\u0438\u0442\u0435 \u0441\u0438", - "income": "\u041f\u0440\u0438\u0445\u043e\u0434\u0438", - "go_to_deposits": "\u041e\u0442\u0438\u0434\u0438 \u0432 \u0434\u0435\u043f\u043e\u0437\u0438\u0442\u0438", - "go_to_categories": "\u0412\u0438\u0436 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438\u0442\u0435 \u0441\u0438", - "expense_accounts": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", - "go_to_expenses": "\u041e\u0442\u0438\u0434\u0438 \u0432 \u0420\u0430\u0437\u0445\u043e\u0434\u0438", - "go_to_bills": "\u0412\u0438\u0436 \u0441\u043c\u0435\u0442\u043a\u0438\u0442\u0435 \u0441\u0438", - "bills": "\u0421\u043c\u0435\u0442\u043a\u0438", - "last_thirty_days": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u0442\u0440\u0438\u0439\u0441\u0435\u0442 \u0434\u043d\u0438", - "last_seven_days": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u0441\u0435\u0434\u0435\u043c \u0434\u043d\u0438", - "go_to_piggies": "\u0412\u0438\u0436 \u043a\u0430\u0441\u0438\u0447\u043a\u0438\u0442\u0435 \u0441\u0438", - "saved": "\u0417\u0430\u043f\u0438\u0441\u0430\u043d", - "piggy_banks": "\u041a\u0430\u0441\u0438\u0447\u043a\u0438", - "piggy_bank": "\u041a\u0430\u0441\u0438\u0447\u043a\u0430", - "amounts": "\u0421\u0443\u043c\u0438", - "left": "\u041e\u0441\u0442\u0430\u043d\u0430\u043b\u0438", - "spent": "\u041f\u043e\u0445\u0430\u0440\u0447\u0435\u043d\u0438", - "Default asset account": "\u0421\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", - "search_results": "\u0420\u0435\u0437\u0443\u043b\u0442\u0430\u0442\u0438 \u043e\u0442 \u0442\u044a\u0440\u0441\u0435\u043d\u0435\u0442\u043e", - "include": "Include?", - "transaction": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f", - "account_role_defaultAsset": "\u0421\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", - "account_role_savingAsset": "\u0421\u043f\u0435\u0441\u0442\u043e\u0432\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430", - "account_role_sharedAsset": "\u0421\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u0435\u043d\u0438 \u0430\u043a\u0442\u0438\u0432\u0438", - "clear_location": "\u0418\u0437\u0447\u0438\u0441\u0442\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e", - "account_role_ccAsset": "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430 \u043a\u0430\u0440\u0442\u0430", - "account_role_cashWalletAsset": "\u041f\u0430\u0440\u0438\u0447\u0435\u043d \u043f\u043e\u0440\u0442\u0444\u0435\u0439\u043b", - "daily_budgets": "\u0414\u043d\u0435\u0432\u043d\u0438 \u0431\u044e\u0434\u0436\u0435\u0442\u0438", - "weekly_budgets": "\u0421\u0435\u0434\u043c\u0438\u0447\u043d\u0438 \u0431\u044e\u0434\u0436\u0435\u0442\u0438", - "monthly_budgets": "\u041c\u0435\u0441\u0435\u0447\u043d\u0438 \u0431\u044e\u0434\u0436\u0435\u0442\u0438", - "journals_in_period_for_account_js": "All transactions for account {title} between {start} and {end}", - "quarterly_budgets": "\u0422\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u043d\u0438 \u0431\u044e\u0434\u0436\u0435\u0442\u0438", - "create_new_expense": "\u0421\u044a\u0437\u0434\u0430\u0439 \u043d\u043e\u0432\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", - "create_new_revenue": "\u0421\u044a\u0437\u0434\u0430\u0439 \u043d\u043e\u0432\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u0438", - "create_new_liabilities": "Create new liability", - "half_year_budgets": "\u0428\u0435\u0441\u0442\u043c\u0435\u0441\u0435\u0447\u043d\u0438 \u0431\u044e\u0434\u0436\u0435\u0442\u0438", - "yearly_budgets": "\u0413\u043e\u0434\u0438\u0448\u043d\u0438 \u0431\u044e\u0434\u0436\u0435\u0442\u0438", - "split_transaction_title": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043d\u0430 \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f", - "errors_submission": "\u0418\u043c\u0430\u0448\u0435 \u043d\u0435\u0449\u043e \u043d\u0435\u0440\u0435\u0434\u043d\u043e \u0441 \u0432\u0430\u0448\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0438. \u041c\u043e\u043b\u044f, \u043f\u0440\u043e\u0432\u0435\u0440\u0435\u0442\u0435 \u0433\u0440\u0435\u0448\u043a\u0438\u0442\u0435.", - "flash_error": "\u0413\u0440\u0435\u0448\u043a\u0430!", - "store_transaction": "Store transaction", - "flash_success": "\u0423\u0441\u043f\u0435\u0445!", - "create_another": "\u0421\u043b\u0435\u0434 \u0441\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435\u0442\u043e \u0441\u0435 \u0432\u044a\u0440\u043d\u0435\u0442\u0435 \u0442\u0443\u043a, \u0437\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u043d\u043e\u0432\u0430.", - "update_transaction": "\u041e\u0431\u043d\u043e\u0432\u0438 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430", - "after_update_create_another": "\u0421\u043b\u0435\u0434 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435\u0442\u043e \u0441\u0435 \u0432\u044a\u0440\u043d\u0435\u0442\u0435 \u0442\u0443\u043a, \u0437\u0430 \u0434\u0430 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435 \u0441 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u044f\u0442\u0430.", - "transaction_updated_no_changes": "Transaction #{ID}<\/a> (\"{title}\") did not receive any changes.", - "transaction_updated_link": "Transaction #{ID}<\/a> (\"{title}\") has been updated.", - "spent_x_of_y": "Spent {amount} of {total}", - "search": "\u0422\u044a\u0440\u0441\u0435\u043d\u0435", - "create_new_asset": "\u0421\u044a\u0437\u0434\u0430\u0439 \u043d\u043e\u0432\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438", - "asset_accounts": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438", - "reset_after": "\u0418\u0437\u0447\u0438\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u0444\u043e\u0440\u043c\u0443\u043b\u044f\u0440\u0430 \u0441\u043b\u0435\u0434 \u0438\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435", - "bill_paid_on": "Paid on {date}", - "first_split_decides": "The first split determines the value of this field", - "first_split_overrules_source": "The first split may overrule the source account", - "first_split_overrules_destination": "The first split may overrule the destination account", - "transaction_stored_link": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f #{ID}(\"{title}\")<\/a> \u0431\u0435\u0448\u0435 \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u0430.", - "custom_period": "Custom period", - "reset_to_current": "Reset to current period", - "select_period": "Select a period", - "location": "\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435", - "other_budgets": "\u0412\u0440\u0435\u043c\u0435\u0432\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0431\u044e\u0434\u0436\u0435\u0442\u0438", - "journal_links": "\u0412\u0440\u044a\u0437\u043a\u0438 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f", - "go_to_withdrawals": "\u0412\u0438\u0436\u0442\u0435 \u0442\u0435\u0433\u043b\u0435\u043d\u0438\u044f\u0442\u0430 \u0441\u0438", - "revenue_accounts": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u0438", - "add_another_split": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0434\u0440\u0443\u0433 \u0440\u0430\u0437\u0434\u0435\u043b", - "actions": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f", - "earned": "\u0421\u043f\u0435\u0447\u0435\u043b\u0435\u043d\u0438", - "empty": "(\u043f\u0440\u0430\u0437\u043d\u043e)", - "edit": "\u041f\u0440\u043e\u043c\u0435\u043d\u0438", - "never": "\u041d\u0438\u043a\u043e\u0433\u0430", - "account_type_Loan": "\u0417\u0430\u0435\u043c", - "account_type_Mortgage": "\u0418\u043f\u043e\u0442\u0435\u043a\u0430", - "stored_new_account_js": "New account \"{name}<\/a>\" stored!", - "account_type_Debt": "\u0414\u044a\u043b\u0433", - "liability_direction_null_short": "Unknown", - "delete": "\u0418\u0437\u0442\u0440\u0438\u0439", - "store_new_asset_account": "\u0417\u0430\u043f\u0430\u043c\u0435\u0442\u0438 \u043d\u043e\u0432\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438", - "store_new_expense_account": "\u0417\u0430\u043f\u0430\u043c\u0435\u0442\u0438 \u043d\u043e\u0432\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", - "store_new_liabilities_account": "\u0417\u0430\u043f\u0430\u043c\u0435\u0442\u0438 \u043d\u043e\u0432\u043e \u0437\u0430\u0434\u044a\u043b\u0436\u0435\u043d\u0438\u0435", - "store_new_revenue_account": "\u0417\u0430\u043f\u0430\u043c\u0435\u0442\u0438 \u043d\u043e\u0432\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u0438", - "mandatoryFields": "\u0417\u0430\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u0438 \u043f\u043e\u043b\u0435\u0442\u0430", - "optionalFields": "\u041d\u0435\u0437\u0430\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u0438 \u043f\u043e\u043b\u0435\u0442\u0430", - "reconcile_this_account": "\u0421\u044a\u0433\u043b\u0430\u0441\u0443\u0432\u0430\u0439 \u0442\u0430\u0437\u0438 \u0441\u043c\u0435\u0442\u043a\u0430", - "interest_calc_weekly": "Per week", - "interest_calc_monthly": "\u041d\u0430 \u043c\u0435\u0441\u0435\u0446", - "interest_calc_quarterly": "Per quarter", - "interest_calc_half-year": "Per half year", - "interest_calc_yearly": "\u0413\u043e\u0434\u0438\u0448\u043d\u043e", - "liability_direction_credit": "I am owed this debt", - "liability_direction_debit": "I owe this debt to somebody else", - "liability_direction_credit_short": "Owed this debt", - "liability_direction_debit_short": "Owe this debt", - "account_type_debt": "Debt", - "account_type_loan": "Loan", - "left_in_debt": "Amount due", - "account_type_mortgage": "Mortgage", - "save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.", - "none_in_select_list": "(\u043d\u0438\u0449\u043e)", - "transaction_expand_split": "Expand split", - "transaction_collapse_split": "Collapse split", - "default_group_title_name": "(\u0431\u0435\u0437 \u0433\u0440\u0443\u043f\u0430)", - "bill_repeats_weekly": "Repeats weekly", - "bill_repeats_monthly": "Repeats monthly", - "bill_repeats_quarterly": "Repeats quarterly", - "bill_repeats_half-year": "Repeats every half year", - "bill_repeats_yearly": "Repeats yearly", - "bill_repeats_weekly_other": "Repeats every other week", - "bill_repeats_monthly_other": "Repeats every other month", - "bill_repeats_quarterly_other": "Repeats every other quarter", - "bill_repeats_half-year_other": "Repeats yearly", - "bill_repeats_yearly_other": "Repeats every other year", - "bill_repeats_weekly_skip": "Repeats every {skip} weeks", - "bill_repeats_monthly_skip": "Repeats every {skip} months", - "bill_repeats_quarterly_skip": "Repeats every {skip} quarters", - "bill_repeats_half-year_skip": "Repeats every {skip} half years", - "bill_repeats_yearly_skip": "Repeats every {skip} years", - "not_expected_period": "\u041d\u0435 \u0441\u0435 \u043e\u0447\u0430\u043a\u0432\u0430 \u0442\u043e\u0437\u0438 \u043f\u0435\u0440\u0438\u043e\u0434", - "subscriptions": "Subscriptions", - "bill_expected_date_js": "Expected {date}", - "inactive": "\u041d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e", - "forever": "Forever", - "extension_date_is": "Extension date is {date}", - "create_new_bill": "\u0421\u044a\u0437\u0434\u0430\u0439 \u043d\u043e\u0432\u0430 \u0441\u043c\u0435\u0442\u043a\u0430", - "store_new_bill": "\u0417\u0430\u043f\u0430\u043c\u0435\u0442\u0435\u0442\u0435 \u043d\u043e\u0432\u0430 \u0441\u043c\u0435\u0442\u043a\u0430", - "repeat_freq_yearly": "\u0435\u0436\u0435\u0433\u043e\u0434\u043d\u043e", - "repeat_freq_half-year": "\u043d\u0430 \u0432\u0441\u0435\u043a\u0438 6 \u043c\u0435\u0441\u0435\u0446\u0430", - "repeat_freq_quarterly": "\u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u043d\u043e", - "repeat_freq_monthly": "\u043c\u0435\u0441\u0435\u0447\u043d\u043e", - "repeat_freq_weekly": "\u0435\u0436\u0435\u0441\u0435\u0434\u043c\u0438\u0447\u043d\u043e", - "credit_card_type_monthlyFull": "Full payment every month", - "update_liabilities_account": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u0437\u0430\u0434\u044a\u043b\u0436\u0435\u043d\u0438\u0435", - "update_expense_account": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", - "update_revenue_account": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u0438", - "update_undefined_account": "Update account", - "update_asset_account": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438", - "updated_account_js": "Updated account \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "\u041a\u0430\u0441\u0438\u0447\u043a\u0430", - "percentage": "%", - "amount": "\u0421\u0443\u043c\u0430", - "lastActivity": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442", - "name": "\u0418\u043c\u0435", - "role": "\u041f\u0440\u0438\u0432\u0438\u043b\u0435\u0433\u0438\u0438", - "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", - "date": "\u0414\u0430\u0442\u0430", - "source_account": "\u0420\u0430\u0437\u0445\u043e\u0434\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430", - "destination_account": "\u041f\u0440\u0438\u0445\u043e\u0434\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430", - "category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f", - "iban": "IBAN", - "interest": "\u041b\u0438\u0445\u0432\u0430", - "interest_period": "Interest period", - "liability_type": "\u0412\u0438\u0434 \u043d\u0430 \u0437\u0430\u0434\u044a\u043b\u0436\u0435\u043d\u0438\u0435\u0442\u043e", - "liability_direction": "Liability in\/out", - "currentBalance": "\u0422\u0435\u043a\u0443\u0449 \u0431\u0430\u043b\u0430\u043d\u0441", - "next_expected_match": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449o \u043e\u0447\u0430\u043a\u0432\u0430\u043do \u0441\u044a\u0432\u043f\u0430\u0434\u0435\u043d\u0438\u0435", - "expected_info": "Next expected transaction", - "start_date": "Start date", - "end_date": "End date", - "payment_info": "Payment information" - }, - "config": { - "html_language": "bg", - "week_in_year_fns": "'Week' w, yyyy", - "month_and_day_fns": "MMMM d, y", - "quarter_fns": "'Q'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "\u0421\u0443\u043c\u0430 \u0432\u044a\u0432 \u0432\u0430\u043b\u0443\u0442\u0430", - "interest_date": "\u041f\u0430\u0434\u0435\u0436 \u043d\u0430 \u043b\u0438\u0445\u0432\u0430", - "name": "\u0418\u043c\u0435", - "amount": "\u0421\u0443\u043c\u0430", - "iban": "IBAN", - "BIC": "BIC", - "notes": "\u0411\u0435\u043b\u0435\u0436\u043a\u0438", - "location": "\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435", - "repeat_freq": "\u041f\u043e\u0432\u0442\u043e\u0440\u0435\u043d\u0438\u044f", - "skip": "\u041f\u0440\u043e\u043f\u0443\u0441\u043d\u0438", - "startdate": "\u041d\u0430\u0447\u0430\u043b\u043d\u0430 \u0434\u0430\u0442\u0430", - "enddate": "End date", - "object_group": "\u0413\u0440\u0443\u043f\u0430", - "attachments": "\u041f\u0440\u0438\u043a\u0430\u0447\u0435\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435", - "deletePermanently": "\u0411\u0435\u0437\u0432\u044a\u0437\u0432\u0440\u0430\u0442\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435", - "active": "\u0410\u043a\u0442\u0438\u0432\u0435\u043d", - "include_net_worth": "\u0412\u043a\u043b\u044e\u0447\u0438 \u0432 \u043e\u0431\u0449\u043e\u0442\u043e \u0431\u043e\u0433\u0430\u0442\u0441\u0442\u0432\u043e", - "cc_type": "\u041f\u043e\u0433\u0430\u0441\u0438\u0442\u0435\u043b\u0435\u043d \u043f\u043b\u0430\u043d \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u0430 \u043a\u0430\u0440\u0442\u0430", - "account_number": "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430", - "cc_monthly_payment_date": "\u0414\u0430\u0442\u0430 \u0437\u0430 \u043c\u0435\u0441\u0435\u0447\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435 \u043f\u043e \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u0430 \u043a\u0430\u0440\u0442\u0430", - "virtual_balance": "\u0412\u0438\u0440\u0442\u0443\u0430\u043b\u0435\u043d \u0431\u0430\u043b\u0430\u043d\u0441", - "opening_balance": "\u041d\u0430\u0447\u0430\u043b\u043d\u043e \u0441\u0430\u043b\u0434\u043e", - "opening_balance_date": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043d\u0430\u0447\u0430\u043b\u043d\u043e\u0442\u043e \u0441\u0430\u043b\u0434\u043e", - "date": "\u0414\u0430\u0442\u0430", - "interest": "\u041b\u0438\u0445\u0432\u0430", - "interest_period": "\u041b\u0438\u0445\u0432\u0435\u043d \u043f\u0435\u0440\u0438\u043e\u0434", - "currency_id": "\u0412\u0430\u043b\u0443\u0442\u0430", - "liability_type": "Liability type", - "account_role": "\u0420\u043e\u043b\u044f \u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430\u0442\u0430", - "liability_direction": "Liability in\/out", - "book_date": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043e\u0441\u0447\u0435\u0442\u043e\u0432\u043e\u0434\u044f\u0432\u0430\u043d\u0435", - "permDeleteWarning": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043d\u0435\u0449\u0430 \u043e\u0442 Firefly III \u0435 \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u043e.", - "account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?", - "also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.", - "also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.", - "process_date": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430", - "due_date": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043f\u0430\u0434\u0435\u0436", - "payment_date": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", - "invoice_date": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", - "amount_min": "\u041c\u0438\u043d\u0438\u043c\u0430\u043b\u043d\u0430 \u0441\u0443\u043c\u0430", - "amount_max": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u043d\u0430 \u0441\u0443\u043c\u0430", - "start_date": "\u041d\u0430\u0447\u0430\u043b\u043e \u043d\u0430 \u043e\u0431\u0445\u0432\u0430\u0442\u0430", - "end_date": "\u041a\u0440\u0430\u0439 \u043d\u0430 \u043e\u0431\u0445\u0432\u0430\u0442\u0430", - "extension_date": "Extension date" - } -} \ No newline at end of file diff --git a/frontend/src/locales/cs.json b/frontend/src/locales/cs.json deleted file mode 100644 index 60e1893e19..0000000000 --- a/frontend/src/locales/cs.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "P\u0159evod", - "Withdrawal": "V\u00fdb\u011br", - "Deposit": "Vklad", - "date_and_time": "Datum a \u010das", - "no_currency": "(\u017e\u00e1dn\u00e1 m\u011bna)", - "date": "Datum", - "time": "\u010cas", - "no_budget": "(\u017e\u00e1dn\u00fd rozpo\u010det)", - "destination_account": "C\u00edlov\u00fd \u00fa\u010det", - "source_account": "Zdrojov\u00fd \u00fa\u010det", - "single_split": "Rozd\u011blit", - "create_new_transaction": "Vytvo\u0159it novou transakci", - "balance": "Z\u016fstatek", - "transaction_journal_extra": "V\u00edce informac\u00ed", - "transaction_journal_meta": "Meta informace", - "basic_journal_information": "Basic transaction information", - "bills_to_pay": "Faktury k zaplacen\u00ed", - "left_to_spend": "Zb\u00fdv\u00e1 k utracen\u00ed", - "attachments": "P\u0159\u00edlohy", - "net_worth": "\u010cist\u00e9 jm\u011bn\u00ed", - "bill": "\u00da\u010det", - "no_bill": "(no bill)", - "tags": "\u0160t\u00edtky", - "internal_reference": "Intern\u00ed odkaz", - "external_url": "Extern\u00ed URL adresa", - "no_piggy_bank": "(\u017e\u00e1dn\u00e1 pokladni\u010dka)", - "paid": "Zaplaceno", - "notes": "Pozn\u00e1mky", - "yourAccounts": "Va\u0161e \u00fa\u010dty", - "go_to_asset_accounts": "Zobrazit \u00fa\u010dty s aktivy", - "delete_account": "Smazat \u00fa\u010det", - "transaction_table_description": "A table containing your transactions", - "account": "\u00da\u010det", - "description": "Popis", - "amount": "\u010c\u00e1stka", - "budget": "Rozpo\u010det", - "category": "Kategorie", - "opposing_account": "Proti\u00fa\u010det", - "budgets": "Rozpo\u010dty", - "categories": "Kategorie", - "go_to_budgets": "P\u0159ej\u00edt k rozpo\u010dt\u016fm", - "income": "Odm\u011bna\/p\u0159\u00edjem", - "go_to_deposits": "P\u0159ej\u00edt na vklady", - "go_to_categories": "P\u0159ej\u00edt ke kategori\u00edm", - "expense_accounts": "V\u00fddajov\u00e9 \u00fa\u010dty", - "go_to_expenses": "P\u0159ej\u00edt na v\u00fddaje", - "go_to_bills": "P\u0159ej\u00edt k \u00fa\u010dt\u016fm", - "bills": "\u00da\u010dty", - "last_thirty_days": "Uplynul\u00fdch 30 dn\u00ed", - "last_seven_days": "Uplynul\u00fdch 7 dn\u016f", - "go_to_piggies": "P\u0159ej\u00edt k pokladni\u010dk\u00e1m", - "saved": "Ulo\u017eeno", - "piggy_banks": "Pokladni\u010dky", - "piggy_bank": "Pokladni\u010dka", - "amounts": "Amounts", - "left": "Zb\u00fdv\u00e1", - "spent": "Utraceno", - "Default asset account": "V\u00fdchoz\u00ed \u00fa\u010det s aktivy", - "search_results": "V\u00fdsledky hled\u00e1n\u00ed", - "include": "Include?", - "transaction": "Transakce", - "account_role_defaultAsset": "V\u00fdchoz\u00ed \u00fa\u010det aktiv", - "account_role_savingAsset": "Spo\u0159ic\u00ed \u00fa\u010det", - "account_role_sharedAsset": "Sd\u00edlen\u00fd \u00fa\u010det aktiv", - "clear_location": "Vymazat um\u00edst\u011bn\u00ed", - "account_role_ccAsset": "Kreditn\u00ed karta", - "account_role_cashWalletAsset": "Pen\u011b\u017eenka", - "daily_budgets": "Denn\u00ed rozpo\u010dty", - "weekly_budgets": "T\u00fddenn\u00ed rozpo\u010dty", - "monthly_budgets": "M\u011bs\u00ed\u010dn\u00ed rozpo\u010dty", - "journals_in_period_for_account_js": "Ve\u0161ker\u00e9 transakce pro \u00fa\u010det {title} mezi {start} a {end}", - "quarterly_budgets": "\u010ctvrtletn\u00ed rozpo\u010dty", - "create_new_expense": "Vytvo\u0159it v\u00fddajov\u00fd \u00fa\u010det", - "create_new_revenue": "Vytvo\u0159it nov\u00fd p\u0159\u00edjmov\u00fd \u00fa\u010det", - "create_new_liabilities": "Create new liability", - "half_year_budgets": "Pololetn\u00ed rozpo\u010dty", - "yearly_budgets": "Ro\u010dn\u00ed rozpo\u010dty", - "split_transaction_title": "Popis roz\u00fa\u010dtov\u00e1n\u00ed", - "errors_submission": "There was something wrong with your submission. Please check out the errors.", - "flash_error": "Chyba!", - "store_transaction": "Store transaction", - "flash_success": "\u00dasp\u011b\u0161n\u011b dokon\u010deno!", - "create_another": "After storing, return here to create another one.", - "update_transaction": "Aktualizovat transakci", - "after_update_create_another": "After updating, return here to continue editing.", - "transaction_updated_no_changes": "Transaction #{ID}<\/a> (\"{title}\") did not receive any changes.", - "transaction_updated_link": "Transaction #{ID}<\/a> (\"{title}\") has been updated.", - "spent_x_of_y": "Spent {amount} of {total}", - "search": "Hledat", - "create_new_asset": "Vytvo\u0159it nov\u00fd \u00fa\u010det aktiv", - "asset_accounts": "\u00da\u010dty aktiv", - "reset_after": "Reset form after submission", - "bill_paid_on": "Paid on {date}", - "first_split_decides": "The first split determines the value of this field", - "first_split_overrules_source": "The first split may overrule the source account", - "first_split_overrules_destination": "The first split may overrule the destination account", - "transaction_stored_link": "Transaction #{ID} (\"{title}\")<\/a> has been stored.", - "custom_period": "Vlastn\u00ed obdob\u00ed", - "reset_to_current": "Obnovit aktu\u00e1ln\u00ed obdob\u00ed", - "select_period": "Vyberte obdob\u00ed", - "location": "Um\u00edst\u011bn\u00ed", - "other_budgets": "Custom timed budgets", - "journal_links": "Transaction links", - "go_to_withdrawals": "P\u0159ej\u00edt na v\u00fdb\u011bry", - "revenue_accounts": "P\u0159\u00edjmov\u00e9 \u00fa\u010dty", - "add_another_split": "P\u0159idat dal\u0161\u00ed roz\u00fa\u010dtov\u00e1n\u00ed", - "actions": "Akce", - "earned": "Vyd\u011bl\u00e1no", - "empty": "(pr\u00e1zdn\u00e9)", - "edit": "Upravit", - "never": "Nikdy", - "account_type_Loan": "P\u016fj\u010dka", - "account_type_Mortgage": "Hypot\u00e9ka", - "stored_new_account_js": "New account \"{name}<\/a>\" stored!", - "account_type_Debt": "Dluh", - "liability_direction_null_short": "Unknown", - "delete": "Odstranit", - "store_new_asset_account": "Ulo\u017eit nov\u00fd \u00fa\u010det aktiv", - "store_new_expense_account": "Ulo\u017eit nov\u00fd v\u00fddajov\u00fd \u00fa\u010det", - "store_new_liabilities_account": "Ulo\u017eit nov\u00fd z\u00e1vazek", - "store_new_revenue_account": "Ulo\u017eit nov\u00fd p\u0159\u00edjmov\u00fd \u00fa\u010det", - "mandatoryFields": "Povinn\u00e9 kolonky", - "optionalFields": "Voliteln\u00e9 kolonky", - "reconcile_this_account": "Vy\u00fa\u010dtovat tento \u00fa\u010det", - "interest_calc_weekly": "Per week", - "interest_calc_monthly": "Za m\u011bs\u00edc", - "interest_calc_quarterly": "Per quarter", - "interest_calc_half-year": "Per half year", - "interest_calc_yearly": "Za rok", - "liability_direction_credit": "I am owed this debt", - "liability_direction_debit": "I owe this debt to somebody else", - "liability_direction_credit_short": "Owed this debt", - "liability_direction_debit_short": "Owe this debt", - "account_type_debt": "Debt", - "account_type_loan": "Loan", - "left_in_debt": "Amount due", - "account_type_mortgage": "Mortgage", - "save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.", - "none_in_select_list": "(\u017e\u00e1dn\u00e9)", - "transaction_expand_split": "Expand split", - "transaction_collapse_split": "Collapse split", - "default_group_title_name": "(neseskupeno)", - "bill_repeats_weekly": "Repeats weekly", - "bill_repeats_monthly": "Repeats monthly", - "bill_repeats_quarterly": "Repeats quarterly", - "bill_repeats_half-year": "Repeats every half year", - "bill_repeats_yearly": "Repeats yearly", - "bill_repeats_weekly_other": "Repeats every other week", - "bill_repeats_monthly_other": "Repeats every other month", - "bill_repeats_quarterly_other": "Repeats every other quarter", - "bill_repeats_half-year_other": "Repeats yearly", - "bill_repeats_yearly_other": "Repeats every other year", - "bill_repeats_weekly_skip": "Repeats every {skip} weeks", - "bill_repeats_monthly_skip": "Repeats every {skip} months", - "bill_repeats_quarterly_skip": "Repeats every {skip} quarters", - "bill_repeats_half-year_skip": "Repeats every {skip} half years", - "bill_repeats_yearly_skip": "Repeats every {skip} years", - "not_expected_period": "Not expected this period", - "subscriptions": "Subscriptions", - "bill_expected_date_js": "Expected {date}", - "inactive": "Neaktivn\u00ed", - "forever": "Forever", - "extension_date_is": "Extension date is {date}", - "create_new_bill": "Vytvo\u0159it novou fakturu", - "store_new_bill": "Ulo\u017eit novou \u00fa\u010dtenku", - "repeat_freq_yearly": "ro\u010dn\u011b", - "repeat_freq_half-year": "p\u016floro\u010dn\u011b", - "repeat_freq_quarterly": "\u010dtvrtletn\u011b", - "repeat_freq_monthly": "m\u011bs\u00ed\u010dn\u011b", - "repeat_freq_weekly": "t\u00fddn\u011b", - "credit_card_type_monthlyFull": "Full payment every month", - "update_liabilities_account": "Aktualizovat z\u00e1vazek", - "update_expense_account": "Aktualizovat v\u00fddajov\u00fd \u00fa\u010det", - "update_revenue_account": "Aktualizovat p\u0159\u00edjmov\u00fd \u00fa\u010det", - "update_undefined_account": "Update account", - "update_asset_account": "Aktualizovat v\u00fddajov\u00fd \u00fa\u010det", - "updated_account_js": "Updated account \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "Pokladni\u010dka", - "percentage": "%", - "amount": "\u010c\u00e1stka", - "lastActivity": "Posledn\u00ed aktivita", - "name": "Jm\u00e9no", - "role": "Role", - "description": "Popis", - "date": "Datum", - "source_account": "Zdrojov\u00fd \u00fa\u010det", - "destination_account": "C\u00edlov\u00fd \u00fa\u010det", - "category": "Kategorie", - "iban": "IBAN", - "interest": "\u00darok", - "interest_period": "\u00darokov\u00e9 obdob\u00ed", - "liability_type": "Typ z\u00e1vazku", - "liability_direction": "Sm\u011br z\u00e1vazku", - "currentBalance": "Aktu\u00e1ln\u00ed z\u016fstatek", - "next_expected_match": "Dal\u0161\u00ed o\u010dek\u00e1van\u00e1 shoda", - "expected_info": "Dal\u0161\u00ed o\u010dek\u00e1van\u00e1 transakce", - "start_date": "Datum zah\u00e1jen\u00ed", - "end_date": "Datum ukon\u010den\u00ed", - "payment_info": "Informace o platb\u011b" - }, - "config": { - "html_language": "cs", - "week_in_year_fns": "'t\u00fdden' w, yyyy", - "month_and_day_fns": "d MMMM, y", - "quarter_fns": "Q'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "\u010c\u00e1stka v ciz\u00ed m\u011bn\u011b", - "interest_date": "\u00darokov\u00e9 datum", - "name": "N\u00e1zev", - "amount": "\u010c\u00e1stka", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Pozn\u00e1mky", - "location": "\u00dadaje o poloze", - "repeat_freq": "Opakuje se", - "skip": "P\u0159esko\u010dit", - "startdate": "Datum zah\u00e1jen\u00ed", - "enddate": "Datum ukon\u010den\u00ed", - "object_group": "Skupina", - "attachments": "P\u0159\u00edlohy", - "deletePermanently": "Nadobro smazat", - "active": "Aktivn\u00ed", - "include_net_worth": "Zahrnout do \u010dist\u00e9ho jm\u011bn\u00ed", - "cc_type": "Z\u00fa\u010dtovac\u00ed obdob\u00ed kreditn\u00ed karty", - "account_number": "\u010c\u00edslo \u00fa\u010dtu", - "cc_monthly_payment_date": "Datum m\u011bs\u00ed\u010dn\u00ed \u00fahrady kreditn\u00ed karty", - "virtual_balance": "Virtu\u00e1ln\u00ed z\u016fstatek", - "opening_balance": "Po\u010d\u00e1te\u010dn\u00ed z\u016fstatek", - "opening_balance_date": "Datum po\u010d\u00e1te\u010dn\u00edho z\u016fstatku", - "date": "Datum", - "interest": "\u00darok", - "interest_period": "\u00darokov\u00e9 obdob\u00ed", - "currency_id": "M\u011bna", - "liability_type": "Typ z\u00e1vazku", - "account_role": "Role \u00fa\u010dtu", - "liability_direction": "Sm\u011br z\u00e1vazku", - "book_date": "Datum rezervace", - "permDeleteWarning": "Odstran\u011bn\u00ed v\u011bc\u00ed z Firefly III je trval\u00e9 a nelze vr\u00e1tit zp\u011bt.", - "account_areYouSure_js": "Jste si jisti, \u017ee chcete odstranit \u00fa\u010det s n\u00e1zvem \"{name}\"?", - "also_delete_piggyBanks_js": "\u017d\u00e1dn\u00e9 pokladni\u010dky|Jedin\u00e1 pokladni\u010dka p\u0159ipojen\u00e1 k tomuto \u00fa\u010dtu bude tak\u00e9 odstran\u011bna. V\u0161ech {count} pokladni\u010dek, kter\u00e9 jsou p\u0159ipojeny k tomuto \u00fa\u010dtu, bude tak\u00e9 odstran\u011bno.", - "also_delete_transactions_js": "\u017d\u00e1dn\u00e9 transakce|Jedin\u00e1 transakce p\u0159ipojen\u00e1 k tomuto \u00fa\u010dtu bude tak\u00e9 smaz\u00e1na.|V\u0161ech {count} transakc\u00ed p\u0159ipojen\u00fdch k tomuto \u00fa\u010dtu bude tak\u00e9 odstran\u011bno.", - "process_date": "Datum zpracov\u00e1n\u00ed", - "due_date": "Datum splatnosti", - "payment_date": "Datum zaplacen\u00ed", - "invoice_date": "Datum vystaven\u00ed", - "amount_min": "Minim\u00e1ln\u00ed \u010d\u00e1stka", - "amount_max": "Maxim\u00e1ln\u00ed \u010d\u00e1stka", - "start_date": "Za\u010d\u00e1tek rozsahu", - "end_date": "Konec rozsahu", - "extension_date": "Datum roz\u0161\u00ed\u0159en\u00ed" - } -} \ No newline at end of file diff --git a/frontend/src/locales/de.json b/frontend/src/locales/de.json deleted file mode 100644 index 2574f26f77..0000000000 --- a/frontend/src/locales/de.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "Umbuchung", - "Withdrawal": "Ausgabe", - "Deposit": "Einnahme", - "date_and_time": "Datum und Uhrzeit", - "no_currency": "(ohne W\u00e4hrung)", - "date": "Datum", - "time": "Uhrzeit", - "no_budget": "(kein Budget)", - "destination_account": "Zielkonto", - "source_account": "Quellkonto", - "single_split": "Teil", - "create_new_transaction": "Neue Buchung erstellen", - "balance": "Kontostand", - "transaction_journal_extra": "Zus\u00e4tzliche Informationen", - "transaction_journal_meta": "Metainformationen", - "basic_journal_information": "Allgemeine Buchungsinformationen", - "bills_to_pay": "Unbezahlte Rechnungen", - "left_to_spend": "Verbleibend zum Ausgeben", - "attachments": "Anh\u00e4nge", - "net_worth": "Eigenkapital", - "bill": "Rechnung", - "no_bill": "(keine Belege)", - "tags": "Schlagw\u00f6rter", - "internal_reference": "Interner Verweis", - "external_url": "Externe URL", - "no_piggy_bank": "(kein Sparschwein)", - "paid": "Bezahlt", - "notes": "Notizen", - "yourAccounts": "Deine Konten", - "go_to_asset_accounts": "Bestandskonten anzeigen", - "delete_account": "Konto l\u00f6schen", - "transaction_table_description": "Eine Tabelle mit Ihren Buchungen", - "account": "Konto", - "description": "Beschreibung", - "amount": "Betrag", - "budget": "Budget", - "category": "Kategorie", - "opposing_account": "Gegenkonto", - "budgets": "Budgets", - "categories": "Kategorien", - "go_to_budgets": "Budgets anzeigen", - "income": "Einnahmen \/ Einkommen", - "go_to_deposits": "Einnahmen anzeigen", - "go_to_categories": "Kategorien anzeigen", - "expense_accounts": "Ausgabekonten", - "go_to_expenses": "Ausgaben anzeigen", - "go_to_bills": "Rechnungen anzeigen", - "bills": "Vertr\u00e4ge", - "last_thirty_days": "Letzte 30 Tage", - "last_seven_days": "Letzte sieben Tage", - "go_to_piggies": "Sparschweine anzeigen", - "saved": "Gespeichert", - "piggy_banks": "Sparschweine", - "piggy_bank": "Sparschwein", - "amounts": "Betr\u00e4ge", - "left": "\u00dcbrig", - "spent": "Ausgegeben", - "Default asset account": "Standard-Bestandskonto", - "search_results": "Suchergebnisse", - "include": "Inbegriffen?", - "transaction": "\u00dcberweisung", - "account_role_defaultAsset": "Standard-Bestandskonto", - "account_role_savingAsset": "Sparkonto", - "account_role_sharedAsset": "Gemeinsames Bestandskonto", - "clear_location": "Ort leeren", - "account_role_ccAsset": "Kreditkarte", - "account_role_cashWalletAsset": "Geldb\u00f6rse", - "daily_budgets": "Tagesbudgets", - "weekly_budgets": "Wochenbudgets", - "monthly_budgets": "Monatsbudgets", - "journals_in_period_for_account_js": "Alle Buchungen f\u00fcr Account {title} zwischen {start} und {end}", - "quarterly_budgets": "Quartalsbudgets", - "create_new_expense": "Neues Ausgabenkonto erstellen", - "create_new_revenue": "Neues Einnahmenkonto erstellen", - "create_new_liabilities": "Neue Verbindlichkeit anlegen", - "half_year_budgets": "Halbjahresbudgets", - "yearly_budgets": "Jahresbudgets", - "split_transaction_title": "Beschreibung der Splittbuchung", - "errors_submission": "Ihre \u00dcbermittlung ist fehlgeschlagen. Bitte \u00fcberpr\u00fcfen Sie die Fehler.", - "flash_error": "Fehler!", - "store_transaction": "Buchung speichern", - "flash_success": "Geschafft!", - "create_another": "Nach dem Speichern hierher zur\u00fcckkehren, um ein weiteres zu erstellen.", - "update_transaction": "Buchung aktualisieren", - "after_update_create_another": "Nach dem Aktualisieren hierher zur\u00fcckkehren, um weiter zu bearbeiten.", - "transaction_updated_no_changes": "Die Buchung #{ID}<\/a> (\"{title}\") wurde nicht ver\u00e4ndert.", - "transaction_updated_link": "Die Buchung #{ID}<\/a> (\"{title}\") wurde aktualisiert.", - "spent_x_of_y": "{amount} von {total} ausgegeben", - "search": "Suche", - "create_new_asset": "Neues Bestandskonto erstellen", - "asset_accounts": "Bestandskonten", - "reset_after": "Formular nach der \u00dcbermittlung zur\u00fccksetzen", - "bill_paid_on": "Bezahlt am {date}", - "first_split_decides": "Die erste Aufteilung bestimmt den Wert dieses Feldes", - "first_split_overrules_source": "Die erste Aufteilung k\u00f6nnte das Quellkonto \u00fcberschreiben", - "first_split_overrules_destination": "Die erste Aufteilung k\u00f6nnte das Zielkonto \u00fcberschreiben", - "transaction_stored_link": "Buchung #{ID} (\"{title}\")<\/a> wurde gespeichert.", - "custom_period": "Benutzerdefinierter Zeitraum", - "reset_to_current": "Auf aktuellen Zeitraum zur\u00fccksetzen", - "select_period": "Zeitraum ausw\u00e4hlen", - "location": "Standort", - "other_budgets": "Zeitlich befristete Budgets", - "journal_links": "Buchungsverkn\u00fcpfungen", - "go_to_withdrawals": "Ausgaben anzeigen", - "revenue_accounts": "Einnahmekonten", - "add_another_split": "Eine weitere Aufteilung hinzuf\u00fcgen", - "actions": "Aktionen", - "earned": "Eingenommen", - "empty": "(leer)", - "edit": "Bearbeiten", - "never": "Nie", - "account_type_Loan": "Darlehen", - "account_type_Mortgage": "Hypothek", - "stored_new_account_js": "Neues Konto \"\u201e{name}\u201d<\/a>\" gespeichert!", - "account_type_Debt": "Schuld", - "liability_direction_null_short": "Unbekannt", - "delete": "L\u00f6schen", - "store_new_asset_account": "Neues Bestandskonto speichern", - "store_new_expense_account": "Neues Ausgabenkonto speichern", - "store_new_liabilities_account": "Neue Verbindlichkeit speichern", - "store_new_revenue_account": "Neues Einnahmenkonto speichern", - "mandatoryFields": "Pflichtfelder", - "optionalFields": "Optionale Felder", - "reconcile_this_account": "Dieses Konto abgleichen", - "interest_calc_weekly": "Pro Woche", - "interest_calc_monthly": "Monatlich", - "interest_calc_quarterly": "Viertelj\u00e4hrlich", - "interest_calc_half-year": "Halbj\u00e4hrlich", - "interest_calc_yearly": "J\u00e4hrlich", - "liability_direction_credit": "Mir wird dies geschuldet", - "liability_direction_debit": "Ich schulde dies jemandem", - "liability_direction_credit_short": "Geschuldeter Betrag", - "liability_direction_debit_short": "Schuldiger Betrag", - "account_type_debt": "Schulden", - "account_type_loan": "Darlehen", - "left_in_debt": "F\u00e4lliger Betrag", - "account_type_mortgage": "Hypothek", - "save_transactions_by_moving_js": "Keine Buchungen|Speichern Sie diese Buchung, indem Sie sie auf ein anderes Konto verschieben. |Speichern Sie diese Buchungen, indem Sie sie auf ein anderes Konto verschieben.", - "none_in_select_list": "(Keine)", - "transaction_expand_split": "Aufteilung erweitern", - "transaction_collapse_split": "Aufteilung reduzieren", - "default_group_title_name": "(ohne Gruppierung)", - "bill_repeats_weekly": "Wiederholt sich w\u00f6chentlich", - "bill_repeats_monthly": "Wiederholt sich monatlich", - "bill_repeats_quarterly": "Wiederholt sich viertelj\u00e4hrlich", - "bill_repeats_half-year": "Wiederholt sich halbj\u00e4hrlich", - "bill_repeats_yearly": "Wiederholt sich j\u00e4hrlich", - "bill_repeats_weekly_other": "Wiederholt sich jede zweite Woche", - "bill_repeats_monthly_other": "Wiederholt sich jeden zweiten Monat", - "bill_repeats_quarterly_other": "Wiederholt sich jedes zweite Vierteljahr", - "bill_repeats_half-year_other": "Wiederholt sich j\u00e4hrlich", - "bill_repeats_yearly_other": "Wiederholt sich jedes zweite Jahr", - "bill_repeats_weekly_skip": "Wiederholt sich alle {skip} Wochen", - "bill_repeats_monthly_skip": "Wiederholt sich alle {skip} Monate", - "bill_repeats_quarterly_skip": "Wiederholt sich alle {skip} Vierteljahre", - "bill_repeats_half-year_skip": "Wiederholt sich alle {skip} Halbjahre", - "bill_repeats_yearly_skip": "Wiederholt sich alle {skip} Jahre", - "not_expected_period": "In diesem Zeitraum nicht erwartet", - "subscriptions": "Abonnements", - "bill_expected_date_js": "Erwartet {date}", - "inactive": "Inaktiv", - "forever": "Dauerhaft", - "extension_date_is": "Zeitpunkt der Verl\u00e4ngerung ist {date}", - "create_new_bill": "Eine neue Rechnung erstellen", - "store_new_bill": "Neue Rechnung speichern", - "repeat_freq_yearly": "J\u00e4hrlich", - "repeat_freq_half-year": "halbj\u00e4hrlich", - "repeat_freq_quarterly": "viertelj\u00e4hrlich", - "repeat_freq_monthly": "monatlich", - "repeat_freq_weekly": "w\u00f6chentlich", - "credit_card_type_monthlyFull": "Vollst\u00e4ndige Zahlung jeden Monat", - "update_liabilities_account": "Verbindlichkeit aktualisieren", - "update_expense_account": "Ausgabenkonto aktualisieren", - "update_revenue_account": "Einnahmenkonto aktualisieren", - "update_undefined_account": "Konto aktualisieren", - "update_asset_account": "Bestandskonto aktualisieren", - "updated_account_js": "Konto \"{title}<\/a>\" aktualisiert." - }, - "list": { - "piggy_bank": "Sparschwein", - "percentage": "%", - "amount": "Betrag", - "lastActivity": "Letzte Aktivit\u00e4t", - "name": "Name", - "role": "Rolle", - "description": "Beschreibung", - "date": "Datum", - "source_account": "Quellkonto", - "destination_account": "Zielkonto", - "category": "Kategorie", - "iban": "IBAN", - "interest": "Zinsen", - "interest_period": "Zinsperiode", - "liability_type": "Verbindlichkeitsart", - "liability_direction": "Verbindlichkeit ein\/aus", - "currentBalance": "Aktueller Kontostand", - "next_expected_match": "N\u00e4chste erwartete \u00dcbereinstimmung", - "expected_info": "N\u00e4chste erwartete Buchung", - "start_date": "Beginnt am", - "end_date": "Endet am", - "payment_info": "Zahlungsinformationen" - }, - "config": { - "html_language": "de", - "week_in_year_fns": "'Woche' ww\/yyyy", - "month_and_day_fns": "d. MMMM Y", - "quarter_fns": "'Q'QQQ, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "Ausl\u00e4ndischer Betrag", - "interest_date": "Zinstermin", - "name": "Name", - "amount": "Betrag", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Notizen", - "location": "Herkunft", - "repeat_freq": "Wiederholungen", - "skip": "\u00dcberspringen", - "startdate": "Startdatum", - "enddate": "Endet am", - "object_group": "Gruppe", - "attachments": "Anh\u00e4nge", - "deletePermanently": "Dauerhaft l\u00f6schen", - "active": "Aktiv", - "include_net_worth": "Im Eigenkapital enthalten", - "cc_type": "Kreditkartenzahlungsplan", - "account_number": "Kontonummer", - "cc_monthly_payment_date": "Monatlicher Kreditkartenzahlungsplan", - "virtual_balance": "Virtueller Kontostand", - "opening_balance": "Er\u00f6ffnungsbilanz", - "opening_balance_date": "Er\u00f6ffnungsbilanzdatum", - "date": "Datum", - "interest": "Zinsen", - "interest_period": "Verzinsungszeitraum", - "currency_id": "W\u00e4hrung", - "liability_type": "Art der Verbindlichkeit", - "account_role": "Kontenfunktion", - "liability_direction": "Verbindlichkeit Ein\/Aus", - "book_date": "Buchungsdatum", - "permDeleteWarning": "Das L\u00f6schen von Dingen in Firefly III ist dauerhaft und kann nicht r\u00fcckg\u00e4ngig gemacht werden.", - "account_areYouSure_js": "M\u00f6chten Sie das Konto \u201e{name}\u201d wirklich l\u00f6schen?", - "also_delete_piggyBanks_js": "Keine Sparschweine|Das einzige Sparschwein, welches mit diesem Konto verbunden ist, wird ebenfalls gel\u00f6scht.|Alle {count} Sparschweine, welche mit diesem Konto verbunden sind, werden ebenfalls gel\u00f6scht.", - "also_delete_transactions_js": "Keine Buchungen|Die einzige Buchung, die mit diesem Konto verbunden ist, wird ebenfalls gel\u00f6scht.|Alle {count} Buchungen, die mit diesem Konto verbunden sind, werden ebenfalls gel\u00f6scht.", - "process_date": "Bearbeitungsdatum", - "due_date": "F\u00e4lligkeitstermin", - "payment_date": "Zahlungsdatum", - "invoice_date": "Rechnungsdatum", - "amount_min": "Mindestbetrag", - "amount_max": "H\u00f6chstbetrag", - "start_date": "Anfang des Bereichs", - "end_date": "Ende des Bereichs", - "extension_date": "Verl\u00e4ngerungsdatum" - } -} \ No newline at end of file diff --git a/frontend/src/locales/el.json b/frontend/src/locales/el.json deleted file mode 100644 index 2a4736b833..0000000000 --- a/frontend/src/locales/el.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "\u039c\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ac", - "Withdrawal": "\u0391\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7", - "Deposit": "\u039a\u03b1\u03c4\u03ac\u03b8\u03b5\u03c3\u03b7", - "date_and_time": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03ba\u03b1\u03b9 \u03ce\u03c1\u03b1", - "no_currency": "(\u03c7\u03c9\u03c1\u03af\u03c2 \u03bd\u03cc\u03bc\u03b9\u03c3\u03bc\u03b1)", - "date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1", - "time": "\u038f\u03c1\u03b1", - "no_budget": "(\u03c7\u03c9\u03c1\u03af\u03c2 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc)", - "destination_account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd", - "source_account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2", - "single_split": "\u0394\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2", - "create_new_transaction": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03bc\u03b9\u03b1\u03c2 \u03bd\u03ad\u03b1\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2", - "balance": "\u0399\u03c3\u03bf\u03b6\u03cd\u03b3\u03b9\u03bf", - "transaction_journal_extra": "\u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2", - "transaction_journal_meta": "\u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd", - "basic_journal_information": "\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2", - "bills_to_pay": "\u03a0\u03ac\u03b3\u03b9\u03b1 \u03ad\u03be\u03bf\u03b4\u03b1 \u03c0\u03c1\u03bf\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", - "left_to_spend": "\u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b1 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03ce\u03bd", - "attachments": "\u03a3\u03c5\u03bd\u03b7\u03bc\u03bc\u03ad\u03bd\u03b1", - "net_worth": "\u039a\u03b1\u03b8\u03b1\u03c1\u03ae \u03b1\u03be\u03af\u03b1", - "bill": "\u03a0\u03ac\u03b3\u03b9\u03bf \u03ad\u03be\u03bf\u03b4\u03bf", - "no_bill": "(\u03c7\u03c9\u03c1\u03af\u03c2 \u03c0\u03ac\u03b3\u03b9\u03bf \u03ad\u03be\u03bf\u03b4\u03bf)", - "tags": "\u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b5\u03c2", - "internal_reference": "\u0395\u03c3\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03ae \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac", - "external_url": "\u0395\u03be\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03cc URL", - "no_piggy_bank": "(\u03c7\u03c9\u03c1\u03af\u03c2 \u03ba\u03bf\u03c5\u03bc\u03c0\u03b1\u03c1\u03ac)", - "paid": "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf", - "notes": "\u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2", - "yourAccounts": "\u039f\u03b9 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03af \u03c3\u03b1\u03c2", - "go_to_asset_accounts": "\u0394\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5 \u03c3\u03b1\u03c2", - "delete_account": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", - "transaction_table_description": "\u0388\u03bd\u03b1\u03c2 \u03c0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2 \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c3\u03b1\u03c2", - "account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2", - "description": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae", - "amount": "\u03a0\u03bf\u03c3\u03cc", - "budget": "\u03a0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc\u03c2", - "category": "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1", - "opposing_account": "\u0388\u03bd\u03b1\u03bd\u03c4\u03b9 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2", - "budgets": "\u03a0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af", - "categories": "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b5\u03c2", - "go_to_budgets": "\u03a0\u03b7\u03b3\u03b1\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03cd\u03c2 \u03c3\u03b1\u03c2", - "income": "\u0388\u03c3\u03bf\u03b4\u03b1", - "go_to_deposits": "\u03a0\u03b7\u03b3\u03b1\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03c4\u03b9\u03c2 \u03ba\u03b1\u03c4\u03b1\u03b8\u03ad\u03c3\u03b5\u03b9\u03c2", - "go_to_categories": "\u03a0\u03b7\u03b3\u03b1\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03c4\u03b9\u03c2 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03b1\u03c2", - "expense_accounts": "\u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2", - "go_to_expenses": "\u03a0\u03b7\u03b3\u03b1\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03c4\u03b9\u03c2 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2", - "go_to_bills": "\u03a0\u03b7\u03b3\u03b1\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03c4\u03b1 \u03c0\u03ac\u03b3\u03b9\u03b1 \u03ad\u03be\u03bf\u03b4\u03b1", - "bills": "\u03a0\u03ac\u03b3\u03b9\u03b1 \u03ad\u03be\u03bf\u03b4\u03b1", - "last_thirty_days": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b5\u03c2 \u03c4\u03c1\u03b9\u03ac\u03bd\u03c4\u03b1 \u03b7\u03bc\u03ad\u03c1\u03b5\u03c2", - "last_seven_days": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b5\u03c2 \u03b5\u03c0\u03c4\u03ac \u03b7\u03bc\u03ad\u03c1\u03b5\u03c2", - "go_to_piggies": "\u03a0\u03b7\u03b3\u03b1\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03ba\u03bf\u03c5\u03bc\u03c0\u03b1\u03c1\u03ac\u03b4\u03b5\u03c2 \u03c3\u03b1\u03c2", - "saved": "\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b5", - "piggy_banks": "\u039a\u03bf\u03c5\u03bc\u03c0\u03b1\u03c1\u03ac\u03b4\u03b5\u03c2", - "piggy_bank": "\u039a\u03bf\u03c5\u03bc\u03c0\u03b1\u03c1\u03ac\u03c2", - "amounts": "\u03a0\u03bf\u03c3\u03ac", - "left": "\u0391\u03c0\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5\u03bd", - "spent": "\u0394\u03b1\u03c0\u03b1\u03bd\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd", - "Default asset account": "\u0392\u03b1\u03c3\u03b9\u03ba\u03cc\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5", - "search_results": "\u0391\u03c0\u03bf\u03c4\u03b5\u03bb\u03ad\u03c3\u03bc\u03b1\u03c4\u03b1 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2", - "include": "\u03a0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9;", - "transaction": "\u03a3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae", - "account_role_defaultAsset": "\u0392\u03b1\u03c3\u03b9\u03ba\u03cc\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5", - "account_role_savingAsset": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03b1\u03c0\u03bf\u03c4\u03b1\u03bc\u03af\u03b5\u03c5\u03c3\u03b7\u03c2", - "account_role_sharedAsset": "\u039a\u03bf\u03b9\u03bd\u03cc\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5", - "clear_location": "\u0395\u03ba\u03ba\u03b1\u03b8\u03ac\u03c1\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1\u03c2", - "account_role_ccAsset": "\u03a0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03ae \u03ba\u03ac\u03c1\u03c4\u03b1", - "account_role_cashWalletAsset": "\u03a0\u03bf\u03c1\u03c4\u03bf\u03c6\u03cc\u03bb\u03b9 \u03bc\u03b5\u03c4\u03c1\u03b7\u03c4\u03ce\u03bd", - "daily_budgets": "\u0397\u03bc\u03b5\u03c1\u03ae\u03c3\u03b9\u03bf\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af", - "weekly_budgets": "\u0395\u03b2\u03b4\u03bf\u03bc\u03b1\u03b4\u03b9\u03b1\u03af\u03bf\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af", - "monthly_budgets": "\u039c\u03b7\u03bd\u03b9\u03b1\u03af\u03bf\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af", - "journals_in_period_for_account_js": "\u038c\u03bb\u03b5\u03c2 \u03bf\u03b9 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc {title} \u03bc\u03b5\u03c4\u03b1\u03be\u03cd {start} \u03ba\u03b1\u03b9 {end}", - "quarterly_budgets": "\u03a4\u03c1\u03b9\u03bc\u03b7\u03bd\u03b9\u03b1\u03af\u03bf\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af", - "create_new_expense": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03bd\u03ad\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", - "create_new_revenue": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03bd\u03ad\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03b5\u03c3\u03cc\u03b4\u03c9\u03bd", - "create_new_liabilities": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03bd\u03ad\u03b1\u03c2 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", - "half_year_budgets": "\u0395\u03be\u03b1\u03bc\u03b7\u03bd\u03b9\u03b1\u03af\u03bf\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af", - "yearly_budgets": "\u0395\u03c4\u03ae\u03c3\u03b9\u03bf\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af", - "split_transaction_title": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03bc\u03b5 \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03cc", - "errors_submission": "\u03a5\u03c0\u03ae\u03c1\u03be\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf \u03bb\u03ac\u03b8\u03bf\u03c2 \u03bc\u03b5 \u03c4\u03b7\u03bd \u03c5\u03c0\u03bf\u03b2\u03bf\u03bb\u03ae \u03c3\u03b1\u03c2. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03bb\u03ad\u03b3\u03be\u03c4\u03b5 \u03c4\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03b1.", - "flash_error": "\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1!", - "store_transaction": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2", - "flash_success": "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1!", - "create_another": "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7, \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03ad\u03c8\u03c4\u03b5 \u03b5\u03b4\u03ce \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03c4\u03b5 \u03b1\u03ba\u03cc\u03bc\u03b7 \u03ad\u03bd\u03b1.", - "update_transaction": "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2", - "after_update_create_another": "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7, \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03ad\u03c8\u03c4\u03b5 \u03b5\u03b4\u03ce \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1.", - "transaction_updated_no_changes": "\u0397 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae #{ID}<\/a> (\"{title}\") \u03c0\u03b1\u03c1\u03ad\u03bc\u03b5\u03b9\u03bd\u03b5 \u03c7\u03c9\u03c1\u03af\u03c2 \u03ba\u03b1\u03bc\u03af\u03b1 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ae.", - "transaction_updated_link": "\u0397 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae #{ID}<\/a> (\"{title}\") \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03b8\u03b5\u03af.", - "spent_x_of_y": "\u0394\u03b1\u03c0\u03b1\u03bd\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd {amount} \u03b1\u03c0\u03cc {total}", - "search": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", - "create_new_asset": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03bd\u03ad\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5", - "asset_accounts": "\u039a\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03b1", - "reset_after": "\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c6\u03cc\u03c1\u03bc\u03b1\u03c2 \u03bc\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03c5\u03c0\u03bf\u03b2\u03bf\u03bb\u03ae", - "bill_paid_on": "\u03a0\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b9\u03c2 {date}", - "first_split_decides": "\u039f \u03c0\u03c1\u03ce\u03c4\u03bf\u03c2 \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b1\u03b8\u03bf\u03c1\u03af\u03b6\u03b5\u03b9 \u03c4\u03b7\u03bd \u03c4\u03b9\u03bc\u03ae \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03c0\u03b5\u03b4\u03af\u03bf\u03c5", - "first_split_overrules_source": "\u039f \u03c0\u03c1\u03ce\u03c4\u03bf\u03c2 \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03bc\u03c8\u03b5\u03b9 \u03c4\u03bf\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2", - "first_split_overrules_destination": "\u039f \u03c0\u03c1\u03ce\u03c4\u03bf\u03c2 \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03bc\u03c8\u03b5\u03b9 \u03c4\u03bf\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd", - "transaction_stored_link": "\u0397 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae #{ID} (\"{title}\")<\/a> \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03b5\u03af.", - "custom_period": "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03c0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf\u03c2", - "reset_to_current": "\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c3\u03c4\u03b7\u03bd \u03c4\u03c1\u03ad\u03c7\u03bf\u03c5\u03c3\u03b1 \u03c0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf", - "select_period": "\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf", - "location": "\u03a4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1", - "other_budgets": "\u03a0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af \u03bc\u03b5 \u03c7\u03c1\u03bf\u03bd\u03b9\u03ba\u03ae \u03c0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", - "journal_links": "\u03a3\u03c5\u03bd\u03b4\u03ad\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd", - "go_to_withdrawals": "\u03a0\u03b7\u03b3\u03b1\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03c4\u03b9\u03c2 \u03b1\u03bd\u03b1\u03bb\u03ae\u03c8\u03b5\u03b9\u03c2 \u03c3\u03b1\u03c2", - "revenue_accounts": "\u0388\u03c3\u03bf\u03b4\u03b1", - "add_another_split": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03b1\u03ba\u03cc\u03bc\u03b1 \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd", - "actions": "\u0395\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b5\u03c2", - "earned": "\u039a\u03b5\u03c1\u03b4\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd", - "empty": "(\u03ba\u03b5\u03bd\u03cc)", - "edit": "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1", - "never": "\u03a0\u03bf\u03c4\u03ad", - "account_type_Loan": "\u0394\u03ac\u03bd\u03b5\u03b9\u03bf", - "account_type_Mortgage": "\u03a5\u03c0\u03bf\u03b8\u03ae\u03ba\u03b7", - "stored_new_account_js": "\u039f \u03bd\u03ad\u03bf\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \"{name}<\/a>\" \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b5!", - "account_type_Debt": "\u03a7\u03c1\u03ad\u03bf\u03c2", - "liability_direction_null_short": "\u0386\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf", - "delete": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae", - "store_new_asset_account": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03bd\u03ad\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5", - "store_new_expense_account": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03bd\u03ad\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", - "store_new_liabilities_account": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03bd\u03ad\u03b1\u03c2 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", - "store_new_revenue_account": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03bd\u03ad\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03b5\u03c3\u03cc\u03b4\u03c9\u03bd", - "mandatoryFields": "\u03a5\u03c0\u03bf\u03c7\u03c1\u03b5\u03c9\u03c4\u03b9\u03ba\u03ac \u03c0\u03b5\u03b4\u03af\u03b1", - "optionalFields": "\u03a0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03ac \u03c0\u03b5\u03b4\u03af\u03b1", - "reconcile_this_account": "\u03a4\u03b1\u03ba\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", - "interest_calc_weekly": "\u0391\u03bd\u03ac \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1", - "interest_calc_monthly": "\u0391\u03bd\u03ac \u03bc\u03ae\u03bd\u03b1", - "interest_calc_quarterly": "\u0391\u03bd\u03ac \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf", - "interest_calc_half-year": "\u0391\u03bd\u03ac \u03b5\u03be\u03ac\u03bc\u03b7\u03bd\u03bf", - "interest_calc_yearly": "\u0391\u03bd\u03ac \u03ad\u03c4\u03bf\u03c2", - "liability_direction_credit": "\u039c\u03bf\u03c5 \u03bf\u03c6\u03b5\u03af\u03bb\u03bf\u03c5\u03bd \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03c1\u03ad\u03bf\u03c2 \u03c3\u03b5 \u03bc\u03ad\u03bd\u03b1", - "liability_direction_debit": "\u039f\u03c6\u03b5\u03af\u03bb\u03c9 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03c1\u03ad\u03bf\u03c2 \u03c3\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf\u03bd \u03ac\u03bb\u03bb\u03bf", - "liability_direction_credit_short": "\u039c\u03bf\u03c5 \u03bf\u03c6\u03b5\u03af\u03bb\u03bf\u03c5\u03bd \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03c1\u03ad\u03bf\u03c2", - "liability_direction_debit_short": "\u039f\u03c6\u03b5\u03af\u03bb\u03c9 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03c1\u03ad\u03bf\u03c2", - "account_type_debt": "\u03a7\u03c1\u03ad\u03bf\u03c2", - "account_type_loan": "\u0394\u03ac\u03bd\u03b5\u03b9\u03bf", - "left_in_debt": "\u039f\u03c6\u03b5\u03b9\u03bb\u03cc\u03bc\u03b5\u03bd\u03bf \u03c0\u03bf\u03c3\u03cc", - "account_type_mortgage": "\u03a5\u03c0\u03bf\u03b8\u03ae\u03ba\u03b7", - "save_transactions_by_moving_js": "\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2|\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03bc\u03b5\u03c4\u03b1\u03ba\u03b9\u03bd\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b7\u03bd \u03c3\u03b5 \u03ac\u03bb\u03bb\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc|\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ad\u03c2 \u03c4\u03b9\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03bc\u03b5\u03c4\u03b1\u03ba\u03b9\u03bd\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b9\u03c2 \u03c3\u03b5 \u03ac\u03bb\u03bb\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc.", - "none_in_select_list": "(\u03c4\u03af\u03c0\u03bf\u03c4\u03b1)", - "transaction_expand_split": "\u0391\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7 \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd", - "transaction_collapse_split": "\u03a3\u03cd\u03bc\u03c0\u03c4\u03c5\u03be\u03b7 \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd", - "default_group_title_name": "(\u03c7\u03c9\u03c1\u03af\u03c2 \u03bf\u03bc\u03ac\u03b4\u03b1)", - "bill_repeats_weekly": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9 \u03b5\u03b2\u03b4\u03bf\u03bc\u03b1\u03b4\u03b9\u03b1\u03af\u03c9\u03c2", - "bill_repeats_monthly": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9 \u03bc\u03b7\u03bd\u03b9\u03b1\u03af\u03c9\u03c2", - "bill_repeats_quarterly": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9 \u03b1\u03bd\u03ac \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf", - "bill_repeats_half-year": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9 \u03ba\u03ac\u03b8\u03b5 \u03bc\u03b9\u03c3\u03cc \u03c7\u03c1\u03cc\u03bd\u03bf", - "bill_repeats_yearly": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9 \u03b5\u03c4\u03b7\u03c3\u03af\u03c9\u03c2", - "bill_repeats_weekly_other": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9 \u03ba\u03ac\u03b8\u03b5 \u03b4\u03b5\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1", - "bill_repeats_monthly_other": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9 \u03ba\u03ac\u03b8\u03b5 \u03b4\u03b5\u03cd\u03c4\u03b5\u03c1\u03bf \u03bc\u03ae\u03bd\u03b1", - "bill_repeats_quarterly_other": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9 \u03ba\u03ac\u03b8\u03b5 \u03b4\u03b5\u03cd\u03c4\u03b5\u03c1\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf", - "bill_repeats_half-year_other": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9 \u03b5\u03c4\u03b7\u03c3\u03af\u03c9\u03c2", - "bill_repeats_yearly_other": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9 \u03ba\u03ac\u03b8\u03b5 \u03b4\u03b5\u03cd\u03c4\u03b5\u03c1\u03bf \u03c7\u03c1\u03cc\u03bd\u03bf", - "bill_repeats_weekly_skip": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9 \u03ba\u03ac\u03b8\u03b5 {skip} \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b5\u03c2", - "bill_repeats_monthly_skip": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9 \u03ba\u03ac\u03b8\u03b5 {skip} \u03bc\u03ae\u03bd\u03b5\u03c2", - "bill_repeats_quarterly_skip": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9 \u03ba\u03ac\u03b8\u03b5 {skip} \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03b1", - "bill_repeats_half-year_skip": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9 \u03ba\u03ac\u03b8\u03b5 {skip} \u03b5\u03be\u03ac\u03bc\u03b7\u03bd\u03b1", - "bill_repeats_yearly_skip": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9 \u03ba\u03ac\u03b8\u03b5 {skip} \u03ad\u03c4\u03b7", - "not_expected_period": "\u0394\u03b5\u03bd \u03b1\u03bd\u03b1\u03bc\u03ad\u03bd\u03b5\u03c4\u03b1\u03b9 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03c0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf", - "subscriptions": "\u03a3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ad\u03c2", - "bill_expected_date_js": "\u0391\u03bd\u03b1\u03bc\u03ad\u03bd\u03b5\u03c4\u03b1\u03b9 {date}", - "inactive": "\u0391\u03bd\u03b5\u03bd\u03b5\u03c1\u03b3\u03cc", - "forever": "\u0393\u03b9\u03b1 \u03c0\u03ac\u03bd\u03c4\u03b1", - "extension_date_is": "\u0397 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c0\u03b1\u03c1\u03ac\u03c4\u03b1\u03c3\u03b7\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 {date}", - "create_new_bill": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03bd\u03ad\u03bf\u03c5 \u03c0\u03ac\u03b3\u03b9\u03bf\u03c5 \u03ad\u03be\u03bf\u03b4\u03bf\u03c5", - "store_new_bill": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03bd\u03ad\u03bf\u03c5 \u03c0\u03ac\u03b3\u03b9\u03bf\u03c5 \u03ad\u03be\u03bf\u03b4\u03bf\u03c5", - "repeat_freq_yearly": "\u03b5\u03c4\u03b7\u03c3\u03af\u03c9\u03c2", - "repeat_freq_half-year": "\u03b5\u03be\u03b1\u03bc\u03b7\u03bd\u03b9\u03b1\u03af\u03c9\u03c2", - "repeat_freq_quarterly": "\u03c4\u03c1\u03b9\u03bc\u03b7\u03bd\u03b9\u03b1\u03af\u03c9\u03c2", - "repeat_freq_monthly": "\u03bc\u03b7\u03bd\u03b9\u03b1\u03af\u03c9\u03c2", - "repeat_freq_weekly": "\u03b5\u03b2\u03b4\u03bf\u03bc\u03b1\u03b4\u03b9\u03b1\u03af\u03c9\u03c2", - "credit_card_type_monthlyFull": "\u0395\u03be\u03cc\u03c6\u03bb\u03b7\u03c3\u03b7 \u03ba\u03ac\u03b8\u03b5 \u03bc\u03ae\u03bd\u03b1", - "update_liabilities_account": "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", - "update_expense_account": "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", - "update_revenue_account": "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03b5\u03c3\u03cc\u03b4\u03c9\u03bd", - "update_undefined_account": "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", - "update_asset_account": "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5", - "updated_account_js": "\u0395\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "\u039a\u03bf\u03c5\u03bc\u03c0\u03b1\u03c1\u03ac\u03c2", - "percentage": "pct.", - "amount": "\u03a0\u03bf\u03c3\u03cc", - "lastActivity": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1", - "name": "\u038c\u03bd\u03bf\u03bc\u03b1", - "role": "\u03a1\u03cc\u03bb\u03bf\u03c2", - "description": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae", - "date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1", - "source_account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2", - "destination_account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd", - "category": "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1", - "iban": "IBAN", - "interest": "\u03a4\u03cc\u03ba\u03bf\u03c2", - "interest_period": "\u03a4\u03bf\u03ba\u03b9\u03b6\u03cc\u03bc\u03b5\u03bd\u03b7 \u03c0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf\u03c2", - "liability_type": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", - "liability_direction": "\u03a5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03b5\u03bd\u03c4\u03cc\u03c2\/\u03b5\u03ba\u03c4\u03cc\u03c2", - "currentBalance": "\u03a4\u03c1\u03ad\u03c7\u03bf\u03bd \u03c5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03bf", - "next_expected_match": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u03b1\u03bd\u03b1\u03bc\u03b5\u03bd\u03cc\u03bc\u03b5\u03bd\u03b7 \u03b1\u03bd\u03c4\u03b9\u03c3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7", - "expected_info": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u03b1\u03bd\u03b1\u03bc\u03b5\u03bd\u03cc\u03bc\u03b5\u03bd\u03b7 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae", - "start_date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03ad\u03bd\u03b1\u03c1\u03be\u03b7\u03c2", - "end_date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03bb\u03ae\u03be\u03b7\u03c2", - "payment_info": "\u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2" - }, - "config": { - "html_language": "el", - "week_in_year_fns": "'\u0395\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1' w, yyyy", - "month_and_day_fns": "d MMMM y", - "quarter_fns": "'Q'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "\u03a0\u03bf\u03c3\u03cc \u03c3\u03b5 \u03be\u03ad\u03bd\u03bf \u03bd\u03cc\u03bc\u03b9\u03c3\u03bc\u03b1", - "interest_date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c4\u03bf\u03ba\u03b9\u03c3\u03bc\u03bf\u03cd", - "name": "\u038c\u03bd\u03bf\u03bc\u03b1", - "amount": "\u03a0\u03bf\u03c3\u03cc", - "iban": "IBAN", - "BIC": "BIC", - "notes": "\u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2", - "location": "\u03a4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1", - "repeat_freq": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03ae\u03c8\u03b5\u03b9\u03c2", - "skip": "\u03a0\u03b1\u03c1\u03ac\u03bb\u03b5\u03b9\u03c8\u03b7", - "startdate": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u0388\u03bd\u03b1\u03c1\u03be\u03b7\u03c2", - "enddate": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03bb\u03ae\u03be\u03b7\u03c2", - "object_group": "\u039f\u03bc\u03ac\u03b4\u03b1", - "attachments": "\u03a3\u03c5\u03bd\u03b7\u03bc\u03bc\u03ad\u03bd\u03b1", - "deletePermanently": "\u039f\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ae \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae", - "active": "\u0395\u03bd\u03b5\u03c1\u03b3\u03cc", - "include_net_worth": "\u0395\u03bd\u03c4\u03cc\u03c2 \u03ba\u03b1\u03b8\u03b1\u03c1\u03ae\u03c2 \u03b1\u03be\u03af\u03b1\u03c2", - "cc_type": "\u03a3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 \u03c0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03ae\u03c2 \u03ba\u03ac\u03c1\u03c4\u03b1\u03c2", - "account_number": "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", - "cc_monthly_payment_date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03bc\u03b7\u03bd\u03b9\u03b1\u03af\u03b1\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 \u03ba\u03ac\u03c1\u03c4\u03b1\u03c2", - "virtual_balance": "\u0395\u03b9\u03ba\u03bf\u03bd\u03b9\u03ba\u03cc \u03c5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03bf", - "opening_balance": "\u03a5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03bf \u03ad\u03bd\u03b1\u03c1\u03be\u03b7\u03c2", - "opening_balance_date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c5\u03c0\u03bf\u03bb\u03bf\u03af\u03c0\u03bf\u03c5 \u03ad\u03bd\u03b1\u03c1\u03be\u03b7\u03c2", - "date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1", - "interest": "\u03a4\u03cc\u03ba\u03bf\u03c2", - "interest_period": "\u03a4\u03bf\u03ba\u03b9\u03b6\u03cc\u03bc\u03b5\u03bd\u03b7 \u03c0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf\u03c2", - "currency_id": "\u039d\u03cc\u03bc\u03b9\u03c3\u03bc\u03b1", - "liability_type": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", - "account_role": "\u03a1\u03cc\u03bb\u03bf\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", - "liability_direction": "\u03a5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03b5\u03bd\u03c4\u03cc\u03c2\/\u03b5\u03ba\u03c4\u03cc\u03c2", - "book_date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2", - "permDeleteWarning": "\u0397 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03c9\u03bd \u03b1\u03c0\u03cc \u03c4\u03bf Firefly III \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03cc\u03bd\u03b9\u03bc\u03b7 \u03ba\u03b1\u03b9 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b9\u03c1\u03b5\u03b8\u03b5\u03af.", - "account_areYouSure_js": "\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03c4\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03bc\u03b5 \u03cc\u03bd\u03bf\u03bc\u03b1 \"{name}\";", - "also_delete_piggyBanks_js": "\u03a7\u03c9\u03c1\u03af\u03c2 \u03ba\u03bf\u03c5\u03bc\u03c0\u03b1\u03c1\u03ac | \u039f \u03bc\u03cc\u03bd\u03bf\u03c2 \u03ba\u03bf\u03c5\u03bc\u03c0\u03b1\u03c1\u03ac\u03c2 \u03c0\u03bf\u03c5 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c3\u03c5\u03bd\u03b4\u03b5\u03b4\u03b5\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03b8\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03b5\u03c0\u03af\u03c3\u03b7\u03c2. | \u038c\u03bb\u03bf\u03b9 \u03bf\u03b9 \u03ba\u03bf\u03c5\u03bc\u03c0\u03b1\u03c1\u03ac\u03b4\u03b5\u03c2 {count} \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bd\u03b4\u03ad\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bc\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03b8\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03bf\u03cd\u03bd \u03b5\u03c0\u03af\u03c3\u03b7\u03c2.", - "also_delete_transactions_js": "\u03a7\u03c9\u03c1\u03af\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 | \u0397 \u03bc\u03cc\u03bd\u03b7 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bd\u03b4\u03ad\u03b5\u03c4\u03b1\u03b9 \u03bc\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03b8\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03b5\u03c0\u03af\u03c3\u03b7\u03c2. | \u038c\u03bb\u03b5\u03c2 \u03bf\u03b9 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 {count} \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bd\u03b4\u03ad\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bc\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03b8\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03bf\u03cd\u03bd \u03b5\u03c0\u03af\u03c3\u03b7\u03c2.", - "process_date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", - "due_date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c0\u03c1\u03bf\u03b8\u03b5\u03c3\u03bc\u03af\u03b1\u03c2", - "payment_date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", - "invoice_date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7\u03c2", - "amount_min": "\u0395\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf \u03c0\u03bf\u03c3\u03cc", - "amount_max": "\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf \u03c0\u03bf\u03c3\u03cc", - "start_date": "\u0391\u03c1\u03c7\u03ae \u03c4\u03bf\u03c5 \u03b5\u03cd\u03c1\u03bf\u03c5\u03c2", - "end_date": "\u03a4\u03ad\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03b5\u03cd\u03c1\u03bf\u03c5\u03c2", - "extension_date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7\u03c2" - } -} \ No newline at end of file diff --git a/frontend/src/locales/en-gb.json b/frontend/src/locales/en-gb.json deleted file mode 100644 index cf3a172273..0000000000 --- a/frontend/src/locales/en-gb.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "Transfer", - "Withdrawal": "Withdrawal", - "Deposit": "Deposit", - "date_and_time": "Date and time", - "no_currency": "(no currency)", - "date": "Date", - "time": "Time", - "no_budget": "(no budget)", - "destination_account": "Destination account", - "source_account": "Source account", - "single_split": "Split", - "create_new_transaction": "Create a new transaction", - "balance": "Balance", - "transaction_journal_extra": "Extra information", - "transaction_journal_meta": "Meta information", - "basic_journal_information": "Basic transaction information", - "bills_to_pay": "Bills to pay", - "left_to_spend": "Left to spend", - "attachments": "Attachments", - "net_worth": "Net worth", - "bill": "Bill", - "no_bill": "(no bill)", - "tags": "Tags", - "internal_reference": "Internal reference", - "external_url": "External URL", - "no_piggy_bank": "(no piggy bank)", - "paid": "Paid", - "notes": "Notes", - "yourAccounts": "Your accounts", - "go_to_asset_accounts": "View your asset accounts", - "delete_account": "Delete account", - "transaction_table_description": "A table containing your transactions", - "account": "Account", - "description": "Description", - "amount": "Amount", - "budget": "Budget", - "category": "Category", - "opposing_account": "Opposing account", - "budgets": "Budgets", - "categories": "Categories", - "go_to_budgets": "Go to your budgets", - "income": "Revenue \/ income", - "go_to_deposits": "Go to deposits", - "go_to_categories": "Go to your categories", - "expense_accounts": "Expense accounts", - "go_to_expenses": "Go to expenses", - "go_to_bills": "Go to your bills", - "bills": "Bills", - "last_thirty_days": "Last thirty days", - "last_seven_days": "Last seven days", - "go_to_piggies": "Go to your piggy banks", - "saved": "Saved", - "piggy_banks": "Piggy banks", - "piggy_bank": "Piggy bank", - "amounts": "Amounts", - "left": "Left", - "spent": "Spent", - "Default asset account": "Default asset account", - "search_results": "Search results", - "include": "Include?", - "transaction": "Transaction", - "account_role_defaultAsset": "Default asset account", - "account_role_savingAsset": "Savings account", - "account_role_sharedAsset": "Shared asset account", - "clear_location": "Clear location", - "account_role_ccAsset": "Credit card", - "account_role_cashWalletAsset": "Cash wallet", - "daily_budgets": "Daily budgets", - "weekly_budgets": "Weekly budgets", - "monthly_budgets": "Monthly budgets", - "journals_in_period_for_account_js": "All transactions for account {title} between {start} and {end}", - "quarterly_budgets": "Quarterly budgets", - "create_new_expense": "Create new expense account", - "create_new_revenue": "Create new revenue account", - "create_new_liabilities": "Create new liability", - "half_year_budgets": "Half-yearly budgets", - "yearly_budgets": "Yearly budgets", - "split_transaction_title": "Description of the split transaction", - "errors_submission": "There was something wrong with your submission. Please check out the errors.", - "flash_error": "Error!", - "store_transaction": "Store transaction", - "flash_success": "Success!", - "create_another": "After storing, return here to create another one.", - "update_transaction": "Update transaction", - "after_update_create_another": "After updating, return here to continue editing.", - "transaction_updated_no_changes": "Transaction #{ID}<\/a> (\"{title}\") did not receive any changes.", - "transaction_updated_link": "Transaction #{ID}<\/a> (\"{title}\") has been updated.", - "spent_x_of_y": "Spent {amount} of {total}", - "search": "Search", - "create_new_asset": "Create new asset account", - "asset_accounts": "Asset accounts", - "reset_after": "Reset form after submission", - "bill_paid_on": "Paid on {date}", - "first_split_decides": "The first split determines the value of this field", - "first_split_overrules_source": "The first split may overrule the source account", - "first_split_overrules_destination": "The first split may overrule the destination account", - "transaction_stored_link": "Transaction #{ID} (\"{title}\")<\/a> has been stored.", - "custom_period": "Custom period", - "reset_to_current": "Reset to current period", - "select_period": "Select a period", - "location": "Location", - "other_budgets": "Custom timed budgets", - "journal_links": "Transaction links", - "go_to_withdrawals": "Go to your withdrawals", - "revenue_accounts": "Revenue accounts", - "add_another_split": "Add another split", - "actions": "Actions", - "earned": "Earned", - "empty": "(empty)", - "edit": "Edit", - "never": "Never", - "account_type_Loan": "Loan", - "account_type_Mortgage": "Mortgage", - "stored_new_account_js": "New account \"{name}<\/a>\" stored!", - "account_type_Debt": "Debt", - "liability_direction_null_short": "Unknown", - "delete": "Delete", - "store_new_asset_account": "Store new asset account", - "store_new_expense_account": "Store new expense account", - "store_new_liabilities_account": "Store new liability", - "store_new_revenue_account": "Store new revenue account", - "mandatoryFields": "Mandatory fields", - "optionalFields": "Optional fields", - "reconcile_this_account": "Reconcile this account", - "interest_calc_weekly": "Per week", - "interest_calc_monthly": "Per month", - "interest_calc_quarterly": "Per quarter", - "interest_calc_half-year": "Per half year", - "interest_calc_yearly": "Per year", - "liability_direction_credit": "I am owed this debt", - "liability_direction_debit": "I owe this debt to somebody else", - "liability_direction_credit_short": "Owed this debt", - "liability_direction_debit_short": "Owe this debt", - "account_type_debt": "Debt", - "account_type_loan": "Loan", - "left_in_debt": "Amount due", - "account_type_mortgage": "Mortgage", - "save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.", - "none_in_select_list": "(none)", - "transaction_expand_split": "Expand split", - "transaction_collapse_split": "Collapse split", - "default_group_title_name": "(ungrouped)", - "bill_repeats_weekly": "Repeats weekly", - "bill_repeats_monthly": "Repeats monthly", - "bill_repeats_quarterly": "Repeats quarterly", - "bill_repeats_half-year": "Repeats every half year", - "bill_repeats_yearly": "Repeats yearly", - "bill_repeats_weekly_other": "Repeats every other week", - "bill_repeats_monthly_other": "Repeats every other month", - "bill_repeats_quarterly_other": "Repeats every other quarter", - "bill_repeats_half-year_other": "Repeats yearly", - "bill_repeats_yearly_other": "Repeats every other year", - "bill_repeats_weekly_skip": "Repeats every {skip} weeks", - "bill_repeats_monthly_skip": "Repeats every {skip} months", - "bill_repeats_quarterly_skip": "Repeats every {skip} quarters", - "bill_repeats_half-year_skip": "Repeats every {skip} half years", - "bill_repeats_yearly_skip": "Repeats every {skip} years", - "not_expected_period": "Not expected this period", - "subscriptions": "Subscriptions", - "bill_expected_date_js": "Expected {date}", - "inactive": "Inactive", - "forever": "Forever", - "extension_date_is": "Extension date is {date}", - "create_new_bill": "Create new bill", - "store_new_bill": "Store new bill", - "repeat_freq_yearly": "yearly", - "repeat_freq_half-year": "every half-year", - "repeat_freq_quarterly": "quarterly", - "repeat_freq_monthly": "monthly", - "repeat_freq_weekly": "weekly", - "credit_card_type_monthlyFull": "Full payment every month", - "update_liabilities_account": "Update liability", - "update_expense_account": "Update expense account", - "update_revenue_account": "Update revenue account", - "update_undefined_account": "Update account", - "update_asset_account": "Update asset account", - "updated_account_js": "Updated account \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "Piggy bank", - "percentage": "pct.", - "amount": "Amount", - "lastActivity": "Last activity", - "name": "Name", - "role": "Role", - "description": "Description", - "date": "Date", - "source_account": "Source account", - "destination_account": "Destination account", - "category": "Category", - "iban": "IBAN", - "interest": "Interest", - "interest_period": "Interest period", - "liability_type": "Type of liability", - "liability_direction": "Liability in\/out", - "currentBalance": "Current balance", - "next_expected_match": "Next expected match", - "expected_info": "Next expected transaction", - "start_date": "Start date", - "end_date": "End date", - "payment_info": "Payment information" - }, - "config": { - "html_language": "en-gb", - "week_in_year_fns": "'Week' w, yyyy", - "month_and_day_fns": "MMMM d, y", - "quarter_fns": "'Q'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "Foreign amount", - "interest_date": "Interest date", - "name": "Name", - "amount": "Amount", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Notes", - "location": "Location", - "repeat_freq": "Repeats", - "skip": "Skip", - "startdate": "Start date", - "enddate": "End date", - "object_group": "Group", - "attachments": "Attachments", - "deletePermanently": "Delete permanently", - "active": "Active", - "include_net_worth": "Include in net worth", - "cc_type": "Credit card payment plan", - "account_number": "Account number", - "cc_monthly_payment_date": "Credit card monthly payment date", - "virtual_balance": "Virtual balance", - "opening_balance": "Opening balance", - "opening_balance_date": "Opening balance date", - "date": "Date", - "interest": "Interest", - "interest_period": "Interest period", - "currency_id": "Currency", - "liability_type": "Liability type", - "account_role": "Account role", - "liability_direction": "Liability in\/out", - "book_date": "Book date", - "permDeleteWarning": "Deleting stuff from Firefly III is permanent and cannot be undone.", - "account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?", - "also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.", - "also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.", - "process_date": "Processing date", - "due_date": "Due date", - "payment_date": "Payment date", - "invoice_date": "Invoice date", - "amount_min": "Minimum amount", - "amount_max": "Maximum amount", - "start_date": "Start of range", - "end_date": "End of range", - "extension_date": "Extension date" - } -} \ No newline at end of file diff --git a/frontend/src/locales/en.json b/frontend/src/locales/en.json deleted file mode 100644 index 2cf16367fc..0000000000 --- a/frontend/src/locales/en.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "Transfer", - "Withdrawal": "Withdrawal", - "Deposit": "Deposit", - "date_and_time": "Date and time", - "no_currency": "(no currency)", - "date": "Date", - "time": "Time", - "no_budget": "(no budget)", - "destination_account": "Destination account", - "source_account": "Source account", - "single_split": "Split", - "create_new_transaction": "Create a new transaction", - "balance": "Balance", - "transaction_journal_extra": "Extra information", - "transaction_journal_meta": "Meta information", - "basic_journal_information": "Basic transaction information", - "bills_to_pay": "Bills to pay", - "left_to_spend": "Left to spend", - "attachments": "Attachments", - "net_worth": "Net worth", - "bill": "Bill", - "no_bill": "(no bill)", - "tags": "Tags", - "internal_reference": "Internal reference", - "external_url": "External URL", - "no_piggy_bank": "(no piggy bank)", - "paid": "Paid", - "notes": "Notes", - "yourAccounts": "Your accounts", - "go_to_asset_accounts": "View your asset accounts", - "delete_account": "Delete account", - "transaction_table_description": "A table containing your transactions", - "account": "Account", - "description": "Description", - "amount": "Amount", - "budget": "Budget", - "category": "Category", - "opposing_account": "Opposing account", - "budgets": "Budgets", - "categories": "Categories", - "go_to_budgets": "Go to your budgets", - "income": "Revenue \/ income", - "go_to_deposits": "Go to deposits", - "go_to_categories": "Go to your categories", - "expense_accounts": "Expense accounts", - "go_to_expenses": "Go to expenses", - "go_to_bills": "Go to your bills", - "bills": "Bills", - "last_thirty_days": "Last thirty days", - "last_seven_days": "Last seven days", - "go_to_piggies": "Go to your piggy banks", - "saved": "Saved", - "piggy_banks": "Piggy banks", - "piggy_bank": "Piggy bank", - "amounts": "Amounts", - "left": "Left", - "spent": "Spent", - "Default asset account": "Default asset account", - "search_results": "Search results", - "include": "Include?", - "transaction": "Transaction", - "account_role_defaultAsset": "Default asset account", - "account_role_savingAsset": "Savings account", - "account_role_sharedAsset": "Shared asset account", - "clear_location": "Clear location", - "account_role_ccAsset": "Credit card", - "account_role_cashWalletAsset": "Cash wallet", - "daily_budgets": "Daily budgets", - "weekly_budgets": "Weekly budgets", - "monthly_budgets": "Monthly budgets", - "journals_in_period_for_account_js": "All transactions for account {title} between {start} and {end}", - "quarterly_budgets": "Quarterly budgets", - "create_new_expense": "Create new expense account", - "create_new_revenue": "Create new revenue account", - "create_new_liabilities": "Create new liability", - "half_year_budgets": "Half-yearly budgets", - "yearly_budgets": "Yearly budgets", - "split_transaction_title": "Description of the split transaction", - "errors_submission": "There was something wrong with your submission. Please check out the errors.", - "flash_error": "Error!", - "store_transaction": "Store transaction", - "flash_success": "Success!", - "create_another": "After storing, return here to create another one.", - "update_transaction": "Update transaction", - "after_update_create_another": "After updating, return here to continue editing.", - "transaction_updated_no_changes": "Transaction #{ID}<\/a> (\"{title}\") did not receive any changes.", - "transaction_updated_link": "Transaction #{ID}<\/a> (\"{title}\") has been updated.", - "spent_x_of_y": "Spent {amount} of {total}", - "search": "Search", - "create_new_asset": "Create new asset account", - "asset_accounts": "Asset accounts", - "reset_after": "Reset form after submission", - "bill_paid_on": "Paid on {date}", - "first_split_decides": "The first split determines the value of this field", - "first_split_overrules_source": "The first split may overrule the source account", - "first_split_overrules_destination": "The first split may overrule the destination account", - "transaction_stored_link": "Transaction #{ID} (\"{title}\")<\/a> has been stored.", - "custom_period": "Custom period", - "reset_to_current": "Reset to current period", - "select_period": "Select a period", - "location": "Location", - "other_budgets": "Custom timed budgets", - "journal_links": "Transaction links", - "go_to_withdrawals": "Go to your withdrawals", - "revenue_accounts": "Revenue accounts", - "add_another_split": "Add another split", - "actions": "Actions", - "earned": "Earned", - "empty": "(empty)", - "edit": "Edit", - "never": "Never", - "account_type_Loan": "Loan", - "account_type_Mortgage": "Mortgage", - "stored_new_account_js": "New account \"{name}<\/a>\" stored!", - "account_type_Debt": "Debt", - "liability_direction_null_short": "Unknown", - "delete": "Delete", - "store_new_asset_account": "Store new asset account", - "store_new_expense_account": "Store new expense account", - "store_new_liabilities_account": "Store new liability", - "store_new_revenue_account": "Store new revenue account", - "mandatoryFields": "Mandatory fields", - "optionalFields": "Optional fields", - "reconcile_this_account": "Reconcile this account", - "interest_calc_weekly": "Per week", - "interest_calc_monthly": "Per month", - "interest_calc_quarterly": "Per quarter", - "interest_calc_half-year": "Per half year", - "interest_calc_yearly": "Per year", - "liability_direction_credit": "I am owed this debt", - "liability_direction_debit": "I owe this debt to somebody else", - "liability_direction_credit_short": "Owed this debt", - "liability_direction_debit_short": "Owe this debt", - "account_type_debt": "Debt", - "account_type_loan": "Loan", - "left_in_debt": "Amount due", - "account_type_mortgage": "Mortgage", - "save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.", - "none_in_select_list": "(none)", - "transaction_expand_split": "Expand split", - "transaction_collapse_split": "Collapse split", - "default_group_title_name": "(ungrouped)", - "bill_repeats_weekly": "Repeats weekly", - "bill_repeats_monthly": "Repeats monthly", - "bill_repeats_quarterly": "Repeats quarterly", - "bill_repeats_half-year": "Repeats every half year", - "bill_repeats_yearly": "Repeats yearly", - "bill_repeats_weekly_other": "Repeats every other week", - "bill_repeats_monthly_other": "Repeats every other month", - "bill_repeats_quarterly_other": "Repeats every other quarter", - "bill_repeats_half-year_other": "Repeats yearly", - "bill_repeats_yearly_other": "Repeats every other year", - "bill_repeats_weekly_skip": "Repeats every {skip} weeks", - "bill_repeats_monthly_skip": "Repeats every {skip} months", - "bill_repeats_quarterly_skip": "Repeats every {skip} quarters", - "bill_repeats_half-year_skip": "Repeats every {skip} half years", - "bill_repeats_yearly_skip": "Repeats every {skip} years", - "not_expected_period": "Not expected this period", - "subscriptions": "Subscriptions", - "bill_expected_date_js": "Expected {date}", - "inactive": "Inactive", - "forever": "Forever", - "extension_date_is": "Extension date is {date}", - "create_new_bill": "Create new bill", - "store_new_bill": "Store new bill", - "repeat_freq_yearly": "yearly", - "repeat_freq_half-year": "every half-year", - "repeat_freq_quarterly": "quarterly", - "repeat_freq_monthly": "monthly", - "repeat_freq_weekly": "weekly", - "credit_card_type_monthlyFull": "Full payment every month", - "update_liabilities_account": "Update liability", - "update_expense_account": "Update expense account", - "update_revenue_account": "Update revenue account", - "update_undefined_account": "Update account", - "update_asset_account": "Update asset account", - "updated_account_js": "Updated account \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "Piggy bank", - "percentage": "pct.", - "amount": "Amount", - "lastActivity": "Last activity", - "name": "Name", - "role": "Role", - "description": "Description", - "date": "Date", - "source_account": "Source account", - "destination_account": "Destination account", - "category": "Category", - "iban": "IBAN", - "interest": "Interest", - "interest_period": "Interest period", - "liability_type": "Type of liability", - "liability_direction": "Liability in\/out", - "currentBalance": "Current balance", - "next_expected_match": "Next expected match", - "expected_info": "Next expected transaction", - "start_date": "Start date", - "end_date": "End date", - "payment_info": "Payment information" - }, - "config": { - "html_language": "en", - "week_in_year_fns": "'Week' w, yyyy", - "month_and_day_fns": "MMMM d, y", - "quarter_fns": "'Q'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "Foreign amount", - "interest_date": "Interest date", - "name": "Name", - "amount": "Amount", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Notes", - "location": "Location", - "repeat_freq": "Repeats", - "skip": "Skip", - "startdate": "Start date", - "enddate": "End date", - "object_group": "Group", - "attachments": "Attachments", - "deletePermanently": "Delete permanently", - "active": "Active", - "include_net_worth": "Include in net worth", - "cc_type": "Credit card payment plan", - "account_number": "Account number", - "cc_monthly_payment_date": "Credit card monthly payment date", - "virtual_balance": "Virtual balance", - "opening_balance": "Opening balance", - "opening_balance_date": "Opening balance date", - "date": "Date", - "interest": "Interest", - "interest_period": "Interest period", - "currency_id": "Currency", - "liability_type": "Liability type", - "account_role": "Account role", - "liability_direction": "Liability in\/out", - "book_date": "Book date", - "permDeleteWarning": "Deleting stuff from Firefly III is permanent and cannot be undone.", - "account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?", - "also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.", - "also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.", - "process_date": "Processing date", - "due_date": "Due date", - "payment_date": "Payment date", - "invoice_date": "Invoice date", - "amount_min": "Minimum amount", - "amount_max": "Maximum amount", - "start_date": "Start of range", - "end_date": "End of range", - "extension_date": "Extension date" - } -} \ No newline at end of file diff --git a/frontend/src/locales/es.json b/frontend/src/locales/es.json deleted file mode 100644 index 5c57ba820e..0000000000 --- a/frontend/src/locales/es.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "Transferencia", - "Withdrawal": "Retiro", - "Deposit": "Dep\u00f3sito", - "date_and_time": "Fecha y hora", - "no_currency": "(sin moneda)", - "date": "Fecha", - "time": "Hora", - "no_budget": "(sin presupuesto)", - "destination_account": "Cuenta destino", - "source_account": "Cuenta origen", - "single_split": "Divisi\u00f3n", - "create_new_transaction": "Crear una nueva transacci\u00f3n", - "balance": "Balance", - "transaction_journal_extra": "Informaci\u00f3n adicional", - "transaction_journal_meta": "Informaci\u00f3n Meta", - "basic_journal_information": "Informaci\u00f3n b\u00e1sica de transacci\u00f3n", - "bills_to_pay": "Facturas por pagar", - "left_to_spend": "Disponible para gastar", - "attachments": "Archivos adjuntos", - "net_worth": "Valor Neto", - "bill": "Factura", - "no_bill": "(sin factura)", - "tags": "Etiquetas", - "internal_reference": "Referencia interna", - "external_url": "URL externa", - "no_piggy_bank": "(sin hucha)", - "paid": "Pagado", - "notes": "Notas", - "yourAccounts": "Tus cuentas", - "go_to_asset_accounts": "Ver tus cuentas de activos", - "delete_account": "Eliminar cuenta", - "transaction_table_description": "Una tabla que contiene sus transacciones", - "account": "Cuenta", - "description": "Descripci\u00f3n", - "amount": "Cantidad", - "budget": "Presupuesto", - "category": "Categoria", - "opposing_account": "Cuenta opuesta", - "budgets": "Presupuestos", - "categories": "Categor\u00edas", - "go_to_budgets": "Ir a tus presupuestos", - "income": "Ingresos \/ salarios", - "go_to_deposits": "Ir a dep\u00f3sitos", - "go_to_categories": "Ir a tus categor\u00edas", - "expense_accounts": "Cuentas de gastos", - "go_to_expenses": "Ir a gastos", - "go_to_bills": "Ir a tus cuentas", - "bills": "Facturas", - "last_thirty_days": "\u00daltimos treinta d\u00edas", - "last_seven_days": "\u00daltimos siete d\u00edas", - "go_to_piggies": "Ir a tu hucha", - "saved": "Guardado", - "piggy_banks": "Huchas", - "piggy_bank": "Hucha", - "amounts": "Importes", - "left": "Disponible", - "spent": "Gastado", - "Default asset account": "Cuenta de activos por defecto", - "search_results": "Buscar resultados", - "include": "\u00bfIncluir?", - "transaction": "Transaccion", - "account_role_defaultAsset": "Cuentas de ingresos por defecto", - "account_role_savingAsset": "Cuentas de ahorros", - "account_role_sharedAsset": "Cuenta de ingresos compartida", - "clear_location": "Eliminar ubicaci\u00f3n", - "account_role_ccAsset": "Tarjeta de Cr\u00e9dito", - "account_role_cashWalletAsset": "Billetera de efectivo", - "daily_budgets": "Presupuestos diarios", - "weekly_budgets": "Presupuestos semanales", - "monthly_budgets": "Presupuestos mensuales", - "journals_in_period_for_account_js": "Todas las transacciones de la cuenta {title} entre {start} y {end}", - "quarterly_budgets": "Presupuestos trimestrales", - "create_new_expense": "Crear nueva cuenta de gastos", - "create_new_revenue": "Crear nueva cuenta de ingresos", - "create_new_liabilities": "Crear nuevo pasivo", - "half_year_budgets": "Presupuestos semestrales", - "yearly_budgets": "Presupuestos anuales", - "split_transaction_title": "Descripci\u00f3n de la transacci\u00f3n dividida", - "errors_submission": "Hubo un problema con su env\u00edo. Por favor, compruebe los errores.", - "flash_error": "\u00a1Error!", - "store_transaction": "Guardar transacci\u00f3n", - "flash_success": "\u00a1Operaci\u00f3n correcta!", - "create_another": "Despu\u00e9s de guardar, vuelve aqu\u00ed para crear otro.", - "update_transaction": "Actualizar transacci\u00f3n", - "after_update_create_another": "Despu\u00e9s de actualizar, vuelve aqu\u00ed para continuar editando.", - "transaction_updated_no_changes": "La transacci\u00f3n #{ID}<\/a> (\"{title}\") no recibi\u00f3 ning\u00fan cambio.", - "transaction_updated_link": "La transacci\u00f3n #{ID}<\/a> (\"{title}\") ha sido actualizada.", - "spent_x_of_y": "{amount} gastado de {total}", - "search": "Buscar", - "create_new_asset": "Crear nueva cuenta de activos", - "asset_accounts": "Cuenta de activos", - "reset_after": "Restablecer formulario despu\u00e9s del env\u00edo", - "bill_paid_on": "Pagado el {date}", - "first_split_decides": "La primera divisi\u00f3n determina el valor de este campo", - "first_split_overrules_source": "La primera divisi\u00f3n puede anular la cuenta de origen", - "first_split_overrules_destination": "La primera divisi\u00f3n puede anular la cuenta de destino", - "transaction_stored_link": "La transacci\u00f3n #{ID} (\"{title}\")<\/a> ha sido almacenada.", - "custom_period": "Per\u00edodo personalizado", - "reset_to_current": "Restablecer al per\u00edodo actual", - "select_period": "Seleccione un per\u00edodo", - "location": "Ubicaci\u00f3n", - "other_budgets": "Presupuestos de tiempo personalizado", - "journal_links": "Enlaces de transacciones", - "go_to_withdrawals": "Ir a tus retiradas", - "revenue_accounts": "Cuentas de ingresos", - "add_another_split": "A\u00f1adir otra divisi\u00f3n", - "actions": "Acciones", - "earned": "Ganado", - "empty": "(vac\u00edo)", - "edit": "Editar", - "never": "Nunca", - "account_type_Loan": "Pr\u00e9stamo", - "account_type_Mortgage": "Hipoteca", - "stored_new_account_js": "Nueva cuenta \"{name}<\/a>\" guardada!", - "account_type_Debt": "Deuda", - "liability_direction_null_short": "Desconocido", - "delete": "Eliminar", - "store_new_asset_account": "Crear cuenta de activos", - "store_new_expense_account": "Crear cuenta de gastos", - "store_new_liabilities_account": "Crear nuevo pasivo", - "store_new_revenue_account": "Crear cuenta de ingresos", - "mandatoryFields": "Campos obligatorios", - "optionalFields": "Campos opcionales", - "reconcile_this_account": "Reconciliar esta cuenta", - "interest_calc_weekly": "Por semana", - "interest_calc_monthly": "Por mes", - "interest_calc_quarterly": "Por trimestre", - "interest_calc_half-year": "Por semestre", - "interest_calc_yearly": "Por a\u00f1o", - "liability_direction_credit": "Se me debe esta deuda", - "liability_direction_debit": "Le debo esta deuda a otra persona", - "liability_direction_credit_short": "Ten\u00eda esta deuda", - "liability_direction_debit_short": "Tiene esta deuda", - "account_type_debt": "Deuda", - "account_type_loan": "Pr\u00e9stamo", - "left_in_debt": "Importe debido", - "account_type_mortgage": "Hipoteca", - "save_transactions_by_moving_js": "Ninguna transacci\u00f3n|Guardar esta transacci\u00f3n movi\u00e9ndola a otra cuenta. |Guardar estas transacciones movi\u00e9ndolas a otra cuenta.", - "none_in_select_list": "(ninguno)", - "transaction_expand_split": "Expandir divisi\u00f3n", - "transaction_collapse_split": "Colapsar divisi\u00f3n", - "default_group_title_name": "(sin agrupaci\u00f3n)", - "bill_repeats_weekly": "Repetir semanalmente", - "bill_repeats_monthly": "Repetir mensualmente", - "bill_repeats_quarterly": "Repite trimestralmente", - "bill_repeats_half-year": "Repetir cada 6 meses", - "bill_repeats_yearly": "Repetir anualmente", - "bill_repeats_weekly_other": "Repetir cada dos semanas", - "bill_repeats_monthly_other": "Repetir cada dos meses", - "bill_repeats_quarterly_other": "Repetir cada dos trimestres", - "bill_repeats_half-year_other": "Repetir anualmente", - "bill_repeats_yearly_other": "Repetir cada dos a\u00f1os", - "bill_repeats_weekly_skip": "Repetir cada {skip} semanas", - "bill_repeats_monthly_skip": "Repetir cada {skip} meses", - "bill_repeats_quarterly_skip": "Repetir cada {skip} trimestres", - "bill_repeats_half-year_skip": "Repetir cada {skip} medios a\u00f1os", - "bill_repeats_yearly_skip": "Repetir cada {skip} a\u00f1os", - "not_expected_period": "No se espera en este per\u00edodo", - "subscriptions": "Suscripciones", - "bill_expected_date_js": "Fecha prevista {date}", - "inactive": "Inactivo", - "forever": "Siempre", - "extension_date_is": "Fecha de extensi\u00f3n es {date}", - "create_new_bill": "Crear nueva factura", - "store_new_bill": "Crear factura", - "repeat_freq_yearly": "anualmente", - "repeat_freq_half-year": "cada medio a\u00f1o", - "repeat_freq_quarterly": "trimestralmente", - "repeat_freq_monthly": "mensualmente", - "repeat_freq_weekly": "semanalmente", - "credit_card_type_monthlyFull": "Pago completo cada mes", - "update_liabilities_account": "Actualizar pasivo", - "update_expense_account": "Actualizar cuenta de gastos", - "update_revenue_account": "Actualizar cuenta de ingresos", - "update_undefined_account": "Actualizar cuenta", - "update_asset_account": "Actualizar cuenta de activos", - "updated_account_js": "Cuenta actualizada \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "Alcancilla", - "percentage": "pct.", - "amount": "Monto", - "lastActivity": "Actividad m\u00e1s reciente", - "name": "Nombre", - "role": "Rol", - "description": "Descripci\u00f3n", - "date": "Fecha", - "source_account": "Cuenta origen", - "destination_account": "Cuenta destino", - "category": "Categor\u00eda", - "iban": "IBAN", - "interest": "Inter\u00e9s", - "interest_period": "Per\u00edodo de inter\u00e9s", - "liability_type": "Tipo de pasivo", - "liability_direction": "Pasivo entrada\/salida", - "currentBalance": "Balance actual", - "next_expected_match": "Pr\u00f3xima coincidencia esperada", - "expected_info": "Siguiente transacci\u00f3n esperada", - "start_date": "Fecha de inicio", - "end_date": "Fecha fin", - "payment_info": "Informaci\u00f3n del pago" - }, - "config": { - "html_language": "es", - "week_in_year_fns": "'Semana' w, yyyy", - "month_and_day_fns": "d MMMM y", - "quarter_fns": "'Trimestre' Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "Cantidad extranjera", - "interest_date": "Fecha de inter\u00e9s", - "name": "Nombre", - "amount": "Importe", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Notas", - "location": "Ubicaci\u00f3n", - "repeat_freq": "Repetici\u00f3n", - "skip": "Saltar", - "startdate": "Fecha de inicio", - "enddate": "Fecha fin", - "object_group": "Grupo", - "attachments": "Adjuntos", - "deletePermanently": "Borrar permanentemente", - "active": "Activo", - "include_net_worth": "Incluir en valor neto", - "cc_type": "Plan de pagos con tarjeta de cr\u00e9dito", - "account_number": "N\u00famero de cuenta", - "cc_monthly_payment_date": "Fecha de pago mensual de la tarjeta de cr\u00e9dito", - "virtual_balance": "Saldo virtual", - "opening_balance": "Saldo inicial", - "opening_balance_date": "Fecha del saldo inicial", - "date": "Fecha", - "interest": "Inter\u00e9s", - "interest_period": "Per\u00edodo de inter\u00e9s", - "currency_id": "Divisa", - "liability_type": "Tipo de pasivo", - "account_role": "Rol de cuenta", - "liability_direction": "Pasivo entrada\/salida", - "book_date": "Fecha de registro", - "permDeleteWarning": "Eliminar cosas de Firefly III es permanente y no se puede deshacer.", - "account_areYouSure_js": "\u00bfEst\u00e1 seguro que desea eliminar la cuenta llamada \"{name}\"?", - "also_delete_piggyBanks_js": "Ninguna alcanc\u00eda|La \u00fanica alcanc\u00eda conectada a esta cuenta tambi\u00e9n ser\u00e1 borrada. Tambi\u00e9n se eliminar\u00e1n todas {count} alcanc\u00edas conectados a esta cuenta.", - "also_delete_transactions_js": "Ninguna transacci\u00f3n|La \u00fanica transacci\u00f3n conectada a esta cuenta se eliminar\u00e1 tambi\u00e9n.|Todas las {count} transacciones conectadas a esta cuenta tambi\u00e9n se eliminar\u00e1n.", - "process_date": "Fecha de procesamiento", - "due_date": "Fecha de vencimiento", - "payment_date": "Fecha de pago", - "invoice_date": "Fecha de la factura", - "amount_min": "Importe m\u00ednimo", - "amount_max": "Importe m\u00e1ximo", - "start_date": "Inicio del rango", - "end_date": "Final del rango", - "extension_date": "Fecha de extensi\u00f3n" - } -} \ No newline at end of file diff --git a/frontend/src/locales/fi.json b/frontend/src/locales/fi.json deleted file mode 100644 index cea5bfb5c1..0000000000 --- a/frontend/src/locales/fi.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "Siirto", - "Withdrawal": "Nosto", - "Deposit": "Talletus", - "date_and_time": "Date and time", - "no_currency": "(ei valuuttaa)", - "date": "P\u00e4iv\u00e4m\u00e4\u00e4r\u00e4", - "time": "Time", - "no_budget": "(ei budjettia)", - "destination_account": "Kohdetili", - "source_account": "L\u00e4hdetili", - "single_split": "Split", - "create_new_transaction": "Create a new transaction", - "balance": "Saldo", - "transaction_journal_extra": "Extra information", - "transaction_journal_meta": "Metatiedot", - "basic_journal_information": "Basic transaction information", - "bills_to_pay": "Laskuja maksettavana", - "left_to_spend": "K\u00e4ytett\u00e4viss\u00e4", - "attachments": "Liitteet", - "net_worth": "Varallisuus", - "bill": "Lasku", - "no_bill": "(no bill)", - "tags": "T\u00e4git", - "internal_reference": "Internal reference", - "external_url": "External URL", - "no_piggy_bank": "(ei s\u00e4\u00e4st\u00f6possu)", - "paid": "Maksettu", - "notes": "Muistiinpanot", - "yourAccounts": "Omat tilisi", - "go_to_asset_accounts": "Tarkastele omaisuustilej\u00e4si", - "delete_account": "Poista k\u00e4ytt\u00e4j\u00e4tili", - "transaction_table_description": "A table containing your transactions", - "account": "Tili", - "description": "Kuvaus", - "amount": "Summa", - "budget": "Budjetti", - "category": "Kategoria", - "opposing_account": "Vastatili", - "budgets": "Budjetit", - "categories": "Kategoriat", - "go_to_budgets": "Avaa omat budjetit", - "income": "Tuotto \/ ansio", - "go_to_deposits": "Go to deposits", - "go_to_categories": "Avaa omat kategoriat", - "expense_accounts": "Kulutustilit", - "go_to_expenses": "Go to expenses", - "go_to_bills": "Avaa omat laskut", - "bills": "Laskut", - "last_thirty_days": "Viimeiset 30 p\u00e4iv\u00e4\u00e4", - "last_seven_days": "Viimeiset 7 p\u00e4iv\u00e4\u00e4", - "go_to_piggies": "Tarkastele s\u00e4\u00e4st\u00f6possujasi", - "saved": "Saved", - "piggy_banks": "S\u00e4\u00e4st\u00f6possut", - "piggy_bank": "S\u00e4\u00e4st\u00f6possu", - "amounts": "Amounts", - "left": "J\u00e4ljell\u00e4", - "spent": "K\u00e4ytetty", - "Default asset account": "Oletusomaisuustili", - "search_results": "Haun tulokset", - "include": "Include?", - "transaction": "Tapahtuma", - "account_role_defaultAsset": "Oletusk\u00e4ytt\u00f6tili", - "account_role_savingAsset": "S\u00e4\u00e4st\u00f6tili", - "account_role_sharedAsset": "Jaettu k\u00e4ytt\u00f6tili", - "clear_location": "Tyhjenn\u00e4 sijainti", - "account_role_ccAsset": "Luottokortti", - "account_role_cashWalletAsset": "K\u00e4teinen", - "daily_budgets": "Daily budgets", - "weekly_budgets": "Weekly budgets", - "monthly_budgets": "Monthly budgets", - "journals_in_period_for_account_js": "All transactions for account {title} between {start} and {end}", - "quarterly_budgets": "Quarterly budgets", - "create_new_expense": "Luo uusi maksutili", - "create_new_revenue": "Luo uusi tuottotili", - "create_new_liabilities": "Create new liability", - "half_year_budgets": "Half-yearly budgets", - "yearly_budgets": "Yearly budgets", - "split_transaction_title": "Jaetun tapahtuman kuvaus", - "errors_submission": "There was something wrong with your submission. Please check out the errors.", - "flash_error": "Virhe!", - "store_transaction": "Store transaction", - "flash_success": "Valmista tuli!", - "create_another": "Tallennuksen j\u00e4lkeen, palaa takaisin luomaan uusi tapahtuma.", - "update_transaction": "P\u00e4ivit\u00e4 tapahtuma", - "after_update_create_another": "P\u00e4ivityksen j\u00e4lkeen, palaa takaisin jatkamaan muokkausta.", - "transaction_updated_no_changes": "Transaction #{ID}<\/a> (\"{title}\") did not receive any changes.", - "transaction_updated_link": "Transaction #{ID}<\/a> (\"{title}\") has been updated.", - "spent_x_of_y": "Spent {amount} of {total}", - "search": "Hae", - "create_new_asset": "Luo uusi omaisuustili", - "asset_accounts": "K\u00e4ytt\u00f6tilit", - "reset_after": "Tyhjenn\u00e4 lomake l\u00e4hetyksen j\u00e4lkeen", - "bill_paid_on": "Paid on {date}", - "first_split_decides": "The first split determines the value of this field", - "first_split_overrules_source": "The first split may overrule the source account", - "first_split_overrules_destination": "The first split may overrule the destination account", - "transaction_stored_link": "Transaction #{ID} (\"{title}\")<\/a> has been stored.", - "custom_period": "Custom period", - "reset_to_current": "Reset to current period", - "select_period": "Select a period", - "location": "Sijainti", - "other_budgets": "Custom timed budgets", - "journal_links": "Tapahtuman linkit", - "go_to_withdrawals": "Go to your withdrawals", - "revenue_accounts": "Tuottotilit", - "add_another_split": "Lis\u00e4\u00e4 tapahtumaan uusi osa", - "actions": "Toiminnot", - "earned": "Ansaittu", - "empty": "(tyhj\u00e4)", - "edit": "Muokkaa", - "never": "Ei koskaan", - "account_type_Loan": "Laina", - "account_type_Mortgage": "Kiinnelaina", - "stored_new_account_js": "New account \"{name}<\/a>\" stored!", - "account_type_Debt": "Velka", - "liability_direction_null_short": "Unknown", - "delete": "Poista", - "store_new_asset_account": "Tallenna uusi omaisuustili", - "store_new_expense_account": "Tallenna uusi kulutustili", - "store_new_liabilities_account": "Tallenna uusi vastuu", - "store_new_revenue_account": "Tallenna uusi tuottotili", - "mandatoryFields": "Pakolliset kent\u00e4t", - "optionalFields": "Valinnaiset kent\u00e4t", - "reconcile_this_account": "T\u00e4sm\u00e4yt\u00e4 t\u00e4m\u00e4 tili", - "interest_calc_weekly": "Per week", - "interest_calc_monthly": "Kuukaudessa", - "interest_calc_quarterly": "Per quarter", - "interest_calc_half-year": "Per half year", - "interest_calc_yearly": "Vuodessa", - "liability_direction_credit": "I am owed this debt", - "liability_direction_debit": "I owe this debt to somebody else", - "liability_direction_credit_short": "Owed this debt", - "liability_direction_debit_short": "Owe this debt", - "account_type_debt": "Debt", - "account_type_loan": "Loan", - "left_in_debt": "Amount due", - "account_type_mortgage": "Mortgage", - "save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.", - "none_in_select_list": "(ei mit\u00e4\u00e4n)", - "transaction_expand_split": "Expand split", - "transaction_collapse_split": "Collapse split", - "default_group_title_name": "(ryhmittelem\u00e4tt\u00f6m\u00e4t)", - "bill_repeats_weekly": "Repeats weekly", - "bill_repeats_monthly": "Repeats monthly", - "bill_repeats_quarterly": "Repeats quarterly", - "bill_repeats_half-year": "Repeats every half year", - "bill_repeats_yearly": "Repeats yearly", - "bill_repeats_weekly_other": "Repeats every other week", - "bill_repeats_monthly_other": "Repeats every other month", - "bill_repeats_quarterly_other": "Repeats every other quarter", - "bill_repeats_half-year_other": "Repeats yearly", - "bill_repeats_yearly_other": "Repeats every other year", - "bill_repeats_weekly_skip": "Repeats every {skip} weeks", - "bill_repeats_monthly_skip": "Repeats every {skip} months", - "bill_repeats_quarterly_skip": "Repeats every {skip} quarters", - "bill_repeats_half-year_skip": "Repeats every {skip} half years", - "bill_repeats_yearly_skip": "Repeats every {skip} years", - "not_expected_period": "Ei odotettavissa t\u00e4ss\u00e4 jaksossa", - "subscriptions": "Subscriptions", - "bill_expected_date_js": "Expected {date}", - "inactive": "Ei aktiivinen", - "forever": "Forever", - "extension_date_is": "Extension date is {date}", - "create_new_bill": "Luo uusi lasku", - "store_new_bill": "Tallenna uusi lasku", - "repeat_freq_yearly": "vuosittain", - "repeat_freq_half-year": "puoli-vuosittain", - "repeat_freq_quarterly": "nelj\u00e4nnesvuosittain", - "repeat_freq_monthly": "kuukausittain", - "repeat_freq_weekly": "viikoittain", - "credit_card_type_monthlyFull": "Full payment every month", - "update_liabilities_account": "P\u00e4ivit\u00e4 vastuu", - "update_expense_account": "P\u00e4ivit\u00e4 kulutustili", - "update_revenue_account": "P\u00e4ivit\u00e4 tuottotili", - "update_undefined_account": "Update account", - "update_asset_account": "P\u00e4ivit\u00e4 omaisuustili", - "updated_account_js": "Updated account \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "S\u00e4\u00e4st\u00f6possu", - "percentage": "pros.", - "amount": "Summa", - "lastActivity": "Viimeisin tapahtuma", - "name": "Nimi", - "role": "Rooli", - "description": "Kuvaus", - "date": "P\u00e4iv\u00e4m\u00e4\u00e4r\u00e4", - "source_account": "L\u00e4hdetili", - "destination_account": "Kohdetili", - "category": "Kategoria", - "iban": "IBAN", - "interest": "Korko", - "interest_period": "Interest period", - "liability_type": "Vastuutyyppi", - "liability_direction": "Liability in\/out", - "currentBalance": "T\u00e4m\u00e4nhetkinen saldo", - "next_expected_match": "Seuraava lasku odotettavissa", - "expected_info": "Next expected transaction", - "start_date": "Start date", - "end_date": "End date", - "payment_info": "Payment information" - }, - "config": { - "html_language": "fi", - "week_in_year_fns": "'Week' w, yyyy", - "month_and_day_fns": "MMMM d, y", - "quarter_fns": "'Q'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "Ulkomaan summa", - "interest_date": "Korkop\u00e4iv\u00e4", - "name": "Nimi", - "amount": "Summa", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Muistiinpanot", - "location": "Sijainti", - "repeat_freq": "Toistot", - "skip": "Ohita", - "startdate": "Aloitusp\u00e4iv\u00e4", - "enddate": "End date", - "object_group": "Ryhm\u00e4", - "attachments": "Liitteet", - "deletePermanently": "Poista pysyv\u00e4sti", - "active": "Aktiivinen", - "include_net_worth": "Sis\u00e4llyt\u00e4 varallisuuteen", - "cc_type": "Luottokortin maksusuunnitelma", - "account_number": "Tilinumero", - "cc_monthly_payment_date": "Luottokortin laskun er\u00e4p\u00e4iv\u00e4", - "virtual_balance": "Virtuaalinen saldo", - "opening_balance": "Alkusaldo", - "opening_balance_date": "Alkusaldon p\u00e4iv\u00e4m\u00e4\u00e4r\u00e4", - "date": "P\u00e4iv\u00e4m\u00e4\u00e4r\u00e4", - "interest": "Korko", - "interest_period": "Korkojakso", - "currency_id": "Valuutta", - "liability_type": "Liability type", - "account_role": "Tilin tyyppi", - "liability_direction": "Liability in\/out", - "book_date": "Kirjausp\u00e4iv\u00e4", - "permDeleteWarning": "Asioiden poistaminen Firefly III:sta on lopullista eik\u00e4 poistoa pysty perumaan.", - "account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?", - "also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.", - "also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.", - "process_date": "K\u00e4sittelyp\u00e4iv\u00e4", - "due_date": "Er\u00e4p\u00e4iv\u00e4", - "payment_date": "Maksup\u00e4iv\u00e4", - "invoice_date": "Laskun p\u00e4iv\u00e4m\u00e4\u00e4r\u00e4", - "amount_min": "V\u00e4himm\u00e4issumma", - "amount_max": "Enimm\u00e4issumma", - "start_date": "Valikoiman alku", - "end_date": "Valikoiman loppu", - "extension_date": "Extension date" - } -} \ No newline at end of file diff --git a/frontend/src/locales/fr.json b/frontend/src/locales/fr.json deleted file mode 100644 index d49b38fcd8..0000000000 --- a/frontend/src/locales/fr.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "Transfert", - "Withdrawal": "D\u00e9pense", - "Deposit": "D\u00e9p\u00f4t", - "date_and_time": "Date et heure", - "no_currency": "(pas de devise)", - "date": "Date", - "time": "Heure", - "no_budget": "(pas de budget)", - "destination_account": "Compte de destination", - "source_account": "Compte source", - "single_split": "Ventilation", - "create_new_transaction": "Cr\u00e9er une nouvelle op\u00e9ration", - "balance": "Solde", - "transaction_journal_extra": "Informations suppl\u00e9mentaires", - "transaction_journal_meta": "M\u00e9ta informations", - "basic_journal_information": "Informations de base sur l'op\u00e9ration", - "bills_to_pay": "Factures \u00e0 payer", - "left_to_spend": "Reste \u00e0 d\u00e9penser", - "attachments": "Pi\u00e8ces jointes", - "net_worth": "Avoir net", - "bill": "Facture", - "no_bill": "(aucune facture)", - "tags": "Tags", - "internal_reference": "R\u00e9f\u00e9rence interne", - "external_url": "URL externe", - "no_piggy_bank": "(aucune tirelire)", - "paid": "Pay\u00e9", - "notes": "Notes", - "yourAccounts": "Vos comptes", - "go_to_asset_accounts": "Afficher vos comptes d'actifs", - "delete_account": "Supprimer le compte", - "transaction_table_description": "Une table contenant vos op\u00e9rations", - "account": "Compte", - "description": "Description", - "amount": "Montant", - "budget": "Budget", - "category": "Cat\u00e9gorie", - "opposing_account": "Compte oppos\u00e9", - "budgets": "Budgets", - "categories": "Cat\u00e9gories", - "go_to_budgets": "G\u00e9rer vos budgets", - "income": "Recette \/ revenu", - "go_to_deposits": "Aller aux d\u00e9p\u00f4ts", - "go_to_categories": "G\u00e9rer vos cat\u00e9gories", - "expense_accounts": "Comptes de d\u00e9penses", - "go_to_expenses": "Aller aux d\u00e9penses", - "go_to_bills": "G\u00e9rer vos factures", - "bills": "Factures", - "last_thirty_days": "Trente derniers jours", - "last_seven_days": "7 Derniers Jours", - "go_to_piggies": "G\u00e9rer vos tirelires", - "saved": "Sauvegard\u00e9", - "piggy_banks": "Tirelires", - "piggy_bank": "Tirelire", - "amounts": "Montants", - "left": "Reste", - "spent": "D\u00e9pens\u00e9", - "Default asset account": "Compte d\u2019actif par d\u00e9faut", - "search_results": "R\u00e9sultats de la recherche", - "include": "Inclure ?", - "transaction": "Op\u00e9ration", - "account_role_defaultAsset": "Compte d'actif par d\u00e9faut", - "account_role_savingAsset": "Compte d\u2019\u00e9pargne", - "account_role_sharedAsset": "Compte d'actif partag\u00e9", - "clear_location": "Effacer la localisation", - "account_role_ccAsset": "Carte de cr\u00e9dit", - "account_role_cashWalletAsset": "Porte-monnaie", - "daily_budgets": "Budgets quotidiens", - "weekly_budgets": "Budgets hebdomadaires", - "monthly_budgets": "Budgets mensuels", - "journals_in_period_for_account_js": "Toutes les op\u00e9rations pour le compte {title} entre {start} et {end}", - "quarterly_budgets": "Budgets trimestriels", - "create_new_expense": "Cr\u00e9er nouveau compte de d\u00e9penses", - "create_new_revenue": "Cr\u00e9er nouveau compte de recettes", - "create_new_liabilities": "Cr\u00e9er un nouveau passif", - "half_year_budgets": "Budgets semestriels", - "yearly_budgets": "Budgets annuels", - "split_transaction_title": "Description de l'op\u00e9ration ventil\u00e9e", - "errors_submission": "Certaines informations ne sont pas correctes dans votre formulaire. Veuillez v\u00e9rifier les erreurs.", - "flash_error": "Erreur !", - "store_transaction": "Enregistrer l'op\u00e9ration", - "flash_success": "Super !", - "create_another": "Apr\u00e8s enregistrement, revenir ici pour en cr\u00e9er un nouveau.", - "update_transaction": "Mettre \u00e0 jour l'op\u00e9ration", - "after_update_create_another": "Apr\u00e8s la mise \u00e0 jour, revenir ici pour continuer l'\u00e9dition.", - "transaction_updated_no_changes": "L'op\u00e9ration n\u00b0{ID}<\/a> (\"{title}\") n'a pas \u00e9t\u00e9 modifi\u00e9e.", - "transaction_updated_link": "L'op\u00e9ration n\u00b0{ID}<\/a> (\"{title}\") a \u00e9t\u00e9 mise \u00e0 jour.", - "spent_x_of_y": "D\u00e9pens\u00e9 {amount} sur {total}", - "search": "Rechercher", - "create_new_asset": "Cr\u00e9er un nouveau compte d\u2019actif", - "asset_accounts": "Comptes d\u2019actif", - "reset_after": "R\u00e9initialiser le formulaire apr\u00e8s soumission", - "bill_paid_on": "Pay\u00e9 le {date}", - "first_split_decides": "La premi\u00e8re ventilation d\u00e9termine la valeur de ce champ", - "first_split_overrules_source": "La premi\u00e8re ventilation peut remplacer le compte source", - "first_split_overrules_destination": "La premi\u00e8re ventilation peut remplacer le compte de destination", - "transaction_stored_link": "L'op\u00e9ration n\u00b0{ID} (\"{title}\")<\/a> a \u00e9t\u00e9 enregistr\u00e9e.", - "custom_period": "P\u00e9riode personnalis\u00e9e", - "reset_to_current": "R\u00e9initialiser \u00e0 la p\u00e9riode en cours", - "select_period": "S\u00e9lectionnez une p\u00e9riode", - "location": "Emplacement", - "other_budgets": "Budgets \u00e0 p\u00e9riode personnalis\u00e9e", - "journal_links": "Liens d'op\u00e9ration", - "go_to_withdrawals": "Acc\u00e9der \u00e0 vos retraits", - "revenue_accounts": "Comptes de recettes", - "add_another_split": "Ajouter une autre fraction", - "actions": "Actions", - "earned": "Gagn\u00e9", - "empty": "(vide)", - "edit": "Modifier", - "never": "Jamais", - "account_type_Loan": "Pr\u00eat", - "account_type_Mortgage": "Pr\u00eat hypoth\u00e9caire", - "stored_new_account_js": "Nouveau compte \"{name}<\/a>\" enregistr\u00e9 !", - "account_type_Debt": "Dette", - "liability_direction_null_short": "Inconnu", - "delete": "Supprimer", - "store_new_asset_account": "Cr\u00e9er un nouveau compte d\u2019actif", - "store_new_expense_account": "Cr\u00e9er un nouveau compte de d\u00e9penses", - "store_new_liabilities_account": "Enregistrer un nouveau passif", - "store_new_revenue_account": "Cr\u00e9er un compte de recettes", - "mandatoryFields": "Champs obligatoires", - "optionalFields": "Champs optionnels", - "reconcile_this_account": "Rapprocher ce compte", - "interest_calc_weekly": "Par semaine", - "interest_calc_monthly": "Par mois", - "interest_calc_quarterly": "Par trimestre", - "interest_calc_half-year": "Par semestre", - "interest_calc_yearly": "Par an", - "liability_direction_credit": "On me doit cette dette", - "liability_direction_debit": "Je dois cette dette \u00e0 quelqu'un d'autre", - "liability_direction_credit_short": "Emprunteur", - "liability_direction_debit_short": "Pr\u00eateur", - "account_type_debt": "Dette", - "account_type_loan": "Emprunt", - "left_in_debt": "Montant d\u00fb", - "account_type_mortgage": "Pr\u00eat immobilier", - "save_transactions_by_moving_js": "Aucune op\u00e9ration|Conserver cette op\u00e9ration en la d\u00e9pla\u00e7ant vers un autre compte. |Conserver ces op\u00e9rations en les d\u00e9pla\u00e7ant vers un autre compte.", - "none_in_select_list": "(aucun)", - "transaction_expand_split": "D\u00e9velopper la ventilation", - "transaction_collapse_split": "R\u00e9duire la ventilation", - "default_group_title_name": "(Sans groupement)", - "bill_repeats_weekly": "Se r\u00e9p\u00e8te toutes les semaines", - "bill_repeats_monthly": "Se r\u00e9p\u00e8te tous les mois", - "bill_repeats_quarterly": "Se r\u00e9p\u00e8te tous les trimestres", - "bill_repeats_half-year": "Se r\u00e9p\u00e8te tous les semestres", - "bill_repeats_yearly": "Se r\u00e9p\u00e8te tous les ans", - "bill_repeats_weekly_other": "Se r\u00e9p\u00e8te toutes les deux semaines", - "bill_repeats_monthly_other": "Se r\u00e9p\u00e8te tous les deux mois", - "bill_repeats_quarterly_other": "Se r\u00e9p\u00e8te tous les deux trimestres", - "bill_repeats_half-year_other": "Se r\u00e9p\u00e8te tous les ans", - "bill_repeats_yearly_other": "Se r\u00e9p\u00e8te tous les deux ans", - "bill_repeats_weekly_skip": "Se r\u00e9p\u00e8te toutes les {skip} semaines", - "bill_repeats_monthly_skip": "Se r\u00e9p\u00e8te tous les {skip} mois", - "bill_repeats_quarterly_skip": "Se r\u00e9p\u00e8te tous les {skip} trimestres", - "bill_repeats_half-year_skip": "Se r\u00e9p\u00e8te tous les {skip} semestres", - "bill_repeats_yearly_skip": "Se r\u00e9p\u00e8te tous les {skip} ans", - "not_expected_period": "Pas attendu cette p\u00e9riode", - "subscriptions": "Abonnements", - "bill_expected_date_js": "Attendu le {date}", - "inactive": "Inactif", - "forever": "Pour toujours", - "extension_date_is": "La date de l'extension est {date}", - "create_new_bill": "Cr\u00e9er une nouvelle facture", - "store_new_bill": "Cr\u00e9er une nouvelle facture", - "repeat_freq_yearly": "annuellement", - "repeat_freq_half-year": "semestriel", - "repeat_freq_quarterly": "trimestriel", - "repeat_freq_monthly": "mensuel", - "repeat_freq_weekly": "hebdomadaire", - "credit_card_type_monthlyFull": "Paiement complet tous les mois", - "update_liabilities_account": "Mettre \u00e0 jour le passif", - "update_expense_account": "Mettre \u00e0 jour le compte de d\u00e9penses", - "update_revenue_account": "Mettre \u00e0 jour le compte de recettes", - "update_undefined_account": "Mettre \u00e0 jour le compte", - "update_asset_account": "Mettre \u00e0 jour le compte d\u2019actif", - "updated_account_js": "Compte \"{title}<\/a>\" mis \u00e0 jour." - }, - "list": { - "piggy_bank": "Tirelire", - "percentage": "pct.", - "amount": "Montant", - "lastActivity": "Activit\u00e9 r\u00e9cente", - "name": "Nom", - "role": "R\u00f4le", - "description": "Description", - "date": "Date", - "source_account": "Compte source", - "destination_account": "Compte destinataire", - "category": "Cat\u00e9gorie", - "iban": "Num\u00e9ro IBAN", - "interest": "Int\u00e9r\u00eat", - "interest_period": "P\u00e9riode d\u2019int\u00e9r\u00eat", - "liability_type": "Type de passif", - "liability_direction": "Sens du passif", - "currentBalance": "Solde courant", - "next_expected_match": "Prochaine association attendue", - "expected_info": "Prochaine op\u00e9ration attendue", - "start_date": "Date de d\u00e9but", - "end_date": "Date de fin", - "payment_info": "Informations sur le paiement" - }, - "config": { - "html_language": "fr", - "week_in_year_fns": "'Semaine' w, yyyy", - "month_and_day_fns": "d MMMM y", - "quarter_fns": "'Q'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "Montant en devise \u00e9trang\u00e8re", - "interest_date": "Date de valeur (int\u00e9r\u00eats)", - "name": "Nom", - "amount": "Montant", - "iban": "Num\u00e9ro IBAN", - "BIC": "Code BIC", - "notes": "Notes", - "location": "Emplacement", - "repeat_freq": "R\u00e9p\u00e9titions", - "skip": "Ignorer", - "startdate": "Date de d\u00e9but", - "enddate": "Date de fin", - "object_group": "Groupe", - "attachments": "Documents joints", - "deletePermanently": "Supprimer d\u00e9finitivement", - "active": "Actif", - "include_net_worth": "Inclure dans l'avoir net", - "cc_type": "Plan de paiement de carte de cr\u00e9dit", - "account_number": "Num\u00e9ro de compte", - "cc_monthly_payment_date": "Date de paiement mensuelle de la carte de cr\u00e9dit", - "virtual_balance": "Solde virtuel", - "opening_balance": "Solde initial", - "opening_balance_date": "Date du solde initial", - "date": "Date", - "interest": "Int\u00e9r\u00eat", - "interest_period": "P\u00e9riode d\u2019int\u00e9r\u00eat", - "currency_id": "Devise", - "liability_type": "Type de passif", - "account_role": "R\u00f4le du compte", - "liability_direction": "Sens du passif", - "book_date": "Date de r\u00e9servation", - "permDeleteWarning": "Supprimer quelque chose dans Firefly est permanent et ne peut pas \u00eatre annul\u00e9.", - "account_areYouSure_js": "\u00cates-vous s\u00fbr de vouloir supprimer le compte nomm\u00e9 \"{name}\" ?", - "also_delete_piggyBanks_js": "Aucune tirelire|La seule tirelire li\u00e9e \u00e0 ce compte sera aussi supprim\u00e9e.|Les {count} tirelires li\u00e9es \u00e0 ce compte seront aussi supprim\u00e9es.", - "also_delete_transactions_js": "Aucune op\u00e9ration|La seule op\u00e9ration li\u00e9e \u00e0 ce compte sera aussi supprim\u00e9e.|Les {count} op\u00e9rations li\u00e9es \u00e0 ce compte seront aussi supprim\u00e9es.", - "process_date": "Date de traitement", - "due_date": "\u00c9ch\u00e9ance", - "payment_date": "Date de paiement", - "invoice_date": "Date de facturation", - "amount_min": "Montant minimum", - "amount_max": "Montant maximum", - "start_date": "D\u00e9but de l'\u00e9tendue", - "end_date": "Fin de l'\u00e9tendue", - "extension_date": "Date d'extension" - } -} \ No newline at end of file diff --git a/frontend/src/locales/hu.json b/frontend/src/locales/hu.json deleted file mode 100644 index 1fa5dc8f58..0000000000 --- a/frontend/src/locales/hu.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "\u00c1tvezet\u00e9s", - "Withdrawal": "K\u00f6lts\u00e9g", - "Deposit": "Bev\u00e9tel", - "date_and_time": "Date and time", - "no_currency": "(nincs p\u00e9nznem)", - "date": "D\u00e1tum", - "time": "Time", - "no_budget": "(nincs k\u00f6lts\u00e9gkeret)", - "destination_account": "C\u00e9lsz\u00e1mla", - "source_account": "Forr\u00e1s sz\u00e1mla", - "single_split": "Feloszt\u00e1s", - "create_new_transaction": "Create a new transaction", - "balance": "Egyenleg", - "transaction_journal_extra": "Extra information", - "transaction_journal_meta": "Meta-inform\u00e1ci\u00f3", - "basic_journal_information": "Basic transaction information", - "bills_to_pay": "Fizetend\u0151 sz\u00e1ml\u00e1k", - "left_to_spend": "Elk\u00f6lthet\u0151", - "attachments": "Mell\u00e9kletek", - "net_worth": "Nett\u00f3 \u00e9rt\u00e9k", - "bill": "Sz\u00e1mla", - "no_bill": "(no bill)", - "tags": "C\u00edmk\u00e9k", - "internal_reference": "Internal reference", - "external_url": "External URL", - "no_piggy_bank": "(nincs malacpersely)", - "paid": "Kifizetve", - "notes": "Megjegyz\u00e9sek", - "yourAccounts": "Banksz\u00e1ml\u00e1k", - "go_to_asset_accounts": "Eszk\u00f6zsz\u00e1ml\u00e1k megtekint\u00e9se", - "delete_account": "Fi\u00f3k t\u00f6rl\u00e9se", - "transaction_table_description": "Tranzakci\u00f3kat tartalmaz\u00f3 t\u00e1bl\u00e1zat", - "account": "Banksz\u00e1mla", - "description": "Le\u00edr\u00e1s", - "amount": "\u00d6sszeg", - "budget": "K\u00f6lts\u00e9gkeret", - "category": "Kateg\u00f3ria", - "opposing_account": "Ellenoldali sz\u00e1mla", - "budgets": "K\u00f6lts\u00e9gkeretek", - "categories": "Kateg\u00f3ri\u00e1k", - "go_to_budgets": "Ugr\u00e1s a k\u00f6lts\u00e9gkeretekhez", - "income": "J\u00f6vedelem \/ bev\u00e9tel", - "go_to_deposits": "Ugr\u00e1s a bev\u00e9telekre", - "go_to_categories": "Ugr\u00e1s a kateg\u00f3ri\u00e1khoz", - "expense_accounts": "K\u00f6lts\u00e9gsz\u00e1ml\u00e1k", - "go_to_expenses": "Ugr\u00e1s a kiad\u00e1sokra", - "go_to_bills": "Ugr\u00e1s a sz\u00e1ml\u00e1khoz", - "bills": "Sz\u00e1ml\u00e1k", - "last_thirty_days": "Elm\u00falt harminc nap", - "last_seven_days": "Utols\u00f3 h\u00e9t nap", - "go_to_piggies": "Ugr\u00e1s a malacperselyekhez", - "saved": "Mentve", - "piggy_banks": "Malacperselyek", - "piggy_bank": "Malacpersely", - "amounts": "Mennyis\u00e9gek", - "left": "Maradv\u00e1ny", - "spent": "Elk\u00f6lt\u00f6tt", - "Default asset account": "Alap\u00e9rtelmezett eszk\u00f6zsz\u00e1mla", - "search_results": "Keres\u00e9si eredm\u00e9nyek", - "include": "Include?", - "transaction": "Tranzakci\u00f3", - "account_role_defaultAsset": "Alap\u00e9rtelmezett eszk\u00f6zsz\u00e1mla", - "account_role_savingAsset": "Megtakar\u00edt\u00e1si sz\u00e1mla", - "account_role_sharedAsset": "Megosztott eszk\u00f6zsz\u00e1mla", - "clear_location": "Hely t\u00f6rl\u00e9se", - "account_role_ccAsset": "Hitelk\u00e1rtya", - "account_role_cashWalletAsset": "K\u00e9szp\u00e9nz", - "daily_budgets": "Daily budgets", - "weekly_budgets": "Weekly budgets", - "monthly_budgets": "Monthly budgets", - "journals_in_period_for_account_js": "All transactions for account {title} between {start} and {end}", - "quarterly_budgets": "Quarterly budgets", - "create_new_expense": "\u00daj k\u00f6lts\u00e9gsz\u00e1mla l\u00e9trehoz\u00e1sa", - "create_new_revenue": "\u00daj j\u00f6vedelemsz\u00e1mla l\u00e9trehoz\u00e1sa", - "create_new_liabilities": "Create new liability", - "half_year_budgets": "Half-yearly budgets", - "yearly_budgets": "Yearly budgets", - "split_transaction_title": "Felosztott tranzakci\u00f3 le\u00edr\u00e1sa", - "errors_submission": "There was something wrong with your submission. Please check out the errors.", - "flash_error": "Hiba!", - "store_transaction": "Store transaction", - "flash_success": "Siker!", - "create_another": "A t\u00e1rol\u00e1s ut\u00e1n t\u00e9rjen vissza ide \u00faj l\u00e9trehoz\u00e1s\u00e1hoz.", - "update_transaction": "Tranzakci\u00f3 friss\u00edt\u00e9se", - "after_update_create_another": "A friss\u00edt\u00e9s ut\u00e1n t\u00e9rjen vissza ide a szerkeszt\u00e9s folytat\u00e1s\u00e1hoz.", - "transaction_updated_no_changes": "Transaction #{ID}<\/a> (\"{title}\") did not receive any changes.", - "transaction_updated_link": "Transaction #{ID}<\/a> (\"{title}\") has been updated.", - "spent_x_of_y": "Spent {amount} of {total}", - "search": "Keres\u00e9s", - "create_new_asset": "\u00daj eszk\u00f6zsz\u00e1mla l\u00e9trehoz\u00e1sa", - "asset_accounts": "Eszk\u00f6zsz\u00e1ml\u00e1k", - "reset_after": "\u0170rlap t\u00f6rl\u00e9se a bek\u00fcld\u00e9s ut\u00e1n", - "bill_paid_on": "Paid on {date}", - "first_split_decides": "The first split determines the value of this field", - "first_split_overrules_source": "The first split may overrule the source account", - "first_split_overrules_destination": "The first split may overrule the destination account", - "transaction_stored_link": "Transaction #{ID} (\"{title}\")<\/a> mentve.", - "custom_period": "Custom period", - "reset_to_current": "Reset to current period", - "select_period": "Select a period", - "location": "Hely", - "other_budgets": "Custom timed budgets", - "journal_links": "Tranzakci\u00f3 \u00f6sszekapcsol\u00e1sok", - "go_to_withdrawals": "Ugr\u00e1s a k\u00f6lts\u00e9gekhez", - "revenue_accounts": "J\u00f6vedelemsz\u00e1ml\u00e1k", - "add_another_split": "M\u00e1sik feloszt\u00e1s hozz\u00e1ad\u00e1sa", - "actions": "M\u0171veletek", - "earned": "Megkeresett", - "empty": "(\u00fcres)", - "edit": "Szerkeszt\u00e9s", - "never": "Soha", - "account_type_Loan": "Hitel", - "account_type_Mortgage": "Jelz\u00e1log", - "stored_new_account_js": "New account \"{name}<\/a>\" stored!", - "account_type_Debt": "Ad\u00f3ss\u00e1g", - "liability_direction_null_short": "Unknown", - "delete": "T\u00f6rl\u00e9s", - "store_new_asset_account": "\u00daj eszk\u00f6zsz\u00e1mla t\u00e1rol\u00e1sa", - "store_new_expense_account": "\u00daj k\u00f6lts\u00e9gsz\u00e1mla t\u00e1rol\u00e1sa", - "store_new_liabilities_account": "\u00daj k\u00f6telezetts\u00e9g elt\u00e1rol\u00e1sa", - "store_new_revenue_account": "\u00daj j\u00f6vedelemsz\u00e1mla l\u00e9trehoz\u00e1sa", - "mandatoryFields": "K\u00f6telez\u0151 mez\u0151k", - "optionalFields": "Nem k\u00f6telez\u0151 mez\u0151k", - "reconcile_this_account": "Sz\u00e1mla egyeztet\u00e9se", - "interest_calc_weekly": "Per week", - "interest_calc_monthly": "Havonta", - "interest_calc_quarterly": "Per quarter", - "interest_calc_half-year": "Per half year", - "interest_calc_yearly": "\u00c9vente", - "liability_direction_credit": "I am owed this debt", - "liability_direction_debit": "I owe this debt to somebody else", - "liability_direction_credit_short": "Owed this debt", - "liability_direction_debit_short": "Owe this debt", - "account_type_debt": "Debt", - "account_type_loan": "Loan", - "left_in_debt": "Amount due", - "account_type_mortgage": "Mortgage", - "save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.", - "none_in_select_list": "(nincs)", - "transaction_expand_split": "Expand split", - "transaction_collapse_split": "Collapse split", - "default_group_title_name": "(nem csoportos\u00edtott)", - "bill_repeats_weekly": "Repeats weekly", - "bill_repeats_monthly": "Repeats monthly", - "bill_repeats_quarterly": "Repeats quarterly", - "bill_repeats_half-year": "Repeats every half year", - "bill_repeats_yearly": "Repeats yearly", - "bill_repeats_weekly_other": "Repeats every other week", - "bill_repeats_monthly_other": "Repeats every other month", - "bill_repeats_quarterly_other": "Repeats every other quarter", - "bill_repeats_half-year_other": "Repeats yearly", - "bill_repeats_yearly_other": "Repeats every other year", - "bill_repeats_weekly_skip": "Repeats every {skip} weeks", - "bill_repeats_monthly_skip": "Repeats every {skip} months", - "bill_repeats_quarterly_skip": "Repeats every {skip} quarters", - "bill_repeats_half-year_skip": "Repeats every {skip} half years", - "bill_repeats_yearly_skip": "Repeats every {skip} years", - "not_expected_period": "Nem v\u00e1rhat\u00f3 ebben az id\u0151szakban", - "subscriptions": "Subscriptions", - "bill_expected_date_js": "Expected {date}", - "inactive": "Inakt\u00edv", - "forever": "Forever", - "extension_date_is": "Extension date is {date}", - "create_new_bill": "\u00daj sz\u00e1mla l\u00e9trehoz\u00e1sa", - "store_new_bill": "\u00daj sz\u00e1mla t\u00e1rol\u00e1sa", - "repeat_freq_yearly": "\u00e9ves", - "repeat_freq_half-year": "f\u00e9l\u00e9vente", - "repeat_freq_quarterly": "negyed\u00e9ves", - "repeat_freq_monthly": "havi", - "repeat_freq_weekly": "heti", - "credit_card_type_monthlyFull": "Full payment every month", - "update_liabilities_account": "K\u00f6telezetts\u00e9g friss\u00edt\u00e9se", - "update_expense_account": "K\u00f6lts\u00e9gsz\u00e1mla friss\u00edt\u00e9se", - "update_revenue_account": "J\u00f6vedelemsz\u00e1mla friss\u00edt\u00e9se", - "update_undefined_account": "Update account", - "update_asset_account": "Eszk\u00f6zsz\u00e1mla friss\u00edt\u00e9se", - "updated_account_js": "Updated account \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "Malacpersely", - "percentage": "%", - "amount": "\u00d6sszeg", - "lastActivity": "Utols\u00f3 aktivit\u00e1s", - "name": "N\u00e9v", - "role": "Szerepk\u00f6r", - "description": "Le\u00edr\u00e1s", - "date": "D\u00e1tum", - "source_account": "Forr\u00e1s banksz\u00e1mla", - "destination_account": "C\u00e9l banksz\u00e1mla", - "category": "Kateg\u00f3ria", - "iban": "IBAN", - "interest": "Kamat", - "interest_period": "Interest period", - "liability_type": "A k\u00f6telezetts\u00e9g t\u00edpusa", - "liability_direction": "Liability in\/out", - "currentBalance": "Aktu\u00e1lis egyenleg", - "next_expected_match": "K\u00f6vetkez\u0151 v\u00e1rhat\u00f3 egyez\u00e9s", - "expected_info": "Next expected transaction", - "start_date": "Start date", - "end_date": "End date", - "payment_info": "Payment information" - }, - "config": { - "html_language": "hu", - "week_in_year_fns": "'Week' w, yyyy", - "month_and_day_fns": "MMMM d, y", - "quarter_fns": "'Q'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "K\u00fclf\u00f6ldi \u00f6sszeg", - "interest_date": "Kamatfizet\u00e9si id\u0151pont", - "name": "N\u00e9v", - "amount": "\u00d6sszeg", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Megjegyz\u00e9sek", - "location": "Hely", - "repeat_freq": "Ism\u00e9tl\u0151d\u00e9sek", - "skip": "Kihagy\u00e1s", - "startdate": "Kezd\u0151 d\u00e1tum", - "enddate": "End date", - "object_group": "Csoport", - "attachments": "Mell\u00e9kletek", - "deletePermanently": "V\u00e9gleges t\u00f6rl\u00e9s", - "active": "Akt\u00edv", - "include_net_worth": "Befoglalva a nett\u00f3 \u00e9rt\u00e9kbe", - "cc_type": "Hitelk\u00e1rtya fizet\u00e9si terv", - "account_number": "Sz\u00e1mlasz\u00e1m", - "cc_monthly_payment_date": "Hitelk\u00e1rtya havi fizet\u00e9s d\u00e1tuma", - "virtual_balance": "Virtu\u00e1lis egyenleg", - "opening_balance": "Nyit\u00f3 egyenleg", - "opening_balance_date": "Nyit\u00f3 egyenleg d\u00e1tuma", - "date": "D\u00e1tum", - "interest": "Kamat", - "interest_period": "Kamatperi\u00f3dus", - "currency_id": "P\u00e9nznem", - "liability_type": "Liability type", - "account_role": "Banksz\u00e1mla szerepk\u00f6re", - "liability_direction": "Liability in\/out", - "book_date": "K\u00f6nyvel\u00e9s d\u00e1tuma", - "permDeleteWarning": "A Firefly III-b\u00f3l t\u00f6rt\u00e9n\u0151 t\u00f6rl\u00e9s v\u00e9gleges \u00e9s nem vonhat\u00f3 vissza.", - "account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?", - "also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.", - "also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.", - "process_date": "Feldolgoz\u00e1s d\u00e1tuma", - "due_date": "Lej\u00e1rati id\u0151pont", - "payment_date": "Fizet\u00e9s d\u00e1tuma", - "invoice_date": "Sz\u00e1mla d\u00e1tuma", - "amount_min": "Minim\u00e1lis \u00f6sszeg", - "amount_max": "Maxim\u00e1lis \u00f6sszeg", - "start_date": "Tartom\u00e1ny kezdete", - "end_date": "Tartom\u00e1ny v\u00e9ge", - "extension_date": "Extension date" - } -} \ No newline at end of file diff --git a/frontend/src/locales/it.json b/frontend/src/locales/it.json deleted file mode 100644 index cd3b62c2f0..0000000000 --- a/frontend/src/locales/it.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "Trasferimento", - "Withdrawal": "Prelievo", - "Deposit": "Entrata", - "date_and_time": "Data e ora", - "no_currency": "(nessuna valuta)", - "date": "Data", - "time": "Ora", - "no_budget": "(nessun budget)", - "destination_account": "Conto destinazione", - "source_account": "Conto di origine", - "single_split": "Divisione", - "create_new_transaction": "Crea una nuova transazione", - "balance": "Saldo", - "transaction_journal_extra": "Informazioni aggiuntive", - "transaction_journal_meta": "Meta informazioni", - "basic_journal_information": "Informazioni di base sulla transazione", - "bills_to_pay": "Bollette da pagare", - "left_to_spend": "Altro da spendere", - "attachments": "Allegati", - "net_worth": "Patrimonio", - "bill": "Bolletta", - "no_bill": "(nessuna bolletta)", - "tags": "Etichette", - "internal_reference": "Riferimento interno", - "external_url": "URL esterno", - "no_piggy_bank": "(nessun salvadanaio)", - "paid": "Pagati", - "notes": "Note", - "yourAccounts": "I tuoi conti", - "go_to_asset_accounts": "Visualizza i tuoi conti attivit\u00e0", - "delete_account": "Elimina account", - "transaction_table_description": "Una tabella contenente le tue transazioni", - "account": "Conto", - "description": "Descrizione", - "amount": "Importo", - "budget": "Budget", - "category": "Categoria", - "opposing_account": "Conto beneficiario", - "budgets": "Budget", - "categories": "Categorie", - "go_to_budgets": "Vai ai tuoi budget", - "income": "Redditi \/ entrate", - "go_to_deposits": "Vai ai depositi", - "go_to_categories": "Vai alle tue categorie", - "expense_accounts": "Conti uscite", - "go_to_expenses": "Vai alle spese", - "go_to_bills": "Vai alle tue bollette", - "bills": "Bollette", - "last_thirty_days": "Ultimi trenta giorni", - "last_seven_days": "Ultimi sette giorni", - "go_to_piggies": "Vai ai tuoi salvadanai", - "saved": "Salvata", - "piggy_banks": "Salvadanai", - "piggy_bank": "Salvadanaio", - "amounts": "Importi", - "left": "Resto", - "spent": "Speso", - "Default asset account": "Conto attivit\u00e0 predefinito", - "search_results": "Risultati ricerca", - "include": "Includere?", - "transaction": "Transazione", - "account_role_defaultAsset": "Conto attivit\u00e0 predefinito", - "account_role_savingAsset": "Conto risparmio", - "account_role_sharedAsset": "Conto attivit\u00e0 condiviso", - "clear_location": "Rimuovi dalla posizione", - "account_role_ccAsset": "Carta di credito", - "account_role_cashWalletAsset": "Portafoglio", - "daily_budgets": "Budget giornalieri", - "weekly_budgets": "Budget settimanali", - "monthly_budgets": "Budget mensili", - "journals_in_period_for_account_js": "Tutte le transazioni per il conto {title} fra {start} e {end}", - "quarterly_budgets": "Bilanci trimestrali", - "create_new_expense": "Crea un nuovo conto di spesa", - "create_new_revenue": "Crea un nuovo conto entrate", - "create_new_liabilities": "Crea nuova passivit\u00e0", - "half_year_budgets": "Bilanci semestrali", - "yearly_budgets": "Budget annuali", - "split_transaction_title": "Descrizione della transazione suddivisa", - "errors_submission": "Errore durante l'invio. Controlla gli errori segnalati qui sotto.", - "flash_error": "Errore!", - "store_transaction": "Salva transazione", - "flash_success": "Successo!", - "create_another": "Dopo il salvataggio, torna qui per crearne un'altra.", - "update_transaction": "Aggiorna transazione", - "after_update_create_another": "Dopo l'aggiornamento, torna qui per continuare la modifica.", - "transaction_updated_no_changes": "La transazione #{ID}<\/a> (\"{title}\") non ha avuto cambiamenti.", - "transaction_updated_link": "La transazione #{ID}<\/a> (\"{title}\") \u00e8 stata aggiornata.", - "spent_x_of_y": "Spesi {amount} di {total}", - "search": "Cerca", - "create_new_asset": "Crea un nuovo conto attivit\u00e0", - "asset_accounts": "Conti attivit\u00e0", - "reset_after": "Resetta il modulo dopo l'invio", - "bill_paid_on": "Pagata il {date}", - "first_split_decides": "La prima suddivisione determina il valore di questo campo", - "first_split_overrules_source": "La prima suddivisione potrebbe sovrascrivere l'account di origine", - "first_split_overrules_destination": "La prima suddivisione potrebbe sovrascrivere l'account di destinazione", - "transaction_stored_link": "La transazione #{ID} (\"{title}\")<\/a> \u00e8 stata salvata.", - "custom_period": "Periodo personalizzato", - "reset_to_current": "Ripristina il periodo corrente", - "select_period": "Seleziona il periodo", - "location": "Posizione", - "other_budgets": "Budget a periodi personalizzati", - "journal_links": "Collegamenti della transazione", - "go_to_withdrawals": "Vai ai tuoi prelievi", - "revenue_accounts": "Conti entrate", - "add_another_split": "Aggiungi un'altra divisione", - "actions": "Azioni", - "earned": "Guadagnato", - "empty": "(vuoto)", - "edit": "Modifica", - "never": "Mai", - "account_type_Loan": "Prestito", - "account_type_Mortgage": "Mutuo", - "stored_new_account_js": "Nuovo conto \"{name}<\/a>\" salvato!", - "account_type_Debt": "Debito", - "liability_direction_null_short": "Sconosciuta", - "delete": "Elimina", - "store_new_asset_account": "Salva nuovo conto attivit\u00e0", - "store_new_expense_account": "Salva il nuovo conto uscite", - "store_new_liabilities_account": "Memorizza nuova passivit\u00e0", - "store_new_revenue_account": "Salva il nuovo conto entrate", - "mandatoryFields": "Campi obbligatori", - "optionalFields": "Campi opzionali", - "reconcile_this_account": "Riconcilia questo conto", - "interest_calc_weekly": "Settimanale", - "interest_calc_monthly": "Al mese", - "interest_calc_quarterly": "Trimestrale", - "interest_calc_half-year": "Semestrale", - "interest_calc_yearly": "All'anno", - "liability_direction_credit": "Questo debito mi \u00e8 dovuto", - "liability_direction_debit": "Devo questo debito a qualcun altro", - "liability_direction_credit_short": "Mi devono questo debito", - "liability_direction_debit_short": "Devo questo debito", - "account_type_debt": "Debito", - "account_type_loan": "Prestito", - "left_in_debt": "Importo da pagare", - "account_type_mortgage": "Mutuo", - "save_transactions_by_moving_js": "Nessuna transazione|Salva questa transazione spostandola in un altro conto.|Salva queste transazioni spostandole in un altro conto.", - "none_in_select_list": "(nessuna)", - "transaction_expand_split": "Espandi suddivisione", - "transaction_collapse_split": "Comprimi suddivisione", - "default_group_title_name": "(non in un gruppo)", - "bill_repeats_weekly": "Ripeti ogni settimana", - "bill_repeats_monthly": "Ripeti ogni mese", - "bill_repeats_quarterly": "Ripeti ogni tre mesi", - "bill_repeats_half-year": "Ripeti ogni sei mesi", - "bill_repeats_yearly": "Ripeti ogni anno", - "bill_repeats_weekly_other": "Ripeti a settimane alterne", - "bill_repeats_monthly_other": "Ripeti a mesi alterni", - "bill_repeats_quarterly_other": "Ripeti ogni altro trimestre", - "bill_repeats_half-year_other": "Ripeti ogni anno", - "bill_repeats_yearly_other": "Ripeti ad anni alterni", - "bill_repeats_weekly_skip": "Ripeti ogni {skip} settimane", - "bill_repeats_monthly_skip": "Ripeti ogni {skip} mesi", - "bill_repeats_quarterly_skip": "Ripeti ogni {skip} trimestri", - "bill_repeats_half-year_skip": "Ripeti ogni {skip} mezzi anni", - "bill_repeats_yearly_skip": "Ripeti ogni {skip} anni", - "not_expected_period": "Non prevista per questo periodo", - "subscriptions": "Abbonamenti", - "bill_expected_date_js": "Attesa per {date}", - "inactive": "Disattivo", - "forever": "Per sempre", - "extension_date_is": "La data di estensione \u00e8 {date}", - "create_new_bill": "Crea una nuova bolletta", - "store_new_bill": "Salva la nuova bolletta", - "repeat_freq_yearly": "annualmente", - "repeat_freq_half-year": "semestralmente", - "repeat_freq_quarterly": "trimestralmente", - "repeat_freq_monthly": "mensilmente", - "repeat_freq_weekly": "settimanalmente", - "credit_card_type_monthlyFull": "Pagamento intero ogni mese", - "update_liabilities_account": "Aggiorna passivit\u00e0", - "update_expense_account": "Aggiorna conto uscite", - "update_revenue_account": "Aggiorna conto entrate", - "update_undefined_account": "Aggiorna conto", - "update_asset_account": "Aggiorna conto attivit\u00e0", - "updated_account_js": "Conto \"{title}<\/a>\" aggiornato." - }, - "list": { - "piggy_bank": "Salvadanaio", - "percentage": "perc.", - "amount": "Importo", - "lastActivity": "Ultima attivit\u00e0", - "name": "Nome", - "role": "Ruolo", - "description": "Descrizione", - "date": "Data", - "source_account": "Conto di origine", - "destination_account": "Conto destinazione", - "category": "Categoria", - "iban": "IBAN", - "interest": "Interesse", - "interest_period": "Periodo interessi", - "liability_type": "Tipo di passivit\u00e0", - "liability_direction": "Passivit\u00e0 in entrata\/uscita", - "currentBalance": "Saldo corrente", - "next_expected_match": "Prossimo abbinamento previsto", - "expected_info": "Prossima transazione attesa", - "start_date": "Data inizio", - "end_date": "Data fine", - "payment_info": "Informazioni di pagamento" - }, - "config": { - "html_language": "it", - "week_in_year_fns": "'Settimana' w, yyyy", - "month_and_day_fns": "d MMMM y", - "quarter_fns": "'Q'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "Importo estero", - "interest_date": "Data di valuta", - "name": "Nome", - "amount": "Importo", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Note", - "location": "Posizione", - "repeat_freq": "Si ripete", - "skip": "Salta ogni", - "startdate": "Data inizio", - "enddate": "Data di scadenza", - "object_group": "Gruppo", - "attachments": "Allegati", - "deletePermanently": "Elimina definitivamente", - "active": "Attivo", - "include_net_worth": "Includi nel patrimonio", - "cc_type": "Piano di pagamento della carta di credito", - "account_number": "Numero conto", - "cc_monthly_payment_date": "Data di addebito mensile della carta di credito", - "virtual_balance": "Saldo virtuale", - "opening_balance": "Saldo di apertura", - "opening_balance_date": "Data saldo di apertura", - "date": "Data", - "interest": "Interesse", - "interest_period": "Periodo di interesse", - "currency_id": "Valuta", - "liability_type": "Tipo passivit\u00e0", - "account_role": "Ruolo del conto", - "liability_direction": "Passivit\u00e0 in entrata\/uscita", - "book_date": "Data contabile", - "permDeleteWarning": "L'eliminazione dei dati da Firefly III \u00e8 definitiva e non pu\u00f2 essere annullata.", - "account_areYouSure_js": "Sei sicuro di voler eliminare il conto \"{name}\"?", - "also_delete_piggyBanks_js": "Nessun salvadanaio|Anche l'unico salvadanaio collegato a questo conto verr\u00e0 eliminato.|Anche tutti i {count} salvadanai collegati a questo conto verranno eliminati.", - "also_delete_transactions_js": "Nessuna transazioni|Anche l'unica transazione collegata al conto verr\u00e0 eliminata.|Anche tutte le {count} transazioni collegati a questo conto verranno eliminate.", - "process_date": "Data elaborazione", - "due_date": "Data scadenza", - "payment_date": "Data pagamento", - "invoice_date": "Data fatturazione", - "amount_min": "Importo minimo", - "amount_max": "Importo massimo", - "start_date": "Inizio intervallo", - "end_date": "Fine intervallo", - "extension_date": "Data di estensione" - } -} \ No newline at end of file diff --git a/frontend/src/locales/ja.json b/frontend/src/locales/ja.json deleted file mode 100644 index bd1c11baf5..0000000000 --- a/frontend/src/locales/ja.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "\u65b0\u3057\u3044\u9001\u91d1", - "Withdrawal": "\u51fa\u91d1", - "Deposit": "\u9810\u91d1", - "date_and_time": "\u65e5\u4ed8\u3068\u6642\u523b", - "no_currency": "\u901a\u8ca8", - "date": "\u65e5\u4ed8", - "time": "\u6642\u523b", - "no_budget": "\u4e88\u7b97", - "destination_account": "\u9001\u91d1\u5148\u306e\u30a2\u30ab\u30a6\u30f3\u30c8", - "source_account": "\u652f\u51fa\u5143\u306e\u30a2\u30ab\u30a6\u30f3\u30c8", - "single_split": "\u5206\u5272", - "create_new_transaction": "\u65b0\u3057\u3044\u53d6\u5f15\u3092\u4f5c\u6210", - "balance": "\u6b8b\u9ad8", - "transaction_journal_extra": "\u8ffd\u52a0\u60c5\u5831", - "transaction_journal_meta": "\u30e1\u30bf\u60c5\u5831", - "basic_journal_information": "\u53d6\u5f15\u57fa\u672c\u60c5\u5831", - "bills_to_pay": "\u8acb\u6c42\u66f8", - "left_to_spend": "\u652f\u51fa\u3067\u304d\u308b\u6b8b\u308a", - "attachments": "\u6dfb\u4ed8\u30d5\u30a1\u30a4\u30eb", - "net_worth": "\u7d14\u8cc7\u7523", - "bill": "\u8acb\u6c42", - "no_bill": "(\u8acb\u6c42\u306a\u3057)", - "tags": "\u30bf\u30b0", - "internal_reference": "\u5185\u90e8\u53c2\u7167", - "external_url": "\u5916\u90e8 URL", - "no_piggy_bank": "\u8caf\u91d1\u7bb1", - "paid": "\u652f\u6255\u3044\u6e08\u307f", - "notes": "\u5099\u8003", - "yourAccounts": "\u652f\u51fa\u5148\u3092\u898b\u308b", - "go_to_asset_accounts": "\u8cc7\u7523\u52d8\u5b9a\u3092\u898b\u308b", - "delete_account": "\u524a\u9664", - "transaction_table_description": "\u53d6\u5f15\u8868", - "account": "\u8caf\u84c4\u53e3\u5ea7", - "description": "\u8aac\u660e", - "amount": "\u91d1\u984d", - "budget": "\u4e88\u7b97", - "category": "\u30ab\u30c6\u30b4\u30ea", - "opposing_account": "\u5bfe\u3059\u308b\u53e3\u5ea7", - "budgets": "\u4e88\u7b97", - "categories": "\u30ab\u30c6\u30b4\u30ea", - "go_to_budgets": "\u4e88\u7b97\u3078\u79fb\u52d5", - "income": "\u53ce\u5165\u3001\u6240\u5f97\u3001\u5165\u91d1", - "go_to_deposits": "\u5165\u91d1\u3078\u79fb\u52d5", - "go_to_categories": "\u30ab\u30c6\u30b4\u30ea\u3078\u79fb\u52d5", - "expense_accounts": "\u652f\u51fa\u5148\u3092\u898b\u308b", - "go_to_expenses": "\u652f\u51fa\u3078\u79fb\u52d5", - "go_to_bills": "\u3042\u306a\u305f\u306e\u8acb\u6c42\u3078\u79fb\u52d5", - "bills": "\u8acb\u6c42", - "last_thirty_days": "\u904e\u53bb30\u65e5\u9593", - "last_seven_days": "\u904e\u53bb7\u65e5\u9593", - "go_to_piggies": "\u8caf\u91d1\u7bb1\u3078\u79fb\u52d5", - "saved": "\u4fdd\u5b58\u3057\u307e\u3057\u305f\u3002", - "piggy_banks": "\u8caf\u91d1\u7bb1", - "piggy_bank": "\u8caf\u91d1\u7bb1", - "amounts": "\u91d1\u984d", - "left": "\u6b8b\u308a", - "spent": "\u652f\u51fa", - "Default asset account": "\u65e2\u5b9a\u306e\u8cc7\u7523\u52d8\u5b9a", - "search_results": "\":query\" \u306e\u691c\u7d22\u7d50\u679c", - "include": "\u542b\u3081\u308b\u304b", - "transaction": "\u53d6\u5f15", - "account_role_defaultAsset": "\u65e2\u5b9a\u306e\u8cc7\u7523\u52d8\u5b9a", - "account_role_savingAsset": "\u8caf\u84c4\u53e3\u5ea7", - "account_role_sharedAsset": "\u652f\u51fa\u30a2\u30ab\u30a6\u30f3\u30c8\uff08\u8cc7\u7523\u52d8\u5b9a\uff09", - "clear_location": "\u5834\u6240", - "account_role_ccAsset": "\u30af\u30ec\u30b8\u30c3\u30c8\u30ab\u30fc\u30c9", - "account_role_cashWalletAsset": "\u73fe\u91d1", - "daily_budgets": "\u6bce\u65e5\u306e\u4e88\u7b97", - "weekly_budgets": "\u6bce\u9031\u306e\u4e88\u7b97", - "monthly_budgets": "\u6bce\u6708\u306e\u4e88\u7b97", - "journals_in_period_for_account_js": "{start} \u304b\u3089 {end} \u307e\u3067\u306e\u53e3\u5ea7 {title} \u306e\u3059\u3079\u3066\u306e\u53d6\u5f15", - "quarterly_budgets": "\u56db\u534a\u671f\u306e\u4e88\u7b97", - "create_new_expense": "\u65b0\u3057\u3044\u652f\u51fa\u5148", - "create_new_revenue": "\u65b0\u3057\u3044\u53ce\u5165\u6e90", - "create_new_liabilities": "\u65b0\u3057\u3044\u8cac\u4efb\u3092\u4f5c\u6210", - "half_year_budgets": "\u534a\u5e74\u9593\u306e\u4e88\u7b97", - "yearly_budgets": "\u5e74\u9593\u306e\u4e88\u7b97", - "split_transaction_title": "\u53d6\u308a\u5f15\u304d \":description\" \u3092\u7de8\u96c6\u3059\u308b", - "errors_submission": "\u9001\u4fe1\u306b\u554f\u984c\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30a8\u30e9\u30fc\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002", - "flash_error": "\u30a8\u30e9\u30fc!", - "store_transaction": "\u53d6\u5f15\u3092\u4fdd\u5b58", - "flash_success": "\u6210\u529f\u3057\u307e\u3057\u305f\uff01", - "create_another": "\u4fdd\u5b58\u5f8c\u3001\u5225\u306e\u3082\u306e\u3092\u4f5c\u6210\u3059\u308b\u306b\u306f\u3053\u3053\u3078\u623b\u3063\u3066\u304d\u3066\u304f\u3060\u3055\u3044\u3002", - "update_transaction": "\u30c1\u30e3\u30f3\u30cd\u30eb\u3092\u66f4\u65b0", - "after_update_create_another": "\u4fdd\u5b58\u5f8c\u3001\u3053\u3053\u3078\u623b\u3063\u3066\u304d\u3066\u304f\u3060\u3055\u3044\u3002", - "transaction_updated_no_changes": "\u53d6\u5f15 #{ID}<\/a>\u300c{title}\u300d\u306f\u5909\u66f4\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f\u3002", - "transaction_updated_link": "\u53d6\u5f15 #{ID}\u300c{title}\u300d<\/a> \u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002", - "spent_x_of_y": "{amount} \/ {total} \u3092\u652f\u51fa\u3057\u307e\u3057\u305f", - "search": "\u691c\u7d22", - "create_new_asset": "\u652f\u51fa\u30a2\u30ab\u30a6\u30f3\u30c8\uff08\u8cc7\u7523\u52d8\u5b9a\uff09", - "asset_accounts": "\u8cc7\u7523\u52d8\u5b9a", - "reset_after": "\u9001\u4fe1\u5f8c\u306b\u30d5\u30a9\u30fc\u30e0\u3092\u30ea\u30bb\u30c3\u30c8", - "bill_paid_on": "{date} \u306b\u652f\u6255\u3044\u6e08\u307f", - "first_split_decides": "\u6700\u521d\u306e\u5206\u5272\u304c\u3053\u306e\u9805\u76ee\u306e\u5024\u3092\u6c7a\u5b9a\u3057\u307e\u3059\u3002", - "first_split_overrules_source": "\u6700\u521d\u306e\u5206\u5272\u304c\u51fa\u91d1\u5143\u53e3\u5ea7\u3092\u8986\u3059\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059", - "first_split_overrules_destination": "\u6700\u521d\u306e\u5206\u5272\u304c\u9001\u91d1\u5148\u53e3\u5ea7\u3092\u8986\u3059\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059", - "transaction_stored_link": "\u53d6\u5f15 #{ID}\u300c{title}\u300d<\/a> \u304c\u4fdd\u5b58\u3055\u308c\u307e\u3057\u305f\u3002", - "custom_period": "\u30ab\u30b9\u30bf\u30e0\u671f\u9593", - "reset_to_current": "\u73fe\u5728\u306e\u671f\u9593\u306b\u30ea\u30bb\u30c3\u30c8", - "select_period": "\u671f\u9593\u3092\u9078\u629e", - "location": "\u5834\u6240", - "other_budgets": "\u4efb\u610f\u306e\u671f\u9593\u306e\u4e88\u7b97", - "journal_links": "\u53d6\u5f15", - "go_to_withdrawals": "\u51fa\u91d1\u306b\u79fb\u52d5", - "revenue_accounts": "\u53ce\u5165\u6e90\u3092\u898b\u308b", - "add_another_split": "\u5206\u5272", - "actions": "\u64cd\u4f5c", - "earned": "\u53ce\u76ca", - "empty": "\u3053\u306e\u81ea\u52d5\u88dc\u5b8c\u30c9\u30ed\u30c3\u30d7\u30c0\u30a6\u30f3\/\u30c6\u30ad\u30b9\u30c8\u30dc\u30c3\u30af\u30b9\u3067\u652f\u6255\u3044\u3092\u9078\u629e\u307e\u305f\u306f\u5165\u529b\u3057\u307e\u3059\u3002\u73fe\u91d1\u5165\u91d1\u3092\u884c\u3046\u5834\u5408\u306f\u7a7a\u306e\u307e\u307e\u306b\u3057\u307e\u3059\u3002", - "edit": "\u7de8\u96c6", - "never": "\u5e38\u306b\u306a\u3057", - "account_type_Loan": "\u30ed\u30fc\u30f3", - "account_type_Mortgage": "\u4f4f\u5b85\u30ed\u30fc\u30f3", - "stored_new_account_js": "\u65b0\u3057\u3044\u53e3\u5ea7\u300c{name}<\/a>\u300d\u304c\u4fdd\u5b58\u3055\u308c\u307e\u3057\u305f\uff01", - "account_type_Debt": "\u50b5\u52d9", - "liability_direction_null_short": "\u4e0d\u660e", - "delete": "\u524a\u9664", - "store_new_asset_account": "\u65b0\u3057\u3044\u53d6\u5f15\u3092\u4fdd\u5b58", - "store_new_expense_account": "\u65b0\u3057\u3044\u652f\u51fa\u5148", - "store_new_liabilities_account": "\u65b0\u3057\u3044\u501f\u91d1", - "store_new_revenue_account": "\u65b0\u3057\u3044\u53ce\u5165\u6e90", - "mandatoryFields": "\u5fc5\u9808\u9805\u76ee", - "optionalFields": "\u4efb\u610f\u9805\u76ee", - "reconcile_this_account": "\u7167\u5408", - "interest_calc_weekly": "1\u9031\u3042\u305f\u308a", - "interest_calc_monthly": "1\u30f6\u6708\u3042\u305f\u308a", - "interest_calc_quarterly": "\u56db\u534a\u671f\u3042\u305f\u308a", - "interest_calc_half-year": "\u534a\u5e74\u3042\u305f\u308a", - "interest_calc_yearly": "1\u5e74\u3042\u305f\u308a", - "liability_direction_credit": "\u3053\u306e\u501f\u91d1\u3092\u8ca0\u3063\u3066\u3044\u308b", - "liability_direction_debit": "\u3053\u306e\u501f\u91d1\u3092\u4ed6\u306e\u8ab0\u304b\u306b\u501f\u308a\u3066\u3044\u308b", - "liability_direction_credit_short": "\u3053\u306e\u8ca0\u50b5\u3092\u8ca0\u3063\u3066\u3044\u308b", - "liability_direction_debit_short": "\u3053\u306e\u8ca0\u50b5\u3092\u8ca0\u3046", - "account_type_debt": "\u501f\u91d1", - "account_type_loan": "\u30ed\u30fc\u30f3", - "left_in_debt": "\u8ca0\u50b5\u984d", - "account_type_mortgage": "\u4f4f\u5b85\u30ed\u30fc\u30f3", - "save_transactions_by_moving_js": "\u53d6\u5f15\u304c\u3042\u308a\u307e\u305b\u3093|\u3053\u306e\u53d6\u5f15\u3092\u5225\u306e\u53e3\u5ea7\u306b\u79fb\u3057\u4fdd\u5b58\u3057\u307e\u3059\u3002|\u3053\u308c\u3089\u306e\u53d6\u5f15\u3092\u5225\u306e\u53e3\u5ea7\u306b\u79fb\u3057\u4fdd\u5b58\u3057\u307e\u3059\u3002", - "none_in_select_list": "(\u306a\u3057)", - "transaction_expand_split": "\u5206\u5272\u3092\u5c55\u958b", - "transaction_collapse_split": "\u5206\u5272\u3092\u305f\u305f\u3080", - "default_group_title_name": "(\u30b0\u30eb\u30fc\u30d7\u306a\u3057)", - "bill_repeats_weekly": "\u6bce\u9031\u306e\u7e70\u308a\u8fd4\u3057", - "bill_repeats_monthly": "\u6bce\u6708\u306e\u7e70\u308a\u8fd4\u3057", - "bill_repeats_quarterly": "\u56db\u534a\u671f\u3054\u3068\u306e\u7e70\u308a\u8fd4\u3057", - "bill_repeats_half-year": "\u534a\u5e74\u3054\u3068\u306e\u7e70\u308a\u8fd4\u3057", - "bill_repeats_yearly": "\u6bce\u5e74\u306e\u7e70\u308a\u8fd4\u3057", - "bill_repeats_weekly_other": "1\u9031\u304a\u304d\u306e\u7e70\u308a\u8fd4\u3057", - "bill_repeats_monthly_other": "1\u30f6\u6708\u304a\u304d\u306e\u7e70\u308a\u8fd4\u3057", - "bill_repeats_quarterly_other": "\u56db\u534a\u671f\u304a\u304d\u306e\u7e70\u308a\u8fd4\u3057", - "bill_repeats_half-year_other": "\u6bce\u5e74\u306e\u7e70\u308a\u8fd4\u3057", - "bill_repeats_yearly_other": "\u4e00\u5e74\u304a\u304d\u306e\u7e70\u308a\u8fd4\u3057", - "bill_repeats_weekly_skip": "{skip} \u9031\u304a\u304d\u306e\u7e70\u308a\u8fd4\u3057", - "bill_repeats_monthly_skip": "{skip} \u30f6\u6708\u304a\u304d\u306e\u7e70\u308a\u8fd4\u3057", - "bill_repeats_quarterly_skip": "{skip} \u56db\u534a\u671f\u304a\u304d\u306e\u7e70\u308a\u8fd4\u3057", - "bill_repeats_half-year_skip": "{skip} \u534a\u671f\u304a\u304d\u306e\u7e70\u308a\u8fd4\u3057", - "bill_repeats_yearly_skip": "{skip} \u5e74\u304a\u304d\u306e\u7e70\u308a\u8fd4\u3057", - "not_expected_period": "\u3053\u306e\u671f\u9593\u306b\u306f\u4e88\u5b9a\u306a\u3057", - "subscriptions": "\u8b1b\u8aad", - "bill_expected_date_js": "\u4e88\u5b9a\u65e5 {date}", - "inactive": "\u975e\u30a2\u30af\u30c6\u30a3\u30d6", - "forever": "\u7121\u671f\u9650", - "extension_date_is": "\u5ef6\u9577\u65e5\u306f {date} \u3067\u3059", - "create_new_bill": "\u65b0\u3057\u3044\u8acb\u6c42\u66f8", - "store_new_bill": "\u65b0\u3057\u3044\u8acb\u6c42\u66f8", - "repeat_freq_yearly": "\u6bce\u5e74", - "repeat_freq_half-year": "\u534a\u5e74\u3054\u3068", - "repeat_freq_quarterly": "\u56db\u534a\u671f\u3054\u3068", - "repeat_freq_monthly": "\u30af\u30ec\u30b8\u30c3\u30c8\u30ab\u30fc\u30c9\u306e\u5f15\u304d\u843d\u3068\u3057\u65e5", - "repeat_freq_weekly": "\u9031\u6bce", - "credit_card_type_monthlyFull": "\u5168\u984d\u6bce\u6708\u652f\u6255\u3044", - "update_liabilities_account": "\u30c1\u30e3\u30f3\u30cd\u30eb\u3092\u66f4\u65b0", - "update_expense_account": "\u652f\u51fa\u5148\u30a2\u30ab\u30a6\u30f3\u30c8\uff08\u652f\u51fa\u5143\u30a2\u30ab\u30a6\u30f3\u30c8\n\uff09", - "update_revenue_account": "\u652f\u51fa\u30a2\u30ab\u30a6\u30f3\u30c8\uff08\u53ce\u5165\u30a2\u30ab\u30a6\u30f3\u30c8\uff09", - "update_undefined_account": "\u53e3\u5ea7\u60c5\u5831\u306e\u66f4\u65b0", - "update_asset_account": "\u652f\u51fa\u30a2\u30ab\u30a6\u30f3\u30c8\uff08\u8cc7\u7523\u52d8\u5b9a\uff09", - "updated_account_js": "\u53e3\u5ea7\u300c{title}<\/a>\u300d\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002" - }, - "list": { - "piggy_bank": "\u8caf\u91d1\u7bb1", - "percentage": "\u30d1\u30fc\u30bb\u30f3\u30c8", - "amount": "\u91d1\u984d", - "lastActivity": "\u6700\u7d42\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3", - "name": "\u540d\u524d", - "role": "\u30ed\u30fc\u30eb", - "description": "\u8aac\u660e", - "date": "\u65e5\u4ed8", - "source_account": "\u652f\u51fa\u5143\u306e\u30a2\u30ab\u30a6\u30f3\u30c8", - "destination_account": "\u9001\u91d1\u5148\u306e\u30a2\u30ab\u30a6\u30f3\u30c8", - "category": "\u30ab\u30c6\u30b4\u30ea", - "iban": "\u56fd\u969b\u9280\u884c\u53e3\u5ea7\u756a\u53f7", - "interest": "\u5229\u606f", - "interest_period": "\u5229\u606f\u671f\u9593", - "liability_type": "\u50b5\u52d9\u5f62\u5f0f", - "liability_direction": "\u50b5\u52d9\u306e\u51fa\u5165", - "currentBalance": "\u73fe\u5728\u306e\u6b8b\u9ad8", - "next_expected_match": "\u6b21\u306e\u4e88\u671f\u3055\u308c\u305f\u4e00\u81f4", - "expected_info": "\u6b21\u306e\u4e88\u60f3\u3055\u308c\u308b\u53d6\u5f15", - "start_date": "\u958b\u59cb\u65e5", - "end_date": "\u7d42\u4e86\u65e5", - "payment_info": "\u652f\u6255\u60c5\u5831" - }, - "config": { - "html_language": "ja", - "week_in_year_fns": "yyyy\u5e74w[\u9031\u76ee]", - "month_and_day_fns": "y\u5e74 MMMM d\u65e5", - "quarter_fns": "yyyy\u5e74\u7b2cQ\u56db\u534a\u671f", - "half_year_fns": "yyyy\u5e74H[\u534a\u671f]" - }, - "form": { - "foreign_amount": "\u5916\u8ca8\u91cf", - "interest_date": "\u5229\u606f", - "name": "\u540d\u524d", - "amount": "\u91d1\u984d", - "iban": "\u56fd\u969b\u9280\u884c\u53e3\u5ea7\u756a\u53f7", - "BIC": "\u9280\u884c\u6295\u8cc7\u5951\u7d04", - "notes": "\u5099\u8003", - "location": "\u5834\u6240", - "repeat_freq": "\u7e70\u308a\u8fd4\u3057", - "skip": "\u30b9\u30ad\u30c3\u30d7", - "startdate": "\u958b\u59cb\u65e5", - "enddate": "\u7d42\u4e86\u65e5", - "object_group": "\u30b0\u30eb\u30fc\u30d7", - "attachments": "\u6dfb\u4ed8\u30d5\u30a1\u30a4\u30eb", - "deletePermanently": "\u6c38\u4e45\u306b\u524a\u9664", - "active": "\u6709\u52b9", - "include_net_worth": "\u7d14\u8cc7\u7523\u306b\u542b\u3081\u308b", - "cc_type": "\u30af\u30ec\u30b8\u30c3\u30c8\u30ab\u30fc\u30c9\u306e\u6c7a\u6e08\u65b9\u6cd5", - "account_number": "\u53e3\u5ea7\u756a\u53f7", - "cc_monthly_payment_date": "\u30af\u30ec\u30b8\u30c3\u30c8\u30ab\u30fc\u30c9\u306e\u5f15\u304d\u843d\u3068\u3057\u65e5", - "virtual_balance": "\u4eee\u60f3\u6b8b\u9ad8", - "opening_balance": "\u671f\u9996\u6b8b\u9ad8", - "opening_balance_date": "\u671f\u9996\u6b8b\u9ad8\u65e5", - "date": "\u65e5\u4ed8", - "interest": "\u5229\u606f", - "interest_period": "\u5229\u606f\u671f\u9593", - "currency_id": "\u901a\u8ca8", - "liability_type": "\u50b5\u52d9\u7a2e\u5225", - "account_role": "\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u30ed\u30fc\u30eb", - "liability_direction": "\u50b5\u52d9\u306e\u51fa\u5165", - "book_date": "\u4e88\u7d04\u65e5", - "permDeleteWarning": "Firefly III\u304b\u3089\u306e\u524a\u9664\u306f\u6c38\u4e45\u7684\u3067\u3001\u5143\u306b\u623b\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002", - "account_areYouSure_js": "\u30a2\u30ab\u30a6\u30f3\u30c8\u300c{name}\u300d\u3092\u524a\u9664\u3057\u3066\u3082\u3088\u308d\u3057\u3044\u3067\u3059\u304b\uff1f", - "also_delete_piggyBanks_js": "\u8caf\u91d1\u7bb1\u306f\u3042\u308a\u307e\u305b\u3093|\u3053\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306b\u95a2\u9023\u3059\u308b\u305f\u3060\u4e00\u3064\u306e\u8caf\u91d1\u7bb1\u3082\u524a\u9664\u3055\u308c\u307e\u3059\u3002|\u3053\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306b\u95a2\u9023\u3059\u308b {count} \u500b\u306e\u8caf\u91d1\u7bb1\u3082\u524a\u9664\u3055\u308c\u307e\u3059\u3002", - "also_delete_transactions_js": "\u53d6\u5f15\u306f\u3042\u308a\u307e\u305b\u3093|\u3053\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306b\u95a2\u9023\u3059\u308b\u305f\u3060\u4e00\u3064\u306e\u53d6\u5f15\u3082\u524a\u9664\u3055\u308c\u307e\u3059\u3002|\u3053\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306b\u95a2\u9023\u3059\u308b {count} \u4ef6\u306e\u53d6\u5f15\u3082\u524a\u9664\u3055\u308c\u307e\u3059\u3002", - "process_date": "\u51e6\u7406\u65e5", - "due_date": "\u3000\u671f\u65e5", - "payment_date": "\u5f15\u304d\u843d\u3068\u3057\u65e5", - "invoice_date": "\u9818\u53ce\u66f8\u767a\u884c\u65e5", - "amount_min": "\u6700\u4f4e\u984d", - "amount_max": "\u4e0a\u9650\u984d", - "start_date": "\u671f\u9593\u306e\u958b\u59cb", - "end_date": "\u671f\u9593\u306e\u7d42\u4e86", - "extension_date": "\u5ef6\u9577\u65e5" - } -} \ No newline at end of file diff --git a/frontend/src/locales/lt.json b/frontend/src/locales/lt.json deleted file mode 100644 index 814e8e857a..0000000000 --- a/frontend/src/locales/lt.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "firefly": { - "balance": "Balance", - "bills_to_pay": "Bills to pay", - "left_to_spend": "Left to spend", - "net_worth": "Net worth", - "paid": "Paid", - "yourAccounts": "Your accounts", - "go_to_asset_accounts": "S\u0105skait\u0173 per\u017ei\u016bra", - "transaction_table_description": "A table containing your transactions", - "account": "Account", - "description": "Description", - "amount": "Amount", - "budget": "Budget", - "category": "Category", - "opposing_account": "Opposing account", - "budgets": "Budgets", - "categories": "Categories", - "go_to_budgets": "Pereiti \u012f biud\u017eet\u0105", - "income": "Revenue \/ income", - "go_to_deposits": "Go to deposits", - "go_to_categories": "Pereiti \u012f kategorijas", - "expense_accounts": "Expense accounts", - "go_to_expenses": "Go to expenses", - "go_to_bills": "Pereiti \u012f s\u0105skaitas", - "bills": "Bills", - "go_to_piggies": "Go to your piggy banks", - "saved": "Saved", - "piggy_banks": "Piggy banks", - "piggy_bank": "Piggy bank", - "amounts": "Amounts", - "Default asset account": "Default asset account", - "account_role_defaultAsset": "Default asset account", - "account_role_savingAsset": "Savings account", - "account_role_sharedAsset": "Shared asset account", - "account_role_ccAsset": "Credit card", - "account_role_cashWalletAsset": "Cash wallet" - }, - "list": { - "piggy_bank": "Piggy bank", - "percentage": "pct.", - "amount": "Amount", - "name": "Name", - "role": "Role", - "iban": "IBAN", - "lastActivity": "Last activity", - "currentBalance": "Current balance", - "balanceDiff": "Balance difference", - "next_expected_match": "Next expected match" - }, - "config": { - "html_language": "lt" - } -} \ No newline at end of file diff --git a/frontend/src/locales/nb.json b/frontend/src/locales/nb.json deleted file mode 100644 index 8797f6c32c..0000000000 --- a/frontend/src/locales/nb.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "Overf\u00f8ring", - "Withdrawal": "Uttak", - "Deposit": "Innskudd", - "date_and_time": "Date and time", - "no_currency": "(ingen valuta)", - "date": "Dato", - "time": "Time", - "no_budget": "(ingen budsjett)", - "destination_account": "Destination account", - "source_account": "Source account", - "single_split": "Split", - "create_new_transaction": "Create a new transaction", - "balance": "Saldo", - "transaction_journal_extra": "Extra information", - "transaction_journal_meta": "Metainformasjon", - "basic_journal_information": "Basic transaction information", - "bills_to_pay": "Regninger \u00e5 betale", - "left_to_spend": "Igjen \u00e5 bruke", - "attachments": "Vedlegg", - "net_worth": "Formue", - "bill": "Regning", - "no_bill": "(no bill)", - "tags": "Tagger", - "internal_reference": "Internal reference", - "external_url": "External URL", - "no_piggy_bank": "(no piggy bank)", - "paid": "Betalt", - "notes": "Notater", - "yourAccounts": "Dine kontoer", - "go_to_asset_accounts": "Se aktivakontoene dine", - "delete_account": "Slett konto", - "transaction_table_description": "A table containing your transactions", - "account": "Konto", - "description": "Beskrivelse", - "amount": "Bel\u00f8p", - "budget": "Busjett", - "category": "Kategori", - "opposing_account": "Opposing account", - "budgets": "Budsjetter", - "categories": "Kategorier", - "go_to_budgets": "G\u00e5 til budsjettene dine", - "income": "Inntekt", - "go_to_deposits": "Go to deposits", - "go_to_categories": "G\u00e5 til kategoriene dine", - "expense_accounts": "Utgiftskontoer", - "go_to_expenses": "Go to expenses", - "go_to_bills": "G\u00e5 til regningene dine", - "bills": "Regninger", - "last_thirty_days": "Tredve siste dager", - "last_seven_days": "Syv siste dager", - "go_to_piggies": "G\u00e5 til sparegrisene dine", - "saved": "Saved", - "piggy_banks": "Sparegriser", - "piggy_bank": "Sparegris", - "amounts": "Amounts", - "left": "Gjenv\u00e6rende", - "spent": "Brukt", - "Default asset account": "Standard aktivakonto", - "search_results": "S\u00f8keresultater", - "include": "Include?", - "transaction": "Transaksjon", - "account_role_defaultAsset": "Standard aktivakonto", - "account_role_savingAsset": "Sparekonto", - "account_role_sharedAsset": "Delt aktivakonto", - "clear_location": "T\u00f8m lokasjon", - "account_role_ccAsset": "Kredittkort", - "account_role_cashWalletAsset": "Kontant lommebok", - "daily_budgets": "Daily budgets", - "weekly_budgets": "Weekly budgets", - "monthly_budgets": "Monthly budgets", - "journals_in_period_for_account_js": "All transactions for account {title} between {start} and {end}", - "quarterly_budgets": "Quarterly budgets", - "create_new_expense": "Opprett ny utgiftskonto", - "create_new_revenue": "Opprett ny inntektskonto", - "create_new_liabilities": "Create new liability", - "half_year_budgets": "Half-yearly budgets", - "yearly_budgets": "Yearly budgets", - "split_transaction_title": "Description of the split transaction", - "errors_submission": "There was something wrong with your submission. Please check out the errors.", - "flash_error": "Feil!", - "store_transaction": "Store transaction", - "flash_success": "Suksess!", - "create_another": "After storing, return here to create another one.", - "update_transaction": "Update transaction", - "after_update_create_another": "After updating, return here to continue editing.", - "transaction_updated_no_changes": "Transaction #{ID}<\/a> (\"{title}\") did not receive any changes.", - "transaction_updated_link": "Transaction #{ID}<\/a> (\"{title}\") has been updated.", - "spent_x_of_y": "Spent {amount} of {total}", - "search": "S\u00f8k", - "create_new_asset": "Opprett ny aktivakonto", - "asset_accounts": "Aktivakontoer", - "reset_after": "Reset form after submission", - "bill_paid_on": "Paid on {date}", - "first_split_decides": "The first split determines the value of this field", - "first_split_overrules_source": "The first split may overrule the source account", - "first_split_overrules_destination": "The first split may overrule the destination account", - "transaction_stored_link": "Transaction #{ID} (\"{title}\")<\/a> has been stored.", - "custom_period": "Custom period", - "reset_to_current": "Reset to current period", - "select_period": "Select a period", - "location": "Sted", - "other_budgets": "Custom timed budgets", - "journal_links": "Transaksjonskoblinger", - "go_to_withdrawals": "Go to your withdrawals", - "revenue_accounts": "Inntektskontoer", - "add_another_split": "Legg til en oppdeling til", - "actions": "Handlinger", - "earned": "Opptjent", - "empty": "(empty)", - "edit": "Rediger", - "never": "Aldri", - "account_type_Loan": "L\u00e5n", - "account_type_Mortgage": "Boligl\u00e5n", - "stored_new_account_js": "New account \"{name}<\/a>\" stored!", - "account_type_Debt": "Gjeld", - "liability_direction_null_short": "Unknown", - "delete": "Slett", - "store_new_asset_account": "Lagre ny brukskonto", - "store_new_expense_account": "Lagre ny utgiftskonto", - "store_new_liabilities_account": "Lagre ny gjeld", - "store_new_revenue_account": "Lagre ny inntektskonto", - "mandatoryFields": "Obligatoriske felter", - "optionalFields": "Valgfrie felter", - "reconcile_this_account": "Avstem denne kontoen", - "interest_calc_weekly": "Per week", - "interest_calc_monthly": "Per m\u00e5ned", - "interest_calc_quarterly": "Per quarter", - "interest_calc_half-year": "Per half year", - "interest_calc_yearly": "Per \u00e5r", - "liability_direction_credit": "I am owed this debt", - "liability_direction_debit": "I owe this debt to somebody else", - "liability_direction_credit_short": "Owed this debt", - "liability_direction_debit_short": "Owe this debt", - "account_type_debt": "Debt", - "account_type_loan": "Loan", - "left_in_debt": "Amount due", - "account_type_mortgage": "Mortgage", - "save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.", - "none_in_select_list": "(ingen)", - "transaction_expand_split": "Expand split", - "transaction_collapse_split": "Collapse split", - "default_group_title_name": "(ungrouped)", - "bill_repeats_weekly": "Repeats weekly", - "bill_repeats_monthly": "Repeats monthly", - "bill_repeats_quarterly": "Repeats quarterly", - "bill_repeats_half-year": "Repeats every half year", - "bill_repeats_yearly": "Repeats yearly", - "bill_repeats_weekly_other": "Repeats every other week", - "bill_repeats_monthly_other": "Repeats every other month", - "bill_repeats_quarterly_other": "Repeats every other quarter", - "bill_repeats_half-year_other": "Repeats yearly", - "bill_repeats_yearly_other": "Repeats every other year", - "bill_repeats_weekly_skip": "Repeats every {skip} weeks", - "bill_repeats_monthly_skip": "Repeats every {skip} months", - "bill_repeats_quarterly_skip": "Repeats every {skip} quarters", - "bill_repeats_half-year_skip": "Repeats every {skip} half years", - "bill_repeats_yearly_skip": "Repeats every {skip} years", - "not_expected_period": "Not expected this period", - "subscriptions": "Subscriptions", - "bill_expected_date_js": "Expected {date}", - "inactive": "Inaktiv", - "forever": "Forever", - "extension_date_is": "Extension date is {date}", - "create_new_bill": "Opprett ny regning", - "store_new_bill": "Lagre ny regning", - "repeat_freq_yearly": "\u00e5rlig", - "repeat_freq_half-year": "hvert halv\u00e5r", - "repeat_freq_quarterly": "kvartalsvis", - "repeat_freq_monthly": "m\u00e5nedlig", - "repeat_freq_weekly": "ukentlig", - "credit_card_type_monthlyFull": "Full payment every month", - "update_liabilities_account": "Oppdater gjeld", - "update_expense_account": "Oppdater utgiftskonto", - "update_revenue_account": "Oppdater inntektskonto", - "update_undefined_account": "Update account", - "update_asset_account": "Oppdater aktivakonto", - "updated_account_js": "Updated account \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "Sparegris", - "percentage": "pct.", - "amount": "Bel\u00f8p", - "lastActivity": "Siste aktivitet", - "name": "Navn", - "role": "Rolle", - "description": "Beskrivelse", - "date": "Dato", - "source_account": "Kildekonto", - "destination_account": "M\u00e5lkonto", - "category": "Kategori", - "iban": "IBAN", - "interest": "Renter", - "interest_period": "Interest period", - "liability_type": "Type gjeld", - "liability_direction": "Liability in\/out", - "currentBalance": "N\u00e5v\u00e6rende saldo", - "next_expected_match": "Neste forventede treff", - "expected_info": "Next expected transaction", - "start_date": "Start date", - "end_date": "End date", - "payment_info": "Payment information" - }, - "config": { - "html_language": "nb", - "week_in_year_fns": "'Week' w, yyyy", - "month_and_day_fns": "MMMM d, y", - "quarter_fns": "'Q'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "Utenlandske bel\u00f8p", - "interest_date": "Rentedato", - "name": "Navn", - "amount": "Bel\u00f8p", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Notater", - "location": "Location", - "repeat_freq": "Gjentas", - "skip": "Hopp over", - "startdate": "Startdato", - "enddate": "End date", - "object_group": "Group", - "attachments": "Vedlegg", - "deletePermanently": "Slett permanent", - "active": "Aktiv", - "include_net_worth": "Inkluder i formue", - "cc_type": "Credit card payment plan", - "account_number": "Account number", - "cc_monthly_payment_date": "Credit card monthly payment date", - "virtual_balance": "Virtual balance", - "opening_balance": "Opening balance", - "opening_balance_date": "Opening balance date", - "date": "Dato", - "interest": "Rente", - "interest_period": "Renteperiode", - "currency_id": "Valuta", - "liability_type": "Liability type", - "account_role": "Account role", - "liability_direction": "Liability in\/out", - "book_date": "Bokf\u00f8ringsdato", - "permDeleteWarning": "Sletting av data fra Firefly III er permanent, og kan ikke angres.", - "account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?", - "also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.", - "also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.", - "process_date": "Prosesseringsdato", - "due_date": "Forfallsdato", - "payment_date": "Betalingsdato", - "invoice_date": "Fakturadato", - "amount_min": "Minimumsbel\u00f8p", - "amount_max": "Maksimumsbel\u00f8p", - "start_date": "Startgrense", - "end_date": "Sluttgrense", - "extension_date": "Extension date" - } -} \ No newline at end of file diff --git a/frontend/src/locales/nl.json b/frontend/src/locales/nl.json deleted file mode 100644 index 8c8abe0c30..0000000000 --- a/frontend/src/locales/nl.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "Overschrijving", - "Withdrawal": "Uitgave", - "Deposit": "Inkomsten", - "date_and_time": "Datum en tijd", - "no_currency": "(geen valuta)", - "date": "Datum", - "time": "Tijd", - "no_budget": "(geen budget)", - "destination_account": "Doelrekening", - "source_account": "Bronrekening", - "single_split": "Split", - "create_new_transaction": "Maak een nieuwe transactie", - "balance": "Saldo", - "transaction_journal_extra": "Extra informatie", - "transaction_journal_meta": "Metainformatie", - "basic_journal_information": "Standaard transactieinformatie", - "bills_to_pay": "Openstaande contracten", - "left_to_spend": "Over om uit te geven", - "attachments": "Bijlagen", - "net_worth": "Kapitaal", - "bill": "Contract", - "no_bill": "(geen contract)", - "tags": "Tags", - "internal_reference": "Interne referentie", - "external_url": "Externe URL", - "no_piggy_bank": "(geen spaarpotje)", - "paid": "Betaald", - "notes": "Notities", - "yourAccounts": "Je betaalrekeningen", - "go_to_asset_accounts": "Bekijk je betaalrekeningen", - "delete_account": "Verwijder je account", - "transaction_table_description": "Een tabel met je transacties", - "account": "Rekening", - "description": "Omschrijving", - "amount": "Bedrag", - "budget": "Budget", - "category": "Categorie", - "opposing_account": "Tegenrekening", - "budgets": "Budgetten", - "categories": "Categorie\u00ebn", - "go_to_budgets": "Ga naar je budgetten", - "income": "Inkomsten", - "go_to_deposits": "Ga naar je inkomsten", - "go_to_categories": "Ga naar je categorie\u00ebn", - "expense_accounts": "Crediteuren", - "go_to_expenses": "Ga naar je uitgaven", - "go_to_bills": "Ga naar je contracten", - "bills": "Contracten", - "last_thirty_days": "Laatste dertig dagen", - "last_seven_days": "Laatste zeven dagen", - "go_to_piggies": "Ga naar je spaarpotjes", - "saved": "Opgeslagen", - "piggy_banks": "Spaarpotjes", - "piggy_bank": "Spaarpotje", - "amounts": "Bedragen", - "left": "Over", - "spent": "Uitgegeven", - "Default asset account": "Standaard betaalrekening", - "search_results": "Zoekresultaten", - "include": "Opnemen?", - "transaction": "Transactie", - "account_role_defaultAsset": "Standaard betaalrekening", - "account_role_savingAsset": "Spaarrekening", - "account_role_sharedAsset": "Gedeelde betaalrekening", - "clear_location": "Wis locatie", - "account_role_ccAsset": "Credit card", - "account_role_cashWalletAsset": "Cash", - "daily_budgets": "Dagelijkse budgetten", - "weekly_budgets": "Wekelijkse budgetten", - "monthly_budgets": "Maandelijkse budgetten", - "journals_in_period_for_account_js": "Alle transacties voor rekening {title} tussen {start} en {end}", - "quarterly_budgets": "Driemaandelijkse budgetten", - "create_new_expense": "Nieuwe crediteur", - "create_new_revenue": "Nieuwe debiteur", - "create_new_liabilities": "Maak nieuwe passiva", - "half_year_budgets": "Halfjaarlijkse budgetten", - "yearly_budgets": "Jaarlijkse budgetten", - "split_transaction_title": "Beschrijving van de gesplitste transactie", - "errors_submission": "Er ging iets mis. Check de errors.", - "flash_error": "Fout!", - "store_transaction": "Transactie opslaan", - "flash_success": "Gelukt!", - "create_another": "Terug naar deze pagina voor een nieuwe transactie.", - "update_transaction": "Update transactie", - "after_update_create_another": "Na het opslaan terug om door te gaan met wijzigen.", - "transaction_updated_no_changes": "Transactie #{ID}<\/a> (\"{title}\") is niet gewijzigd.", - "transaction_updated_link": "Transactie #{ID}<\/a> (\"{title}\") is ge\u00fcpdatet.", - "spent_x_of_y": "{amount} van {total} uitgegeven", - "search": "Zoeken", - "create_new_asset": "Nieuwe betaalrekening", - "asset_accounts": "Betaalrekeningen", - "reset_after": "Reset formulier na opslaan", - "bill_paid_on": "Betaald op {date}", - "first_split_decides": "De eerste split bepaalt wat hier staat", - "first_split_overrules_source": "De eerste split kan de bronrekening overschrijven", - "first_split_overrules_destination": "De eerste split kan de doelrekening overschrijven", - "transaction_stored_link": "Transactie #{ID} (\"{title}\")<\/a> is opgeslagen.", - "custom_period": "Aangepaste periode", - "reset_to_current": "Reset naar huidige periode", - "select_period": "Selecteer een periode", - "location": "Plaats", - "other_budgets": "Aangepaste budgetten", - "journal_links": "Transactiekoppelingen", - "go_to_withdrawals": "Ga naar je uitgaven", - "revenue_accounts": "Debiteuren", - "add_another_split": "Voeg een split toe", - "actions": "Acties", - "earned": "Verdiend", - "empty": "(leeg)", - "edit": "Wijzig", - "never": "Nooit", - "account_type_Loan": "Lening", - "account_type_Mortgage": "Hypotheek", - "stored_new_account_js": "Nieuwe account \"{name}<\/a>\" opgeslagen!", - "account_type_Debt": "Schuld", - "liability_direction_null_short": "Onbekend", - "delete": "Verwijder", - "store_new_asset_account": "Sla nieuwe betaalrekening op", - "store_new_expense_account": "Sla nieuwe crediteur op", - "store_new_liabilities_account": "Nieuwe passiva opslaan", - "store_new_revenue_account": "Sla nieuwe debiteur op", - "mandatoryFields": "Verplichte velden", - "optionalFields": "Optionele velden", - "reconcile_this_account": "Stem deze rekening af", - "interest_calc_weekly": "Per week", - "interest_calc_monthly": "Per maand", - "interest_calc_quarterly": "Per kwartaal", - "interest_calc_half-year": "Per half jaar", - "interest_calc_yearly": "Per jaar", - "liability_direction_credit": "Ik krijg dit bedrag terug", - "liability_direction_debit": "Ik moet dit bedrag terugbetalen", - "liability_direction_credit_short": "Schuldeiser", - "liability_direction_debit_short": "Schuldenaar", - "account_type_debt": "Schuld", - "account_type_loan": "Lening", - "left_in_debt": "Verschuldigd bedrag", - "account_type_mortgage": "Hypotheek", - "save_transactions_by_moving_js": "Geen transacties|Bewaar deze transactie door ze aan een andere rekening te koppelen.|Bewaar deze transacties door ze aan een andere rekening te koppelen.", - "none_in_select_list": "(geen)", - "transaction_expand_split": "Split uitklappen", - "transaction_collapse_split": "Split inklappen", - "default_group_title_name": "(ongegroepeerd)", - "bill_repeats_weekly": "Herhaalt wekelijks", - "bill_repeats_monthly": "Herhaalt maandelijks", - "bill_repeats_quarterly": "Herhaalt elk kwartaal", - "bill_repeats_half-year": "Herhaalt elk half jaar", - "bill_repeats_yearly": "Herhaalt jaarlijks", - "bill_repeats_weekly_other": "Herhaalt om de week", - "bill_repeats_monthly_other": "Herhaalt om de maand", - "bill_repeats_quarterly_other": "Herhaalt om het kwartaal", - "bill_repeats_half-year_other": "Herhaalt jaarlijks", - "bill_repeats_yearly_other": "Herhaalt om het jaar", - "bill_repeats_weekly_skip": "Herhaalt elke {skip} weken", - "bill_repeats_monthly_skip": "Herhaalt elke {skip} maanden", - "bill_repeats_quarterly_skip": "Herhaalt elke {skip} kwartalen", - "bill_repeats_half-year_skip": "Herhaalt elke {skip} halve jaren", - "bill_repeats_yearly_skip": "Herhaalt elke {skip} jaar", - "not_expected_period": "Niet verwacht deze periode", - "subscriptions": "Abonnementen", - "bill_expected_date_js": "Verwacht op {date}", - "inactive": "Niet actief", - "forever": "Voor altijd", - "extension_date_is": "Verlengdatum is {date}", - "create_new_bill": "Nieuw contract", - "store_new_bill": "Sla nieuw contract op", - "repeat_freq_yearly": "jaarlijks", - "repeat_freq_half-year": "elk half jaar", - "repeat_freq_quarterly": "elk kwartaal", - "repeat_freq_monthly": "maandelijks", - "repeat_freq_weekly": "wekelijks", - "credit_card_type_monthlyFull": "Volledige betaling elke maand", - "update_liabilities_account": "Update passiva", - "update_expense_account": "Wijzig crediteur", - "update_revenue_account": "Wijzig debiteur", - "update_undefined_account": "Account bijwerken", - "update_asset_account": "Wijzig betaalrekening", - "updated_account_js": "Account \"{title}<\/a>\" bijgewerkt." - }, - "list": { - "piggy_bank": "Spaarpotje", - "percentage": "pct", - "amount": "Bedrag", - "lastActivity": "Laatste activiteit", - "name": "Naam", - "role": "Rol", - "description": "Omschrijving", - "date": "Datum", - "source_account": "Bronrekening", - "destination_account": "Doelrekening", - "category": "Categorie", - "iban": "IBAN", - "interest": "Rente", - "interest_period": "Renteperiode", - "liability_type": "Type passiva", - "liability_direction": "Passiva in- of uitgaand", - "currentBalance": "Huidig saldo", - "next_expected_match": "Volgende verwachte match", - "expected_info": "Volgende verwachte transactie", - "start_date": "Startdatum", - "end_date": "Einddatum", - "payment_info": "Betalingsinformatie" - }, - "config": { - "html_language": "nl", - "week_in_year_fns": "'Week' w, yyyy", - "month_and_day_fns": "d MMMM y", - "quarter_fns": "'Q'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "Bedrag in vreemde valuta", - "interest_date": "Rentedatum", - "name": "Naam", - "amount": "Bedrag", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Notities", - "location": "Locatie", - "repeat_freq": "Herhaling", - "skip": "Overslaan", - "startdate": "Startdatum", - "enddate": "Einddatum", - "object_group": "Groep", - "attachments": "Bijlagen", - "deletePermanently": "Verwijderen", - "active": "Actief", - "include_net_worth": "Meetellen in kapitaal", - "cc_type": "Betaalplan", - "account_number": "Rekeningnummer", - "cc_monthly_payment_date": "Betaaldatum", - "virtual_balance": "Virtueel saldo", - "opening_balance": "Startsaldo", - "opening_balance_date": "Startsaldodatum", - "date": "Datum", - "interest": "Rente", - "interest_period": "Renteperiode", - "currency_id": "Valuta", - "liability_type": "Passivasoort", - "account_role": "Rol van rekening", - "liability_direction": "Passiva in- of uitgaand", - "book_date": "Boekdatum", - "permDeleteWarning": "Dingen verwijderen uit Firefly III is permanent en kan niet ongedaan gemaakt worden.", - "account_areYouSure_js": "Weet je zeker dat je de rekening met naam \"{name}\" wilt verwijderen?", - "also_delete_piggyBanks_js": "Geen spaarpotjes|Ook het spaarpotje verbonden aan deze rekening wordt verwijderd.|Ook alle {count} spaarpotjes verbonden aan deze rekening worden verwijderd.", - "also_delete_transactions_js": "Geen transacties|Ook de enige transactie verbonden aan deze rekening wordt verwijderd.|Ook alle {count} transacties verbonden aan deze rekening worden verwijderd.", - "process_date": "Verwerkingsdatum", - "due_date": "Vervaldatum", - "payment_date": "Betalingsdatum", - "invoice_date": "Factuurdatum", - "amount_min": "Minimumbedrag", - "amount_max": "Maximumbedrag", - "start_date": "Start van bereik", - "end_date": "Einde van bereik", - "extension_date": "Verlengdatum" - } -} \ No newline at end of file diff --git a/frontend/src/locales/pl.json b/frontend/src/locales/pl.json deleted file mode 100644 index 3f0c35638a..0000000000 --- a/frontend/src/locales/pl.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "Transfer", - "Withdrawal": "Wyp\u0142ata", - "Deposit": "Wp\u0142ata", - "date_and_time": "Data i czas", - "no_currency": "(brak waluty)", - "date": "Data", - "time": "Czas", - "no_budget": "(brak bud\u017cetu)", - "destination_account": "Konto docelowe", - "source_account": "Konto \u017ar\u00f3d\u0142owe", - "single_split": "Podzia\u0142", - "create_new_transaction": "Stw\u00f3rz now\u0105 transakcj\u0119", - "balance": "Saldo", - "transaction_journal_extra": "Dodatkowe informacje", - "transaction_journal_meta": "Meta informacje", - "basic_journal_information": "Podstawowe informacje o transakcji", - "bills_to_pay": "Rachunki do zap\u0142acenia", - "left_to_spend": "Pozosta\u0142o do wydania", - "attachments": "Za\u0142\u0105czniki", - "net_worth": "Warto\u015b\u0107 netto", - "bill": "Rachunek", - "no_bill": "(brak rachunku)", - "tags": "Tagi", - "internal_reference": "Wewn\u0119trzny nr referencyjny", - "external_url": "Zewn\u0119trzny adres URL", - "no_piggy_bank": "(brak skarbonki)", - "paid": "Zap\u0142acone", - "notes": "Notatki", - "yourAccounts": "Twoje konta", - "go_to_asset_accounts": "Zobacz swoje konta aktyw\u00f3w", - "delete_account": "Usu\u0144 konto", - "transaction_table_description": "Tabela zawieraj\u0105ca Twoje transakcje", - "account": "Konto", - "description": "Opis", - "amount": "Kwota", - "budget": "Bud\u017cet", - "category": "Kategoria", - "opposing_account": "Konto przeciwstawne", - "budgets": "Bud\u017cety", - "categories": "Kategorie", - "go_to_budgets": "Przejd\u017a do swoich bud\u017cet\u00f3w", - "income": "Przychody \/ dochody", - "go_to_deposits": "Przejd\u017a do wp\u0142at", - "go_to_categories": "Przejd\u017a do swoich kategorii", - "expense_accounts": "Konta wydatk\u00f3w", - "go_to_expenses": "Przejd\u017a do wydatk\u00f3w", - "go_to_bills": "Przejd\u017a do swoich rachunk\u00f3w", - "bills": "Rachunki", - "last_thirty_days": "Ostanie 30 dni", - "last_seven_days": "Ostatnie 7 dni", - "go_to_piggies": "Przejd\u017a do swoich skarbonek", - "saved": "Zapisano", - "piggy_banks": "Skarbonki", - "piggy_bank": "Skarbonka", - "amounts": "Kwoty", - "left": "Pozosta\u0142o", - "spent": "Wydano", - "Default asset account": "Domy\u015blne konto aktyw\u00f3w", - "search_results": "Wyniki wyszukiwania", - "include": "Include?", - "transaction": "Transakcja", - "account_role_defaultAsset": "Domy\u015blne konto aktyw\u00f3w", - "account_role_savingAsset": "Konto oszcz\u0119dno\u015bciowe", - "account_role_sharedAsset": "Wsp\u00f3\u0142dzielone konto aktyw\u00f3w", - "clear_location": "Wyczy\u015b\u0107 lokalizacj\u0119", - "account_role_ccAsset": "Karta kredytowa", - "account_role_cashWalletAsset": "Portfel got\u00f3wkowy", - "daily_budgets": "Bud\u017cety dzienne", - "weekly_budgets": "Bud\u017cety tygodniowe", - "monthly_budgets": "Bud\u017cety miesi\u0119czne", - "journals_in_period_for_account_js": "Wszystkie transakcje dla konta {title} od {start} do {end}", - "quarterly_budgets": "Bud\u017cety kwartalne", - "create_new_expense": "Utw\u00f3rz nowe konto wydatk\u00f3w", - "create_new_revenue": "Utw\u00f3rz nowe konto przychod\u00f3w", - "create_new_liabilities": "Utw\u00f3rz nowe zobowi\u0105zanie", - "half_year_budgets": "Bud\u017cety p\u00f3\u0142roczne", - "yearly_budgets": "Bud\u017cety roczne", - "split_transaction_title": "Opis podzielonej transakcji", - "errors_submission": "Co\u015b posz\u0142o nie tak w czasie zapisu. Prosz\u0119 sprawd\u017a b\u0142\u0119dy.", - "flash_error": "B\u0142\u0105d!", - "store_transaction": "Zapisz transakcj\u0119", - "flash_success": "Sukces!", - "create_another": "Po zapisaniu wr\u00f3\u0107 tutaj, aby utworzy\u0107 kolejny.", - "update_transaction": "Zaktualizuj transakcj\u0119", - "after_update_create_another": "Po aktualizacji wr\u00f3\u0107 tutaj, aby kontynuowa\u0107 edycj\u0119.", - "transaction_updated_no_changes": "Transakcja #{ID}<\/a> (\"{title}\") nie zosta\u0142a zmieniona.", - "transaction_updated_link": "Transakcja #{ID}<\/a> (\"{title}\") zosta\u0142a zaktualizowana.", - "spent_x_of_y": "Wydano {amount} z {total}", - "search": "Szukaj", - "create_new_asset": "Utw\u00f3rz nowe konto aktyw\u00f3w", - "asset_accounts": "Konta aktyw\u00f3w", - "reset_after": "Wyczy\u015b\u0107 formularz po zapisaniu", - "bill_paid_on": "Zap\u0142acone {date}", - "first_split_decides": "Pierwszy podzia\u0142 okre\u015bla warto\u015b\u0107 tego pola", - "first_split_overrules_source": "Pierwszy podzia\u0142 mo\u017ce nadpisa\u0107 konto \u017ar\u00f3d\u0142owe", - "first_split_overrules_destination": "Pierwszy podzia\u0142 mo\u017ce nadpisa\u0107 konto docelowe", - "transaction_stored_link": "Transakcja #{ID} (\"{title}\")<\/a> zosta\u0142a zapisana.", - "custom_period": "Okres niestandardowy", - "reset_to_current": "Przywr\u00f3\u0107 do bie\u017c\u0105cego okresu", - "select_period": "Wybierz okres", - "location": "Lokalizacja", - "other_budgets": "Bud\u017cety niestandardowe", - "journal_links": "Powi\u0105zane transakcje", - "go_to_withdrawals": "Przejd\u017a do swoich wydatk\u00f3w", - "revenue_accounts": "Konta przychod\u00f3w", - "add_another_split": "Dodaj kolejny podzia\u0142", - "actions": "Akcje", - "earned": "Zarobiono", - "empty": "(pusty)", - "edit": "Modyfikuj", - "never": "Nigdy", - "account_type_Loan": "Po\u017cyczka", - "account_type_Mortgage": "Hipoteka", - "stored_new_account_js": "Nowe konto \"{name}<\/a>\" zapisane!", - "account_type_Debt": "D\u0142ug", - "liability_direction_null_short": "Nieznane", - "delete": "Usu\u0144", - "store_new_asset_account": "Zapisz nowe konto aktyw\u00f3w", - "store_new_expense_account": "Zapisz nowe konto wydatk\u00f3w", - "store_new_liabilities_account": "Zapisz nowe zobowi\u0105zanie", - "store_new_revenue_account": "Zapisz nowe konto przychod\u00f3w", - "mandatoryFields": "Pola wymagane", - "optionalFields": "Pola opcjonalne", - "reconcile_this_account": "Uzgodnij to konto", - "interest_calc_weekly": "Tygodniowo", - "interest_calc_monthly": "Co miesi\u0105c", - "interest_calc_quarterly": "Kwartalnie", - "interest_calc_half-year": "Co p\u00f3\u0142 roku", - "interest_calc_yearly": "Co rok", - "liability_direction_credit": "Zad\u0142u\u017cenie wobec mnie", - "liability_direction_debit": "Zad\u0142u\u017cenie wobec kogo\u015b innego", - "liability_direction_credit_short": "D\u0142ug wobec Ciebie", - "liability_direction_debit_short": "Jeste\u015b d\u0142u\u017cny", - "account_type_debt": "D\u0142ug", - "account_type_loan": "Po\u017cyczka", - "left_in_debt": "Do zap\u0142aty", - "account_type_mortgage": "Hipoteka", - "save_transactions_by_moving_js": "Brak transakcji|Zapisz t\u0119 transakcj\u0119, przenosz\u0105c j\u0105 na inne konto.|Zapisz te transakcje przenosz\u0105c je na inne konto.", - "none_in_select_list": "(\u017cadne)", - "transaction_expand_split": "Rozwi\u0144 podzia\u0142", - "transaction_collapse_split": "Zwi\u0144 podzia\u0142", - "default_group_title_name": "(bez grupy)", - "bill_repeats_weekly": "Powtarza si\u0119 co tydzie\u0144", - "bill_repeats_monthly": "Powtarza si\u0119 co miesi\u0105c", - "bill_repeats_quarterly": "Powtarza si\u0119 co kwarta\u0142", - "bill_repeats_half-year": "Powtarza si\u0119 co p\u00f3\u0142 roku", - "bill_repeats_yearly": "Powtarza si\u0119 co rok", - "bill_repeats_weekly_other": "Powtarza si\u0119 co drugi tydzie\u0144", - "bill_repeats_monthly_other": "Powtarza si\u0119 co drugi miesi\u0105c", - "bill_repeats_quarterly_other": "Powtarza si\u0119 co drugi kwarta\u0142", - "bill_repeats_half-year_other": "Powtarza si\u0119 co rok", - "bill_repeats_yearly_other": "Powtarza si\u0119 co drugi rok", - "bill_repeats_weekly_skip": "Powtarza si\u0119 co {skip} tygodni", - "bill_repeats_monthly_skip": "Powtarza si\u0119 co {skip} miesi\u0119cy", - "bill_repeats_quarterly_skip": "Powtarza si\u0119 co {skip} kwarta\u0142\u00f3w", - "bill_repeats_half-year_skip": "Powtarza si\u0119 co {skip} po\u0142\u00f3w roku", - "bill_repeats_yearly_skip": "Powtarza si\u0119 co {skip} lat", - "not_expected_period": "Nie oczekiwany w tym okresie", - "subscriptions": "Subskrypcje", - "bill_expected_date_js": "Oczekiwane {date}", - "inactive": "Nieaktywne", - "forever": "Bez daty zako\u0144czenia", - "extension_date_is": "Data przed\u0142u\u017cenia to {date}", - "create_new_bill": "Utw\u00f3rz nowy rachunek", - "store_new_bill": "Zapisz nowy rachunek", - "repeat_freq_yearly": "rocznie", - "repeat_freq_half-year": "co p\u00f3\u0142 roku", - "repeat_freq_quarterly": "kwartalnie", - "repeat_freq_monthly": "miesi\u0119cznie", - "repeat_freq_weekly": "tygodniowo", - "credit_card_type_monthlyFull": "Pe\u0142na p\u0142atno\u015b\u0107 co miesi\u0105c", - "update_liabilities_account": "Modyfikuj zobowi\u0105zanie", - "update_expense_account": "Aktualizuj konto wydatk\u00f3w", - "update_revenue_account": "Aktualizuj konto przychod\u00f3w", - "update_undefined_account": "Zaktualizuj konto", - "update_asset_account": "Aktualizuj konto aktyw\u00f3w", - "updated_account_js": "Zaktualizowano konto \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "Skarbonka", - "percentage": "%", - "amount": "Kwota", - "lastActivity": "Ostatnia aktywno\u015b\u0107", - "name": "Nazwa", - "role": "Rola", - "description": "Opis", - "date": "Data", - "source_account": "Konto \u017ar\u00f3d\u0142owe", - "destination_account": "Konto docelowe", - "category": "Kategoria", - "iban": "IBAN", - "interest": "Odsetki", - "interest_period": "Okres odsetkowy", - "liability_type": "Rodzaj zobowi\u0105zania", - "liability_direction": "Zobowi\u0105zania przychodz\u0105ce\/wychodz\u0105ce", - "currentBalance": "Bie\u017c\u0105ce saldo", - "next_expected_match": "Nast\u0119pne oczekiwane dopasowanie", - "expected_info": "Nast\u0119pna oczekiwana transakcja", - "start_date": "Data rozpocz\u0119cia", - "end_date": "Data ko\u0144cowa", - "payment_info": "Informacje o p\u0142atno\u015bci" - }, - "config": { - "html_language": "pl", - "week_in_year_fns": "w 'tydzie\u0144' yyyy", - "month_and_day_fns": "d MMMM y", - "quarter_fns": "Q 'kwarta\u0142' yyyy", - "half_year_fns": "'{half} po\u0142owa' yyyy" - }, - "form": { - "foreign_amount": "Kwota zagraniczna", - "interest_date": "Data odsetek", - "name": "Nazwa", - "amount": "Kwota", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Notatki", - "location": "Lokalizacja", - "repeat_freq": "Powtarza si\u0119", - "skip": "Pomi\u0144", - "startdate": "Data rozpocz\u0119cia", - "enddate": "Data ko\u0144cowa", - "object_group": "Grupa", - "attachments": "Za\u0142\u0105czniki", - "deletePermanently": "Usu\u0144 trwale", - "active": "Aktywny", - "include_net_worth": "Uwzgl\u0119dnij w warto\u015bci netto", - "cc_type": "Plan p\u0142atno\u015bci kart\u0105 kredytow\u0105", - "account_number": "Numer konta", - "cc_monthly_payment_date": "Miesi\u0119czny termin sp\u0142aty karty kredytowej", - "virtual_balance": "Wirtualne saldo", - "opening_balance": "Saldo pocz\u0105tkowe", - "opening_balance_date": "Data salda otwarcia", - "date": "Data", - "interest": "Odsetki", - "interest_period": "Okres odsetkowy", - "currency_id": "Waluta", - "liability_type": "Rodzaj zobowi\u0105zania", - "account_role": "Rola konta", - "liability_direction": "Liability in\/out", - "book_date": "Data ksi\u0119gowania", - "permDeleteWarning": "Usuwanie rzeczy z Firefly III jest trwa\u0142e i nie mo\u017cna tego cofn\u0105\u0107.", - "account_areYouSure_js": "Czy na pewno chcesz usun\u0105\u0107 konto o nazwie \"{name}\"?", - "also_delete_piggyBanks_js": "Brak skarbonek|Jedyna skarbonka po\u0142\u0105czona z tym kontem r\u00f3wnie\u017c zostanie usuni\u0119ta.|Wszystkie {count} skarbonki po\u0142\u0105czone z tym kontem zostan\u0105 r\u00f3wnie\u017c usuni\u0119te.", - "also_delete_transactions_js": "Brak transakcji|Jedyna transakcja po\u0142\u0105czona z tym kontem r\u00f3wnie\u017c zostanie usuni\u0119ta.|Wszystkie {count} transakcje po\u0142\u0105czone z tym kontem r\u00f3wnie\u017c zostan\u0105 usuni\u0119te.", - "process_date": "Data przetworzenia", - "due_date": "Termin realizacji", - "payment_date": "Data p\u0142atno\u015bci", - "invoice_date": "Data faktury", - "amount_min": "Minimalna kwota", - "amount_max": "Maksymalna kwota", - "start_date": "Pocz\u0105tek zakresu", - "end_date": "Koniec zakresu", - "extension_date": "Extension date" - } -} \ No newline at end of file diff --git a/frontend/src/locales/pt-br.json b/frontend/src/locales/pt-br.json deleted file mode 100644 index 114663a945..0000000000 --- a/frontend/src/locales/pt-br.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "Transfer\u00eancia", - "Withdrawal": "Retirada", - "Deposit": "Dep\u00f3sito", - "date_and_time": "Data e hora", - "no_currency": "(sem moeda)", - "date": "Data", - "time": "Hor\u00e1rio", - "no_budget": "(sem or\u00e7amento)", - "destination_account": "Conta destino", - "source_account": "Conta origem", - "single_split": "Divis\u00e3o", - "create_new_transaction": "Criar nova transa\u00e7\u00e3o", - "balance": "Saldo", - "transaction_journal_extra": "Informa\u00e7\u00e3o extra", - "transaction_journal_meta": "Meta-informa\u00e7\u00e3o", - "basic_journal_information": "Informa\u00e7\u00f5es b\u00e1sicas de transa\u00e7\u00e3o", - "bills_to_pay": "Contas a pagar", - "left_to_spend": "Restante para gastar", - "attachments": "Anexos", - "net_worth": "Valor L\u00edquido", - "bill": "Fatura", - "no_bill": "(sem conta)", - "tags": "Tags", - "internal_reference": "Refer\u00eancia interna", - "external_url": "URL externa", - "no_piggy_bank": "(nenhum cofrinho)", - "paid": "Pago", - "notes": "Notas", - "yourAccounts": "Suas contas", - "go_to_asset_accounts": "Veja suas contas ativas", - "delete_account": "Apagar conta", - "transaction_table_description": "Uma tabela contendo suas transa\u00e7\u00f5es", - "account": "Conta", - "description": "Descri\u00e7\u00e3o", - "amount": "Valor", - "budget": "Or\u00e7amento", - "category": "Categoria", - "opposing_account": "Conta oposta", - "budgets": "Or\u00e7amentos", - "categories": "Categorias", - "go_to_budgets": "V\u00e1 para seus or\u00e7amentos", - "income": "Receita \/ Renda", - "go_to_deposits": "Ir para as entradas", - "go_to_categories": "V\u00e1 para suas categorias", - "expense_accounts": "Contas de despesas", - "go_to_expenses": "Ir para despesas", - "go_to_bills": "V\u00e1 para suas contas", - "bills": "Faturas", - "last_thirty_days": "\u00daltimos 30 dias", - "last_seven_days": "\u00daltimos sete dias", - "go_to_piggies": "V\u00e1 para sua poupan\u00e7a", - "saved": "Salvo", - "piggy_banks": "Cofrinhos", - "piggy_bank": "Cofrinho", - "amounts": "Quantias", - "left": "Restante", - "spent": "Gasto", - "Default asset account": "Conta padr\u00e3o", - "search_results": "Resultados da pesquisa", - "include": "Incluir?", - "transaction": "Transa\u00e7\u00e3o", - "account_role_defaultAsset": "Conta padr\u00e3o", - "account_role_savingAsset": "Conta poupan\u00e7a", - "account_role_sharedAsset": "Contas de ativos compartilhadas", - "clear_location": "Limpar localiza\u00e7\u00e3o", - "account_role_ccAsset": "Cart\u00e3o de cr\u00e9dito", - "account_role_cashWalletAsset": "Carteira de dinheiro", - "daily_budgets": "Or\u00e7amentos di\u00e1rios", - "weekly_budgets": "Or\u00e7amentos semanais", - "monthly_budgets": "Or\u00e7amentos mensais", - "journals_in_period_for_account_js": "All transactions for account {title} between {start} and {end}", - "quarterly_budgets": "Or\u00e7amentos trimestrais", - "create_new_expense": "Criar nova conta de despesa", - "create_new_revenue": "Criar nova conta de receita", - "create_new_liabilities": "Criar novo passivo", - "half_year_budgets": "Or\u00e7amentos semestrais", - "yearly_budgets": "Or\u00e7amentos anuais", - "split_transaction_title": "Descri\u00e7\u00e3o da transa\u00e7\u00e3o dividida", - "errors_submission": "H\u00e1 algo de errado com o seu envio. Por favor, verifique os erros abaixo.", - "flash_error": "Erro!", - "store_transaction": "Salvar transa\u00e7\u00e3o", - "flash_success": "Sucesso!", - "create_another": "Depois de armazenar, retorne aqui para criar outro.", - "update_transaction": "Atualizar transa\u00e7\u00e3o", - "after_update_create_another": "Depois de atualizar, retorne aqui para continuar editando.", - "transaction_updated_no_changes": "A Transa\u00e7\u00e3o #{ID}<\/a> (\"{title}\") n\u00e3o recebeu nenhuma altera\u00e7\u00e3o.", - "transaction_updated_link": "A Transa\u00e7\u00e3o #{ID}<\/a> (\"{title}\") foi atualizada.", - "spent_x_of_y": "Gasto {amount} de {total}", - "search": "Pesquisa", - "create_new_asset": "Criar nova conta de ativo", - "asset_accounts": "Contas de ativo", - "reset_after": "Resetar o formul\u00e1rio ap\u00f3s o envio", - "bill_paid_on": "Pago em {date}", - "first_split_decides": "A primeira divis\u00e3o determina o valor deste campo", - "first_split_overrules_source": "A primeira divis\u00e3o pode anular a conta de origem", - "first_split_overrules_destination": "A primeira divis\u00e3o pode anular a conta de destino", - "transaction_stored_link": "Transa\u00e7\u00e3o #{ID} (\"{title}\")<\/a> foi salva.", - "custom_period": "Per\u00edodo personalizado", - "reset_to_current": "Redefinir para o per\u00edodo atual", - "select_period": "Selecione um per\u00edodo", - "location": "Localiza\u00e7\u00e3o", - "other_budgets": "Or\u00e7amentos de per\u00edodos personalizados", - "journal_links": "Transa\u00e7\u00f5es ligadas", - "go_to_withdrawals": "V\u00e1 para seus saques", - "revenue_accounts": "Contas de receitas", - "add_another_split": "Adicionar outra divis\u00e3o", - "actions": "A\u00e7\u00f5es", - "earned": "Ganho", - "empty": "(vazio)", - "edit": "Editar", - "never": "Nunca", - "account_type_Loan": "Empr\u00e9stimo", - "account_type_Mortgage": "Hipoteca", - "stored_new_account_js": "Nova conta \"{name}<\/a>\" armazenada!", - "account_type_Debt": "D\u00edvida", - "liability_direction_null_short": "Desconhecida", - "delete": "Apagar", - "store_new_asset_account": "Armazenar nova conta de ativo", - "store_new_expense_account": "Armazenar nova conta de despesa", - "store_new_liabilities_account": "Guardar novo passivo", - "store_new_revenue_account": "Armazenar nova conta de receita", - "mandatoryFields": "Campos obrigat\u00f3rios", - "optionalFields": "Campos opcionais", - "reconcile_this_account": "Concilie esta conta", - "interest_calc_weekly": "Por semana", - "interest_calc_monthly": "Por m\u00eas", - "interest_calc_quarterly": "Por trimestre", - "interest_calc_half-year": "Por semestre", - "interest_calc_yearly": "Por ano", - "liability_direction_credit": "Devo este d\u00e9bito", - "liability_direction_debit": "Devo este d\u00e9bito a outra pessoa", - "liability_direction_credit_short": "Owed this debt", - "liability_direction_debit_short": "Owe this debt", - "account_type_debt": "D\u00e9bito", - "account_type_loan": "Empr\u00e9stimo", - "left_in_debt": "Valor devido", - "account_type_mortgage": "Hipoteca", - "save_transactions_by_moving_js": "Nenhuma transa\u00e7\u00e3o.|Salve esta transa\u00e7\u00e3o movendo-a para outra conta.|Salve essas transa\u00e7\u00f5es movendo-as para outra conta.", - "none_in_select_list": "(nenhum)", - "transaction_expand_split": "Exibir divis\u00e3o", - "transaction_collapse_split": "Esconder divis\u00e3o", - "default_group_title_name": "(n\u00e3o agrupado)", - "bill_repeats_weekly": "Repete semanalmente", - "bill_repeats_monthly": "Repete mensalmente", - "bill_repeats_quarterly": "Repete trimestralmente", - "bill_repeats_half-year": "Repete a cada semestre", - "bill_repeats_yearly": "Repete anualmente", - "bill_repeats_weekly_other": "Repete quinzenalmente", - "bill_repeats_monthly_other": "Repete bimestralmente", - "bill_repeats_quarterly_other": "Repete a cada dois trimestres", - "bill_repeats_half-year_other": "Repete anualmente", - "bill_repeats_yearly_other": "Repete a cada dois anos", - "bill_repeats_weekly_skip": "Repete a cada {skip} semanas", - "bill_repeats_monthly_skip": "Repete a cada {skip} meses", - "bill_repeats_quarterly_skip": "Repete a cada {skip} trimestres", - "bill_repeats_half-year_skip": "Repete a cada {skip} semestres", - "bill_repeats_yearly_skip": "Repete a cada {skip} anos", - "not_expected_period": "N\u00e3o esperado este per\u00edodo", - "subscriptions": "Assinaturas", - "bill_expected_date_js": "Esperado {date}", - "inactive": "Inativo", - "forever": "Para sempre", - "extension_date_is": "Data da extens\u00e3o \u00e9 {date}", - "create_new_bill": "Criar nova fatura", - "store_new_bill": "Armazenar nova fatura", - "repeat_freq_yearly": "anual", - "repeat_freq_half-year": "cada semestre", - "repeat_freq_quarterly": "trimestral", - "repeat_freq_monthly": "mensal", - "repeat_freq_weekly": "semanal", - "credit_card_type_monthlyFull": "Pagamento completo todo m\u00eas", - "update_liabilities_account": "Atualizar passivo", - "update_expense_account": "Atualizar conta de despesas", - "update_revenue_account": "Atualizar conta de receita", - "update_undefined_account": "Atualizar conta", - "update_asset_account": "Atualizar de conta de ativo", - "updated_account_js": "Updated account \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "Cofrinho", - "percentage": "pct.", - "amount": "Total", - "lastActivity": "\u00daltima atividade", - "name": "Nome", - "role": "Papel", - "description": "Descri\u00e7\u00e3o", - "date": "Data", - "source_account": "Conta de origem", - "destination_account": "Conta de destino", - "category": "Categoria", - "iban": "IBAN", - "interest": "Juros", - "interest_period": "Per\u00edodo de juros", - "liability_type": "Tipo de passivo", - "liability_direction": "Liability in\/out", - "currentBalance": "Saldo atual", - "next_expected_match": "Pr\u00f3ximo correspondente esperado", - "expected_info": "Pr\u00f3xima transa\u00e7\u00e3o esperada", - "start_date": "Data de in\u00edcio", - "end_date": "Data final", - "payment_info": "Informa\u00e7\u00e3o de pagamento" - }, - "config": { - "html_language": "pt-br", - "week_in_year_fns": "'Semana' w, yyyy", - "month_and_day_fns": "MMMM d, y", - "quarter_fns": "'T'Q, yyyy", - "half_year_fns": "'S{half}', yyyy" - }, - "form": { - "foreign_amount": "Montante em moeda estrangeira", - "interest_date": "Data de interesse", - "name": "Nome", - "amount": "Valor", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Notas", - "location": "Localiza\u00e7\u00e3o", - "repeat_freq": "Repeti\u00e7\u00f5es", - "skip": "Pular", - "startdate": "Data de In\u00edcio", - "enddate": "End date", - "object_group": "Grupo", - "attachments": "Anexos", - "deletePermanently": "Apagar permanentemente", - "active": "Ativar", - "include_net_worth": "Incluir no patrimonio liquido", - "cc_type": "Plano de pagamento do Cart\u00e3o de Cr\u00e9dito", - "account_number": "N\u00famero de conta", - "cc_monthly_payment_date": "Data do pagamento mensal do Cart\u00e3o de Cr\u00e9dito", - "virtual_balance": "Saldo virtual", - "opening_balance": "Saldo inicial", - "opening_balance_date": "Data do saldo inicial", - "date": "Data", - "interest": "Juros", - "interest_period": "Per\u00edodo de juros", - "currency_id": "Moeda", - "liability_type": "Tipo de passivo", - "account_role": "Fun\u00e7\u00e3o de conta", - "liability_direction": "Passivo entrada\/sa\u00edda", - "book_date": "Data reserva", - "permDeleteWarning": "Exclus\u00e3o de dados do Firefly III s\u00e3o permanentes e n\u00e3o podem ser desfeitos.", - "account_areYouSure_js": "Tem certeza que deseja excluir a conta \"{name}\"?", - "also_delete_piggyBanks_js": "Sem cofrinhos|O \u00fanico cofrinho conectado a esta conta tamb\u00e9m ser\u00e1 exclu\u00eddo.|Todos os {count} cofrinhos conectados a esta conta tamb\u00e9m ser\u00e3o exclu\u00eddos.", - "also_delete_transactions_js": "Sem transa\u00e7\u00f5es|A \u00fanica transa\u00e7\u00e3o conectada a esta conta tamb\u00e9m ser\u00e1 exclu\u00edda.|Todas as {count} transa\u00e7\u00f5es conectadas a essa conta tamb\u00e9m ser\u00e3o exclu\u00eddas.", - "process_date": "Data de processamento", - "due_date": "Data de vencimento", - "payment_date": "Data de pagamento", - "invoice_date": "Data da Fatura", - "amount_min": "Valor M\u00ednimo", - "amount_max": "Valor M\u00e1ximo", - "start_date": "In\u00edcio do intervalo", - "end_date": "Final do intervalo", - "extension_date": "Extension date" - } -} \ No newline at end of file diff --git a/frontend/src/locales/pt.json b/frontend/src/locales/pt.json deleted file mode 100644 index ba42ce0465..0000000000 --- a/frontend/src/locales/pt.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "Transfer\u00eancia", - "Withdrawal": "Levantamento", - "Deposit": "Dep\u00f3sito", - "date_and_time": "Data e hora", - "no_currency": "(sem moeda)", - "date": "Data", - "time": "Hora", - "no_budget": "(sem or\u00e7amento)", - "destination_account": "Conta de destino", - "source_account": "Conta de origem", - "single_split": "Dividir", - "create_new_transaction": "Criar uma nova transa\u00e7\u00e3o", - "balance": "Saldo", - "transaction_journal_extra": "Informa\u00e7\u00f5es extra", - "transaction_journal_meta": "Meta informa\u00e7\u00e3o", - "basic_journal_information": "Informa\u00e7\u00f5es b\u00e1sicas de transa\u00e7\u00e3o", - "bills_to_pay": "Faturas a pagar", - "left_to_spend": "Restante para gastar", - "attachments": "Anexos", - "net_worth": "Patrim\u00f3nio liquido", - "bill": "Fatura", - "no_bill": "(sem fatura)", - "tags": "Etiquetas", - "internal_reference": "Refer\u00eancia interna", - "external_url": "URL Externo", - "no_piggy_bank": "(nenhum mealheiro)", - "paid": "Pago", - "notes": "Notas", - "yourAccounts": "As suas contas", - "go_to_asset_accounts": "Ver as contas de ativos", - "delete_account": "Apagar conta de utilizador", - "transaction_table_description": "Uma tabela com as suas transac\u00e7\u00f5es", - "account": "Conta", - "description": "Descricao", - "amount": "Montante", - "budget": "Orcamento", - "category": "Categoria", - "opposing_account": "Conta oposta", - "budgets": "Or\u00e7amentos", - "categories": "Categorias", - "go_to_budgets": "Ir para os seus or\u00e7amentos", - "income": "Receita \/ renda", - "go_to_deposits": "Ir para dep\u00f3sitos", - "go_to_categories": "Ir para categorias", - "expense_accounts": "Conta de despesas", - "go_to_expenses": "Ir para despesas", - "go_to_bills": "Ir para as faturas", - "bills": "Faturas", - "last_thirty_days": "\u00daltimos trinta dias", - "last_seven_days": "\u00daltimos sete dias", - "go_to_piggies": "Ir para mealheiros", - "saved": "Guardado", - "piggy_banks": "Mealheiros", - "piggy_bank": "Mealheiro", - "amounts": "Montantes", - "left": "Em falta", - "spent": "Gasto", - "Default asset account": "Conta de ativos padr\u00e3o", - "search_results": "Resultados da pesquisa", - "include": "Incluir?", - "transaction": "Transac\u00e7\u00e3o", - "account_role_defaultAsset": "Conta de activos padr\u00e3o", - "account_role_savingAsset": "Conta poupan\u00e7a", - "account_role_sharedAsset": "Conta de activos partilhados", - "clear_location": "Limpar localiza\u00e7\u00e3o", - "account_role_ccAsset": "Cart\u00e3o de credito", - "account_role_cashWalletAsset": "Carteira de dinheiro", - "daily_budgets": "Or\u00e7amento di\u00e1rio", - "weekly_budgets": "Or\u00e7amento semanal", - "monthly_budgets": "Or\u00e7amento mensal", - "journals_in_period_for_account_js": "Todas as transa\u00e7\u00f5es para a conta {title} entre {start} e {end}", - "quarterly_budgets": "Or\u00e7amento trimestral", - "create_new_expense": "Criar nova conta de despesas", - "create_new_revenue": "Criar nova conta de receitas", - "create_new_liabilities": "Criar novo passivo", - "half_year_budgets": "Or\u00e7amento semestral", - "yearly_budgets": "Or\u00e7amento anual", - "split_transaction_title": "Descri\u00e7\u00e3o da transac\u00e7\u00e3o dividida", - "errors_submission": "Aconteceu algo errado com a sua submiss\u00e3o. Por favor, verifique os erros.", - "flash_error": "Erro!", - "store_transaction": "Guardar transa\u00e7\u00e3o", - "flash_success": "Sucesso!", - "create_another": "Depois de guardar, voltar aqui para criar outra.", - "update_transaction": "Actualizar transac\u00e7\u00e3o", - "after_update_create_another": "Ap\u00f3s a atualiza\u00e7\u00e3o, regresse aqui para continuar a editar.", - "transaction_updated_no_changes": "Transa\u00e7\u00e3o #{ID}<\/a> (\"{title}\") n\u00e3o recebeu nenhuma altera\u00e7\u00e3o.", - "transaction_updated_link": "Transa\u00e7\u00e3o #{ID}<\/a> (\"{title}\") foi atualizada.", - "spent_x_of_y": "Gasto {amount} de {total}", - "search": "Procurar", - "create_new_asset": "Criar nova conta de activos", - "asset_accounts": "Conta de activos", - "reset_after": "Repor o formul\u00e1rio ap\u00f3s o envio", - "bill_paid_on": "Pago a {date}", - "first_split_decides": "A primeira divis\u00e3o determina o valor deste campo", - "first_split_overrules_source": "A primeira divis\u00e3o pode anular a conta de origem", - "first_split_overrules_destination": "A primeira divis\u00e3o pode anular a conta de destino", - "transaction_stored_link": "Transa\u00e7\u00e3o #{ID} (\"{title}\")<\/a> foi guardada.", - "custom_period": "Per\u00edodo personalizado", - "reset_to_current": "Reiniciar o per\u00edodo personalizado", - "select_period": "Selecionar um per\u00edodo", - "location": "Localiza\u00e7\u00e3o", - "other_budgets": "Or\u00e7amentos de tempo personalizado", - "journal_links": "Liga\u00e7\u00f5es de transac\u00e7\u00e3o", - "go_to_withdrawals": "Ir para os seus levantamentos", - "revenue_accounts": "Conta de receitas", - "add_another_split": "Adicionar outra divis\u00e3o", - "actions": "A\u00e7\u00f5es", - "earned": "Ganho", - "empty": "(vazio)", - "edit": "Alterar", - "never": "Nunca", - "account_type_Loan": "Emprestimo", - "account_type_Mortgage": "Hipoteca", - "stored_new_account_js": "Nova conta \"{name}<\/a>\" armazenada!", - "account_type_Debt": "Debito", - "liability_direction_null_short": "Desconhecido", - "delete": "Apagar", - "store_new_asset_account": "Guardar nova conta de activos", - "store_new_expense_account": "Guardar nova conta de despesas", - "store_new_liabilities_account": "Guardar novo passivo", - "store_new_revenue_account": "Guardar nova conta de receitas", - "mandatoryFields": "Campos obrigatorios", - "optionalFields": "Campos opcionais", - "reconcile_this_account": "Reconciliar esta conta", - "interest_calc_weekly": "Por semana", - "interest_calc_monthly": "Mensal", - "interest_calc_quarterly": "Por trimestre", - "interest_calc_half-year": "Por meio ano", - "interest_calc_yearly": "Anual", - "liability_direction_credit": "Esta d\u00edvida \u00e9-me devida", - "liability_direction_debit": "Devo esta d\u00edvida a outra pessoa", - "liability_direction_credit_short": "Deve-lhe esta d\u00edvida", - "liability_direction_debit_short": "Deve esta d\u00edvida", - "account_type_debt": "D\u00edvida", - "account_type_loan": "Empr\u00e9stimo", - "left_in_debt": "Montante em d\u00edvida", - "account_type_mortgage": "Hipoteca", - "save_transactions_by_moving_js": "Nenhuma transa\u00e7\u00e3o| Guarde esta transa\u00e7\u00e3o movendo-a para outra conta| Guarde estas transa\u00e7\u00f5es movendo-as para outra conta.", - "none_in_select_list": "(nenhum)", - "transaction_expand_split": "Expandir divis\u00e3o", - "transaction_collapse_split": "Ocultar divis\u00e3o", - "default_group_title_name": "(n\u00e3o agrupado)", - "bill_repeats_weekly": "Repete-se semanalmente", - "bill_repeats_monthly": "Repete mensalmente", - "bill_repeats_quarterly": "Repete trimestralmente", - "bill_repeats_half-year": "Repete-se a cada meio ano", - "bill_repeats_yearly": "Repete-se anualmente", - "bill_repeats_weekly_other": "Repete-se a cada semana", - "bill_repeats_monthly_other": "Repete-se a cada outro m\u00eas", - "bill_repeats_quarterly_other": "Repete-se a cada trimestre", - "bill_repeats_half-year_other": "Repete-se anualmente", - "bill_repeats_yearly_other": "Repete-se a cada ano", - "bill_repeats_weekly_skip": "Repete-se a cada {skip} semanas", - "bill_repeats_monthly_skip": "Repete-se a cada {skip} meses", - "bill_repeats_quarterly_skip": "Repete a cada {skip} trimestres", - "bill_repeats_half-year_skip": "Repete-se a cada {skip} meio ano", - "bill_repeats_yearly_skip": "Repete-se a cada {skip} anos", - "not_expected_period": "Este per\u00edodo n\u00e3o foi previsto", - "subscriptions": "Subscri\u00e7\u00f5es", - "bill_expected_date_js": "Esperado {date}", - "inactive": "Inactivo", - "forever": "Para sempre", - "extension_date_is": "A data de extens\u00e3o \u00e9 {date}", - "create_new_bill": "Criar nova fatura", - "store_new_bill": "Guardar nova fatura", - "repeat_freq_yearly": "anualmente", - "repeat_freq_half-year": "todo meio ano", - "repeat_freq_quarterly": "trimestral", - "repeat_freq_monthly": "mensalmente", - "repeat_freq_weekly": "semanalmente", - "credit_card_type_monthlyFull": "Pagamento completo a cada m\u00eas", - "update_liabilities_account": "Actualizar passivo", - "update_expense_account": "Alterar conta de despesas", - "update_revenue_account": "Alterar conta de receitas", - "update_undefined_account": "Actualizar conta", - "update_asset_account": "Actualizar conta de activos", - "updated_account_js": "Conta atualizada \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "Mealheiro", - "percentage": "%.", - "amount": "Montante", - "lastActivity": "Ultima actividade", - "name": "Nome", - "role": "Regra", - "description": "Descricao", - "date": "Data", - "source_account": "Conta de origem", - "destination_account": "Conta de destino", - "category": "Categoria", - "iban": "IBAN", - "interest": "Juro", - "interest_period": "Per\u00edodo de juros", - "liability_type": "Tipo de responsabilidade", - "liability_direction": "Passivo entrada\/fora", - "currentBalance": "Saldo actual", - "next_expected_match": "Proxima correspondencia esperada", - "expected_info": "Pr\u00f3xima transa\u00e7\u00e3o esperada", - "start_date": "Data de inicio", - "end_date": "Data do t\u00e9rmino", - "payment_info": "Informa\u00e7\u00f5es de pagamento" - }, - "config": { - "html_language": "pt", - "week_in_year_fns": "'Semana' w, yyyy", - "month_and_day_fns": "d MMMM, y", - "quarter_fns": "'Trimestre' Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "Montante estrangeiro", - "interest_date": "Data de juros", - "name": "Nome", - "amount": "Montante", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Notas", - "location": "Localiza\u00e7\u00e3o", - "repeat_freq": "Repete", - "skip": "Pular", - "startdate": "Data de inicio", - "enddate": "Data do t\u00e9rmino", - "object_group": "Grupo", - "attachments": "Anexos", - "deletePermanently": "Apagar permanentemente", - "active": "Activo", - "include_net_worth": "Incluir no patrimonio liquido", - "cc_type": "Plano de pagamento do cart\u00e3o de cr\u00e9dito", - "account_number": "N\u00famero de conta", - "cc_monthly_payment_date": "Data de pagamento mensal do cart\u00e3o de cr\u00e9dito", - "virtual_balance": "Saldo virtual", - "opening_balance": "Saldo inicial", - "opening_balance_date": "Data do saldo inicial", - "date": "Data", - "interest": "Juro", - "interest_period": "Periodo de juros", - "currency_id": "Divisa", - "liability_type": "Tipo de responsabilidade", - "account_role": "Tipo de conta", - "liability_direction": "Responsabilidade entrada\/sa\u00edda", - "book_date": "Data de registo", - "permDeleteWarning": "Apagar as tuas coisas do Firefly III e permanente e nao pode ser desfeito.", - "account_areYouSure_js": "Tem a certeza que deseja eliminar a conta denominada por \"{name}?", - "also_delete_piggyBanks_js": "Nenhum mealheiro|O \u00fanico mealheiro ligado a esta conta ser\u00e1 tamb\u00e9m eliminado.|Todos os {count} mealheiros ligados a esta conta ser\u00e3o tamb\u00e9m eliminados.", - "also_delete_transactions_js": "Nenhuma transa\u00e7\u00e3o| A \u00fanica transa\u00e7\u00e3o ligada a esta conta ser\u00e1 tamb\u00e9m exclu\u00edda.|Todas as {count} transa\u00e7\u00f5es ligadas a esta conta ser\u00e3o tamb\u00e9m exclu\u00eddas.", - "process_date": "Data de processamento", - "due_date": "Data de vencimento", - "payment_date": "Data de pagamento", - "invoice_date": "Data da factura", - "amount_min": "Montante minimo", - "amount_max": "Montante maximo", - "start_date": "Inicio do intervalo", - "end_date": "Fim do intervalo", - "extension_date": "Data da extens\u00e3o" - } -} \ No newline at end of file diff --git a/frontend/src/locales/ro.json b/frontend/src/locales/ro.json deleted file mode 100644 index 9f9cc94b48..0000000000 --- a/frontend/src/locales/ro.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "Transfer", - "Withdrawal": "Retragere", - "Deposit": "Depozit", - "date_and_time": "Data \u0219i ora", - "no_currency": "(nici o moned\u0103)", - "date": "Dat\u0103", - "time": "Timp", - "no_budget": "(nici un buget)", - "destination_account": "Contul de destina\u021bie", - "source_account": "Contul surs\u0103", - "single_split": "\u00cemparte", - "create_new_transaction": "Crea\u021bi o tranzac\u021bie nou\u0103", - "balance": "Balant\u0103", - "transaction_journal_extra": "Informa\u021bii suplimentare", - "transaction_journal_meta": "Informa\u021bii meta", - "basic_journal_information": "Informa\u021bii de baz\u0103 despre tranzac\u021bie", - "bills_to_pay": "Facturile de plat\u0103", - "left_to_spend": "Ramas de cheltuit", - "attachments": "Ata\u0219amente", - "net_worth": "Valoarea net\u0103", - "bill": "Factur\u0103", - "no_bill": "(f\u0103r\u0103 factur\u0103)", - "tags": "Etichete", - "internal_reference": "Referin\u021b\u0103 intern\u0103", - "external_url": "URL extern", - "no_piggy_bank": "(nicio pu\u0219culi\u021b\u0103)", - "paid": "Pl\u0103tit", - "notes": "Noti\u021be", - "yourAccounts": "Conturile dvs.", - "go_to_asset_accounts": "Vizualiza\u021bi conturile de active", - "delete_account": "\u0218terge account", - "transaction_table_description": "Un tabel care con\u021bine tranzac\u021biile tale", - "account": "Cont", - "description": "Descriere", - "amount": "Sum\u0103", - "budget": "Buget", - "category": "Categorie", - "opposing_account": "Cont opus", - "budgets": "Buget", - "categories": "Categorii", - "go_to_budgets": "Mergi la bugete", - "income": "Venituri", - "go_to_deposits": "Du-te la depozite", - "go_to_categories": "Mergi la categorii", - "expense_accounts": "Conturi de cheltuieli", - "go_to_expenses": "Mergi la cheltuieli", - "go_to_bills": "Mergi la facturi", - "bills": "Facturi", - "last_thirty_days": "Ultimele 30 de zile", - "last_seven_days": "Ultimele 7 zile", - "go_to_piggies": "Mergi la pu\u0219culi\u021b\u0103", - "saved": "Salvat", - "piggy_banks": "Pu\u0219culi\u021b\u0103", - "piggy_bank": "Pu\u0219culi\u021b\u0103", - "amounts": "Sume", - "left": "R\u0103mas", - "spent": "Cheltuit", - "Default asset account": "Cont de active implicit", - "search_results": "Rezultatele c\u0103utarii", - "include": "Include?", - "transaction": "Tranzac\u0163ie", - "account_role_defaultAsset": "Contul implicit activ", - "account_role_savingAsset": "Cont de economii", - "account_role_sharedAsset": "Contul de active partajat", - "clear_location": "\u0218terge\u021bi loca\u021bia", - "account_role_ccAsset": "Card de credit", - "account_role_cashWalletAsset": "Cash - Numerar", - "daily_budgets": "Bugete zilnice", - "weekly_budgets": "Bugete s\u0103pt\u0103m\u00e2nale", - "monthly_budgets": "Bugete lunare", - "journals_in_period_for_account_js": "Toate tranzac\u021biile pentru contul {title} \u00eentre {start} \u0219i {end}", - "quarterly_budgets": "Bugete trimestriale", - "create_new_expense": "Crea\u021bi un nou cont de cheltuieli", - "create_new_revenue": "Crea\u021bi un nou cont de venituri", - "create_new_liabilities": "Creare provizion nou", - "half_year_budgets": "Bugete semestriale", - "yearly_budgets": "Bugete anuale", - "split_transaction_title": "Descrierea tranzac\u021biei divizate", - "errors_submission": "A fost ceva \u00een neregul\u0103 cu depunerea ta. Te rug\u0103m s\u0103 verifici erorile.", - "flash_error": "Eroare!", - "store_transaction": "Tranzac\u021bie magazin", - "flash_success": "Succes!", - "create_another": "Dup\u0103 stocare, reveni\u021bi aici pentru a crea alta.", - "update_transaction": "Actualiza\u021bi tranzac\u021bia", - "after_update_create_another": "Dup\u0103 actualizare, reveni\u021bi aici pentru a continua editarea.", - "transaction_updated_no_changes": "Tranzac\u021bia #{ID}<\/a> (\"{title}\") nu a primit nicio modificare.", - "transaction_updated_link": "Tranzac\u021bia #{ID}<\/a> (\"{title}\") a fost actualizat\u0103.", - "spent_x_of_y": "Cheltuit {amount} din {total}", - "search": "Caut\u0103", - "create_new_asset": "Crea\u021bi un nou cont de active", - "asset_accounts": "Conturile de active", - "reset_after": "Reseta\u021bi formularul dup\u0103 trimitere", - "bill_paid_on": "Pl\u0103tit pe {date}", - "first_split_decides": "Prima \u00eemp\u0103r\u021bire determin\u0103 valoarea acestui c\u00e2mp", - "first_split_overrules_source": "Prima \u00eemp\u0103r\u021bire poate suprascrie contul surs\u0103", - "first_split_overrules_destination": "Prima \u00eemp\u0103r\u021bire poate suprascrie contul de destina\u021bie", - "transaction_stored_link": "Tranzac\u021bia #{ID} (\"{title}\")<\/a> a fost stocat\u0103.", - "custom_period": "Perioad\u0103 personalizat\u0103", - "reset_to_current": "Resetare la perioada curent\u0103", - "select_period": "Selecta\u021bi o perioad\u0103", - "location": "Loca\u021bie", - "other_budgets": "Bugete personalizate temporale", - "journal_links": "Link-uri de tranzac\u021bii", - "go_to_withdrawals": "Mergi la retragerile tale", - "revenue_accounts": "Conturi de venituri", - "add_another_split": "Ad\u0103uga\u021bi o divizare", - "actions": "Ac\u021biuni", - "earned": "C\u00e2\u0219tigat", - "empty": "(gol)", - "edit": "Editeaz\u0103", - "never": "Niciodat\u0103", - "account_type_Loan": "\u00cemprumut", - "account_type_Mortgage": "Credit ipotecar", - "stored_new_account_js": "Cont nou \"{name}<\/a>\" stocat!", - "account_type_Debt": "Datorie", - "liability_direction_null_short": "Unknown", - "delete": "\u0218terge", - "store_new_asset_account": "Salva\u021bi un nou cont de active", - "store_new_expense_account": "Salva\u021bi un nou cont de cheltuieli", - "store_new_liabilities_account": "Salva\u021bi provizion nou", - "store_new_revenue_account": "Salva\u021bi un nou cont de venituri", - "mandatoryFields": "C\u00e2mpuri obligatorii", - "optionalFields": "C\u00e2mpuri op\u021bionale", - "reconcile_this_account": "Reconcilia\u021bi acest cont", - "interest_calc_weekly": "Pe s\u0103pt\u0103m\u00e2n\u0103", - "interest_calc_monthly": "Pe lun\u0103", - "interest_calc_quarterly": "Pe trimestru", - "interest_calc_half-year": "Pe jum\u0103tate de an", - "interest_calc_yearly": "Pe an", - "liability_direction_credit": "Sunt datorat acestei datorii", - "liability_direction_debit": "Dator\u0103m aceast\u0103 datorie altcuiva", - "liability_direction_credit_short": "Owed this debt", - "liability_direction_debit_short": "Owe this debt", - "account_type_debt": "Debt", - "account_type_loan": "Loan", - "left_in_debt": "Amount due", - "account_type_mortgage": "Mortgage", - "save_transactions_by_moving_js": "F\u0103r\u0103 tranzac\u021bii* Salva\u021bi aceast\u0103 tranzac\u021bie mut\u00e2nd-o \u00een alt cont. | Salva\u021bi aceste tranzac\u021bii mut\u00e2ndu-le \u00eentr-un alt cont.", - "none_in_select_list": "(nici unul)", - "transaction_expand_split": "Expand split", - "transaction_collapse_split": "Collapse split", - "default_group_title_name": "(negrupat)", - "bill_repeats_weekly": "Se repet\u0103 s\u0103pt\u0103m\u00e2nal", - "bill_repeats_monthly": "Se repet\u0103 lunar", - "bill_repeats_quarterly": "Repet\u0103 trimestrial", - "bill_repeats_half-year": "Se repet\u0103 la fiecare jum\u0103tate de an", - "bill_repeats_yearly": "Se repet\u0103 anual", - "bill_repeats_weekly_other": "Se repet\u0103 in fiecare s\u0103pt\u0103m\u00e2na", - "bill_repeats_monthly_other": "Se repet\u0103 la fiecare alt\u0103 lun\u0103", - "bill_repeats_quarterly_other": "Repeats every other quarter", - "bill_repeats_half-year_other": "Repeats yearly", - "bill_repeats_yearly_other": "Repeats every other year", - "bill_repeats_weekly_skip": "Repeats every {skip} weeks", - "bill_repeats_monthly_skip": "Repeats every {skip} months", - "bill_repeats_quarterly_skip": "Repeats every {skip} quarters", - "bill_repeats_half-year_skip": "Repeats every {skip} half years", - "bill_repeats_yearly_skip": "Repeats every {skip} years", - "not_expected_period": "Nu se a\u015fteapt\u0103 aceast\u0103 perioad\u0103", - "subscriptions": "Subscriptions", - "bill_expected_date_js": "A\u0219teptat {date}", - "inactive": "Inactiv", - "forever": "Forever", - "extension_date_is": "Extension date is {date}", - "create_new_bill": "Crea\u021bi o nou\u0103 factur\u0103", - "store_new_bill": "Salva\u021bi o nou\u0103 factur\u0103", - "repeat_freq_yearly": "anual", - "repeat_freq_half-year": "fiecare jum\u0103tate de an", - "repeat_freq_quarterly": "trimestrial", - "repeat_freq_monthly": "lunar", - "repeat_freq_weekly": "s\u0103pt\u0103m\u00e2nal", - "credit_card_type_monthlyFull": "Full payment every month", - "update_liabilities_account": "Actualiza\u021bi provizionul", - "update_expense_account": "Actualiza\u021bi cont de cheltuieli", - "update_revenue_account": "Actualiza\u021bi cont de venituri", - "update_undefined_account": "Update account", - "update_asset_account": "Actualiza\u021bi contul de active", - "updated_account_js": "Updated account \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "Pu\u0219culi\u021b\u0103", - "percentage": "procent %", - "amount": "Sum\u0103", - "lastActivity": "Ultima activitate", - "name": "Nume", - "role": "Rol", - "description": "Descriere", - "date": "Dat\u0103", - "source_account": "Contul surs\u0103", - "destination_account": "Contul de destina\u021bie", - "category": "Categorii", - "iban": "IBAN", - "interest": "Interes", - "interest_period": "Perioad\u0103 de interes", - "liability_type": "Tip de provizion", - "liability_direction": "R\u0103spundere \u00een\/afar\u0103", - "currentBalance": "Sold curent", - "next_expected_match": "Urm\u0103toarea potrivire a\u0219teptat\u0103", - "expected_info": "Urm\u0103toarea tranzac\u021bie a\u0219teptat\u0103", - "start_date": "Dat\u0103 de \u00eencepere", - "end_date": "Data de sf\u00e2r\u0219it", - "payment_info": "Informa\u021bii de plat\u0103" - }, - "config": { - "html_language": "ro", - "week_in_year_fns": "'S\u0103pt\u0103m\u00e2n\u0103' w, yyyy", - "month_and_day_fns": "MMMM d, y", - "quarter_fns": "'Q'Q, yyyy", - "half_year_fns": "'H{half}', yyy" - }, - "form": { - "foreign_amount": "Sum\u0103 str\u0103in\u0103", - "interest_date": "Data de interes", - "name": "Nume", - "amount": "Sum\u0103", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Noti\u021be", - "location": "Loca\u021bie", - "repeat_freq": "Repet\u0103", - "skip": "Sari peste", - "startdate": "Data de \u00eenceput", - "enddate": "Data de sf\u00e2r\u0219it", - "object_group": "Grup", - "attachments": "Fi\u0219iere ata\u0219ate", - "deletePermanently": "\u0218terge permanent", - "active": "Activ", - "include_net_worth": "Include\u021bi \u00een valoare net\u0103", - "cc_type": "Plan de plat\u0103 cu card de credit", - "account_number": "Num\u0103r de cont", - "cc_monthly_payment_date": "Data pl\u0103\u021bii lunare cu cartea de credit", - "virtual_balance": "Soldul virtual", - "opening_balance": "Soldul de deschidere", - "opening_balance_date": "Data soldului de deschidere", - "date": "Dat\u0103", - "interest": "Interes", - "interest_period": "Perioad\u0103 de interes", - "currency_id": "Moned\u0103", - "liability_type": "Tipul de provizion", - "account_role": "Rolul contului", - "liability_direction": "R\u0103spundere \u00een\/afar\u0103", - "book_date": "Rezerv\u0103 dat\u0103", - "permDeleteWarning": "\u0218tergerea este permanent\u0103 \u0219i nu poate fi anulat\u0103.", - "account_areYouSure_js": "Sunte\u0163i sigur c\u0103 dori\u0163i s\u0103 \u015fterge\u0163i contul numit \"{name}\"?", - "also_delete_piggyBanks_js": "Nici o pu\u0219culi\u021b\u0103 | Singura pu\u0219culi\u021b\u0103 conectat\u0103 la acest cont va fi de asemenea \u0219tears\u0103. Toate cele {count} pu\u0219culi\u021be conectate la acest cont vor fi \u0219terse, de asemenea.", - "also_delete_transactions_js": "Nicio tranzac\u021bie | Singura tranzac\u021bie conectat\u0103 la acest cont va fi de asemenea \u0219tears\u0103. | Toate cele {count} tranzac\u021bii conectate la acest cont vor fi \u0219terse, de asemenea.", - "process_date": "Data proces\u0103rii", - "due_date": "Data scadent\u0103", - "payment_date": "Data de plat\u0103", - "invoice_date": "Data facturii", - "amount_min": "Suma minim\u0103", - "amount_max": "suma maxim\u0103", - "start_date": "Start de interval", - "end_date": "\u0218f\u00e2r\u0219it de interval", - "extension_date": "Data extensiei" - } -} \ No newline at end of file diff --git a/frontend/src/locales/ru.json b/frontend/src/locales/ru.json deleted file mode 100644 index 930339613c..0000000000 --- a/frontend/src/locales/ru.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "\u041f\u0435\u0440\u0435\u0432\u043e\u0434", - "Withdrawal": "\u0420\u0430\u0441\u0445\u043e\u0434", - "Deposit": "\u0414\u043e\u0445\u043e\u0434", - "date_and_time": "\u0414\u0430\u0442\u0430 \u0438\u00a0\u0432\u0440\u0435\u043c\u044f", - "no_currency": "(\u043d\u0435\u0442 \u0432\u0430\u043b\u044e\u0442\u044b)", - "date": "\u0414\u0430\u0442\u0430", - "time": "\u0412\u0440\u0435\u043c\u044f", - "no_budget": "(\u0432\u043d\u0435 \u0431\u044e\u0434\u0436\u0435\u0442\u0430)", - "destination_account": "\u0421\u0447\u0451\u0442 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f", - "source_account": "\u0421\u0447\u0451\u0442-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a", - "single_split": "\u0420\u0430\u0437\u0434\u0435\u043b\u0451\u043d\u043d\u0430\u044f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f", - "create_new_transaction": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u0443\u044e \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044e", - "balance": "\u0411a\u043ba\u043dc", - "transaction_journal_extra": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f", - "transaction_journal_meta": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f", - "basic_journal_information": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438", - "bills_to_pay": "\u0421\u0447\u0435\u0442\u0430 \u043a \u043e\u043f\u043b\u0430\u0442\u0435", - "left_to_spend": "\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u043f\u043e\u0442\u0440\u0430\u0442\u0438\u0442\u044c", - "attachments": "\u0412\u043b\u043e\u0436\u0435\u043d\u0438\u044f", - "net_worth": "\u041c\u043e\u0438 \u0441\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0438\u044f", - "bill": "\u0421\u0447\u0451\u0442 \u043a \u043e\u043f\u043b\u0430\u0442\u0435", - "no_bill": "(\u043d\u0435\u0442 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430 \u043e\u043f\u043b\u0430\u0442\u0443)", - "tags": "\u041c\u0435\u0442\u043a\u0438", - "internal_reference": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u044f\u044f \u0441\u0441\u044b\u043b\u043a\u0430", - "external_url": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 URL-\u0430\u0434\u0440\u0435\u0441", - "no_piggy_bank": "(\u043d\u0435\u0442 \u043a\u043e\u043f\u0438\u043b\u043a\u0438)", - "paid": "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043e", - "notes": "\u0417\u0430\u043c\u0435\u0442\u043a\u0438", - "yourAccounts": "\u0412\u0430\u0448\u0438 \u0441\u0447\u0435\u0442\u0430", - "go_to_asset_accounts": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u0432\u0430\u0448\u0438\u0445 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0441\u0447\u0435\u0442\u043e\u0432", - "delete_account": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u0440\u043e\u0444\u0438\u043b\u044c", - "transaction_table_description": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0430\u044f \u0432\u0430\u0448\u0438 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438", - "account": "\u0421\u0447\u0451\u0442", - "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", - "amount": "\u0421\u0443\u043c\u043c\u0430", - "budget": "\u0411\u044e\u0434\u0436\u0435\u0442", - "category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f", - "opposing_account": "\u041f\u0440\u043e\u0442\u0438\u0432\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u0441\u0447\u0451\u0442", - "budgets": "\u0411\u044e\u0434\u0436\u0435\u0442", - "categories": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438", - "go_to_budgets": "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u0432\u0430\u0448\u0438\u043c \u0431\u044e\u0434\u0436\u0435\u0442\u0430\u043c", - "income": "\u041c\u043e\u0438 \u0434\u043e\u0445\u043e\u0434\u044b", - "go_to_deposits": "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a\u043e \u0432\u043a\u043b\u0430\u0434\u0430\u043c", - "go_to_categories": "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u0432\u0430\u0448\u0438\u043c \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f\u043c", - "expense_accounts": "\u0421\u0447\u0435\u0442\u0430 \u0440\u0430\u0441\u0445\u043e\u0434\u043e\u0432", - "go_to_expenses": "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u0440\u0430\u0441\u0445\u043e\u0434\u0430\u043c", - "go_to_bills": "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u0432\u0430\u0448\u0438\u043c \u0441\u0447\u0435\u0442\u0430\u043c \u043d\u0430 \u043e\u043f\u043b\u0430\u0442\u0443", - "bills": "\u0421\u0447\u0435\u0442\u0430 \u043a \u043e\u043f\u043b\u0430\u0442\u0435", - "last_thirty_days": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 30 \u0434\u043d\u0435\u0439", - "last_seven_days": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 7 \u0434\u043d\u0435\u0439", - "go_to_piggies": "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u0432\u0430\u0448\u0438\u043c \u043a\u043e\u043f\u0438\u043b\u043a\u0430\u043c", - "saved": "\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043e", - "piggy_banks": "\u041a\u043e\u043f\u0438\u043b\u043a\u0438", - "piggy_bank": "\u041a\u043e\u043f\u0438\u043b\u043a\u0430", - "amounts": "\u0421\u0443\u043c\u043c\u0430", - "left": "\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c", - "spent": "\u0420\u0430\u0441\u0445\u043e\u0434", - "Default asset account": "\u0421\u0447\u0451\u0442 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e", - "search_results": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430", - "include": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c?", - "transaction": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f", - "account_role_defaultAsset": "\u0421\u0447\u0451\u0442 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e", - "account_role_savingAsset": "\u0421\u0431\u0435\u0440\u0435\u0433\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0441\u0447\u0435\u0442", - "account_role_sharedAsset": "\u041e\u0431\u0449\u0438\u0439 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0441\u0447\u0451\u0442", - "clear_location": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435", - "account_role_ccAsset": "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430\u044f \u043a\u0430\u0440\u0442\u0430", - "account_role_cashWalletAsset": "\u041d\u0430\u043b\u0438\u0447\u043d\u044b\u0435", - "daily_budgets": "\u0411\u044e\u0434\u0436\u0435\u0442\u044b \u043d\u0430 \u0434\u0435\u043d\u044c", - "weekly_budgets": "\u0411\u044e\u0434\u0436\u0435\u0442\u044b \u043d\u0430 \u043d\u0435\u0434\u0435\u043b\u044e", - "monthly_budgets": "\u0411\u044e\u0434\u0436\u0435\u0442\u044b \u043d\u0430 \u043c\u0435\u0441\u044f\u0446", - "journals_in_period_for_account_js": "All transactions for account {title} between {start} and {end}", - "quarterly_budgets": "\u0411\u044e\u0434\u0436\u0435\u0442\u044b \u043d\u0430 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", - "create_new_expense": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0441\u0447\u0451\u0442 \u0440\u0430\u0441\u0445\u043e\u0434\u0430", - "create_new_revenue": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0441\u0447\u0451\u0442 \u0434\u043e\u0445\u043e\u0434\u0430", - "create_new_liabilities": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0434\u043e\u043b\u0433\u043e\u0432\u043e\u0439 \u0441\u0447\u0451\u0442", - "half_year_budgets": "\u0411\u044e\u0434\u0436\u0435\u0442\u044b \u043d\u0430 \u043f\u043e\u043b\u0433\u043e\u0434\u0430", - "yearly_budgets": "\u0413\u043e\u0434\u043e\u0432\u044b\u0435 \u0431\u044e\u0434\u0436\u0435\u0442\u044b", - "split_transaction_title": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0440\u0430\u0437\u0434\u0435\u043b\u0451\u043d\u043d\u043e\u0439 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438", - "errors_submission": "\u041f\u0440\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0435 \u0447\u0442\u043e-\u0442\u043e \u043f\u043e\u0448\u043b\u043e \u043d\u0435 \u0442\u0430\u043a. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u043e\u0448\u0438\u0431\u043a\u0438 \u043d\u0438\u0436\u0435.", - "flash_error": "\u041e\u0448\u0438\u0431\u043a\u0430!", - "store_transaction": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044e", - "flash_success": "\u0423\u0441\u043f\u0435\u0448\u043d\u043e!", - "create_another": "\u041f\u043e\u0441\u043b\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0432\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u0441\u044e\u0434\u0430 \u0438 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0435\u0449\u0451 \u043e\u0434\u043d\u0443 \u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c.", - "update_transaction": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044e", - "after_update_create_another": "\u041f\u043e\u0441\u043b\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u0441\u044e\u0434\u0430, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435.", - "transaction_updated_no_changes": "Transaction #{ID}<\/a> (\"{title}\") did not receive any changes.", - "transaction_updated_link": "Transaction #{ID}<\/a> (\"{title}\") has been updated.", - "spent_x_of_y": "Spent {amount} of {total}", - "search": "\u041f\u043e\u0438\u0441\u043a", - "create_new_asset": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0441\u0447\u0451\u0442", - "asset_accounts": "\u041e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u0441\u0447\u0435\u0442\u0430", - "reset_after": "\u0421\u0431\u0440\u043e\u0441\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0443 \u043f\u043e\u0441\u043b\u0435 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438", - "bill_paid_on": "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043e {date}", - "first_split_decides": "\u0412 \u0434\u0430\u043d\u043d\u043e\u043c \u043f\u043e\u043b\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0438\u0437 \u043f\u0435\u0440\u0432\u043e\u0439 \u0447\u0430\u0441\u0442\u0438 \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0439 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438", - "first_split_overrules_source": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0438\u0437 \u043f\u0435\u0440\u0432\u043e\u0439 \u0447\u0430\u0441\u0442\u0438 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 \u043c\u043e\u0436\u0435\u0442 \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0447\u0435\u0442 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430", - "first_split_overrules_destination": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0438\u0437 \u043f\u0435\u0440\u0432\u043e\u0439 \u0447\u0430\u0441\u0442\u0438 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 \u043c\u043e\u0436\u0435\u0442 \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0447\u0435\u0442 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f", - "transaction_stored_link": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f #{ID} (\"{title}\")<\/a> \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430.", - "custom_period": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u043f\u0435\u0440\u0438\u043e\u0434", - "reset_to_current": "\u0421\u0431\u0440\u043e\u0441 \u043a \u0442\u0435\u043a\u0443\u0449\u0435\u043c\u0443 \u043f\u0435\u0440\u0438\u043e\u0434\u0443", - "select_period": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043f\u0435\u0440\u0438\u043e\u0434", - "location": "\u0420\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u0435", - "other_budgets": "\u0411\u044e\u0434\u0436\u0435\u0442\u044b \u043d\u0430 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0439 \u043e\u0442\u0440\u0435\u0437\u043e\u043a \u0432\u0440\u0435\u043c\u0435\u043d\u0438", - "journal_links": "\u0421\u0432\u044f\u0437\u0438 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438", - "go_to_withdrawals": "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u0432\u0430\u0448\u0438\u043c \u0440\u0430\u0441\u0445\u043e\u0434\u0430\u043c", - "revenue_accounts": "\u0421\u0447\u0435\u0442\u0430 \u0434\u043e\u0445\u043e\u0434\u043e\u0432", - "add_another_split": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0435\u0449\u0435 \u043e\u0434\u043d\u0443 \u0447\u0430\u0441\u0442\u044c", - "actions": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f", - "earned": "\u0417\u0430\u0440\u0430\u0431\u043e\u0442\u0430\u043d\u043e", - "empty": "(\u043f\u0443\u0441\u0442\u043e)", - "edit": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c", - "never": "\u041d\u0438\u043a\u043e\u0433\u0434\u0430", - "account_type_Loan": "\u0417\u0430\u0451\u043c", - "account_type_Mortgage": "\u0418\u043f\u043e\u0442\u0435\u043a\u0430", - "stored_new_account_js": "New account \"{name}<\/a>\" stored!", - "account_type_Debt": "\u0414\u0435\u0431\u0438\u0442", - "liability_direction_null_short": "Unknown", - "delete": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c", - "store_new_asset_account": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0441\u0447\u0451\u0442", - "store_new_expense_account": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0441\u0447\u0451\u0442 \u0440\u0430\u0441\u0445\u043e\u0434\u0430", - "store_new_liabilities_account": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043d\u043e\u0432\u043e\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e", - "store_new_revenue_account": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0441\u0447\u0451\u0442 \u0434\u043e\u0445\u043e\u0434\u0430", - "mandatoryFields": "\u041e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043f\u043e\u043b\u044f", - "optionalFields": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043f\u043e\u043b\u044f", - "reconcile_this_account": "\u041f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u0441\u0432\u0435\u0440\u043a\u0443 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430", - "interest_calc_weekly": "Per week", - "interest_calc_monthly": "\u0412 \u043c\u0435\u0441\u044f\u0446", - "interest_calc_quarterly": "Per quarter", - "interest_calc_half-year": "Per half year", - "interest_calc_yearly": "\u0412 \u0433\u043e\u0434", - "liability_direction_credit": "I am owed this debt", - "liability_direction_debit": "I owe this debt to somebody else", - "liability_direction_credit_short": "Owed this debt", - "liability_direction_debit_short": "Owe this debt", - "account_type_debt": "Debt", - "account_type_loan": "Loan", - "left_in_debt": "Amount due", - "account_type_mortgage": "Mortgage", - "save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.", - "none_in_select_list": "(\u043d\u0435\u0442)", - "transaction_expand_split": "Expand split", - "transaction_collapse_split": "Collapse split", - "default_group_title_name": "(\u0431\u0435\u0437 \u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u043a\u0438)", - "bill_repeats_weekly": "Repeats weekly", - "bill_repeats_monthly": "Repeats monthly", - "bill_repeats_quarterly": "Repeats quarterly", - "bill_repeats_half-year": "Repeats every half year", - "bill_repeats_yearly": "Repeats yearly", - "bill_repeats_weekly_other": "Repeats every other week", - "bill_repeats_monthly_other": "Repeats every other month", - "bill_repeats_quarterly_other": "Repeats every other quarter", - "bill_repeats_half-year_other": "\u041f\u043e\u0432\u0442\u043e\u0440\u044f\u0435\u0442\u0441\u044f \u0435\u0436\u0435\u0433\u043e\u0434\u043d\u043e", - "bill_repeats_yearly_other": "Repeats every other year", - "bill_repeats_weekly_skip": "Repeats every {skip} weeks", - "bill_repeats_monthly_skip": "Repeats every {skip} months", - "bill_repeats_quarterly_skip": "Repeats every {skip} quarters", - "bill_repeats_half-year_skip": "Repeats every {skip} half years", - "bill_repeats_yearly_skip": "Repeats every {skip} years", - "not_expected_period": "\u041d\u0435 \u043e\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044f \u0432 \u0434\u0430\u043d\u043d\u043e\u043c \u043f\u0435\u0440\u0438\u043e\u0434\u0435", - "subscriptions": "Subscriptions", - "bill_expected_date_js": "Expected {date}", - "inactive": "\u041d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0439", - "forever": "Forever", - "extension_date_is": "Extension date is {date}", - "create_new_bill": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0441\u0447\u0451\u0442 \u043a \u043e\u043f\u043b\u0430\u0442\u0435", - "store_new_bill": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0441\u0447\u0451\u0442 \u043a \u043e\u043f\u043b\u0430\u0442\u0435", - "repeat_freq_yearly": "\u0435\u0436\u0435\u0433\u043e\u0434\u043d\u043e", - "repeat_freq_half-year": "\u0440\u0430\u0437 \u0432 \u043f\u043e\u043b\u0433\u043e\u0434\u0430", - "repeat_freq_quarterly": "\u0440\u0430\u0437 \u0432 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", - "repeat_freq_monthly": "\u0435\u0436\u0435\u043c\u0435\u0441\u044f\u0447\u043d\u043e", - "repeat_freq_weekly": "\u0435\u0436\u0435\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u043e", - "credit_card_type_monthlyFull": "Full payment every month", - "update_liabilities_account": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u043e\u043b\u0433\u043e\u0432\u043e\u0439 \u0441\u0447\u0451\u0442", - "update_expense_account": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0447\u0451\u0442 \u0440\u0430\u0441\u0445\u043e\u0434\u0430", - "update_revenue_account": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0447\u0451\u0442 \u0434\u043e\u0445\u043e\u0434\u0430", - "update_undefined_account": "Update account", - "update_asset_account": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0441\u0447\u0451\u0442", - "updated_account_js": "Updated account \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "\u041a\u043e\u043f\u0438\u043b\u043a\u0430", - "percentage": "\u043f\u0440\u043e\u0446\u0435\u043d\u0442\u043e\u0432", - "amount": "\u0421\u0443\u043c\u043c\u0430", - "lastActivity": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c", - "name": "\u0418\u043c\u044f", - "role": "\u0420\u043e\u043b\u044c", - "description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", - "date": "\u0414\u0430\u0442\u0430", - "source_account": "\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u0441\u0447\u0435\u0442", - "destination_account": "\u0421\u0447\u0435\u0442 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f", - "category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f", - "iban": "IBAN", - "interest": "\u041f\u0440\u043e\u0446\u0435\u043d\u0442\u043d\u0430\u044f \u0441\u0442\u0430\u0432\u043a\u0430", - "interest_period": "Interest period", - "liability_type": "\u0422\u0438\u043f \u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438", - "liability_direction": "Liability in\/out", - "currentBalance": "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u0431\u0430\u043b\u0430\u043d\u0441", - "next_expected_match": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u043e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", - "expected_info": "Next expected transaction", - "start_date": "Start date", - "end_date": "End date", - "payment_info": "Payment information" - }, - "config": { - "html_language": "ru", - "week_in_year_fns": "'Week' w, yyyy", - "month_and_day_fns": "MMMM d, y", - "quarter_fns": "'Q'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "\u0421\u0443\u043c\u043c\u0430 \u0432 \u0438\u043d\u043e\u0441\u0442\u0440\u0430\u043d\u043d\u043e\u0439 \u0432\u0430\u043b\u044e\u0442\u0435", - "interest_date": "\u0414\u0430\u0442\u0430 \u043d\u0430\u0447\u0438\u0441\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u043e\u0432", - "name": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435", - "amount": "\u0421\u0443\u043c\u043c\u0430", - "iban": "IBAN", - "BIC": "BIC", - "notes": "\u0417\u0430\u043c\u0435\u0442\u043a\u0438", - "location": "\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435", - "repeat_freq": "\u041f\u043e\u0432\u0442\u043e\u0440\u044b", - "skip": "\u041f\u0440\u043e\u043f\u0443\u0441\u0442\u0438\u0442\u044c", - "startdate": "\u0414\u0430\u0442\u0430 \u043d\u0430\u0447\u0430\u043b\u0430", - "enddate": "End date", - "object_group": "\u0413\u0440\u0443\u043f\u043f\u0430", - "attachments": "\u0412\u043b\u043e\u0436\u0435\u043d\u0438\u044f", - "deletePermanently": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043d\u0430\u0432\u0441\u0435\u0433\u0434\u0430", - "active": "\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439", - "include_net_worth": "\u0412\u043a\u043b\u044e\u0447\u0430\u0442\u044c \u0432 \"\u041c\u043e\u0438 \u0441\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0438\u044f\"", - "cc_type": "\u041f\u043b\u0430\u043d \u043e\u043f\u043b\u0430\u0442\u044b \u043f\u043e \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u043e\u0439 \u043a\u0430\u0440\u0442\u0435", - "account_number": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430", - "cc_monthly_payment_date": "\u0414\u0430\u0442\u0430 \u0435\u0436\u0435\u043c\u0435\u0441\u044f\u0447\u043d\u043e\u0433\u043e \u043f\u043b\u0430\u0442\u0435\u0436\u0430 \u043f\u043e \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u043e\u0439 \u043a\u0430\u0440\u0442\u0435", - "virtual_balance": "\u0412\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u0439 \u0431\u0430\u043b\u0430\u043d\u0441", - "opening_balance": "\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u044b\u0439 \u0431\u0430\u043b\u0430\u043d\u0441", - "opening_balance_date": "\u0414\u0430\u0442\u0430 \u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0431\u0430\u043b\u0430\u043d\u0441\u0430", - "date": "\u0414\u0430\u0442\u0430", - "interest": "\u041f\u0440\u043e\u0446\u0435\u043d\u0442\u043d\u0430\u044f \u0441\u0442\u0430\u0432\u043a\u0430", - "interest_period": "\u041f\u0435\u0440\u0438\u043e\u0434 \u043d\u0430\u0447\u0438\u0441\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u043e\u0432", - "currency_id": "\u0412\u0430\u043b\u044e\u0442\u0430", - "liability_type": "Liability type", - "account_role": "\u0422\u0438\u043f \u0441\u0447\u0435\u0442\u0430", - "liability_direction": "Liability in\/out", - "book_date": "\u0414\u0430\u0442\u0430 \u0431\u0440\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", - "permDeleteWarning": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0438\u0437 Firefly III \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u044b\u043c \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u043e.", - "account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?", - "also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.", - "also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.", - "process_date": "\u0414\u0430\u0442\u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438", - "due_date": "\u0421\u0440\u043e\u043a \u043e\u043f\u043b\u0430\u0442\u044b", - "payment_date": "\u0414\u0430\u0442\u0430 \u043f\u043b\u0430\u0442\u0435\u0436\u0430", - "invoice_date": "\u0414\u0430\u0442\u0430 \u0432\u044b\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u0447\u0451\u0442\u0430", - "amount_min": "\u041c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0443\u043c\u043c\u0430", - "amount_max": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0443\u043c\u043c\u0430", - "start_date": "\u041d\u0430\u0447\u0430\u043b\u043e \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0430", - "end_date": "\u041a\u043e\u043d\u0435\u0446 \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0430", - "extension_date": "Extension date" - } -} \ No newline at end of file diff --git a/frontend/src/locales/sk.json b/frontend/src/locales/sk.json deleted file mode 100644 index 460d6294d1..0000000000 --- a/frontend/src/locales/sk.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "Prevod", - "Withdrawal": "V\u00fdber", - "Deposit": "Vklad", - "date_and_time": "D\u00e1tum a \u010das", - "no_currency": "(\u017eiadna mena)", - "date": "D\u00e1tum", - "time": "\u010cas", - "no_budget": "(\u017eiadny rozpo\u010det)", - "destination_account": "Cie\u013eov\u00fd \u00fa\u010det", - "source_account": "Zdrojov\u00fd \u00fa\u010det", - "single_split": "Roz\u00fa\u010dtova\u0165", - "create_new_transaction": "Vytvori\u0165 nov\u00fa transakciu", - "balance": "Zostatok", - "transaction_journal_extra": "\u010eal\u0161ie inform\u00e1cie", - "transaction_journal_meta": "Meta inform\u00e1cie", - "basic_journal_information": "Z\u00e1kladn\u00e9 Inform\u00e1cie o transakcii", - "bills_to_pay": "\u00da\u010dty na \u00fahradu", - "left_to_spend": "Zost\u00e1va k \u00fatrate", - "attachments": "Pr\u00edlohy", - "net_worth": "\u010cist\u00e9 imanie", - "bill": "\u00da\u010det", - "no_bill": "(\u017eiadny \u00fa\u010det)", - "tags": "\u0160t\u00edtky", - "internal_reference": "Intern\u00e1 referencia", - "external_url": "Extern\u00e1 URL", - "no_piggy_bank": "(\u017eiadna pokladni\u010dka)", - "paid": "Uhraden\u00e9", - "notes": "Pozn\u00e1mky", - "yourAccounts": "Va\u0161e \u00fa\u010dty", - "go_to_asset_accounts": "Zobrazi\u0165 \u00fa\u010dty akt\u00edv", - "delete_account": "Odstr\u00e1ni\u0165 \u00fa\u010det", - "transaction_table_description": "Tabu\u013eka obsahuj\u00faca va\u0161e transakcie", - "account": "\u00da\u010det", - "description": "Popis", - "amount": "Suma", - "budget": "Rozpo\u010det", - "category": "Kateg\u00f3ria", - "opposing_account": "Cie\u013eov\u00fd \u00fa\u010det", - "budgets": "Rozpo\u010dty", - "categories": "Kateg\u00f3rie", - "go_to_budgets": "Zobrazi\u0165 rozpo\u010dty", - "income": "Zisky \/ pr\u00edjmy", - "go_to_deposits": "Zobrazi\u0165 vklady", - "go_to_categories": "Zobrazi\u0165 kateg\u00f3rie", - "expense_accounts": "V\u00fddavkov\u00e9 \u00fa\u010dty", - "go_to_expenses": "Zobrazi\u0165 v\u00fddavky", - "go_to_bills": "Zobrazi\u0165 \u00fa\u010dty", - "bills": "\u00da\u010dty", - "last_thirty_days": "Uplynul\u00fdch 30 dn\u00ed", - "last_seven_days": "Uplynul\u00fdch 7 dn\u00ed", - "go_to_piggies": "Zobrazi\u0165 pokladni\u010dky", - "saved": "Ulo\u017een\u00e9", - "piggy_banks": "Pokladni\u010dky", - "piggy_bank": "Pokladni\u010dka", - "amounts": "Suma", - "left": "Zost\u00e1va", - "spent": "Utraten\u00e9", - "Default asset account": "Prednastaven\u00fd \u00fa\u010det akt\u00edv", - "search_results": "V\u00fdsledky vyh\u013ead\u00e1vania", - "include": "Zahrn\u00fa\u0165?", - "transaction": "Transakcia", - "account_role_defaultAsset": "Predvolen\u00fd \u00fa\u010det akt\u00edv", - "account_role_savingAsset": "\u0160etriaci \u00fa\u010det", - "account_role_sharedAsset": "Zdie\u013ean\u00fd \u00fa\u010det akt\u00edv", - "clear_location": "Odstr\u00e1ni\u0165 poz\u00edciu", - "account_role_ccAsset": "Kreditn\u00e1 karta", - "account_role_cashWalletAsset": "Pe\u0148a\u017eenka", - "daily_budgets": "Denn\u00e9 rozpo\u010dty", - "weekly_budgets": "T\u00fd\u017edenn\u00e9 rozpo\u010dty", - "monthly_budgets": "Mesa\u010dn\u00e9 rozpo\u010dty", - "journals_in_period_for_account_js": "All transactions for account {title} between {start} and {end}", - "quarterly_budgets": "\u0160tvr\u0165ro\u010dn\u00e9 rozpo\u010dty", - "create_new_expense": "Vytvori\u0165 v\u00fddavko\u00fd \u00fa\u010det", - "create_new_revenue": "Vytvori\u0165 nov\u00fd pr\u00edjmov\u00fd \u00fa\u010det", - "create_new_liabilities": "Vytvori\u0165 nov\u00fd z\u00e1v\u00e4zok", - "half_year_budgets": "Polro\u010dn\u00e9 rozpo\u010dty", - "yearly_budgets": "Ro\u010dn\u00e9 rozpo\u010dty", - "split_transaction_title": "Popis roz\u00fa\u010dtovania", - "errors_submission": "Pri odosielan\u00ed sa nie\u010do nepodarilo. Skontrolujte pros\u00edm chyby.", - "flash_error": "Chyba!", - "store_transaction": "Ulo\u017ei\u0165 transakciu", - "flash_success": "Hotovo!", - "create_another": "Po ulo\u017een\u00ed sa vr\u00e1ti\u0165 sp\u00e4\u0165 sem a vytvori\u0165 \u010fal\u0161\u00ed.", - "update_transaction": "Upravi\u0165 transakciu", - "after_update_create_another": "Po aktualiz\u00e1cii sa vr\u00e1ti\u0165 sp\u00e4\u0165 a pokra\u010dova\u0165 v \u00faprav\u00e1ch.", - "transaction_updated_no_changes": "Transakcia #{ID}<\/a> (\"{title}\") sa nezmenila.", - "transaction_updated_link": "Transakcia #{ID}<\/a> (\"{title}\") bola upraven\u00e1.", - "spent_x_of_y": "Utraten\u00e9 {amount} z {total}", - "search": "H\u013eada\u0165", - "create_new_asset": "Vytvori\u0165 nov\u00fd \u00fa\u010det akt\u00edv", - "asset_accounts": "\u00da\u010dty akt\u00edv", - "reset_after": "Po odoslan\u00ed vynulova\u0165 formul\u00e1r", - "bill_paid_on": "Uhraden\u00e9 {date}", - "first_split_decides": "Hodnotu tohto atrib\u00fatu ur\u010duje prv\u00e9 rozdelenie", - "first_split_overrules_source": "Prv\u00e9 rozdelenie m\u00f4\u017ee pozmeni\u0165 zdrojov\u00fd \u00fa\u010det", - "first_split_overrules_destination": "Prv\u00e9 rozdelenie m\u00f4\u017ee pozmeni\u0165 cie\u013eov\u00fd \u00fa\u010det", - "transaction_stored_link": "Transakcia #{ID} (\"{title}\")<\/a> bola ulo\u017een\u00e1.", - "custom_period": "Vlastn\u00e9 obdobie", - "reset_to_current": "Obnovi\u0165 na aktu\u00e1lne obdobie", - "select_period": "Vyberte obdobie", - "location": "Poloha", - "other_budgets": "\u0160pecifick\u00e9 \u010dasovan\u00e9 rozpo\u010dty", - "journal_links": "Prepojenia transakcie", - "go_to_withdrawals": "Zobrazi\u0165 v\u00fdbery", - "revenue_accounts": "V\u00fdnosov\u00e9 \u00fa\u010dty", - "add_another_split": "Prida\u0165 \u010fal\u0161ie roz\u00fa\u010dtovanie", - "actions": "Akcie", - "earned": "Zaroben\u00e9", - "empty": "(pr\u00e1zdne)", - "edit": "Upravi\u0165", - "never": "Nikdy", - "account_type_Loan": "P\u00f4\u017ei\u010dka", - "account_type_Mortgage": "Hypot\u00e9ka", - "stored_new_account_js": "Nov\u00fd \u00fa\u010det \"{name}<\/a>\" vytvoren\u00fd!", - "account_type_Debt": "Dlh", - "liability_direction_null_short": "Unknown", - "delete": "Odstr\u00e1ni\u0165", - "store_new_asset_account": "Ulo\u017ei\u0165 nov\u00fd \u00fa\u010det akt\u00edv", - "store_new_expense_account": "Ulo\u017ei\u0165 nov\u00fd v\u00fddavkov\u00fd \u00fa\u010det", - "store_new_liabilities_account": "Ulo\u017ei\u0165 nov\u00fd z\u00e1v\u00e4zok", - "store_new_revenue_account": "Ulo\u017ei\u0165 nov\u00fd pr\u00edjmov\u00fd \u00fa\u010det", - "mandatoryFields": "Povinn\u00e9 \u00fadaje", - "optionalFields": "Volite\u013en\u00e9 \u00fadaje", - "reconcile_this_account": "Vy\u00fa\u010dtovat tento \u00fa\u010det", - "interest_calc_weekly": "Za t\u00fd\u017ede\u0148", - "interest_calc_monthly": "Za mesiac", - "interest_calc_quarterly": "Za \u0161tvr\u0165rok", - "interest_calc_half-year": "Za polrok", - "interest_calc_yearly": "Za rok", - "liability_direction_credit": "T\u00fato sumu mi dl\u017eia", - "liability_direction_debit": "Tento dlh m\u00e1m vo\u010di niekomu in\u00e9mu", - "liability_direction_credit_short": "Owed this debt", - "liability_direction_debit_short": "Owe this debt", - "account_type_debt": "Debt", - "account_type_loan": "Loan", - "left_in_debt": "Amount due", - "account_type_mortgage": "Mortgage", - "save_transactions_by_moving_js": "\u017diadne transakcie|Zachova\u0165 t\u00fato transakciu presunom pod in\u00fd \u00fa\u010det.|Zachova\u0165 tieto transakcie presunom pod in\u00fd \u00fa\u010det.", - "none_in_select_list": "(\u017eiadne)", - "transaction_expand_split": "Expand split", - "transaction_collapse_split": "Collapse split", - "default_group_title_name": "(nezoskupen\u00e9)", - "bill_repeats_weekly": "Repeats weekly", - "bill_repeats_monthly": "Repeats monthly", - "bill_repeats_quarterly": "Repeats quarterly", - "bill_repeats_half-year": "Repeats every half year", - "bill_repeats_yearly": "Repeats yearly", - "bill_repeats_weekly_other": "Repeats every other week", - "bill_repeats_monthly_other": "Repeats every other month", - "bill_repeats_quarterly_other": "Repeats every other quarter", - "bill_repeats_half-year_other": "Repeats yearly", - "bill_repeats_yearly_other": "Repeats every other year", - "bill_repeats_weekly_skip": "Repeats every {skip} weeks", - "bill_repeats_monthly_skip": "Repeats every {skip} months", - "bill_repeats_quarterly_skip": "Repeats every {skip} quarters", - "bill_repeats_half-year_skip": "Repeats every {skip} half years", - "bill_repeats_yearly_skip": "Repeats every {skip} years", - "not_expected_period": "Neo\u010dak\u00e1van\u00e9 v tomto obdob\u00ed", - "subscriptions": "Subscriptions", - "bill_expected_date_js": "Expected {date}", - "inactive": "Neakt\u00edvne", - "forever": "Forever", - "extension_date_is": "Extension date is {date}", - "create_new_bill": "Vytvori\u0165 nov\u00fd \u00fa\u010det", - "store_new_bill": "Ulo\u017ei\u0165 nov\u00fd \u00fa\u010det", - "repeat_freq_yearly": "ro\u010dne", - "repeat_freq_half-year": "polro\u010dne", - "repeat_freq_quarterly": "\u0161tvr\u0165ro\u010dne", - "repeat_freq_monthly": "mesa\u010dne", - "repeat_freq_weekly": "t\u00fd\u017edenne", - "credit_card_type_monthlyFull": "Full payment every month", - "update_liabilities_account": "Upravi\u0165 z\u00e1v\u00e4zok", - "update_expense_account": "Upravi\u0165 v\u00fddavkov\u00fd \u00fa\u010det", - "update_revenue_account": "Upravi\u0165 pr\u00edjmov\u00fd \u00fa\u010det", - "update_undefined_account": "Update account", - "update_asset_account": "Upravi\u0165 v\u00fddajov\u00fd \u00fa\u010det", - "updated_account_js": "Updated account \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "Pokladni\u010dka", - "percentage": "perc.", - "amount": "Suma", - "lastActivity": "Posledn\u00e1 aktivita", - "name": "Meno\/N\u00e1zov", - "role": "Rola", - "description": "Popis", - "date": "D\u00e1tum", - "source_account": "Zdrojov\u00fd \u00fa\u010det", - "destination_account": "Cie\u013eov\u00fd \u00fa\u010det", - "category": "Kateg\u00f3ria", - "iban": "IBAN", - "interest": "\u00darok", - "interest_period": "Interest period", - "liability_type": "Typ z\u00e1v\u00e4zku", - "liability_direction": "Liability in\/out", - "currentBalance": "Aktu\u00e1lny zostatok", - "next_expected_match": "\u010eal\u0161ia o\u010dak\u00e1van\u00e1 zhoda", - "expected_info": "Next expected transaction", - "start_date": "Start date", - "end_date": "End date", - "payment_info": "Payment information" - }, - "config": { - "html_language": "sk", - "week_in_year_fns": "'T\u00fd\u017ede\u0148' w, yyyy", - "month_and_day_fns": "MMMM d, y", - "quarter_fns": "'Q'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "Suma v cudzej mene", - "interest_date": "\u00darokov\u00fd d\u00e1tum", - "name": "N\u00e1zov", - "amount": "Suma", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Pozn\u00e1mky", - "location": "\u00dadaje o polohe", - "repeat_freq": "Opakuje sa", - "skip": "Presko\u010di\u0165", - "startdate": "D\u00e1tum zah\u00e1jenia", - "enddate": "End date", - "object_group": "Skupina", - "attachments": "Pr\u00edlohy", - "deletePermanently": "Permanentne odstr\u00e1ni\u0165", - "active": "Akt\u00edvne", - "include_net_worth": "Zahrn\u00fa\u0165 do \u010dist\u00e9ho majetku", - "cc_type": "Z\u00fa\u010dtovacie obdobie kreditnej karty", - "account_number": "\u010c\u00edslo \u00fa\u010dtu", - "cc_monthly_payment_date": "D\u00e1tum mesa\u010dnej \u00fahrady kreditnej karty", - "virtual_balance": "Virtu\u00e1lnu zostatok", - "opening_balance": "Po\u010diato\u010dn\u00fd zostatok", - "opening_balance_date": "D\u00e1tum po\u010diato\u010dn\u00e9ho zostatku", - "date": "D\u00e1tum", - "interest": "\u00darok", - "interest_period": "\u00darokov\u00e9 obdobie", - "currency_id": "Mena", - "liability_type": "Typ z\u00e1v\u00e4zku", - "account_role": "Rola \u00fa\u010dtu", - "liability_direction": "Z\u00e1v\u00e4zky pr\u00edjem\/v\u00fddaj", - "book_date": "D\u00e1tum rezerv\u00e1cie", - "permDeleteWarning": "Odstr\u00e1nenie \u00fadajov z Firefly III je trval\u00e9 a nie je mo\u017en\u00e9 ich vr\u00e1ti\u0165 sp\u00e4\u0165.", - "account_areYouSure_js": "Skuto\u010dne chcete odstr\u00e1ni\u0165 \u00fa\u010det s n\u00e1zvom \"{name}\"?", - "also_delete_piggyBanks_js": "\u017diadne prasiatko|Odstr\u00e1ni sa tie\u017e jedin\u00e9 prasiatko prepojen\u00e9 s t\u00fdmto \u00fa\u010dtom.|Odstr\u00e1ni sa tie\u017e {count} prasiatok prepojen\u00fdch s t\u00fdmto \u00fa\u010dtom.", - "also_delete_transactions_js": "\u017diadne transakcie|Odstr\u00e1ni sa aj jedin\u00e1 transakcia spojen\u00e1 s t\u00fdmto \u00fa\u010dtom.|Odstr\u00e1ni sa tie\u017e {count} transakci\u00ed spojen\u00fdch s t\u00fdmto \u00fa\u010dtom.", - "process_date": "D\u00e1tum spracovania", - "due_date": "D\u00e1tum splatnosti", - "payment_date": "D\u00e1tum \u00fahrady", - "invoice_date": "D\u00e1tum vystavenia", - "amount_min": "Minim\u00e1lna suma", - "amount_max": "Maxim\u00e1lna suma", - "start_date": "Za\u010diatok rozsahu", - "end_date": "Koniec rozsahu", - "extension_date": "Extension date" - } -} \ No newline at end of file diff --git a/frontend/src/locales/sv.json b/frontend/src/locales/sv.json deleted file mode 100644 index 232c4db7e1..0000000000 --- a/frontend/src/locales/sv.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "\u00d6verf\u00f6ring", - "Withdrawal": "Uttag", - "Deposit": "Ins\u00e4ttning", - "date_and_time": "Datum och tid", - "no_currency": "(ingen valuta)", - "date": "Datum", - "time": "Tid", - "no_budget": "(ingen budget)", - "destination_account": "Till konto", - "source_account": "K\u00e4llkonto", - "single_split": "Dela", - "create_new_transaction": "Skapa en ny transaktion", - "balance": "Saldo", - "transaction_journal_extra": "Extra information", - "transaction_journal_meta": "Metadata", - "basic_journal_information": "Grundl\u00e4ggande transaktionsinformation", - "bills_to_pay": "Notor att betala", - "left_to_spend": "\u00c5terst\u00e5r att spendera", - "attachments": "Bilagor", - "net_worth": "Nettof\u00f6rm\u00f6genhet", - "bill": "Nota", - "no_bill": "(ingen r\u00e4kning)", - "tags": "Etiketter", - "internal_reference": "Intern referens", - "external_url": "Extern URL", - "no_piggy_bank": "(ingen spargris)", - "paid": "Betald", - "notes": "Noteringar", - "yourAccounts": "Dina konton", - "go_to_asset_accounts": "Visa dina tillg\u00e5ngskonton", - "delete_account": "Ta bort konto", - "transaction_table_description": "En tabell som inneh\u00e5ller dina transaktioner", - "account": "Konto", - "description": "Beskrivning", - "amount": "Belopp", - "budget": "Budget", - "category": "Kategori", - "opposing_account": "Motsatt konto", - "budgets": "Budgetar", - "categories": "Kategorier", - "go_to_budgets": "G\u00e5 till dina budgetar", - "income": "Int\u00e4kter \/ inkomster", - "go_to_deposits": "G\u00e5 till ins\u00e4ttningar", - "go_to_categories": "G\u00e5 till dina kategorier", - "expense_accounts": "Kostnadskonto", - "go_to_expenses": "G\u00e5 till utgifter", - "go_to_bills": "G\u00e5 till dina notor", - "bills": "Notor", - "last_thirty_days": "Senaste 30 dagarna", - "last_seven_days": "Senaste 7 dagarna", - "go_to_piggies": "G\u00e5 till dina sparb\u00f6ssor", - "saved": "Sparad", - "piggy_banks": "Spargrisar", - "piggy_bank": "Spargris", - "amounts": "Belopp", - "left": "\u00c5terst\u00e5r", - "spent": "Spenderat", - "Default asset account": "F\u00f6rvalt tillg\u00e5ngskonto", - "search_results": "S\u00f6kresultat", - "include": "Inkludera?", - "transaction": "Transaktion", - "account_role_defaultAsset": "F\u00f6rvalt tillg\u00e5ngskonto", - "account_role_savingAsset": "Sparkonto", - "account_role_sharedAsset": "Delat tillg\u00e5ngskonto", - "clear_location": "Rena plats", - "account_role_ccAsset": "Kreditkort", - "account_role_cashWalletAsset": "Pl\u00e5nbok", - "daily_budgets": "Dagliga budgetar", - "weekly_budgets": "Veckovis budgetar", - "monthly_budgets": "M\u00e5natliga budgetar", - "journals_in_period_for_account_js": "Alla transaktioner f\u00f6r konto {title} mellan {start} och {end}", - "quarterly_budgets": "Kvartalsbudgetar", - "create_new_expense": "Skapa ett nytt utgiftskonto", - "create_new_revenue": "Skapa ett nytt int\u00e4ktskonto", - "create_new_liabilities": "Skapa ny skuld", - "half_year_budgets": "Halv\u00e5rsbudgetar", - "yearly_budgets": "\u00c5rliga budgetar", - "split_transaction_title": "Beskrivning av delad transaktion", - "errors_submission": "N\u00e5got fel uppstod med inskickningen. V\u00e4nligen kontrollera felen nedan.", - "flash_error": "Fel!", - "store_transaction": "Lagra transaktion", - "flash_success": "Slutf\u00f6rd!", - "create_another": "Efter sparat, \u00e5terkom hit f\u00f6r att skapa ytterligare en.", - "update_transaction": "Uppdatera transaktion", - "after_update_create_another": "Efter uppdaterat, \u00e5terkom hit f\u00f6r att forts\u00e4tta redigera.", - "transaction_updated_no_changes": "Transaktion #{ID}<\/a> (\"{title}\") fick inga \u00e4ndringar.", - "transaction_updated_link": "Transaktion #{ID}<\/a> (\"{title}\") uppdaterades.", - "spent_x_of_y": "Spenderade {amount} av {total}", - "search": "S\u00f6k", - "create_new_asset": "Skapa ett nytt tillg\u00e5ngskonto", - "asset_accounts": "Tillg\u00e5ngskonton", - "reset_after": "\u00c5terst\u00e4ll formul\u00e4r efter inskickat", - "bill_paid_on": "Betalad den {date}", - "first_split_decides": "F\u00f6rsta delningen best\u00e4mmer v\u00e4rdet p\u00e5 detta f\u00e4lt", - "first_split_overrules_source": "Den f\u00f6rsta delningen kan \u00e5sidos\u00e4tta k\u00e4llkontot", - "first_split_overrules_destination": "Den f\u00f6rsta delningen kan \u00e5sidos\u00e4tta m\u00e5lkontot", - "transaction_stored_link": "Transaktion #{ID} (\"{title}\")<\/a> sparades.", - "custom_period": "Anpassad period", - "reset_to_current": "\u00c5terst\u00e4ll till nuvarande period", - "select_period": "V\u00e4lj en period", - "location": "Plats", - "other_budgets": "Anpassade tidsinst\u00e4llda budgetar", - "journal_links": "Transaktionsl\u00e4nkar", - "go_to_withdrawals": "G\u00e5 till dina uttag", - "revenue_accounts": "Int\u00e4ktskonton", - "add_another_split": "L\u00e4gga till en annan delning", - "actions": "\u00c5tg\u00e4rder", - "earned": "Tj\u00e4nat", - "empty": "(tom)", - "edit": "Redigera", - "never": "Aldrig", - "account_type_Loan": "L\u00e5n", - "account_type_Mortgage": "Bol\u00e5n", - "stored_new_account_js": "Nytt konto \"{name}<\/a>\" lagrat!", - "account_type_Debt": "Skuld", - "liability_direction_null_short": "Ok\u00e4nd", - "delete": "Ta bort", - "store_new_asset_account": "Lagra nytt tillg\u00e5ngskonto", - "store_new_expense_account": "Spara nytt utgiftskonto", - "store_new_liabilities_account": "Spara en ny skuld", - "store_new_revenue_account": "Spara nytt int\u00e4ktskonto", - "mandatoryFields": "Obligatoriska f\u00e4lt", - "optionalFields": "Valfria f\u00e4lt", - "reconcile_this_account": "St\u00e4m av detta konto", - "interest_calc_weekly": "Per vecka", - "interest_calc_monthly": "Per m\u00e5nad", - "interest_calc_quarterly": "Per kvartal", - "interest_calc_half-year": "Per halv\u00e5r", - "interest_calc_yearly": "Per \u00e5r", - "liability_direction_credit": "Jag \u00e4r skyldig denna skuld", - "liability_direction_debit": "Jag \u00e4r skyldig n\u00e5gon annan denna skuld", - "liability_direction_credit_short": "\u00c4gde denna skuld", - "liability_direction_debit_short": "\u00c4ger denna skuld", - "account_type_debt": "Skuld", - "account_type_loan": "L\u00e5n", - "left_in_debt": "Att betala", - "account_type_mortgage": "Bol\u00e5n", - "save_transactions_by_moving_js": "Inga transaktioner|Spara denna transaktion genom att flytta den till ett annat konto.|Spara dessa transaktioner genom att flytta dem till ett annat konto.", - "none_in_select_list": "(Ingen)", - "transaction_expand_split": "Expandera delningen", - "transaction_collapse_split": "Minimera delning", - "default_group_title_name": "(ogrupperad)", - "bill_repeats_weekly": "Upprepas veckovis", - "bill_repeats_monthly": "Upprepas m\u00e5nadsvis", - "bill_repeats_quarterly": "Upprepas kvartalsvis", - "bill_repeats_half-year": "Uprepas varje halv\u00e5r", - "bill_repeats_yearly": "Upprepas \u00e5rsvis", - "bill_repeats_weekly_other": "Upprepas varannan vecka", - "bill_repeats_monthly_other": "Upprepas varannan m\u00e5nad", - "bill_repeats_quarterly_other": "Upprepas varannat kvartal", - "bill_repeats_half-year_other": "Upprepas \u00e5rsvis", - "bill_repeats_yearly_other": "Upprepas varannat \u00e5r", - "bill_repeats_weekly_skip": "Upprepas varje {skip} veckor", - "bill_repeats_monthly_skip": "Upprepas varje {skip} m\u00e5nad", - "bill_repeats_quarterly_skip": "Upprepas varje {skip} kvartal", - "bill_repeats_half-year_skip": "Upprepas varje {skip} halv\u00e5r", - "bill_repeats_yearly_skip": "Upprepas varje {skip} \u00e5r", - "not_expected_period": "Inte v\u00e4ntat denna period", - "subscriptions": "Prenumerationer", - "bill_expected_date_js": "F\u00f6rv\u00e4ntat {date}", - "inactive": "Inaktiv", - "forever": "F\u00f6r alltid", - "extension_date_is": "Till\u00e4gg datum \u00e4r {date}", - "create_new_bill": "Skapa en ny nota", - "store_new_bill": "Spara ny nota", - "repeat_freq_yearly": "\u00e5rligen", - "repeat_freq_half-year": "varje halv\u00e5r", - "repeat_freq_quarterly": "kvartal", - "repeat_freq_monthly": "m\u00e5nadsvis", - "repeat_freq_weekly": "veckovis", - "credit_card_type_monthlyFull": "Full betalning varje m\u00e5nad", - "update_liabilities_account": "Uppdatera skuld", - "update_expense_account": "Uppdatera utgiftskonto", - "update_revenue_account": "Uppdatera int\u00e4ktskonto", - "update_undefined_account": "Uppdatera konto", - "update_asset_account": "Uppdatera tillg\u00e5ngskonto", - "updated_account_js": "Uppdaterade kontot \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "Spargris", - "percentage": "procent", - "amount": "Belopp", - "lastActivity": "Senaste aktivitet", - "name": "Namn", - "role": "Roll", - "description": "Beskrivning", - "date": "Datum", - "source_account": "K\u00e4llkonto", - "destination_account": "Destinationskonto", - "category": "Kategori", - "iban": "IBAN", - "interest": "R\u00e4nta", - "interest_period": "R\u00e4nteperiod", - "liability_type": "Typ av ansvar", - "liability_direction": "Ansvar in\/ut", - "currentBalance": "Nuvarande saldo", - "next_expected_match": "N\u00e4sta f\u00f6rv\u00e4ntade tr\u00e4ff", - "expected_info": "N\u00e4sta f\u00f6rv\u00e4ntade transaktion", - "start_date": "Startdatum", - "end_date": "Slutdatum", - "payment_info": "Betalinformation" - }, - "config": { - "html_language": "sv", - "week_in_year_fns": "'Vecka' w, yyyy", - "month_and_day_fns": "d MMMM y", - "quarter_fns": "'kvartal'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "Utl\u00e4ndskt belopp", - "interest_date": "R\u00e4ntedatum", - "name": "Namn", - "amount": "Belopp", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Anteckningar", - "location": "Plats", - "repeat_freq": "Upprepningar", - "skip": "Hoppa \u00f6ver", - "startdate": "Startdatum", - "enddate": "Slutdatum", - "object_group": "Grupp", - "attachments": "Bilagor", - "deletePermanently": "Ta bort permanent", - "active": "Aktiv", - "include_net_worth": "Inkludera i nettov\u00e4rde", - "cc_type": "Kreditkort betalning plan", - "account_number": "Kontonummer", - "cc_monthly_payment_date": "Kreditkort m\u00e5nadsbetalnings datum", - "virtual_balance": "Virtuell balans", - "opening_balance": "Ing\u00e5ende balans", - "opening_balance_date": "Ing\u00e5ende balans datum", - "date": "Datum", - "interest": "R\u00e4nta", - "interest_period": "R\u00e4nteperiod", - "currency_id": "Valuta", - "liability_type": "Typ av ansvar", - "account_role": "Konto roll", - "liability_direction": "Ansvar in\/ut", - "book_date": "Bokf\u00f6ringsdatum", - "permDeleteWarning": "Att ta bort saker fr\u00e5n Firefly III \u00e4r permanent och kan inte \u00e5ngras.", - "account_areYouSure_js": "\u00c4r du s\u00e4ker du vill ta bort kontot \"{name}\"?", - "also_delete_piggyBanks_js": "Inga spargrisar|Den enda spargrisen som \u00e4r ansluten till detta konto kommer ocks\u00e5 att tas bort.|Alla {count} spargrisar anslutna till detta konto kommer ocks\u00e5 att tas bort.", - "also_delete_transactions_js": "Inga transaktioner|Den enda transaktionen som \u00e4r ansluten till detta konto kommer ocks\u00e5 att tas bort.|Alla {count} transaktioner som \u00e4r kopplade till detta konto kommer ocks\u00e5 att tas bort.", - "process_date": "Behandlingsdatum", - "due_date": "F\u00f6rfallodatum", - "payment_date": "Betalningsdatum", - "invoice_date": "Fakturadatum", - "amount_min": "Minsta belopp", - "amount_max": "H\u00f6gsta belopp", - "start_date": "Start omr\u00e5de", - "end_date": "Slut omr\u00e5de", - "extension_date": "Datum f\u00f6r till\u00e4gg" - } -} \ No newline at end of file diff --git a/frontend/src/locales/vi.json b/frontend/src/locales/vi.json deleted file mode 100644 index f6ce8380b6..0000000000 --- a/frontend/src/locales/vi.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "Chuy\u1ec3n kho\u1ea3n", - "Withdrawal": "R\u00fat ti\u1ec1n", - "Deposit": "Ti\u1ec1n g\u1eedi", - "date_and_time": "Date and time", - "no_currency": "(kh\u00f4ng c\u00f3 ti\u1ec1n t\u1ec7)", - "date": "Ng\u00e0y", - "time": "Time", - "no_budget": "(kh\u00f4ng c\u00f3 ng\u00e2n s\u00e1ch)", - "destination_account": "T\u00e0i kho\u1ea3n \u0111\u00edch", - "source_account": "Ngu\u1ed3n t\u00e0i kho\u1ea3n", - "single_split": "Chia ra", - "create_new_transaction": "T\u1ea1o giao d\u1ecbch m\u1edbi", - "balance": "Ti\u1ec1n c\u00f2n l\u1ea1i", - "transaction_journal_extra": "Extra information", - "transaction_journal_meta": "Th\u00f4ng tin t\u1ed5ng h\u1ee3p", - "basic_journal_information": "Basic transaction information", - "bills_to_pay": "H\u00f3a \u0111\u01a1n ph\u1ea3i tr\u1ea3", - "left_to_spend": "C\u00f2n l\u1ea1i \u0111\u1ec3 chi ti\u00eau", - "attachments": "T\u1ec7p \u0111\u00ednh k\u00e8m", - "net_worth": "T\u00e0i s\u1ea3n th\u1ef1c", - "bill": "H\u00f3a \u0111\u01a1n", - "no_bill": "(no bill)", - "tags": "Nh\u00e3n", - "internal_reference": "T\u00e0i li\u1ec7u tham kh\u1ea3o n\u1ed9i b\u1ed9", - "external_url": "URL b\u00ean ngo\u00e0i", - "no_piggy_bank": "(ch\u01b0a c\u00f3 heo \u0111\u1ea5t)", - "paid": "\u0110\u00e3 thanh to\u00e1n", - "notes": "Ghi ch\u00fa", - "yourAccounts": "T\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n", - "go_to_asset_accounts": "Xem t\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n", - "delete_account": "X\u00f3a t\u00e0i kho\u1ea3n", - "transaction_table_description": "A table containing your transactions", - "account": "T\u00e0i kho\u1ea3n", - "description": "S\u1ef1 mi\u00eau t\u1ea3", - "amount": "S\u1ed1 ti\u1ec1n", - "budget": "Ng\u00e2n s\u00e1ch", - "category": "Danh m\u1ee5c", - "opposing_account": "Opposing account", - "budgets": "Ng\u00e2n s\u00e1ch", - "categories": "Danh m\u1ee5c", - "go_to_budgets": "Chuy\u1ec3n \u0111\u1ebfn ng\u00e2n s\u00e1ch c\u1ee7a b\u1ea1n", - "income": "Thu nh\u1eadp doanh thu", - "go_to_deposits": "Go to deposits", - "go_to_categories": "\u0110i \u0111\u1ebfn danh m\u1ee5c c\u1ee7a b\u1ea1n", - "expense_accounts": "T\u00e0i kho\u1ea3n chi ph\u00ed", - "go_to_expenses": "Go to expenses", - "go_to_bills": "\u0110i \u0111\u1ebfn h\u00f3a \u0111\u01a1n c\u1ee7a b\u1ea1n", - "bills": "H\u00f3a \u0111\u01a1n", - "last_thirty_days": "Ba m\u01b0\u01a1i ng\u00e0y g\u1ea7n \u0111\u00e2y", - "last_seven_days": "B\u1ea3y ng\u00e0y g\u1ea7n \u0111\u00e2y", - "go_to_piggies": "T\u1edbi heo \u0111\u1ea5t c\u1ee7a b\u1ea1n", - "saved": "\u0110\u00e3 l\u01b0u", - "piggy_banks": "Heo \u0111\u1ea5t", - "piggy_bank": "Heo \u0111\u1ea5t", - "amounts": "Amounts", - "left": "C\u00f2n l\u1ea1i", - "spent": "\u0110\u00e3 chi", - "Default asset account": "M\u1eb7c \u0111\u1ecbnh t\u00e0i kho\u1ea3n", - "search_results": "K\u1ebft qu\u1ea3 t\u00ecm ki\u1ebfm", - "include": "Include?", - "transaction": "Giao d\u1ecbch", - "account_role_defaultAsset": "t\u00e0i kho\u1ea3n m\u1eb7c \u0111\u1ecbnh", - "account_role_savingAsset": "T\u00e0i kho\u1ea3n ti\u1ebft ki\u1ec7m", - "account_role_sharedAsset": "t\u00e0i kho\u1ea3n d\u00f9ng chung", - "clear_location": "X\u00f3a v\u1ecb tr\u00ed", - "account_role_ccAsset": "Th\u1ebb t\u00edn d\u1ee5ng", - "account_role_cashWalletAsset": "V\u00ed ti\u1ec1n m\u1eb7t", - "daily_budgets": "Daily budgets", - "weekly_budgets": "Weekly budgets", - "monthly_budgets": "Monthly budgets", - "journals_in_period_for_account_js": "All transactions for account {title} between {start} and {end}", - "quarterly_budgets": "Quarterly budgets", - "create_new_expense": "T\u1ea1o t\u00e0i kho\u1ea3n chi ph\u00ed m\u1edbi", - "create_new_revenue": "T\u1ea1o t\u00e0i kho\u1ea3n doanh thu m\u1edbi", - "create_new_liabilities": "Create new liability", - "half_year_budgets": "Half-yearly budgets", - "yearly_budgets": "Yearly budgets", - "split_transaction_title": "M\u00f4 t\u1ea3 giao d\u1ecbch t\u00e1ch", - "errors_submission": "There was something wrong with your submission. Please check out the errors.", - "flash_error": "L\u1ed7i!", - "store_transaction": "Store transaction", - "flash_success": "Th\u00e0nh c\u00f4ng!", - "create_another": "Sau khi l\u01b0u tr\u1eef, quay tr\u1edf l\u1ea1i \u0111\u00e2y \u0111\u1ec3 t\u1ea1o m\u1ed9t c\u00e1i kh\u00e1c.", - "update_transaction": "C\u1eadp nh\u1eadt giao d\u1ecbch", - "after_update_create_another": "Sau khi c\u1eadp nh\u1eadt, quay l\u1ea1i \u0111\u00e2y \u0111\u1ec3 ti\u1ebfp t\u1ee5c ch\u1ec9nh s\u1eeda.", - "transaction_updated_no_changes": "Transaction #{ID}<\/a> (\"{title}\") did not receive any changes.", - "transaction_updated_link": "Transaction #{ID}<\/a> (\"{title}\") has been updated.", - "spent_x_of_y": "Spent {amount} of {total}", - "search": "T\u00ecm ki\u1ebfm", - "create_new_asset": "T\u1ea1o t\u00e0i kho\u1ea3n m\u1edbi", - "asset_accounts": "t\u00e0i kho\u1ea3n", - "reset_after": "\u0110\u1eb7t l\u1ea1i m\u1eabu sau khi g\u1eedi", - "bill_paid_on": "Paid on {date}", - "first_split_decides": "The first split determines the value of this field", - "first_split_overrules_source": "The first split may overrule the source account", - "first_split_overrules_destination": "The first split may overrule the destination account", - "transaction_stored_link": "Giao d\u1ecbch #{ID} (\"{title}\")<\/a> \u0111\u00e3 \u0111\u01b0\u1ee3c l\u01b0u tr\u1eef.", - "custom_period": "Custom period", - "reset_to_current": "Reset to current period", - "select_period": "Select a period", - "location": "V\u1ecb tr\u00ed", - "other_budgets": "Custom timed budgets", - "journal_links": "Li\u00ean k\u1ebft giao d\u1ecbch", - "go_to_withdrawals": "Chuy\u1ec3n \u0111\u1ebfn m\u1ee5c r\u00fat ti\u1ec1n c\u1ee7a b\u1ea1n", - "revenue_accounts": "T\u00e0i kho\u1ea3n doanh thu", - "add_another_split": "Th\u00eam m\u1ed9t ph\u00e2n chia kh\u00e1c", - "actions": "H\u00e0nh \u0111\u1ed9ng", - "earned": "Ki\u1ebfm \u0111\u01b0\u1ee3c", - "empty": "(tr\u1ed1ng)", - "edit": "S\u1eeda", - "never": "Kh\u00f4ng bao gi\u1edd", - "account_type_Loan": "Ti\u1ec1n vay", - "account_type_Mortgage": "Th\u1ebf ch\u1ea5p", - "stored_new_account_js": "New account \"{name}<\/a>\" stored!", - "account_type_Debt": "M\u00f3n n\u1ee3", - "liability_direction_null_short": "Unknown", - "delete": "X\u00f3a", - "store_new_asset_account": "L\u01b0u tr\u1eef t\u00e0i kho\u1ea3n m\u1edbi", - "store_new_expense_account": "L\u01b0u tr\u1eef t\u00e0i kho\u1ea3n chi ph\u00ed m\u1edbi", - "store_new_liabilities_account": "L\u01b0u tr\u1eef n\u1ee3 m\u1edbi", - "store_new_revenue_account": "L\u01b0u tr\u1eef t\u00e0i kho\u1ea3n doanh thu m\u1edbi", - "mandatoryFields": "C\u00e1c tr\u01b0\u1eddng b\u1eaft bu\u1ed9c", - "optionalFields": "C\u00e1c tr\u01b0\u1eddng t\u00f9y ch\u1ecdn", - "reconcile_this_account": "\u0110i\u1ec1u ch\u1ec9nh t\u00e0i kho\u1ea3n n\u00e0y", - "interest_calc_weekly": "Per week", - "interest_calc_monthly": "M\u1ed7i th\u00e1ng", - "interest_calc_quarterly": "Per quarter", - "interest_calc_half-year": "Per half year", - "interest_calc_yearly": "M\u1ed7i n\u0103m", - "liability_direction_credit": "I am owed this debt", - "liability_direction_debit": "I owe this debt to somebody else", - "liability_direction_credit_short": "Owed this debt", - "liability_direction_debit_short": "Owe this debt", - "account_type_debt": "Debt", - "account_type_loan": "Loan", - "left_in_debt": "Amount due", - "account_type_mortgage": "Mortgage", - "save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.", - "none_in_select_list": "(Tr\u1ed1ng)", - "transaction_expand_split": "Expand split", - "transaction_collapse_split": "Collapse split", - "default_group_title_name": "(ch\u01b0a nh\u00f3m)", - "bill_repeats_weekly": "Repeats weekly", - "bill_repeats_monthly": "Repeats monthly", - "bill_repeats_quarterly": "Repeats quarterly", - "bill_repeats_half-year": "Repeats every half year", - "bill_repeats_yearly": "Repeats yearly", - "bill_repeats_weekly_other": "Repeats every other week", - "bill_repeats_monthly_other": "Repeats every other month", - "bill_repeats_quarterly_other": "Repeats every other quarter", - "bill_repeats_half-year_other": "Repeats yearly", - "bill_repeats_yearly_other": "Repeats every other year", - "bill_repeats_weekly_skip": "Repeats every {skip} weeks", - "bill_repeats_monthly_skip": "Repeats every {skip} months", - "bill_repeats_quarterly_skip": "Repeats every {skip} quarters", - "bill_repeats_half-year_skip": "Repeats every {skip} half years", - "bill_repeats_yearly_skip": "Repeats every {skip} years", - "not_expected_period": "Kh\u00f4ng mong \u0111\u1ee3i \u1edf giai \u0111o\u1ea1n n\u00e0y", - "subscriptions": "Subscriptions", - "bill_expected_date_js": "Expected {date}", - "inactive": "Kh\u00f4ng ho\u1ea1t \u0111\u1ed9ng", - "forever": "Forever", - "extension_date_is": "Extension date is {date}", - "create_new_bill": "T\u1ea1o h\u00f3a \u0111\u01a1n m\u1edbi", - "store_new_bill": "L\u01b0u tr\u1eef h\u00f3a \u0111\u01a1n m\u1edbi", - "repeat_freq_yearly": "h\u00e0ng n\u0103m", - "repeat_freq_half-year": "m\u1ed7i n\u1eeda n\u0103m", - "repeat_freq_quarterly": "h\u00e0ng qu\u00fd", - "repeat_freq_monthly": "h\u00e0ng th\u00e1ng", - "repeat_freq_weekly": "h\u00e0ng tu\u1ea7n", - "credit_card_type_monthlyFull": "Full payment every month", - "update_liabilities_account": "C\u1eadp nh\u1eadt n\u1ee3", - "update_expense_account": "C\u1eadp nh\u1eadt t\u00e0i kho\u1ea3n chi ph\u00ed", - "update_revenue_account": "C\u1eadp nh\u1eadt t\u00e0i kho\u1ea3n doanh thu", - "update_undefined_account": "Update account", - "update_asset_account": "C\u1eadp nh\u1eadt t\u00e0i kho\u1ea3n", - "updated_account_js": "Updated account \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "\u1ed0ng heo con", - "percentage": "ph\u1ea7n tr\u0103m.", - "amount": "S\u1ed1 ti\u1ec1n", - "lastActivity": "Ho\u1ea1t \u0111\u1ed9ng cu\u1ed1i c\u00f9ng", - "name": "T\u00ean", - "role": "Quy t\u1eafc", - "description": "M\u00f4 t\u1ea3", - "date": "Ng\u00e0y", - "source_account": "T\u00e0i kho\u1ea3n g\u1eedi", - "destination_account": "T\u00e0i kho\u1ea3n nh\u1eadn", - "category": "Danh m\u1ee5c", - "iban": "IBAN", - "interest": "L\u00e3i", - "interest_period": "Interest period", - "liability_type": "Lo\u1ea1i tr\u00e1ch nhi\u1ec7m ph\u00e1p l\u00fd", - "liability_direction": "Liability in\/out", - "currentBalance": "S\u1ed1 d\u01b0 hi\u1ec7n t\u1ea1i", - "next_expected_match": "Tr\u1eadn \u0111\u1ea5u d\u1ef1 ki\u1ebfn ti\u1ebfp theo", - "expected_info": "Next expected transaction", - "start_date": "Start date", - "end_date": "End date", - "payment_info": "Payment information" - }, - "config": { - "html_language": "vi", - "week_in_year_fns": "'Tu\u1ea7n' w, yyyy", - "month_and_day_fns": "MMMM d, y", - "quarter_fns": "'Q'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "Ngo\u1ea1i t\u1ec7", - "interest_date": "Ng\u00e0y l\u00e3i", - "name": "T\u00ean", - "amount": "S\u1ed1 ti\u1ec1n", - "iban": "IBAN", - "BIC": "BIC", - "notes": "Ghi ch\u00fa", - "location": "V\u1ecb tr\u00ed", - "repeat_freq": "L\u1eb7p l\u1ea1i", - "skip": "B\u1ecf qua", - "startdate": "Ng\u00e0y b\u1eaft \u0111\u1ea7u", - "enddate": "End date", - "object_group": "Nh\u00f3m", - "attachments": "T\u00e0i li\u1ec7u \u0111\u00ednh k\u00e8m", - "deletePermanently": "X\u00f3a v\u0129nh vi\u1ec5n", - "active": "H\u00e0nh \u0111\u1ed9ng", - "include_net_worth": "Bao g\u1ed3m trong gi\u00e1 tr\u1ecb r\u00f2ng", - "cc_type": "G\u00f3i thanh to\u00e1n th\u1ebb t\u00edn d\u1ee5ng", - "account_number": "S\u1ed1 t\u00e0i kho\u1ea3n", - "cc_monthly_payment_date": "Ng\u00e0y thanh to\u00e1n th\u1ebb t\u00edn d\u1ee5ng h\u00e0ng th\u00e1ng", - "virtual_balance": "C\u00e2n b\u1eb1ng \u1ea3o", - "opening_balance": "S\u1ed1 d\u01b0 \u0111\u1ea7u k\u1ef3", - "opening_balance_date": "Ng\u00e0y m\u1edf s\u1ed1 d\u01b0", - "date": "Ng\u00e0y", - "interest": "L\u00e3i", - "interest_period": "Chu k\u1ef3 l\u00e3i", - "currency_id": "Ti\u1ec1n t\u1ec7", - "liability_type": "Liability type", - "account_role": "Vai tr\u00f2 t\u00e0i kho\u1ea3n", - "liability_direction": "Liability in\/out", - "book_date": "Ng\u00e0y \u0111\u1eb7t s\u00e1ch", - "permDeleteWarning": "X\u00f3a n\u1ed9i dung kh\u1ecfi Firefly III l\u00e0 v\u0129nh vi\u1ec5n v\u00e0 kh\u00f4ng th\u1ec3 ho\u00e0n t\u00e1c.", - "account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?", - "also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.", - "also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.", - "process_date": "Ng\u00e0y x\u1eed l\u00fd", - "due_date": "Ng\u00e0y \u0111\u00e1o h\u1ea1n", - "payment_date": "Ng\u00e0y thanh to\u00e1n", - "invoice_date": "Ng\u00e0y h\u00f3a \u0111\u01a1n", - "amount_min": "S\u1ed1 ti\u1ec1n t\u1ed1i thi\u1ec3u", - "amount_max": "S\u1ed1 ti\u1ec1n t\u1ed1i \u0111a", - "start_date": "B\u1eaft \u0111\u1ea7u", - "end_date": "K\u1ebft th\u00fac", - "extension_date": "Extension date" - } -} \ No newline at end of file diff --git a/frontend/src/locales/zh-cn.json b/frontend/src/locales/zh-cn.json deleted file mode 100644 index 042e2f8baa..0000000000 --- a/frontend/src/locales/zh-cn.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "\u8f6c\u8d26", - "Withdrawal": "\u63d0\u6b3e", - "Deposit": "\u6536\u5165", - "date_and_time": "\u65e5\u671f\u548c\u65f6\u95f4", - "no_currency": "(\u6ca1\u6709\u8d27\u5e01)", - "date": "\u65e5\u671f", - "time": "\u65f6\u95f4", - "no_budget": "(\u65e0\u9884\u7b97)", - "destination_account": "\u76ee\u6807\u8d26\u6237", - "source_account": "\u6765\u6e90\u8d26\u6237", - "single_split": "\u62c6\u5206", - "create_new_transaction": "\u521b\u5efa\u65b0\u4ea4\u6613", - "balance": "\u4f59\u989d", - "transaction_journal_extra": "\u989d\u5916\u4fe1\u606f", - "transaction_journal_meta": "\u5143\u4fe1\u606f", - "basic_journal_information": "\u57fa\u7840\u4ea4\u6613\u4fe1\u606f", - "bills_to_pay": "\u5f85\u4ed8\u8d26\u5355", - "left_to_spend": "\u5269\u4f59\u652f\u51fa", - "attachments": "\u9644\u4ef6", - "net_worth": "\u51c0\u8d44\u4ea7", - "bill": "\u8d26\u5355", - "no_bill": "(\u65e0\u8d26\u5355)", - "tags": "\u6807\u7b7e", - "internal_reference": "\u5185\u90e8\u5f15\u7528", - "external_url": "\u5916\u90e8\u94fe\u63a5", - "no_piggy_bank": "(\u65e0\u5b58\u94b1\u7f50)", - "paid": "\u5df2\u4ed8\u6b3e", - "notes": "\u5907\u6ce8", - "yourAccounts": "\u60a8\u7684\u8d26\u6237", - "go_to_asset_accounts": "\u67e5\u770b\u60a8\u7684\u8d44\u4ea7\u8d26\u6237", - "delete_account": "\u5220\u9664\u8d26\u6237", - "transaction_table_description": "\u5305\u542b\u60a8\u4ea4\u6613\u7684\u8868\u683c", - "account": "\u8d26\u6237", - "description": "\u63cf\u8ff0", - "amount": "\u91d1\u989d", - "budget": "\u9884\u7b97", - "category": "\u5206\u7c7b", - "opposing_account": "\u5bf9\u65b9\u8d26\u6237", - "budgets": "\u9884\u7b97", - "categories": "\u5206\u7c7b", - "go_to_budgets": "\u524d\u5f80\u60a8\u7684\u9884\u7b97", - "income": "\u6536\u5165", - "go_to_deposits": "\u524d\u5f80\u6536\u5165", - "go_to_categories": "\u524d\u5f80\u60a8\u7684\u5206\u7c7b", - "expense_accounts": "\u652f\u51fa\u8d26\u6237", - "go_to_expenses": "\u524d\u5f80\u652f\u51fa", - "go_to_bills": "\u524d\u5f80\u8d26\u5355", - "bills": "\u8d26\u5355", - "last_thirty_days": "\u6700\u8fd1 30 \u5929", - "last_seven_days": "\u6700\u8fd1 7 \u5929", - "go_to_piggies": "\u524d\u5f80\u60a8\u7684\u5b58\u94b1\u7f50", - "saved": "\u5df2\u4fdd\u5b58", - "piggy_banks": "\u5b58\u94b1\u7f50", - "piggy_bank": "\u5b58\u94b1\u7f50", - "amounts": "\u91d1\u989d", - "left": "\u5269\u4f59", - "spent": "\u652f\u51fa", - "Default asset account": "\u9ed8\u8ba4\u8d44\u4ea7\u8d26\u6237", - "search_results": "\u641c\u7d22\u7ed3\u679c", - "include": "Include?", - "transaction": "\u4ea4\u6613", - "account_role_defaultAsset": "\u9ed8\u8ba4\u8d44\u4ea7\u8d26\u6237", - "account_role_savingAsset": "\u50a8\u84c4\u8d26\u6237", - "account_role_sharedAsset": "\u5171\u7528\u8d44\u4ea7\u8d26\u6237", - "clear_location": "\u6e05\u9664\u4f4d\u7f6e", - "account_role_ccAsset": "\u4fe1\u7528\u5361", - "account_role_cashWalletAsset": "\u73b0\u91d1\u94b1\u5305", - "daily_budgets": "\u6bcf\u65e5\u9884\u7b97", - "weekly_budgets": "\u6bcf\u5468\u9884\u7b97", - "monthly_budgets": "\u6bcf\u6708\u9884\u7b97", - "journals_in_period_for_account_js": "All transactions for account {title} between {start} and {end}", - "quarterly_budgets": "\u6bcf\u5b63\u5ea6\u9884\u7b97", - "create_new_expense": "\u521b\u5efa\u65b0\u652f\u51fa\u8d26\u6237", - "create_new_revenue": "\u521b\u5efa\u65b0\u6536\u5165\u8d26\u6237", - "create_new_liabilities": "Create new liability", - "half_year_budgets": "\u6bcf\u534a\u5e74\u9884\u7b97", - "yearly_budgets": "\u6bcf\u5e74\u9884\u7b97", - "split_transaction_title": "\u62c6\u5206\u4ea4\u6613\u7684\u63cf\u8ff0", - "errors_submission": "\u60a8\u63d0\u4ea4\u7684\u5185\u5bb9\u6709\u8bef\uff0c\u8bf7\u68c0\u67e5\u9519\u8bef\u4fe1\u606f\u3002", - "flash_error": "\u9519\u8bef\uff01", - "store_transaction": "\u4fdd\u5b58\u4ea4\u6613", - "flash_success": "\u6210\u529f\uff01", - "create_another": "\u4fdd\u5b58\u540e\uff0c\u8fd4\u56de\u6b64\u9875\u9762\u4ee5\u521b\u5efa\u65b0\u8bb0\u5f55", - "update_transaction": "\u66f4\u65b0\u4ea4\u6613", - "after_update_create_another": "\u66f4\u65b0\u540e\uff0c\u8fd4\u56de\u6b64\u9875\u9762\u7ee7\u7eed\u7f16\u8f91\u3002", - "transaction_updated_no_changes": "Transaction #{ID}<\/a> (\"{title}\") did not receive any changes.", - "transaction_updated_link": "Transaction #{ID}<\/a> (\"{title}\") has been updated.", - "spent_x_of_y": "Spent {amount} of {total}", - "search": "\u641c\u7d22", - "create_new_asset": "\u521b\u5efa\u65b0\u8d44\u4ea7\u8d26\u6237", - "asset_accounts": "\u8d44\u4ea7\u8d26\u6237", - "reset_after": "\u63d0\u4ea4\u540e\u91cd\u7f6e\u8868\u5355", - "bill_paid_on": "\u652f\u4ed8\u4e8e {date}", - "first_split_decides": "\u9996\u7b14\u62c6\u5206\u51b3\u5b9a\u6b64\u5b57\u6bb5\u7684\u503c", - "first_split_overrules_source": "\u9996\u7b14\u62c6\u5206\u53ef\u80fd\u8986\u76d6\u6765\u6e90\u8d26\u6237", - "first_split_overrules_destination": "\u9996\u7b14\u62c6\u5206\u53ef\u80fd\u8986\u76d6\u76ee\u6807\u8d26\u6237", - "transaction_stored_link": "\u4ea4\u6613 #{ID} (\u201c{title}\u201d)<\/a> \u5df2\u4fdd\u5b58\u3002", - "custom_period": "\u81ea\u5b9a\u4e49\u5468\u671f", - "reset_to_current": "\u91cd\u7f6e\u4e3a\u5f53\u524d\u5468\u671f", - "select_period": "\u9009\u62e9\u5468\u671f", - "location": "\u4f4d\u7f6e", - "other_budgets": "\u81ea\u5b9a\u4e49\u533a\u95f4\u9884\u7b97", - "journal_links": "\u4ea4\u6613\u5173\u8054", - "go_to_withdrawals": "\u524d\u5f80\u652f\u51fa", - "revenue_accounts": "\u6536\u5165\u8d26\u6237", - "add_another_split": "\u589e\u52a0\u53e6\u4e00\u7b14\u62c6\u5206", - "actions": "\u64cd\u4f5c", - "earned": "\u6536\u5165", - "empty": "(\u7a7a)", - "edit": "\u7f16\u8f91", - "never": "\u6c38\u4e0d", - "account_type_Loan": "\u8d37\u6b3e", - "account_type_Mortgage": "\u62b5\u62bc", - "stored_new_account_js": "New account \"{name}<\/a>\" stored!", - "account_type_Debt": "\u6b20\u6b3e", - "liability_direction_null_short": "Unknown", - "delete": "\u5220\u9664", - "store_new_asset_account": "\u4fdd\u5b58\u65b0\u8d44\u4ea7\u8d26\u6237", - "store_new_expense_account": "\u4fdd\u5b58\u65b0\u652f\u51fa\u8d26\u6237", - "store_new_liabilities_account": "\u4fdd\u5b58\u65b0\u503a\u52a1\u8d26\u6237", - "store_new_revenue_account": "\u4fdd\u5b58\u65b0\u6536\u5165\u8d26\u6237", - "mandatoryFields": "\u5fc5\u586b\u5b57\u6bb5", - "optionalFields": "\u9009\u586b\u5b57\u6bb5", - "reconcile_this_account": "\u5bf9\u8d26\u6b64\u8d26\u6237", - "interest_calc_weekly": "\u6bcf\u5468", - "interest_calc_monthly": "\u6bcf\u6708", - "interest_calc_quarterly": "\u6bcf\u5b63\u5ea6", - "interest_calc_half-year": "\u6bcf\u534a\u5e74", - "interest_calc_yearly": "\u6bcf\u5e74", - "liability_direction_credit": "\u6211\u6b20\u4e86\u8fd9\u7b14\u503a\u52a1", - "liability_direction_debit": "\u6211\u6b20\u522b\u4eba\u8fd9\u7b14\u94b1", - "liability_direction_credit_short": "Owed this debt", - "liability_direction_debit_short": "Owe this debt", - "account_type_debt": "Debt", - "account_type_loan": "Loan", - "left_in_debt": "Amount due", - "account_type_mortgage": "Mortgage", - "save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.", - "none_in_select_list": "(\u7a7a)", - "transaction_expand_split": "Expand split", - "transaction_collapse_split": "Collapse split", - "default_group_title_name": "(\u672a\u5206\u7ec4)", - "bill_repeats_weekly": "Repeats weekly", - "bill_repeats_monthly": "Repeats monthly", - "bill_repeats_quarterly": "Repeats quarterly", - "bill_repeats_half-year": "Repeats every half year", - "bill_repeats_yearly": "Repeats yearly", - "bill_repeats_weekly_other": "Repeats every other week", - "bill_repeats_monthly_other": "Repeats every other month", - "bill_repeats_quarterly_other": "Repeats every other quarter", - "bill_repeats_half-year_other": "Repeats yearly", - "bill_repeats_yearly_other": "Repeats every other year", - "bill_repeats_weekly_skip": "Repeats every {skip} weeks", - "bill_repeats_monthly_skip": "Repeats every {skip} months", - "bill_repeats_quarterly_skip": "Repeats every {skip} quarters", - "bill_repeats_half-year_skip": "Repeats every {skip} half years", - "bill_repeats_yearly_skip": "Repeats every {skip} years", - "not_expected_period": "\u6b64\u5468\u671f\u6ca1\u6709\u9884\u671f\u652f\u4ed8", - "subscriptions": "Subscriptions", - "bill_expected_date_js": "Expected {date}", - "inactive": "\u5df2\u505c\u7528", - "forever": "Forever", - "extension_date_is": "Extension date is {date}", - "create_new_bill": "\u521b\u5efa\u65b0\u8d26\u5355", - "store_new_bill": "\u4fdd\u5b58\u65b0\u8d26\u5355", - "repeat_freq_yearly": "\u6bcf\u5e74", - "repeat_freq_half-year": "\u6bcf\u534a\u5e74", - "repeat_freq_quarterly": "\u6bcf\u5b63", - "repeat_freq_monthly": "\u6bcf\u6708", - "repeat_freq_weekly": "\u6bcf\u5468", - "credit_card_type_monthlyFull": "Full payment every month", - "update_liabilities_account": "\u66f4\u65b0\u503a\u52a1\u8d26\u6237", - "update_expense_account": "\u66f4\u65b0\u652f\u51fa\u8d26\u6237", - "update_revenue_account": "\u66f4\u65b0\u6536\u5165\u8d26\u6237", - "update_undefined_account": "Update account", - "update_asset_account": "\u66f4\u65b0\u8d44\u4ea7\u8d26\u6237", - "updated_account_js": "Updated account \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "\u5b58\u94b1\u7f50", - "percentage": "%", - "amount": "\u91d1\u989d", - "lastActivity": "\u4e0a\u6b21\u6d3b\u52a8", - "name": "\u540d\u79f0", - "role": "\u89d2\u8272", - "description": "\u63cf\u8ff0", - "date": "\u65e5\u671f", - "source_account": "\u6765\u6e90\u8d26\u6237", - "destination_account": "\u76ee\u6807\u8d26\u6237", - "category": "\u5206\u7c7b", - "iban": "\u56fd\u9645\u94f6\u884c\u8d26\u6237\u53f7\u7801\uff08IBAN\uff09", - "interest": "\u5229\u606f", - "interest_period": "Interest period", - "liability_type": "\u503a\u52a1\u7c7b\u578b", - "liability_direction": "Liability in\/out", - "currentBalance": "\u76ee\u524d\u4f59\u989d", - "next_expected_match": "\u9884\u671f\u4e0b\u6b21\u652f\u4ed8", - "expected_info": "Next expected transaction", - "start_date": "Start date", - "end_date": "End date", - "payment_info": "Payment information" - }, - "config": { - "html_language": "zh-cn", - "week_in_year_fns": "'\u5468' w\uff0cyyyy", - "month_and_day_fns": "MMMM d, y", - "quarter_fns": "'Q'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "\u5916\u5e01\u91d1\u989d", - "interest_date": "\u5229\u606f\u65e5\u671f", - "name": "\u540d\u79f0", - "amount": "\u91d1\u989d", - "iban": "\u56fd\u9645\u94f6\u884c\u8d26\u6237\u53f7\u7801 IBAN", - "BIC": "\u94f6\u884c\u8bc6\u522b\u4ee3\u7801 BIC", - "notes": "\u5907\u6ce8", - "location": "\u4f4d\u7f6e", - "repeat_freq": "\u91cd\u590d", - "skip": "\u8df3\u8fc7", - "startdate": "\u5f00\u59cb\u65e5\u671f", - "enddate": "End date", - "object_group": "\u7ec4", - "attachments": "\u9644\u4ef6", - "deletePermanently": "\u6c38\u4e45\u5220\u9664", - "active": "\u542f\u7528", - "include_net_worth": "\u5305\u542b\u4e8e\u51c0\u8d44\u4ea7", - "cc_type": "\u4fe1\u7528\u5361\u8fd8\u6b3e\u8ba1\u5212", - "account_number": "\u8d26\u6237\u53f7\u7801", - "cc_monthly_payment_date": "\u4fe1\u7528\u5361\u6bcf\u6708\u8fd8\u6b3e\u65e5\u671f", - "virtual_balance": "\u865a\u62df\u8d26\u6237\u4f59\u989d", - "opening_balance": "\u521d\u59cb\u4f59\u989d", - "opening_balance_date": "\u5f00\u6237\u65e5\u671f", - "date": "\u65e5\u671f", - "interest": "\u5229\u606f", - "interest_period": "\u5229\u606f\u671f", - "currency_id": "\u8d27\u5e01", - "liability_type": "\u503a\u52a1\u7c7b\u578b", - "account_role": "\u8d26\u6237\u89d2\u8272", - "liability_direction": "Liability in\/out", - "book_date": "\u767b\u8bb0\u65e5\u671f", - "permDeleteWarning": "\u4ece Firefly III \u5220\u9664\u5185\u5bb9\u662f\u6c38\u4e45\u4e14\u65e0\u6cd5\u6062\u590d\u7684\u3002", - "account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?", - "also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.", - "also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.", - "process_date": "\u5904\u7406\u65e5\u671f", - "due_date": "\u5230\u671f\u65e5", - "payment_date": "\u4ed8\u6b3e\u65e5\u671f", - "invoice_date": "\u53d1\u7968\u65e5\u671f", - "amount_min": "\u6700\u5c0f\u91d1\u989d", - "amount_max": "\u6700\u5927\u91d1\u989d", - "start_date": "\u8303\u56f4\u8d77\u59cb", - "end_date": "\u8303\u56f4\u7ed3\u675f", - "extension_date": "Extension date" - } -} \ No newline at end of file diff --git a/frontend/src/locales/zh-tw.json b/frontend/src/locales/zh-tw.json deleted file mode 100644 index f835249899..0000000000 --- a/frontend/src/locales/zh-tw.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "firefly": { - "Transfer": "\u8f49\u5e33", - "Withdrawal": "\u63d0\u6b3e", - "Deposit": "\u5b58\u6b3e", - "date_and_time": "Date and time", - "no_currency": "(\u6c92\u6709\u8ca8\u5e63)", - "date": "\u65e5\u671f", - "time": "Time", - "no_budget": "(\u7121\u9810\u7b97)", - "destination_account": "Destination account", - "source_account": "Source account", - "single_split": "Split", - "create_new_transaction": "Create a new transaction", - "balance": "\u9918\u984d", - "transaction_journal_extra": "Extra information", - "transaction_journal_meta": "\u5f8c\u8a2d\u8cc7\u8a0a", - "basic_journal_information": "Basic transaction information", - "bills_to_pay": "\u5f85\u4ed8\u5e33\u55ae", - "left_to_spend": "\u5269\u9918\u53ef\u82b1\u8cbb", - "attachments": "\u9644\u52a0\u6a94\u6848", - "net_worth": "\u6de8\u503c", - "bill": "\u5e33\u55ae", - "no_bill": "(no bill)", - "tags": "\u6a19\u7c64", - "internal_reference": "Internal reference", - "external_url": "External URL", - "no_piggy_bank": "(no piggy bank)", - "paid": "\u5df2\u4ed8\u6b3e", - "notes": "\u5099\u8a3b", - "yourAccounts": "\u60a8\u7684\u5e33\u6236", - "go_to_asset_accounts": "\u6aa2\u8996\u60a8\u7684\u8cc7\u7522\u5e33\u6236", - "delete_account": "\u79fb\u9664\u5e33\u865f", - "transaction_table_description": "A table containing your transactions", - "account": "\u5e33\u6236", - "description": "\u63cf\u8ff0", - "amount": "\u91d1\u984d", - "budget": "\u9810\u7b97", - "category": "\u5206\u985e", - "opposing_account": "Opposing account", - "budgets": "\u9810\u7b97", - "categories": "\u5206\u985e", - "go_to_budgets": "\u524d\u5f80\u60a8\u7684\u9810\u7b97", - "income": "\u6536\u5165 \/ \u6240\u5f97", - "go_to_deposits": "Go to deposits", - "go_to_categories": "\u524d\u5f80\u60a8\u7684\u5206\u985e", - "expense_accounts": "\u652f\u51fa\u5e33\u6236", - "go_to_expenses": "Go to expenses", - "go_to_bills": "\u524d\u5f80\u60a8\u7684\u5e33\u55ae", - "bills": "\u5e33\u55ae", - "last_thirty_days": "\u6700\u8fd130\u5929", - "last_seven_days": "\u6700\u8fd17\u5929", - "go_to_piggies": "\u524d\u5f80\u60a8\u7684\u5c0f\u8c6c\u64b2\u6eff", - "saved": "Saved", - "piggy_banks": "\u5c0f\u8c6c\u64b2\u6eff", - "piggy_bank": "\u5c0f\u8c6c\u64b2\u6eff", - "amounts": "Amounts", - "left": "\u5269\u9918", - "spent": "\u652f\u51fa", - "Default asset account": "\u9810\u8a2d\u8cc7\u7522\u5e33\u6236", - "search_results": "\u641c\u5c0b\u7d50\u679c", - "include": "Include?", - "transaction": "\u4ea4\u6613", - "account_role_defaultAsset": "\u9810\u8a2d\u8cc7\u7522\u5e33\u6236", - "account_role_savingAsset": "\u5132\u84c4\u5e33\u6236", - "account_role_sharedAsset": "\u5171\u7528\u8cc7\u7522\u5e33\u6236", - "clear_location": "\u6e05\u9664\u4f4d\u7f6e", - "account_role_ccAsset": "\u4fe1\u7528\u5361", - "account_role_cashWalletAsset": "\u73fe\u91d1\u9322\u5305", - "daily_budgets": "Daily budgets", - "weekly_budgets": "Weekly budgets", - "monthly_budgets": "Monthly budgets", - "journals_in_period_for_account_js": "All transactions for account {title} between {start} and {end}", - "quarterly_budgets": "Quarterly budgets", - "create_new_expense": "\u5efa\u7acb\u65b0\u652f\u51fa\u5e33\u6236", - "create_new_revenue": "\u5efa\u7acb\u65b0\u6536\u5165\u5e33\u6236", - "create_new_liabilities": "Create new liability", - "half_year_budgets": "Half-yearly budgets", - "yearly_budgets": "Yearly budgets", - "split_transaction_title": "\u62c6\u5206\u4ea4\u6613\u7684\u63cf\u8ff0", - "errors_submission": "There was something wrong with your submission. Please check out the errors.", - "flash_error": "\u932f\u8aa4\uff01", - "store_transaction": "Store transaction", - "flash_success": "\u6210\u529f\uff01", - "create_another": "After storing, return here to create another one.", - "update_transaction": "Update transaction", - "after_update_create_another": "After updating, return here to continue editing.", - "transaction_updated_no_changes": "Transaction #{ID}<\/a> (\"{title}\") did not receive any changes.", - "transaction_updated_link": "Transaction #{ID}<\/a> (\"{title}\") has been updated.", - "spent_x_of_y": "Spent {amount} of {total}", - "search": "\u641c\u5c0b", - "create_new_asset": "\u5efa\u7acb\u65b0\u8cc7\u7522\u5e33\u6236", - "asset_accounts": "\u8cc7\u7522\u5e33\u6236", - "reset_after": "Reset form after submission", - "bill_paid_on": "Paid on {date}", - "first_split_decides": "The first split determines the value of this field", - "first_split_overrules_source": "The first split may overrule the source account", - "first_split_overrules_destination": "The first split may overrule the destination account", - "transaction_stored_link": "Transaction #{ID} (\"{title}\")<\/a> has been stored.", - "custom_period": "Custom period", - "reset_to_current": "Reset to current period", - "select_period": "Select a period", - "location": "\u4f4d\u7f6e", - "other_budgets": "Custom timed budgets", - "journal_links": "\u4ea4\u6613\u9023\u7d50", - "go_to_withdrawals": "Go to your withdrawals", - "revenue_accounts": "\u6536\u5165\u5e33\u6236", - "add_another_split": "\u589e\u52a0\u62c6\u5206", - "actions": "\u64cd\u4f5c", - "earned": "\u5df2\u8cfa\u5f97", - "empty": "(empty)", - "edit": "\u7de8\u8f2f", - "never": "\u672a\u6709\u8cc7\u6599", - "account_type_Loan": "\u8cb8\u6b3e", - "account_type_Mortgage": "\u62b5\u62bc", - "stored_new_account_js": "New account \"{name}<\/a>\" stored!", - "account_type_Debt": "\u8ca0\u50b5", - "liability_direction_null_short": "Unknown", - "delete": "\u522a\u9664", - "store_new_asset_account": "\u5132\u5b58\u65b0\u8cc7\u7522\u5e33\u6236", - "store_new_expense_account": "\u5132\u5b58\u65b0\u652f\u51fa\u5e33\u6236", - "store_new_liabilities_account": "\u5132\u5b58\u65b0\u50b5\u52d9", - "store_new_revenue_account": "\u5132\u5b58\u65b0\u6536\u5165\u5e33\u6236", - "mandatoryFields": "\u5fc5\u8981\u6b04\u4f4d", - "optionalFields": "\u9078\u586b\u6b04\u4f4d", - "reconcile_this_account": "\u5c0d\u5e33\u6b64\u5e33\u6236", - "interest_calc_weekly": "Per week", - "interest_calc_monthly": "\u6bcf\u6708", - "interest_calc_quarterly": "Per quarter", - "interest_calc_half-year": "Per half year", - "interest_calc_yearly": "\u6bcf\u5e74", - "liability_direction_credit": "I am owed this debt", - "liability_direction_debit": "I owe this debt to somebody else", - "liability_direction_credit_short": "Owed this debt", - "liability_direction_debit_short": "Owe this debt", - "account_type_debt": "Debt", - "account_type_loan": "Loan", - "left_in_debt": "Amount due", - "account_type_mortgage": "Mortgage", - "save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.", - "none_in_select_list": "(\u7a7a)", - "transaction_expand_split": "Expand split", - "transaction_collapse_split": "Collapse split", - "default_group_title_name": "(ungrouped)", - "bill_repeats_weekly": "Repeats weekly", - "bill_repeats_monthly": "Repeats monthly", - "bill_repeats_quarterly": "Repeats quarterly", - "bill_repeats_half-year": "Repeats every half year", - "bill_repeats_yearly": "Repeats yearly", - "bill_repeats_weekly_other": "Repeats every other week", - "bill_repeats_monthly_other": "Repeats every other month", - "bill_repeats_quarterly_other": "Repeats every other quarter", - "bill_repeats_half-year_other": "Repeats yearly", - "bill_repeats_yearly_other": "Repeats every other year", - "bill_repeats_weekly_skip": "Repeats every {skip} weeks", - "bill_repeats_monthly_skip": "Repeats every {skip} months", - "bill_repeats_quarterly_skip": "Repeats every {skip} quarters", - "bill_repeats_half-year_skip": "Repeats every {skip} half years", - "bill_repeats_yearly_skip": "Repeats every {skip} years", - "not_expected_period": "Not expected this period", - "subscriptions": "Subscriptions", - "bill_expected_date_js": "Expected {date}", - "inactive": "\u672a\u555f\u7528", - "forever": "Forever", - "extension_date_is": "Extension date is {date}", - "create_new_bill": "\u5efa\u7acb\u65b0\u5e33\u55ae", - "store_new_bill": "\u5132\u5b58\u65b0\u5e33\u55ae", - "repeat_freq_yearly": "\u6bcf\u5e74", - "repeat_freq_half-year": "\u6bcf\u534a\u5e74", - "repeat_freq_quarterly": "\u6bcf\u5b63", - "repeat_freq_monthly": "\u6bcf\u6708", - "repeat_freq_weekly": "\u6bcf\u9031", - "credit_card_type_monthlyFull": "Full payment every month", - "update_liabilities_account": "\u66f4\u65b0\u50b5\u52d9", - "update_expense_account": "\u66f4\u65b0\u652f\u51fa\u5e33\u6236", - "update_revenue_account": "\u66f4\u65b0\u6536\u5165\u5e33\u6236", - "update_undefined_account": "Update account", - "update_asset_account": "\u66f4\u65b0\u8cc7\u7522\u5e33\u6236", - "updated_account_js": "Updated account \"{title}<\/a>\"." - }, - "list": { - "piggy_bank": "\u5c0f\u8c6c\u64b2\u6eff", - "percentage": "pct.", - "amount": "\u91d1\u984d", - "lastActivity": "\u4e0a\u6b21\u6d3b\u52d5", - "name": "\u540d\u7a31", - "role": "\u89d2\u8272", - "description": "\u63cf\u8ff0", - "date": "\u65e5\u671f", - "source_account": "\u4f86\u6e90\u5e33\u6236", - "destination_account": "\u76ee\u6a19\u5e33\u6236", - "category": "\u5206\u985e", - "iban": "\u570b\u969b\u9280\u884c\u5e33\u6236\u865f\u78bc (IBAN)", - "interest": "\u5229\u7387", - "interest_period": "Interest period", - "liability_type": "\u8ca0\u50b5\u985e\u578b", - "liability_direction": "Liability in\/out", - "currentBalance": "\u76ee\u524d\u9918\u984d", - "next_expected_match": "\u4e0b\u4e00\u500b\u9810\u671f\u7684\u914d\u5c0d", - "expected_info": "Next expected transaction", - "start_date": "Start date", - "end_date": "End date", - "payment_info": "Payment information" - }, - "config": { - "html_language": "zh-tw", - "week_in_year_fns": "'Week' w, yyyy", - "month_and_day_fns": "MMMM d, y", - "quarter_fns": "'Q'Q, yyyy", - "half_year_fns": "'H{half}', yyyy" - }, - "form": { - "foreign_amount": "\u5916\u5e63\u91d1\u984d", - "interest_date": "\u5229\u7387\u65e5\u671f", - "name": "\u540d\u7a31", - "amount": "\u91d1\u984d", - "iban": "\u570b\u969b\u9280\u884c\u5e33\u6236\u865f\u78bc (IBAN)", - "BIC": "BIC", - "notes": "\u5099\u8a3b", - "location": "Location", - "repeat_freq": "\u91cd\u8907", - "skip": "\u7565\u904e", - "startdate": "\u958b\u59cb\u65e5\u671f", - "enddate": "End date", - "object_group": "Group", - "attachments": "\u9644\u52a0\u6a94\u6848", - "deletePermanently": "\u6c38\u4e45\u522a\u9664", - "active": "\u555f\u7528", - "include_net_worth": "\u5305\u62ec\u6de8\u503c", - "cc_type": "\u4fe1\u7528\u5361\u4ed8\u6b3e\u8a08\u5283", - "account_number": "\u5e33\u6236\u865f\u78bc", - "cc_monthly_payment_date": "\u4fe1\u7528\u5361\u6bcf\u6708\u4ed8\u6b3e\u65e5\u671f", - "virtual_balance": "\u865b\u64ec\u9918\u984d", - "opening_balance": "\u521d\u59cb\u9918\u984d", - "opening_balance_date": "\u521d\u59cb\u9918\u984d\u65e5\u671f", - "date": "\u65e5\u671f", - "interest": "\u5229\u7387", - "interest_period": "\u5229\u7387\u671f", - "currency_id": "\u8ca8\u5e63", - "liability_type": "Liability type", - "account_role": "\u5e33\u6236\u89d2\u8272", - "liability_direction": "Liability in\/out", - "book_date": "\u767b\u8a18\u65e5\u671f", - "permDeleteWarning": "\u81ea Firefly III \u522a\u9664\u9805\u76ee\u662f\u6c38\u4e45\u4e14\u4e0d\u53ef\u64a4\u92b7\u7684\u3002", - "account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?", - "also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.", - "also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.", - "process_date": "\u8655\u7406\u65e5\u671f", - "due_date": "\u5230\u671f\u65e5", - "payment_date": "\u4ed8\u6b3e\u65e5\u671f", - "invoice_date": "\u767c\u7968\u65e5\u671f", - "amount_min": "\u6700\u5c0f\u91d1\u984d", - "amount_max": "\u6700\u5927\u91d1\u984d", - "start_date": "\u7bc4\u570d\u8d77\u9ede", - "end_date": "\u7bc4\u570d\u7d42\u9ede", - "extension_date": "Extension date" - } -} \ No newline at end of file diff --git a/frontend/src/pages/accounts/create.js b/frontend/src/pages/accounts/create.js deleted file mode 100644 index 9257772c49..0000000000 --- a/frontend/src/pages/accounts/create.js +++ /dev/null @@ -1,36 +0,0 @@ -/* - * create.js - * Copyright (c) 2021 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - - - -require('../../bootstrap'); - -import Create from "../../components/accounts/Create"; - -// i18n -let i18n = require('../../i18n'); - -let props = {}; -const app = new Vue({ - i18n, - render(createElement) { - return createElement(Create, {props: props}); - } - }).$mount('#accounts_create'); diff --git a/frontend/src/pages/accounts/delete.js b/frontend/src/pages/accounts/delete.js deleted file mode 100644 index 2f6a3ea4b0..0000000000 --- a/frontend/src/pages/accounts/delete.js +++ /dev/null @@ -1,40 +0,0 @@ -/* - * index.js - * Copyright (c) 2020 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - - -require('../../bootstrap'); - -import Delete from "../../components/accounts/Delete"; - -// i18n -let i18n = require('../../i18n'); - -// get page name? - - -let props = { - -}; -const app = new Vue({ - i18n, - render(createElement) { - return createElement(Delete, {props: props}); - } - }).$mount('#accounts_delete'); diff --git a/frontend/src/pages/accounts/edit.js b/frontend/src/pages/accounts/edit.js deleted file mode 100644 index 0d44a7c06e..0000000000 --- a/frontend/src/pages/accounts/edit.js +++ /dev/null @@ -1,34 +0,0 @@ -/* - * edit.js - * Copyright (c) 2021 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -require('../../bootstrap'); - -import Edit from "../../components/accounts/Edit"; - -// i18n -let i18n = require('../../i18n'); - -let props = {}; -const app = new Vue({ - i18n, - render(createElement) { - return createElement(Edit, {props: props}); - } - }).$mount('#accounts_edit'); diff --git a/frontend/src/pages/accounts/index.js b/frontend/src/pages/accounts/index.js deleted file mode 100644 index c98ab3cc23..0000000000 --- a/frontend/src/pages/accounts/index.js +++ /dev/null @@ -1,78 +0,0 @@ -/* - * index.js - * Copyright (c) 2020 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ -require('../../bootstrap'); - -import Vue from "vue"; -import Index from "../../components/accounts/Index"; -import store from "../../components/store"; -import {BPagination, BTable} from 'bootstrap-vue'; -import Calendar from "../../components/dashboard/Calendar"; -import IndexOptions from "../../components/accounts/IndexOptions"; - -// i18n -let i18n = require('../../i18n'); -let props = {}; - -// TODO: long lists are slow to load. Fix this. -// TODO add interest for liabilities - -Vue.component('b-table', BTable); -Vue.component('b-pagination', BPagination); -//Vue.use(Vuex); - -const app = new Vue({ - i18n, - store, - el: "#accounts", - render: (createElement) => { - return createElement(Index, {props: props}); - }, - beforeCreate() { -// init the old root store (TODO remove me) - this.$store.commit('initialiseStore'); - this.$store.dispatch('updateCurrencyPreference'); - - // init the new root store (dont care about results) - this.$store.dispatch('root/initialiseStore'); - - // also init the dashboard store. - this.$store.dispatch('dashboard/index/initialiseStore'); - }, - }); - -const calendar = new Vue({ - i18n, - store, - el: "#calendar", - render: (createElement) => { - return createElement(Calendar, {props: props}); - }, -// TODO init store as well? - }); - -const opt = new Vue({ - i18n, - store, - el: "#indexOptions", - render: (createElement) => { - return createElement(IndexOptions, {props: props}); - }, -// TODO init store as well? - }); \ No newline at end of file diff --git a/frontend/src/pages/accounts/show.js b/frontend/src/pages/accounts/show.js deleted file mode 100644 index 94d060ab6f..0000000000 --- a/frontend/src/pages/accounts/show.js +++ /dev/null @@ -1,51 +0,0 @@ -/* - * index.js - * Copyright (c) 2020 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - - -require('../../bootstrap'); - -import store from '../../components/store'; -import Show from "../../components/accounts/Show"; - -// i18n -let i18n = require('../../i18n'); - -// get page name? - - -let props = {}; -const app = new Vue({ - i18n, - store, - render(createElement) { - return createElement(Show, {props: props}); - }, - beforeCreate() { -// See reference nr. 10 - this.$store.commit('initialiseStore'); - this.$store.dispatch('updateCurrencyPreference'); - - // init the new root store (dont care about results) - this.$store.dispatch('root/initialiseStore'); - - // also init the dashboard store. - this.$store.dispatch('dashboard/index/initialiseStore'); - }, - }).$mount('#accounts_show'); diff --git a/frontend/src/pages/bills/create.js b/frontend/src/pages/bills/create.js deleted file mode 100644 index cdf80a857e..0000000000 --- a/frontend/src/pages/bills/create.js +++ /dev/null @@ -1,51 +0,0 @@ -/* - * index.js - * Copyright (c) 2020 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ -require('../../bootstrap'); - -import Vue from "vue"; -import Create from "../../components/bills/Create"; -import store from "../../components/store"; - -// i18n -let i18n = require('../../i18n'); -let props = {}; - -// See reference nr. 8 -// See reference nr. 9 - -const app = new Vue({ - i18n, - store, - el: "#bills_create", - render: (createElement) => { - return createElement(Create, {props: props}); - }, - beforeCreate() { - // See reference nr. 10 - this.$store.commit('initialiseStore'); - this.$store.dispatch('updateCurrencyPreference'); - - // init the new root store (dont care about results) - this.$store.dispatch('root/initialiseStore'); - - // also init the dashboard store. - //this.$store.dispatch('dashboard/index/initialiseStore'); - }, - }); diff --git a/frontend/src/pages/bills/index.js b/frontend/src/pages/bills/index.js deleted file mode 100644 index ac0d62a9e7..0000000000 --- a/frontend/src/pages/bills/index.js +++ /dev/null @@ -1,78 +0,0 @@ -/* - * index.js - * Copyright (c) 2020 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ -require('../../bootstrap'); - -import Vue from "vue"; -import Index from "../../components/bills/Index"; -import store from "../../components/store"; -import {BPagination, BTable} from 'bootstrap-vue'; -import Calendar from "../../components/dashboard/Calendar"; -//import IndexOptions from "../../components/accounts/IndexOptions"; - -// i18n -let i18n = require('../../i18n'); -let props = {}; - -// See reference nr. 8 -// See reference nr. 9 - -Vue.component('b-table', BTable); -Vue.component('b-pagination', BPagination); -//Vue.use(Vuex); - -const app = new Vue({ - i18n, - store, - el: "#bills", - render: (createElement) => { - return createElement(Index, {props: props}); - }, - beforeCreate() { - // See reference nr. 10 - this.$store.commit('initialiseStore'); - this.$store.dispatch('updateCurrencyPreference'); - - // init the new root store (dont care about results) - this.$store.dispatch('root/initialiseStore'); - - // also init the dashboard store. - this.$store.dispatch('dashboard/index/initialiseStore'); - }, - }); - -const calendar = new Vue({ - i18n, - store, - el: "#calendar", - render: (createElement) => { - return createElement(Calendar, {props: props}); - }, -// See reference nr. 11 - }); - -// new Vue({ -// i18n, -// store, -// el: "#indexOptions", -// render: (createElement) => { -// return createElement(IndexOptions, {props: props}); -// }, -// // See reference nr. 12 -// }); \ No newline at end of file diff --git a/frontend/src/pages/budgets/index.js b/frontend/src/pages/budgets/index.js deleted file mode 100644 index 94f4bacaac..0000000000 --- a/frontend/src/pages/budgets/index.js +++ /dev/null @@ -1,48 +0,0 @@ -/* - * index.js - * Copyright (c) 2020 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ -require('../../bootstrap'); - -import Vue from "vue"; -import Index from "../../components/budgets/Index"; -import store from "../../components/store"; - -// i18n -let i18n = require('../../i18n'); -let props = {}; - -const app = new Vue({ - i18n, - store, - el: "#budgets", - render: (createElement) => { - return createElement(Index, {props: props}); - }, - beforeCreate() { -// See reference nr. 13 - //this.$store.commit('initialiseStore'); - //this.$store.dispatch('updateCurrencyPreference'); - - // init the new root store (dont care about results) - this.$store.dispatch('root/initialiseStore'); - - // also init the dashboard store. - //this.$store.dispatch('dashboard/index/initialiseStore'); - }, - }); \ No newline at end of file diff --git a/frontend/src/pages/dashboard.js b/frontend/src/pages/dashboard.js deleted file mode 100644 index aa8ccafd34..0000000000 --- a/frontend/src/pages/dashboard.js +++ /dev/null @@ -1,97 +0,0 @@ -/* - * dashboard.js - * Copyright (c) 2021 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - - -import Dashboard from '../components/dashboard/Dashboard'; -import TopBoxes from '../components/dashboard/TopBoxes'; -import MainAccount from '../components/dashboard/MainAccount'; -import MainAccountList from '../components/dashboard/MainAccountList'; -import MainBillsList from '../components/dashboard/MainBillsList'; -import MainBudgetList from '../components/dashboard/MainBudgetList'; -import MainCreditList from '../components/dashboard/MainCreditList'; -import MainDebitList from '../components/dashboard/MainDebitList'; -import MainPiggyList from '../components/dashboard/MainPiggyList'; -import DashboardListLarge from '../components/dashboard/DashboardListLarge'; -import DashboardListMedium from '../components/dashboard/DashboardListMedium'; -import DashboardListSmall from '../components/dashboard/DashboardListSmall'; -import Calendar from '../components/dashboard/Calendar'; -import MainCategoryList from '../components/dashboard/MainCategoryList'; -import Vue from 'vue'; -import Vuex from 'vuex' -import store from '../components/store'; - -/** - * First we will load Axios via bootstrap.js - * jquery and bootstrap-sass preloaded in app.js - * vue, uiv and vuei18n are in app_vue.js - */ - -// See reference nr. 14 - -require('../bootstrap'); -require('chart.js'); - -Vue.component('dashboard-list-large', DashboardListLarge); -Vue.component('dashboard-list-medium', DashboardListMedium); -Vue.component('dashboard-list-small', DashboardListSmall); - -// components as an example - -Vue.component('dashboard', Dashboard); -Vue.component('top-boxes', TopBoxes); -Vue.component('main-account', MainAccount); -Vue.component('main-account-list', MainAccountList); -Vue.component('main-bills-list', MainBillsList); -Vue.component('main-budget-list', MainBudgetList); -Vue.component('main-category-list', MainCategoryList); -Vue.component('main-debit-list', MainDebitList); -Vue.component('main-credit-list', MainCreditList); -Vue.component('main-piggy-list', MainPiggyList); - -Vue.use(Vuex); - -let i18n = require('../i18n'); -let props = {}; - -const app = new Vue({ - i18n, - store, - el: '#dashboard', - render: (createElement) => { - return createElement(Dashboard, {props: props}); - }, - beforeCreate() { -// See reference nr. 15 - this.$store.commit('initialiseStore'); - this.$store.dispatch('updateCurrencyPreference'); - this.$store.dispatch('root/initialiseStore'); - this.$store.dispatch('dashboard/index/initialiseStore'); - }, - }); - -const calendar = new Vue({ - i18n, - store, - el: "#calendar", - render: (createElement) => { - return createElement(Calendar, {props: props}); - }, -// See reference nr. 16 - }); \ No newline at end of file diff --git a/frontend/src/pages/empty.js b/frontend/src/pages/empty.js deleted file mode 100644 index f95621ac2b..0000000000 --- a/frontend/src/pages/empty.js +++ /dev/null @@ -1,21 +0,0 @@ -/* - * empty.js - * Copyright (c) 2021 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -require('../bootstrap'); diff --git a/frontend/src/pages/new-user/index.js b/frontend/src/pages/new-user/index.js deleted file mode 100644 index ebcebd7a29..0000000000 --- a/frontend/src/pages/new-user/index.js +++ /dev/null @@ -1,34 +0,0 @@ -/* - * index.js - * Copyright (c) 2020 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -require('../../bootstrap'); - -import Index from "../../components/new-user/Index"; - -// i18n -let i18n = require('../../i18n'); - -let props = {}; -const app = new Vue({ - i18n, - render(createElement) { - return createElement(Index, {props: props}); - } - }).$mount('#newuser'); diff --git a/frontend/src/pages/register.js b/frontend/src/pages/register.js deleted file mode 100644 index ab7d16e610..0000000000 --- a/frontend/src/pages/register.js +++ /dev/null @@ -1,27 +0,0 @@ -/* - * register.js - * Copyright (c) 2020 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -/** - * First we will load Axios via bootstrap.js - * jquery and bootstrap-sass preloaded in app.js - * vue, uiv and vuei18n are in app_vue.js - */ - -require('../bootstrap-basic'); diff --git a/frontend/src/pages/transactions/create.js b/frontend/src/pages/transactions/create.js deleted file mode 100644 index dc0ea2bb96..0000000000 --- a/frontend/src/pages/transactions/create.js +++ /dev/null @@ -1,49 +0,0 @@ -/* - * create.js - * Copyright (c) 2020 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -import store from "../../components/store"; -import Create from "../../components/transactions/Create"; -import Vue from "vue"; - -require('../../bootstrap'); - -Vue.config.productionTip = false; -// i18n -let i18n = require('../../i18n'); - -// See reference nr. 3 -// See reference nr. 4 -// See reference nr. 5 -// See reference nr. 6 -// See reference nr. 7 - -let props = {}; -const app = new Vue({ - i18n, - store, - render(createElement) { - return createElement(Create, {props: props}); - }, - beforeCreate() { - this.$store.dispatch('root/initialiseStore'); - this.$store.commit('initialiseStore'); - this.$store.dispatch('updateCurrencyPreference'); - }, - }).$mount('#transactions_create'); diff --git a/frontend/src/pages/transactions/edit.js b/frontend/src/pages/transactions/edit.js deleted file mode 100644 index 0bd42b900a..0000000000 --- a/frontend/src/pages/transactions/edit.js +++ /dev/null @@ -1,42 +0,0 @@ -/* - * edit.js - * Copyright (c) 2020 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -import store from "../../components/store"; -import Edit from "../../components/transactions/Edit"; -import Vue from "vue"; - -require('../../bootstrap'); - -Vue.config.productionTip = false; -// i18n -let i18n = require('../../i18n'); - -let props = {}; -const app = new Vue({ - i18n, - store, - render(createElement) { - return createElement(Edit, {props: props}); - }, - beforeCreate() { - this.$store.commit('initialiseStore'); - this.$store.dispatch('updateCurrencyPreference'); - }, - }).$mount('#transactions_edit'); diff --git a/frontend/src/pages/transactions/index.js b/frontend/src/pages/transactions/index.js deleted file mode 100644 index a8aad16e9b..0000000000 --- a/frontend/src/pages/transactions/index.js +++ /dev/null @@ -1,58 +0,0 @@ -/* - * index.js - * Copyright (c) 2021 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -require('../../bootstrap'); - -import Vue from "vue"; -import store from "../../components/store"; -import Index from "../../components/transactions/Index"; -import Calendar from "../../components/dashboard/Calendar"; - -// i18n -let i18n = require('../../i18n'); -let props = {}; - -const app = new Vue({ - i18n, - store, - render(createElement) { - return createElement(Index, {props: props}); - }, - beforeCreate() { -// See reference nr. 2 - this.$store.commit('initialiseStore'); - this.$store.dispatch('updateCurrencyPreference'); - - // init the new root store (dont care about results) - this.$store.dispatch('root/initialiseStore'); - - // also init the dashboard store. - this.$store.dispatch('dashboard/index/initialiseStore'); - }, - }).$mount('#transactions_index'); - -const calendar = new Vue({ - i18n, - store, - el: "#calendar", - render: (createElement) => { - return createElement(Calendar, {props: props}); - }, - }); \ No newline at end of file diff --git a/frontend/src/serviceworker.js b/frontend/src/serviceworker.js deleted file mode 100644 index dda3b1111b..0000000000 --- a/frontend/src/serviceworker.js +++ /dev/null @@ -1,58 +0,0 @@ -/* - * serviceworker.js - * Copyright (c) 2021 Lorenzo Breda (https://github.com/lbreda) - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -let staticCachePrefix = "firefly-III-" -let staticCacheName = staticCachePrefix + new Date().getTime(); -let cachedFiles = [ - '/offline', - '/v2/plugins/local-fonts/gf-source.css', - '/v2/css/app.css', -]; - -// Create cache on install -self.addEventListener("install", event => { - this.skipWaiting(); - event.waitUntil( - caches.open(staticCacheName).then(cache => cache.addAll(cachedFiles)) - ) -}); - -// Clear cache on activate -self.addEventListener('activate', event => { - event.waitUntil( - caches.keys().then(cacheNames => { - return Promise.all( - cacheNames - .filter(cacheName => (cacheName.startsWith(staticCachePrefix))) - .filter(cacheName => (cacheName !== staticCacheName)) - .map(cacheName => caches.delete(cacheName)) - ); - }) - ); -}); - -// Serve from Cache or return the offline page -self.addEventListener("fetch", event => { - event.respondWith( - caches.match(event.request) - .then(response => (response || fetch(event.request))) - .catch(() => caches.match('offline')) - ) -}); diff --git a/frontend/src/shared/forageStore.js b/frontend/src/shared/forageStore.js deleted file mode 100644 index 34312ccd83..0000000000 --- a/frontend/src/shared/forageStore.js +++ /dev/null @@ -1,61 +0,0 @@ -/* - * forageStore.js - * Copyright (c) 2021 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -import localforage from 'localforage' -import memoryDriver from 'localforage-memoryStorageDriver' -import {setup} from 'axios-cache-adapter' - -// `async` wrapper to configure `localforage` and instantiate `axios` with `axios-cache-adapter` -export async function configureAxios() { - // Register the custom `memoryDriver` to `localforage` - await localforage.defineDriver(memoryDriver) - - // Create `localforage` instance - const forageStore = localforage.createInstance({ - // List of drivers used - driver: [ - localforage.INDEXEDDB, - localforage.LOCALSTORAGE, - memoryDriver._driver - ], - // Prefix all storage keys to prevent conflicts - name: 'my-cache' - }) - - // Create `axios` instance with pre-configured `axios-cache-adapter` using a `localforage` store - let token = document.head.querySelector('meta[name="csrf-token"]'); - return setup({ - // `axios` options - baseURL: './', - headers: {'X-CSRF-TOKEN': token.content, 'X-James-Rocks': 'oh yes'}, - cache: { - // `axios-cache-adapter` options - maxAge: 24 * 60 * 60 * 1000, // one day. - readHeaders: false, - exclude: { - query: false, - }, - debug: true, - store: forageStore, - } - } - ); - -} \ No newline at end of file diff --git a/frontend/src/shared/transactions.js b/frontend/src/shared/transactions.js deleted file mode 100644 index 4d5604e5a2..0000000000 --- a/frontend/src/shared/transactions.js +++ /dev/null @@ -1,169 +0,0 @@ -/* - * transactions.js - * Copyright (c) 2021 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -export function getDefaultErrors() { - return { - description: [], - amount: [], - source: [], - destination: [], - currency: [], - foreign_currency: [], - foreign_amount: [], - date: [], - custom_dates: [], - budget: [], - category: [], - bill: [], - tags: [], - piggy_bank: [], - internal_reference: [], - external_url: [], - notes: [], - location: [] - }; -} - -export function getDefaultTransaction() { - return { - // basic - description: '', - transaction_journal_id: 0, - // accounts: - source_account_id: null, - source_account_name: null, - source_account_type: null, - - source_account_currency_id: null, - source_account_currency_code: null, - source_account_currency_symbol: null, - - destination_account_id: null, - destination_account_name: null, - destination_account_type: null, - - destination_account_currency_id: null, - destination_account_currency_code: null, - destination_account_currency_symbol: null, - attachments: false, - selectedAttachments: false, - uploadTrigger: false, - clearTrigger: false, - - source_account: { - id: 0, - name: "", - name_with_balance: "", - type: "", - currency_id: 0, - currency_name: '', - currency_code: '', - currency_decimal_places: 2 - }, - destination_account: { - id: 0, - name: "", - type: "", - currency_id: 0, - currency_name: '', - currency_code: '', - currency_decimal_places: 2 - }, - - // amount: - amount: '', - currency_id: 0, - foreign_amount: '', - foreign_currency_id: 0, - - // meta data - category: null, - budget_id: 0, - bill_id: 0, - piggy_bank_id: 0, - tags: [], - - // optional date fields (6x): - interest_date: null, - book_date: null, - process_date: null, - due_date: null, - payment_date: null, - invoice_date: null, - - // optional other fields: - internal_reference: null, - external_url: null, - external_id: null, - notes: null, - - // transaction links: - links: [], - // location: - zoom_level: null, - longitude: null, - latitude: null, - - // error handling - errors: {}, - } -} - -export function toW3CString(date) { - // https://gist.github.com/tristanlins/6585391 - let year = date.getFullYear(); - let month = date.getMonth(); - month++; - if (month < 10) { - month = '0' + month; - } - let day = date.getDate(); - if (day < 10) { - day = '0' + day; - } - let hours = date.getHours(); - if (hours < 10) { - hours = '0' + hours; - } - let minutes = date.getMinutes(); - if (minutes < 10) { - minutes = '0' + minutes; - } - let seconds = date.getSeconds(); - if (seconds < 10) { - seconds = '0' + seconds; - } - let offset = -date.getTimezoneOffset(); - let offsetHours = Math.abs(Math.floor(offset / 60)); - let offsetMinutes = Math.abs(offset) - offsetHours * 60; - if (offsetHours < 10) { - offsetHours = '0' + offsetHours; - } - if (offsetMinutes < 10) { - offsetMinutes = '0' + offsetMinutes; - } - let offsetSign = '+'; - if (offset < 0) { - offsetSign = '-'; - } - return year + '-' + month + '-' + day + - 'T' + hours + ':' + minutes + ':' + seconds + - offsetSign + offsetHours + ':' + offsetMinutes; -} \ No newline at end of file diff --git a/frontend/webpack.mix.js b/frontend/webpack.mix.js deleted file mode 100644 index 77381f9a32..0000000000 --- a/frontend/webpack.mix.js +++ /dev/null @@ -1,90 +0,0 @@ -/* - * webpack.mix.js - * Copyright (c) 2021 james@firefly-iii.org - * - * This file is part of Firefly III (https://github.com/firefly-iii). - * - * 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 . - */ - -const mix = require('laravel-mix'); - -/* - |-------------------------------------------------------------------------- - | Mix Asset Management - |-------------------------------------------------------------------------- - | - | Mix provides a clean, fluent API for defining some Webpack build steps - | for your Laravel applications. By default, we are compiling the CSS - | file for the application as well as bundling up all the JS files. - | - */ - -mix.setResourceRoot('./'); - -// production -// require('laravel-mix-bundle-analyzer'); -mix.webpackConfig({ - stats: { - children: true - }, - resolve: { - alias: { - 'vue$': 'vue/dist/vue.runtime.common.js' - } - } - }); - - -// dashboard and empty page -mix.js('src/pages/dashboard.js', 'public/js').vue({version: 2}); - -// accounts. -mix.js('src/pages/accounts/index.js', 'public/js/accounts').vue({version: 2}); -mix.js('src/pages/accounts/delete.js', 'public/js/accounts').vue({version: 2}); -mix.js('src/pages/accounts/show.js', 'public/js/accounts').vue({version: 2}); -mix.js('src/pages/accounts/create.js', 'public/js/accounts').vue({version: 2}); -mix.js('src/pages/accounts/edit.js', 'public/js/accounts').vue({version: 2}); - -// bills -mix.js('src/pages/bills/index.js', 'public/js/bills').vue({version: 2}); -mix.js('src/pages/bills/create.js', 'public/js/bills').vue({version: 2}); - -// budgets -mix.js('src/pages/budgets/index.js', 'public/js/budgets').vue({version: 2}); - -// transactions. -mix.js('src/pages/transactions/create.js', 'public/js/transactions').vue({version: 2}); -mix.js('src/pages/transactions/edit.js', 'public/js/transactions').vue({version: 2}); -mix.js('src/pages/transactions/index.js', 'public/js/transactions').vue({version: 2}); - -// static pages -mix.js('src/pages/empty.js', 'public/js').vue({version: 2}); -mix.js('src/pages/register.js', 'public/js').vue({version: 2}) - - -mix.extract().sourceMaps(); - -mix.sass('src/app.scss', 'public/css', { - sassOptions: { - outputStyle: 'compressed' - } -}); - -// move to right dir -mix.copy('public/js', '../public/v2/js') - .copy('fonts', '../public/v2/css/fonts') - .copy('images', '../public/images') - .copy('public/css', '../public/v2/css'); - diff --git a/frontend/yarn.lock b/frontend/yarn.lock deleted file mode 100644 index f496cc0473..0000000000 --- a/frontend/yarn.lock +++ /dev/null @@ -1,6758 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" - integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== - dependencies: - "@babel/highlight" "^7.16.7" - -"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.16.4": - version "7.16.4" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.16.4.tgz#081d6bbc336ec5c2435c6346b2ae1fb98b5ac68e" - integrity sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q== - -"@babel/core@^7.15.8": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.16.7.tgz#db990f931f6d40cb9b87a0dc7d2adc749f1dcbcf" - integrity sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA== - dependencies: - "@babel/code-frame" "^7.16.7" - "@babel/generator" "^7.16.7" - "@babel/helper-compilation-targets" "^7.16.7" - "@babel/helper-module-transforms" "^7.16.7" - "@babel/helpers" "^7.16.7" - "@babel/parser" "^7.16.7" - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.16.7" - "@babel/types" "^7.16.7" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.1.2" - semver "^6.3.0" - source-map "^0.5.0" - -"@babel/generator@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.16.7.tgz#b42bf46a3079fa65e1544135f32e7958f048adbb" - integrity sha512-/ST3Sg8MLGY5HVYmrjOgL60ENux/HfO/CsUh7y4MalThufhE/Ff/6EibFDHi4jiDCaWfJKoqbE6oTh21c5hrRg== - dependencies: - "@babel/types" "^7.16.7" - jsesc "^2.5.1" - source-map "^0.5.0" - -"@babel/helper-annotate-as-pure@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz#bb2339a7534a9c128e3102024c60760a3a7f3862" - integrity sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-builder-binary-assignment-operator-visitor@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz#38d138561ea207f0f69eb1626a418e4f7e6a580b" - integrity sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA== - dependencies: - "@babel/helper-explode-assignable-expression" "^7.16.7" - "@babel/types" "^7.16.7" - -"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz#06e66c5f299601e6c7da350049315e83209d551b" - integrity sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA== - dependencies: - "@babel/compat-data" "^7.16.4" - "@babel/helper-validator-option" "^7.16.7" - browserslist "^4.17.5" - semver "^6.3.0" - -"@babel/helper-create-class-features-plugin@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.7.tgz#9c5b34b53a01f2097daf10678d65135c1b9f84ba" - integrity sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - "@babel/helper-environment-visitor" "^7.16.7" - "@babel/helper-function-name" "^7.16.7" - "@babel/helper-member-expression-to-functions" "^7.16.7" - "@babel/helper-optimise-call-expression" "^7.16.7" - "@babel/helper-replace-supers" "^7.16.7" - "@babel/helper-split-export-declaration" "^7.16.7" - -"@babel/helper-create-regexp-features-plugin@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.7.tgz#0cb82b9bac358eb73bfbd73985a776bfa6b14d48" - integrity sha512-fk5A6ymfp+O5+p2yCkXAu5Kyj6v0xh0RBeNcAkYUMDvvAAoxvSKXn+Jb37t/yWFiQVDFK1ELpUTD8/aLhCPu+g== - dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - regexpu-core "^4.7.1" - -"@babel/helper-define-polyfill-provider@^0.3.0": - version "0.3.0" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.0.tgz#c5b10cf4b324ff840140bb07e05b8564af2ae971" - integrity sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg== - dependencies: - "@babel/helper-compilation-targets" "^7.13.0" - "@babel/helper-module-imports" "^7.12.13" - "@babel/helper-plugin-utils" "^7.13.0" - "@babel/traverse" "^7.13.0" - debug "^4.1.1" - lodash.debounce "^4.0.8" - resolve "^1.14.2" - semver "^6.1.2" - -"@babel/helper-environment-visitor@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz#ff484094a839bde9d89cd63cba017d7aae80ecd7" - integrity sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-explode-assignable-expression@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz#12a6d8522fdd834f194e868af6354e8650242b7a" - integrity sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-function-name@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz#f1ec51551fb1c8956bc8dd95f38523b6cf375f8f" - integrity sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA== - dependencies: - "@babel/helper-get-function-arity" "^7.16.7" - "@babel/template" "^7.16.7" - "@babel/types" "^7.16.7" - -"@babel/helper-get-function-arity@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz#ea08ac753117a669f1508ba06ebcc49156387419" - integrity sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-hoist-variables@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246" - integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-member-expression-to-functions@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz#42b9ca4b2b200123c3b7e726b0ae5153924905b0" - integrity sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437" - integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-module-transforms@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz#7665faeb721a01ca5327ddc6bba15a5cb34b6a41" - integrity sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng== - dependencies: - "@babel/helper-environment-visitor" "^7.16.7" - "@babel/helper-module-imports" "^7.16.7" - "@babel/helper-simple-access" "^7.16.7" - "@babel/helper-split-export-declaration" "^7.16.7" - "@babel/helper-validator-identifier" "^7.16.7" - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.16.7" - "@babel/types" "^7.16.7" - -"@babel/helper-optimise-call-expression@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz#a34e3560605abbd31a18546bd2aad3e6d9a174f2" - integrity sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz#aa3a8ab4c3cceff8e65eb9e73d87dc4ff320b2f5" - integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA== - -"@babel/helper-remap-async-to-generator@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.7.tgz#5ce2416990d55eb6e099128338848ae8ffa58a9a" - integrity sha512-C3o117GnP/j/N2OWo+oepeWbFEKRfNaay+F1Eo5Mj3A1SRjyx+qaFhm23nlipub7Cjv2azdUUiDH+VlpdwUFRg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - "@babel/helper-wrap-function" "^7.16.7" - "@babel/types" "^7.16.7" - -"@babel/helper-replace-supers@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz#e9f5f5f32ac90429c1a4bdec0f231ef0c2838ab1" - integrity sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw== - dependencies: - "@babel/helper-environment-visitor" "^7.16.7" - "@babel/helper-member-expression-to-functions" "^7.16.7" - "@babel/helper-optimise-call-expression" "^7.16.7" - "@babel/traverse" "^7.16.7" - "@babel/types" "^7.16.7" - -"@babel/helper-simple-access@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz#d656654b9ea08dbb9659b69d61063ccd343ff0f7" - integrity sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-skip-transparent-expression-wrappers@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz#0ee3388070147c3ae051e487eca3ebb0e2e8bb09" - integrity sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw== - dependencies: - "@babel/types" "^7.16.0" - -"@babel/helper-split-export-declaration@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b" - integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-validator-identifier@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" - integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== - -"@babel/helper-validator-option@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23" - integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ== - -"@babel/helper-wrap-function@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.16.7.tgz#8ddf9eaa770ed43de4bc3687f3f3b0d6d5ecf014" - integrity sha512-7a9sABeVwcunnztZZ7WTgSw6jVYLzM1wua0Z4HIXm9S3/HC96WKQTkFgGEaj5W06SHHihPJ6Le6HzS5cGOQMNw== - dependencies: - "@babel/helper-function-name" "^7.16.7" - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.16.7" - "@babel/types" "^7.16.7" - -"@babel/helpers@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.16.7.tgz#7e3504d708d50344112767c3542fc5e357fffefc" - integrity sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw== - dependencies: - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.16.7" - "@babel/types" "^7.16.7" - -"@babel/highlight@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.7.tgz#81a01d7d675046f0d96f82450d9d9578bdfd6b0b" - integrity sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw== - dependencies: - "@babel/helper-validator-identifier" "^7.16.7" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/parser@^7.1.0", "@babel/parser@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.7.tgz#d372dda9c89fcec340a82630a9f533f2fe15877e" - integrity sha512-sR4eaSrnM7BV7QPzGfEX5paG/6wrZM3I0HDzfIAK06ESvo9oy3xBuVBxE3MbQaKNhvg8g/ixjMWo2CGpzpHsDA== - -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz#4eda6d6c2a0aa79c70fa7b6da67763dfe2141050" - integrity sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz#cc001234dfc139ac45f6bcf801866198c8c72ff9" - integrity sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" - "@babel/plugin-proposal-optional-chaining" "^7.16.7" - -"@babel/plugin-proposal-async-generator-functions@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.7.tgz#739adc1212a9e4892de440cd7dfffb06172df78d" - integrity sha512-TTXBT3A5c11eqRzaC6beO6rlFT3Mo9C2e8eB44tTr52ESXSK2CIc2fOp1ynpAwQA8HhBMho+WXhMHWlAe3xkpw== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/helper-remap-async-to-generator" "^7.16.7" - "@babel/plugin-syntax-async-generators" "^7.8.4" - -"@babel/plugin-proposal-class-properties@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz#925cad7b3b1a2fcea7e59ecc8eb5954f961f91b0" - integrity sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-proposal-class-static-block@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.7.tgz#712357570b612106ef5426d13dc433ce0f200c2a" - integrity sha512-dgqJJrcZoG/4CkMopzhPJjGxsIe9A8RlkQLnL/Vhhx8AA9ZuaRwGSlscSh42hazc7WSrya/IK7mTeoF0DP9tEw== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - -"@babel/plugin-proposal-dynamic-import@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz#c19c897eaa46b27634a00fee9fb7d829158704b2" - integrity sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - -"@babel/plugin-proposal-export-namespace-from@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz#09de09df18445a5786a305681423ae63507a6163" - integrity sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - -"@babel/plugin-proposal-json-strings@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz#9732cb1d17d9a2626a08c5be25186c195b6fa6e8" - integrity sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/plugin-syntax-json-strings" "^7.8.3" - -"@babel/plugin-proposal-logical-assignment-operators@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz#be23c0ba74deec1922e639832904be0bea73cdea" - integrity sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - -"@babel/plugin-proposal-nullish-coalescing-operator@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz#141fc20b6857e59459d430c850a0011e36561d99" - integrity sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - -"@babel/plugin-proposal-numeric-separator@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz#d6b69f4af63fb38b6ca2558442a7fb191236eba9" - integrity sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - -"@babel/plugin-proposal-object-rest-spread@^7.15.6", "@babel/plugin-proposal-object-rest-spread@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.7.tgz#94593ef1ddf37021a25bdcb5754c4a8d534b01d8" - integrity sha512-3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA== - dependencies: - "@babel/compat-data" "^7.16.4" - "@babel/helper-compilation-targets" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.16.7" - -"@babel/plugin-proposal-optional-catch-binding@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz#c623a430674ffc4ab732fd0a0ae7722b67cb74cf" - integrity sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - -"@babel/plugin-proposal-optional-chaining@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz#7cd629564724816c0e8a969535551f943c64c39a" - integrity sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - -"@babel/plugin-proposal-private-methods@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.7.tgz#e418e3aa6f86edd6d327ce84eff188e479f571e0" - integrity sha512-7twV3pzhrRxSwHeIvFE6coPgvo+exNDOiGUMg39o2LiLo1Y+4aKpfkcLGcg1UHonzorCt7SNXnoMyCnnIOA8Sw== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-proposal-private-property-in-object@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz#b0b8cef543c2c3d57e59e2c611994861d46a3fce" - integrity sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - "@babel/helper-create-class-features-plugin" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - -"@babel/plugin-proposal-unicode-property-regex@^7.16.7", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz#635d18eb10c6214210ffc5ff4932552de08188a2" - integrity sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-syntax-async-generators@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" - integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-class-properties@^7.12.13": - version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" - integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== - dependencies: - "@babel/helper-plugin-utils" "^7.12.13" - -"@babel/plugin-syntax-class-static-block@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" - integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-dynamic-import@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" - integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-export-namespace-from@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" - integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-syntax-json-strings@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" - integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" - integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-numeric-separator@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-object-rest-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-chaining@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-private-property-in-object@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" - integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-top-level-await@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" - integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-arrow-functions@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz#44125e653d94b98db76369de9c396dc14bef4154" - integrity sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-async-to-generator@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.7.tgz#646e1262ac341b587ff5449844d4492dbb10ac4b" - integrity sha512-pFEfjnK4DfXCfAlA5I98BYdDJD8NltMzx19gt6DAmfE+2lXRfPUoa0/5SUjT4+TDE1W/rcxU/1lgN55vpAjjdg== - dependencies: - "@babel/helper-module-imports" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/helper-remap-async-to-generator" "^7.16.7" - -"@babel/plugin-transform-block-scoped-functions@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz#4d0d57d9632ef6062cdf354bb717102ee042a620" - integrity sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-block-scoping@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz#f50664ab99ddeaee5bc681b8f3a6ea9d72ab4f87" - integrity sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-classes@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz#8f4b9562850cd973de3b498f1218796eb181ce00" - integrity sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - "@babel/helper-environment-visitor" "^7.16.7" - "@babel/helper-function-name" "^7.16.7" - "@babel/helper-optimise-call-expression" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/helper-replace-supers" "^7.16.7" - "@babel/helper-split-export-declaration" "^7.16.7" - globals "^11.1.0" - -"@babel/plugin-transform-computed-properties@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz#66dee12e46f61d2aae7a73710f591eb3df616470" - integrity sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-destructuring@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.7.tgz#ca9588ae2d63978a4c29d3f33282d8603f618e23" - integrity sha512-VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-dotall-regex@^7.16.7", "@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz#6b2d67686fab15fb6a7fd4bd895d5982cfc81241" - integrity sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-duplicate-keys@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz#2207e9ca8f82a0d36a5a67b6536e7ef8b08823c9" - integrity sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-exponentiation-operator@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz#efa9862ef97e9e9e5f653f6ddc7b665e8536fe9b" - integrity sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA== - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-for-of@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz#649d639d4617dff502a9a158c479b3b556728d8c" - integrity sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-function-name@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz#5ab34375c64d61d083d7d2f05c38d90b97ec65cf" - integrity sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA== - dependencies: - "@babel/helper-compilation-targets" "^7.16.7" - "@babel/helper-function-name" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-literals@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz#254c9618c5ff749e87cb0c0cef1a0a050c0bdab1" - integrity sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-member-expression-literals@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz#6e5dcf906ef8a098e630149d14c867dd28f92384" - integrity sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-modules-amd@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz#b28d323016a7daaae8609781d1f8c9da42b13186" - integrity sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g== - dependencies: - "@babel/helper-module-transforms" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - babel-plugin-dynamic-import-node "^2.3.3" - -"@babel/plugin-transform-modules-commonjs@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.7.tgz#fd119e6a433c527d368425b45df361e1e95d3c1a" - integrity sha512-h2RP2kE7He1ZWKyAlanMZrAbdv+Acw1pA8dQZhE025WJZE2z0xzFADAinXA9fxd5bn7JnM+SdOGcndGx1ARs9w== - dependencies: - "@babel/helper-module-transforms" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/helper-simple-access" "^7.16.7" - babel-plugin-dynamic-import-node "^2.3.3" - -"@babel/plugin-transform-modules-systemjs@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz#887cefaef88e684d29558c2b13ee0563e287c2d7" - integrity sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw== - dependencies: - "@babel/helper-hoist-variables" "^7.16.7" - "@babel/helper-module-transforms" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/helper-validator-identifier" "^7.16.7" - babel-plugin-dynamic-import-node "^2.3.3" - -"@babel/plugin-transform-modules-umd@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz#23dad479fa585283dbd22215bff12719171e7618" - integrity sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ== - dependencies: - "@babel/helper-module-transforms" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-named-capturing-groups-regex@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.7.tgz#749d90d94e73cf62c60a0cc8d6b94d29305a81f2" - integrity sha512-kFy35VwmwIQwCjwrAQhl3+c/kr292i4KdLPKp5lPH03Ltc51qnFlIADoyPxc/6Naz3ok3WdYKg+KK6AH+D4utg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.16.7" - -"@babel/plugin-transform-new-target@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz#9967d89a5c243818e0800fdad89db22c5f514244" - integrity sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-object-super@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz#ac359cf8d32cf4354d27a46867999490b6c32a94" - integrity sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/helper-replace-supers" "^7.16.7" - -"@babel/plugin-transform-parameters@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz#a1721f55b99b736511cb7e0152f61f17688f331f" - integrity sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-property-literals@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz#2dadac85155436f22c696c4827730e0fe1057a55" - integrity sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-regenerator@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz#9e7576dc476cb89ccc5096fff7af659243b4adeb" - integrity sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q== - dependencies: - regenerator-transform "^0.14.2" - -"@babel/plugin-transform-reserved-words@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz#1d798e078f7c5958eec952059c460b220a63f586" - integrity sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-runtime@^7.15.8": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.7.tgz#1da184cb83a2287a01956c10c60e66dd503c18aa" - integrity sha512-2FoHiSAWkdq4L06uaDN3rS43i6x28desUVxq+zAFuE6kbWYQeiLPJI5IC7Sg9xKYVcrBKSQkVUfH6aeQYbl9QA== - dependencies: - "@babel/helper-module-imports" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - babel-plugin-polyfill-corejs2 "^0.3.0" - babel-plugin-polyfill-corejs3 "^0.4.0" - babel-plugin-polyfill-regenerator "^0.3.0" - semver "^6.3.0" - -"@babel/plugin-transform-shorthand-properties@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz#e8549ae4afcf8382f711794c0c7b6b934c5fbd2a" - integrity sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-spread@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz#a303e2122f9f12e0105daeedd0f30fb197d8ff44" - integrity sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" - -"@babel/plugin-transform-sticky-regex@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz#c84741d4f4a38072b9a1e2e3fd56d359552e8660" - integrity sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-template-literals@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz#f3d1c45d28967c8e80f53666fc9c3e50618217ab" - integrity sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-typeof-symbol@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz#9cdbe622582c21368bd482b660ba87d5545d4f7e" - integrity sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-unicode-escapes@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz#da8717de7b3287a2c6d659750c964f302b31ece3" - integrity sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-unicode-regex@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz#0f7aa4a501198976e25e82702574c34cfebe9ef2" - integrity sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/preset-env@^7.15.8": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.16.7.tgz#c491088856d0b3177822a2bf06cb74d76327aa56" - integrity sha512-urX3Cee4aOZbRWOSa3mKPk0aqDikfILuo+C7qq7HY0InylGNZ1fekq9jmlr3pLWwZHF4yD7heQooc2Pow2KMyQ== - dependencies: - "@babel/compat-data" "^7.16.4" - "@babel/helper-compilation-targets" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/helper-validator-option" "^7.16.7" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.16.7" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.16.7" - "@babel/plugin-proposal-async-generator-functions" "^7.16.7" - "@babel/plugin-proposal-class-properties" "^7.16.7" - "@babel/plugin-proposal-class-static-block" "^7.16.7" - "@babel/plugin-proposal-dynamic-import" "^7.16.7" - "@babel/plugin-proposal-export-namespace-from" "^7.16.7" - "@babel/plugin-proposal-json-strings" "^7.16.7" - "@babel/plugin-proposal-logical-assignment-operators" "^7.16.7" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.16.7" - "@babel/plugin-proposal-numeric-separator" "^7.16.7" - "@babel/plugin-proposal-object-rest-spread" "^7.16.7" - "@babel/plugin-proposal-optional-catch-binding" "^7.16.7" - "@babel/plugin-proposal-optional-chaining" "^7.16.7" - "@babel/plugin-proposal-private-methods" "^7.16.7" - "@babel/plugin-proposal-private-property-in-object" "^7.16.7" - "@babel/plugin-proposal-unicode-property-regex" "^7.16.7" - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-class-properties" "^7.12.13" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - "@babel/plugin-syntax-top-level-await" "^7.14.5" - "@babel/plugin-transform-arrow-functions" "^7.16.7" - "@babel/plugin-transform-async-to-generator" "^7.16.7" - "@babel/plugin-transform-block-scoped-functions" "^7.16.7" - "@babel/plugin-transform-block-scoping" "^7.16.7" - "@babel/plugin-transform-classes" "^7.16.7" - "@babel/plugin-transform-computed-properties" "^7.16.7" - "@babel/plugin-transform-destructuring" "^7.16.7" - "@babel/plugin-transform-dotall-regex" "^7.16.7" - "@babel/plugin-transform-duplicate-keys" "^7.16.7" - "@babel/plugin-transform-exponentiation-operator" "^7.16.7" - "@babel/plugin-transform-for-of" "^7.16.7" - "@babel/plugin-transform-function-name" "^7.16.7" - "@babel/plugin-transform-literals" "^7.16.7" - "@babel/plugin-transform-member-expression-literals" "^7.16.7" - "@babel/plugin-transform-modules-amd" "^7.16.7" - "@babel/plugin-transform-modules-commonjs" "^7.16.7" - "@babel/plugin-transform-modules-systemjs" "^7.16.7" - "@babel/plugin-transform-modules-umd" "^7.16.7" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.16.7" - "@babel/plugin-transform-new-target" "^7.16.7" - "@babel/plugin-transform-object-super" "^7.16.7" - "@babel/plugin-transform-parameters" "^7.16.7" - "@babel/plugin-transform-property-literals" "^7.16.7" - "@babel/plugin-transform-regenerator" "^7.16.7" - "@babel/plugin-transform-reserved-words" "^7.16.7" - "@babel/plugin-transform-shorthand-properties" "^7.16.7" - "@babel/plugin-transform-spread" "^7.16.7" - "@babel/plugin-transform-sticky-regex" "^7.16.7" - "@babel/plugin-transform-template-literals" "^7.16.7" - "@babel/plugin-transform-typeof-symbol" "^7.16.7" - "@babel/plugin-transform-unicode-escapes" "^7.16.7" - "@babel/plugin-transform-unicode-regex" "^7.16.7" - "@babel/preset-modules" "^0.1.5" - "@babel/types" "^7.16.7" - babel-plugin-polyfill-corejs2 "^0.3.0" - babel-plugin-polyfill-corejs3 "^0.4.0" - babel-plugin-polyfill-regenerator "^0.3.0" - core-js-compat "^3.19.1" - semver "^6.3.0" - -"@babel/preset-modules@^0.1.5": - version "0.1.5" - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9" - integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" - "@babel/plugin-transform-dotall-regex" "^7.4.4" - "@babel/types" "^7.4.4" - esutils "^2.0.2" - -"@babel/runtime@^7.15.4", "@babel/runtime@^7.8.4": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.16.7.tgz#03ff99f64106588c9c403c6ecb8c3bafbbdff1fa" - integrity sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ== - dependencies: - regenerator-runtime "^0.13.4" - -"@babel/template@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155" - integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== - dependencies: - "@babel/code-frame" "^7.16.7" - "@babel/parser" "^7.16.7" - "@babel/types" "^7.16.7" - -"@babel/traverse@^7.13.0", "@babel/traverse@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.16.7.tgz#dac01236a72c2560073658dd1a285fe4e0865d76" - integrity sha512-8KWJPIb8c2VvY8AJrydh6+fVRo2ODx1wYBU2398xJVq0JomuLBZmVQzLPBblJgHIGYG4znCpUZUZ0Pt2vdmVYQ== - dependencies: - "@babel/code-frame" "^7.16.7" - "@babel/generator" "^7.16.7" - "@babel/helper-environment-visitor" "^7.16.7" - "@babel/helper-function-name" "^7.16.7" - "@babel/helper-hoist-variables" "^7.16.7" - "@babel/helper-split-export-declaration" "^7.16.7" - "@babel/parser" "^7.16.7" - "@babel/types" "^7.16.7" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/types@^7.0.0", "@babel/types@^7.16.0", "@babel/types@^7.16.7", "@babel/types@^7.3.0", "@babel/types@^7.4.4": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.16.7.tgz#4ed19d51f840ed4bd5645be6ce40775fecf03159" - integrity sha512-E8HuV7FO9qLpx6OtoGfUQ2cjIYnbFwvZWYBS+87EwtdMvmUPJSwykpovFB+8insbpF0uJcpr8KMUi64XZntZcg== - dependencies: - "@babel/helper-validator-identifier" "^7.16.7" - to-fast-properties "^2.0.0" - -"@discoveryjs/json-ext@^0.5.0": - version "0.5.6" - resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.6.tgz#d5e0706cf8c6acd8c6032f8d54070af261bbbb2f" - integrity sha512-ws57AidsDvREKrZKYffXddNkyaF14iHNHm8VQnZH6t99E8gczjNN0GpvcGny0imC80yQ0tHz1xVUKk/KFQSUyA== - -"@fortawesome/fontawesome-free@^5.15.3": - version "5.15.4" - resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.4.tgz#ecda5712b61ac852c760d8b3c79c96adca5554e5" - integrity sha512-eYm8vijH/hpzr/6/1CJ/V/Eb1xQFW2nnUKArb3z+yUWv7HTwj6M7SP957oMjfZjAHU6qpoNc2wQvIxBLWYa/Jg== - -"@johmun/vue-tags-input@^2.1.0": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@johmun/vue-tags-input/-/vue-tags-input-2.1.0.tgz#d265c00ecea092ecfcea21945f31c22a619e4862" - integrity sha512-Fdwfss/TqCqMJbGAkmlzKbcG/ia1MstYjhqPBj+zG7h/166tIcE1TIftUxhT9LZ+RWjRSG0EFA1UyaHQSr3k3Q== - dependencies: - vue "^2.6.10" - -"@lgaitan/pace-progress@^1.0.7": - version "1.0.7" - resolved "https://registry.yarnpkg.com/@lgaitan/pace-progress/-/pace-progress-1.0.7.tgz#c96fbbd9fd4cf528feed34ea0c8f9d8b3e98f0dd" - integrity sha1-yW+72f1M9Sj+7TTqDI+diz6Y8N0= - -"@nodelib/fs.scandir@2.1.5": - version "2.1.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" - integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== - dependencies: - "@nodelib/fs.stat" "2.0.5" - run-parallel "^1.1.9" - -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" - integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== - -"@nodelib/fs.walk@^1.2.3": - version "1.2.8" - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" - integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== - dependencies: - "@nodelib/fs.scandir" "2.1.5" - fastq "^1.6.0" - -"@nuxt/opencollective@^0.3.2": - version "0.3.2" - resolved "https://registry.yarnpkg.com/@nuxt/opencollective/-/opencollective-0.3.2.tgz#83cb70cdb2bac5fad6f8c93529e7b11187d49c02" - integrity sha512-XG7rUdXG9fcafu9KTDIYjJSkRO38EwjlKYIb5TQ/0WDbiTUTtUtgncMscKOYzfsY86kGs05pAuMOR+3Fi0aN3A== - dependencies: - chalk "^4.1.0" - consola "^2.15.0" - node-fetch "^2.6.1" - -"@sweetalert2/theme-bootstrap-4@^4.0.3": - version "4.0.5" - resolved "https://registry.yarnpkg.com/@sweetalert2/theme-bootstrap-4/-/theme-bootstrap-4-4.0.5.tgz#488eac0a85e7601a42dc8b1d95ec8fc73ff330aa" - integrity sha512-pe5mQ98sgrphNVq6Xe5BsWxsfI1Z8zT9C2oux6+4B6Qt30qYo58Q+bnzRs8pV95O9/URt/QJZyl+R8SabMeW6g== - -"@trysound/sax@0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" - integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== - -"@ttskch/select2-bootstrap4-theme@^1.5.2": - version "1.5.2" - resolved "https://registry.yarnpkg.com/@ttskch/select2-bootstrap4-theme/-/select2-bootstrap4-theme-1.5.2.tgz#3b4519b349f3e7831c28752a1e9617312a192656" - integrity sha512-gAj8qNy/VYwQDBkACm0USM66kxFai8flX83ayRXPNhzZckEgSqIBB9sM74SCM3ssgeX+ZVy4BifTnLis+KpIyg== - -"@types/babel__core@^7.1.16": - version "7.1.18" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.18.tgz#1a29abcc411a9c05e2094c98f9a1b7da6cdf49f8" - integrity sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - "@types/babel__generator" "*" - "@types/babel__template" "*" - "@types/babel__traverse" "*" - -"@types/babel__generator@*": - version "7.6.4" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" - integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== - dependencies: - "@babel/types" "^7.0.0" - -"@types/babel__template@*": - version "7.4.1" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" - integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - -"@types/babel__traverse@*": - version "7.14.2" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz#ffcd470bbb3f8bf30481678fb5502278ca833a43" - integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA== - dependencies: - "@babel/types" "^7.3.0" - -"@types/clean-css@^4.2.5": - version "4.2.5" - resolved "https://registry.yarnpkg.com/@types/clean-css/-/clean-css-4.2.5.tgz#69ce62cc13557c90ca40460133f672dc52ceaf89" - integrity sha512-NEzjkGGpbs9S9fgC4abuBvTpVwE3i+Acu9BBod3PUyjDVZcNsGx61b8r2PphR61QGPnn0JHVs5ey6/I4eTrkxw== - dependencies: - "@types/node" "*" - source-map "^0.6.0" - -"@types/eslint-scope@^3.7.0": - version "3.7.2" - resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.2.tgz#11e96a868c67acf65bf6f11d10bb89ea71d5e473" - integrity sha512-TzgYCWoPiTeRg6RQYgtuW7iODtVoKu3RVL72k3WohqhjfaOLK5Mg2T4Tg1o2bSfu0vPkoI48wdQFv5b/Xe04wQ== - dependencies: - "@types/eslint" "*" - "@types/estree" "*" - -"@types/eslint@*": - version "8.2.1" - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.2.1.tgz#13f3d69bac93c2ae008019c28783868d0a1d6605" - integrity sha512-UP9rzNn/XyGwb5RQ2fok+DzcIRIYwc16qTXse5+Smsy8MOIccCChT15KAwnsgQx4PzJkaMq4myFyZ4CL5TjhIQ== - dependencies: - "@types/estree" "*" - "@types/json-schema" "*" - -"@types/estree@*", "@types/estree@^0.0.50": - version "0.0.50" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.50.tgz#1e0caa9364d3fccd2931c3ed96fdbeaa5d4cca83" - integrity sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw== - -"@types/glob@^7.1.1": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb" - integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== - dependencies: - "@types/minimatch" "*" - "@types/node" "*" - -"@types/http-proxy@^1.17.5": - version "1.17.8" - resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.8.tgz#968c66903e7e42b483608030ee85800f22d03f55" - integrity sha512-5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA== - dependencies: - "@types/node" "*" - -"@types/imagemin-gifsicle@^7.0.1": - version "7.0.1" - resolved "https://registry.yarnpkg.com/@types/imagemin-gifsicle/-/imagemin-gifsicle-7.0.1.tgz#0844a96a338438bb98f77b298acf217260d0d409" - integrity sha512-kUz6sUh0P95JOS0RGEaaemWUrASuw+dLsWIveK2UZJx74id/B9epgblMkCk/r5MjUWbZ83wFvacG5Rb/f97gyA== - dependencies: - "@types/imagemin" "*" - -"@types/imagemin-mozjpeg@^8.0.1": - version "8.0.1" - resolved "https://registry.yarnpkg.com/@types/imagemin-mozjpeg/-/imagemin-mozjpeg-8.0.1.tgz#eaf2f07aea3a317a1710ef2c763ec53f3bcfcdc5" - integrity sha512-kMQWEoKxxhlnH4POI3qfW9DjXlQfi80ux3l2b3j5R3eudSCoUIzKQLkfMjNJ6eMYnMWBcB+rfQOWqIzdIwFGKw== - dependencies: - "@types/imagemin" "*" - -"@types/imagemin-optipng@^5.2.1": - version "5.2.1" - resolved "https://registry.yarnpkg.com/@types/imagemin-optipng/-/imagemin-optipng-5.2.1.tgz#6ef033f3b15d281009de4e0bd2cadf6cbd2e741a" - integrity sha512-XCM/3q+HUL7v4zOqMI+dJ5dTxT+MUukY9KU49DSnYb/4yWtSMHJyADP+WHSMVzTR63J2ZvfUOzSilzBNEQW78g== - dependencies: - "@types/imagemin" "*" - -"@types/imagemin-svgo@^8.0.0": - version "8.0.1" - resolved "https://registry.yarnpkg.com/@types/imagemin-svgo/-/imagemin-svgo-8.0.1.tgz#03af689b75dbdeb634c2457ba22043530a00d87e" - integrity sha512-YafkdrVAcr38U0Ln1C+L1n4SIZqC47VBHTyxCq7gTUSd1R9MdIvMcrljWlgU1M9O68WZDeQWUrKipKYfEOCOvQ== - dependencies: - "@types/imagemin" "*" - "@types/svgo" "^1" - -"@types/imagemin@*": - version "8.0.0" - resolved "https://registry.yarnpkg.com/@types/imagemin/-/imagemin-8.0.0.tgz#bf5bbe1feff3b112c7e0de06d024712ad261e033" - integrity sha512-B9X2CUeDv/uUeY9CqkzSTfmsLkeJP6PkmXlh4lODBbf9SwpmNuLS30WzUOi863dgsjY3zt3gY5q2F+UdifRi1A== - dependencies: - "@types/node" "*" - -"@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": - version "7.0.9" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d" - integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ== - -"@types/minimatch@*": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" - integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== - -"@types/node@*": - version "17.0.6" - resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.6.tgz#cc1589c9ee853b389e67e8fb4384e0f250a139b9" - integrity sha512-+XBAjfZmmivILUzO0HwBJoYkAyyySSLg5KCGBDFLomJo0sV6szvVLAf4ANZZ0pfWzgEds5KmGLG9D5hfEqOhaA== - -"@types/parse-json@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" - integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== - -"@types/retry@^0.12.0": - version "0.12.1" - resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.1.tgz#d8f1c0d0dc23afad6dc16a9e993a0865774b4065" - integrity sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g== - -"@types/svgo@^1": - version "1.3.6" - resolved "https://registry.yarnpkg.com/@types/svgo/-/svgo-1.3.6.tgz#9db00a7ddf9b26ad2feb6b834bef1818677845e1" - integrity sha512-AZU7vQcy/4WFEuwnwsNsJnFwupIpbllH1++LXScN6uxT1Z4zPzdrWG97w4/I7eFKFTvfy/bHFStWjdBAg2Vjug== - -"@vue/component-compiler-utils@^3.1.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz#f9f5fb53464b0c37b2c8d2f3fbfe44df60f61dc9" - integrity sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ== - dependencies: - consolidate "^0.15.1" - hash-sum "^1.0.2" - lru-cache "^4.1.2" - merge-source-map "^1.1.0" - postcss "^7.0.36" - postcss-selector-parser "^6.0.2" - source-map "~0.6.1" - vue-template-es2015-compiler "^1.9.0" - optionalDependencies: - prettier "^1.18.2 || ^2.0.0" - -"@webassemblyjs/ast@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.1.tgz#2bfd767eae1a6996f432ff7e8d7fc75679c0b6a7" - integrity sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw== - dependencies: - "@webassemblyjs/helper-numbers" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - -"@webassemblyjs/floating-point-hex-parser@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz#f6c61a705f0fd7a6aecaa4e8198f23d9dc179e4f" - integrity sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ== - -"@webassemblyjs/helper-api-error@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz#1a63192d8788e5c012800ba6a7a46c705288fd16" - integrity sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg== - -"@webassemblyjs/helper-buffer@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz#832a900eb444884cde9a7cad467f81500f5e5ab5" - integrity sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA== - -"@webassemblyjs/helper-numbers@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz#64d81da219fbbba1e3bd1bfc74f6e8c4e10a62ae" - integrity sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ== - dependencies: - "@webassemblyjs/floating-point-hex-parser" "1.11.1" - "@webassemblyjs/helper-api-error" "1.11.1" - "@xtuc/long" "4.2.2" - -"@webassemblyjs/helper-wasm-bytecode@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz#f328241e41e7b199d0b20c18e88429c4433295e1" - integrity sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q== - -"@webassemblyjs/helper-wasm-section@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz#21ee065a7b635f319e738f0dd73bfbda281c097a" - integrity sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-buffer" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/wasm-gen" "1.11.1" - -"@webassemblyjs/ieee754@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz#963929e9bbd05709e7e12243a099180812992614" - integrity sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ== - dependencies: - "@xtuc/ieee754" "^1.2.0" - -"@webassemblyjs/leb128@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.1.tgz#ce814b45574e93d76bae1fb2644ab9cdd9527aa5" - integrity sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw== - dependencies: - "@xtuc/long" "4.2.2" - -"@webassemblyjs/utf8@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.1.tgz#d1f8b764369e7c6e6bae350e854dec9a59f0a3ff" - integrity sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ== - -"@webassemblyjs/wasm-edit@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz#ad206ebf4bf95a058ce9880a8c092c5dec8193d6" - integrity sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-buffer" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/helper-wasm-section" "1.11.1" - "@webassemblyjs/wasm-gen" "1.11.1" - "@webassemblyjs/wasm-opt" "1.11.1" - "@webassemblyjs/wasm-parser" "1.11.1" - "@webassemblyjs/wast-printer" "1.11.1" - -"@webassemblyjs/wasm-gen@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz#86c5ea304849759b7d88c47a32f4f039ae3c8f76" - integrity sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/ieee754" "1.11.1" - "@webassemblyjs/leb128" "1.11.1" - "@webassemblyjs/utf8" "1.11.1" - -"@webassemblyjs/wasm-opt@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz#657b4c2202f4cf3b345f8a4c6461c8c2418985f2" - integrity sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-buffer" "1.11.1" - "@webassemblyjs/wasm-gen" "1.11.1" - "@webassemblyjs/wasm-parser" "1.11.1" - -"@webassemblyjs/wasm-parser@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz#86ca734534f417e9bd3c67c7a1c75d8be41fb199" - integrity sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-api-error" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/ieee754" "1.11.1" - "@webassemblyjs/leb128" "1.11.1" - "@webassemblyjs/utf8" "1.11.1" - -"@webassemblyjs/wast-printer@1.11.1": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz#d0c73beda8eec5426f10ae8ef55cee5e7084c2f0" - integrity sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg== - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@xtuc/long" "4.2.2" - -"@webpack-cli/configtest@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-1.1.0.tgz#8342bef0badfb7dfd3b576f2574ab80c725be043" - integrity sha512-ttOkEkoalEHa7RaFYpM0ErK1xc4twg3Am9hfHhL7MVqlHebnkYd2wuI/ZqTDj0cVzZho6PdinY0phFZV3O0Mzg== - -"@webpack-cli/info@^1.4.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-1.4.0.tgz#b9179c3227ab09cbbb149aa733475fcf99430223" - integrity sha512-F6b+Man0rwE4n0409FyAJHStYA5OIZERxmnUfLVwv0mc0V1wLad3V7jqRlMkgKBeAq07jUvglacNaa6g9lOpuw== - dependencies: - envinfo "^7.7.3" - -"@webpack-cli/serve@^1.6.0": - version "1.6.0" - resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-1.6.0.tgz#2c275aa05c895eccebbfc34cfb223c6e8bd591a2" - integrity sha512-ZkVeqEmRpBV2GHvjjUZqEai2PpUbuq8Bqd//vEYsp63J8WyexI8ppCqVS3Zs0QADf6aWuPdU+0XsPI647PVlQA== - -"@xtuc/ieee754@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" - integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== - -"@xtuc/long@4.2.2": - version "4.2.2" - resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" - integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== - -accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: - version "1.3.7" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" - integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== - dependencies: - mime-types "~2.1.24" - negotiator "0.6.2" - -acorn-import-assertions@^1.7.6: - version "1.8.0" - resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz#ba2b5939ce62c238db6d93d81c9b111b29b855e9" - integrity sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw== - -acorn-node@^1.3.0: - version "1.8.2" - resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" - integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== - dependencies: - acorn "^7.0.0" - acorn-walk "^7.0.0" - xtend "^4.0.2" - -acorn-walk@^7.0.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" - integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== - -acorn@^7.0.0: - version "7.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" - integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== - -acorn@^8.4.1: - version "8.7.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf" - integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ== - -adjust-sourcemap-loader@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz#fc4a0fd080f7d10471f30a7320f25560ade28c99" - integrity sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A== - dependencies: - loader-utils "^2.0.0" - regex-parser "^2.2.11" - -admin-lte@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/admin-lte/-/admin-lte-3.1.0.tgz#3e9e76267c53d0d19746bb592f24d82a4d262c15" - integrity sha512-JkmmkjbGgB5RCPwpaUCEktpZz/Ez/vBdfCNx8J3u8doaRRUUV1/oj4PuIiOV+xrNMt05q87131xoGySr/eA4uA== - dependencies: - "@fortawesome/fontawesome-free" "^5.15.3" - "@lgaitan/pace-progress" "^1.0.7" - "@sweetalert2/theme-bootstrap-4" "^4.0.3" - "@ttskch/select2-bootstrap4-theme" "^1.5.2" - bootstrap "^4.6.0" - bootstrap-colorpicker "^3.2.0" - bootstrap-slider "^11.0.2" - bootstrap-switch "3.3.4" - bootstrap4-duallistbox "^4.0.2" - bs-custom-file-input "^1.3.4" - bs-stepper "^1.7.0" - chart.js "^2.9.4" - codemirror "^5.60.0" - datatables.net "^1.10.24" - datatables.net-autofill-bs4 "^2.3.5" - datatables.net-bs4 "^1.10.24" - datatables.net-buttons-bs4 "^1.7.0" - datatables.net-colreorder-bs4 "^1.5.3" - datatables.net-fixedcolumns-bs4 "^3.3.2" - datatables.net-fixedheader-bs4 "^3.1.8" - datatables.net-keytable-bs4 "^2.6.1" - datatables.net-responsive-bs4 "^2.2.7" - datatables.net-rowgroup-bs4 "^1.1.2" - datatables.net-rowreorder-bs4 "^1.2.7" - datatables.net-scroller-bs4 "^2.0.3" - datatables.net-searchbuilder-bs4 "^1.0.1" - datatables.net-searchpanes-bs4 "^1.2.2" - datatables.net-select-bs4 "^1.3.2" - daterangepicker "^3.1.0" - dropzone "^5.8.1" - ekko-lightbox "^5.3.0" - fastclick "^1.0.6" - filterizr "^2.2.4" - flag-icon-css "^3.5.0" - flot "^4.2.2" - fs-extra "^9.1.0" - fullcalendar "^5.5.1" - icheck-bootstrap "^3.0.1" - inputmask "^5.0.5" - ion-rangeslider "^2.3.1" - jquery "^3.6.0" - jquery-knob-chif "^1.2.13" - jquery-mapael "^2.2.0" - jquery-mousewheel "^3.1.13" - jquery-ui-dist "^1.12.1" - jquery-validation "^1.19.3" - jqvmap-novulnerability "^1.5.1" - jsgrid "^1.5.3" - jszip "^3.6.0" - moment "^2.29.1" - overlayscrollbars "^1.13.1" - pdfmake "^0.1.70" - popper.js "^1.16.1" - raphael "^2.3.0" - select2 "^4.0.13" - sparklines "^1.3.0" - summernote "^0.8.18" - sweetalert2 "^10.15.6" - tempusdominus-bootstrap-4 "^5.39.0" - toastr "^2.1.4" - uplot "^1.6.7" - -aggregate-error@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - -ajv-formats@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" - integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== - dependencies: - ajv "^8.0.0" - -ajv-keywords@^3.5.2: - version "3.5.2" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" - integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== - -ajv-keywords@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" - integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== - dependencies: - fast-deep-equal "^3.1.3" - -ajv@^6.12.4, ajv@^6.12.5: - version "6.12.6" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ajv@^8.0.0, ajv@^8.8.0: - version "8.8.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.8.2.tgz#01b4fef2007a28bf75f0b7fc009f62679de4abbb" - integrity sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw== - dependencies: - fast-deep-equal "^3.1.1" - json-schema-traverse "^1.0.0" - require-from-string "^2.0.2" - uri-js "^4.2.2" - -alphanum-sort@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" - integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= - -amdefine@>=0.0.4: - version "1.0.1" - resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" - integrity sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU= - -ansi-html-community@^0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41" - integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== - -ansi-regex@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== - -ansi-regex@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" - integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== - -ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.0.0, ansi-styles@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -anymatch@~3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" - integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -array-flatten@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= - -array-flatten@^2.1.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099" - integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== - -array-from@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/array-from/-/array-from-2.1.1.tgz#cfe9d8c26628b9dc5aecc62a9f5d8f1f352c1195" - integrity sha1-z+nYwmYoudxa7MYqn12PHzUsEZU= - -array-union@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== - -asn1.js@^5.2.0: - version "5.4.1" - resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" - integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== - dependencies: - bn.js "^4.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - safer-buffer "^2.1.0" - -assert@^1.1.1: - version "1.5.0" - resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" - integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== - dependencies: - object-assign "^4.1.1" - util "0.10.3" - -ast-transform@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/ast-transform/-/ast-transform-0.0.0.tgz#74944058887d8283e189d954600947bc98fe0062" - integrity sha1-dJRAWIh9goPhidlUYAlHvJj+AGI= - dependencies: - escodegen "~1.2.0" - esprima "~1.0.4" - through "~2.3.4" - -ast-types@^0.7.0: - version "0.7.8" - resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.7.8.tgz#902d2e0d60d071bdcd46dc115e1809ed11c138a9" - integrity sha1-kC0uDWDQcb3NRtwRXhgJ7RHBOKk= - -async@^2.6.2: - version "2.6.3" - resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" - integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== - dependencies: - lodash "^4.17.14" - -at-least-node@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" - integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== - -autoprefixer@^10.4.0: - version "10.4.1" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.1.tgz#1735959d6462420569bc42408016acbc56861c12" - integrity sha512-B3ZEG7wtzXDRCEFsan7HmR2AeNsxdJB0+sEC0Hc5/c2NbhJqPwuZm+tn233GBVw82L+6CtD6IPSfVruwKjfV3A== - dependencies: - browserslist "^4.19.1" - caniuse-lite "^1.0.30001294" - fraction.js "^4.1.2" - normalize-range "^0.1.2" - picocolors "^1.0.0" - postcss-value-parser "^4.2.0" - -axios-cache-adapter@^2.7.3: - version "2.7.3" - resolved "https://registry.yarnpkg.com/axios-cache-adapter/-/axios-cache-adapter-2.7.3.tgz#0d1eefa0f25b88f42a95c7528d7345bde688181d" - integrity sha512-A+ZKJ9lhpjthOEp4Z3QR/a9xC4du1ALaAsejgRGrH9ef6kSDxdFrhRpulqsh9khsEnwXxGfgpUuDp1YXMNMEiQ== - dependencies: - cache-control-esm "1.0.0" - md5 "^2.2.1" - -axios@^0.21: - version "0.21.4" - resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" - integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== - dependencies: - follow-redirects "^1.14.0" - -babel-loader@^8.2.3: - version "8.2.3" - resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.3.tgz#8986b40f1a64cacfcb4b8429320085ef68b1342d" - integrity sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw== - dependencies: - find-cache-dir "^3.3.1" - loader-utils "^1.4.0" - make-dir "^3.1.0" - schema-utils "^2.6.5" - -babel-plugin-dynamic-import-node@^2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" - integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== - dependencies: - object.assign "^4.1.0" - -babel-plugin-polyfill-corejs2@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.0.tgz#407082d0d355ba565af24126fb6cb8e9115251fd" - integrity sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA== - dependencies: - "@babel/compat-data" "^7.13.11" - "@babel/helper-define-polyfill-provider" "^0.3.0" - semver "^6.1.1" - -babel-plugin-polyfill-corejs3@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.4.0.tgz#0b571f4cf3d67f911512f5c04842a7b8e8263087" - integrity sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.3.0" - core-js-compat "^3.18.0" - -babel-plugin-polyfill-regenerator@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.0.tgz#9ebbcd7186e1a33e21c5e20cae4e7983949533be" - integrity sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.3.0" - -babel-runtime@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" - integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= - dependencies: - core-js "^2.4.0" - regenerator-runtime "^0.11.0" - -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -base64-js@0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-0.0.8.tgz#1101e9544f4a76b1bc3b26d452ca96d7a35e7978" - integrity sha1-EQHpVE9KdrG8OybUUsqW16NeeXg= - -base64-js@^1.0.2, base64-js@^1.1.2, base64-js@^1.3.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -batch@0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" - integrity sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY= - -big.js@^5.2.2: - version "5.2.2" - resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" - integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== - -binary-extensions@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== - -bluebird@^3.1.1: - version "3.7.2" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" - integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== - -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: - version "4.12.0" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" - integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== - -bn.js@^5.0.0, bn.js@^5.1.1: - version "5.2.0" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz#358860674396c6997771a9d051fcc1b57d4ae002" - integrity sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw== - -body-parser@1.19.1: - version "1.19.1" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.1.tgz#1499abbaa9274af3ecc9f6f10396c995943e31d4" - integrity sha512-8ljfQi5eBk8EJfECMrgqNGWPEY5jWP+1IzkzkGdFFEwFQZZyaZ21UqdaHktgiMlH0xLHqIFtE/u2OYE5dOtViA== - dependencies: - bytes "3.1.1" - content-type "~1.0.4" - debug "2.6.9" - depd "~1.1.2" - http-errors "1.8.1" - iconv-lite "0.4.24" - on-finished "~2.3.0" - qs "6.9.6" - raw-body "2.4.2" - type-is "~1.6.18" - -bonjour@^3.5.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5" - integrity sha1-jokKGD2O6aI5OzhExpGkK897yfU= - dependencies: - array-flatten "^2.1.0" - deep-equal "^1.0.1" - dns-equal "^1.0.0" - dns-txt "^2.0.2" - multicast-dns "^6.0.1" - multicast-dns-service-types "^1.1.0" - -boolbase@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" - integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= - -bootstrap-colorpicker@^3.2.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/bootstrap-colorpicker/-/bootstrap-colorpicker-3.4.0.tgz#3d1873071542755a9b31cf5b314f771e2fcc7727" - integrity sha512-7vA0hvLrat3ptobEKlT9+6amzBUJcDAoh6hJRQY/AD+5dVZYXXf1ivRfrTwmuwiVLJo9rZwM8YB4lYzp6agzqg== - dependencies: - bootstrap ">=4.0" - jquery ">=2.2" - popper.js ">=1.10" - -bootstrap-slider@^11.0.2: - version "11.0.2" - resolved "https://registry.yarnpkg.com/bootstrap-slider/-/bootstrap-slider-11.0.2.tgz#4b167c165f322339cc66f0c7166b5a39e289e251" - integrity sha512-CdwS+Z6X79OkLes9RfDgPB9UIY/+81wTkm6ktdSB6hdyiRbjJLFQIjZdnEr55tDyXZfgC7U6yeSXkNN9ZdGqjA== - -bootstrap-switch@3.3.4: - version "3.3.4" - resolved "https://registry.yarnpkg.com/bootstrap-switch/-/bootstrap-switch-3.3.4.tgz#70e0aeb2a877c0dc766991de108e2170fc29a2ff" - integrity sha1-cOCusqh3wNx2aZHeEI4hcPwpov8= - -bootstrap-vue@^2.21.2: - version "2.21.2" - resolved "https://registry.yarnpkg.com/bootstrap-vue/-/bootstrap-vue-2.21.2.tgz#ec38f66c3a2205becccddb6158a991d96509ed0b" - integrity sha512-0Exe+4MZysqhZNXIKf4TzkvXaupxh9EHsoCRez0o5Dc0J7rlafayOEwql63qXv74CgZO8E4U8ugRNJko1vMvNw== - dependencies: - "@nuxt/opencollective" "^0.3.2" - bootstrap ">=4.5.3 <5.0.0" - popper.js "^1.16.1" - portal-vue "^2.1.7" - vue-functional-data-merge "^3.1.0" - -bootstrap4-duallistbox@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/bootstrap4-duallistbox/-/bootstrap4-duallistbox-4.0.2.tgz#c6942e34a39d0d05e436d51ebaf31c9349f119d3" - integrity sha512-vQdANVE2NN0HMaZO9qWJy0C7u04uTpAmtUGO3KLq3xAZKCboJweQ437hDTszI6pbYV2olJCGZMbdhvIkBNGeGQ== - -bootstrap@>=4.0: - version "5.1.3" - resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.1.3.tgz#ba081b0c130f810fa70900acbc1c6d3c28fa8f34" - integrity sha512-fcQztozJ8jToQWXxVuEyXWW+dSo8AiXWKwiSSrKWsRB/Qt+Ewwza+JWoLKiTuQLaEPhdNAJ7+Dosc9DOIqNy7Q== - -"bootstrap@>=4.5.3 <5.0.0", bootstrap@^4.5.2, bootstrap@^4.6.0: - version "4.6.1" - resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.6.1.tgz#bc25380c2c14192374e8dec07cf01b2742d222a2" - integrity sha512-0dj+VgI9Ecom+rvvpNZ4MUZJz8dcX7WCX+eTID9+/8HgOkv3dsRzi8BGeZJCQU6flWQVYxwTQnEZFrmJSEO7og== - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -braces@^3.0.1, braces@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -brfs@^2.0.0, brfs@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/brfs/-/brfs-2.0.2.tgz#44237878fa82aa479ce4f5fe2c1796ec69f07845" - integrity sha512-IrFjVtwu4eTJZyu8w/V2gxU7iLTtcHih67sgEdzrhjLBMHp2uYefUBfdM4k2UvcuWMgV7PQDZHSLeNWnLFKWVQ== - dependencies: - quote-stream "^1.0.1" - resolve "^1.1.5" - static-module "^3.0.2" - through2 "^2.0.0" - -brorand@^1.0.1, brorand@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" - integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= - -brotli@^1.2.0: - version "1.3.2" - resolved "https://registry.yarnpkg.com/brotli/-/brotli-1.3.2.tgz#525a9cad4fcba96475d7d388f6aecb13eed52f46" - integrity sha1-UlqcrU/LqWR119OI9q7LE+7VL0Y= - dependencies: - base64-js "^1.1.2" - -browser-resolve@^1.8.1: - version "1.11.3" - resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" - integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== - dependencies: - resolve "1.1.7" - -browserify-aes@^1.0.0, browserify-aes@^1.0.4: - version "1.2.0" - resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" - integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== - dependencies: - buffer-xor "^1.0.3" - cipher-base "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.3" - inherits "^2.0.1" - safe-buffer "^5.0.1" - -browserify-cipher@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" - integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== - dependencies: - browserify-aes "^1.0.4" - browserify-des "^1.0.0" - evp_bytestokey "^1.0.0" - -browserify-des@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" - integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== - dependencies: - cipher-base "^1.0.1" - des.js "^1.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - -browserify-optional@^1.0.0, browserify-optional@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/browserify-optional/-/browserify-optional-1.0.1.tgz#1e13722cfde0d85f121676c2a72ced533a018869" - integrity sha1-HhNyLP3g2F8SFnbCpyztUzoBiGk= - dependencies: - ast-transform "0.0.0" - ast-types "^0.7.0" - browser-resolve "^1.8.1" - -browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: - version "4.1.0" - resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d" - integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== - dependencies: - bn.js "^5.0.0" - randombytes "^2.0.1" - -browserify-sign@^4.0.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3" - integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg== - dependencies: - bn.js "^5.1.1" - browserify-rsa "^4.0.1" - create-hash "^1.2.0" - create-hmac "^1.1.7" - elliptic "^6.5.3" - inherits "^2.0.4" - parse-asn1 "^5.1.5" - readable-stream "^3.6.0" - safe-buffer "^5.2.0" - -browserify-zlib@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" - integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== - dependencies: - pako "~1.0.5" - -browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.16.0, browserslist@^4.16.6, browserslist@^4.17.5, browserslist@^4.19.1: - version "4.19.1" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.19.1.tgz#4ac0435b35ab655896c31d53018b6dd5e9e4c9a3" - integrity sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A== - dependencies: - caniuse-lite "^1.0.30001286" - electron-to-chromium "^1.4.17" - escalade "^3.1.1" - node-releases "^2.0.1" - picocolors "^1.0.0" - -bs-custom-file-input@^1.3.4: - version "1.3.4" - resolved "https://registry.yarnpkg.com/bs-custom-file-input/-/bs-custom-file-input-1.3.4.tgz#c275cb8d4f1c02ba026324292509fa9a747dbda8" - integrity sha512-NBsQzTnef3OW1MvdKBbMHAYHssCd613MSeJV7z2McXznWtVMnJCy7Ckyc+PwxV6Pk16cu6YBcYWh/ZE0XWNKCA== - -bs-stepper@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/bs-stepper/-/bs-stepper-1.7.0.tgz#bfa4cc51c4e67957caae57f5bdcba1977186bac1" - integrity sha512-+DX7UKKgw2GI6ucsSCRd19VHYrxf/8znRCLs1lQVVLxz+h7EqgIOxoHcJ0/QTaaNoR9Cwg78ydo6hXIasyd3LA== - -buffer-equal@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-0.0.1.tgz#91bc74b11ea405bc916bc6aa908faafa5b4aac4b" - integrity sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs= - -buffer-from@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -buffer-indexof@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c" - integrity sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g== - -buffer-xor@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" - integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= - -buffer@^4.3.0: - version "4.9.2" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8" - integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg== - dependencies: - base64-js "^1.0.2" - ieee754 "^1.1.4" - isarray "^1.0.0" - -builtin-status-codes@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" - integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= - -bytes@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" - integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= - -bytes@3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.1.tgz#3f018291cb4cbad9accb6e6970bca9c8889e879a" - integrity sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg== - -cache-control-esm@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/cache-control-esm/-/cache-control-esm-1.0.0.tgz#417647ecf1837a5e74155f55d5a4ae32a84e2581" - integrity sha512-Fa3UV4+eIk4EOih8FTV6EEsVKO0W5XWtNs6FC3InTfVz+EjurjPfDXY5wZDo/lxjDxg5RjNcurLyxEJBcEUx9g== - -call-bind@^1.0.0, call-bind@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== - dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" - -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -camel-case@^4.1.1: - version "4.1.2" - resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" - integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== - dependencies: - pascal-case "^3.1.2" - tslib "^2.0.3" - -caniuse-api@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" - integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== - dependencies: - browserslist "^4.0.0" - caniuse-lite "^1.0.0" - lodash.memoize "^4.1.2" - lodash.uniq "^4.5.0" - -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001286, caniuse-lite@^1.0.30001294: - version "1.0.30001295" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001295.tgz#68a60f8f0664f342b2835c5d8898b4faea7b3d51" - integrity sha512-lSP16vcyC0FEy0R4ECc9duSPoKoZy+YkpGkue9G4D81OfPnliopaZrU10+qtPdT8PbGXad/PNx43TIQrOmJZSQ== - -chalk@^2.0.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^4.1.0, chalk@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -charenc@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" - integrity sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc= - -chart.js@^2.9.4: - version "2.9.4" - resolved "https://registry.yarnpkg.com/chart.js/-/chart.js-2.9.4.tgz#0827f9563faffb2dc5c06562f8eb10337d5b9684" - integrity sha512-B07aAzxcrikjAPyV+01j7BmOpxtQETxTSlQ26BEYJ+3iUkbNKaOJ/nDbT6JjyqYxseM0ON12COHYdU2cTIjC7A== - dependencies: - chartjs-color "^2.1.0" - moment "^2.10.2" - -chart.js@^3.7.0: - version "3.7.0" - resolved "https://registry.yarnpkg.com/chart.js/-/chart.js-3.7.0.tgz#7a19c93035341df801d613993c2170a1fcf1d882" - integrity sha512-31gVuqqKp3lDIFmzpKIrBeum4OpZsQjSIAqlOpgjosHDJZlULtvwLEZKtEhIAZc7JMPaHlYMys40Qy9Mf+1AAg== - -chartjs-color-string@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/chartjs-color-string/-/chartjs-color-string-0.6.0.tgz#1df096621c0e70720a64f4135ea171d051402f71" - integrity sha512-TIB5OKn1hPJvO7JcteW4WY/63v6KwEdt6udfnDE9iCAZgy+V4SrbSxoIbTw/xkUIapjEI4ExGtD0+6D3KyFd7A== - dependencies: - color-name "^1.0.0" - -chartjs-color@^2.1.0: - version "2.4.1" - resolved "https://registry.yarnpkg.com/chartjs-color/-/chartjs-color-2.4.1.tgz#6118bba202fe1ea79dd7f7c0f9da93467296c3b0" - integrity sha512-haqOg1+Yebys/Ts/9bLo/BqUcONQOdr/hoEr2LLTRl6C5LXctUdHxsCYfvQVg5JIxITrfCNUDr4ntqmQk9+/0w== - dependencies: - chartjs-color-string "^0.6.0" - color-convert "^1.9.3" - -"chokidar@>=3.0.0 <4.0.0", chokidar@^3.5.2: - version "3.5.2" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" - integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" - -chrome-trace-event@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" - integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== - -cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" - integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -clean-css@^4.2.3: - version "4.2.4" - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.4.tgz#733bf46eba4e607c6891ea57c24a989356831178" - integrity sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A== - dependencies: - source-map "~0.6.0" - -"clean-css@^4.2.3 || ^5.1.2": - version "5.2.2" - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.2.2.tgz#d3a7c6ee2511011e051719838bdcf8314dc4548d" - integrity sha512-/eR8ru5zyxKzpBLv9YZvMXgTSSQn7AdkMItMYynsFgGwTveCRVam9IUPFloE85B4vAIj05IuKmmEoV7/AQjT0w== - dependencies: - source-map "~0.6.0" - -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== - -cli-table3@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.0.tgz#b7b1bc65ca8e7b5cef9124e13dc2b21e2ce4faee" - integrity sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ== - dependencies: - object-assign "^4.1.0" - string-width "^4.2.0" - optionalDependencies: - colors "^1.1.2" - -cliui@^7.0.2: - version "7.0.4" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" - integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^7.0.0" - -clone-deep@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" - integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== - dependencies: - is-plain-object "^2.0.4" - kind-of "^6.0.2" - shallow-clone "^3.0.0" - -clone@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" - integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= - -codemirror@^5.60.0: - version "5.65.0" - resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.65.0.tgz#50344359393579f526ca53797e510ff75477117f" - integrity sha512-gWEnHKEcz1Hyz7fsQWpK7P0sPI2/kSkRX2tc7DFA6TmZuDN75x/1ejnH/Pn8adYKrLEA1V2ww6L00GudHZbSKw== - -collect.js@^4.28.5: - version "4.30.3" - resolved "https://registry.yarnpkg.com/collect.js/-/collect.js-4.30.3.tgz#8325272f48ad7c87bd3801d288a33d34f1c42921" - integrity sha512-u/+RntU9wk+B5dBfaZRZ0PsmjzBEd3rPfpB36A45cnjiufNACzFCjAB7D4MuE8fAaayxJbjLnq9ewQtMBTnPiw== - -color-convert@^1.9.0, color-convert@^1.9.3: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= - -color-name@^1.0.0, color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -colord@^2.9.1: - version "2.9.2" - resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.2.tgz#25e2bacbbaa65991422c07ea209e2089428effb1" - integrity sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ== - -colorette@^2.0.10, colorette@^2.0.14: - version "2.0.16" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.16.tgz#713b9af84fdb000139f04546bd4a93f62a5085da" - integrity sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g== - -colors@^1.1.2: - version "1.4.0" - resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" - integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== - -commander@^2.20.0, commander@^2.9.0: - version "2.20.3" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" - integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== - -commander@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" - integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== - -commander@^7.0.0, commander@^7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" - integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== - -commondir@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= - -compressible@~2.0.16: - version "2.0.18" - resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" - integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== - dependencies: - mime-db ">= 1.43.0 < 2" - -compression@^1.7.4: - version "1.7.4" - resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" - integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== - dependencies: - accepts "~1.3.5" - bytes "3.0.0" - compressible "~2.0.16" - debug "2.6.9" - on-headers "~1.0.2" - safe-buffer "5.1.2" - vary "~1.1.2" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= - -concat-stream@~1.6.0: - version "1.6.2" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" - integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== - dependencies: - buffer-from "^1.0.0" - inherits "^2.0.3" - readable-stream "^2.2.2" - typedarray "^0.0.6" - -concat@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/concat/-/concat-1.0.3.tgz#40f3353089d65467695cb1886b45edd637d8cca8" - integrity sha1-QPM1MInWVGdpXLGIa0Xt1jfYzKg= - dependencies: - commander "^2.9.0" - -connect-history-api-fallback@^1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc" - integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg== - -consola@^2.15.0, consola@^2.15.3: - version "2.15.3" - resolved "https://registry.yarnpkg.com/consola/-/consola-2.15.3.tgz#2e11f98d6a4be71ff72e0bdf07bd23e12cb61550" - integrity sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw== - -console-browserify@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" - integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== - -consolidate@^0.15.1: - version "0.15.1" - resolved "https://registry.yarnpkg.com/consolidate/-/consolidate-0.15.1.tgz#21ab043235c71a07d45d9aad98593b0dba56bab7" - integrity sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw== - dependencies: - bluebird "^3.1.1" - -constants-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" - integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= - -content-disposition@0.5.4: - version "0.5.4" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" - integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== - dependencies: - safe-buffer "5.2.1" - -content-type@~1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" - integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== - -convert-source-map@^1.5.1, convert-source-map@^1.7.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" - integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== - dependencies: - safe-buffer "~5.1.1" - -cookie-signature@1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" - integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= - -cookie@0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.1.tgz#afd713fe26ebd21ba95ceb61f9a8116e50a537d1" - integrity sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA== - -core-js-compat@^3.18.0, core-js-compat@^3.19.1: - version "3.20.2" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.20.2.tgz#d1ff6936c7330959b46b2e08b122a8b14e26140b" - integrity sha512-qZEzVQ+5Qh6cROaTPFLNS4lkvQ6mBzE3R6A6EEpssj7Zr2egMHgsy4XapdifqJDGC9CBiNv7s+ejI96rLNQFdg== - dependencies: - browserslist "^4.19.1" - semver "7.0.0" - -core-js@^2.4.0: - version "2.6.12" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" - integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== - -core-js@^3.15.2: - version "3.20.2" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.20.2.tgz#46468d8601eafc8b266bd2dd6bf9dee622779581" - integrity sha512-nuqhq11DcOAbFBV4zCbKeGbKQsUDRqTX0oqx7AttUBuqe3h20ixsE039QHelbL6P4h+9kytVqyEtyZ6gsiwEYw== - -core-util-is@~1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" - integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== - -cosmiconfig@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d" - integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ== - dependencies: - "@types/parse-json" "^4.0.0" - import-fresh "^3.2.1" - parse-json "^5.0.0" - path-type "^4.0.0" - yaml "^1.10.0" - -create-ecdh@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" - integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== - dependencies: - bn.js "^4.1.0" - elliptic "^6.5.3" - -create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" - integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== - dependencies: - cipher-base "^1.0.1" - inherits "^2.0.1" - md5.js "^1.3.4" - ripemd160 "^2.0.1" - sha.js "^2.4.0" - -create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" - integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== - dependencies: - cipher-base "^1.0.3" - create-hash "^1.1.0" - inherits "^2.0.1" - ripemd160 "^2.0.0" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - -cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -crypt@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" - integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs= - -crypto-browserify@^3.11.0: - version "3.12.0" - resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" - integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== - dependencies: - browserify-cipher "^1.0.0" - browserify-sign "^4.0.0" - create-ecdh "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.0" - diffie-hellman "^5.0.0" - inherits "^2.0.1" - pbkdf2 "^3.0.3" - public-encrypt "^4.0.0" - randombytes "^2.0.0" - randomfill "^1.0.3" - -crypto-js@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/crypto-js/-/crypto-js-4.1.1.tgz#9e485bcf03521041bd85844786b83fb7619736cf" - integrity sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw== - -css-declaration-sorter@^6.0.3: - version "6.1.3" - resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.1.3.tgz#e9852e4cf940ba79f509d9425b137d1f94438dc2" - integrity sha512-SvjQjNRZgh4ULK1LDJ2AduPKUKxIqmtU7ZAyi47BTV+M90Qvxr9AB6lKlLbDUfXqI9IQeYA8LbAsCZPpJEV3aA== - dependencies: - timsort "^0.3.0" - -css-loader@^5.2.6: - version "5.2.7" - resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-5.2.7.tgz#9b9f111edf6fb2be5dc62525644cbc9c232064ae" - integrity sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg== - dependencies: - icss-utils "^5.1.0" - loader-utils "^2.0.0" - postcss "^8.2.15" - postcss-modules-extract-imports "^3.0.0" - postcss-modules-local-by-default "^4.0.0" - postcss-modules-scope "^3.0.0" - postcss-modules-values "^4.0.0" - postcss-value-parser "^4.1.0" - schema-utils "^3.0.0" - semver "^7.3.5" - -css-select@^4.1.3: - version "4.2.1" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.2.1.tgz#9e665d6ae4c7f9d65dbe69d0316e3221fb274cdd" - integrity sha512-/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ== - dependencies: - boolbase "^1.0.0" - css-what "^5.1.0" - domhandler "^4.3.0" - domutils "^2.8.0" - nth-check "^2.0.1" - -css-tree@^1.1.2, css-tree@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" - integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== - dependencies: - mdn-data "2.0.14" - source-map "^0.6.1" - -css-what@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-5.1.0.tgz#3f7b707aadf633baf62c2ceb8579b545bb40f7fe" - integrity sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw== - -cssesc@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" - integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== - -cssnano-preset-default@^5.1.9: - version "5.1.9" - resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.1.9.tgz#79628ac48eccbdad570f70b4018cc38d43d1b7df" - integrity sha512-RhkEucqlQ+OxEi14K1p8gdXcMQy1mSpo7P1oC44oRls7BYIj8p+cht4IFBFV3W4iOjTP8EUB33XV1fX9KhDzyA== - dependencies: - css-declaration-sorter "^6.0.3" - cssnano-utils "^2.0.1" - postcss-calc "^8.0.0" - postcss-colormin "^5.2.2" - postcss-convert-values "^5.0.2" - postcss-discard-comments "^5.0.1" - postcss-discard-duplicates "^5.0.1" - postcss-discard-empty "^5.0.1" - postcss-discard-overridden "^5.0.1" - postcss-merge-longhand "^5.0.4" - postcss-merge-rules "^5.0.3" - postcss-minify-font-values "^5.0.1" - postcss-minify-gradients "^5.0.3" - postcss-minify-params "^5.0.2" - postcss-minify-selectors "^5.1.0" - postcss-normalize-charset "^5.0.1" - postcss-normalize-display-values "^5.0.1" - postcss-normalize-positions "^5.0.1" - postcss-normalize-repeat-style "^5.0.1" - postcss-normalize-string "^5.0.1" - postcss-normalize-timing-functions "^5.0.1" - postcss-normalize-unicode "^5.0.1" - postcss-normalize-url "^5.0.4" - postcss-normalize-whitespace "^5.0.1" - postcss-ordered-values "^5.0.2" - postcss-reduce-initial "^5.0.2" - postcss-reduce-transforms "^5.0.1" - postcss-svgo "^5.0.3" - postcss-unique-selectors "^5.0.2" - -cssnano-utils@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-2.0.1.tgz#8660aa2b37ed869d2e2f22918196a9a8b6498ce2" - integrity sha512-i8vLRZTnEH9ubIyfdZCAdIdgnHAUeQeByEeQ2I7oTilvP9oHO6RScpeq3GsFUVqeB8uZgOQ9pw8utofNn32hhQ== - -cssnano@^5.0.8: - version "5.0.14" - resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.0.14.tgz#99bc550f663b48c38e9b8e0ae795697c9de84b47" - integrity sha512-qzhRkFvBhv08tbyKCIfWbxBXmkIpLl1uNblt8SpTHkgLfON5OCPX/CCnkdNmEosvo8bANQYmTTMEgcVBlisHaw== - dependencies: - cssnano-preset-default "^5.1.9" - lilconfig "^2.0.3" - yaml "^1.10.2" - -csso@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" - integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== - dependencies: - css-tree "^1.1.2" - -d@1, d@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" - integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== - dependencies: - es5-ext "^0.10.50" - type "^1.0.1" - -dash-ast@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/dash-ast/-/dash-ast-2.0.1.tgz#8d0fd2e601c59bf874cc22877ee7dd889f54dee8" - integrity sha512-5TXltWJGc+RdnabUGzhRae1TRq6m4gr+3K2wQX0is5/F2yS6MJXJvLyI3ErAnsAXuJoGqvfVD5icRgim07DrxQ== - -datatables.net-autofill-bs4@^2.3.5: - version "2.3.9" - resolved "https://registry.yarnpkg.com/datatables.net-autofill-bs4/-/datatables.net-autofill-bs4-2.3.9.tgz#a1e90a8e535f22fc25aa84101f81dc39ad361bcb" - integrity sha512-R3loty1CNQxwokpRQ1AJHNTYaiuugoV0vuehsSVZtspbiCah/p/2f2vqJrEUami/3yJh7sLxFJemy3Y0fBHPOA== - dependencies: - datatables.net-autofill ">=2.3.7" - datatables.net-bs4 ">=1.10.25" - jquery ">=1.7" - -datatables.net-autofill@>=2.3.7: - version "2.3.9" - resolved "https://registry.yarnpkg.com/datatables.net-autofill/-/datatables.net-autofill-2.3.9.tgz#3ac5da74e83cc40c0fbe4e3d5c7c33a9a78736ca" - integrity sha512-A1e+VaeRsiNkWgoxLJVT0qo4WEffVoLYdF6XiXtFa6kd+Hl29AixSn2F9wZNWrvHB5+d+LXj9kBlMi++c/kAAw== - dependencies: - datatables.net ">=1.10.25" - jquery ">=1.7" - -datatables.net-bs4@>=1.10.25, datatables.net-bs4@>=1.11.3, datatables.net-bs4@^1.10.15, datatables.net-bs4@^1.10.24: - version "1.11.3" - resolved "https://registry.yarnpkg.com/datatables.net-bs4/-/datatables.net-bs4-1.11.3.tgz#04817c5d9457f1b9807a1330f12c37a541596328" - integrity sha512-UPT2F1nvZZzKJSSHb+3+bTeQy1ULLMT1BexBHCkh5PhMnAZNPbTEZD+6To1RCBfUF1rtPwIJTwJ+Jjjxy86xRw== - dependencies: - datatables.net ">=1.10.25" - jquery ">=1.7" - -datatables.net-buttons-bs4@^1.7.0: - version "1.7.1" - resolved "https://registry.yarnpkg.com/datatables.net-buttons-bs4/-/datatables.net-buttons-bs4-1.7.1.tgz#d2fdef1f1b4073129d42806d24b8f037e9bd473b" - integrity sha512-s+fwsgAAWp7mOKwuztPH06kaw2JNAJ71VNTw/TqGQTL6BK9FshweDKZSRIB/ePcc/Psiy8fhNEj3XHxx4OO6BA== - dependencies: - datatables.net-bs4 "^1.10.15" - datatables.net-buttons "1.7.1" - jquery ">=1.7" - -datatables.net-buttons@1.7.1: - version "1.7.1" - resolved "https://registry.yarnpkg.com/datatables.net-buttons/-/datatables.net-buttons-1.7.1.tgz#b701bda4bf4dd76ebc9238251c62d13c18b2bb34" - integrity sha512-D2OxZeR18jhSx+l0xcfAJzfUH7l3LHCu0e606fV7+v3hMhphOfljjZYLaiRmGiR9lqO/f5xE/w2a+OtG/QMavw== - dependencies: - datatables.net "^1.10.15" - jquery ">=1.7" - -datatables.net-colreorder-bs4@^1.5.3: - version "1.5.5" - resolved "https://registry.yarnpkg.com/datatables.net-colreorder-bs4/-/datatables.net-colreorder-bs4-1.5.5.tgz#52ca2f95148572583ad619d6c9cdb44f1952d355" - integrity sha512-MGAJ/k/FeSK2Kccio5k0oBRacBpmaIKP2wXYfC64ONZFjOFxKBSmFevfg7yPdipYdYDwoQqDnmw0MpdIL7UUug== - dependencies: - datatables.net-bs4 ">=1.11.3" - datatables.net-colreorder ">=1.5.4" - jquery ">=1.7" - -datatables.net-colreorder@>=1.5.4: - version "1.5.5" - resolved "https://registry.yarnpkg.com/datatables.net-colreorder/-/datatables.net-colreorder-1.5.5.tgz#0de93e460cba5eb0167c0c491a2da0c76a2e3b12" - integrity sha512-AUwv5A/87I4hg7GY/WbhRrDhqng9b019jLvvKutHibSPCEtMDWqyNtuP0q8zYoquqU9UQ1/nqXLW/ld8TzIDYQ== - dependencies: - datatables.net ">=1.11.3" - jquery ">=1.7" - -datatables.net-fixedcolumns-bs4@^3.3.2: - version "3.3.3" - resolved "https://registry.yarnpkg.com/datatables.net-fixedcolumns-bs4/-/datatables.net-fixedcolumns-bs4-3.3.3.tgz#ed78da606e5658cbca6138c78e11d11a74267a6f" - integrity sha512-d0dqCYk93wnCT382hW2Y1YMwgJXpTfdTu3Tb+UKQvt7OApxKYuWUFfKde+wHtIhqodswZ1jrMfYmxZHJYAysZQ== - dependencies: - datatables.net-bs4 "^1.10.15" - datatables.net-fixedcolumns "3.3.3" - jquery ">=1.7" - -datatables.net-fixedcolumns@3.3.3: - version "3.3.3" - resolved "https://registry.yarnpkg.com/datatables.net-fixedcolumns/-/datatables.net-fixedcolumns-3.3.3.tgz#982acc929ea8119acb4d91f0710ed1290237f5b4" - integrity sha512-xo6MeI2xc/Ufk4ffrpao+OiPo8/GPB8cO80gA6NFgYBVw6eP9pPa2NsV+gSWRVr7d3A8iZC7mUZT5WdtliNHEA== - dependencies: - datatables.net "^1.10.15" - jquery ">=1.7" - -datatables.net-fixedheader-bs4@^3.1.8: - version "3.2.1" - resolved "https://registry.yarnpkg.com/datatables.net-fixedheader-bs4/-/datatables.net-fixedheader-bs4-3.2.1.tgz#24dbae63db4e22a2ab5dd7380a3e66bce7cec17d" - integrity sha512-ujkeW0O6Cb0PrdHHDW1s5ACU15GeVhVJ6dTBBWsCK9cm6P6olp20N7VoaIWW+sJsMhYtDHKB5fK8lf8t1N//Ng== - dependencies: - datatables.net-bs4 ">=1.11.3" - datatables.net-fixedheader ">=3.2.0" - jquery ">=1.7" - -datatables.net-fixedheader@>=3.2.0: - version "3.2.1" - resolved "https://registry.yarnpkg.com/datatables.net-fixedheader/-/datatables.net-fixedheader-3.2.1.tgz#e9de52f558e95f73ecb475636ed18fab672d0425" - integrity sha512-YevlayIayvv8OKim3pduz4q9yY2IylrpIrHfb/DbL63gf4kDqj4s84fG5wsBHNUCoDhT1mvxhSPz2rWXDvym+g== - dependencies: - datatables.net ">=1.11.3" - jquery ">=1.7" - -datatables.net-keytable-bs4@^2.6.1: - version "2.6.4" - resolved "https://registry.yarnpkg.com/datatables.net-keytable-bs4/-/datatables.net-keytable-bs4-2.6.4.tgz#dd4ea7d4758f7354e9f179441754a57d4e648e86" - integrity sha512-eB10kvSY7OpuI6efqqJyIUyXHY8FIEyTjG+i6w2NVkiTLFHG4P+5L1a4/hZxciGUwVirAxX+3YXW1SrWwb9IKQ== - dependencies: - datatables.net-bs4 ">=1.10.25" - datatables.net-keytable ">=2.6.2" - jquery ">=1.7" - -datatables.net-keytable@>=2.6.2: - version "2.6.4" - resolved "https://registry.yarnpkg.com/datatables.net-keytable/-/datatables.net-keytable-2.6.4.tgz#0cb355441a87d1c7aa6d230641157d17829892a2" - integrity sha512-84ldg8S3rAzHKJw4inz/a4lWUWaVhrSrH16+zO9sxUdBgT+rTTjx7aN5d3JwrdroEYB3z2uWfd0MOxNlNXeuUQ== - dependencies: - datatables.net ">=1.10.25" - jquery ">=1.7" - -datatables.net-responsive-bs4@^2.2.7: - version "2.2.9" - resolved "https://registry.yarnpkg.com/datatables.net-responsive-bs4/-/datatables.net-responsive-bs4-2.2.9.tgz#18166b9e99c439b8b19bdd7edef8b78572b17b3f" - integrity sha512-f6MS0aL7XqjYcFSjup/JRDezbK3cCYFjAB+4vl8dwnGqRP13xwTjXiNqlrRT+fhJJzTQhaHveRpvFUn1qsyn7g== - dependencies: - datatables.net-bs4 "^1.10.15" - datatables.net-responsive "2.2.9" - jquery ">=1.7" - -datatables.net-responsive@2.2.9: - version "2.2.9" - resolved "https://registry.yarnpkg.com/datatables.net-responsive/-/datatables.net-responsive-2.2.9.tgz#846d4436691b13261e8e436dc988affe4d262f36" - integrity sha512-C+mOY/mG17zzaYPtgqAOsC4JlGddGkKmO/ADNEtNZ41bcPV1/3jJzkOWT3DCZ400NmkXLDz4WObWlPT8WCgfzg== - dependencies: - datatables.net "^1.10.15" - jquery ">=1.7" - -datatables.net-rowgroup-bs4@^1.1.2: - version "1.1.4" - resolved "https://registry.yarnpkg.com/datatables.net-rowgroup-bs4/-/datatables.net-rowgroup-bs4-1.1.4.tgz#dd4fad888edea895acd06fe8cf66816809d78eec" - integrity sha512-D0+LxraRjvV1RpPNtXJuW9Z4Jn90Sykb7ytJC/5eJsEYc9WnLUvxWEok7fqPpl3dWphQKg5ZbWpKG55Gd1IIXA== - dependencies: - datatables.net-bs4 ">=1.11.3" - datatables.net-rowgroup ">=1.1.3" - jquery ">=1.7" - -datatables.net-rowgroup@>=1.1.3: - version "1.1.4" - resolved "https://registry.yarnpkg.com/datatables.net-rowgroup/-/datatables.net-rowgroup-1.1.4.tgz#3eea91951d46f6c207d2e0c03cb3d635b7b09689" - integrity sha512-Oe9mL3X8RXLOQZblJVWTYD0melyw3xoPeQ3T2x1k2guTFxob8/2caKuzn95oFJau6tvbhsvY/QneTaCzHRKnnQ== - dependencies: - datatables.net ">=1.11.3" - jquery ">=1.7" - -datatables.net-rowreorder-bs4@^1.2.7: - version "1.2.8" - resolved "https://registry.yarnpkg.com/datatables.net-rowreorder-bs4/-/datatables.net-rowreorder-bs4-1.2.8.tgz#a87d1a033579ac3f02b7521beb26077c53d4d251" - integrity sha512-9J36fc/Ywdy9o5SkX+ZLMXYwcKGC+wa1RAiNRFywxT3u5nBrLvcDlOnYLBNae5XO1wBr/3jbj9ka/ZWyd9hnVg== - dependencies: - datatables.net-bs4 "^1.10.15" - datatables.net-rowreorder "1.2.8" - jquery ">=1.7" - -datatables.net-rowreorder@1.2.8: - version "1.2.8" - resolved "https://registry.yarnpkg.com/datatables.net-rowreorder/-/datatables.net-rowreorder-1.2.8.tgz#2509fe798a64a52d84c43e335eccff326c3389bc" - integrity sha512-gFNKMa5DtigbjhSs96ZKT3uICC1z87EuLUIYLVPEXHc7v/WVOiQ3AaRvIQtExORPi/jQzxEoO5wO9UGZ0ldsUQ== - dependencies: - datatables.net "^1.10.15" - jquery ">=1.7" - -datatables.net-scroller-bs4@^2.0.3: - version "2.0.5" - resolved "https://registry.yarnpkg.com/datatables.net-scroller-bs4/-/datatables.net-scroller-bs4-2.0.5.tgz#0a2c559659d3c3a4f860ecc8735976f9d847f52e" - integrity sha512-NtAECXBBNsxKo8ocJxkkNcP7AIIwET5lK8/ZyzI+zhjnj8zac5IyiDmfKuBrX9UNzee1o5Yrhn2tsz06olz6Pw== - dependencies: - datatables.net-bs4 ">=1.10.25" - datatables.net-scroller ">=2.0.4" - jquery ">=1.7" - -datatables.net-scroller@>=2.0.4: - version "2.0.5" - resolved "https://registry.yarnpkg.com/datatables.net-scroller/-/datatables.net-scroller-2.0.5.tgz#bc2fce084617c29b12709dc641daaaa7409e237e" - integrity sha512-gXxQcbUgDURcxGUCIj+5YBepJJcWWGJgFlewGy/odaAi+H1Ol8TKcXoQD20y2zcO7l5DWEbzNwHwN0bciBONPw== - dependencies: - datatables.net ">=1.10.25" - jquery ">=1.7" - -datatables.net-searchbuilder-bs4@^1.0.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/datatables.net-searchbuilder-bs4/-/datatables.net-searchbuilder-bs4-1.3.0.tgz#985ca63aaea8a4f6655161f55da966198c8ba047" - integrity sha512-rFEQzL4C09upfv19Bqfy9MA9Tw4Zaj1xnqN0UtRFnOtnXLkg0kTKYr6XRQJ26EllR/73VGE1PFkl6URES4MbiQ== - dependencies: - datatables.net-bs4 ">=1.11.3" - datatables.net-searchbuilder ">=1.2.2" - jquery ">=1.7" - -datatables.net-searchbuilder@>=1.2.2: - version "1.3.0" - resolved "https://registry.yarnpkg.com/datatables.net-searchbuilder/-/datatables.net-searchbuilder-1.3.0.tgz#0c60f0b7edd3032401b74640bdfe17a715991d7f" - integrity sha512-qks7lT8Rxeh/D7N7xlZLqKzO4CE3j+dHU+J0v8CqV4/6XIIRs+NROi+3/jmtwkx6GbdzYtRNHuOTCAVH4lQ6ZA== - dependencies: - datatables.net ">=1.11.3" - jquery ">=1.7" - -datatables.net-searchpanes-bs4@^1.2.2: - version "1.4.0" - resolved "https://registry.yarnpkg.com/datatables.net-searchpanes-bs4/-/datatables.net-searchpanes-bs4-1.4.0.tgz#efe09f8093fabd5ef311467eac198480873fb9bd" - integrity sha512-Floxzmw2cQkUQdI7Vv4IWtLqLmwPrmY6MPncbEWq4YvkSeaZW7OHzSmZLLUjMn2P6Huvz59WUVcwL0lSDui6GQ== - dependencies: - datatables.net-bs4 ">=1.10.25" - datatables.net-searchpanes ">=1.3.0" - jquery ">=1.7" - -datatables.net-searchpanes@>=1.3.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/datatables.net-searchpanes/-/datatables.net-searchpanes-1.4.0.tgz#a923b6e46de3fe99da0acc2244dc7e8673368b3b" - integrity sha512-97elV0u2wVosnSq2wS2LXJK3VFEqHKD1o2lz6DnxIobX+OcCD2Y4hKCobp/WFU7TmS20XxydTSoNOZIwTK4E0g== - dependencies: - datatables.net ">=1.10.25" - jquery ">=1.7" - -datatables.net-select-bs4@^1.3.2: - version "1.3.4" - resolved "https://registry.yarnpkg.com/datatables.net-select-bs4/-/datatables.net-select-bs4-1.3.4.tgz#07336260be0aa7741a61b82188350f4d1e422a02" - integrity sha512-hXxxTwR9Mx8xwD55g8hNiLt035afguKZ9Ejsdm5/mo3wmm9ml7gs8QG5fJuMRwtrdP9EKcnjc54+zVoHymEcgw== - dependencies: - datatables.net-bs4 ">=1.11.3" - datatables.net-select ">=1.3.3" - jquery ">=1.7" - -datatables.net-select@>=1.3.3: - version "1.3.4" - resolved "https://registry.yarnpkg.com/datatables.net-select/-/datatables.net-select-1.3.4.tgz#7970587a8d8db8ba70a4cccb89b8519bb518116d" - integrity sha512-iQ/dBHIWkhfCBxzNdtef79seCNO1ZsA5zU0Uiw3R2mlwmjcJM1xn6pFNajke6SX7VnlzndGDHGqzzEljSqz4pA== - dependencies: - datatables.net ">=1.11.3" - jquery ">=1.7" - -datatables.net@>=1.10.25, datatables.net@>=1.11.3, datatables.net@^1.10.15, datatables.net@^1.10.24: - version "1.11.3" - resolved "https://registry.yarnpkg.com/datatables.net/-/datatables.net-1.11.3.tgz#80e691036efcd62467558ee64c07dd566cb761b4" - integrity sha512-VMj5qEaTebpNurySkM6jy6sGpl+s6onPK8xJhYr296R/vUBnz1+id16NVqNf9z5aR076OGcpGHCuiTuy4E05oQ== - dependencies: - jquery ">=1.7" - -date-fns-tz@^1.1.4: - version "1.2.2" - resolved "https://registry.yarnpkg.com/date-fns-tz/-/date-fns-tz-1.2.2.tgz#89432b54ce3fa7d050a2039e997e5b6a96df35dd" - integrity sha512-vWtn44eEqnLbkACb7T5G5gPgKR4nY8NkNMOCyoY49NsRGHrcDmY2aysCyzDeA+u+vcDBn/w6nQqEDyouRs4m8w== - -date-fns@^2.22.1, date-fns@^2.27.0: - version "2.28.0" - resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.28.0.tgz#9570d656f5fc13143e50c975a3b6bbeb46cd08b2" - integrity sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw== - -daterangepicker@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/daterangepicker/-/daterangepicker-3.1.0.tgz#718d606614331df3e774c9aba82ccd8838d45da1" - integrity sha512-DxWXvvPq4srWLCqFugqSV+6CBt/CvQ0dnpXhQ3gl0autcIDAruG1PuGG3gC7yPRNytAD1oU1AcUOzaYhOawhTw== - dependencies: - jquery ">=1.10" - moment "^2.9.0" - -de-indent@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" - integrity sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0= - -debug@2.6.9: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -debug@^3.1.1: - version "3.2.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" - integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== - dependencies: - ms "^2.1.1" - -debug@^4.1.0, debug@^4.1.1: - version "4.3.3" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" - integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== - dependencies: - ms "2.1.2" - -deep-equal@^1.0.0, deep-equal@^1.0.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a" - integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g== - dependencies: - is-arguments "^1.0.4" - is-date-object "^1.0.1" - is-regex "^1.0.4" - object-is "^1.0.1" - object-keys "^1.1.1" - regexp.prototype.flags "^1.2.0" - -deep-is@~0.1.3: - version "0.1.4" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" - integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== - -default-gateway@^6.0.0: - version "6.0.3" - resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71" - integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg== - dependencies: - execa "^5.0.0" - -define-lazy-prop@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" - integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== - -define-properties@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" - integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== - dependencies: - object-keys "^1.0.12" - -del@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/del/-/del-6.0.0.tgz#0b40d0332cea743f1614f818be4feb717714c952" - integrity sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ== - dependencies: - globby "^11.0.1" - graceful-fs "^4.2.4" - is-glob "^4.0.1" - is-path-cwd "^2.2.0" - is-path-inside "^3.0.2" - p-map "^4.0.0" - rimraf "^3.0.2" - slash "^3.0.0" - -depd@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" - integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= - -des.js@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" - integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA== - dependencies: - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - -destroy@~1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" - integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= - -detect-node@^2.0.4: - version "2.1.0" - resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" - integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== - -dfa@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/dfa/-/dfa-1.2.0.tgz#96ac3204e2d29c49ea5b57af8d92c2ae12790657" - integrity sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q== - -diffie-hellman@^5.0.0: - version "5.0.3" - resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" - integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== - dependencies: - bn.js "^4.1.0" - miller-rabin "^4.0.0" - randombytes "^2.0.0" - -dir-glob@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" - integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== - dependencies: - path-type "^4.0.0" - -dns-equal@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" - integrity sha1-s55/HabrCnW6nBcySzR1PEfgZU0= - -dns-packet@^1.3.1: - version "1.3.4" - resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.3.4.tgz#e3455065824a2507ba886c55a89963bb107dec6f" - integrity sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA== - dependencies: - ip "^1.1.0" - safe-buffer "^5.0.1" - -dns-txt@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6" - integrity sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY= - dependencies: - buffer-indexof "^1.0.0" - -dom-serializer@^1.0.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.3.2.tgz#6206437d32ceefaec7161803230c7a20bc1b4d91" - integrity sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig== - dependencies: - domelementtype "^2.0.1" - domhandler "^4.2.0" - entities "^2.0.0" - -domain-browser@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" - integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== - -domelementtype@^2.0.1, domelementtype@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57" - integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A== - -domhandler@^3.0.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-3.3.0.tgz#6db7ea46e4617eb15cf875df68b2b8524ce0037a" - integrity sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA== - dependencies: - domelementtype "^2.0.1" - -domhandler@^4.2.0, domhandler@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.0.tgz#16c658c626cf966967e306f966b431f77d4a5626" - integrity sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g== - dependencies: - domelementtype "^2.2.0" - -domutils@^2.0.0, domutils@^2.8.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" - integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== - dependencies: - dom-serializer "^1.0.1" - domelementtype "^2.2.0" - domhandler "^4.2.0" - -dot-case@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" - integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== - dependencies: - no-case "^3.0.4" - tslib "^2.0.3" - -dotenv-expand@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0" - integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== - -dotenv@^10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" - integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== - -dropzone@^5.8.1: - version "5.9.3" - resolved "https://registry.yarnpkg.com/dropzone/-/dropzone-5.9.3.tgz#b3070ae090fa48cbc04c17535635537ca72d70d6" - integrity sha512-Azk8kD/2/nJIuVPK+zQ9sjKMRIpRvNyqn9XwbBHNq+iNuSccbJS6hwm1Woy0pMST0erSo0u4j+KJaodndDk4vA== - -duplexer2@~0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" - integrity sha1-ixLauHjA1p4+eJEFFmKjL8a93ME= - dependencies: - readable-stream "^2.0.2" - -ee-first@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= - -ekko-lightbox@^5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/ekko-lightbox/-/ekko-lightbox-5.3.0.tgz#fbfcd9df93a8d1cdbf8770adc8c05aaac4d24f56" - integrity sha512-mbacwySuVD3Ad6F2hTkjSTvJt59bcVv2l/TmBerp4xZnLak8tPtA4AScUn4DL42c1ksTiAO6sGhJZ52P/1Qgew== - -electron-to-chromium@^1.4.17: - version "1.4.31" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.31.tgz#8d5ccc3f8253cd142b07afaa84f200fd33a7f2a6" - integrity sha512-t3XVQtk+Frkv6aTD4RRk0OqosU+VLe1dQFW83MDer78ZD6a52frgXuYOIsLYTQiH2Lm+JB2OKYcn7zrX+YGAiQ== - -elliptic@^6.5.3: - version "6.5.4" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" - integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== - dependencies: - bn.js "^4.11.9" - brorand "^1.1.0" - hash.js "^1.0.0" - hmac-drbg "^1.0.1" - inherits "^2.0.4" - minimalistic-assert "^1.0.1" - minimalistic-crypto-utils "^1.0.1" - -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -emojis-list@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" - integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== - -encodeurl@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" - integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= - -enhanced-resolve@^5.8.3: - version "5.8.3" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.8.3.tgz#6d552d465cce0423f5b3d718511ea53826a7b2f0" - integrity sha512-EGAbGvH7j7Xt2nc0E7D99La1OiEs8LnyimkRgwExpUMScN6O+3x9tIWs7PLQZVNx4YD+00skHXPXi1yQHpAmZA== - dependencies: - graceful-fs "^4.2.4" - tapable "^2.2.0" - -entities@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" - integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== - -envinfo@^7.7.3: - version "7.8.1" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" - integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== - -error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -es-module-lexer@^0.9.0: - version "0.9.3" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19" - integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ== - -es5-ext@^0.10.35, es5-ext@^0.10.50, es5-ext@~0.10.14: - version "0.10.53" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1" - integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q== - dependencies: - es6-iterator "~2.0.3" - es6-symbol "~3.1.3" - next-tick "~1.0.0" - -es6-iterator@~2.0.1, es6-iterator@~2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" - integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= - dependencies: - d "1" - es5-ext "^0.10.35" - es6-symbol "^3.1.1" - -es6-map@^0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" - integrity sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA= - dependencies: - d "1" - es5-ext "~0.10.14" - es6-iterator "~2.0.1" - es6-set "~0.1.5" - es6-symbol "~3.1.1" - event-emitter "~0.3.5" - -es6-set@^0.1.5, es6-set@~0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" - integrity sha1-0rPsXU2ADO2BjbU40ol02wpzzLE= - dependencies: - d "1" - es5-ext "~0.10.14" - es6-iterator "~2.0.1" - es6-symbol "3.1.1" - event-emitter "~0.3.5" - -es6-symbol@3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" - integrity sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc= - dependencies: - d "1" - es5-ext "~0.10.14" - -es6-symbol@^3.1.1, es6-symbol@~3.1.1, es6-symbol@~3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" - integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== - dependencies: - d "^1.0.1" - ext "^1.1.2" - -escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== - -escape-html@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= - -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= - -escodegen@^1.11.1: - version "1.14.3" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" - integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== - dependencies: - esprima "^4.0.1" - estraverse "^4.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.6.1" - -escodegen@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.2.0.tgz#09de7967791cc958b7f89a2ddb6d23451af327e1" - integrity sha1-Cd55Z3kcyVi3+Jot220jRRrzJ+E= - dependencies: - esprima "~1.0.4" - estraverse "~1.5.0" - esutils "~1.0.0" - optionalDependencies: - source-map "~0.1.30" - -eslint-scope@5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" - integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== - dependencies: - esrecurse "^4.3.0" - estraverse "^4.1.1" - -esprima@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -esprima@~1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.0.4.tgz#9f557e08fc3b4d26ece9dd34f8fbf476b62585ad" - integrity sha1-n1V+CPw7TSbs6d00+Pv0drYlha0= - -esrecurse@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" - integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== - dependencies: - estraverse "^5.2.0" - -estraverse@^4.1.1, estraverse@^4.2.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" - integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - -estraverse@^5.2.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" - integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== - -estraverse@~1.5.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.5.1.tgz#867a3e8e58a9f84618afb6c2ddbcd916b7cbaf71" - integrity sha1-hno+jlip+EYYr7bC3bzZFrfLr3E= - -estree-is-function@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/estree-is-function/-/estree-is-function-1.0.0.tgz#c0adc29806d7f18a74db7df0f3b2666702e37ad2" - integrity sha512-nSCWn1jkSq2QAtkaVLJZY2ezwcFO161HVc174zL1KPW3RJ+O6C3eJb8Nx7OXzvhoEv+nLgSR1g71oWUHUDTrJA== - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -esutils@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-1.0.0.tgz#8151d358e20c8acc7fb745e7472c0025fe496570" - integrity sha1-gVHTWOIMisx/t0XnRywAJf5JZXA= - -etag@~1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= - -ev-emitter@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ev-emitter/-/ev-emitter-1.1.1.tgz#8f18b0ce5c76a5d18017f71c0a795c65b9138f2a" - integrity sha512-ipiDYhdQSCZ4hSbX4rMW+XzNKMD1prg/sTvoVmSLkuQ1MVlwjJQQA+sW8tMYR3BLUr9KjodFV4pvzunvRhd33Q== - -eve-raphael@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/eve-raphael/-/eve-raphael-0.5.0.tgz#17c754b792beef3fa6684d79cf5a47c63c4cda30" - integrity sha1-F8dUt5K+7z+maE15z1pHxjxM2jA= - -event-emitter@~0.3.5: - version "0.3.5" - resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" - integrity sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk= - dependencies: - d "1" - es5-ext "~0.10.14" - -eventemitter3@^4.0.0: - version "4.0.7" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" - integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== - -events@^3.0.0, events@^3.2.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" - integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== - -evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" - integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== - dependencies: - md5.js "^1.3.4" - safe-buffer "^5.1.1" - -execa@^5.0.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" - integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== - dependencies: - cross-spawn "^7.0.3" - get-stream "^6.0.0" - human-signals "^2.1.0" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.1" - onetime "^5.1.2" - signal-exit "^3.0.3" - strip-final-newline "^2.0.0" - -express@^4.17.1: - version "4.17.2" - resolved "https://registry.yarnpkg.com/express/-/express-4.17.2.tgz#c18369f265297319beed4e5558753cc8c1364cb3" - integrity sha512-oxlxJxcQlYwqPWKVJJtvQiwHgosH/LrLSPA+H4UxpyvSS6jC5aH+5MoHFM+KABgTOt0APue4w66Ha8jCUo9QGg== - dependencies: - accepts "~1.3.7" - array-flatten "1.1.1" - body-parser "1.19.1" - content-disposition "0.5.4" - content-type "~1.0.4" - cookie "0.4.1" - cookie-signature "1.0.6" - debug "2.6.9" - depd "~1.1.2" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - finalhandler "~1.1.2" - fresh "0.5.2" - merge-descriptors "1.0.1" - methods "~1.1.2" - on-finished "~2.3.0" - parseurl "~1.3.3" - path-to-regexp "0.1.7" - proxy-addr "~2.0.7" - qs "6.9.6" - range-parser "~1.2.1" - safe-buffer "5.2.1" - send "0.17.2" - serve-static "1.14.2" - setprototypeof "1.2.0" - statuses "~1.5.0" - type-is "~1.6.18" - utils-merge "1.0.1" - vary "~1.1.2" - -ext@^1.1.2: - version "1.6.0" - resolved "https://registry.yarnpkg.com/ext/-/ext-1.6.0.tgz#3871d50641e874cc172e2b53f919842d19db4c52" - integrity sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg== - dependencies: - type "^2.5.0" - -fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" - integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== - -fast-glob@^3.0.3, fast-glob@^3.1.1: - version "3.2.7" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" - integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" - -fast-json-stable-stringify@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - -fast-levenshtein@~2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= - -fast-memoize@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/fast-memoize/-/fast-memoize-2.5.2.tgz#79e3bb6a4ec867ea40ba0e7146816f6cdce9b57e" - integrity sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw== - -fastclick@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/fastclick/-/fastclick-1.0.6.tgz#161625b27b1a5806405936bda9a2c1926d06be6a" - integrity sha1-FhYlsnsaWAZAWTa9qaLBkm0Gvmo= - -fastest-levenshtein@^1.0.12: - version "1.0.12" - resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz#9990f7d3a88cc5a9ffd1f1745745251700d497e2" - integrity sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow== - -fastq@^1.6.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" - integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== - dependencies: - reusify "^1.0.4" - -faye-websocket@^0.11.3: - version "0.11.4" - resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da" - integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== - dependencies: - websocket-driver ">=0.5.1" - -file-loader@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d" - integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw== - dependencies: - loader-utils "^2.0.0" - schema-utils "^3.0.0" - -file-type@^12.0.0: - version "12.4.2" - resolved "https://registry.yarnpkg.com/file-type/-/file-type-12.4.2.tgz#a344ea5664a1d01447ee7fb1b635f72feb6169d9" - integrity sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg== - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -filterizr@^2.2.4: - version "2.2.4" - resolved "https://registry.yarnpkg.com/filterizr/-/filterizr-2.2.4.tgz#02fd75cffd46ef7acc85f55e132064650ae90a14" - integrity sha512-hqyEdg7RrvJMVFOeF0yysS75HP6jLu0wBSUtSPAc3BysAtHpwcXaPnR1kYp2uZtd3YXyhH6JRfF9+H4SRvrqXg== - dependencies: - fast-memoize "^2.5.1" - imagesloaded "^4.1.4" - -finalhandler@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" - integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== - dependencies: - debug "2.6.9" - encodeurl "~1.0.2" - escape-html "~1.0.3" - on-finished "~2.3.0" - parseurl "~1.3.3" - statuses "~1.5.0" - unpipe "~1.0.0" - -find-cache-dir@^3.3.1: - version "3.3.2" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" - integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== - dependencies: - commondir "^1.0.1" - make-dir "^3.0.2" - pkg-dir "^4.1.0" - -find-up@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -flag-icon-css@^3.5.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/flag-icon-css/-/flag-icon-css-3.5.0.tgz#430747d5cb91e60babf85494de99173c16dc7cf2" - integrity sha512-pgJnJLrtb0tcDgU1fzGaQXmR8h++nXvILJ+r5SmOXaaL/2pocunQo2a8TAXhjQnBpRLPtZ1KCz/TYpqeNuE2ew== - -flot@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/flot/-/flot-4.2.2.tgz#0661d9e3805c86ccd36560f9602a0d1484d60fe8" - integrity sha512-Strct/A27o0TA25X7Z0pxKhwK4djiP1Kjeqj0tkiqrkRu1qYPqfbp5BYuxEL8CWDNtj85Uc0PnG2E2plo1+VMg== - -follow-redirects@^1.0.0, follow-redirects@^1.14.0: - version "1.14.7" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.7.tgz#2004c02eb9436eee9a21446a6477debf17e81685" - integrity sha512-+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ== - -fontkit@^1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/fontkit/-/fontkit-1.8.1.tgz#ae77485376f1096b45548bf6ced9a07af62a7846" - integrity sha512-BsNCjDoYRxmNWFdAuK1y9bQt+igIxGtTC9u/jSFjR9MKhmI00rP1fwSvERt+5ddE82544l0XH5mzXozQVUy2Tw== - dependencies: - babel-runtime "^6.26.0" - brfs "^2.0.0" - brotli "^1.2.0" - browserify-optional "^1.0.1" - clone "^1.0.4" - deep-equal "^1.0.0" - dfa "^1.2.0" - restructure "^0.5.3" - tiny-inflate "^1.0.2" - unicode-properties "^1.2.2" - unicode-trie "^0.3.0" - -forwarded@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" - integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== - -fraction.js@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.1.2.tgz#13e420a92422b6cf244dff8690ed89401029fbe8" - integrity sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA== - -fresh@0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" - integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= - -fs-extra@^10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.0.0.tgz#9ff61b655dde53fb34a82df84bb214ce802e17c1" - integrity sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - -fs-extra@^9.1.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" - integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== - dependencies: - at-least-node "^1.0.0" - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - -fs-monkey@1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.3.tgz#ae3ac92d53bb328efe0e9a1d9541f6ad8d48e2d3" - integrity sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q== - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= - -fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== - -fullcalendar@^5.5.1: - version "5.10.1" - resolved "https://registry.yarnpkg.com/fullcalendar/-/fullcalendar-5.10.1.tgz#b3fd67ed1698df05d6bd0516d81bbf2f45a872da" - integrity sha512-0jgDxiWRuC36MzAUK3+Equmu4R0+vAPEtttsXLX9GNNDUHEZ5HjcH+dUtWut4vlJtxGJgVZ+eZ76/7qhcu+RMA== - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -gensync@^1.0.0-beta.2: - version "1.0.0-beta.2" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" - integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== - -get-assigned-identifiers@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz#6dbf411de648cbaf8d9169ebb0d2d576191e2ff1" - integrity sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ== - -get-caller-file@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-intrinsic@^1.0.2: - version "1.1.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" - integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.1" - -get-stream@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" - integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== - -glob-parent@^5.1.2, glob-parent@~5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob-to-regexp@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" - integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== - -glob@^7.1.3, glob@^7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" - integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -globby@^10.0.0: - version "10.0.2" - resolved "https://registry.yarnpkg.com/globby/-/globby-10.0.2.tgz#277593e745acaa4646c3ab411289ec47a0392543" - integrity sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg== - dependencies: - "@types/glob" "^7.1.1" - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.0.3" - glob "^7.1.3" - ignore "^5.1.1" - merge2 "^1.2.3" - slash "^3.0.0" - -globby@^11.0.1: - version "11.0.4" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" - integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== - dependencies: - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.1.1" - ignore "^5.1.4" - merge2 "^1.3.0" - slash "^3.0.0" - -graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: - version "4.2.9" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.9.tgz#041b05df45755e587a24942279b9d113146e1c96" - integrity sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ== - -growly@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" - integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= - -handle-thing@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" - integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-symbols@^1.0.1, has-symbols@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" - integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== - -has-tostringtag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" - integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== - dependencies: - has-symbols "^1.0.2" - -has@^1.0.1, has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -hash-base@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" - integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== - dependencies: - inherits "^2.0.4" - readable-stream "^3.6.0" - safe-buffer "^5.2.0" - -hash-sum@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/hash-sum/-/hash-sum-1.0.2.tgz#33b40777754c6432573c120cc3808bbd10d47f04" - integrity sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ= - -hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.7" - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" - integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== - dependencies: - inherits "^2.0.3" - minimalistic-assert "^1.0.1" - -he@^1.1.0, he@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" - integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== - -hmac-drbg@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" - integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= - dependencies: - hash.js "^1.0.3" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.1" - -hpack.js@^2.1.6: - version "2.1.6" - resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" - integrity sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI= - dependencies: - inherits "^2.0.1" - obuf "^1.0.0" - readable-stream "^2.0.1" - wbuf "^1.1.0" - -html-entities@^2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.3.2.tgz#760b404685cb1d794e4f4b744332e3b00dcfe488" - integrity sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ== - -html-loader@^1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/html-loader/-/html-loader-1.3.2.tgz#5a72ebba420d337083497c9aba7866c9e1aee340" - integrity sha512-DEkUwSd0sijK5PF3kRWspYi56XP7bTNkyg5YWSzBdjaSDmvCufep5c4Vpb3PBf6lUL0YPtLwBfy9fL0t5hBAGA== - dependencies: - html-minifier-terser "^5.1.1" - htmlparser2 "^4.1.0" - loader-utils "^2.0.0" - schema-utils "^3.0.0" - -html-minifier-terser@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054" - integrity sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg== - dependencies: - camel-case "^4.1.1" - clean-css "^4.2.3" - commander "^4.1.1" - he "^1.2.0" - param-case "^3.0.3" - relateurl "^0.2.7" - terser "^4.6.3" - -htmlparser2@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-4.1.0.tgz#9a4ef161f2e4625ebf7dfbe6c0a2f52d18a59e78" - integrity sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q== - dependencies: - domelementtype "^2.0.1" - domhandler "^3.0.0" - domutils "^2.0.0" - entities "^2.0.0" - -http-deceiver@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" - integrity sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc= - -http-errors@1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.8.1.tgz#7c3f28577cbc8a207388455dbd62295ed07bd68c" - integrity sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g== - dependencies: - depd "~1.1.2" - inherits "2.0.4" - setprototypeof "1.2.0" - statuses ">= 1.5.0 < 2" - toidentifier "1.0.1" - -http-errors@~1.6.2: - version "1.6.3" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" - integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= - dependencies: - depd "~1.1.2" - inherits "2.0.3" - setprototypeof "1.1.0" - statuses ">= 1.4.0 < 2" - -http-parser-js@>=0.5.1: - version "0.5.5" - resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.5.tgz#d7c30d5d3c90d865b4a2e870181f9d6f22ac7ac5" - integrity sha512-x+JVEkO2PoM8qqpbPbOL3cqHPwerep7OwzK7Ay+sMQjKzaKCqWvjoXm5tqMP9tXWWTnTzAjIhXg+J99XYuPhPA== - -http-proxy-middleware@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.1.tgz#7ef3417a479fb7666a571e09966c66a39bd2c15f" - integrity sha512-cfaXRVoZxSed/BmkA7SwBVNI9Kj7HFltaE5rqYOub5kWzWZ+gofV2koVN1j2rMW7pEfSSlCHGJ31xmuyFyfLOg== - dependencies: - "@types/http-proxy" "^1.17.5" - http-proxy "^1.18.1" - is-glob "^4.0.1" - is-plain-obj "^3.0.0" - micromatch "^4.0.2" - -http-proxy@^1.18.1: - version "1.18.1" - resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" - integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== - dependencies: - eventemitter3 "^4.0.0" - follow-redirects "^1.0.0" - requires-port "^1.0.0" - -https-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" - integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= - -human-signals@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" - integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== - -icheck-bootstrap@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/icheck-bootstrap/-/icheck-bootstrap-3.0.1.tgz#60c9c9a71524e1d9dd5bd05167a62fef05cc3a1b" - integrity sha512-Rj3SybdcMcayhsP4IJ+hmCNgCKclaFcs/5zwCuLXH1WMo468NegjhZVxbSNKhEjJjnwc4gKETogUmPYSQ9lEZQ== - -iconv-lite@0.4.24: - version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -iconv-lite@^0.6.2: - version "0.6.3" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" - integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== - dependencies: - safer-buffer ">= 2.1.2 < 3.0.0" - -icss-utils@^5.0.0, icss-utils@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" - integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== - -ieee754@^1.1.4: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - -ignore@^5.1.1, ignore@^5.1.4: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" - integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== - -imagemin@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/imagemin/-/imagemin-7.0.1.tgz#f6441ca647197632e23db7d971fffbd530c87dbf" - integrity sha512-33AmZ+xjZhg2JMCe+vDf6a9mzWukE7l+wAtesjE7KyteqqKjzxv7aVQeWnul1Ve26mWvEQqyPwl0OctNBfSR9w== - dependencies: - file-type "^12.0.0" - globby "^10.0.0" - graceful-fs "^4.2.2" - junk "^3.1.0" - make-dir "^3.0.0" - p-pipe "^3.0.0" - replace-ext "^1.0.0" - -imagesloaded@^4.1.4: - version "4.1.4" - resolved "https://registry.yarnpkg.com/imagesloaded/-/imagesloaded-4.1.4.tgz#1376efcd162bb768c34c3727ac89cc04051f3cc7" - integrity sha512-ltiBVcYpc/TYTF5nolkMNsnREHW+ICvfQ3Yla2Sgr71YFwQ86bDwV9hgpFhFtrGPuwEx5+LqOHIrdXBdoWwwsA== - dependencies: - ev-emitter "^1.0.0" - -img-loader@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/img-loader/-/img-loader-4.0.0.tgz#f41fb0737cc8e1d6a8c242f48c29a443640e0638" - integrity sha512-UwRcPQdwdOyEHyCxe1V9s9YFwInwEWCpoO+kJGfIqDrBDqA8jZUsEZTxQ0JteNPGw/Gupmwesk2OhLTcnw6tnQ== - dependencies: - loader-utils "^1.1.0" - -immediate@~3.0.5: - version "3.0.6" - resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b" - integrity sha1-nbHb0Pr43m++D13V5Wu2BigN5ps= - -immutable@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.0.0.tgz#b86f78de6adef3608395efb269a91462797e2c23" - integrity sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw== - -import-fresh@^3.2.1: - version "3.3.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" - integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -import-local@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.3.tgz#4d51c2c495ca9393da259ec66b62e022920211e0" - integrity sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA== - dependencies: - pkg-dir "^4.2.0" - resolve-cwd "^3.0.0" - -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -inherits@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" - integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= - -inherits@2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= - -inputmask@^5.0.5: - version "5.0.7" - resolved "https://registry.yarnpkg.com/inputmask/-/inputmask-5.0.7.tgz#b04d5d4e1c85018893c3c8edb1a9f074b051007f" - integrity sha512-rUxbRDS25KEib+c/Ow+K01oprU/+EK9t9SOPC8ov94/ftULGDqj1zOgRU/Hko6uzoKRMdwCfuhAafJ/Wk2wffQ== - -internal-ip@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-6.2.0.tgz#d5541e79716e406b74ac6b07b856ef18dc1621c1" - integrity sha512-D8WGsR6yDt8uq7vDMu7mjcR+yRMm3dW8yufyChmszWRjcSHuxLBkR3GdS2HZAjodsaGuCvXeEJpueisXJULghg== - dependencies: - default-gateway "^6.0.0" - ipaddr.js "^1.9.1" - is-ip "^3.1.0" - p-event "^4.2.0" - -interpret@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9" - integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw== - -ion-rangeslider@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/ion-rangeslider/-/ion-rangeslider-2.3.1.tgz#92ade52cb56fc30b9162d0483ff02b6f9ed237c2" - integrity sha512-6V+24FD13/feliI485gnRHZYD9Ev64M5NAFTxnVib516ATHa9PlXQrC+nOiPngouRYTCLPJyokAJEi3e1Umi5g== - -ip-regex@^4.0.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-4.3.0.tgz#687275ab0f57fa76978ff8f4dddc8a23d5990db5" - integrity sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q== - -ip@^1.1.0: - version "1.1.5" - resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" - integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= - -ipaddr.js@1.9.1, ipaddr.js@^1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" - integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== - -ipaddr.js@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.0.1.tgz#eca256a7a877e917aeb368b0a7497ddf42ef81c0" - integrity sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng== - -is-arguments@^1.0.4: - version "1.1.1" - resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" - integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= - -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - dependencies: - binary-extensions "^2.0.0" - -is-buffer@~1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - -is-core-module@^2.2.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.0.tgz#0321336c3d0925e497fd97f5d95cb114a5ccd548" - integrity sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw== - dependencies: - has "^1.0.3" - -is-date-object@^1.0.1: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" - integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== - dependencies: - has-tostringtag "^1.0.0" - -is-docker@^2.0.0, is-docker@^2.1.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" - integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== - -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= - -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-glob@^4.0.1, is-glob@~4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - -is-ip@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/is-ip/-/is-ip-3.1.0.tgz#2ae5ddfafaf05cb8008a62093cf29734f657c5d8" - integrity sha512-35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q== - dependencies: - ip-regex "^4.0.0" - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-path-cwd@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" - integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== - -is-path-inside@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" - integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== - -is-plain-obj@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" - integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== - -is-plain-object@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== - dependencies: - isobject "^3.0.1" - -is-regex@^1.0.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-stream@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" - integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== - -is-wsl@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" - integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== - dependencies: - is-docker "^2.0.0" - -isarray@^1.0.0, isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= - -isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= - -jest-worker@^27.4.1: - version "27.4.5" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.4.5.tgz#d696e3e46ae0f24cff3fa7195ffba22889262242" - integrity sha512-f2s8kEdy15cv9r7q4KkzGXvlY0JTcmCbMHZBfSQDwW77REr45IDWwd0lksDFeVHH2jJ5pqb90T77XscrjeGzzg== - dependencies: - "@types/node" "*" - merge-stream "^2.0.0" - supports-color "^8.0.0" - -jquery-knob-chif@^1.2.13: - version "1.2.13" - resolved "https://registry.yarnpkg.com/jquery-knob-chif/-/jquery-knob-chif-1.2.13.tgz#5f1e462ef3745d27a9fd66ce1141fe82b44a5762" - integrity sha1-Xx5GLvN0XSep/WbOEUH+grRKV2I= - -jquery-mapael@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/jquery-mapael/-/jquery-mapael-2.2.0.tgz#a68850c680ef0ce3f8b865e8a48b2a018250ca73" - integrity sha512-B5cVcCkfs7Ezia1Zs8bEfVacYD/GvaASyqQeidApR/NJ1C4igcExk9VULVsgLcTPkxohcZrrz5uCaPXvuKeZWw== - dependencies: - jquery "^3.0 || ^2.0 || ^1.0" - raphael "^2.2.0 || ^2.1.1" - optionalDependencies: - jquery-mousewheel "^3.1" - -jquery-mousewheel@^3.1, jquery-mousewheel@^3.1.13: - version "3.1.13" - resolved "https://registry.yarnpkg.com/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz#06f0335f16e353a695e7206bf50503cb523a6ee5" - integrity sha1-BvAzXxbjU6aV5yBr9QUDy1I6buU= - -jquery-ui-dist@^1.12.1: - version "1.13.0" - resolved "https://registry.yarnpkg.com/jquery-ui-dist/-/jquery-ui-dist-1.13.0.tgz#d6e9b88275605c08c5a806781b1967ecf921a248" - integrity sha512-fgpGOW098swRvTLglH3RLyAjW/8Ecxd35fO7Z1WtBidhZgnPDvTJzZ+XFybAFzv3zZiEESI8TkK6oYXbzu/rKw== - dependencies: - jquery ">=1.8.0 <4.0.0" - -jquery-ui@^1.13.1: - version "1.13.1" - resolved "https://registry.yarnpkg.com/jquery-ui/-/jquery-ui-1.13.1.tgz#d0b7a42e73a04c31bb5706adf86f6f8942f64eaa" - integrity sha512-2VlU59N5P4HaumDK1Z3XEVjSvegFbEOQRgpHUBaB2Ak98Axl3hFhJ6RFcNQNuk9SfL6WxIbuLst8dW/U56NSiA== - dependencies: - jquery ">=1.8.0 <4.0.0" - -jquery-validation@^1.19.3: - version "1.19.3" - resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.19.3.tgz#50b350eba8b02bcfd119ba15f199487b7eb64086" - integrity sha512-iXxCS5W7STthSTMFX/NDZfWHBLbJ1behVK3eAgHXAV8/0vRa9M4tiqHvJMr39VGWHMGdlkhrtrkBuaL2UlE8yw== - -jquery@>=1.10, jquery@>=1.12.0, jquery@>=1.7, "jquery@>=1.8.0 <4.0.0", jquery@>=2.2, "jquery@^3.0 || ^2.0 || ^1.0", jquery@^3.4.0, jquery@^3.5.1, jquery@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.0.tgz#c72a09f15c1bdce142f49dbf1170bdf8adac2470" - integrity sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw== - -jqvmap-novulnerability@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/jqvmap-novulnerability/-/jqvmap-novulnerability-1.5.1.tgz#140c42623ebbe9b9076ea2dd3b8d155fe9f38ae7" - integrity sha512-O6Jr7AGiut9iNJMelPdy8pH83tNXadOqmhJm5FZy9gtaZ5uuhZK3VNu+YLFuTpXeZI8YXUvlFUYbJJi5XHA+tw== - dependencies: - jquery "^3.4.0" - -js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= - -jsgrid@^1.5.3: - version "1.5.3" - resolved "https://registry.yarnpkg.com/jsgrid/-/jsgrid-1.5.3.tgz#b15fc426483153bee2b6b567312f675d92834a0d" - integrity sha1-sV/EJkgxU77itrVnMS9nXZKDSg0= - -json-parse-better-errors@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" - integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== - -json-parse-even-better-errors@^2.3.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-schema-traverse@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" - integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== - -json5@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" - integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== - dependencies: - minimist "^1.2.0" - -json5@^2.1.2: - version "2.2.0" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" - integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== - dependencies: - minimist "^1.2.5" - -jsonfile@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" - integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== - dependencies: - universalify "^2.0.0" - optionalDependencies: - graceful-fs "^4.1.6" - -jszip@^3.6.0: - version "3.7.1" - resolved "https://registry.yarnpkg.com/jszip/-/jszip-3.7.1.tgz#bd63401221c15625a1228c556ca8a68da6fda3d9" - integrity sha512-ghL0tz1XG9ZEmRMcEN2vt7xabrDdqHHeykgARpmZ0BiIctWxM47Vt63ZO2dnp4QYt/xJVLLy5Zv1l/xRdh2byg== - dependencies: - lie "~3.3.0" - pako "~1.0.2" - readable-stream "~2.3.6" - set-immediate-shim "~1.0.1" - -junk@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/junk/-/junk-3.1.0.tgz#31499098d902b7e98c5d9b9c80f43457a88abfa1" - integrity sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ== - -kind-of@^6.0.2: - version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== - -klona@^2.0.4, klona@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.5.tgz#d166574d90076395d9963aa7a928fabb8d76afbc" - integrity sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ== - -laravel-mix@^6: - version "6.0.39" - resolved "https://registry.yarnpkg.com/laravel-mix/-/laravel-mix-6.0.39.tgz#166090f44bc3fe14de4d013e8dd975e3ccd1c42e" - integrity sha512-ChTRKSNx9ViD3Xw1+BDQUZ0PLETcBrXlM7vNmomoDUZBXLUurVUJ9oaRUdGmH/WENNqL0qQ8FFxjq+6U368Nlg== - dependencies: - "@babel/core" "^7.15.8" - "@babel/plugin-proposal-object-rest-spread" "^7.15.6" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - "@babel/plugin-transform-runtime" "^7.15.8" - "@babel/preset-env" "^7.15.8" - "@babel/runtime" "^7.15.4" - "@types/babel__core" "^7.1.16" - "@types/clean-css" "^4.2.5" - "@types/imagemin-gifsicle" "^7.0.1" - "@types/imagemin-mozjpeg" "^8.0.1" - "@types/imagemin-optipng" "^5.2.1" - "@types/imagemin-svgo" "^8.0.0" - autoprefixer "^10.4.0" - babel-loader "^8.2.3" - chalk "^4.1.2" - chokidar "^3.5.2" - clean-css "^4.2.3 || ^5.1.2" - cli-table3 "^0.6.0" - collect.js "^4.28.5" - commander "^7.2.0" - concat "^1.0.3" - css-loader "^5.2.6" - cssnano "^5.0.8" - dotenv "^10.0.0" - dotenv-expand "^5.1.0" - file-loader "^6.2.0" - fs-extra "^10.0.0" - glob "^7.2.0" - html-loader "^1.3.2" - imagemin "^7.0.1" - img-loader "^4.0.0" - lodash "^4.17.21" - md5 "^2.3.0" - mini-css-extract-plugin "^1.6.2" - node-libs-browser "^2.2.1" - postcss-load-config "^3.1.0" - postcss-loader "^6.2.0" - semver "^7.3.5" - strip-ansi "^6.0.0" - style-loader "^2.0.0" - terser "^5.9.0" - terser-webpack-plugin "^5.2.4" - vue-style-loader "^4.1.3" - webpack "^5.60.0" - webpack-cli "^4.9.1" - webpack-dev-server "4.4.0" - webpack-merge "^5.8.0" - webpack-notifier "^1.14.1" - webpackbar "^5.0.0-3" - yargs "^17.2.1" - -leaflet@^1.7.1: - version "1.7.1" - resolved "https://registry.yarnpkg.com/leaflet/-/leaflet-1.7.1.tgz#10d684916edfe1bf41d688a3b97127c0322a2a19" - integrity sha512-/xwPEBidtg69Q3HlqPdU3DnrXQOvQU/CCHA1tcDQVzOwm91YMYaILjNp7L4Eaw5Z4sOYdbBz6koWyibppd8Zqw== - -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" - -lie@3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/lie/-/lie-3.1.1.tgz#9a436b2cc7746ca59de7a41fa469b3efb76bd87e" - integrity sha1-mkNrLMd0bKWd56QfpGmz77dr2H4= - dependencies: - immediate "~3.0.5" - -lie@~3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz#dcf82dee545f46074daf200c7c1c5a08e0f40f6a" - integrity sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ== - dependencies: - immediate "~3.0.5" - -lilconfig@^2.0.3, lilconfig@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.4.tgz#f4507d043d7058b380b6a8f5cb7bcd4b34cee082" - integrity sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA== - -linebreak@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/linebreak/-/linebreak-1.0.2.tgz#4b5781733e9a9eb2849dba2f963e47c887f8aa06" - integrity sha512-bJwSRsJeAmaZYnkcwl5sCQNfSDAhBuXxb6L27tb+qkBRtUQSSTUa5bcgCPD6hFEkRNlpWHfK7nFMmcANU7ZP1w== - dependencies: - base64-js "0.0.8" - brfs "^2.0.2" - unicode-trie "^1.0.0" - -lines-and-columns@^1.1.6: - version "1.2.4" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" - integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== - -loader-runner@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.2.0.tgz#d7022380d66d14c5fb1d496b89864ebcfd478384" - integrity sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw== - -loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" - integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^1.0.1" - -loader-utils@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.2.tgz#d6e3b4fb81870721ae4e0868ab11dd638368c129" - integrity sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^2.1.2" - -localforage-memoryStorageDriver@^0.9.2: - version "0.9.2" - resolved "https://registry.yarnpkg.com/localforage-memoryStorageDriver/-/localforage-memoryStorageDriver-0.9.2.tgz#2e0f7ff2acb0e9ff5e82c52c9e2eb3d63b998d30" - integrity sha1-Lg9/8qyw6f9egsUsni6z1juZjTA= - dependencies: - localforage ">=1.4.0" - -localforage@>=1.4.0, localforage@^1.9.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/localforage/-/localforage-1.10.0.tgz#5c465dc5f62b2807c3a84c0c6a1b1b3212781dd4" - integrity sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg== - dependencies: - lie "3.1.1" - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -lodash.clonedeep@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" - integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= - -lodash.debounce@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" - integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= - -lodash.memoize@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= - -lodash.uniq@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" - integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= - -lodash@^4.17.14, lodash@^4.17.20, lodash@^4.17.21: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - -lower-case@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" - integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== - dependencies: - tslib "^2.0.3" - -lru-cache@^4.1.2: - version "4.1.5" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" - integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== - dependencies: - pseudomap "^1.0.2" - yallist "^2.1.2" - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -magic-string@0.25.1: - version "0.25.1" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.1.tgz#b1c248b399cd7485da0fe7385c2fc7011843266e" - integrity sha512-sCuTz6pYom8Rlt4ISPFn6wuFodbKMIHUMv4Qko9P17dpxb7s52KJTmRuZZqHdGmLCK9AOcDare039nRIcfdkEg== - dependencies: - sourcemap-codec "^1.4.1" - -make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== - dependencies: - semver "^6.0.0" - -md5.js@^1.3.4: - version "1.3.5" - resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" - integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - -md5@^2.2.1, md5@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" - integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== - dependencies: - charenc "0.0.2" - crypt "0.0.2" - is-buffer "~1.1.6" - -mdn-data@2.0.14: - version "2.0.14" - resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" - integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== - -media-typer@0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= - -memfs@^3.2.2: - version "3.4.1" - resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.4.1.tgz#b78092f466a0dce054d63d39275b24c71d3f1305" - integrity sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw== - dependencies: - fs-monkey "1.0.3" - -merge-descriptors@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= - -merge-source-map@1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.4.tgz#a5de46538dae84d4114cc5ea02b4772a6346701f" - integrity sha1-pd5GU42uhNQRTMXqArR3KmNGcB8= - dependencies: - source-map "^0.5.6" - -merge-source-map@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646" - integrity sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw== - dependencies: - source-map "^0.6.1" - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -merge2@^1.2.3, merge2@^1.3.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" - integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== - -methods@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= - -micromatch@^4.0.2, micromatch@^4.0.4: - version "4.0.4" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" - integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== - dependencies: - braces "^3.0.1" - picomatch "^2.2.3" - -miller-rabin@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" - integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== - dependencies: - bn.js "^4.0.0" - brorand "^1.0.1" - -mime-db@1.51.0, "mime-db@>= 1.43.0 < 2": - version "1.51.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.51.0.tgz#d9ff62451859b18342d960850dc3cfb77e63fb0c" - integrity sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g== - -mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.24: - version "2.1.34" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.34.tgz#5a712f9ec1503511a945803640fafe09d3793c24" - integrity sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A== - dependencies: - mime-db "1.51.0" - -mime@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -mini-css-extract-plugin@^1.6.2: - version "1.6.2" - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz#83172b4fd812f8fc4a09d6f6d16f924f53990ca8" - integrity sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q== - dependencies: - loader-utils "^2.0.0" - schema-utils "^3.0.0" - webpack-sources "^1.1.0" - -minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" - integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== - -minimalistic-crypto-utils@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" - integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= - -minimatch@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== - dependencies: - brace-expansion "^1.1.7" - -minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" - integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== - -mkdirp@^0.5.5: - version "0.5.5" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" - integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== - dependencies: - minimist "^1.2.5" - -moment-timezone@^0.5.31: - version "0.5.34" - resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.34.tgz#a75938f7476b88f155d3504a9343f7519d9a405c" - integrity sha512-3zAEHh2hKUs3EXLESx/wsgw6IQdusOT8Bxm3D9UrHPQR7zlMmzwybC8zHEM1tQ4LJwP7fcxrWr8tuBg05fFCbg== - dependencies: - moment ">= 2.9.0" - -"moment@>= 2.9.0", moment@^2.10.2, moment@^2.29.0, moment@^2.29.1, moment@^2.9.0: - version "2.29.1" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3" - integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ== - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -ms@2.1.3, ms@^2.1.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - -multicast-dns-service-types@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901" - integrity sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE= - -multicast-dns@^6.0.1: - version "6.2.3" - resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.2.3.tgz#a0ec7bd9055c4282f790c3c82f4e28db3b31b229" - integrity sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g== - dependencies: - dns-packet "^1.3.1" - thunky "^1.0.2" - -nanoid@^3.1.30: - version "3.1.30" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.30.tgz#63f93cc548d2a113dc5dfbc63bfa09e2b9b64362" - integrity sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ== - -negotiator@0.6.2: - version "0.6.2" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" - integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== - -neo-async@^2.6.2: - version "2.6.2" - resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" - integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== - -next-tick@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" - integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= - -no-case@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" - integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== - dependencies: - lower-case "^2.0.2" - tslib "^2.0.3" - -node-fetch@^2.6.1: - version "2.6.7" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" - integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== - dependencies: - whatwg-url "^5.0.0" - -node-forge@^0.10.0: - version "0.10.0" - resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3" - integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA== - -node-libs-browser@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" - integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q== - dependencies: - assert "^1.1.1" - browserify-zlib "^0.2.0" - buffer "^4.3.0" - console-browserify "^1.1.0" - constants-browserify "^1.0.0" - crypto-browserify "^3.11.0" - domain-browser "^1.1.1" - events "^3.0.0" - https-browserify "^1.0.0" - os-browserify "^0.3.0" - path-browserify "0.0.1" - process "^0.11.10" - punycode "^1.2.4" - querystring-es3 "^0.2.0" - readable-stream "^2.3.3" - stream-browserify "^2.0.1" - stream-http "^2.7.2" - string_decoder "^1.0.0" - timers-browserify "^2.0.4" - tty-browserify "0.0.0" - url "^0.11.0" - util "^0.11.0" - vm-browserify "^1.0.1" - -node-notifier@^9.0.0: - version "9.0.1" - resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-9.0.1.tgz#cea837f4c5e733936c7b9005e6545cea825d1af4" - integrity sha512-fPNFIp2hF/Dq7qLDzSg4vZ0J4e9v60gJR+Qx7RbjbWqzPDdEqeVpEx5CFeDAELIl+A/woaaNn1fQ5nEVerMxJg== - dependencies: - growly "^1.3.0" - is-wsl "^2.2.0" - semver "^7.3.2" - shellwords "^0.1.1" - uuid "^8.3.0" - which "^2.0.2" - -node-releases@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.1.tgz#3d1d395f204f1f2f29a54358b9fb678765ad2fc5" - integrity sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA== - -normalize-path@^3.0.0, normalize-path@~3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -normalize-range@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" - integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= - -normalize-url@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" - integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== - -npm-run-path@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== - dependencies: - path-key "^3.0.0" - -nth-check@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.1.tgz#2efe162f5c3da06a28959fbd3db75dbeea9f0fc2" - integrity sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w== - dependencies: - boolbase "^1.0.0" - -object-assign@^4.1.0, object-assign@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= - -object-inspect@^1.6.0: - version "1.12.0" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz#6e2c120e868fd1fd18cb4f18c31741d0d6e776f0" - integrity sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g== - -object-is@^1.0.1: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" - integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - -object-keys@^1.0.12, object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object.assign@^4.1.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" - integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== - dependencies: - call-bind "^1.0.0" - define-properties "^1.1.3" - has-symbols "^1.0.1" - object-keys "^1.1.1" - -obuf@^1.0.0, obuf@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" - integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== - -on-finished@~2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" - integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= - dependencies: - ee-first "1.1.1" - -on-headers@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" - integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== - -once@^1.3.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= - dependencies: - wrappy "1" - -onetime@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -open@^8.0.9: - version "8.4.0" - resolved "https://registry.yarnpkg.com/open/-/open-8.4.0.tgz#345321ae18f8138f82565a910fdc6b39e8c244f8" - integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q== - dependencies: - define-lazy-prop "^2.0.0" - is-docker "^2.1.1" - is-wsl "^2.2.0" - -optionator@^0.8.1: - version "0.8.3" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" - integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.6" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - word-wrap "~1.2.3" - -os-browserify@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" - integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= - -overlayscrollbars@^1.13.1: - version "1.13.1" - resolved "https://registry.yarnpkg.com/overlayscrollbars/-/overlayscrollbars-1.13.1.tgz#0b840a88737f43a946b9d87875a2f9e421d0338a" - integrity sha512-gIQfzgGgu1wy80EB4/6DaJGHMEGmizq27xHIESrzXq0Y/J0Ay1P3DWk6tuVmEPIZH15zaBlxeEJOqdJKmowHCQ== - -p-event@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/p-event/-/p-event-4.2.0.tgz#af4b049c8acd91ae81083ebd1e6f5cae2044c1b5" - integrity sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ== - dependencies: - p-timeout "^3.1.0" - -p-finally@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" - integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= - -p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" - -p-pipe@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/p-pipe/-/p-pipe-3.1.0.tgz#48b57c922aa2e1af6a6404cb7c6bf0eb9cc8e60e" - integrity sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw== - -p-retry@^4.5.0: - version "4.6.1" - resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.6.1.tgz#8fcddd5cdf7a67a0911a9cf2ef0e5df7f602316c" - integrity sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA== - dependencies: - "@types/retry" "^0.12.0" - retry "^0.13.1" - -p-timeout@^3.1.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" - integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== - dependencies: - p-finally "^1.0.0" - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -pako@^0.2.5: - version "0.2.9" - resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" - integrity sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU= - -pako@~1.0.2, pako@~1.0.5: - version "1.0.11" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" - integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== - -param-case@^3.0.3: - version "3.0.4" - resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" - integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== - dependencies: - dot-case "^3.0.4" - tslib "^2.0.3" - -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parse-asn1@^5.0.0, parse-asn1@^5.1.5: - version "5.1.6" - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" - integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== - dependencies: - asn1.js "^5.2.0" - browserify-aes "^1.0.0" - evp_bytestokey "^1.0.0" - pbkdf2 "^3.0.3" - safe-buffer "^5.1.1" - -parse-json@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" - integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-even-better-errors "^2.3.0" - lines-and-columns "^1.1.6" - -parseurl@~1.3.2, parseurl@~1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== - -pascal-case@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" - integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== - dependencies: - no-case "^3.0.4" - tslib "^2.0.3" - -path-browserify@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" - integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-parse@^1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-to-regexp@0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= - -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -pbkdf2@^3.0.3: - version "3.1.2" - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" - integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== - dependencies: - create-hash "^1.1.2" - create-hmac "^1.1.4" - ripemd160 "^2.0.1" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - -pdfkit@>=0.8.1: - version "0.13.0" - resolved "https://registry.yarnpkg.com/pdfkit/-/pdfkit-0.13.0.tgz#da4c2becd63a129e3aae448fdaed4ee7be790f8f" - integrity sha512-AW79eHU5eLd2vgRDS9z3bSoi0FA+gYm+100LLosrQQMLUzOBGVOhG7ABcMFpJu7Bpg+MT74XYHi4k9EuU/9EZw== - dependencies: - crypto-js "^4.0.0" - fontkit "^1.8.1" - linebreak "^1.0.2" - png-js "^1.0.0" - -pdfkit@^0.12.0: - version "0.12.3" - resolved "https://registry.yarnpkg.com/pdfkit/-/pdfkit-0.12.3.tgz#527da4a4bad9a6b456a6939037d63d5ff9306302" - integrity sha512-+qDLgm2yq6WOKcxTb43lDeo3EtMIDQs0CK1RNqhHC9iT6u0KOmgwAClkYh9xFw2ATbmUZzt4f7KMwDCOfPDluA== - dependencies: - crypto-js "^4.0.0" - fontkit "^1.8.1" - linebreak "^1.0.2" - png-js "^1.0.0" - -pdfmake@^0.1.70: - version "0.1.72" - resolved "https://registry.yarnpkg.com/pdfmake/-/pdfmake-0.1.72.tgz#b5ef0057e40e7a22b23a19aaf0be35ada902a3bf" - integrity sha512-xZrPS+Safjf1I8ZYtMoXX83E6C6Pd1zFwa168yNTeeJWHclqf1z9DoYajjlY2uviN7gGyxwVZeou39uSk1oh1g== - dependencies: - iconv-lite "^0.6.2" - linebreak "^1.0.2" - pdfkit "^0.12.0" - svg-to-pdfkit "^0.1.8" - xmldoc "^1.1.2" - -picocolors@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f" - integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== - -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== - -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3: - version "2.3.0" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" - integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== - -pkg-dir@^4.1.0, pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -png-js@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/png-js/-/png-js-1.0.0.tgz#e5484f1e8156996e383aceebb3789fd75df1874d" - integrity sha512-k+YsbhpA9e+EFfKjTCH3VW6aoKlyNYI6NYdTfDL4CIvFnvsuO84ttonmZE7rc+v23SLTH8XX+5w/Ak9v0xGY4g== - -popper.js@>=1.10, popper.js@^1.16.1: - version "1.16.1" - resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b" - integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ== - -portal-vue@^2.1.7: - version "2.1.7" - resolved "https://registry.yarnpkg.com/portal-vue/-/portal-vue-2.1.7.tgz#ea08069b25b640ca08a5b86f67c612f15f4e4ad4" - integrity sha512-+yCno2oB3xA7irTt0EU5Ezw22L2J51uKAacE/6hMPMoO/mx3h4rXFkkBkT4GFsMDv/vEe8TNKC3ujJJ0PTwb6g== - -portfinder@^1.0.28: - version "1.0.28" - resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778" - integrity sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA== - dependencies: - async "^2.6.2" - debug "^3.1.1" - mkdirp "^0.5.5" - -postcss-calc@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.0.0.tgz#a05b87aacd132740a5db09462a3612453e5df90a" - integrity sha512-5NglwDrcbiy8XXfPM11F3HeC6hoT9W7GUH/Zi5U/p7u3Irv4rHhdDcIZwG0llHXV4ftsBjpfWMXAnXNl4lnt8g== - dependencies: - postcss-selector-parser "^6.0.2" - postcss-value-parser "^4.0.2" - -postcss-colormin@^5.2.2: - version "5.2.2" - resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.2.2.tgz#019cd6912bef9e7e0924462c5e4ffae241e2f437" - integrity sha512-tSEe3NpqWARUTidDlF0LntPkdlhXqfDFuA1yslqpvvGAfpZ7oBaw+/QXd935NKm2U9p4PED0HDZlzmMk7fVC6g== - dependencies: - browserslist "^4.16.6" - caniuse-api "^3.0.0" - colord "^2.9.1" - postcss-value-parser "^4.2.0" - -postcss-convert-values@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.0.2.tgz#879b849dc3677c7d6bc94b6a2c1a3f0808798059" - integrity sha512-KQ04E2yadmfa1LqXm7UIDwW1ftxU/QWZmz6NKnHnUvJ3LEYbbcX6i329f/ig+WnEByHegulocXrECaZGLpL8Zg== - dependencies: - postcss-value-parser "^4.1.0" - -postcss-discard-comments@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.0.1.tgz#9eae4b747cf760d31f2447c27f0619d5718901fe" - integrity sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg== - -postcss-discard-duplicates@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.1.tgz#68f7cc6458fe6bab2e46c9f55ae52869f680e66d" - integrity sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA== - -postcss-discard-empty@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.0.1.tgz#ee136c39e27d5d2ed4da0ee5ed02bc8a9f8bf6d8" - integrity sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw== - -postcss-discard-overridden@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.0.1.tgz#454b41f707300b98109a75005ca4ab0ff2743ac6" - integrity sha512-Y28H7y93L2BpJhrdUR2SR2fnSsT+3TVx1NmVQLbcnZWwIUpJ7mfcTC6Za9M2PG6w8j7UQRfzxqn8jU2VwFxo3Q== - -postcss-load-config@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.1.tgz#2f53a17f2f543d9e63864460af42efdac0d41f87" - integrity sha512-c/9XYboIbSEUZpiD1UQD0IKiUe8n9WHYV7YFe7X7J+ZwCsEKkUJSFWjS9hBU1RR9THR7jMXst8sxiqP0jjo2mg== - dependencies: - lilconfig "^2.0.4" - yaml "^1.10.2" - -postcss-loader@^6.2.0: - version "6.2.1" - resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-6.2.1.tgz#0895f7346b1702103d30fdc66e4d494a93c008ef" - integrity sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q== - dependencies: - cosmiconfig "^7.0.0" - klona "^2.0.5" - semver "^7.3.5" - -postcss-merge-longhand@^5.0.4: - version "5.0.4" - resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.0.4.tgz#41f4f3270282ea1a145ece078b7679f0cef21c32" - integrity sha512-2lZrOVD+d81aoYkZDpWu6+3dTAAGkCKbV5DoRhnIR7KOULVrI/R7bcMjhrH9KTRy6iiHKqmtG+n/MMj1WmqHFw== - dependencies: - postcss-value-parser "^4.1.0" - stylehacks "^5.0.1" - -postcss-merge-rules@^5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.0.3.tgz#b5cae31f53129812a77e3eb1eeee448f8cf1a1db" - integrity sha512-cEKTMEbWazVa5NXd8deLdCnXl+6cYG7m2am+1HzqH0EnTdy8fRysatkaXb2dEnR+fdaDxTvuZ5zoBdv6efF6hg== - dependencies: - browserslist "^4.16.6" - caniuse-api "^3.0.0" - cssnano-utils "^2.0.1" - postcss-selector-parser "^6.0.5" - -postcss-minify-font-values@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.0.1.tgz#a90cefbfdaa075bd3dbaa1b33588bb4dc268addf" - integrity sha512-7JS4qIsnqaxk+FXY1E8dHBDmraYFWmuL6cgt0T1SWGRO5bzJf8sUoelwa4P88LEWJZweHevAiDKxHlofuvtIoA== - dependencies: - postcss-value-parser "^4.1.0" - -postcss-minify-gradients@^5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.0.3.tgz#f970a11cc71e08e9095e78ec3a6b34b91c19550e" - integrity sha512-Z91Ol22nB6XJW+5oe31+YxRsYooxOdFKcbOqY/V8Fxse1Y3vqlNRpi1cxCqoACZTQEhl+xvt4hsbWiV5R+XI9Q== - dependencies: - colord "^2.9.1" - cssnano-utils "^2.0.1" - postcss-value-parser "^4.1.0" - -postcss-minify-params@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.0.2.tgz#1b644da903473fbbb18fbe07b8e239883684b85c" - integrity sha512-qJAPuBzxO1yhLad7h2Dzk/F7n1vPyfHfCCh5grjGfjhi1ttCnq4ZXGIW77GSrEbh9Hus9Lc/e/+tB4vh3/GpDg== - dependencies: - alphanum-sort "^1.0.2" - browserslist "^4.16.6" - cssnano-utils "^2.0.1" - postcss-value-parser "^4.1.0" - -postcss-minify-selectors@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.1.0.tgz#4385c845d3979ff160291774523ffa54eafd5a54" - integrity sha512-NzGBXDa7aPsAcijXZeagnJBKBPMYLaJJzB8CQh6ncvyl2sIndLVWfbcDi0SBjRWk5VqEjXvf8tYwzoKf4Z07og== - dependencies: - alphanum-sort "^1.0.2" - postcss-selector-parser "^6.0.5" - -postcss-modules-extract-imports@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" - integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== - -postcss-modules-local-by-default@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz#ebbb54fae1598eecfdf691a02b3ff3b390a5a51c" - integrity sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ== - dependencies: - icss-utils "^5.0.0" - postcss-selector-parser "^6.0.2" - postcss-value-parser "^4.1.0" - -postcss-modules-scope@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06" - integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== - dependencies: - postcss-selector-parser "^6.0.4" - -postcss-modules-values@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" - integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== - dependencies: - icss-utils "^5.0.0" - -postcss-normalize-charset@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.0.1.tgz#121559d1bebc55ac8d24af37f67bd4da9efd91d0" - integrity sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg== - -postcss-normalize-display-values@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.0.1.tgz#62650b965981a955dffee83363453db82f6ad1fd" - integrity sha512-uupdvWk88kLDXi5HEyI9IaAJTE3/Djbcrqq8YgjvAVuzgVuqIk3SuJWUisT2gaJbZm1H9g5k2w1xXilM3x8DjQ== - dependencies: - cssnano-utils "^2.0.1" - postcss-value-parser "^4.1.0" - -postcss-normalize-positions@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.0.1.tgz#868f6af1795fdfa86fbbe960dceb47e5f9492fe5" - integrity sha512-rvzWAJai5xej9yWqlCb1OWLd9JjW2Ex2BCPzUJrbaXmtKtgfL8dBMOOMTX6TnvQMtjk3ei1Lswcs78qKO1Skrg== - dependencies: - postcss-value-parser "^4.1.0" - -postcss-normalize-repeat-style@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.1.tgz#cbc0de1383b57f5bb61ddd6a84653b5e8665b2b5" - integrity sha512-syZ2itq0HTQjj4QtXZOeefomckiV5TaUO6ReIEabCh3wgDs4Mr01pkif0MeVwKyU/LHEkPJnpwFKRxqWA/7O3w== - dependencies: - cssnano-utils "^2.0.1" - postcss-value-parser "^4.1.0" - -postcss-normalize-string@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.0.1.tgz#d9eafaa4df78c7a3b973ae346ef0e47c554985b0" - integrity sha512-Ic8GaQ3jPMVl1OEn2U//2pm93AXUcF3wz+OriskdZ1AOuYV25OdgS7w9Xu2LO5cGyhHCgn8dMXh9bO7vi3i9pA== - dependencies: - postcss-value-parser "^4.1.0" - -postcss-normalize-timing-functions@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.0.1.tgz#8ee41103b9130429c6cbba736932b75c5e2cb08c" - integrity sha512-cPcBdVN5OsWCNEo5hiXfLUnXfTGtSFiBU9SK8k7ii8UD7OLuznzgNRYkLZow11BkQiiqMcgPyh4ZqXEEUrtQ1Q== - dependencies: - cssnano-utils "^2.0.1" - postcss-value-parser "^4.1.0" - -postcss-normalize-unicode@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.1.tgz#82d672d648a411814aa5bf3ae565379ccd9f5e37" - integrity sha512-kAtYD6V3pK0beqrU90gpCQB7g6AOfP/2KIPCVBKJM2EheVsBQmx/Iof+9zR9NFKLAx4Pr9mDhogB27pmn354nA== - dependencies: - browserslist "^4.16.0" - postcss-value-parser "^4.1.0" - -postcss-normalize-url@^5.0.4: - version "5.0.4" - resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.0.4.tgz#3b0322c425e31dd275174d0d5db0e466f50810fb" - integrity sha512-cNj3RzK2pgQQyNp7dzq0dqpUpQ/wYtdDZM3DepPmFjCmYIfceuD9VIAcOdvrNetjIU65g1B4uwdP/Krf6AFdXg== - dependencies: - normalize-url "^6.0.1" - postcss-value-parser "^4.2.0" - -postcss-normalize-whitespace@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.1.tgz#b0b40b5bcac83585ff07ead2daf2dcfbeeef8e9a" - integrity sha512-iPklmI5SBnRvwceb/XH568yyzK0qRVuAG+a1HFUsFRf11lEJTiQQa03a4RSCQvLKdcpX7XsI1Gen9LuLoqwiqA== - dependencies: - postcss-value-parser "^4.1.0" - -postcss-ordered-values@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.0.2.tgz#1f351426977be00e0f765b3164ad753dac8ed044" - integrity sha512-8AFYDSOYWebJYLyJi3fyjl6CqMEG/UVworjiyK1r573I56kb3e879sCJLGvR3merj+fAdPpVplXKQZv+ey6CgQ== - dependencies: - cssnano-utils "^2.0.1" - postcss-value-parser "^4.1.0" - -postcss-reduce-initial@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.0.2.tgz#fa424ce8aa88a89bc0b6d0f94871b24abe94c048" - integrity sha512-v/kbAAQ+S1V5v9TJvbGkV98V2ERPdU6XvMcKMjqAlYiJ2NtsHGlKYLPjWWcXlaTKNxooId7BGxeraK8qXvzKtw== - dependencies: - browserslist "^4.16.6" - caniuse-api "^3.0.0" - -postcss-reduce-transforms@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.1.tgz#93c12f6a159474aa711d5269923e2383cedcf640" - integrity sha512-a//FjoPeFkRuAguPscTVmRQUODP+f3ke2HqFNgGPwdYnpeC29RZdCBvGRGTsKpMURb/I3p6jdKoBQ2zI+9Q7kA== - dependencies: - cssnano-utils "^2.0.1" - postcss-value-parser "^4.1.0" - -postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5: - version "6.0.8" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.8.tgz#f023ed7a9ea736cd7ef70342996e8e78645a7914" - integrity sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ== - dependencies: - cssesc "^3.0.0" - util-deprecate "^1.0.2" - -postcss-svgo@^5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.0.3.tgz#d945185756e5dfaae07f9edb0d3cae7ff79f9b30" - integrity sha512-41XZUA1wNDAZrQ3XgWREL/M2zSw8LJPvb5ZWivljBsUQAGoEKMYm6okHsTjJxKYI4M75RQEH4KYlEM52VwdXVA== - dependencies: - postcss-value-parser "^4.1.0" - svgo "^2.7.0" - -postcss-unique-selectors@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.0.2.tgz#5d6893daf534ae52626708e0d62250890108c0c1" - integrity sha512-w3zBVlrtZm7loQWRPVC0yjUwwpty7OM6DnEHkxcSQXO1bMS3RJ+JUS5LFMSDZHJcvGsRwhZinCWVqn8Kej4EDA== - dependencies: - alphanum-sort "^1.0.2" - postcss-selector-parser "^6.0.5" - -postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" - integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== - -postcss@^7.0.35, postcss@^7.0.36: - version "7.0.39" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.39.tgz#9624375d965630e2e1f2c02a935c82a59cb48309" - integrity sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA== - dependencies: - picocolors "^0.2.1" - source-map "^0.6.1" - -postcss@^8.2.15, postcss@^8.4.5: - version "8.4.5" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95" - integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg== - dependencies: - nanoid "^3.1.30" - picocolors "^1.0.0" - source-map-js "^1.0.1" - -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= - -"prettier@^1.18.2 || ^2.0.0": - version "2.5.1" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.5.1.tgz#fff75fa9d519c54cf0fce328c1017d94546bc56a" - integrity sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg== - -pretty-time@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/pretty-time/-/pretty-time-1.1.0.tgz#ffb7429afabb8535c346a34e41873adf3d74dd0e" - integrity sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA== - -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -process@^0.11.10: - version "0.11.10" - resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" - integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= - -proxy-addr@~2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" - integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== - dependencies: - forwarded "0.2.0" - ipaddr.js "1.9.1" - -pseudomap@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" - integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= - -public-encrypt@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" - integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== - dependencies: - bn.js "^4.1.0" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - parse-asn1 "^5.0.0" - randombytes "^2.0.1" - safe-buffer "^5.1.2" - -punycode@1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" - integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= - -punycode@^1.2.4: - version "1.4.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" - integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= - -punycode@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== - -qs@6.9.6: - version "6.9.6" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.6.tgz#26ed3c8243a431b2924aca84cc90471f35d5a0ee" - integrity sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ== - -querystring-es3@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" - integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= - -querystring@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" - integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= - -queue-microtask@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== - -quote-stream@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/quote-stream/-/quote-stream-1.0.2.tgz#84963f8c9c26b942e153feeb53aae74652b7e0b2" - integrity sha1-hJY/jJwmuULhU/7rU6rnRlK34LI= - dependencies: - buffer-equal "0.0.1" - minimist "^1.1.3" - through2 "^2.0.0" - -randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" - integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== - dependencies: - safe-buffer "^5.1.0" - -randomfill@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" - integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== - dependencies: - randombytes "^2.0.5" - safe-buffer "^5.1.0" - -range-parser@^1.2.1, range-parser@~1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== - -"raphael@^2.2.0 || ^2.1.1", raphael@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/raphael/-/raphael-2.3.0.tgz#eabeb09dba861a1d4cee077eaafb8c53f3131f89" - integrity sha512-w2yIenZAQnp257XUWGni4bLMVxpUpcIl7qgxEgDIXtmSypYtlNxfXWpOBxs7LBTps5sDwhRnrToJrMUrivqNTQ== - dependencies: - eve-raphael "0.5.0" - -raw-body@2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.2.tgz#baf3e9c21eebced59dd6533ac872b71f7b61cb32" - integrity sha512-RPMAFUJP19WIet/99ngh6Iv8fzAbqum4Li7AD6DtGaW2RpMB/11xDoalPiJMTbu6I3hkbMVkATvZrqb9EEqeeQ== - dependencies: - bytes "3.1.1" - http-errors "1.8.1" - iconv-lite "0.4.24" - unpipe "1.0.0" - -readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.3, readable-stream@~2.3.6: - version "2.3.7" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" - integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readable-stream@^3.0.6, readable-stream@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readdirp@~3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== - dependencies: - picomatch "^2.2.1" - -rechoir@^0.7.0: - version "0.7.1" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.7.1.tgz#9478a96a1ca135b5e88fc027f03ee92d6c645686" - integrity sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg== - dependencies: - resolve "^1.9.0" - -regenerate-unicode-properties@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz#54d09c7115e1f53dc2314a974b32c1c344efe326" - integrity sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA== - dependencies: - regenerate "^1.4.2" - -regenerate@^1.4.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" - integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== - -regenerator-runtime@^0.11.0: - version "0.11.1" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" - integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== - -regenerator-runtime@^0.13.4: - version "0.13.9" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" - integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== - -regenerator-transform@^0.14.2: - version "0.14.5" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" - integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== - dependencies: - "@babel/runtime" "^7.8.4" - -regex-parser@^2.2.11: - version "2.2.11" - resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.11.tgz#3b37ec9049e19479806e878cabe7c1ca83ccfe58" - integrity sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q== - -regexp.prototype.flags@^1.2.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26" - integrity sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - -regexpu-core@^4.7.1: - version "4.8.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.8.0.tgz#e5605ba361b67b1718478501327502f4479a98f0" - integrity sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg== - dependencies: - regenerate "^1.4.2" - regenerate-unicode-properties "^9.0.0" - regjsgen "^0.5.2" - regjsparser "^0.7.0" - unicode-match-property-ecmascript "^2.0.0" - unicode-match-property-value-ecmascript "^2.0.0" - -regjsgen@^0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" - integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== - -regjsparser@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.7.0.tgz#a6b667b54c885e18b52554cb4960ef71187e9968" - integrity sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ== - dependencies: - jsesc "~0.5.0" - -relateurl@^0.2.7: - version "0.2.7" - resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" - integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= - -replace-ext@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.1.tgz#2d6d996d04a15855d967443631dd5f77825b016a" - integrity sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw== - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= - -require-from-string@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" - integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== - -requires-port@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" - integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= - -resize-observer-polyfill@^1.5.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464" - integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg== - -resolve-cwd@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" - integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== - dependencies: - resolve-from "^5.0.0" - -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - -resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve-url-loader@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz#d50d4ddc746bb10468443167acf800dcd6c3ad57" - integrity sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA== - dependencies: - adjust-sourcemap-loader "^4.0.0" - convert-source-map "^1.7.0" - loader-utils "^2.0.0" - postcss "^7.0.35" - source-map "0.6.1" - -resolve@1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" - integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= - -resolve@^1.1.5, resolve@^1.14.2, resolve@^1.9.0: - version "1.20.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" - integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== - dependencies: - is-core-module "^2.2.0" - path-parse "^1.0.6" - -restructure@^0.5.3: - version "0.5.4" - resolved "https://registry.yarnpkg.com/restructure/-/restructure-0.5.4.tgz#f54e7dd563590fb34fd6bf55876109aeccb28de8" - integrity sha1-9U591WNZD7NP1r9Vh2EJrsyyjeg= - dependencies: - browserify-optional "^1.0.0" - -retry@^0.13.1: - version "0.13.1" - resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" - integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== - -reusify@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== - -rimraf@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -ripemd160@^2.0.0, ripemd160@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" - integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - -run-parallel@^1.1.9: - version "1.2.0" - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== - dependencies: - queue-microtask "^1.2.2" - -safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.1.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -sass-loader@^12.2.0: - version "12.4.0" - resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-12.4.0.tgz#260b0d51a8a373bb8e88efc11f6ba5583fea0bcf" - integrity sha512-7xN+8khDIzym1oL9XyS6zP6Ges+Bo2B2xbPrjdMHEYyV3AQYhd/wXeru++3ODHF0zMjYmVadblSKrPrjEkL8mg== - dependencies: - klona "^2.0.4" - neo-async "^2.6.2" - -sass@^1.49.0: - version "1.49.0" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.49.0.tgz#65ec1b1d9a6bc1bae8d2c9d4b392c13f5d32c078" - integrity sha512-TVwVdNDj6p6b4QymJtNtRS2YtLJ/CqZriGg0eIAbAKMlN8Xy6kbv33FsEZSF7FufFFM705SQviHjjThfaQ4VNw== - dependencies: - chokidar ">=3.0.0 <4.0.0" - immutable "^4.0.0" - source-map-js ">=0.6.2 <2.0.0" - -sax@^1.2.1: - version "1.2.4" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" - integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== - -schema-utils@^2.6.5: - version "2.7.1" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" - integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== - dependencies: - "@types/json-schema" "^7.0.5" - ajv "^6.12.4" - ajv-keywords "^3.5.2" - -schema-utils@^3.0.0, schema-utils@^3.1.0, schema-utils@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281" - integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw== - dependencies: - "@types/json-schema" "^7.0.8" - ajv "^6.12.5" - ajv-keywords "^3.5.2" - -schema-utils@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.0.0.tgz#60331e9e3ae78ec5d16353c467c34b3a0a1d3df7" - integrity sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg== - dependencies: - "@types/json-schema" "^7.0.9" - ajv "^8.8.0" - ajv-formats "^2.1.1" - ajv-keywords "^5.0.0" - -scope-analyzer@^2.0.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/scope-analyzer/-/scope-analyzer-2.1.2.tgz#b958162feb59823c2835c7b0229187a97c77e9cd" - integrity sha512-5cfCmsTYV/wPaRIItNxatw02ua/MThdIUNnUOCYp+3LSEJvnG804ANw2VLaavNILIfWXF1D1G2KNANkBBvInwQ== - dependencies: - array-from "^2.1.1" - dash-ast "^2.0.1" - es6-map "^0.1.5" - es6-set "^0.1.5" - es6-symbol "^3.1.1" - estree-is-function "^1.0.0" - get-assigned-identifiers "^1.1.0" - -select-hose@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" - integrity sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo= - -select2@^4.0.13: - version "4.0.13" - resolved "https://registry.yarnpkg.com/select2/-/select2-4.0.13.tgz#0dbe377df3f96167c4c1626033e924372d8ef44d" - integrity sha512-1JeB87s6oN/TDxQQYCvS5EFoQyvV6eYMZZ0AeA4tdFDYWN3BAGZ8npr17UBFddU0lgAt3H0yjX3X6/ekOj1yjw== - -selfsigned@^1.10.11: - version "1.10.11" - resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.11.tgz#24929cd906fe0f44b6d01fb23999a739537acbe9" - integrity sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA== - dependencies: - node-forge "^0.10.0" - -semver@7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" - integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== - -semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@^7.3.2, semver@^7.3.5: - version "7.3.5" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" - integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== - dependencies: - lru-cache "^6.0.0" - -send@0.17.2: - version "0.17.2" - resolved "https://registry.yarnpkg.com/send/-/send-0.17.2.tgz#926622f76601c41808012c8bf1688fe3906f7820" - integrity sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww== - dependencies: - debug "2.6.9" - depd "~1.1.2" - destroy "~1.0.4" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - fresh "0.5.2" - http-errors "1.8.1" - mime "1.6.0" - ms "2.1.3" - on-finished "~2.3.0" - range-parser "~1.2.1" - statuses "~1.5.0" - -serialize-javascript@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" - integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== - dependencies: - randombytes "^2.1.0" - -serve-index@^1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" - integrity sha1-03aNabHn2C5c4FD/9bRTvqEqkjk= - dependencies: - accepts "~1.3.4" - batch "0.6.1" - debug "2.6.9" - escape-html "~1.0.3" - http-errors "~1.6.2" - mime-types "~2.1.17" - parseurl "~1.3.2" - -serve-static@1.14.2: - version "1.14.2" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.2.tgz#722d6294b1d62626d41b43a013ece4598d292bfa" - integrity sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ== - dependencies: - encodeurl "~1.0.2" - escape-html "~1.0.3" - parseurl "~1.3.3" - send "0.17.2" - -set-immediate-shim@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" - integrity sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E= - -setimmediate@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= - -setprototypeof@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" - integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== - -setprototypeof@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" - integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== - -sha.js@^2.4.0, sha.js@^2.4.8: - version "2.4.11" - resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" - integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -shallow-clone@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" - integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== - dependencies: - kind-of "^6.0.2" - -shallow-copy@~0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/shallow-copy/-/shallow-copy-0.0.1.tgz#415f42702d73d810330292cc5ee86eae1a11a170" - integrity sha1-QV9CcC1z2BAzApLMXuhurhoRoXA= - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -shellwords@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" - integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== - -signal-exit@^3.0.3: - version "3.0.6" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.6.tgz#24e630c4b0f03fea446a2bd299e62b4a6ca8d0af" - integrity sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ== - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -sockjs@^0.3.21: - version "0.3.24" - resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce" - integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== - dependencies: - faye-websocket "^0.11.3" - uuid "^8.3.2" - websocket-driver "^0.7.4" - -sortablejs@^1.14.0: - version "1.14.0" - resolved "https://registry.yarnpkg.com/sortablejs/-/sortablejs-1.14.0.tgz#6d2e17ccbdb25f464734df621d4f35d4ab35b3d8" - integrity sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w== - -source-list-map@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" - integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== - -"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.1.tgz#a1741c131e3c77d048252adfa24e23b908670caf" - integrity sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA== - -source-map-support@~0.5.12, source-map-support@~0.5.20: - version "0.5.21" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" - integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -source-map@^0.5.0, source-map@^0.5.6: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= - -source-map@~0.1.30: - version "0.1.43" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" - integrity sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y= - dependencies: - amdefine ">=0.0.4" - -source-map@~0.7.2: - version "0.7.3" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" - integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== - -sourcemap-codec@^1.4.1: - version "1.4.8" - resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" - integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== - -sparklines@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/sparklines/-/sparklines-1.3.0.tgz#08015a34c295b62196b91e98df53bfbcb1fde175" - integrity sha512-CkFtpDE3hmOeu1IJyIQIOH0AQtHnPj1c61ALxJZQ9cPEFKDgWC1fcNAHuwPi1i1klTDYvlKKseoYHSwe7JmdLA== - -spdy-transport@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" - integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== - dependencies: - debug "^4.1.0" - detect-node "^2.0.4" - hpack.js "^2.1.6" - obuf "^1.1.2" - readable-stream "^3.0.6" - wbuf "^1.7.3" - -spdy@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" - integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== - dependencies: - debug "^4.1.0" - handle-thing "^2.0.0" - http-deceiver "^1.2.7" - select-hose "^2.0.0" - spdy-transport "^3.0.0" - -stable@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" - integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== - -static-eval@^2.0.5: - version "2.1.0" - resolved "https://registry.yarnpkg.com/static-eval/-/static-eval-2.1.0.tgz#a16dbe54522d7fa5ef1389129d813fd47b148014" - integrity sha512-agtxZ/kWSsCkI5E4QifRwsaPs0P0JmZV6dkLz6ILYfFYQGn+5plctanRN+IC8dJRiFkyXHrwEE3W9Wmx67uDbw== - dependencies: - escodegen "^1.11.1" - -static-module@^3.0.2: - version "3.0.4" - resolved "https://registry.yarnpkg.com/static-module/-/static-module-3.0.4.tgz#bfbd1d1c38dd1fbbf0bb4af0c1b3ae18a93a2b68" - integrity sha512-gb0v0rrgpBkifXCa3yZXxqVmXDVE+ETXj6YlC/jt5VzOnGXR2C15+++eXuMDUYsePnbhf+lwW0pE1UXyOLtGCw== - dependencies: - acorn-node "^1.3.0" - concat-stream "~1.6.0" - convert-source-map "^1.5.1" - duplexer2 "~0.1.4" - escodegen "^1.11.1" - has "^1.0.1" - magic-string "0.25.1" - merge-source-map "1.0.4" - object-inspect "^1.6.0" - readable-stream "~2.3.3" - scope-analyzer "^2.0.1" - shallow-copy "~0.0.1" - static-eval "^2.0.5" - through2 "~2.0.3" - -"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@~1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" - integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= - -std-env@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.0.1.tgz#bc4cbc0e438610197e34c2d79c3df30b491f5182" - integrity sha512-mC1Ps9l77/97qeOZc+HrOL7TIaOboHqMZ24dGVQrlxFcpPpfCHpH+qfUT7Dz+6mlG8+JPA1KfBQo19iC/+Ngcw== - -stream-browserify@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" - integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== - dependencies: - inherits "~2.0.1" - readable-stream "^2.0.2" - -stream-http@^2.7.2: - version "2.8.3" - resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" - integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== - dependencies: - builtin-status-codes "^3.0.0" - inherits "^2.0.1" - readable-stream "^2.3.6" - to-arraybuffer "^1.0.0" - xtend "^4.0.0" - -string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string_decoder@^1.0.0, string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-ansi@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2" - integrity sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw== - dependencies: - ansi-regex "^6.0.1" - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -style-loader@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-2.0.0.tgz#9669602fd4690740eaaec137799a03addbbc393c" - integrity sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ== - dependencies: - loader-utils "^2.0.0" - schema-utils "^3.0.0" - -stylehacks@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.0.1.tgz#323ec554198520986806388c7fdaebc38d2c06fb" - integrity sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA== - dependencies: - browserslist "^4.16.0" - postcss-selector-parser "^6.0.4" - -summernote@^0.8.18: - version "0.8.20" - resolved "https://registry.yarnpkg.com/summernote/-/summernote-0.8.20.tgz#395905f2cec0aceebc712edc019d91b8ef88f7cf" - integrity sha512-W9RhjQjsn+b1s9xiJQgJbCiYGJaDAc9CdEqXo+D13WuStG8lCdtKaO5AiNiSSMJsQJN2EfGSwbBQt+SFE2B8Kw== - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -supports-color@^8.0.0: - version "8.1.1" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" - integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== - dependencies: - has-flag "^4.0.0" - -svg-to-pdfkit@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/svg-to-pdfkit/-/svg-to-pdfkit-0.1.8.tgz#5921765922044843f0c1a5b25ec1ef8a4a33b8af" - integrity sha512-QItiGZBy5TstGy+q8mjQTMGRlDDOARXLxH+sgVm1n/LYeo0zFcQlcCh8m4zi8QxctrxB9Kue/lStc/RD5iLadQ== - dependencies: - pdfkit ">=0.8.1" - -svgo@^2.7.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24" - integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== - dependencies: - "@trysound/sax" "0.2.0" - commander "^7.2.0" - css-select "^4.1.3" - css-tree "^1.1.3" - csso "^4.2.0" - picocolors "^1.0.0" - stable "^0.1.8" - -sweetalert2@^10.15.6: - version "10.16.9" - resolved "https://registry.yarnpkg.com/sweetalert2/-/sweetalert2-10.16.9.tgz#8ed86f2fa811a136667a48357e204348705be8c9" - integrity sha512-oNe+md5tmmS3fGfVHa7gVPlun7Td2oANSacnZCeghnrr3OHBi6UPVPU+GFrymwaDqwQspACilLRmRnM7aTjNPA== - -tapable@^2.1.1, tapable@^2.2.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" - integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== - -tempusdominus-bootstrap-4@^5.39.0: - version "5.39.0" - resolved "https://registry.yarnpkg.com/tempusdominus-bootstrap-4/-/tempusdominus-bootstrap-4-5.39.0.tgz#f13dcfec6c41b37c5fe509f08bd513590c64411f" - integrity sha512-vYnkmQYQq4+A51WyRc/6e03eM0BHDoPaxd556K1pd4Nhr0eGeB3+Mi9b+3CDx4189fg3gQlrsKzgJiHPRwSX3Q== - dependencies: - bootstrap "^4.5.2" - jquery "^3.5.1" - moment "^2.29.0" - moment-timezone "^0.5.31" - popper.js "^1.16.1" - -terser-webpack-plugin@^5.1.3, terser-webpack-plugin@^5.2.4: - version "5.3.0" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.0.tgz#21641326486ecf91d8054161c816e464435bae9f" - integrity sha512-LPIisi3Ol4chwAaPP8toUJ3L4qCM1G0wao7L3qNv57Drezxj6+VEyySpPw4B1HSO2Eg/hDY/MNF5XihCAoqnsQ== - dependencies: - jest-worker "^27.4.1" - schema-utils "^3.1.1" - serialize-javascript "^6.0.0" - source-map "^0.6.1" - terser "^5.7.2" - -terser@^4.6.3: - version "4.8.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" - integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw== - dependencies: - commander "^2.20.0" - source-map "~0.6.1" - source-map-support "~0.5.12" - -terser@^5.7.2, terser@^5.9.0: - version "5.10.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.10.0.tgz#b86390809c0389105eb0a0b62397563096ddafcc" - integrity sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA== - dependencies: - commander "^2.20.0" - source-map "~0.7.2" - source-map-support "~0.5.20" - -through2@^2.0.0, through2@~2.0.3: - version "2.0.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - dependencies: - readable-stream "~2.3.6" - xtend "~4.0.1" - -through@~2.3.4: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= - -thunky@^1.0.2: - version "1.1.0" - resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" - integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== - -timers-browserify@^2.0.4: - version "2.0.12" - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee" - integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ== - dependencies: - setimmediate "^1.0.4" - -timsort@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" - integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= - -tiny-inflate@^1.0.0, tiny-inflate@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/tiny-inflate/-/tiny-inflate-1.0.3.tgz#122715494913a1805166aaf7c93467933eea26c4" - integrity sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw== - -to-arraybuffer@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" - integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= - -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -toastr@^2.1.4: - version "2.1.4" - resolved "https://registry.yarnpkg.com/toastr/-/toastr-2.1.4.tgz#8b43be64fb9d0c414871446f2db8e8ca4e95f181" - integrity sha1-i0O+ZPudDEFIcURvLbjoyk6V8YE= - dependencies: - jquery ">=1.12.0" - -toidentifier@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" - integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== - -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" - integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= - -tslib@^2.0.3: - version "2.3.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" - integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== - -tty-browserify@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" - integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= - -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= - dependencies: - prelude-ls "~1.1.2" - -type-is@~1.6.18: - version "1.6.18" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== - dependencies: - media-typer "0.3.0" - mime-types "~2.1.24" - -type@^1.0.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" - integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== - -type@^2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/type/-/type-2.5.0.tgz#0a2e78c2e77907b252abe5f298c1b01c63f0db3d" - integrity sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw== - -typedarray@^0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= - -uiv@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/uiv/-/uiv-1.4.1.tgz#793d90aa9fcba61f389626664ba54a4e86fdb848" - integrity sha512-3Tfg49lmSN0H75E+rKiZNN4yZfPeAP/GfTgkRweJNd59dCiY8fPRHwlCuFS3h81w87dvP6g+XFcfgig9DjjYQQ== - dependencies: - portal-vue "^2.1.7" - vue-functional-data-merge "^3.0.0" - -unicode-canonical-property-names-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" - integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== - -unicode-match-property-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" - integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== - dependencies: - unicode-canonical-property-names-ecmascript "^2.0.0" - unicode-property-aliases-ecmascript "^2.0.0" - -unicode-match-property-value-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714" - integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw== - -unicode-properties@^1.2.2: - version "1.3.1" - resolved "https://registry.yarnpkg.com/unicode-properties/-/unicode-properties-1.3.1.tgz#cc642b6314bde2c691d65dd94cece09ed84f1282" - integrity sha512-nIV3Tf3LcUEZttY/2g4ZJtGXhWwSkuLL+rCu0DIAMbjyVPj+8j5gNVz4T/sVbnQybIsd5SFGkPKg/756OY6jlA== - dependencies: - base64-js "^1.3.0" - unicode-trie "^2.0.0" - -unicode-property-aliases-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz#0a36cb9a585c4f6abd51ad1deddb285c165297c8" - integrity sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ== - -unicode-trie@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/unicode-trie/-/unicode-trie-0.3.1.tgz#d671dddd89101a08bac37b6a5161010602052085" - integrity sha1-1nHd3YkQGgi6w3tqUWEBBgIFIIU= - dependencies: - pako "^0.2.5" - tiny-inflate "^1.0.0" - -unicode-trie@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unicode-trie/-/unicode-trie-1.0.0.tgz#f649afdca127135edb55ca0ad7c8c60656d92ad1" - integrity sha512-v5raLKsobbFbWLMoX9+bChts/VhPPj3XpkNr/HbqkirXR1DPk8eo9IYKyvk0MQZFkaoRsFj2Rmaqgi2rfAZYtA== - dependencies: - pako "^0.2.5" - tiny-inflate "^1.0.0" - -unicode-trie@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-trie/-/unicode-trie-2.0.0.tgz#8fd8845696e2e14a8b67d78fa9e0dd2cad62fec8" - integrity sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ== - dependencies: - pako "^0.2.5" - tiny-inflate "^1.0.0" - -universalify@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" - integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== - -unpipe@1.0.0, unpipe@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= - -uplot@^1.6.7: - version "1.6.18" - resolved "https://registry.yarnpkg.com/uplot/-/uplot-1.6.18.tgz#db541a2aa81762bf41af584d4f3125172c3ed5ab" - integrity sha512-x7+bFfIZ8rMjOmDGhUlJCkYWiZX617xQWNfT94JUhidliRtzMHKIX0xUiN92TZ/7il6xMf9oLwbhsz7nbqF1YQ== - -uri-js@^4.2.2: - version "4.4.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" - integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== - dependencies: - punycode "^2.1.0" - -url@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" - integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= - dependencies: - punycode "1.3.2" - querystring "0.2.0" - -util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= - -util@0.10.3: - version "0.10.3" - resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" - integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= - dependencies: - inherits "2.0.1" - -util@^0.11.0: - version "0.11.1" - resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" - integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== - dependencies: - inherits "2.0.3" - -utils-merge@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= - -uuid@^8.3.0, uuid@^8.3.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== - -v-calendar@^2.3.2: - version "2.3.4" - resolved "https://registry.yarnpkg.com/v-calendar/-/v-calendar-2.3.4.tgz#3615602adf07764cb9b8e5cfb7f780015751c839" - integrity sha512-jH9cCuryt7++LWkHE4zvkqORQYUmmfLwhYxaDzndTrd3hWyLtm3WGyfanc++PEqchTkPP31VewFTXqlSf3Gk7Q== - dependencies: - core-js "^3.15.2" - date-fns "^2.22.1" - date-fns-tz "^1.1.4" - lodash "^4.17.21" - -vary@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= - -vm-browserify@^1.0.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" - integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== - -vue-functional-data-merge@^3.0.0, vue-functional-data-merge@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/vue-functional-data-merge/-/vue-functional-data-merge-3.1.0.tgz#08a7797583b7f35680587f8a1d51d729aa1dc657" - integrity sha512-leT4kdJVQyeZNY1kmnS1xiUlQ9z1B/kdBFCILIjYYQDqZgLqCLa0UhjSSeRX6c3mUe6U5qYeM8LrEqkHJ1B4LA== - -vue-hot-reload-api@^2.3.0: - version "2.3.4" - resolved "https://registry.yarnpkg.com/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz#532955cc1eb208a3d990b3a9f9a70574657e08f2" - integrity sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog== - -vue-i18n@^8.27.0: - version "8.27.0" - resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-8.27.0.tgz#3e3b3ed2c107ccbd7f20dbdd7a96763a9990253e" - integrity sha512-SX35iJHL5PJ4Gfh0Mo/q0shyHiI2V6Zkh51c+k8E9O1RKv5BQyYrCxRzpvPrsIOJEnLaeiovet3dsUB0e/kDzw== - -vue-loader@^15: - version "15.9.8" - resolved "https://registry.yarnpkg.com/vue-loader/-/vue-loader-15.9.8.tgz#4b0f602afaf66a996be1e534fb9609dc4ab10e61" - integrity sha512-GwSkxPrihfLR69/dSV3+5CdMQ0D+jXg8Ma1S4nQXKJAznYFX14vHdc/NetQc34Dw+rBbIJyP7JOuVb9Fhprvog== - dependencies: - "@vue/component-compiler-utils" "^3.1.0" - hash-sum "^1.0.2" - loader-utils "^1.1.0" - vue-hot-reload-api "^2.3.0" - vue-style-loader "^4.1.0" - -vue-style-loader@^4.1.0, vue-style-loader@^4.1.3: - version "4.1.3" - resolved "https://registry.yarnpkg.com/vue-style-loader/-/vue-style-loader-4.1.3.tgz#6d55863a51fa757ab24e89d9371465072aa7bc35" - integrity sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg== - dependencies: - hash-sum "^1.0.2" - loader-utils "^1.0.2" - -vue-template-compiler@^2.6.12: - version "2.6.14" - resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.6.14.tgz#a2f0e7d985670d42c9c9ee0d044fed7690f4f763" - integrity sha512-ODQS1SyMbjKoO1JBJZojSw6FE4qnh9rIpUZn2EUT86FKizx9uH5z6uXiIrm4/Nb/gwxTi/o17ZDEGWAXHvtC7g== - dependencies: - de-indent "^1.0.2" - he "^1.1.0" - -vue-template-es2015-compiler@^1.9.0: - version "1.9.1" - resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz#1ee3bc9a16ecbf5118be334bb15f9c46f82f5825" - integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw== - -vue-typeahead-bootstrap@^2.8.0: - version "2.12.0" - resolved "https://registry.yarnpkg.com/vue-typeahead-bootstrap/-/vue-typeahead-bootstrap-2.12.0.tgz#7d7301abbc9535d8954a6155113f3b11e02be3b2" - integrity sha512-8TAe6UkR796oZA1xVuKlEqSBfg4YpZ3tCO5RNUHexxlOl2N3x5HpOOMqQp/qbRSzuwal2n/hKLjUkYaifgGSxQ== - dependencies: - lodash "^4.17.20" - resize-observer-polyfill "^1.5.0" - vue "^2.5.17" - -vue2-leaflet@^2.7.1: - version "2.7.1" - resolved "https://registry.yarnpkg.com/vue2-leaflet/-/vue2-leaflet-2.7.1.tgz#2f95c287621bf778f10804c88223877f5c049257" - integrity sha512-K7HOlzRhjt3Z7+IvTqEavIBRbmCwSZSCVUlz9u4Rc+3xGCLsHKz4TAL4diAmfHElCQdPPVdZdJk8wPUt2fu6WQ== - -vue@^2.5.17, vue@^2.6.10: - version "2.6.14" - resolved "https://registry.yarnpkg.com/vue/-/vue-2.6.14.tgz#e51aa5250250d569a3fbad3a8a5a687d6036e235" - integrity sha512-x2284lgYvjOMj3Za7kqzRcUSxBboHqtgRE2zlos1qWaOye5yUmHn42LB1250NJBLRwEcdrB0JRwyPTEPhfQjiQ== - -vuex@^3.6.2: - version "3.6.2" - resolved "https://registry.yarnpkg.com/vuex/-/vuex-3.6.2.tgz#236bc086a870c3ae79946f107f16de59d5895e71" - integrity sha512-ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw== - -watchpack@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.3.1.tgz#4200d9447b401156eeca7767ee610f8809bc9d25" - integrity sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA== - dependencies: - glob-to-regexp "^0.4.1" - graceful-fs "^4.1.2" - -wbuf@^1.1.0, wbuf@^1.7.3: - version "1.7.3" - resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" - integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== - dependencies: - minimalistic-assert "^1.0.0" - -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= - -webpack-cli@^4.9.1: - version "4.9.1" - resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-4.9.1.tgz#b64be825e2d1b130f285c314caa3b1ba9a4632b3" - integrity sha512-JYRFVuyFpzDxMDB+v/nanUdQYcZtqFPGzmlW4s+UkPMFhSpfRNmf1z4AwYcHJVdvEFAM7FFCQdNTpsBYhDLusQ== - dependencies: - "@discoveryjs/json-ext" "^0.5.0" - "@webpack-cli/configtest" "^1.1.0" - "@webpack-cli/info" "^1.4.0" - "@webpack-cli/serve" "^1.6.0" - colorette "^2.0.14" - commander "^7.0.0" - execa "^5.0.0" - fastest-levenshtein "^1.0.12" - import-local "^3.0.2" - interpret "^2.2.0" - rechoir "^0.7.0" - webpack-merge "^5.7.3" - -webpack-dev-middleware@^5.2.1: - version "5.3.0" - resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.0.tgz#8fc02dba6e72e1d373eca361623d84610f27be7c" - integrity sha512-MouJz+rXAm9B1OTOYaJnn6rtD/lWZPy2ufQCH3BPs8Rloh/Du6Jze4p7AeLYHkVi0giJnYLaSGDC7S+GM9arhg== - dependencies: - colorette "^2.0.10" - memfs "^3.2.2" - mime-types "^2.1.31" - range-parser "^1.2.1" - schema-utils "^4.0.0" - -webpack-dev-server@4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.4.0.tgz#10ec17088f840c9ccb2ebb0b43c49ec293206f7e" - integrity sha512-+S0XRIbsopVjPFjCO8I07FXYBWYqkFmuP56ucGMTs2hA/gV4q2M9xTmNo5Tg4o8ffRR+Nm3AsXnQXxKRyYovrA== - dependencies: - ansi-html-community "^0.0.8" - bonjour "^3.5.0" - chokidar "^3.5.2" - colorette "^2.0.10" - compression "^1.7.4" - connect-history-api-fallback "^1.6.0" - del "^6.0.0" - express "^4.17.1" - graceful-fs "^4.2.6" - html-entities "^2.3.2" - http-proxy-middleware "^2.0.0" - internal-ip "^6.2.0" - ipaddr.js "^2.0.1" - open "^8.0.9" - p-retry "^4.5.0" - portfinder "^1.0.28" - schema-utils "^3.1.0" - selfsigned "^1.10.11" - serve-index "^1.9.1" - sockjs "^0.3.21" - spdy "^4.0.2" - strip-ansi "^7.0.0" - url "^0.11.0" - webpack-dev-middleware "^5.2.1" - ws "^8.1.0" - -webpack-merge@^5.7.3, webpack-merge@^5.8.0: - version "5.8.0" - resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.8.0.tgz#2b39dbf22af87776ad744c390223731d30a68f61" - integrity sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q== - dependencies: - clone-deep "^4.0.1" - wildcard "^2.0.0" - -webpack-notifier@^1.14.1: - version "1.15.0" - resolved "https://registry.yarnpkg.com/webpack-notifier/-/webpack-notifier-1.15.0.tgz#72644a1a4ec96b3528704d28f79da5e70048e8ee" - integrity sha512-N2V8UMgRB5komdXQRavBsRpw0hPhJq2/SWNOGuhrXpIgRhcMexzkGQysUyGStHLV5hkUlgpRiF7IUXoBqyMmzQ== - dependencies: - node-notifier "^9.0.0" - strip-ansi "^6.0.0" - -webpack-sources@^1.1.0: - version "1.4.3" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" - integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== - dependencies: - source-list-map "^2.0.0" - source-map "~0.6.1" - -webpack-sources@^3.2.3: - version "3.2.3" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" - integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== - -webpack@^5.60.0, webpack@^5.67.0: - version "5.67.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.67.0.tgz#cb43ca2aad5f7cc81c4cd36b626e6b819805dbfd" - integrity sha512-LjFbfMh89xBDpUMgA1W9Ur6Rn/gnr2Cq1jjHFPo4v6a79/ypznSYbAyPgGhwsxBtMIaEmDD1oJoA7BEYw/Fbrw== - dependencies: - "@types/eslint-scope" "^3.7.0" - "@types/estree" "^0.0.50" - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/wasm-edit" "1.11.1" - "@webassemblyjs/wasm-parser" "1.11.1" - acorn "^8.4.1" - acorn-import-assertions "^1.7.6" - browserslist "^4.14.5" - chrome-trace-event "^1.0.2" - enhanced-resolve "^5.8.3" - es-module-lexer "^0.9.0" - eslint-scope "5.1.1" - events "^3.2.0" - glob-to-regexp "^0.4.1" - graceful-fs "^4.2.9" - json-parse-better-errors "^1.0.2" - loader-runner "^4.2.0" - mime-types "^2.1.27" - neo-async "^2.6.2" - schema-utils "^3.1.0" - tapable "^2.1.1" - terser-webpack-plugin "^5.1.3" - watchpack "^2.3.1" - webpack-sources "^3.2.3" - -webpackbar@^5.0.0-3: - version "5.0.2" - resolved "https://registry.yarnpkg.com/webpackbar/-/webpackbar-5.0.2.tgz#d3dd466211c73852741dfc842b7556dcbc2b0570" - integrity sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ== - dependencies: - chalk "^4.1.0" - consola "^2.15.3" - pretty-time "^1.1.0" - std-env "^3.0.1" - -websocket-driver@>=0.5.1, websocket-driver@^0.7.4: - version "0.7.4" - resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" - integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== - dependencies: - http-parser-js ">=0.5.1" - safe-buffer ">=5.1.0" - websocket-extensions ">=0.1.1" - -websocket-extensions@>=0.1.1: - version "0.1.4" - resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" - integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== - -whatwg-url@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" - integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= - dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" - -which@^2.0.1, which@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -wildcard@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec" - integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== - -word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= - -ws@^8.1.0: - version "8.4.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.4.0.tgz#f05e982a0a88c604080e8581576e2a063802bed6" - integrity sha512-IHVsKe2pjajSUIl4KYMQOdlyliovpEPquKkqbwswulszzI7r0SfQrxnXdWAEqOlDCLrVSJzo+O1hAwdog2sKSQ== - -xmldoc@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/xmldoc/-/xmldoc-1.1.2.tgz#6666e029fe25470d599cd30e23ff0d1ed50466d7" - integrity sha512-ruPC/fyPNck2BD1dpz0AZZyrEwMOrWTO5lDdIXS91rs3wtm4j+T8Rp2o+zoOYkkAxJTZRPOSnOGei1egoRmKMQ== - dependencies: - sax "^1.2.1" - -xtend@^4.0.0, xtend@^4.0.2, xtend@~4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - -y18n@^5.0.5: - version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - -yallist@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" - integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - -yaml@^1.10.0, yaml@^1.10.2: - version "1.10.2" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" - integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== - -yargs-parser@^21.0.0: - version "21.0.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.0.tgz#a485d3966be4317426dd56bdb6a30131b281dc55" - integrity sha512-z9kApYUOCwoeZ78rfRYYWdiU/iNL6mwwYlkkZfJoyMR1xps+NEBX5X7XmRpxkZHhXJ6+Ey00IwKxBBSW9FIjyA== - -yargs@^17.2.1: - version "17.3.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.3.1.tgz#da56b28f32e2fd45aefb402ed9c26f42be4c07b9" - integrity sha512-WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA== - dependencies: - cliui "^7.0.2" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.3" - y18n "^5.0.5" - yargs-parser "^21.0.0"