Update for 5.5.10

This commit is contained in:
James Cole
2021-05-01 09:47:21 +02:00
parent 3298f2d815
commit ea0942b7fe
80 changed files with 941 additions and 482 deletions

View File

@@ -33,9 +33,6 @@
<div v-if="error" class="text-center">
<i class="fas fa-exclamation-triangle text-danger"></i>
</div>
<div v-if="timezoneDifference" class="text-muted small">
{{ $t('firefly.timezone_difference', {local: localTimeZone, system: systemTimeZone}) }}
</div>
</div>
<div class="card-footer">
<a class="btn btn-default button-sm" href="./accounts/asset"><i class="far fa-money-bill-alt"></i> {{ $t('firefly.go_to_asset_accounts') }}</a>
@@ -66,24 +63,16 @@ export default {
dataCollection: {},
chartOptions: {},
_chart: null,
localTimeZone: '',
systemTimeZone: '',
}
},
created() {
this.chartOptions = DefaultLineOptions.methods.getDefaultOptions();
this.localTimeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
this.systemTimeZone = this.timezone;
this.ready = true;
},
computed: {
...mapGetters('dashboard/index', ['start', 'end']),
...mapGetters('root', ['timezone']),
'datesReady': function () {
return null !== this.start && null !== this.end && this.ready;
},
timezoneDifference: function () {
return this.localTimeZone !== this.systemTimeZone;
}
},
watch: {

View File

@@ -42,7 +42,7 @@
<thead>
<tr>
<th scope="col">{{ $t('firefly.category') }}</th>
<th scope="col">{{ $t('firefly.spent') }}</th>
<th scope="col">{{ $t('firefly.spent') }} / {{ $t('firefly.earned') }}</th>
</tr>
</thead>
<tbody>

View File

@@ -41,8 +41,8 @@
<caption style="display:none;">{{ $t('firefly.revenue_accounts') }}</caption>
<thead>
<tr>
<th scope="col">{{ $t('firefly.category') }}</th>
<th scope="col">{{ $t('firefly.spent') }}</th>
<th scope="col">{{ $t('firefly.account') }}</th>
<th scope="col">{{ $t('firefly.earned') }}</th>
</tr>
</thead>
<tbody>

View File

@@ -41,7 +41,7 @@
<caption style="display:none;">{{ $t('firefly.expense_accounts') }}</caption>
<thead>
<tr>
<th scope="col">{{ $t('firefly.category') }}</th>
<th scope="col">{{ $t('firefly.account') }}</th>
<th scope="col">{{ $t('firefly.spent') }}</th>
</tr>
</thead>

View File

@@ -20,7 +20,7 @@
<template>
<div class="row">
<div class="col"> <!-- col-md-3 col-sm-6 col-12 -->
<div class="col" v-if="0 !== prefCurrencyBalances.length && 0 !== notPrefCurrencyBalances.length">
<div class="info-box">
<span class="info-box-icon"><i class="far fa-bookmark text-info"></i></span>
@@ -45,7 +45,7 @@
</div>
</div>
<div class="col">
<div class="col" v-if="0!==prefBillsUnpaid.length && 0 !== notPrefBillsUnpaid.length">
<div class="info-box">
<span class="info-box-icon"><i class="far fa-calendar-alt text-teal"></i></span>
@@ -55,7 +55,6 @@
<span v-if="error" class="info-box-text"><i class="fas fa-exclamation-triangle text-danger"></i></span>
<!-- bills unpaid, in preferred currency. -->
<span v-for="balance in prefBillsUnpaid" class="info-box-number">{{ balance.value_parsed }}</span>
<span v-if="0===prefBillsUnpaid.length" class="info-box-number">&nbsp;</span>
<div class="progress bg-teal">
<div class="progress-bar" style="width: 0"></div>
@@ -71,7 +70,7 @@
</div>
</div>
<!-- left to spend -->
<div class="col">
<div class="col" v-if="0 !== prefLeftToSpend.length && 0 !== notPrefLeftToSpend.length">
<div class="info-box">
<span class="info-box-icon"><i class="fas fa-money-bill text-success"></i></span>
@@ -98,7 +97,7 @@
</div>
<!-- net worth -->
<div class="col">
<div class="col" v-if="0 !== notPrefNetWorth.length && 0 !== prefNetWorth.length">
<div class="info-box">
<span class="info-box-icon"><i class="fas fa-money-bill text-success"></i></span>

View File

@@ -25,21 +25,26 @@
<Alert :message="warningMessage" type="warning"/>
<form @submit="submitTransaction" autocomplete="off">
<SplitPills :transactions="transactions"/>
<SplitPills
:transactions="transactions"
:count="transactions.length"
/>
<div class="tab-content">
<SplitForm
v-for="(transaction, index) in this.transactions"
v-bind:key="index"
:count="transactions.length"
:index="index"
v-bind:key="transaction.transaction_journal_id"
:key="transaction.transaction_journal_id"
:transaction="transaction"
:date="date"
:count="transactions.length"
:transaction-type="transactionType"
:source-allowed-types="sourceAllowedTypes"
:allowed-opposing-types="allowedOpposingTypes"
:custom-fields="customFields"
:date="date"
:index="index"
:transaction-type="transactionType"
:destination-allowed-types="destinationAllowedTypes"
:source-allowed-types="sourceAllowedTypes"
:allow-switch="false"
v-on:uploaded-attachments="uploadedAttachment($event)"
v-on:set-marker-location="storeLocation($event)"
@@ -122,56 +127,97 @@ const lodashClonedeep = require('lodash.clonedeep');
export default {
name: "Edit",
created() {
// console.log('Created');
let parts = window.location.pathname.split('/');
this.groupId = parseInt(parts[parts.length - 1]);
this.transactions = [];
this.getTransactionGroup();
this.getAllowedOpposingTypes();
this.getCustomFields();
},
data() {
return {
successMessage: '',
errorMessage: '',
warningMessage: '',
successMessage: {type: String, default: ''},
errorMessage: {type: String, default: ''},
warningMessage: {type: String, default: ''},
// transaction props
transactions: [],
originalTransactions: [],
groupTitle: '',
originalGroupTitle: '',
transactionType: 'any',
groupId: 0,
transactions: {
type: Array,
default: function () {
return [];
}
},
originalTransactions: {
type: Array,
default: function () {
return [];
}
},
groupTitle: {type: String, default: ''},
originalGroupTitle: {type: String, default: ''},
transactionType: {type: String, default: 'any'},
groupId: {type: Number, default: 0},
// errors in the group title:
groupTitleErrors: [],
groupTitleErrors: {
type: Array,
default: function () {
return [];
}
},
// which custom fields to show
customFields: {},
customFields: {
type: Object,
default: function () {
return {};
}
},
// group ID + title once submitted:
returnedGroupId: 0,
returnedGroupTitle: '',
returnedGroupId: {type: Number, default: 0},
returnedGroupTitle: {type: String, default: ''},
// date and time of the transaction,
date: '',
originalDate: '',
date: {type: String, default: ''},
originalDate: {type: String, default: ''},
// things the process is done working on (3 phases):
submittedTransaction: false,
submittedTransaction: {type: Boolean, default: false},
// submittedLinks: false,
submittedAttachments: -1, // -1 = no attachments, 0 = uploading, 1 = uploaded
inError: false,
submittedAttachments: {type: Number, default: -1}, // -1 = no attachments, 0 = uploading, 1 = uploaded
inError: {type: Boolean, default: false},
// number of uploaded attachments
// its an object because we count per transaction journal (which can have multiple attachments)
// and array doesn't work right.
submittedAttCount: {},
submittedAttCount: {
type: Object,
default: function () {
return {};
}
},
// meta data for accounts
allowedOpposingTypes: {},
destinationAllowedTypes: [],
sourceAllowedTypes: [],
allowedOpposingTypes: {
type: Object,
default: function () {
return {};
}
},
destinationAllowedTypes: {
type: Array,
default: function () {
return [];
}
},
sourceAllowedTypes: {
type: Array,
default: function () {
return [];
}
},
// states for the form (makes sense right)
enableSubmit: true,
@@ -195,16 +241,17 @@ export default {
methods: {
...mapMutations('transactions/create', ['updateField',]),
/**
* Grap transaction group from URL and submit GET.
* Grab transaction group from URL and submit GET.
*/
getTransactionGroup: function () {
// console.log('getTransactionGroup');
axios.get('./api/v1/transactions/' + this.groupId)
.then(response => {
this.parseTransactionGroup(response.data);
}
).catch(error => {
console.log('I failed :(');
console.log(error);
//console.log('I failed :(');
//console.log(error);
});
},
/**
@@ -219,12 +266,16 @@ export default {
this.groupTitle = attributes.group_title;
this.originalGroupTitle = attributes.group_title;
this.transactions = [];
this.originalTransactions = [];
//this.returnedGroupId = parseInt(response.data.id);
this.returnedGroupTitle = null === this.originalGroupTitle ? response.data.attributes.transactions[0].description : this.originalGroupTitle;
for (let i in transactions) {
if (transactions.hasOwnProperty(i) && /^0$|^[1-9]\d*$/.test(i) && i <= 4294967294) {
console.log('Parsing transaction nr ' + i);
let result = this.parseTransaction(parseInt(i), transactions[i]);
this.transactions.push(result);
this.originalTransactions.push(lodashClonedeep(result));
@@ -431,16 +482,30 @@ export default {
},
removeTransaction: function (payload) {
//console.log('removeTransaction()');
//console.log(payload);
//console.log('length: ' + this.transactions.length);
this.transactions.splice(payload.index, 1);
//console.log('length: ' + this.transactions.length);
// console.log('removeTransaction()');
// console.log('length : ' + this.transactions.length);
// console.log('Remove index: ' + payload.index);
let index = 0;
for (let i in this.transactions) {
if (this.transactions.hasOwnProperty(i) && /^0$|^[1-9]\d*$/.test(i) && i <= 4294967294) {
console.log('Now at index: ' + i);
if (index === payload.index) {
console.log('Delete!');
this.transactions.splice(index, 1);
//console.log(delete this.transactions[i]);
}
index++;
}
}
$('#transactionTabs li:first-child a').tab('show');
//this.originalTransactions.splice(payload.index, 1);
// this.transactions.splice(payload.index, 1);
// console.log('length: ' + this.transactions.length);
// this.originalTransactions.splice(payload.index, 1);
// this kills the original transactions.
this.originalTransactions = [];
//this.originalTransactions = [];
},
storeGroupTitle: function (payload) {
this.groupTitle = payload;
@@ -466,6 +531,7 @@ export default {
},
submitTransaction: function (event) {
event.preventDefault();
this.enableSubmit = false;
let submission = {transactions: []};
// parse data to see if we should submit anything at all:
@@ -662,9 +728,10 @@ export default {
return this.deleteAllOriginalLinks().then(() => this.submitNewLinks());
},
submitAttachments: function (shouldSubmit, response) {
//console.log('submitAttachments');
console.log('submitAttachments');
if (!shouldSubmit) {
//console.log('no need!');
console.log('no need!');
this.submittedAttachments = 1;
return new Promise((resolve) => {
resolve({});
});
@@ -697,17 +764,20 @@ export default {
}
},
finaliseSubmission: function () {
//console.log('finaliseSubmission');
// console.log('finaliseSubmission (' + this.submittedAttachments + ')');
if (0 === this.submittedAttachments) {
return;
}
//console.log('continue (' + this.submittedAttachments + ')');
// console.log('continue (' + this.submittedAttachments + ')');
// console.log(this.stayHere);
// console.log(this.inError);
if (true === this.stayHere && false === this.inError) {
//console.log('no error + no changes + no redirect');
// show message:
this.errorMessage = '';
this.warningMessage = '';
this.successMessage = this.$t('firefly.transaction_updated_link', {ID: this.groupId, title: this.returnedGroupTitle});
}
// no error + changes + redirect
if (false === this.stayHere && false === this.inError) {
@@ -843,23 +913,23 @@ export default {
}
return JSON.stringify(compare);
},
uploadAttachments: function (result) {
//console.log('TODO, upload attachments.');
if (0 === Object.keys(result).length) {
for (let i in this.transactions) {
if (this.transactions.hasOwnProperty(i) && /^0$|^[1-9]\d*$/.test(i) && i <= 4294967294) {
//console.log('updateField(' + i + ', transaction_journal_id, ' + result[i].transaction_journal_id + ')');
this.updateField({index: i, field: 'transaction_journal_id', value: result[i].transaction_journal_id});
}
}
//console.log('Transactions not changed, use original objects.');
} else {
//console.log('Transactions changed!');
}
this.submittedAttachments = true;
},
// uploadAttachments: function (result) {
// //console.log('TODO, upload attachments.');
// if (0 === Object.keys(result).length) {
//
// for (let i in this.transactions) {
// if (this.transactions.hasOwnProperty(i) && /^0$|^[1-9]\d*$/.test(i) && i <= 4294967294) {
//
// //console.log('updateField(' + i + ', transaction_journal_id, ' + result[i].transaction_journal_id + ')');
// this.updateField({index: i, field: 'transaction_journal_id', value: result[i].transaction_journal_id});
// }
// }
// //console.log('Transactions not changed, use original objects.');
// } else {
// //console.log('Transactions changed!');
// }
// this.submittedAttachments = 0;
// },
parseErrors: function (errors) {
for (let i in this.transactions) {

View File

@@ -19,7 +19,7 @@
-->
<template>
<div :id="'split_' + index" :class="'tab-pane' + (0===index ? ' active' : '')">
<div :id="'split_' + index" :class="'tab-pane' + (0 === index ? ' active' : '')">
<div class="row">
<div class="col">
<div class="card">
@@ -32,6 +32,7 @@
<button type="button" class="btn btn-danger btn-xs" @click="removeTransaction"><i class="fas fa-trash-alt"></i></button>
</div>
</div>
<div class="card-body">
<!-- start of body -->
<div class="row">
@@ -330,7 +331,7 @@ export default {
},
count: {
type: Number,
required: false
required: true
},
customFields: {
type: Object,
@@ -370,6 +371,9 @@ export default {
}
},
created() {
console.log('SplitForm(' + this.index + ')');
},
methods: {
removeTransaction: function () {
// console.log('Will remove transaction ' + this.index);

View File

@@ -22,9 +22,10 @@
<div v-if="transactions.length > 1" class="row">
<div class="col">
<!-- tabs -->
<ul class="nav nav-pills ml-auto p-2">
<li v-for="(transaction, index) in this.transactions" class="nav-item"><a :class="'nav-link' + (0===index ? ' active' : '')" :href="'#split_' + index"
data-toggle="tab">
<ul class="nav nav-pills ml-auto p-2" id="transactionTabs">
<li v-for="(transaction, index) in this.transactions" class="nav-item"><a :class="'nav-link' + (0 === index ? ' active' : '')"
:href="'#split_' + index"
data-toggle="pill">
<span v-if="'' !== transaction.description">{{ transaction.description }}</span>
<span v-if="'' === transaction.description">Split {{ index + 1 }}</span>
</a></li>
@@ -36,6 +37,18 @@
<script>
export default {
name: "SplitPills",
props: ['transactions']
props: {
transactions: {
type: Array,
required: true,
default: function() {
return [];
}
},
count: {
type: Number,
required: true
},
}
}
</script>

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Your browser reports time zone \"{local}\". Firefly III is configured for time zone \"{system}\". This chart may drift.",
"stored_new_account_js": "New account \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" stored!",
"account_type_Debt": "\u0414\u044a\u043b\u0433",
"delete": "\u0418\u0437\u0442\u0440\u0438\u0439",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_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)"
},
@@ -134,15 +142,21 @@
"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",
"iban": "IBAN",
"interest": "\u041b\u0438\u0445\u0432\u0430",
"interest_period": "\u043b\u0438\u0445\u0432\u0435\u043d \u043f\u0435\u0440\u0438\u043e\u0434",
"liability_type": "\u0412\u0438\u0434 \u043d\u0430 \u0437\u0430\u0434\u044a\u043b\u0436\u0435\u043d\u0438\u0435\u0442\u043e",
"liability_direction": "(list.liability_direction)",
"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"
},
"config": {
"html_language": "bg",
"week_in_year_fns": "'Week' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Your browser reports time zone \"{local}\". Firefly III is configured for time zone \"{system}\". This chart may drift.",
"stored_new_account_js": "New account \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" stored!",
"account_type_Debt": "Dluh",
"delete": "Odstranit",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "Pokladni\u010dka",
"percentage": "%",
"amount": "\u010c\u00e1stka",
"lastActivity": "Posledn\u00ed aktivita",
"name": "Jm\u00e9no",
"role": "Role",
"iban": "IBAN",
"interest": "\u00darok",
"interest_period": "\u00farokov\u00e9 obdob\u00ed",
"liability_type": "Typ z\u00e1vazku",
"liability_direction": "(list.liability_direction)",
"currentBalance": "Aktu\u00e1ln\u00ed z\u016fstatek",
"next_expected_match": "Dal\u0161\u00ed o\u010dek\u00e1van\u00e1 shoda"
},
"config": {
"html_language": "cs",
"week_in_year_fns": "'Week' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Ihr Browser meldet die Zeitzone \u201e{local}\u201d. Firefly III ist aber f\u00fcr die Zeitzone \u201e{system}\u201d konfiguriert. Diese Karte kann deshalb abweichen.",
"stored_new_account_js": "Neues Konto \"<a href=\"accounts\/show\/{ID}\">\u201e{name}\u201d<\/a>\" gespeichert!",
"account_type_Debt": "Schuld",
"delete": "L\u00f6schen",
@@ -127,6 +129,12 @@
"interest_calc_yearly": "J\u00e4hrlich",
"liability_direction_credit": "Mir wird dies geschuldet",
"liability_direction_debit": "Ich schulde dies jemandem",
"liability_direction_credit_short": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_mortgage)",
"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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "Sparschwein",
"percentage": "%",
"amount": "Betrag",
"lastActivity": "Letzte Aktivit\u00e4t",
"name": "Name",
"role": "Rolle",
"iban": "IBAN",
"interest": "Zinsen",
"interest_period": "Verzinsungszeitraum",
"liability_type": "Verbindlichkeitsart",
"liability_direction": "(list.liability_direction)",
"currentBalance": "Aktueller Kontostand",
"next_expected_match": "N\u00e4chste erwartete \u00dcbereinstimmung"
},
"config": {
"html_language": "de",
"week_in_year_fns": "'Woche' ww\/yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'QQQ, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Your browser reports time zone \"{local}\". Firefly III is configured for time zone \"{system}\". This chart may drift.",
"stored_new_account_js": "New account \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" stored!",
"account_type_Debt": "\u03a7\u03c1\u03ad\u03bf\u03c2",
"delete": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae",
@@ -127,6 +129,12 @@
"interest_calc_yearly": "\u0391\u03bd\u03ac \u03ad\u03c4\u03bf\u03c2",
"liability_direction_credit": "I am owed this debt",
"liability_direction_debit": "I owe this debt to somebody else",
"liability_direction_credit_short": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_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": "(\u03c4\u03af\u03c0\u03bf\u03c4\u03b1)"
},
@@ -134,15 +142,21 @@
"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",
"iban": "IBAN",
"interest": "\u03a4\u03cc\u03ba\u03bf\u03c2",
"interest_period": "\u03c4\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": "(list.liability_direction)",
"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"
},
"config": {
"html_language": "el",
"week_in_year_fns": "'Week' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Your browser reports time zone \"{local}\". Firefly III is configured for time zone \"{system}\". This chart may drift.",
"stored_new_account_js": "New account \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" stored!",
"account_type_Debt": "Debt",
"delete": "Delete",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "Piggy bank",
"percentage": "pct.",
"amount": "Amount",
"lastActivity": "Last activity",
"name": "Name",
"role": "Role",
"iban": "IBAN",
"interest": "Interest",
"interest_period": "interest period",
"liability_type": "Type of liability",
"liability_direction": "(list.liability_direction)",
"currentBalance": "Current balance",
"next_expected_match": "Next expected match"
},
"config": {
"html_language": "en-gb",
"week_in_year_fns": "'Week' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Your browser reports time zone \"{local}\". Firefly III is configured for time zone \"{system}\". This chart may drift.",
"stored_new_account_js": "New account \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" stored!",
"account_type_Debt": "Debt",
"delete": "Delete",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "Piggy bank",
"percentage": "pct.",
"amount": "Amount",
"lastActivity": "Last activity",
"name": "Name",
"role": "Role",
"iban": "IBAN",
"interest": "Interest",
"interest_period": "interest period",
"liability_type": "Type of liability",
"liability_direction": "(list.liability_direction)",
"currentBalance": "Current balance",
"next_expected_match": "Next expected match"
},
"config": {
"html_language": "en",
"week_in_year_fns": "'Week' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Su navegador reporta la zona horaria \"{local}\". Firefly III est\u00e1 configurado para la zona horaria \"{system}\". Este gr\u00e1fico puede cambiar.",
"stored_new_account_js": "Nueva cuenta \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" guardada!",
"account_type_Debt": "Deuda",
"delete": "Eliminar",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_mortgage)",
"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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "Alcancilla",
"percentage": "pct.",
"amount": "Monto",
"lastActivity": "Actividad m\u00e1s reciente",
"name": "Nombre",
"role": "Rol",
"iban": "IBAN",
"interest": "Inter\u00e9s",
"interest_period": "per\u00edodo de inter\u00e9s",
"liability_type": "Tipo de pasivo",
"liability_direction": "(list.liability_direction)",
"currentBalance": "Balance actual",
"next_expected_match": "Pr\u00f3xima coincidencia esperada"
},
"config": {
"html_language": "es",
"week_in_year_fns": "'Semana' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Trimestre' Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Your browser reports time zone \"{local}\". Firefly III is configured for time zone \"{system}\". This chart may drift.",
"stored_new_account_js": "New account \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" stored!",
"account_type_Debt": "Velka",
"delete": "Poista",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "S\u00e4\u00e4st\u00f6possu",
"percentage": "pros.",
"amount": "Summa",
"lastActivity": "Viimeisin tapahtuma",
"name": "Nimi",
"role": "Rooli",
"iban": "IBAN",
"interest": "Korko",
"interest_period": "korkojakso",
"liability_type": "Vastuutyyppi",
"liability_direction": "(list.liability_direction)",
"currentBalance": "T\u00e4m\u00e4nhetkinen saldo",
"next_expected_match": "Seuraava lasku odotettavissa"
},
"config": {
"html_language": "fi",
"week_in_year_fns": "'Week' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Votre navigateur signale le fuseau horaire \"{local}\". Firefly III est configur\u00e9 pour le fuseau horaire \"{system}\". Ce graphique peut \u00eatre d\u00e9cal\u00e9.",
"stored_new_account_js": "Nouveau compte \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" enregistr\u00e9 !",
"account_type_Debt": "Dette",
"delete": "Supprimer",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_mortgage)",
"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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "Tirelire",
"percentage": "pct.",
"amount": "Montant",
"lastActivity": "Activit\u00e9 r\u00e9cente",
"name": "Nom",
"role": "R\u00f4le",
"iban": "Num\u00e9ro IBAN",
"interest": "Int\u00e9r\u00eat",
"interest_period": "p\u00e9riode d\u2019int\u00e9r\u00eat",
"liability_type": "Type de passif",
"liability_direction": "(list.liability_direction)",
"currentBalance": "Solde courant",
"next_expected_match": "Prochaine association attendue"
},
"config": {
"html_language": "fr",
"week_in_year_fns": "'Semaine' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Your browser reports time zone \"{local}\". Firefly III is configured for time zone \"{system}\". This chart may drift.",
"stored_new_account_js": "New account \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" stored!",
"account_type_Debt": "Ad\u00f3ss\u00e1g",
"delete": "T\u00f6rl\u00e9s",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "Malacpersely",
"percentage": "%",
"amount": "\u00d6sszeg",
"lastActivity": "Utols\u00f3 aktivit\u00e1s",
"name": "N\u00e9v",
"role": "Szerepk\u00f6r",
"iban": "IBAN",
"interest": "Kamat",
"interest_period": "kamatperi\u00f3dus",
"liability_type": "A k\u00f6telezetts\u00e9g t\u00edpusa",
"liability_direction": "(list.liability_direction)",
"currentBalance": "Aktu\u00e1lis egyenleg",
"next_expected_match": "K\u00f6vetkez\u0151 v\u00e1rhat\u00f3 egyez\u00e9s"
},
"config": {
"html_language": "hu",
"week_in_year_fns": "'Week' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Il browser segnala \"{local}\" come fuso orario. Firefly III \u00e8 configurato con il fuso orario \"{system}\". Questo grafico potrebbe non \u00e8 essere corretto.",
"stored_new_account_js": "Nuovo conto \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" salvato!",
"account_type_Debt": "Debito",
"delete": "Elimina",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_mortgage)",
"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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "Salvadanaio",
"percentage": "perc.",
"amount": "Importo",
"lastActivity": "Ultima attivit\u00e0",
"name": "Nome",
"role": "Ruolo",
"iban": "IBAN",
"interest": "Interesse",
"interest_period": "periodo di interesse",
"liability_type": "Tipo di passivit\u00e0",
"liability_direction": "(list.liability_direction)",
"currentBalance": "Saldo corrente",
"next_expected_match": "Prossimo abbinamento previsto"
},
"config": {
"html_language": "it",
"week_in_year_fns": "'Settimana' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Your browser reports time zone \"{local}\". Firefly III is configured for time zone \"{system}\". This chart may drift.",
"stored_new_account_js": "New account \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" stored!",
"account_type_Debt": "Gjeld",
"delete": "Slett",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "Sparegris",
"percentage": "pct.",
"amount": "Bel\u00f8p",
"lastActivity": "Siste aktivitet",
"name": "Navn",
"role": "Rolle",
"iban": "IBAN",
"interest": "Renter",
"interest_period": "renteperiode",
"liability_type": "Type gjeld",
"liability_direction": "(list.liability_direction)",
"currentBalance": "N\u00e5v\u00e6rende saldo",
"next_expected_match": "Neste forventede treff"
},
"config": {
"html_language": "nb",
"week_in_year_fns": "'Week' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Je browser is in tijdzone \"{local}\". Firefly III is in tijdzone \"{system}\". Deze grafiek kan afwijken.",
"stored_new_account_js": "Nieuwe account \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" opgeslagen!",
"account_type_Debt": "Schuld",
"delete": "Verwijder",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_mortgage)",
"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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "Spaarpotje",
"percentage": "pct",
"amount": "Bedrag",
"lastActivity": "Laatste activiteit",
"name": "Naam",
"role": "Rol",
"iban": "IBAN",
"interest": "Rente",
"interest_period": "renteperiode",
"liability_type": "Type passiva",
"liability_direction": "(list.liability_direction)",
"currentBalance": "Huidig saldo",
"next_expected_match": "Volgende verwachte match"
},
"config": {
"html_language": "nl",
"week_in_year_fns": "'Week' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Twoja przegl\u0105darka raportuje stref\u0119 czasow\u0105 \"{local}\". Firefly III ma skonfigurowan\u0105 stref\u0119 czasow\u0105 \"{system}\". W zwi\u0105zku z t\u0105 r\u00f3\u017cnic\u0105, ten wykres mo\u017ce pokazywa\u0107 inne dane, ni\u017c oczekujesz.",
"stored_new_account_js": "Nowe konto \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" zapisane!",
"account_type_Debt": "D\u0142ug",
"delete": "Usu\u0144",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_mortgage)",
"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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "Skarbonka",
"percentage": "%",
"amount": "Kwota",
"lastActivity": "Ostatnia aktywno\u015b\u0107",
"name": "Nazwa",
"role": "Rola",
"iban": "IBAN",
"interest": "Odsetki",
"interest_period": "okres odsetkowy",
"liability_type": "Rodzaj zobowi\u0105zania",
"liability_direction": "(list.liability_direction)",
"currentBalance": "Bie\u017c\u0105ce saldo",
"next_expected_match": "Nast\u0119pne oczekiwane dopasowanie"
},
"config": {
"html_language": "pl",
"week_in_year_fns": "w 'tydzie\u0144' yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "Q 'kwarta\u0142' yyyy",
"half_year_fns": "'{half} po\u0142owa' yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Seu navegador reporta o fuso hor\u00e1rio \"{local}\". O Firefly III est\u00e1 configurado para o fuso hor\u00e1rio \"{system}\". Este gr\u00e1fico pode variar.",
"stored_new_account_js": "Nova conta \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" armazenada!",
"account_type_Debt": "D\u00edvida",
"delete": "Apagar",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_mortgage)",
"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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "Cofrinho",
"percentage": "pct.",
"amount": "Total",
"lastActivity": "\u00daltima atividade",
"name": "Nome",
"role": "Papel",
"iban": "IBAN",
"interest": "Juros",
"interest_period": "per\u00edodo de juros",
"liability_type": "Tipo de passivo",
"liability_direction": "(list.liability_direction)",
"currentBalance": "Saldo atual",
"next_expected_match": "Pr\u00f3ximo correspondente esperado"
},
"config": {
"html_language": "pt-br",
"week_in_year_fns": "'Semana' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'T'Q, yyyy",
"half_year_fns": "'S{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Seu navegador de Internet reporta o fuso hor\u00e1rio \"{local}\". O Firefly III est\u00e1 configurado para o fuso hor\u00e1rio \"{system}\". Esta tabela pode derivar.",
"stored_new_account_js": "Nova conta \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" armazenada!",
"account_type_Debt": "Debito",
"delete": "Apagar",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_mortgage)",
"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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "Mealheiro",
"percentage": "%.",
"amount": "Montante",
"lastActivity": "Ultima actividade",
"name": "Nome",
"role": "Regra",
"iban": "IBAN",
"interest": "Juro",
"interest_period": "periodo de juros",
"liability_type": "Tipo de responsabilidade",
"liability_direction": "(list.liability_direction)",
"currentBalance": "Saldo actual",
"next_expected_match": "Proxima correspondencia esperada"
},
"config": {
"html_language": "pt",
"week_in_year_fns": "'Semana' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Trimestre' Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Browser-ul raporteaz\u0103 fusul orar \"{local}\". Firefly III este configurat pentru fusul orar \"{system}\". Acest grafic poate s\u0103 dispar\u0103.",
"stored_new_account_js": "Cont nou \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" stocat!",
"account_type_Debt": "Datorie",
"delete": "\u0218terge",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "Pu\u0219culi\u021b\u0103",
"percentage": "procent %",
"amount": "Sum\u0103",
"lastActivity": "Ultima activitate",
"name": "Nume",
"role": "Rol",
"iban": "IBAN",
"interest": "Interes",
"interest_period": "perioad\u0103 de interes",
"liability_type": "Tip de provizion",
"liability_direction": "(list.liability_direction)",
"currentBalance": "Sold curent",
"next_expected_match": "Urm\u0103toarea potrivire a\u0219teptat\u0103"
},
"config": {
"html_language": "ro",
"week_in_year_fns": "'S\u0103pt\u0103m\u00e2n\u0103' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Your browser reports time zone \"{local}\". Firefly III is configured for time zone \"{system}\". This chart may drift.",
"stored_new_account_js": "New account \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" stored!",
"account_type_Debt": "\u0414\u0435\u0431\u0438\u0442",
"delete": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_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)"
},
@@ -134,15 +142,21 @@
"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",
"iban": "IBAN",
"interest": "\u041f\u0440\u043e\u0446\u0435\u043d\u0442\u043d\u0430\u044f \u0441\u0442\u0430\u0432\u043a\u0430",
"interest_period": "\u043f\u0435\u0440\u0438\u043e\u0434 \u043d\u0430\u0447\u0438\u0441\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u043e\u0432",
"liability_type": "\u0422\u0438\u043f \u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438",
"liability_direction": "(list.liability_direction)",
"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"
},
"config": {
"html_language": "ru",
"week_in_year_fns": "'Week' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "V\u00e1\u0161 prehliada\u010d je nastaven\u00fd na \u010dasov\u00fa z\u00f3nu \"{local}\". Firefly III je nakonfigurovan\u00fd na z\u00f3nu \"{system}\". Zobrazenie \u00fadajov v grafe m\u00f4\u017ee by\u0165 posunut\u00e9.",
"stored_new_account_js": "Nov\u00fd \u00fa\u010det \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" vytvoren\u00fd!",
"account_type_Debt": "Dlh",
"delete": "Odstr\u00e1ni\u0165",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "Pokladni\u010dka",
"percentage": "perc.",
"amount": "Suma",
"lastActivity": "Posledn\u00e1 aktivita",
"name": "Meno\/N\u00e1zov",
"role": "Rola",
"iban": "IBAN",
"interest": "\u00darok",
"interest_period": "\u00farokov\u00e9 obdobie",
"liability_type": "Typ z\u00e1v\u00e4zku",
"liability_direction": "(list.liability_direction)",
"currentBalance": "Aktu\u00e1lny zostatok",
"next_expected_match": "\u010eal\u0161ia o\u010dak\u00e1van\u00e1 zhoda"
},
"config": {
"html_language": "sk",
"week_in_year_fns": "'T\u00fd\u017ede\u0148' tt, rrrr",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, rrrr",
"half_year_fns": "'H{half}', rrrr"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Din webbl\u00e4sare rapporterar tidszonen \"{local}\". Firefly III \u00e4r konfigurerad f\u00f6r tidszonen \"{system}\". Detta diagram kan glida.",
"stored_new_account_js": "Nytt konto \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" lagrat!",
"account_type_Debt": "Skuld",
"delete": "Ta bort",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_mortgage)",
"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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "Spargris",
"percentage": "procent",
"amount": "Belopp",
"lastActivity": "Senaste aktivitet",
"name": "Namn",
"role": "Roll",
"iban": "IBAN",
"interest": "R\u00e4nta",
"interest_period": "r\u00e4nteperiod",
"liability_type": "Typ av ansvar",
"liability_direction": "(list.liability_direction)",
"currentBalance": "Nuvarande saldo",
"next_expected_match": "N\u00e4sta f\u00f6rv\u00e4ntade tr\u00e4ff"
},
"config": {
"html_language": "sv",
"week_in_year_fns": "'Vecka' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'kvartal'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Your browser reports time zone \"{local}\". Firefly III is configured for time zone \"{system}\". This chart may drift.",
"stored_new_account_js": "New account \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" stored!",
"account_type_Debt": "M\u00f3n n\u1ee3",
"delete": "X\u00f3a",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_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)"
},
@@ -134,15 +142,21 @@
"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",
"iban": "IBAN",
"interest": "L\u00e3i",
"interest_period": "Chu k\u1ef3 l\u00e3i",
"liability_type": "Lo\u1ea1i tr\u00e1ch nhi\u1ec7m ph\u00e1p l\u00fd",
"liability_direction": "(list.liability_direction)",
"currentBalance": "S\u1ed1 d\u01b0 hi\u1ec7n t\u1ea1i",
"next_expected_match": "Tr\u1eadn \u0111\u1ea5u d\u1ef1 ki\u1ebfn ti\u1ebfp theo"
},
"config": {
"html_language": "vi",
"week_in_year_fns": "'Week' w, yyyy",
"week_in_year_fns": "'Tu\u1ea7n' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Your browser reports time zone \"{local}\". Firefly III is configured for time zone \"{system}\". This chart may drift.",
"stored_new_account_js": "New account \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" stored!",
"account_type_Debt": "\u6b20\u6b3e",
"delete": "\u5220\u9664",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "\u5b58\u94b1\u7f50",
"percentage": "%",
"amount": "\u91d1\u989d",
"lastActivity": "\u4e0a\u6b21\u6d3b\u52a8",
"name": "\u540d\u79f0",
"role": "\u89d2\u8272",
"iban": "\u56fd\u9645\u94f6\u884c\u8d26\u6237\u53f7\u7801\uff08IBAN\uff09",
"interest": "\u5229\u606f",
"interest_period": "\u5229\u606f\u671f",
"liability_type": "\u503a\u52a1\u7c7b\u578b",
"liability_direction": "(list.liability_direction)",
"currentBalance": "\u76ee\u524d\u4f59\u989d",
"next_expected_match": "\u9884\u671f\u4e0b\u6b21\u652f\u4ed8"
},
"config": {
"html_language": "zh-cn",
"week_in_year_fns": "'\u5468' w\uff0cyyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -106,10 +106,12 @@
"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",
"timezone_difference": "Your browser reports time zone \"{local}\". Firefly III is configured for time zone \"{system}\". This chart may drift.",
"stored_new_account_js": "New account \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" stored!",
"account_type_Debt": "\u8ca0\u50b5",
"delete": "\u522a\u9664",
@@ -127,6 +129,12 @@
"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": "(firefly.liability_direction_credit_short)",
"liability_direction_debit_short": "(firefly.liability_direction_debit_short)",
"account_type_debt": "(firefly.account_type_debt)",
"account_type_loan": "(firefly.account_type_loan)",
"left_in_debt": "(firefly.left_in_debt)",
"account_type_mortgage": "(firefly.account_type_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)"
},
@@ -134,15 +142,21 @@
"piggy_bank": "\u5c0f\u8c6c\u64b2\u6eff",
"percentage": "pct.",
"amount": "\u91d1\u984d",
"lastActivity": "\u4e0a\u6b21\u6d3b\u52d5",
"name": "\u540d\u7a31",
"role": "\u89d2\u8272",
"iban": "\u570b\u969b\u9280\u884c\u5e33\u6236\u865f\u78bc (IBAN)",
"interest": "\u5229\u7387",
"interest_period": "\u5229\u7387\u671f",
"liability_type": "\u8ca0\u50b5\u985e\u578b",
"liability_direction": "(list.liability_direction)",
"currentBalance": "\u76ee\u524d\u9918\u984d",
"next_expected_match": "\u4e0b\u4e00\u500b\u9810\u671f\u7684\u914d\u5c0d"
},
"config": {
"html_language": "zh-tw",
"week_in_year_fns": "'Week' w, yyyy",
"month_and_day_fns": "(config.month_and_day_fns)",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -9,25 +9,25 @@
dependencies:
"@babel/highlight" "^7.12.13"
"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.13.15", "@babel/compat-data@^7.13.8":
version "7.13.15"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.13.15.tgz#7e8eea42d0b64fda2b375b22d06c605222e848f4"
integrity sha512-ltnibHKR1VnrU4ymHyQ/CXtNXI6yZC0oJThyW78Hft8XndANwi+9H+UIklBDraIjFEJzw8wmcM427oDd9KS5wA==
"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.13.15", "@babel/compat-data@^7.13.8", "@babel/compat-data@^7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.0.tgz#a901128bce2ad02565df95e6ecbf195cf9465919"
integrity sha512-vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q==
"@babel/core@^7.12.3":
version "7.13.16"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.13.16.tgz#7756ab24396cc9675f1c3fcd5b79fcce192ea96a"
integrity sha512-sXHpixBiWWFti0AV2Zq7avpTasr6sIAu7Y396c608541qAU2ui4a193m0KSQmfPSKFZLnQ3cvlKDOm3XkuXm3Q==
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.0.tgz#47299ff3ec8d111b493f1a9d04bf88c04e728d88"
integrity sha512-8YqpRig5NmIHlMLw09zMlPTvUVMILjqCOtVgu+TVNWEBvy9b5I3RRyhqnrV4hjgEK7n8P9OqvkWJAFmEL6Wwfw==
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/generator" "^7.13.16"
"@babel/generator" "^7.14.0"
"@babel/helper-compilation-targets" "^7.13.16"
"@babel/helper-module-transforms" "^7.13.14"
"@babel/helpers" "^7.13.16"
"@babel/parser" "^7.13.16"
"@babel/helper-module-transforms" "^7.14.0"
"@babel/helpers" "^7.14.0"
"@babel/parser" "^7.14.0"
"@babel/template" "^7.12.13"
"@babel/traverse" "^7.13.15"
"@babel/types" "^7.13.16"
"@babel/traverse" "^7.14.0"
"@babel/types" "^7.14.0"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
@@ -35,12 +35,12 @@
semver "^6.3.0"
source-map "^0.5.0"
"@babel/generator@^7.13.16":
version "7.13.16"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.13.16.tgz#0befc287031a201d84cdfc173b46b320ae472d14"
integrity sha512-grBBR75UnKOcUWMp8WoDxNsWCFl//XCK6HWTrBQKTr5SV9f5g0pNOjdyzi/DTBv12S9GnYPInIXQBTky7OXEMg==
"@babel/generator@^7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.0.tgz#0f35d663506c43e4f10898fbda0d752ec75494be"
integrity sha512-C6u00HbmsrNPug6A+CiNl8rEys7TsdcXwg12BHi2ca5rUfAs3+UwZsuDQSXnc+wCElCXMB8gMaJ3YXDdh8fAlg==
dependencies:
"@babel/types" "^7.13.16"
"@babel/types" "^7.14.0"
jsesc "^2.5.1"
source-map "^0.5.0"
@@ -59,7 +59,7 @@
"@babel/helper-explode-assignable-expression" "^7.12.13"
"@babel/types" "^7.12.13"
"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.13", "@babel/helper-compilation-targets@^7.13.16", "@babel/helper-compilation-targets@^7.13.8":
"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.16", "@babel/helper-compilation-targets@^7.13.8":
version "7.13.16"
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz#6e91dccf15e3f43e5556dffe32d860109887563c"
integrity sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA==
@@ -69,15 +69,16 @@
browserslist "^4.14.5"
semver "^6.3.0"
"@babel/helper-create-class-features-plugin@^7.13.0":
version "7.13.11"
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.11.tgz#30d30a005bca2c953f5653fc25091a492177f4f6"
integrity sha512-ays0I7XYq9xbjCSvT+EvysLgfc3tOkwCULHjrnscGT3A9qD4sk3wXnJ3of0MAWsWGjdinFvajHU2smYuqXKMrw==
"@babel/helper-create-class-features-plugin@^7.13.0", "@babel/helper-create-class-features-plugin@^7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.0.tgz#38367d3dab125b12f94273de418f4df23a11a15e"
integrity sha512-6pXDPguA5zC40Y8oI5mqr+jEUpjMJonKvknvA+vD8CYDz5uuXEwWBK8sRAsE/t3gfb1k15AQb9RhwpscC4nUJQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.12.13"
"@babel/helper-function-name" "^7.12.13"
"@babel/helper-member-expression-to-functions" "^7.13.0"
"@babel/helper-member-expression-to-functions" "^7.13.12"
"@babel/helper-optimise-call-expression" "^7.12.13"
"@babel/helper-replace-supers" "^7.13.0"
"@babel/helper-replace-supers" "^7.13.12"
"@babel/helper-split-export-declaration" "^7.12.13"
"@babel/helper-create-regexp-features-plugin@^7.12.13":
@@ -133,7 +134,7 @@
"@babel/traverse" "^7.13.15"
"@babel/types" "^7.13.16"
"@babel/helper-member-expression-to-functions@^7.13.0", "@babel/helper-member-expression-to-functions@^7.13.12":
"@babel/helper-member-expression-to-functions@^7.13.12":
version "7.13.12"
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz#dfe368f26d426a07299d8d6513821768216e6d72"
integrity sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==
@@ -147,19 +148,19 @@
dependencies:
"@babel/types" "^7.13.12"
"@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.13.14":
version "7.13.14"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.13.14.tgz#e600652ba48ccb1641775413cb32cfa4e8b495ef"
integrity sha512-QuU/OJ0iAOSIatyVZmfqB0lbkVP0kDRiKj34xy+QNsnVZi/PA6BoSoreeqnxxa9EHFAIL0R9XOaAR/G9WlIy5g==
"@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.0.tgz#8fcf78be220156f22633ee204ea81f73f826a8ad"
integrity sha512-L40t9bxIuGOfpIGA3HNkJhU9qYrf4y5A5LUSw7rGMSn+pcG8dfJ0g6Zval6YJGd2nEjI7oP00fRdnhLKndx6bw==
dependencies:
"@babel/helper-module-imports" "^7.13.12"
"@babel/helper-replace-supers" "^7.13.12"
"@babel/helper-simple-access" "^7.13.12"
"@babel/helper-split-export-declaration" "^7.12.13"
"@babel/helper-validator-identifier" "^7.12.11"
"@babel/helper-validator-identifier" "^7.14.0"
"@babel/template" "^7.12.13"
"@babel/traverse" "^7.13.13"
"@babel/types" "^7.13.14"
"@babel/traverse" "^7.14.0"
"@babel/types" "^7.14.0"
"@babel/helper-optimise-call-expression@^7.12.13":
version "7.12.13"
@@ -192,7 +193,7 @@
"@babel/traverse" "^7.13.0"
"@babel/types" "^7.13.12"
"@babel/helper-simple-access@^7.12.13", "@babel/helper-simple-access@^7.13.12":
"@babel/helper-simple-access@^7.13.12":
version "7.13.12"
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz#dd6c538afb61819d205a012c31792a39c7a5eaf6"
integrity sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==
@@ -213,10 +214,10 @@
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-validator-identifier@^7.12.11":
version "7.12.11"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed"
integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==
"@babel/helper-validator-identifier@^7.12.11", "@babel/helper-validator-identifier@^7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz#d26cad8a47c65286b15df1547319a5d0bcf27288"
integrity sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==
"@babel/helper-validator-option@^7.12.17":
version "7.12.17"
@@ -233,28 +234,28 @@
"@babel/traverse" "^7.13.0"
"@babel/types" "^7.13.0"
"@babel/helpers@^7.13.16":
version "7.13.17"
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.13.17.tgz#b497c7a00e9719d5b613b8982bda6ed3ee94caf6"
integrity sha512-Eal4Gce4kGijo1/TGJdqp3WuhllaMLSrW6XcL0ulyUAQOuxHcCafZE8KHg9857gcTehsm/v7RcOx2+jp0Ryjsg==
"@babel/helpers@^7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.0.tgz#ea9b6be9478a13d6f961dbb5f36bf75e2f3b8f62"
integrity sha512-+ufuXprtQ1D1iZTO/K9+EBRn+qPWMJjZSw/S0KlFrxCw4tkrzv9grgpDHkY9MeQTjTY8i2sp7Jep8DfU6tN9Mg==
dependencies:
"@babel/template" "^7.12.13"
"@babel/traverse" "^7.13.17"
"@babel/types" "^7.13.17"
"@babel/traverse" "^7.14.0"
"@babel/types" "^7.14.0"
"@babel/highlight@^7.12.13":
version "7.13.10"
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.13.10.tgz#a8b2a66148f5b27d666b15d81774347a731d52d1"
integrity sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.0.tgz#3197e375711ef6bf834e67d0daec88e4f46113cf"
integrity sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==
dependencies:
"@babel/helper-validator-identifier" "^7.12.11"
"@babel/helper-validator-identifier" "^7.14.0"
chalk "^2.0.0"
js-tokens "^4.0.0"
"@babel/parser@^7.1.0", "@babel/parser@^7.12.13", "@babel/parser@^7.13.16":
version "7.13.16"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.16.tgz#0f18179b0448e6939b1f3f5c4c355a3a9bcdfd37"
integrity sha512-6bAg36mCwuqLO0hbR+z7PHuqWiCeP7Dzg73OpQwsAB1Eb8HnGEz5xYBzCfbu+YjoaJsJs+qheDxVAuqbt3ILEw==
"@babel/parser@^7.1.0", "@babel/parser@^7.12.13", "@babel/parser@^7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.0.tgz#2f0ebfed92bcddcc8395b91f1895191ce2760380"
integrity sha512-AHbfoxesfBALg33idaTBVUkLnfXtsgvJREf93p4p0Lwsz4ppfE7g1tpEXVm4vrxUcH4DVhAa9Z1m1zqf9WUC7Q==
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.13.12":
version "7.13.12"
@@ -282,6 +283,14 @@
"@babel/helper-create-class-features-plugin" "^7.13.0"
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-proposal-class-static-block@^7.13.11":
version "7.13.11"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.13.11.tgz#6fcbba4a962702c17e5371a0c7b39afde186d703"
integrity sha512-fJTdFI4bfnMjvxJyNuaf8i9mVcZ0UhetaGEUHaHV9KEnibLugJkZAtXikR8KcYj+NYmI4DZMS8yQAyg+hvfSqg==
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-syntax-class-static-block" "^7.12.13"
"@babel/plugin-proposal-dynamic-import@^7.13.8":
version "7.13.8"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz#876a1f6966e1dec332e8c9451afda3bebcdf2e1d"
@@ -366,6 +375,16 @@
"@babel/helper-create-class-features-plugin" "^7.13.0"
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-proposal-private-property-in-object@^7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.0.tgz#b1a1f2030586b9d3489cc26179d2eb5883277636"
integrity sha512-59ANdmEwwRUkLjB7CRtwJxxwtjESw+X2IePItA+RGQh+oy5RmpCh/EvVVvh5XQc3yxsm5gtv0+i9oBZhaDNVTg==
dependencies:
"@babel/helper-annotate-as-pure" "^7.12.13"
"@babel/helper-create-class-features-plugin" "^7.14.0"
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-syntax-private-property-in-object" "^7.14.0"
"@babel/plugin-proposal-unicode-property-regex@^7.12.13", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
version "7.12.13"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz#bebde51339be829c17aaaaced18641deb62b39ba"
@@ -388,6 +407,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-syntax-class-static-block@^7.12.13":
version "7.12.13"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.12.13.tgz#8e3d674b0613e67975ceac2776c97b60cafc5c9c"
integrity sha512-ZmKQ0ZXR0nYpHZIIuj9zE7oIqCx2hw9TKi+lIo73NNrMPAZGHfS92/VRV0ZmPj6H2ffBgyFHXvJ5NYsNeEaP2A==
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@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"
@@ -451,6 +477,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-private-property-in-object@^7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.0.tgz#762a4babec61176fec6c88480dec40372b140c0b"
integrity sha512-bda3xF8wGl5/5btF794utNOL0Jw+9jE5C1sLZcoK7c4uonE/y3iQiyG+KbkF3WBV/paX58VCpjhxLPkdj5Fe4w==
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-syntax-top-level-await@^7.12.13":
version "7.12.13"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz#c5f0fa6e249f5b739727f923540cf7a806130178"
@@ -481,7 +514,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-transform-block-scoping@^7.12.13":
"@babel/plugin-transform-block-scoping@^7.13.16":
version "7.13.16"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.13.16.tgz#a9c0f10794855c63b1d629914c7dcfeddd185892"
integrity sha512-ad3PHUxGnfWF4Efd3qFuznEtZKoBp0spS+DgqzVzRPV7urEBvPLue3y2j80w4Jf2YLzZHj8TOv/Lmvdmh3b2xg==
@@ -508,7 +541,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-transform-destructuring@^7.13.0":
"@babel/plugin-transform-destructuring@^7.13.17":
version "7.13.17"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.17.tgz#678d96576638c19d5b36b332504d3fd6e06dea27"
integrity sha512-UAUqiLv+uRLO+xuBKKMEpC+t7YRNVRqBsWWq1yKXbBZBje/t3IXCiSinZhjn/DC3qzBfICeYd2EFGEbHsh5RLA==
@@ -567,23 +600,23 @@
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-transform-modules-amd@^7.13.0":
version "7.13.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz#19f511d60e3d8753cc5a6d4e775d3a5184866cc3"
integrity sha512-EKy/E2NHhY/6Vw5d1k3rgoobftcNUmp9fGjb9XZwQLtTctsRBOTRO7RHHxfIky1ogMN5BxN7p9uMA3SzPfotMQ==
"@babel/plugin-transform-modules-amd@^7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.0.tgz#589494b5b290ff76cf7f59c798011f6d77026553"
integrity sha512-CF4c5LX4LQ03LebQxJ5JZes2OYjzBuk1TdiF7cG7d5dK4lAdw9NZmaxq5K/mouUdNeqwz3TNjnW6v01UqUNgpQ==
dependencies:
"@babel/helper-module-transforms" "^7.13.0"
"@babel/helper-module-transforms" "^7.14.0"
"@babel/helper-plugin-utils" "^7.13.0"
babel-plugin-dynamic-import-node "^2.3.3"
"@babel/plugin-transform-modules-commonjs@^7.13.8":
version "7.13.8"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz#7b01ad7c2dcf2275b06fa1781e00d13d420b3e1b"
integrity sha512-9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw==
"@babel/plugin-transform-modules-commonjs@^7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.0.tgz#52bc199cb581e0992edba0f0f80356467587f161"
integrity sha512-EX4QePlsTaRZQmw9BsoPeyh5OCtRGIhwfLquhxGp5e32w+dyL8htOcDwamlitmNFK6xBZYlygjdye9dbd9rUlQ==
dependencies:
"@babel/helper-module-transforms" "^7.13.0"
"@babel/helper-module-transforms" "^7.14.0"
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/helper-simple-access" "^7.12.13"
"@babel/helper-simple-access" "^7.13.12"
babel-plugin-dynamic-import-node "^2.3.3"
"@babel/plugin-transform-modules-systemjs@^7.13.8":
@@ -597,12 +630,12 @@
"@babel/helper-validator-identifier" "^7.12.11"
babel-plugin-dynamic-import-node "^2.3.3"
"@babel/plugin-transform-modules-umd@^7.13.0":
version "7.13.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz#8a3d96a97d199705b9fd021580082af81c06e70b"
integrity sha512-D/ILzAh6uyvkWjKKyFE/W0FzWwasv6vPTSqPcjxFqn6QpX3u8DjRVliq4F2BamO2Wee/om06Vyy+vPkNrd4wxw==
"@babel/plugin-transform-modules-umd@^7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.0.tgz#2f8179d1bbc9263665ce4a65f305526b2ea8ac34"
integrity sha512-nPZdnWtXXeY7I87UZr9VlsWme3Y0cfFFE41Wbxz4bbaexAjNMInXPFUpRRUJ8NoMm0Cw+zxbqjdPmLhcjfazMw==
dependencies:
"@babel/helper-module-transforms" "^7.13.0"
"@babel/helper-module-transforms" "^7.14.0"
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-transform-named-capturing-groups-regex@^7.12.13":
@@ -719,17 +752,18 @@
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/preset-env@^7.12.1":
version "7.13.15"
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.13.15.tgz#c8a6eb584f96ecba183d3d414a83553a599f478f"
integrity sha512-D4JAPMXcxk69PKe81jRJ21/fP/uYdcTZ3hJDF5QX2HSI9bBxxYw/dumdR6dGumhjxlprHPE4XWoPaqzZUVy2MA==
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.14.0.tgz#236f88cd5da625e625dd40500d4824523f50e6c5"
integrity sha512-GWRCdBv2whxqqaSi7bo/BEXf070G/fWFMEdCnmoRg2CZJy4GK06ovFuEjJrZhDRXYgBsYtxVbG8GUHvw+UWBkQ==
dependencies:
"@babel/compat-data" "^7.13.15"
"@babel/helper-compilation-targets" "^7.13.13"
"@babel/compat-data" "^7.14.0"
"@babel/helper-compilation-targets" "^7.13.16"
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/helper-validator-option" "^7.12.17"
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.13.12"
"@babel/plugin-proposal-async-generator-functions" "^7.13.15"
"@babel/plugin-proposal-class-properties" "^7.13.0"
"@babel/plugin-proposal-class-static-block" "^7.13.11"
"@babel/plugin-proposal-dynamic-import" "^7.13.8"
"@babel/plugin-proposal-export-namespace-from" "^7.12.13"
"@babel/plugin-proposal-json-strings" "^7.13.8"
@@ -740,9 +774,11 @@
"@babel/plugin-proposal-optional-catch-binding" "^7.13.8"
"@babel/plugin-proposal-optional-chaining" "^7.13.12"
"@babel/plugin-proposal-private-methods" "^7.13.0"
"@babel/plugin-proposal-private-property-in-object" "^7.14.0"
"@babel/plugin-proposal-unicode-property-regex" "^7.12.13"
"@babel/plugin-syntax-async-generators" "^7.8.4"
"@babel/plugin-syntax-class-properties" "^7.12.13"
"@babel/plugin-syntax-class-static-block" "^7.12.13"
"@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"
@@ -752,14 +788,15 @@
"@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.0"
"@babel/plugin-syntax-top-level-await" "^7.12.13"
"@babel/plugin-transform-arrow-functions" "^7.13.0"
"@babel/plugin-transform-async-to-generator" "^7.13.0"
"@babel/plugin-transform-block-scoped-functions" "^7.12.13"
"@babel/plugin-transform-block-scoping" "^7.12.13"
"@babel/plugin-transform-block-scoping" "^7.13.16"
"@babel/plugin-transform-classes" "^7.13.0"
"@babel/plugin-transform-computed-properties" "^7.13.0"
"@babel/plugin-transform-destructuring" "^7.13.0"
"@babel/plugin-transform-destructuring" "^7.13.17"
"@babel/plugin-transform-dotall-regex" "^7.12.13"
"@babel/plugin-transform-duplicate-keys" "^7.12.13"
"@babel/plugin-transform-exponentiation-operator" "^7.12.13"
@@ -767,10 +804,10 @@
"@babel/plugin-transform-function-name" "^7.12.13"
"@babel/plugin-transform-literals" "^7.12.13"
"@babel/plugin-transform-member-expression-literals" "^7.12.13"
"@babel/plugin-transform-modules-amd" "^7.13.0"
"@babel/plugin-transform-modules-commonjs" "^7.13.8"
"@babel/plugin-transform-modules-amd" "^7.14.0"
"@babel/plugin-transform-modules-commonjs" "^7.14.0"
"@babel/plugin-transform-modules-systemjs" "^7.13.8"
"@babel/plugin-transform-modules-umd" "^7.13.0"
"@babel/plugin-transform-modules-umd" "^7.14.0"
"@babel/plugin-transform-named-capturing-groups-regex" "^7.12.13"
"@babel/plugin-transform-new-target" "^7.12.13"
"@babel/plugin-transform-object-super" "^7.12.13"
@@ -786,7 +823,7 @@
"@babel/plugin-transform-unicode-escapes" "^7.12.13"
"@babel/plugin-transform-unicode-regex" "^7.12.13"
"@babel/preset-modules" "^0.1.4"
"@babel/types" "^7.13.14"
"@babel/types" "^7.14.0"
babel-plugin-polyfill-corejs2 "^0.2.0"
babel-plugin-polyfill-corejs3 "^0.2.0"
babel-plugin-polyfill-regenerator "^0.2.0"
@@ -805,9 +842,9 @@
esutils "^2.0.2"
"@babel/runtime@^7.12.1", "@babel/runtime@^7.8.4":
version "7.13.17"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.13.17.tgz#8966d1fc9593bf848602f0662d6b4d0069e3a7ec"
integrity sha512-NCdgJEelPTSh+FEFylhnP1ylq848l1z9t9N0j1Lfbcw0+KXGjsTvUmkxy+voLLXB5SOKMbLLx4jxYliGrYQseA==
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.0.tgz#46794bc20b612c5f75e62dd071e24dfd95f1cbe6"
integrity sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==
dependencies:
regenerator-runtime "^0.13.4"
@@ -820,26 +857,26 @@
"@babel/parser" "^7.12.13"
"@babel/types" "^7.12.13"
"@babel/traverse@^7.13.0", "@babel/traverse@^7.13.13", "@babel/traverse@^7.13.15", "@babel/traverse@^7.13.17":
version "7.13.17"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.13.17.tgz#c85415e0c7d50ac053d758baec98b28b2ecfeea3"
integrity sha512-BMnZn0R+X6ayqm3C3To7o1j7Q020gWdqdyP50KEoVqaCO2c/Im7sYZSmVgvefp8TTMQ+9CtwuBp0Z1CZ8V3Pvg==
"@babel/traverse@^7.13.0", "@babel/traverse@^7.13.15", "@babel/traverse@^7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.0.tgz#cea0dc8ae7e2b1dec65f512f39f3483e8cc95aef"
integrity sha512-dZ/a371EE5XNhTHomvtuLTUyx6UEoJmYX+DT5zBCQN3McHemsuIaKKYqsc/fs26BEkHs/lBZy0J571LP5z9kQA==
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/generator" "^7.13.16"
"@babel/generator" "^7.14.0"
"@babel/helper-function-name" "^7.12.13"
"@babel/helper-split-export-declaration" "^7.12.13"
"@babel/parser" "^7.13.16"
"@babel/types" "^7.13.17"
"@babel/parser" "^7.14.0"
"@babel/types" "^7.14.0"
debug "^4.1.0"
globals "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.13.14", "@babel/types@^7.13.16", "@babel/types@^7.13.17", "@babel/types@^7.3.0", "@babel/types@^7.4.4":
version "7.13.17"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.13.17.tgz#48010a115c9fba7588b4437dd68c9469012b38b4"
integrity sha512-RawydLgxbOPDlTLJNtoIypwdmAy//uQIzlKt2+iBiJaRlVuI6QLUxVAyWGNfOzp8Yu4L4lLIacoCyTNtpb4wiA==
"@babel/types@^7.0.0", "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.13.16", "@babel/types@^7.14.0", "@babel/types@^7.3.0", "@babel/types@^7.4.4":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.0.tgz#3fc3fc74e0cdad878182e5f66cc6bcab1915a802"
integrity sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==
dependencies:
"@babel/helper-validator-identifier" "^7.12.11"
"@babel/helper-validator-identifier" "^7.14.0"
to-fast-properties "^2.0.0"
"@discoveryjs/json-ext@^0.5.0":
@@ -1050,9 +1087,9 @@
integrity sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA==
"@types/node@*":
version "14.14.41"
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.41.tgz#d0b939d94c1d7bd53d04824af45f1139b8c45615"
integrity sha512-dueRKfaJL4RTtSa7bWeTK1M+VH+Gns73oCgzvYfHZywRCoPSd8EkXBL0mZ9unPTveBn+D9phZBaxuzpwjWkW0g==
version "15.0.1"
resolved "https://registry.yarnpkg.com/@types/node/-/node-15.0.1.tgz#ef34dea0881028d11398be5bf4e856743e3dc35a"
integrity sha512-TMkXt0Ck1y0KKsGr9gJtWGjttxlZnnvDtphxUOSd0bfaR6Q1jle+sPvrzNR1urqYTWMinoKvjKfXUGsumaO1PA==
"@types/parse-glob@*":
version "3.0.29"
@@ -1278,10 +1315,10 @@ acorn@^7.0.0:
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
acorn@^8.0.4:
version "8.2.1"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.2.1.tgz#0d36af126fb6755095879c1dc6fd7edf7d60a5fb"
integrity sha512-z716cpm5TX4uzOzILx8PavOE6C6DKshHDw1aQN52M/yNSqE9s5O8SMfyhCCfCJ3HmTL0NkVOi+8a/55T7YB3bg==
acorn@^8.2.1:
version "8.2.2"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.2.2.tgz#c4574e4fea298d6e6ed4b85ab844b06dd59f26d6"
integrity sha512-VrMS8kxT0e7J1EX0p6rI/E0FbfOVcvBpbIqHThFv+f8YrZIlMfVotYcXKVPmTvPW8sW5miJzfUFrrvthUZg8VQ==
adjust-sourcemap-loader@3.0.0:
version "3.0.0"
@@ -1895,14 +1932,14 @@ browserify-zlib@^0.2.0:
dependencies:
pako "~1.0.5"
browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.16.3, browserslist@^4.16.4:
version "4.16.5"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.5.tgz#952825440bca8913c62d0021334cbe928ef062ae"
integrity sha512-C2HAjrM1AI/djrpAUU/tr4pml1DqLIzJKSLDBXBrNErl9ZCCTXdhwxdJjYc16953+mBWf7Lw+uUJgpgb8cN71A==
browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.16.3, browserslist@^4.16.5:
version "4.16.6"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2"
integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==
dependencies:
caniuse-lite "^1.0.30001214"
caniuse-lite "^1.0.30001219"
colorette "^1.2.2"
electron-to-chromium "^1.3.719"
electron-to-chromium "^1.3.723"
escalade "^3.1.1"
node-releases "^1.1.71"
@@ -2035,10 +2072,10 @@ caniuse-api@^3.0.0:
lodash.memoize "^4.1.2"
lodash.uniq "^4.5.0"
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001196, caniuse-lite@^1.0.30001214:
version "1.0.30001214"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001214.tgz#70f153c78223515c6d37a9fde6cd69250da9d872"
integrity sha512-O2/SCpuaU3eASWVaesQirZv1MSjUNOvmugaD8zNSJqw6Vv5SGwoOpA9LJs3pNPfM745nxqPvfZY3MQKY4AKHYg==
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001196, caniuse-lite@^1.0.30001219:
version "1.0.30001219"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001219.tgz#5bfa5d0519f41f993618bd318f606a4c4c16156b"
integrity sha512-c0yixVG4v9KBc/tQ2rlbB3A/bgBFRvl8h8M4IeUbqCca4gsiCfvtaheUssbnux/Mb66Vjz7x8yYjDgYcNQOhyQ==
chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2:
version "2.4.2"
@@ -2422,11 +2459,11 @@ copy-descriptor@^0.1.0:
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
core-js-compat@^3.9.0, core-js-compat@^3.9.1:
version "3.11.0"
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.11.0.tgz#635683f43480a0b41e3f6be3b1c648dadb8b4390"
integrity sha512-3wsN9YZJohOSDCjVB0GequOyHax8zFiogSX3XWLE28M1Ew7dTU57tgHjIylSBKSIouwmLBp3g61sKMz/q3xEGA==
version "3.11.1"
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.11.1.tgz#57a91e9b02d3bb8cf37f82eceaf44a3d646fa614"
integrity sha512-aZ0e4tmlG/aOBHj92/TuOuZwp6jFvn1WNabU5VOVixzhu5t5Ao+JZkQOPlgNXu6ynwLrwJxklT4Gw1G1VGEh+g==
dependencies:
browserslist "^4.16.4"
browserslist "^4.16.5"
semver "7.0.0"
core-js@^2.4.0:
@@ -2435,9 +2472,9 @@ core-js@^2.4.0:
integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
core-js@^3.6.5:
version "3.11.0"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.11.0.tgz#05dac6aa70c0a4ad842261f8957b961d36eb8926"
integrity sha512-bd79DPpx+1Ilh9+30aT5O1sgpQd4Ttg8oqkqi51ZzhedMM1omD2e6IOF48Z/DzDCZ2svp49tN/3vneTK6ZBkXw==
version "3.11.1"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.11.1.tgz#f920392bf8ed63a0ec8e4e729857bfa3d121c525"
integrity sha512-k93Isqg7e4txZWMGNYwevZL9MiogLk8pd1PtwrmFmi8IBq4GXqUaVW/a33Llt6amSI36uSjd0GWwc9pTT9ALlQ==
core-util-is@~1.0.0:
version "1.0.2"
@@ -2702,18 +2739,18 @@ dash-ast@^1.0.0:
integrity sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA==
datatables.net-autofill-bs4@^2.3.5:
version "2.3.5"
resolved "https://registry.yarnpkg.com/datatables.net-autofill-bs4/-/datatables.net-autofill-bs4-2.3.5.tgz#7f9085c821372b605b6fb2103a5baffa3bf2d594"
integrity sha512-yt6eKZbAvcO24kBAe2cPADmGGZnsc0KgQmjHcWJoou7Gxlmch9q8nftGRYBRSaJIm8fp4fxpD+9KZ6Wb3/pRZg==
version "2.3.6"
resolved "https://registry.yarnpkg.com/datatables.net-autofill-bs4/-/datatables.net-autofill-bs4-2.3.6.tgz#3b45243f5ebdd052e9a0eaa6ce2653d2474bbefd"
integrity sha512-mMS/w9XUdFH/xiyofVulioLtqTS05YfqfDWjqloXetdpeakLdjsNx8gWCSovNA7rJwgt0ebZKl5YAE9UiGtwdQ==
dependencies:
datatables.net-autofill "2.3.5"
datatables.net-autofill "2.3.6"
datatables.net-bs4 "^1.10.15"
jquery ">=1.7"
datatables.net-autofill@2.3.5:
version "2.3.5"
resolved "https://registry.yarnpkg.com/datatables.net-autofill/-/datatables.net-autofill-2.3.5.tgz#06df5242459a24d87d66bb322783a702cd46f16c"
integrity sha512-3pbHGOCVAebAqhBsDZ9FpTBAzFQD6Tb+Ab51akXLsVCr/jr4UMuBlPQZzaVh79eHRtt/3AuNwFlNTkjzBwoBIw==
datatables.net-autofill@2.3.6:
version "2.3.6"
resolved "https://registry.yarnpkg.com/datatables.net-autofill/-/datatables.net-autofill-2.3.6.tgz#b4fcbe79193a87ea466d1b04c7d68a6536722ff1"
integrity sha512-J5BA9Rq1R9BQtYLcBPZgvfEmNrGaAjOhESnuCLhVbSpMKkQO+sdU+Tv9sPy38tRIeWJDI1lkxVqWjgkps5ASXA==
dependencies:
datatables.net "^1.10.15"
jquery ">=1.7"
@@ -3227,10 +3264,10 @@ ekko-lightbox@^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.3.719:
version "1.3.720"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.720.tgz#f5d66df8754d993006b7b2ded15ff7738c58bd94"
integrity sha512-B6zLTxxaOFP4WZm6DrvgRk8kLFYWNhQ5TrHMC0l5WtkMXhU5UbnvWoTfeEwqOruUSlNMhVLfYak7REX6oC5Yfw==
electron-to-chromium@^1.3.723:
version "1.3.725"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.725.tgz#04fc83f9189169aff50f0a00c6b4090b910cba85"
integrity sha512-2BbeAESz7kc6KBzs7WVrMc1BY5waUphk4D4DX5dSQXJhsc3tP5ZFaiyuL0AB7vUKzDYpIeYwTYlEfxyjsGUrhw==
elliptic@^6.5.3:
version "6.5.4"
@@ -3771,9 +3808,9 @@ flot@^4.2.2:
integrity sha512-Strct/A27o0TA25X7Z0pxKhwK4djiP1Kjeqj0tkiqrkRu1qYPqfbp5BYuxEL8CWDNtj85Uc0PnG2E2plo1+VMg==
follow-redirects@^1.0.0, follow-redirects@^1.10.0:
version "1.13.3"
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.3.tgz#e5598ad50174c1bc4e872301e82ac2cd97f90267"
integrity sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA==
version "1.14.0"
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.0.tgz#f5d260f95c5f8c105894491feee5dc8993b402fe"
integrity sha512-0vRwd7RKQBTt+mgu87mtYeofLFZpTas2S9zY+jIeuLJMNvudIgF52nr19q40HOwH5RrhWIPuj9puybzSJiRrVg==
fontkit@^1.8.1:
version "1.8.1"
@@ -4174,9 +4211,9 @@ http-parser-js@>=0.5.1:
integrity sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==
http-proxy-middleware@^1.1.0:
version "1.2.1"
resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-1.2.1.tgz#cd557a809f56eb98ccb2fdb45593625770ea9c78"
integrity sha512-mxqwEC+IOneTLuYz1B7fmLUmXXkVWfcbiXe8LsCctIX12vxfJU1Uj9HJD/G9MwK4HvgEdgKI8NZySM3uheC2JQ==
version "1.3.1"
resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz#43700d6d9eecb7419bf086a128d0f7205d9eb665"
integrity sha512-13eVVDYS4z79w7f1+NPllJtOQFx/FdUW4btIvVRMaRlUY9VGstAbo5MOhLEuUgZFRHn3x50ufn25zkj/boZnEg==
dependencies:
"@types/http-proxy" "^1.17.5"
http-proxy "^1.18.1"
@@ -4475,9 +4512,9 @@ is-color-stop@^1.0.0:
rgba-regex "^1.0.0"
is-core-module@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a"
integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==
version "2.3.0"
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.3.0.tgz#d341652e3408bca69c4671b79a0954a3d349f887"
integrity sha512-xSphU2KG9867tsYdLD4RWQ1VqdFl4HTO9Thf3I/3dLEfr0dbPTWKsuCKrgqMljg4nPE+Gq0VCnzT3gr0CyBmsw==
dependencies:
has "^1.0.3"
@@ -5216,9 +5253,9 @@ mimic-fn@^3.1.0:
integrity sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==
mini-css-extract-plugin@^1.1.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.5.0.tgz#69bee3b273d2d4ee8649a2eb409514b7df744a27"
integrity sha512-SIbuLMv6jsk1FnLIU5OUG/+VMGUprEjM1+o2trOAx8i5KOKMrhyezb1dJ4Ugsykb8Jgq8/w5NEopy6escV9G7g==
version "1.6.0"
resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.0.tgz#b4db2525af2624899ed64a23b0016e0036411893"
integrity sha512-nPFKI7NSy6uONUo9yn2hIfb9vyYvkFu95qki0e21DQ9uaqNKDP15DGpK0KnV6wDroWxPHtExrdEwx/yDQ8nVRw==
dependencies:
loader-utils "^2.0.0"
schema-utils "^3.0.0"
@@ -6176,9 +6213,9 @@ postcss@7.0.21:
supports-color "^6.1.0"
postcss@^8.1.14, postcss@^8.2.10:
version "8.2.12"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.12.tgz#81248a1a87e0f575cc594a99a08207fd1c4addc4"
integrity sha512-BJnGT5+0q2tzvs6oQfnY2NpEJ7rIXNfBnZtQOKCIsweeWXBXeDd5k31UgTdS3d/c02ouspufn37mTaHWkJyzMQ==
version "8.2.13"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.13.tgz#dbe043e26e3c068e45113b1ed6375d2d37e2129f"
integrity sha512-FCE5xLH+hjbzRdpbRb1IMCvPv9yZx2QnDarBEYSN0N0HYk+TcXsEhwdFcFb+SRWOKzKGErhIEbBK2ogyLdTtfQ==
dependencies:
colorette "^1.2.2"
nanoid "^3.1.22"
@@ -6633,9 +6670,9 @@ sass-loader@^11.0.1:
neo-async "^2.6.2"
sass@^1.32.8:
version "1.32.11"
resolved "https://registry.yarnpkg.com/sass/-/sass-1.32.11.tgz#b236b3ea55c76602c2ef2bd0445f0db581baa218"
integrity sha512-O9tRcob/fegUVSIV1ihLLZcftIOh0AF1VpKgusUfLqnb2jQ0GLDwI5ivv1FYWivGv8eZ/AwntTyTzjcHu0c/qw==
version "1.32.12"
resolved "https://registry.yarnpkg.com/sass/-/sass-1.32.12.tgz#a2a47ad0f1c168222db5206444a30c12457abb9f"
integrity sha512-zmXn03k3hN0KaiVTjohgkg98C3UowhL1/VSGdj4/VAAiMKGQOE80PFPxFP2Kyq0OUskPKcY5lImkhBKEHlypJA==
dependencies:
chokidar ">=3.0.0 <4.0.0"
@@ -7216,9 +7253,9 @@ terser@^4.6.3:
source-map-support "~0.5.12"
terser@^5.3.7, terser@^5.5.1:
version "5.6.1"
resolved "https://registry.yarnpkg.com/terser/-/terser-5.6.1.tgz#a48eeac5300c0a09b36854bf90d9c26fb201973c"
integrity sha512-yv9YLFQQ+3ZqgWCUk+pvNJwgUTdlIxUk1WTN+RnaFJe2L7ipG2csPT0ra2XRm7Cs8cxN7QXmK1rFzEwYEQkzXw==
version "5.7.0"
resolved "https://registry.yarnpkg.com/terser/-/terser-5.7.0.tgz#a761eeec206bc87b605ab13029876ead938ae693"
integrity sha512-HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g==
dependencies:
commander "^2.20.0"
source-map "~0.7.2"
@@ -7591,9 +7628,9 @@ vue-hot-reload-api@^2.3.0:
integrity sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==
vue-i18n@^8.24.2:
version "8.24.3"
resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-8.24.3.tgz#2233ae11ec59e8204df58a28fc41afe9754e3b41"
integrity sha512-uKAYzGbwGIJndY7JwhQwIGi1uyvErWkBfFwooOtjcNnIfMbAR49ad5dT/MiykrJ9pCcgvnocFjFsNLtTzyW+rg==
version "8.24.4"
resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-8.24.4.tgz#b158614c1df7db183d9cadddbb73e1d540269492"
integrity sha512-RZE94WUAGxEiBAANxQ0pptbRwDkNKNSXl3fnJslpFOxVMF6UkUtMDSuYGuW2blDrVgweIXVpethOVkYoNNT9xw==
vue-loader@^15.9.5:
version "15.9.6"
@@ -7628,9 +7665,9 @@ vue-template-es2015-compiler@^1.9.0:
integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==
vue-typeahead-bootstrap@^2.8.0:
version "2.11.0"
resolved "https://registry.yarnpkg.com/vue-typeahead-bootstrap/-/vue-typeahead-bootstrap-2.11.0.tgz#075efef9a69206836520f01f796936026fc49281"
integrity sha512-BLwO8c7xkivqVQlx36c84kz+zfuXnhHDlnGhgxI75RRtNFp7DKQQn+5Xf5dV5mEvpOM9af49ajBffDddKAX1IQ==
version "2.11.1"
resolved "https://registry.yarnpkg.com/vue-typeahead-bootstrap/-/vue-typeahead-bootstrap-2.11.1.tgz#62478c6c497254725942696bf57a37138eae7b37"
integrity sha512-2gHzFFbSnpEhRSkqEF1Xjj8N9kZyzRZxQZUIzYVg4p+Bv5IzwlLDL2MDqDaZLNbs5WUecUeHvCnFgzXtvuq3AA==
dependencies:
lodash "^4.17.20"
resize-observer-polyfill "^1.5.0"
@@ -7764,16 +7801,16 @@ webpack-sources@^2.1.1:
source-map "^0.6.1"
webpack@^5.25.1, webpack@^5.30.0:
version "5.35.1"
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.35.1.tgz#857670799465c8a5cbb94c4c175d60ac42d18ba3"
integrity sha512-uWKYStqJ23+N6/EnMEwUjPSSKUG1tFmcuKhALEh/QXoUxwN8eb3ATNIZB38A+fO6QZ0xfc7Cu7KNV9LXNhDCsw==
version "5.36.2"
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.36.2.tgz#6ef1fb2453ad52faa61e78d486d353d07cca8a0f"
integrity sha512-XJumVnnGoH2dV+Pk1VwgY4YT6AiMKpVoudUFCNOXMIVrEKPUgEwdIfWPjIuGLESAiS8EdIHX5+TiJz/5JccmRg==
dependencies:
"@types/eslint-scope" "^3.7.0"
"@types/estree" "^0.0.47"
"@webassemblyjs/ast" "1.11.0"
"@webassemblyjs/wasm-edit" "1.11.0"
"@webassemblyjs/wasm-parser" "1.11.0"
acorn "^8.0.4"
acorn "^8.2.1"
browserslist "^4.14.5"
chrome-trace-event "^1.0.2"
enhanced-resolve "^5.8.0"