Final files for 6.0.0

This commit is contained in:
James Cole 2023-02-24 05:30:15 +01:00
parent 16b0ee0c79
commit bcaf6402b5
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80
32 changed files with 450 additions and 348 deletions

View File

@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## 6.0.0 - 2023-03-xx
## 6.0.0 - 2023-03-03
This is release **6.0.0** of Firefly III.
@ -74,6 +74,7 @@ This is release **6.0.0** of Firefly III.
### Security
- [Issue 6826](https://github.com/firefly-iii/firefly-iii/issues/6826) Hide 2FA information when printing, thanks @jstebenne!
- Blocked users can access API, and users can unblock themselves using the API. This was reported in CVE-2023-0298.
- Several other low-key fixes.
## 6.0.0-beta.2 - 2023-02-20

View File

@ -106,8 +106,8 @@ return [
'webhooks' => true,
'handle_debts' => true,
],
'version' => '6.0.0-beta.2',
'api_version' => '2.0.0-beta.2',
'version' => '6.0.0',
'api_version' => '2.0.0',
'db_version' => 19,
// generic settings

View File

@ -60,7 +60,7 @@ export default {
"liabilities_accounts": "Passivos"
},
"firefly": {
"administration_index": "Financial administration",
"administration_index": "Administra\u00e7\u00e3o financeira",
"actions": "A\u00e7\u00f5es",
"edit": "Editar",
"delete": "Apagar",

View File

@ -75,7 +75,7 @@ export default {
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Ny ins\u00e4ttning",
"newWithdrawal": "Ny utgift",
"bills_paid": "Notor betalda",
"bills_paid": "R\u00e4kningar betalda",
"left_to_spend": "\u00c5terst\u00e5r att spendera",
"no_budget": "(ingen budget)",
"budgeted": "Budgeterat",
@ -215,7 +215,7 @@ export default {
"budgets": "Budgetar",
"subscriptions": "Prenumerationer",
"welcome_back": "Vad spelas?",
"bills_to_pay": "Notor att betala",
"bills_to_pay": "R\u00e4kningar\n att betala",
"net_worth": "Nettof\u00f6rm\u00f6genhet",
"pref_last365": "F\u00f6reg\u00e5ende \u00e5r",
"pref_last90": "Senaste 90 dagarna",

View File

@ -338,7 +338,7 @@ page container: q-ma-xs (margin all, xs) AND q-mb-md to give the page content so
<q-footer class="bg-grey-8 text-white" bordered>
<q-toolbar>
<div>
<small>Firefly III v v6.0.0-beta.2 &copy; James Cole, AGPL-3.0-or-later.</small>
<small>Firefly III v v6.0.0 &copy; James Cole, AGPL-3.0-or-later.</small>
</div>
</q-toolbar>
</q-footer>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

100
public/v1/js/lib/moment/ca_ES.js vendored Normal file
View File

@ -0,0 +1,100 @@
//! moment.js locale configuration
//! locale : Catalan [ca]
//! author : Juan G. Hurtado : https://github.com/juanghurtado
import moment from '../moment';
export default moment.defineLocale('ca', {
months: {
standalone:
'gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre'.split(
'_'
),
format: "de gener_de febrer_de març_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre".split(
'_'
),
isFormat: /D[oD]?(\s)+MMMM/,
},
monthsShort:
'gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.'.split(
'_'
),
monthsParseExact: true,
weekdays:
'diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte'.split(
'_'
),
weekdaysShort: 'dg._dl._dt._dc._dj._dv._ds.'.split('_'),
weekdaysMin: 'dg_dl_dt_dc_dj_dv_ds'.split('_'),
weekdaysParseExact: true,
longDateFormat: {
LT: 'H:mm',
LTS: 'H:mm:ss',
L: 'DD/MM/YYYY',
LL: 'D MMMM [de] YYYY',
ll: 'D MMM YYYY',
LLL: 'D MMMM [de] YYYY [a les] H:mm',
lll: 'D MMM YYYY, H:mm',
LLLL: 'dddd D MMMM [de] YYYY [a les] H:mm',
llll: 'ddd D MMM YYYY, H:mm',
},
calendar: {
sameDay: function () {
return '[avui a ' + (this.hours() !== 1 ? 'les' : 'la') + '] LT';
},
nextDay: function () {
return '[demà a ' + (this.hours() !== 1 ? 'les' : 'la') + '] LT';
},
nextWeek: function () {
return 'dddd [a ' + (this.hours() !== 1 ? 'les' : 'la') + '] LT';
},
lastDay: function () {
return '[ahir a ' + (this.hours() !== 1 ? 'les' : 'la') + '] LT';
},
lastWeek: function () {
return (
'[el] dddd [passat a ' +
(this.hours() !== 1 ? 'les' : 'la') +
'] LT'
);
},
sameElse: 'L',
},
relativeTime: {
future: "d'aquí %s",
past: 'fa %s',
s: 'uns segons',
ss: '%d segons',
m: 'un minut',
mm: '%d minuts',
h: 'una hora',
hh: '%d hores',
d: 'un dia',
dd: '%d dies',
M: 'un mes',
MM: '%d mesos',
y: 'un any',
yy: '%d anys',
},
dayOfMonthOrdinalParse: /\d{1,2}(r|n|t|è|a)/,
ordinal: function (number, period) {
var output =
number === 1
? 'r'
: number === 2
? 'n'
: number === 3
? 'r'
: number === 4
? 't'
: 'è';
if (period === 'w' || period === 'W') {
output = 'a';
}
return number + output;
},
week: {
dow: 1, // Monday is the first day of the week.
doy: 4, // The week that contains Jan 4th is the first week of the year.
},
});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
<!DOCTYPE html><html><head><base href=/v3/ ><title>Firefly III</title><meta charset=utf-8><meta content="Personal finances manager" name=description><meta content="telephone=no" name=format-detection><meta content=no name=msapplication-tap-highlight><meta content="user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1,width=device-width" name=viewport><link href=favicon-32x32.png rel=icon sizes=32x32 type=image/png><link href=favicon-16x16.png rel=icon sizes=16x16 type=image/png><link href=maskable76.png rel=apple-touch-icon sizes=76x76><link href=maskable120.png rel=apple-touch-icon sizes=120x120><link href=maskable152.png rel=apple-touch-icon sizes=152x152><link href=apple-touch-icon.png rel=apple-touch-icon sizes=180x180><link color=#3c8dbc href=safari-pinned-tab.svg rel=mask-icon><link href=maskable192.png rel=icon sizes=192x192><link href=maskable128.png rel=icon sizes=128x128><link href=manifest.webmanifest rel=manifest><meta content=#1e6581 name=msapplication-TileColor><meta content=maskable512.png name=msapplication-TileImage><meta content=no name=msapplication-tap-highlight><meta content="Firefly III" name=application-name><meta content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir" name=robots><meta content=yes name=apple-mobile-web-app-capable><meta content="Firefly III" name=apple-mobile-web-app-title><meta content="Firefly III" name=application-name><meta content=#3c8dbc name=msapplication-TileColor><meta content="mstile-144x144.png?v=3e8AboOwbd" name=msapplication-TileImage><meta content=#3c8dbc name=theme-color><script defer src=/v3/js/vendor.aba07782.js></script><script defer src=/v3/js/app.6cbecb45.js></script><link href=/v3/css/vendor.973c97fc.css rel=stylesheet><link href=/v3/css/app.50c7ba73.css rel=stylesheet></head><body><div id=q-app></div></body></html>
<!DOCTYPE html><html><head><base href=/v3/ ><title>Firefly III</title><meta charset=utf-8><meta content="Personal finances manager" name=description><meta content="telephone=no" name=format-detection><meta content=no name=msapplication-tap-highlight><meta content="user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1,width=device-width" name=viewport><link href=favicon-32x32.png rel=icon sizes=32x32 type=image/png><link href=favicon-16x16.png rel=icon sizes=16x16 type=image/png><link href=maskable76.png rel=apple-touch-icon sizes=76x76><link href=maskable120.png rel=apple-touch-icon sizes=120x120><link href=maskable152.png rel=apple-touch-icon sizes=152x152><link href=apple-touch-icon.png rel=apple-touch-icon sizes=180x180><link color=#3c8dbc href=safari-pinned-tab.svg rel=mask-icon><link href=maskable192.png rel=icon sizes=192x192><link href=maskable128.png rel=icon sizes=128x128><link href=manifest.webmanifest rel=manifest><meta content=#1e6581 name=msapplication-TileColor><meta content=maskable512.png name=msapplication-TileImage><meta content=no name=msapplication-tap-highlight><meta content="Firefly III" name=application-name><meta content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir" name=robots><meta content=yes name=apple-mobile-web-app-capable><meta content="Firefly III" name=apple-mobile-web-app-title><meta content="Firefly III" name=application-name><meta content=#3c8dbc name=msapplication-TileColor><meta content="mstile-144x144.png?v=3e8AboOwbd" name=msapplication-TileImage><meta content=#3c8dbc name=theme-color><script defer src=/v3/js/vendor.aba07782.js></script><script defer src=/v3/js/app.8ad7cfe1.js></script><link href=/v3/css/vendor.973c97fc.css rel=stylesheet><link href=/v3/css/app.50c7ba73.css rel=stylesheet></head><body><div id=q-app></div></body></html>

File diff suppressed because one or more lines are too long

1
public/v3/js/9989.dd19d3fb.js vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -92,39 +92,39 @@
"multi_account_warning_withdrawal": "Tenga en cuenta que la cuenta de origen de las divisiones posteriores ser\u00e1 anulada por lo que se defina en la primera divisi\u00f3n del gasto.",
"multi_account_warning_deposit": "Tenga en cuenta que la cuenta de destino de las divisiones posteriores ser\u00e1 anulada por lo que se defina en la primera divisi\u00f3n del retiro.",
"multi_account_warning_transfer": "Tenga en cuenta que la cuenta de origen + destino de divisiones posteriores ser\u00e1 anulada por lo que se defina en la primera divisi\u00f3n de la transferencia.",
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
"webhook_response_TRANSACTIONS": "Transaction details",
"webhook_response_ACCOUNTS": "Account details",
"webhook_response_none_NONE": "No details",
"webhook_trigger_STORE_TRANSACTION": "Despu\u00e9s de crear la transacci\u00f3n",
"webhook_trigger_UPDATE_TRANSACTION": "Despu\u00e9s de actualizar la transacci\u00f3n",
"webhook_trigger_DESTROY_TRANSACTION": "Despu\u00e9s de eliminar la transacci\u00f3n",
"webhook_response_TRANSACTIONS": "Detalles de la transacci\u00f3n",
"webhook_response_ACCOUNTS": "Detalles de la cuenta",
"webhook_response_none_NONE": "Sin detalles",
"webhook_delivery_JSON": "JSON",
"actions": "Acciones",
"meta_data": "Meta Datos",
"webhook_messages": "Webhook message",
"webhook_messages": "Mensaje de Webhook",
"inactive": "Inactivo",
"no_webhook_messages": "There are no webhook messages",
"inspect": "Inspect",
"create_new_webhook": "Create new webhook",
"no_webhook_messages": "No hay mensajes webhook",
"inspect": "Inspeccionar",
"create_new_webhook": "Crear un nuevo webhook",
"webhooks": "Webhooks",
"webhook_trigger_form_help": "Indicate on what event the webhook will trigger",
"webhook_response_form_help": "Indicate what the webhook must submit to the URL.",
"webhook_delivery_form_help": "Which format the webhook must deliver data in.",
"webhook_active_form_help": "The webhook must be active or it won't be called.",
"edit_webhook_js": "Edit webhook \"{title}\"",
"webhook_trigger_form_help": "Indica en qu\u00e9 evento se activar\u00e1 el webhook",
"webhook_response_form_help": "Indique lo que el webhook debe enviar a la URL.",
"webhook_delivery_form_help": "En qu\u00e9 formato debe entregar los datos el webhook.",
"webhook_active_form_help": "El webhook debe estar activo o no ser\u00e1 llamado.",
"edit_webhook_js": "Editar webhook \"{title}\"",
"webhook_was_triggered": "El disparador se activ\u00f3 en la transacci\u00f3n indicada. Por favor, espere a que aparezcan los resultados.",
"view_message": "View message",
"view_attempts": "View failed attempts",
"message_content_title": "Webhook message content",
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
"attempt_content_title": "Webhook attempts",
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
"webhook_attempt_at": "Attempt at {moment}",
"logs": "Logs",
"response": "Response",
"visit_webhook_url": "Visit webhook URL",
"reset_webhook_secret": "Reset webhook secret"
"view_message": "Ver mensaje",
"view_attempts": "Ver intentos fallidos",
"message_content_title": "Contenido del mensaje del webhook",
"message_content_help": "Este es el contenido del mensaje que se envi\u00f3 (o se intent\u00f3) usando este webhook.",
"attempt_content_title": "Intentos de webhook",
"attempt_content_help": "Estos son todos los intentos fallidos de enviar este mensaje de webhook a la URL configurada. Despu\u00e9s de alg\u00fan tiempo, Firefly III dejar\u00e1 de intentarlo.",
"no_attempts": "No hay intentos fallidos. \u00a1Eso es bueno!",
"webhook_attempt_at": "Intento a las {moment}",
"logs": "Registros",
"response": "Respuesta",
"visit_webhook_url": "Visita la URL del webhook",
"reset_webhook_secret": "Restablecer secreto del webhook"
},
"form": {
"url": "URL",
@ -146,12 +146,12 @@
"active": "\u00bfEst\u00e1 Activo?",
"trigger": "Disparador",
"response": "Respuesta",
"delivery": "Delivery",
"delivery": "Entrega",
"url": "URL",
"secret": "Secreto"
},
"config": {
"html_language": "es",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
"date_time_fns": "El MMMM hacer, yyyy a las HH:mm:ss"
}
}

View File

@ -68,7 +68,7 @@
"profile_oauth_edit_client": "Client bewerken",
"profile_oauth_name_help": "Iets dat je gebruikers herkennen en vertrouwen.",
"profile_oauth_redirect_url": "Redirect-URL",
"profile_oauth_clients_external_auth": "Als u een externe verificatieprovider zoals Authelia gebruikt, dan zullen OAuth Clients niet werken. U kunt alleen persoonlijke toegangstokens gebruiken.",
"profile_oauth_clients_external_auth": "Als je een externe verificatieprovider zoals Authelia gebruikt, dan zullen OAuth Clients niet werken. Je kan alleen persoonlijke toegangstokens gebruiken.",
"profile_oauth_redirect_url_help": "De authorisatie-callback-url van jouw applicatie.",
"profile_authorized_apps": "Geautoriseerde toepassingen",
"profile_authorized_clients": "Geautoriseerde clients",
@ -112,7 +112,7 @@
"webhook_delivery_form_help": "Geef aan welk dataformaat gebruikt moet worden.",
"webhook_active_form_help": "De webhook moet actief zijn anders doet-ie het niet.",
"edit_webhook_js": "Webhook \"{title}\" wijzigen",
"webhook_was_triggered": "De webhook is geactiveerd op de aangegeven transactie. Wacht tot de resultaten verschijnen.",
"webhook_was_triggered": "De webhook is getriggerd op de aangegeven transactie. Het resultaat zie je zometeen.",
"view_message": "Bekijk bericht",
"view_attempts": "Bekijk mislukte pogingen",
"message_content_title": "Inhoud van webhook-bericht",

View File

@ -9,8 +9,8 @@
"split": "Dividir",
"single_split": "Divis\u00e3o",
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transa\u00e7\u00e3o #{ID} (\"{title}\")<\/a> foi salva.",
"webhook_stored_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID} (\"{title}\")<\/a> has been stored.",
"webhook_updated_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID}<\/a> (\"{title}\") has been updated.",
"webhook_stored_link": "<a href=\"transactions\/show\/{ID}\">Webhooh #{ID} (\"{title}\")<\/a> foi salva.",
"webhook_updated_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID}<\/a> (\"{title}\") foi atualizado.",
"transaction_updated_link": "A <a href=\"transactions\/show\/{ID}\">Transa\u00e7\u00e3o #{ID}<\/a> (\"{title}\") foi atualizada.",
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transa\u00e7\u00e3o #{ID}<\/a> foi salva.",
"transaction_journal_information": "Informa\u00e7\u00e3o da transa\u00e7\u00e3o",

View File

@ -144,7 +144,7 @@
},
"list": {
"active": "\u0410\u043a\u0442\u0438\u0432\u0435\u043d?",
"trigger": "Trigger",
"trigger": "\u0421\u043e\u0431\u044b\u0442\u0438\u0435",
"response": "\u041e\u0442\u0432\u0435\u0442",
"delivery": "\u0414\u043e\u0441\u0442\u0430\u0432\u043a\u0430",
"url": "\u0421\u0441\u044b\u043b\u043a\u0430",

View File

@ -92,19 +92,19 @@
"multi_account_warning_withdrawal": "T\u00e4nk p\u00e5 att k\u00e4llkontot f\u00f6r efterf\u00f6ljande uppdelningar kommer att upph\u00e4vas av vad som \u00e4n definieras i den f\u00f6rsta uppdelningen av uttaget.",
"multi_account_warning_deposit": "T\u00e4nk p\u00e5 att destinationskontot f\u00f6r efterf\u00f6ljande uppdelningar kommer att styras av vad som \u00e4n definieras i den f\u00f6rsta uppdelningen av ins\u00e4ttningen.",
"multi_account_warning_transfer": "T\u00e4nk p\u00e5 att k\u00e4ll + destinationskonto av efterf\u00f6ljande delningar kommer att styras av vad som definieras i den f\u00f6rsta uppdelningen av \u00f6verf\u00f6ringen.",
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
"webhook_trigger_STORE_TRANSACTION": "Efter skapande av transaktion",
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
"webhook_response_TRANSACTIONS": "Transaction details",
"webhook_response_ACCOUNTS": "Account details",
"webhook_response_none_NONE": "No details",
"webhook_response_TRANSACTIONS": "Transaktionsdetaljer",
"webhook_response_ACCOUNTS": "Kontodetaljer",
"webhook_response_none_NONE": "Inga detaljer",
"webhook_delivery_JSON": "JSON",
"actions": "\u00c5tg\u00e4rder",
"meta_data": "Metadata",
"webhook_messages": "Webhook message",
"inactive": "Inaktiv",
"no_webhook_messages": "There are no webhook messages",
"inspect": "Inspect",
"inspect": "Inspektera",
"create_new_webhook": "Create new webhook",
"webhooks": "Webhookar",
"webhook_trigger_form_help": "Indicate on what event the webhook will trigger",
@ -113,7 +113,7 @@
"webhook_active_form_help": "The webhook must be active or it won't be called.",
"edit_webhook_js": "Edit webhook \"{title}\"",
"webhook_was_triggered": "The webhook was triggered on the indicated transaction. Please wait for results to appear.",
"view_message": "View message",
"view_message": "Visa meddelande",
"view_attempts": "View failed attempts",
"message_content_title": "Webhook message content",
"message_content_help": "This is the content of the message that was sent (or tried) using this webhook.",
@ -121,8 +121,8 @@
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
"webhook_attempt_at": "Attempt at {moment}",
"logs": "Logs",
"response": "Response",
"logs": "Loggar",
"response": "Svar",
"visit_webhook_url": "Visit webhook URL",
"reset_webhook_secret": "Reset webhook secret"
},

View File

@ -1115,14 +1115,14 @@ return [
'rule_trigger_not_account_nr_contains' => 'Cap número de compte / IBAN conté ":trigger_value"',
'rule_trigger_not_account_nr_ends' => 'Cap número de compte / IBAN acaba amb ":trigger_value"',
'rule_trigger_not_account_nr_starts' => 'Cap número de compte / IBAN comença per ":trigger_value"',
'rule_trigger_not_category_is' => 'Category is not ":trigger_value"',
'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"',
'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"',
'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"',
'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"',
'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"',
'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"',
'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"',
'rule_trigger_not_category_is' => 'La categoria no és ":trigger_value"',
'rule_trigger_not_category_contains' => 'La categoria no conté ":trigger_value"',
'rule_trigger_not_category_ends' => 'La categoria no acaba en ":trigger_value"',
'rule_trigger_not_category_starts' => 'La categoria no comença per ":trigger_value"',
'rule_trigger_not_budget_is' => 'El pressupost no és ":trigger_value"',
'rule_trigger_not_budget_contains' => 'El pressupost no conté ":trigger_value"',
'rule_trigger_not_budget_ends' => 'El pressupost no acaba en ":trigger_value"',
'rule_trigger_not_budget_starts' => 'El pressupost no comença amb ":trigger_value"',
'rule_trigger_not_bill_is' => 'La factura no és ":trigger_value"',
'rule_trigger_not_bill_contains' => 'La factura no conté ":trigger_value"',
'rule_trigger_not_bill_ends' => 'La factura no acaba amb ":trigger_value"',

View File

@ -65,7 +65,7 @@ return [
//'date_time' => '%B %e, %Y, @ %T',
'date_time_js' => 'D MMMM YYYY, HH:mm:ss',
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
'date_time_fns' => 'El MMMM hacer, yyyy a las HH:mm:ss',
//'specific_day' => '%e %B %Y',
'specific_day_js' => 'D MMMM YYYY',

View File

@ -243,42 +243,42 @@ return [
// Webhooks
'webhooks' => 'Webhooks',
'webhooks_breadcrumb' => 'Webhooks',
'no_webhook_messages' => 'There are no webhook messages',
'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
'webhook_response_TRANSACTIONS' => 'Transaction details',
'webhook_response_ACCOUNTS' => 'Account details',
'webhook_response_none_NONE' => 'No details',
'no_webhook_messages' => 'No hay mensajes webhook',
'webhook_trigger_STORE_TRANSACTION' => 'Después de crear la transacción',
'webhook_trigger_UPDATE_TRANSACTION' => 'Después de actualizar la transacción',
'webhook_trigger_DESTROY_TRANSACTION' => 'Después de eliminar la transacción',
'webhook_response_TRANSACTIONS' => 'Detalles de la transacción',
'webhook_response_ACCOUNTS' => 'Detalles de la cuenta',
'webhook_response_none_NONE' => 'Sin detalles',
'webhook_delivery_JSON' => 'JSON',
'inspect' => 'Inspect',
'create_new_webhook' => 'Create new webhook',
'webhooks_create_breadcrumb' => 'Create new webhook',
'webhook_trigger_form_help' => 'Indicate on what event the webhook will trigger',
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
'webhook_active_form_help' => 'The webhook must be active or it won\'t be called.',
'stored_new_webhook' => 'Stored new webhook ":title"',
'delete_webhook' => 'Delete webhook',
'deleted_webhook' => 'Deleted webhook ":title"',
'edit_webhook' => 'Edit webhook ":title"',
'updated_webhook' => 'Updated webhook ":title"',
'edit_webhook_js' => 'Edit webhook "{title}"',
'inspect' => 'Inspeccionar',
'create_new_webhook' => 'Crear un nuevo webhook',
'webhooks_create_breadcrumb' => 'Crear un nuevo Webhook',
'webhook_trigger_form_help' => 'Indica en qué evento se activará el webhook',
'webhook_response_form_help' => 'Indique lo que el webhook debe enviar a la URL.',
'webhook_delivery_form_help' => 'En qué formato debe entregar los datos el webhook.',
'webhook_active_form_help' => 'El webhook debe estar activo o no será llamado.',
'stored_new_webhook' => 'Nuevo webhook almacenado ":title"',
'delete_webhook' => 'Eliminar webhook',
'deleted_webhook' => 'Webhook eliminado ":title"',
'edit_webhook' => 'Editar webhook ":title " "',
'updated_webhook' => 'Webhook actualizado ":title"',
'edit_webhook_js' => 'Editar webhook "{title}"',
'show_webhook' => 'Webhook ":title"',
'webhook_was_triggered' => 'El disparador se activó en la transacción indicada. Por favor, espere a que aparezcan los resultados.',
'webhook_messages' => 'Webhook message',
'view_message' => 'View message',
'view_attempts' => 'View failed attempts',
'message_content_title' => 'Webhook message content',
'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.',
'attempt_content_title' => 'Webhook attempts',
'attempt_content_help' => 'These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.',
'no_attempts' => 'There are no unsuccessful attempts. That\'s a good thing!',
'webhook_attempt_at' => 'Attempt at {moment}',
'logs' => 'Logs',
'response' => 'Response',
'visit_webhook_url' => 'Visit webhook URL',
'reset_webhook_secret' => 'Reset webhook secret',
'webhook_messages' => 'Mensaje de Webhook',
'view_message' => 'Ver mensaje',
'view_attempts' => 'Ver intentos fallidos',
'message_content_title' => 'Contenido del mensaje del webhook',
'message_content_help' => 'Este es el contenido del mensaje que se envió (o se intentó) usando este webhook.',
'attempt_content_title' => 'Intentos de webhook',
'attempt_content_help' => 'Estos son todos los intentos fallidos de enviar este mensaje de webhook a la URL configurada. Después de algún tiempo, Firefly III dejará de intentarlo.',
'no_attempts' => 'No hay intentos fallidos. ¡Eso es bueno!',
'webhook_attempt_at' => 'Intento a las {moment}',
'logs' => 'Registros',
'response' => 'Respuesta',
'visit_webhook_url' => 'Visita la URL del webhook',
'reset_webhook_secret' => 'Restablecer secreto del webhook',
'webhook_stored_link' => '<a href="webhooks/show/{ID}">El webhook #{ID} ("{title}")</a> ha sido almacenado.',
'webhook_updated_link' => '<a href="webhooks/show/{ID}">El webhook #{ID} ("{title}")</a> ha sido actualizado.',
@ -351,86 +351,86 @@ return [
'search_modifier_date_on' => 'La fecha de la transacción es ":value"',
'search_modifier_not_date_on' => 'Transaction date is not ":value"',
'search_modifier_reconciled' => 'Transaction is reconciled',
'search_modifier_not_reconciled' => 'Transaction is not reconciled',
'search_modifier_not_date_on' => 'La fecha de la transacción no es ":value"',
'search_modifier_reconciled' => 'La transacción está conciliada',
'search_modifier_not_reconciled' => 'La transacción no está conciliada',
'search_modifier_id' => 'El ID de la transacción es ":value"',
'search_modifier_not_id' => 'Transaction ID is not ":value"',
'search_modifier_not_id' => 'El ID de la transacción no es ":value"',
'search_modifier_date_before' => 'La fecha de la transacción es anterior al ":value"',
'search_modifier_date_after' => 'La fecha de la transacción es posterior al ":value"',
'search_modifier_external_id_is' => 'La ID externo es ":value"',
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
'search_modifier_not_external_id_is' => 'El ID externo no es ":value"',
'search_modifier_no_external_url' => 'La transacción no tiene URL externa',
'search_modifier_no_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_no_external_id' => 'La transacción no tiene ID externa',
'search_modifier_not_any_external_url' => 'La transacción no tiene URL externa',
'search_modifier_not_any_external_id' => 'La transacción no tiene ID externa',
'search_modifier_any_external_url' => 'La transacción debe tener alguna URL externa',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_any_external_id' => 'La transacción debe tener una ID externa (cualquiera)',
'search_modifier_not_no_external_url' => 'La transacción debe tener una URL externa (cualquiera)',
'search_modifier_not_no_external_id' => 'La transacción debe tener una ID externa (cualquiera)',
'search_modifier_internal_reference_is' => 'La referencia interna es ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
'search_modifier_not_description_starts' => 'Description does not start with ":value"',
'search_modifier_description_ends' => 'Description ends on ":value"',
'search_modifier_not_description_ends' => 'Description does not end on ":value"',
'search_modifier_not_internal_reference_is' => 'La referencia interna no es ":value"',
'search_modifier_description_starts' => 'La descripción comienza con ":value"',
'search_modifier_not_description_starts' => 'La descripción no comienza con ":value"',
'search_modifier_description_ends' => 'La descripción termina en ":value"',
'search_modifier_not_description_ends' => 'La descripción no termina en ":value"',
'search_modifier_description_contains' => 'La descripción contiene ":value"',
'search_modifier_not_description_contains' => 'Description does not contain ":value"',
'search_modifier_not_description_contains' => 'La descripción no contiene ":value"',
'search_modifier_description_is' => 'La descripción es exactamente ":value"',
'search_modifier_not_description_is' => 'Description is exactly not ":value"',
'search_modifier_not_description_is' => 'La descripción no es exactamente ":value"',
'search_modifier_currency_is' => 'La transacción en moneda (extranjera) es ":value"',
'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"',
'search_modifier_not_currency_is' => 'La moneda (extranjera) de la transacción no es ":value"',
'search_modifier_foreign_currency_is' => 'La transacción en moneda extranjera es ":value"',
'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"',
'search_modifier_not_foreign_currency_is' => 'La moneda extranjera de la transacción no es ":value"',
'search_modifier_has_attachments' => 'La transacción debe tener un archivo adjunto',
'search_modifier_has_no_category' => 'La transacción no debe tener categoría',
'search_modifier_not_has_no_category' => 'The transaction must have a (any) category',
'search_modifier_not_has_any_category' => 'The transaction must have no category',
'search_modifier_not_has_no_category' => 'La transacción debe tener una categoría (cualquiera)',
'search_modifier_not_has_any_category' => 'La transacción no debe tener categoría',
'search_modifier_has_any_category' => 'La transacción debe tener alguna categoría',
'search_modifier_has_no_budget' => 'La transacción no debe tener presupuesto',
'search_modifier_not_has_any_budget' => 'The transaction must have no budget',
'search_modifier_not_has_any_budget' => 'La transacción no debe tener presupuesto',
'search_modifier_has_any_budget' => 'La transacción debe tener un presupuesto',
'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget',
'search_modifier_not_has_no_budget' => 'La transacción debe tener un presupuesto (cualquiera)',
'search_modifier_has_no_bill' => 'La transacción no debe tener factura',
'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill',
'search_modifier_not_has_no_bill' => 'La transacción debe tener una factura (cualquiera)',
'search_modifier_has_any_bill' => 'La transacción debe tener una (cualquier) factura',
'search_modifier_not_has_any_bill' => 'The transaction must have no bill',
'search_modifier_not_has_any_bill' => 'La transacción no debe tener factura',
'search_modifier_has_no_tag' => 'La transacción no debe tener etiquetas',
'search_modifier_not_has_any_tag' => 'The transaction must have no tags',
'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag',
'search_modifier_not_has_any_tag' => 'La transacción no debe tener etiquetas',
'search_modifier_not_has_no_tag' => 'La transacción debe tener una etiqueta (cualquiera)',
'search_modifier_has_any_tag' => 'La transacción debe tener (alguna) etiqueta',
'search_modifier_notes_contains' => 'Las notas de la transacción contienen ":value"',
'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"',
'search_modifier_not_notes_contains' => 'Las notas de la transacción no contienen ":value"',
'search_modifier_notes_starts' => 'Las notas de la transacción comienzan con ":value"',
'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"',
'search_modifier_not_notes_starts' => 'Las notas de la transacción no comienzan con ":value"',
'search_modifier_notes_ends' => 'Las notas de la transacción terminan con ":value"',
'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"',
'search_modifier_not_notes_ends' => 'Las notas de la transacción no terminan con ":value"',
'search_modifier_notes_is' => 'Las notas de la transacción son exactamente ":value"',
'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"',
'search_modifier_not_notes_is' => 'Las notas de la transacción no son exactamente ":value"',
'search_modifier_no_notes' => 'La transacción no tiene notas',
'search_modifier_not_no_notes' => 'The transaction must have notes',
'search_modifier_not_no_notes' => 'La transacción debe tener notas',
'search_modifier_any_notes' => 'La transacción debe tener notas',
'search_modifier_not_any_notes' => 'The transaction has no notes',
'search_modifier_not_any_notes' => 'La transacción no tiene notas',
'search_modifier_amount_is' => 'La cantidad es exactamente :value',
'search_modifier_not_amount_is' => 'Amount is not :value',
'search_modifier_not_amount_is' => 'La cantidad no es :value',
'search_modifier_amount_less' => 'Cantidad es menor o igual a :value',
'search_modifier_not_amount_more' => 'Amount is less than or equal to :value',
'search_modifier_not_amount_more' => 'La cantidad es menor o igual a :value',
'search_modifier_amount_more' => 'Cantidad es mayor o igual a :value',
'search_modifier_not_amount_less' => 'Amount is more than or equal to :value',
'search_modifier_not_amount_less' => 'Cantidad es mayor o igual a :value',
'search_modifier_source_account_is' => 'El nombre de la cuenta de origen es exactamente ":value"',
'search_modifier_not_source_account_is' => 'Source account name is not ":value"',
'search_modifier_not_source_account_is' => 'El nombre de la cuenta de origen no es exactamente ":value"',
'search_modifier_source_account_contains' => 'El nombre de la cuenta de origen contiene ":value"',
'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"',
'search_modifier_not_source_account_contains' => 'El nombre de cuenta de origen no contiene ":value"',
'search_modifier_source_account_starts' => 'El nombre de la cuenta de origen comienza con ":value"',
'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"',
'search_modifier_not_source_account_starts' => 'El nombre de cuenta de origen no comienza con ":value"',
'search_modifier_source_account_ends' => 'El nombre de la cuenta de origen termina con ":value"',
'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"',
'search_modifier_not_source_account_ends' => 'El nombre de la cuenta de origen no termina con ":value"',
'search_modifier_source_account_id' => 'El ID de cuenta original es :value',
'search_modifier_not_source_account_id' => 'Source account ID is not :value',
'search_modifier_not_source_account_id' => 'El ID de la cuenta de origen no es :value',
'search_modifier_source_account_nr_is' => 'Número de cuenta de origen (IBAN) es ":value"',
'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"',
'search_modifier_not_source_account_nr_is' => 'El número de cuenta de origen (IBAN) no es ":value"',
'search_modifier_source_account_nr_contains' => 'El número de cuenta de origen (IBAN) contiene ":value"',
'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"',
'search_modifier_not_source_account_nr_contains' => 'El número de la cuenta de origen (IBAN) no contiene ":value"',
'search_modifier_source_account_nr_starts' => 'El número de cuenta de origen (IBAN) comienza con ":value"',
'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"',
'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"',
@ -1115,14 +1115,14 @@ return [
'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"',
'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"',
'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"',
'rule_trigger_not_category_is' => 'Category is not ":trigger_value"',
'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"',
'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"',
'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"',
'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"',
'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"',
'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"',
'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"',
'rule_trigger_not_category_is' => 'La categoría no es ":trigger_value"',
'rule_trigger_not_category_contains' => 'La categoría no contiene ":trigger_value"',
'rule_trigger_not_category_ends' => 'La categoría no termina en ":trigger_value"',
'rule_trigger_not_category_starts' => 'La categoría no empieza con ":trigger_value"',
'rule_trigger_not_budget_is' => 'El presupuesto no es ":trigger_value"',
'rule_trigger_not_budget_contains' => 'El presupuesto no contiene ":trigger_value " "',
'rule_trigger_not_budget_ends' => 'El presupuesto no termina en ":trigger_value"',
'rule_trigger_not_budget_starts' => 'El presupuesto no comienza con ":trigger_value"',
'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"',
'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"',
'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"',

View File

@ -284,18 +284,18 @@ return [
// API access
'authorization_request' => 'Firefly III v:version 인증 요청',
'authorization_request_intro' => 'Application "<strong>:client</strong>" is requesting permission to access your financial administration. Would you like to authorize <strong>:client</strong> to access these records?',
'authorization_request_site' => 'You will be redirected to <code>:url</code> which will then be able to access your Firefly III data.',
'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.',
'scopes_will_be_able' => 'This application will be able to:',
'authorization_request_intro' => '응용 프로그램 "<strong>:client</strong>"에서 재무 관리에 액세스할 수 있는 권한을 요청하고 있습니다. <strong>:client</strong>에게 이러한 기록에 액세스할 수 있는 권한을 부여하시겠습니까?',
'authorization_request_site' => '<code>:url</code>로 리디렉션되며, 이 페이지에서 Firefly III 데이터에 액세스할 수 있습니다.',
'authorization_request_invalid' => '이 액세스 요청은 유효하지 않습니다. 다시는 이 링크를 클릭하지 마세요.',
'scopes_will_be_able' => '이 응용 프로그램은 다음을 수행 할 수 있습니다:',
'button_authorize' => '인증',
'none_in_select_list' => '(없음)',
'no_piggy_bank' => '(저금통 없음)',
'name_in_currency' => ':name in :currency',
'paid_in_currency' => 'Paid in :currency',
'unpaid_in_currency' => 'Unpaid in :currency',
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
'name_in_currency' => ':currency :name',
'paid_in_currency' => ':currency로 지불됨',
'unpaid_in_currency' => ':currency로 미지불',
'is_alpha_warning' => '알파 버전을 실행 중입니다. 버그와 문제에 주의하십시오.',
'is_beta_warning' => '베타 버전을 실행 중입니다. 버그와 문제에 주의하십시오.',
'all_destination_accounts' => '대상 계정',
'all_source_accounts' => '소스 계정',
'back_to_index' => '목록으로 돌아가기',
@ -305,27 +305,27 @@ return [
// check for updates:
'update_check_title' => '업데이트 확인',
'admin_update_check_title' => '업데이트 자동 확인',
'admin_update_check_explain' => 'Firefly III can check for updates automatically. When you enable this setting, it will contact the Firefly III update server to see if a new version of Firefly III is available. When it is, you will get a notification. You can test this notification using the button on the right. Please indicate below if you want Firefly III to check for updates.',
'check_for_updates_permission' => 'Firefly III can check for updates, but it needs your permission to do so. Please go to the <a href=":link">administration</a> to indicate if you would like this feature to be enabled.',
'admin_update_check_explain' => 'Firefly III가 자동으로 업데이트를 확인할 수 있습니다. 이 설정을 활성화하면 Firefly III 업데이트 서버에 연결하여 Firefly III의 새 버전을 사용할 수 있는지 확인합니다. 업데이트가 완료되면 알림을 받게 됩니다. 오른쪽의 버튼을 사용하여 이 알림을 테스트할 수 있습니다. Firefly III가 업데이트를 확인하도록 하려면 아래에 표시해 주세요.',
'check_for_updates_permission' => 'Firefly III가 업데이트를 확인하려면 사용자의 권한이 필요합니다. <a href=":link">관리 페이지</a>로 이동하여 이 기능을 사용할지 여부를 선택하세요.',
'updates_ask_me_later' => '나중에 다시 확인',
'updates_do_not_check' => 'Do not check for updates',
'updates_enable_check' => 'Enable the check for updates',
'updates_do_not_check' => '업데이트 확인하지 않기',
'updates_enable_check' => '업데이트 확인 사용',
'admin_update_check_now_title' => '지금 업데이트 확인',
'admin_update_check_now_explain' => 'If you press the button, Firefly III will see if your current version is the latest.',
'admin_update_check_now_explain' => '버튼을 누르면 Firefly III의 버전이 최신 버전인지 확인합니다.',
'check_for_updates_button' => '지금 확인!',
'update_new_version_alert' => 'A new version of Firefly III is available. You are running :your_version, the latest version is :new_version which was released on :date.',
'update_version_beta' => 'This version is a BETA version. You may run into issues.',
'update_version_alpha' => 'This version is a ALPHA version. You may run into issues.',
'update_current_version_alert' => 'You are running :version, which is the latest available release.',
'update_newer_version_alert' => 'You are running :your_version, which is newer than the latest release, :new_version.',
'update_check_error' => 'An error occurred while checking for updates: :error',
'unknown_error' => 'Unknown error. Sorry about that.',
'just_new_release' => 'A new version is available! Version :version was released :date. This release is very fresh. Wait a few days for the new release to stabilize.',
'disabled_but_check' => 'You disabled update checking. So don\'t forget to check for updates yourself every now and then. Thank you!',
'update_new_version_alert' => 'Firefly III의 새 버전을 사용할 수 있습니다. 현재 실행 중인 버전은 :your_version이며, 최신 버전은 :date에 릴리스된 :new_version입니다.',
'update_version_beta' => '이 버전은 베타 버전입니다. 문제가 발생할 수 있습니다.',
'update_version_alpha' => '이 버전은 알파 버전입니다. 문제가 발생할 수 있습니다.',
'update_current_version_alert' => '사용 가능한 최신 릴리스인 :version을 실행 중입니다.',
'update_newer_version_alert' => '최신 릴리스인 :new_version보다 최신 버전인 :your_version을 실행중입니다.',
'update_check_error' => '업데이트 확인 중 오류가 발생했습니다: :error',
'unknown_error' => '알 수 없는 오류입니다. 죄송합니다.',
'just_new_release' => '새 버전이 출시되었습니다! :version 버전이 :date에 출시되었습니다. 이 릴리스는 아주 최신의 버전입니다. 새 릴리스가 안정화될 때까지 며칠 정도 기다려 주세요.',
'disabled_but_check' => '업데이트 확인을 비활성화했습니다. 가끔씩 업데이트를 직접 확인하는 것을 잊지 마세요. 감사합니다!',
'admin_update_channel_title' => '업데이트 채널',
'admin_update_channel_explain' => 'Firefly III has three update "channels" which determine how ahead of the curve you are in terms of features, enhancements and bugs. Use the "beta" channel if you\'re adventurous and the "alpha" when you like to live life dangerously.',
'update_channel_stable' => 'Stable. Everything should work as expected.',
'update_channel_beta' => 'Beta. New features but things may be broken.',
'admin_update_channel_explain' => 'Firefly III에는 세 가지 업데이트 "채널"이 있으며, 기능, 개선 사항 및 버그에 대해 얼마나 앞서 있는지 결정합니다. 모험심이 강하다면 "베타" 채널을, 위험한 삶을 원하신다면 "알파" 채널을 사용하세요.',
'update_channel_stable' => '안정 버전입니다. 모든 것이 예상대로 작동합니다.',
'update_channel_beta' => '베타 버전입니다. 새로운 기능이 추가되었지만 일부 기능이 손상될 수 있습니다.',
'update_channel_alpha' => 'Alpha. We throw stuff in, and use whatever sticks.',
// search
@ -1115,14 +1115,14 @@ return [
'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"',
'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"',
'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"',
'rule_trigger_not_category_is' => 'Category is not ":trigger_value"',
'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"',
'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"',
'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"',
'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"',
'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"',
'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"',
'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"',
'rule_trigger_not_category_is' => '카테고리는 ":trigger_value" 가 아닙니다',
'rule_trigger_not_category_contains' => '카테고리에 ":trigger_value"가 포함되어 있지 않습니다',
'rule_trigger_not_category_ends' => '카테고리가 ":trigger_value"로 끝나지 않습니다',
'rule_trigger_not_category_starts' => '카테고리가 ":trigger_value"로 시작하지 않습니다.',
'rule_trigger_not_budget_is' => '예산은 ":trigger_value" 가 아닙니다',
'rule_trigger_not_budget_contains' => '예산에 ":trigger_value"가 포함되어 있지 않습니다',
'rule_trigger_not_budget_ends' => '예산이 ":trigger_value"로 끝나지 않습니다',
'rule_trigger_not_budget_starts' => '예산이 ":trigger_value"로 시작하지 않습니다',
'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"',
'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"',
'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"',

View File

@ -265,7 +265,7 @@ return [
'updated_webhook' => 'Webhook ":title" bijgewerkt',
'edit_webhook_js' => 'Webhook "{title}" wijzigen',
'show_webhook' => 'Webhook ":title"',
'webhook_was_triggered' => 'De webhook is geactiveerd op de aangegeven transactie. Wacht tot de resultaten verschijnen.',
'webhook_was_triggered' => 'De webhook is getriggerd op de aangegeven transactie. Het resultaat zie je zometeen.',
'webhook_messages' => 'Webhook-bericht',
'view_message' => 'Bekijk bericht',
'view_attempts' => 'Bekijk mislukte pogingen',

View File

@ -279,8 +279,8 @@ return [
'response' => 'Resposta',
'visit_webhook_url' => 'Acesse a URL do webhook',
'reset_webhook_secret' => 'Redefinir chave do webhook',
'webhook_stored_link' => '<a href="webhooks/show/{ID}">Webhook #{ID} ("{title}")</a> has been stored.',
'webhook_updated_link' => '<a href="webhooks/show/{ID}">Webhook #{ID}</a> ("{title}") has been updated.',
'webhook_stored_link' => '<a href="transactions/show/{ID}">Webhooh #{ID} ("{title}")</a> foi salva.',
'webhook_updated_link' => '<a href="webhooks/show/{ID}">Webhook #{ID}</a> ("{title}") foi atualizado.',
// API access
'authorization_request' => 'Firefly III v:version Pedido de autorização',
@ -1115,14 +1115,14 @@ return [
'rule_trigger_not_account_nr_contains' => 'Nenhum número de conta / IBAN contém ":trigger_value"',
'rule_trigger_not_account_nr_ends' => 'Nenhum número de conta / IBAN termina em ":trigger_value"',
'rule_trigger_not_account_nr_starts' => 'Nenhum número de conta / IBAN começa com ":trigger_value"',
'rule_trigger_not_category_is' => 'Category is not ":trigger_value"',
'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"',
'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"',
'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"',
'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"',
'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"',
'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"',
'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"',
'rule_trigger_not_category_is' => 'Categoria não é ":trigger_value"',
'rule_trigger_not_category_contains' => 'Categoria não contém ":trigger_value"',
'rule_trigger_not_category_ends' => 'Categoria não termina em ":trigger_value"',
'rule_trigger_not_category_starts' => 'Categoria não começa com ":trigger_value"',
'rule_trigger_not_budget_is' => 'Orçamento não é ":trigger_value"',
'rule_trigger_not_budget_contains' => 'Orçamento não contém ":trigger_value"',
'rule_trigger_not_budget_ends' => 'Orçamento não termina em ":trigger_value"',
'rule_trigger_not_budget_starts' => 'Orçamento não começa com ":trigger_value"',
'rule_trigger_not_bill_is' => 'Fatura não é ":trigger_value"',
'rule_trigger_not_bill_contains' => 'Fatura não contém ":trigger_value"',
'rule_trigger_not_bill_ends' => 'Fatura não termina em ":trigger_value"',
@ -1390,7 +1390,7 @@ return [
'slack_url_label' => 'URL do webhook de entrada do Slack',
// Financial administrations
'administration_index' => 'Financial administration',
'administration_index' => 'Administração financeira',
// profile:
'purge_data_title' => 'Excluir dados do Firefly III',

View File

@ -282,7 +282,7 @@ return [
'auto_budget_period_mandatory' => 'O período de orçamento automático é um campo obrigatório.',
// no access to administration:
'no_access_user_group' => 'You do not have the correct access rights for this administration.',
'no_access_user_group' => 'Você não direitos de acesso suficientes para esta administração.',
];
/*

View File

@ -1115,14 +1115,14 @@ return [
'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"',
'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"',
'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"',
'rule_trigger_not_category_is' => 'Category is not ":trigger_value"',
'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"',
'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"',
'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"',
'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"',
'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"',
'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"',
'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"',
'rule_trigger_not_category_is' => 'Категория не ":trigger_value"',
'rule_trigger_not_category_contains' => 'Категория не содержит ":trigger_value"',
'rule_trigger_not_category_ends' => 'Категория не заканчивается ":trigger_value"',
'rule_trigger_not_category_starts' => 'Категория не начинается с ":trigger_value"',
'rule_trigger_not_budget_is' => 'Бюджет не ":trigger_value"',
'rule_trigger_not_budget_contains' => 'Бюджет не содержит ":trigger_value"',
'rule_trigger_not_budget_ends' => 'Бюджет не заканчивается ":trigger_value"',
'rule_trigger_not_budget_starts' => 'Бюджет не начинается с ":trigger_value"',
'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"',
'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"',
'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"',

View File

@ -180,7 +180,7 @@ return [
'payment_info' => 'Иформация о платеже',
'expected_info' => 'Следующая ожидаемая операция',
'start_date' => 'Начальная дата',
'trigger' => 'Trigger',
'trigger' => 'Событие',
'response' => 'Ответ',
'delivery' => 'Доставка',
'url' => 'Ссылка',

279
yarn.lock
View File

@ -2,7 +2,7 @@
# yarn lockfile v1
"@ampproject/remapping@^2.1.0":
"@ampproject/remapping@^2.2.0":
version "2.2.0"
resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d"
integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==
@ -18,38 +18,39 @@
"@babel/highlight" "^7.18.6"
"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.1", "@babel/compat-data@^7.20.5":
version "7.20.14"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.14.tgz#4106fc8b755f3e3ee0a0a7c27dde5de1d2b2baf8"
integrity sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.0.tgz#c241dc454e5b5917e40d37e525e2f4530c399298"
integrity sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g==
"@babel/core@^7.15.8":
version "7.20.12"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.12.tgz#7930db57443c6714ad216953d1356dac0eb8496d"
integrity sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.0.tgz#1341aefdcc14ccc7553fcc688dd8986a2daffc13"
integrity sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==
dependencies:
"@ampproject/remapping" "^2.1.0"
"@ampproject/remapping" "^2.2.0"
"@babel/code-frame" "^7.18.6"
"@babel/generator" "^7.20.7"
"@babel/generator" "^7.21.0"
"@babel/helper-compilation-targets" "^7.20.7"
"@babel/helper-module-transforms" "^7.20.11"
"@babel/helpers" "^7.20.7"
"@babel/parser" "^7.20.7"
"@babel/helper-module-transforms" "^7.21.0"
"@babel/helpers" "^7.21.0"
"@babel/parser" "^7.21.0"
"@babel/template" "^7.20.7"
"@babel/traverse" "^7.20.12"
"@babel/types" "^7.20.7"
"@babel/traverse" "^7.21.0"
"@babel/types" "^7.21.0"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
json5 "^2.2.2"
semver "^6.3.0"
"@babel/generator@^7.20.7":
version "7.20.14"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.14.tgz#9fa772c9f86a46c6ac9b321039400712b96f64ce"
integrity sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==
"@babel/generator@^7.21.0", "@babel/generator@^7.21.1":
version "7.21.1"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.1.tgz#951cc626057bc0af2c35cd23e9c64d384dea83dd"
integrity sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==
dependencies:
"@babel/types" "^7.20.7"
"@babel/types" "^7.21.0"
"@jridgewell/gen-mapping" "^0.3.2"
"@jridgewell/trace-mapping" "^0.3.17"
jsesc "^2.5.1"
"@babel/helper-annotate-as-pure@^7.18.6":
@ -78,27 +79,27 @@
lru-cache "^5.1.1"
semver "^6.3.0"
"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.20.5", "@babel/helper-create-class-features-plugin@^7.20.7":
version "7.20.12"
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz#4349b928e79be05ed2d1643b20b99bb87c503819"
integrity sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==
"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.21.0":
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.0.tgz#64f49ecb0020532f19b1d014b03bccaa1ab85fb9"
integrity sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-function-name" "^7.19.0"
"@babel/helper-member-expression-to-functions" "^7.20.7"
"@babel/helper-function-name" "^7.21.0"
"@babel/helper-member-expression-to-functions" "^7.21.0"
"@babel/helper-optimise-call-expression" "^7.18.6"
"@babel/helper-replace-supers" "^7.20.7"
"@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.20.5":
version "7.20.5"
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz#5ea79b59962a09ec2acf20a963a01ab4d076ccca"
integrity sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.0.tgz#53ff78472e5ce10a52664272a239787107603ebb"
integrity sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
regexpu-core "^5.2.1"
regexpu-core "^5.3.1"
"@babel/helper-define-polyfill-provider@^0.3.3":
version "0.3.3"
@ -124,13 +125,13 @@
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0":
version "7.19.0"
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c"
integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==
"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0", "@babel/helper-function-name@^7.21.0":
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4"
integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==
dependencies:
"@babel/template" "^7.18.10"
"@babel/types" "^7.19.0"
"@babel/template" "^7.20.7"
"@babel/types" "^7.21.0"
"@babel/helper-hoist-variables@^7.18.6":
version "7.18.6"
@ -139,12 +140,12 @@
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-member-expression-to-functions@^7.20.7":
version "7.20.7"
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz#a6f26e919582275a93c3aa6594756d71b0bb7f05"
integrity sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==
"@babel/helper-member-expression-to-functions@^7.20.7", "@babel/helper-member-expression-to-functions@^7.21.0":
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.0.tgz#319c6a940431a133897148515877d2f3269c3ba5"
integrity sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==
dependencies:
"@babel/types" "^7.20.7"
"@babel/types" "^7.21.0"
"@babel/helper-module-imports@^7.18.6":
version "7.18.6"
@ -153,10 +154,10 @@
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11":
version "7.20.11"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz#df4c7af713c557938c50ea3ad0117a7944b2f1b0"
integrity sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==
"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.21.0", "@babel/helper-module-transforms@^7.21.2":
version "7.21.2"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz#160caafa4978ac8c00ac66636cb0fa37b024e2d2"
integrity sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-module-imports" "^7.18.6"
@ -164,8 +165,8 @@
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-validator-identifier" "^7.19.1"
"@babel/template" "^7.20.7"
"@babel/traverse" "^7.20.10"
"@babel/types" "^7.20.7"
"@babel/traverse" "^7.21.2"
"@babel/types" "^7.21.2"
"@babel/helper-optimise-call-expression@^7.18.6":
version "7.18.6"
@ -233,9 +234,9 @@
integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
"@babel/helper-validator-option@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180"
integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==
"@babel/helper-wrap-function@^7.18.9":
version "7.20.5"
@ -247,14 +248,14 @@
"@babel/traverse" "^7.20.5"
"@babel/types" "^7.20.5"
"@babel/helpers@^7.20.7":
version "7.20.13"
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.13.tgz#e3cb731fb70dc5337134cadc24cbbad31cc87ad2"
integrity sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==
"@babel/helpers@^7.21.0":
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.21.0.tgz#9dd184fb5599862037917cdc9eecb84577dc4e7e"
integrity sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==
dependencies:
"@babel/template" "^7.20.7"
"@babel/traverse" "^7.20.13"
"@babel/types" "^7.20.7"
"@babel/traverse" "^7.21.0"
"@babel/types" "^7.21.0"
"@babel/highlight@^7.18.6":
version "7.18.6"
@ -265,10 +266,10 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
"@babel/parser@^7.1.0", "@babel/parser@^7.16.4", "@babel/parser@^7.18.4", "@babel/parser@^7.20.13", "@babel/parser@^7.20.7":
version "7.20.15"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.15.tgz#eec9f36d8eaf0948bb88c87a46784b5ee9fd0c89"
integrity sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==
"@babel/parser@^7.1.0", "@babel/parser@^7.16.4", "@babel/parser@^7.18.4", "@babel/parser@^7.20.7", "@babel/parser@^7.21.0", "@babel/parser@^7.21.2":
version "7.21.2"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.2.tgz#dacafadfc6d7654c3051a66d6fe55b6cb2f2a0b3"
integrity sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6":
version "7.18.6"
@ -305,11 +306,11 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-proposal-class-static-block@^7.18.6":
version "7.20.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz#92592e9029b13b15be0f7ce6a7aedc2879ca45a7"
integrity sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz#77bdd66fb7b605f3a61302d224bdfacf5547977d"
integrity sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==
dependencies:
"@babel/helper-create-class-features-plugin" "^7.20.7"
"@babel/helper-create-class-features-plugin" "^7.21.0"
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-class-static-block" "^7.14.5"
@ -381,9 +382,9 @@
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
"@babel/plugin-proposal-optional-chaining@^7.18.9", "@babel/plugin-proposal-optional-chaining@^7.20.7":
version "7.20.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz#49f2b372519ab31728cc14115bb0998b15bfda55"
integrity sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea"
integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
@ -398,12 +399,12 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-proposal-private-property-in-object@^7.18.6":
version "7.20.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz#309c7668f2263f1c711aa399b5a9a6291eef6135"
integrity sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz#19496bd9883dd83c23c7d7fc45dcd9ad02dfa1dc"
integrity sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-create-class-features-plugin" "^7.20.5"
"@babel/helper-create-class-features-plugin" "^7.21.0"
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
@ -544,21 +545,21 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-block-scoping@^7.20.2":
version "7.20.15"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.15.tgz#3e1b2aa9cbbe1eb8d644c823141a9c5c2a22392d"
integrity sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA==
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz#e737b91037e5186ee16b76e7ae093358a5634f02"
integrity sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-transform-classes@^7.20.2":
version "7.20.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz#f438216f094f6bb31dc266ebfab8ff05aecad073"
integrity sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz#f469d0b07a4c5a7dbb21afad9e27e57b47031665"
integrity sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-compilation-targets" "^7.20.7"
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-function-name" "^7.19.0"
"@babel/helper-function-name" "^7.21.0"
"@babel/helper-optimise-call-expression" "^7.18.6"
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/helper-replace-supers" "^7.20.7"
@ -604,11 +605,11 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-for-of@^7.18.8":
version "7.18.8"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz#6ef8a50b244eb6a0bdbad0c7c61877e4e30097c1"
integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.0.tgz#964108c9988de1a60b4be2354a7d7e245f36e86e"
integrity sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-transform-function-name@^7.18.9":
version "7.18.9"
@ -642,11 +643,11 @@
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-transform-modules-commonjs@^7.19.6":
version "7.20.11"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz#8cb23010869bf7669fd4b3098598b6b2be6dc607"
integrity sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==
version "7.21.2"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.2.tgz#6ff5070e71e3192ef2b7e39820a06fb78e3058e7"
integrity sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==
dependencies:
"@babel/helper-module-transforms" "^7.20.11"
"@babel/helper-module-transforms" "^7.21.2"
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/helper-simple-access" "^7.20.2"
@ -721,12 +722,12 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-runtime@^7.15.8":
version "7.19.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz#9d2a9dbf4e12644d6f46e5e75bfbf02b5d6e9194"
integrity sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.21.0.tgz#2a884f29556d0a68cd3d152dcc9e6c71dfb6eee8"
integrity sha512-ReY6pxwSzEU0b3r2/T/VhqMKg/AkceBT19X0UptA3/tYi5Pe2eXgEUH+NNMC5nok6c6XQz5tyVTUpuezRfSMSg==
dependencies:
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-plugin-utils" "^7.19.0"
"@babel/helper-plugin-utils" "^7.20.2"
babel-plugin-polyfill-corejs2 "^0.3.3"
babel-plugin-polyfill-corejs3 "^0.6.0"
babel-plugin-polyfill-regenerator "^0.4.1"
@ -881,9 +882,9 @@
integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
"@babel/runtime@^7.15.4", "@babel/runtime@^7.8.4":
version "7.20.13"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.13.tgz#7055ab8a7cff2b8f6058bf6ae45ff84ad2aded4b"
integrity sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673"
integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==
dependencies:
regenerator-runtime "^0.13.11"
@ -896,26 +897,26 @@
"@babel/parser" "^7.20.7"
"@babel/types" "^7.20.7"
"@babel/traverse@^7.20.10", "@babel/traverse@^7.20.12", "@babel/traverse@^7.20.13", "@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7":
version "7.20.13"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.13.tgz#817c1ba13d11accca89478bd5481b2d168d07473"
integrity sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==
"@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7", "@babel/traverse@^7.21.0", "@babel/traverse@^7.21.2":
version "7.21.2"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.2.tgz#ac7e1f27658750892e815e60ae90f382a46d8e75"
integrity sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw==
dependencies:
"@babel/code-frame" "^7.18.6"
"@babel/generator" "^7.20.7"
"@babel/generator" "^7.21.1"
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-function-name" "^7.19.0"
"@babel/helper-function-name" "^7.21.0"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/parser" "^7.20.13"
"@babel/types" "^7.20.7"
"@babel/parser" "^7.21.2"
"@babel/types" "^7.21.2"
debug "^4.1.0"
globals "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.3.0", "@babel/types@^7.4.4":
version "7.20.7"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.7.tgz#54ec75e252318423fc07fb644dc6a58a64c09b7f"
integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==
"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.2", "@babel/types@^7.3.0", "@babel/types@^7.4.4":
version "7.21.2"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.2.tgz#92246f6e00f91755893c2876ad653db70c8310d1"
integrity sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==
dependencies:
"@babel/helper-string-parser" "^7.19.4"
"@babel/helper-validator-identifier" "^7.19.1"
@ -978,7 +979,7 @@
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
"@jridgewell/trace-mapping@^0.3.14", "@jridgewell/trace-mapping@^0.3.9":
"@jridgewell/trace-mapping@^0.3.14", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
version "0.3.17"
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985"
integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==
@ -1142,9 +1143,9 @@
"@types/node" "*"
"@types/http-proxy@^1.17.8":
version "1.17.9"
resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.9.tgz#7f0e7931343761efde1e2bf48c40f02f3f75705a"
integrity sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==
version "1.17.10"
resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.10.tgz#e576c8e4a0cc5c6a138819025a88e167ebb38d6c"
integrity sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==
dependencies:
"@types/node" "*"
@ -1200,9 +1201,9 @@
integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==
"@types/node@*":
version "18.14.0"
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.14.0.tgz#94c47b9217bbac49d4a67a967fdcdeed89ebb7d0"
integrity sha512-5EWrvLmglK+imbCJY0+INViFWUHg1AHel1sq4ZVSfdcNqGy9Edv3UB9IIzzg+xPaUcAgZYcfVs2fBcwDeZzU0A==
version "18.14.1"
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.14.1.tgz#90dad8476f1e42797c49d6f8b69aaf9f876fc69f"
integrity sha512-QH+37Qds3E0eDlReeboBxfHbX9omAcBCXEzswCu6jySP642jiM3cYSIkU/REqwhCUqXdonHFuBfJDiAJxMNhaQ==
"@types/parse-json@^4.0.0":
version "4.0.0"
@ -1232,9 +1233,9 @@
"@types/express" "*"
"@types/serve-static@*", "@types/serve-static@^1.13.10":
version "1.15.0"
resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.0.tgz#c7930ff61afb334e121a9da780aac0d9b8f34155"
integrity sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==
version "1.15.1"
resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.1.tgz#86b1753f0be4f9a1bee68d459fcda5be4ea52b5d"
integrity sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==
dependencies:
"@types/mime" "*"
"@types/node" "*"
@ -1629,9 +1630,9 @@ autoprefixer@^10.4.0:
postcss-value-parser "^4.2.0"
axios@^1.2:
version "1.3.3"
resolved "https://registry.yarnpkg.com/axios/-/axios-1.3.3.tgz#e7011384ba839b885007c9c9fae1ff23dceb295b"
integrity sha512-eYq77dYIFS77AQlhzEL937yUBSepBfPIe8FcgEDN35vMNZKMrs81pgnyrQpwfy4NF4b4XWX1Zgx7yX+25w8QJA==
version "1.3.4"
resolved "https://registry.yarnpkg.com/axios/-/axios-1.3.4.tgz#f5760cefd9cfb51fd2481acf88c05f67c4523024"
integrity sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ==
dependencies:
follow-redirects "^1.15.0"
form-data "^4.0.0"
@ -1906,9 +1907,9 @@ caniuse-api@^3.0.0:
lodash.uniq "^4.5.0"
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001426, caniuse-lite@^1.0.30001449:
version "1.0.30001456"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001456.tgz#734ec1dbfa4f3abe6e435b78ecf40d68e8c32ce4"
integrity sha512-XFHJY5dUgmpMV25UqaD4kVq2LsiaU5rS8fb0f17pCoXQiQslzmFgnfOxfvo1bTpTqf7dwG/N/05CnLCnOEKmzA==
version "1.0.30001457"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001457.tgz#6af34bb5d720074e2099432aa522c21555a18301"
integrity sha512-SDIV6bgE1aVbK6XyxdURbUE89zY7+k1BBBaOwYwkNCglXlel/E7mELiHC64HQ+W0xSKlqWhV9Wh7iHxUjMs4fA==
chalk@^2.0.0:
version "2.4.2"
@ -2519,9 +2520,9 @@ ee-first@1.1.1:
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
electron-to-chromium@^1.4.284:
version "1.4.302"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.302.tgz#5770646ffe7051677b489226144aad9386d420f2"
integrity sha512-Uk7C+7aPBryUR1Fwvk9VmipBcN9fVsqBO57jV2ZjTm+IZ6BMNqu7EDVEg2HxCNufk6QcWlFsBkhQyQroB2VWKw==
version "1.4.310"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.310.tgz#cb85dc8ceac536e99b20a364d7ab00ea35168f9e"
integrity sha512-/xlATgfwkm5uDDwLw5nt/MNEf7c1oazLURMZLy39vOioGYyYzLWIDT8fZMJak6qTiAJ7udFTy7JG7ziyjNutiA==
elliptic@^6.5.3:
version "6.5.4"
@ -3832,9 +3833,9 @@ onetime@^5.1.2:
mimic-fn "^2.1.0"
open@^8.0.9:
version "8.4.1"
resolved "https://registry.yarnpkg.com/open/-/open-8.4.1.tgz#2ab3754c07f5d1f99a7a8d6a82737c95e3101cff"
integrity sha512-/4b7qZNhv6Uhd7jjnREh1NjnPxlTq+XNWPG88Ydkj5AILcA5m3ajvcg57pB24EQjKv0dK62XnDqk9c/hkIG5Kg==
version "8.4.2"
resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9"
integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==
dependencies:
define-lazy-prop "^2.0.0"
is-docker "^2.1.1"
@ -4394,9 +4395,9 @@ raw-body@2.5.1:
unpipe "1.0.0"
readable-stream@^2.0.1, readable-stream@^2.0.2, 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==
version "2.3.8"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b"
integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
dependencies:
core-util-is "~1.0.0"
inherits "~2.0.3"
@ -4407,9 +4408,9 @@ readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.3.3, readable
util-deprecate "~1.0.1"
readable-stream@^3.0.6, readable-stream@^3.5.0, 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==
version "3.6.1"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.1.tgz#f9f9b5f536920253b3d26e7660e7da4ccff9bb62"
integrity sha512-+rQmrWMYGA90yenhTYsLWAsLsqVC8osOw6PKE1HDYiO0gdPeKe/xDHNzIAIn4C91YQ6oenEhfYqqc1883qHbjQ==
dependencies:
inherits "^2.0.3"
string_decoder "^1.1.1"
@ -4453,7 +4454,7 @@ regenerator-transform@^0.15.1:
dependencies:
"@babel/runtime" "^7.8.4"
regexpu-core@^5.2.1:
regexpu-core@^5.3.1:
version "5.3.1"
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.1.tgz#66900860f88def39a5cb79ebd9490e84f17bcdfb"
integrity sha512-nCOzW2V/X15XpLsK2rlgdwrysrBq+AauCn+omItIz4R1pIcmeot5zvjdmOBRLzEH/CkC6IxMJVmxDe3QcMuNVQ==
@ -4960,9 +4961,9 @@ terser@^4.6.3:
source-map-support "~0.5.12"
terser@^5.14.1, terser@^5.9.0:
version "5.16.4"
resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.4.tgz#51284b440b93242291a98f2a9903c024cfb70e6e"
integrity sha512-5yEGuZ3DZradbogeYQ1NaGz7rXVBDWujWlx1PT8efXO6Txn+eWbfKqB2bTDVmFXmePFkoLU6XI8UektMIEA0ug==
version "5.16.5"
resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.5.tgz#1c285ca0655f467f92af1bbab46ab72d1cb08e5a"
integrity sha512-qcwfg4+RZa3YvlFh0qjifnzBHjKGNbtDo9yivMqMFDy9Q6FSaQWSB/j1xKhsoUFJIqDOM3TsN6D5xbrMrFcHbg==
dependencies:
"@jridgewell/source-map" "^0.3.2"
acorn "^8.5.0"
@ -5408,9 +5409,9 @@ yargs-parser@^21.1.1:
integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
yargs@^17.2.1:
version "17.7.0"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.0.tgz#b21e9af1e0a619a2a9c67b1133219b2975a07985"
integrity sha512-dwqOPg5trmrre9+v8SUo2q/hAwyKoVfu8OC1xPHKJGNdxAvPl4sKxL4vBnh3bQz/ZvvGAFeA5H3ou2kcOY8sQQ==
version "17.7.1"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.1.tgz#34a77645201d1a8fc5213ace787c220eabbd0967"
integrity sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==
dependencies:
cliui "^8.0.1"
escalade "^3.1.1"