mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Update frontend.
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"/public/js/dashboard.js": "/public/js/dashboard.js",
|
||||
"/public/js/accounts/index.js": "/public/js/accounts/index.js",
|
||||
"/public/js/accounts/delete.js": "/public/js/accounts/delete.js",
|
||||
"/public/js/accounts/show.js": "/public/js/accounts/show.js",
|
||||
"/public/js/transactions/create.js": "/public/js/transactions/create.js",
|
||||
"/public/js/transactions/edit.js": "/public/js/transactions/edit.js",
|
||||
|
2
frontend/src/app.scss
vendored
2
frontend/src/app.scss
vendored
@@ -63,7 +63,7 @@ $red: #CD5029;
|
||||
@import '~admin-lte/build/scss/modals';
|
||||
//@import '../toasts';
|
||||
@import '~admin-lte/build/scss/buttons';
|
||||
//@import '../callout';
|
||||
@import '~admin-lte/build/scss/callout';
|
||||
@import '~admin-lte/build/scss/alerts';
|
||||
@import '~admin-lte/build/scss/table';
|
||||
//@import '../carousel';
|
||||
|
185
frontend/src/components/accounts/Delete.vue
Normal file
185
frontend/src/components/accounts/Delete.vue
Normal file
@@ -0,0 +1,185 @@
|
||||
<!--
|
||||
- Delete.vue
|
||||
- Copyright (c) 2021 james@firefly-iii.org
|
||||
-
|
||||
- This file is part of Firefly III (https://github.com/firefly-iii).
|
||||
-
|
||||
- This program is free software: you can redistribute it and/or modify
|
||||
- it under the terms of the GNU Affero General Public License as
|
||||
- published by the Free Software Foundation, either version 3 of the
|
||||
- License, or (at your option) any later version.
|
||||
-
|
||||
- This program is distributed in the hope that it will be useful,
|
||||
- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
- GNU Affero General Public License for more details.
|
||||
-
|
||||
- You should have received a copy of the GNU Affero General Public License
|
||||
- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 offset-lg-3">
|
||||
<div class="card card-default card-danger">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">
|
||||
<i class="fas fa-exclamation-triangle"></i>
|
||||
{{ $t('firefly.delete_account') }}
|
||||
</h3>
|
||||
</div>
|
||||
<!-- /.card-header -->
|
||||
<div class="card-body">
|
||||
<div class="callout callout-danger" v-if="!deleting && !deleted">
|
||||
<p>
|
||||
{{ $t('form.permDeleteWarning') }}
|
||||
</p>
|
||||
</div>
|
||||
<p v-if="!loading && !deleting && !deleted">
|
||||
{{ $t('form.account_areYouSure_js', {'name': this.accountName}) }}
|
||||
</p>
|
||||
<p v-if="!loading && !deleting && !deleted">
|
||||
<span v-if="piggyBankCount > 0">
|
||||
{{ $tc('form.also_delete_piggyBanks_js', piggyBankCount, {count: piggyBankCount}) }}
|
||||
</span>
|
||||
<span v-if="transactionCount > 0">
|
||||
{{ $tc('form.also_delete_transactions_js', transactionCount, {count: transactionCount}) }}
|
||||
</span>
|
||||
</p>
|
||||
<p v-if="transactionCount > 0 && !deleting && !deleted">
|
||||
{{ $tc('firefly.save_transactions_by_moving_js', transactionCount) }}
|
||||
</p>
|
||||
<p v-if="transactionCount > 0 && !deleting && !deleted">
|
||||
<select name="account" v-model="moveToAccount" class="form-control">
|
||||
<option :label="$t('firefly.none_in_select_list')" :value="0">{{ $t('firefly.none_in_select_list') }}</option>
|
||||
<option v-for="account in accounts" :label="account.name" :value="account.id">{{ account.name }}</option>
|
||||
</select>
|
||||
</p>
|
||||
|
||||
<p v-if="loading || deleting || deleted" class="text-center">
|
||||
<i class="fas fa-spinner fa-spin"></i>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class="card-footer">
|
||||
<button @click="deleteAccount" class="btn btn-danger float-right" v-if="!loading && !deleting && !deleted"> {{
|
||||
$t('firefly.delete_account')
|
||||
}}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "Delete",
|
||||
data() {
|
||||
return {
|
||||
loading: true,
|
||||
deleting: false,
|
||||
deleted: false,
|
||||
accountId: 0,
|
||||
accountName: '',
|
||||
piggyBankCount: 0,
|
||||
transactionCount: 0,
|
||||
moveToAccount: 0,
|
||||
accounts: []
|
||||
}
|
||||
},
|
||||
created() {
|
||||
let pathName = window.location.pathname;
|
||||
console.log(pathName);
|
||||
let parts = pathName.split('/');
|
||||
this.accountId = parseInt(parts[parts.length - 1]);
|
||||
this.getAccount();
|
||||
},
|
||||
methods: {
|
||||
deleteAccount: function () {
|
||||
this.deleting = true;
|
||||
if (0 === this.moveToAccount) {
|
||||
this.execDeleteAccount();
|
||||
}
|
||||
if (0 !== this.moveToAccount) {
|
||||
// move to another account:
|
||||
this.moveTransactions();
|
||||
}
|
||||
},
|
||||
moveTransactions: function () {
|
||||
axios.post('./api/v1/data/bulk/accounts/transactions', {original_account: this.accountId, destination_account: this.moveToAccount}).then(response => {
|
||||
this.execDeleteAccount();
|
||||
});
|
||||
},
|
||||
execDeleteAccount: function () {
|
||||
axios.delete('./api/v1/accounts/' + this.accountId)
|
||||
.then(response => {
|
||||
this.deleted = true;
|
||||
this.deleting = false;
|
||||
window.location.href = (window.previousURL ?? '/') + '?account_id=' + this.accountId + '&message=deleted';
|
||||
});
|
||||
},
|
||||
getAccount: function () {
|
||||
axios.get('./api/v1/accounts/' + this.accountId)
|
||||
.then(response => {
|
||||
let account = response.data.data;
|
||||
this.accountName = account.attributes.name;
|
||||
// now get piggy and transaction count
|
||||
this.getPiggyBankCount(account.attributes.type, account.attributes.currency_code);
|
||||
}
|
||||
);
|
||||
},
|
||||
getAccounts: function (type, currencyCode) {
|
||||
axios.get('./api/v1/accounts?type=' + type)
|
||||
.then(response => {
|
||||
let accounts = response.data.data;
|
||||
for (let i in accounts) {
|
||||
if (accounts.hasOwnProperty(i) && /^0$|^[1-9]\d*$/.test(i) && i <= 4294967294) {
|
||||
let current = accounts[i];
|
||||
if (false === current.attributes.active) {
|
||||
continue;
|
||||
}
|
||||
if (currencyCode !== current.attributes.currency_code) {
|
||||
continue;
|
||||
}
|
||||
if (this.accountId === parseInt(current.id)) {
|
||||
continue;
|
||||
}
|
||||
this.accounts.push({id: current.id, name: current.attributes.name});
|
||||
}
|
||||
}
|
||||
this.loading = false;
|
||||
}
|
||||
);
|
||||
// get accounts of the same type.
|
||||
console.log('Go for "' + type + '"');
|
||||
},
|
||||
getPiggyBankCount: function (type, currencyCode) {
|
||||
axios.get('./api/v1/accounts/' + this.accountId + '/piggy_banks')
|
||||
.then(response => {
|
||||
this.piggyBankCount = response.data.meta.pagination.total ? parseInt(response.data.meta.pagination.total) : 0;
|
||||
this.getTransactionCount(type, currencyCode);
|
||||
}
|
||||
);
|
||||
},
|
||||
getTransactionCount: function (type, currencyCode) {
|
||||
axios.get('./api/v1/accounts/' + this.accountId + '/transactions')
|
||||
.then(response => {
|
||||
this.transactionCount = response.data.meta.pagination.total ? parseInt(response.data.meta.pagination.total) : 0;
|
||||
if (this.transactionCount > 0) {
|
||||
this.getAccounts(type, currencyCode);
|
||||
}
|
||||
if (0 === this.transactionCount) {
|
||||
this.loading = false;
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
@@ -30,6 +30,7 @@
|
||||
"notes": "\u0411\u0435\u043b\u0435\u0436\u043a\u0438",
|
||||
"yourAccounts": "\u0412\u0430\u0448\u0438\u0442\u0435 \u0441\u043c\u0435\u0442\u043a\u0438",
|
||||
"go_to_asset_accounts": "\u0412\u0438\u0436\u0442\u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0442\u0435 \u0441\u0438",
|
||||
"delete_account": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0444\u0438\u043b",
|
||||
"transaction_table_description": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u0449\u0430 \u0432\u0430\u0448\u0438\u0442\u0435 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
|
||||
"account": "\u0421\u043c\u0435\u0442\u043a\u0430",
|
||||
"description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
|
||||
"edit": "\u041f\u0440\u043e\u043c\u0435\u043d\u0438",
|
||||
"delete": "\u0418\u0437\u0442\u0440\u0438\u0439",
|
||||
"reconcile_this_account": "\u0421\u044a\u0433\u043b\u0430\u0441\u0443\u0432\u0430\u0439 \u0442\u0430\u0437\u0438 \u0441\u043c\u0435\u0442\u043a\u0430"
|
||||
"reconcile_this_account": "\u0421\u044a\u0433\u043b\u0430\u0441\u0443\u0432\u0430\u0439 \u0442\u0430\u0437\u0438 \u0441\u043c\u0435\u0442\u043a\u0430",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "\u041a\u0430\u0441\u0438\u0447\u043a\u0430",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "\u0421\u0443\u043c\u0430 \u0432\u044a\u0432 \u0432\u0430\u043b\u0443\u0442\u0430",
|
||||
"interest_date": "\u041f\u0430\u0434\u0435\u0436 \u043d\u0430 \u043b\u0438\u0445\u0432\u0430",
|
||||
"book_date": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043e\u0441\u0447\u0435\u0442\u043e\u0432\u043e\u0434\u044f\u0432\u0430\u043d\u0435",
|
||||
"permDeleteWarning": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043d\u0435\u0449\u0430 \u043e\u0442 Firefly III \u0435 \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u043e.",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430",
|
||||
"due_date": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043f\u0430\u0434\u0435\u0436",
|
||||
"payment_date": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Pozn\u00e1mky",
|
||||
"yourAccounts": "Va\u0161e \u00fa\u010dty",
|
||||
"go_to_asset_accounts": "Zobrazit \u00fa\u010dty s aktivy",
|
||||
"delete_account": "Smazat \u00fa\u010det",
|
||||
"transaction_table_description": "A table containing your transactions",
|
||||
"account": "\u00da\u010det",
|
||||
"description": "Popis",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "Akce",
|
||||
"edit": "Upravit",
|
||||
"delete": "Odstranit",
|
||||
"reconcile_this_account": "Vy\u00fa\u010dtovat tento \u00fa\u010det"
|
||||
"reconcile_this_account": "Vy\u00fa\u010dtovat tento \u00fa\u010det",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Pokladni\u010dka",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "\u010c\u00e1stka v ciz\u00ed m\u011bn\u011b",
|
||||
"interest_date": "\u00darokov\u00e9 datum",
|
||||
"book_date": "Datum rezervace",
|
||||
"permDeleteWarning": "Odstran\u011bn\u00ed v\u011bc\u00ed z Firefly III je trval\u00e9 a nelze vr\u00e1tit zp\u011bt.",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "Datum zpracov\u00e1n\u00ed",
|
||||
"due_date": "Datum splatnosti",
|
||||
"payment_date": "Datum zaplacen\u00ed",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Notizen",
|
||||
"yourAccounts": "Deine Konten",
|
||||
"go_to_asset_accounts": "Bestandskonten anzeigen",
|
||||
"delete_account": "Konto l\u00f6schen",
|
||||
"transaction_table_description": "Eine Tabelle mit Ihren Buchungen",
|
||||
"account": "Konto",
|
||||
"description": "Beschreibung",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "Aktionen",
|
||||
"edit": "Bearbeiten",
|
||||
"delete": "L\u00f6schen",
|
||||
"reconcile_this_account": "Dieses Konto abgleichen"
|
||||
"reconcile_this_account": "Dieses Konto abgleichen",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Sparschwein",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "Ausl\u00e4ndischer Betrag",
|
||||
"interest_date": "Zinstermin",
|
||||
"book_date": "Buchungsdatum",
|
||||
"permDeleteWarning": "Das L\u00f6schen von Dingen in Firefly III ist dauerhaft und kann nicht r\u00fcckg\u00e4ngig gemacht werden.",
|
||||
"account_areYouSure_js": "M\u00f6chten Sie das Konto \u201e{name}\u201d wirklich l\u00f6schen?",
|
||||
"also_delete_piggyBanks_js": "Keine Sparschweine|Das einzige Sparschwein, welches mit diesem Konto verbunden ist, wird ebenfalls gel\u00f6scht.|Alle {count} Sparschweine, welche mit diesem Konto verbunden sind, werden ebenfalls gel\u00f6scht.",
|
||||
"also_delete_transactions_js": "Keine Buchungen|Die einzige Buchung, die mit diesem Konto verbunden ist, wird ebenfalls gel\u00f6scht.|Alle {count} Buchungen, die mit diesem Konto verbunden sind, werden ebenfalls gel\u00f6scht.",
|
||||
"process_date": "Bearbeitungsdatum",
|
||||
"due_date": "F\u00e4lligkeitstermin",
|
||||
"payment_date": "Zahlungsdatum",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "\u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2",
|
||||
"yourAccounts": "\u039f\u03b9 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03af \u03c3\u03b1\u03c2",
|
||||
"go_to_asset_accounts": "\u0394\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5 \u03c3\u03b1\u03c2",
|
||||
"delete_account": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd",
|
||||
"transaction_table_description": "\u0388\u03bd\u03b1\u03c2 \u03c0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2 \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c3\u03b1\u03c2",
|
||||
"account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2",
|
||||
"description": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "\u0395\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b5\u03c2",
|
||||
"edit": "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1",
|
||||
"delete": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae",
|
||||
"reconcile_this_account": "\u03a4\u03b1\u03ba\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd"
|
||||
"reconcile_this_account": "\u03a4\u03b1\u03ba\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "\u039a\u03bf\u03c5\u03bc\u03c0\u03b1\u03c1\u03ac\u03c2",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "\u03a0\u03bf\u03c3\u03cc \u03c3\u03b5 \u03be\u03ad\u03bd\u03bf \u03bd\u03cc\u03bc\u03b9\u03c3\u03bc\u03b1",
|
||||
"interest_date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c4\u03bf\u03ba\u03b9\u03c3\u03bc\u03bf\u03cd",
|
||||
"book_date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2",
|
||||
"permDeleteWarning": "\u0397 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03c9\u03bd \u03b1\u03c0\u03cc \u03c4\u03bf Firefly III \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03cc\u03bd\u03b9\u03bc\u03b7 \u03ba\u03b1\u03b9 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b9\u03c1\u03b5\u03b8\u03b5\u03af.",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2",
|
||||
"due_date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c0\u03c1\u03bf\u03b8\u03b5\u03c3\u03bc\u03af\u03b1\u03c2",
|
||||
"payment_date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Notes",
|
||||
"yourAccounts": "Your accounts",
|
||||
"go_to_asset_accounts": "View your asset accounts",
|
||||
"delete_account": "Delete account",
|
||||
"transaction_table_description": "A table containing your transactions",
|
||||
"account": "Account",
|
||||
"description": "Description",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "Actions",
|
||||
"edit": "Edit",
|
||||
"delete": "Delete",
|
||||
"reconcile_this_account": "Reconcile this account"
|
||||
"reconcile_this_account": "Reconcile this account",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Piggy bank",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "Foreign amount",
|
||||
"interest_date": "Interest date",
|
||||
"book_date": "Book date",
|
||||
"permDeleteWarning": "Deleting stuff from Firefly III is permanent and cannot be undone.",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "Processing date",
|
||||
"due_date": "Due date",
|
||||
"payment_date": "Payment date",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Notes",
|
||||
"yourAccounts": "Your accounts",
|
||||
"go_to_asset_accounts": "View your asset accounts",
|
||||
"delete_account": "Delete account",
|
||||
"transaction_table_description": "A table containing your transactions",
|
||||
"account": "Account",
|
||||
"description": "Description",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "Actions",
|
||||
"edit": "Edit",
|
||||
"delete": "Delete",
|
||||
"reconcile_this_account": "Reconcile this account"
|
||||
"reconcile_this_account": "Reconcile this account",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Piggy bank",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "Foreign amount",
|
||||
"interest_date": "Interest date",
|
||||
"book_date": "Book date",
|
||||
"permDeleteWarning": "Deleting stuff from Firefly III is permanent and cannot be undone.",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "Processing date",
|
||||
"due_date": "Due date",
|
||||
"payment_date": "Payment date",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Notas",
|
||||
"yourAccounts": "Tus cuentas",
|
||||
"go_to_asset_accounts": "Ver tus cuentas de activos",
|
||||
"delete_account": "Eliminar cuenta",
|
||||
"transaction_table_description": "Una tabla que contiene sus transacciones",
|
||||
"account": "Cuenta",
|
||||
"description": "Descripci\u00f3n",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "Acciones",
|
||||
"edit": "Editar",
|
||||
"delete": "Eliminar",
|
||||
"reconcile_this_account": "Reconciliar esta cuenta"
|
||||
"reconcile_this_account": "Reconciliar esta cuenta",
|
||||
"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": "(ninguno)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Alcancilla",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "Cantidad extranjera",
|
||||
"interest_date": "Fecha de inter\u00e9s",
|
||||
"book_date": "Fecha de registro",
|
||||
"permDeleteWarning": "Eliminar cosas de Firefly III es permanente y no se puede deshacer.",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "Fecha de procesamiento",
|
||||
"due_date": "Fecha de vencimiento",
|
||||
"payment_date": "Fecha de pago",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Muistiinpanot",
|
||||
"yourAccounts": "Omat tilisi",
|
||||
"go_to_asset_accounts": "Tarkastele omaisuustilej\u00e4si",
|
||||
"delete_account": "Poista k\u00e4ytt\u00e4j\u00e4tili",
|
||||
"transaction_table_description": "A table containing your transactions",
|
||||
"account": "Tili",
|
||||
"description": "Kuvaus",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "Toiminnot",
|
||||
"edit": "Muokkaa",
|
||||
"delete": "Poista",
|
||||
"reconcile_this_account": "T\u00e4sm\u00e4yt\u00e4 t\u00e4m\u00e4 tili"
|
||||
"reconcile_this_account": "T\u00e4sm\u00e4yt\u00e4 t\u00e4m\u00e4 tili",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "S\u00e4\u00e4st\u00f6possu",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "Ulkomaan summa",
|
||||
"interest_date": "Korkop\u00e4iv\u00e4",
|
||||
"book_date": "Kirjausp\u00e4iv\u00e4",
|
||||
"permDeleteWarning": "Asioiden poistaminen Firefly III:sta on lopullista eik\u00e4 poistoa pysty perumaan.",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "K\u00e4sittelyp\u00e4iv\u00e4",
|
||||
"due_date": "Er\u00e4p\u00e4iv\u00e4",
|
||||
"payment_date": "Maksup\u00e4iv\u00e4",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Notes",
|
||||
"yourAccounts": "Vos comptes",
|
||||
"go_to_asset_accounts": "Afficher vos comptes d'actifs",
|
||||
"delete_account": "Supprimer le compte",
|
||||
"transaction_table_description": "Une table contenant vos op\u00e9rations",
|
||||
"account": "Compte",
|
||||
"description": "Description",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "Actions",
|
||||
"edit": "Modifier",
|
||||
"delete": "Supprimer",
|
||||
"reconcile_this_account": "Rapprocher ce compte"
|
||||
"reconcile_this_account": "Rapprocher ce compte",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Tirelire",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "Montant en devise \u00e9trang\u00e8re",
|
||||
"interest_date": "Date de valeur (int\u00e9r\u00eats)",
|
||||
"book_date": "Date de r\u00e9servation",
|
||||
"permDeleteWarning": "Supprimer quelque chose dans Firefly est permanent et ne peut pas \u00eatre annul\u00e9.",
|
||||
"account_areYouSure_js": "\u00cates-vous s\u00fbr de vouloir supprimer le compte nomm\u00e9 \"{name}\" ?",
|
||||
"also_delete_piggyBanks_js": "Aucune tirelire|La seule tirelire li\u00e9e \u00e0 ce compte sera aussi supprim\u00e9e.|Les {count} tirelires li\u00e9es \u00e0 ce compte seront aussi supprim\u00e9es.",
|
||||
"also_delete_transactions_js": "Aucune op\u00e9ration|La seule op\u00e9ration li\u00e9e \u00e0 ce compte sera aussi supprim\u00e9e.|Les {count} op\u00e9rations li\u00e9es \u00e0 ce compte seront aussi supprim\u00e9es.",
|
||||
"process_date": "Date de traitement",
|
||||
"due_date": "\u00c9ch\u00e9ance",
|
||||
"payment_date": "Date de paiement",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Megjegyz\u00e9sek",
|
||||
"yourAccounts": "Banksz\u00e1ml\u00e1k",
|
||||
"go_to_asset_accounts": "Eszk\u00f6zsz\u00e1ml\u00e1k megtekint\u00e9se",
|
||||
"delete_account": "Fi\u00f3k t\u00f6rl\u00e9se",
|
||||
"transaction_table_description": "Tranzakci\u00f3kat tartalmaz\u00f3 t\u00e1bl\u00e1zat",
|
||||
"account": "Banksz\u00e1mla",
|
||||
"description": "Le\u00edr\u00e1s",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "M\u0171veletek",
|
||||
"edit": "Szerkeszt\u00e9s",
|
||||
"delete": "T\u00f6rl\u00e9s",
|
||||
"reconcile_this_account": "Sz\u00e1mla egyeztet\u00e9se"
|
||||
"reconcile_this_account": "Sz\u00e1mla egyeztet\u00e9se",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Malacpersely",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "K\u00fclf\u00f6ldi \u00f6sszeg",
|
||||
"interest_date": "Kamatfizet\u00e9si id\u0151pont",
|
||||
"book_date": "K\u00f6nyvel\u00e9s d\u00e1tuma",
|
||||
"permDeleteWarning": "A Firefly III-b\u00f3l t\u00f6rt\u00e9n\u0151 t\u00f6rl\u00e9s v\u00e9gleges \u00e9s nem vonhat\u00f3 vissza.",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "Feldolgoz\u00e1s d\u00e1tuma",
|
||||
"due_date": "Lej\u00e1rati id\u0151pont",
|
||||
"payment_date": "Fizet\u00e9s d\u00e1tuma",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Note",
|
||||
"yourAccounts": "I tuoi conti",
|
||||
"go_to_asset_accounts": "Visualizza i tuoi conti attivit\u00e0",
|
||||
"delete_account": "Elimina account",
|
||||
"transaction_table_description": "Una tabella contenente le tue transazioni",
|
||||
"account": "Conto",
|
||||
"description": "Descrizione",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "Azioni",
|
||||
"edit": "Modifica",
|
||||
"delete": "Elimina",
|
||||
"reconcile_this_account": "Riconcilia questo conto"
|
||||
"reconcile_this_account": "Riconcilia questo conto",
|
||||
"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": "(nessuna)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Salvadanaio",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "Importo estero",
|
||||
"interest_date": "Data di valuta",
|
||||
"book_date": "Data contabile",
|
||||
"permDeleteWarning": "L'eliminazione dei dati da Firefly III \u00e8 definitiva e non pu\u00f2 essere annullata.",
|
||||
"account_areYouSure_js": "Sei sicuro di voler eliminare il conto \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "Nessun salvadanaio|Anche l'unico salvadanaio collegato a questo conto verr\u00e0 eliminato.|Anche tutti i {count} salvadanai collegati a questo conto verranno eliminati.",
|
||||
"also_delete_transactions_js": "Nessuna transazioni|Anche l'unica transazione collegata al conto verr\u00e0 eliminata.|Anche tutte le {count} transazioni collegati a questo conto verranno eliminate.",
|
||||
"process_date": "Data elaborazione",
|
||||
"due_date": "Data scadenza",
|
||||
"payment_date": "Data pagamento",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Notater",
|
||||
"yourAccounts": "Dine kontoer",
|
||||
"go_to_asset_accounts": "Se aktivakontoene dine",
|
||||
"delete_account": "Slett konto",
|
||||
"transaction_table_description": "A table containing your transactions",
|
||||
"account": "Konto",
|
||||
"description": "Beskrivelse",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "Handlinger",
|
||||
"edit": "Rediger",
|
||||
"delete": "Slett",
|
||||
"reconcile_this_account": "Avstem denne kontoen"
|
||||
"reconcile_this_account": "Avstem denne kontoen",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Sparegris",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "Utenlandske bel\u00f8p",
|
||||
"interest_date": "Rentedato",
|
||||
"book_date": "Bokf\u00f8ringsdato",
|
||||
"permDeleteWarning": "Sletting av data fra Firefly III er permanent, og kan ikke angres.",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "Prosesseringsdato",
|
||||
"due_date": "Forfallsdato",
|
||||
"payment_date": "Betalingsdato",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Notities",
|
||||
"yourAccounts": "Je betaalrekeningen",
|
||||
"go_to_asset_accounts": "Bekijk je betaalrekeningen",
|
||||
"delete_account": "Verwijder je account",
|
||||
"transaction_table_description": "Een tabel met je transacties",
|
||||
"account": "Rekening",
|
||||
"description": "Omschrijving",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "Acties",
|
||||
"edit": "Wijzig",
|
||||
"delete": "Verwijder",
|
||||
"reconcile_this_account": "Stem deze rekening af"
|
||||
"reconcile_this_account": "Stem deze rekening af",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Spaarpotje",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "Bedrag in vreemde valuta",
|
||||
"interest_date": "Rentedatum",
|
||||
"book_date": "Boekdatum",
|
||||
"permDeleteWarning": "Dingen verwijderen uit Firefly III is permanent en kan niet ongedaan gemaakt worden.",
|
||||
"account_areYouSure_js": "Weet je zeker dat je de rekening met naam \"{name}\" wilt verwijderen?",
|
||||
"also_delete_piggyBanks_js": "Geen spaarpotjes|Ook het spaarpotje verbonden aan deze rekening wordt verwijderd.|Ook alle {count} spaarpotjes verbonden aan deze rekening worden verwijderd.",
|
||||
"also_delete_transactions_js": "Geen transacties|Ook de enige transactie verbonden aan deze rekening wordt verwijderd.|Ook alle {count} transacties verbonden aan deze rekening worden verwijderd.",
|
||||
"process_date": "Verwerkingsdatum",
|
||||
"due_date": "Vervaldatum",
|
||||
"payment_date": "Betalingsdatum",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Notatki",
|
||||
"yourAccounts": "Twoje konta",
|
||||
"go_to_asset_accounts": "Zobacz swoje konta aktyw\u00f3w",
|
||||
"delete_account": "Usu\u0144 konto",
|
||||
"transaction_table_description": "Tabela zawieraj\u0105ca Twoje transakcje",
|
||||
"account": "Konto",
|
||||
"description": "Opis",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "Akcje",
|
||||
"edit": "Modyfikuj",
|
||||
"delete": "Usu\u0144",
|
||||
"reconcile_this_account": "Uzgodnij to konto"
|
||||
"reconcile_this_account": "Uzgodnij to konto",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Skarbonka",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "Kwota zagraniczna",
|
||||
"interest_date": "Data odsetek",
|
||||
"book_date": "Data ksi\u0119gowania",
|
||||
"permDeleteWarning": "Usuwanie rzeczy z Firefly III jest trwa\u0142e i nie mo\u017cna tego cofn\u0105\u0107.",
|
||||
"account_areYouSure_js": "Czy na pewno chcesz usun\u0105\u0107 konto o nazwie \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "Brak skarbonek|Jedyna skarbonka po\u0142\u0105czona z tym kontem r\u00f3wnie\u017c zostanie usuni\u0119ta.|Wszystkie {count} skarbonki po\u0142\u0105czone z tym kontem zostan\u0105 r\u00f3wnie\u017c usuni\u0119te.",
|
||||
"also_delete_transactions_js": "Brak transakcji|Jedyna transakcja po\u0142\u0105czona z tym kontem r\u00f3wnie\u017c zostanie usuni\u0119ta.|Wszystkie {count} transakcje po\u0142\u0105czone z tym kontem r\u00f3wnie\u017c zostan\u0105 usuni\u0119te.",
|
||||
"process_date": "Data przetworzenia",
|
||||
"due_date": "Termin realizacji",
|
||||
"payment_date": "Data p\u0142atno\u015bci",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Notas",
|
||||
"yourAccounts": "Suas contas",
|
||||
"go_to_asset_accounts": "Veja suas contas ativas",
|
||||
"delete_account": "Apagar conta",
|
||||
"transaction_table_description": "Uma tabela contendo suas transa\u00e7\u00f5es",
|
||||
"account": "Conta",
|
||||
"description": "Descri\u00e7\u00e3o",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "A\u00e7\u00f5es",
|
||||
"edit": "Editar",
|
||||
"delete": "Apagar",
|
||||
"reconcile_this_account": "Concilie esta conta"
|
||||
"reconcile_this_account": "Concilie esta conta",
|
||||
"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": "(nenhum)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Cofrinho",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "Montante em moeda estrangeira",
|
||||
"interest_date": "Data de interesse",
|
||||
"book_date": "Data reserva",
|
||||
"permDeleteWarning": "Exclus\u00e3o de dados do Firefly III s\u00e3o permanentes e n\u00e3o podem ser desfeitos.",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "Data de processamento",
|
||||
"due_date": "Data de vencimento",
|
||||
"payment_date": "Data de pagamento",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Notas",
|
||||
"yourAccounts": "As suas contas",
|
||||
"go_to_asset_accounts": "Ver as contas de activos",
|
||||
"delete_account": "Apagar conta de utilizador",
|
||||
"transaction_table_description": "Uma tabela com as suas transac\u00e7\u00f5es",
|
||||
"account": "Conta",
|
||||
"description": "Descricao",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "A\u00e7\u00f5es",
|
||||
"edit": "Alterar",
|
||||
"delete": "Apagar",
|
||||
"reconcile_this_account": "Reconciliar esta conta"
|
||||
"reconcile_this_account": "Reconciliar esta conta",
|
||||
"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": "(nenhum)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Mealheiro",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "Montante estrangeiro",
|
||||
"interest_date": "Data de juros",
|
||||
"book_date": "Data de registo",
|
||||
"permDeleteWarning": "Apagar as tuas coisas do Firefly III e permanente e nao pode ser desfeito.",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "Data de processamento",
|
||||
"due_date": "Data de vencimento",
|
||||
"payment_date": "Data de pagamento",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Noti\u021be",
|
||||
"yourAccounts": "Conturile dvs.",
|
||||
"go_to_asset_accounts": "Vizualiza\u021bi conturile de active",
|
||||
"delete_account": "\u0218terge account",
|
||||
"transaction_table_description": "A table containing your transactions",
|
||||
"account": "Cont",
|
||||
"description": "Descriere",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "Ac\u021biuni",
|
||||
"edit": "Editeaz\u0103",
|
||||
"delete": "\u0218terge",
|
||||
"reconcile_this_account": "Reconcilia\u021bi acest cont"
|
||||
"reconcile_this_account": "Reconcilia\u021bi acest cont",
|
||||
"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": "(nici unul)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Pu\u0219culi\u021b\u0103",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "Sum\u0103 str\u0103in\u0103",
|
||||
"interest_date": "Data de interes",
|
||||
"book_date": "Rezerv\u0103 dat\u0103",
|
||||
"permDeleteWarning": "\u0218tergerea este permanent\u0103 \u0219i nu poate fi anulat\u0103.",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "Data proces\u0103rii",
|
||||
"due_date": "Data scadent\u0103",
|
||||
"payment_date": "Data de plat\u0103",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "\u0417\u0430\u043c\u0435\u0442\u043a\u0438",
|
||||
"yourAccounts": "\u0412\u0430\u0448\u0438 \u0441\u0447\u0435\u0442\u0430",
|
||||
"go_to_asset_accounts": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u0432\u0430\u0448\u0438\u0445 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0441\u0447\u0435\u0442\u043e\u0432",
|
||||
"delete_account": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u0440\u043e\u0444\u0438\u043b\u044c",
|
||||
"transaction_table_description": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0430\u044f \u0432\u0430\u0448\u0438 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
|
||||
"account": "\u0421\u0447\u0451\u0442",
|
||||
"description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
|
||||
"edit": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c",
|
||||
"delete": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c",
|
||||
"reconcile_this_account": "\u041f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u0441\u0432\u0435\u0440\u043a\u0443 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430"
|
||||
"reconcile_this_account": "\u041f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u0441\u0432\u0435\u0440\u043a\u0443 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "\u041a\u043e\u043f\u0438\u043b\u043a\u0430",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "\u0421\u0443\u043c\u043c\u0430 \u0432 \u0438\u043d\u043e\u0441\u0442\u0440\u0430\u043d\u043d\u043e\u0439 \u0432\u0430\u043b\u044e\u0442\u0435",
|
||||
"interest_date": "\u0414\u0430\u0442\u0430 \u043d\u0430\u0447\u0438\u0441\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u043e\u0432",
|
||||
"book_date": "\u0414\u0430\u0442\u0430 \u0431\u0440\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f",
|
||||
"permDeleteWarning": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0438\u0437 Firefly III \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u044b\u043c \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u043e.",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "\u0414\u0430\u0442\u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438",
|
||||
"due_date": "\u0421\u0440\u043e\u043a \u043e\u043f\u043b\u0430\u0442\u044b",
|
||||
"payment_date": "\u0414\u0430\u0442\u0430 \u043f\u043b\u0430\u0442\u0435\u0436\u0430",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Pozn\u00e1mky",
|
||||
"yourAccounts": "Va\u0161e \u00fa\u010dty",
|
||||
"go_to_asset_accounts": "Zobrazi\u0165 \u00fa\u010dty akt\u00edv",
|
||||
"delete_account": "Odstr\u00e1ni\u0165 \u00fa\u010det",
|
||||
"transaction_table_description": "Tabu\u013eka obsahuj\u00faca va\u0161e transakcie",
|
||||
"account": "\u00da\u010det",
|
||||
"description": "Popis",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "Akcie",
|
||||
"edit": "Upravi\u0165",
|
||||
"delete": "Odstr\u00e1ni\u0165",
|
||||
"reconcile_this_account": "Vy\u00fa\u010dtovat tento \u00fa\u010det"
|
||||
"reconcile_this_account": "Vy\u00fa\u010dtovat tento \u00fa\u010det",
|
||||
"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": "(\u017eiadne)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Pokladni\u010dka",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "Suma v cudzej mene",
|
||||
"interest_date": "\u00darokov\u00fd d\u00e1tum",
|
||||
"book_date": "D\u00e1tum rezerv\u00e1cie",
|
||||
"permDeleteWarning": "Odstr\u00e1nenie \u00fadajov z Firefly III je trval\u00e9 a nie je mo\u017en\u00e9 ich vr\u00e1ti\u0165 sp\u00e4\u0165.",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "D\u00e1tum spracovania",
|
||||
"due_date": "D\u00e1tum splatnosti",
|
||||
"payment_date": "D\u00e1tum \u00fahrady",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Noteringar",
|
||||
"yourAccounts": "Dina konton",
|
||||
"go_to_asset_accounts": "Visa dina tillg\u00e5ngskonton",
|
||||
"delete_account": "Ta bort konto",
|
||||
"transaction_table_description": "En tabell som inneh\u00e5ller dina transaktioner",
|
||||
"account": "Konto",
|
||||
"description": "Beskrivning",
|
||||
@@ -58,7 +59,7 @@
|
||||
"spent": "Spenderat",
|
||||
"Default asset account": "F\u00f6rvalt tillg\u00e5ngskonto",
|
||||
"search_results": "S\u00f6kresultat",
|
||||
"include": "Include?",
|
||||
"include": "Inkludera?",
|
||||
"transaction": "Transaktion",
|
||||
"account_role_defaultAsset": "F\u00f6rvalt tillg\u00e5ngskonto",
|
||||
"account_role_savingAsset": "Sparkonto",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "\u00c5tg\u00e4rder",
|
||||
"edit": "Redigera",
|
||||
"delete": "Ta bort",
|
||||
"reconcile_this_account": "St\u00e4m av detta konto"
|
||||
"reconcile_this_account": "St\u00e4m av detta konto",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Spargris",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "Utl\u00e4ndskt belopp",
|
||||
"interest_date": "R\u00e4ntedatum",
|
||||
"book_date": "Bokf\u00f6ringsdatum",
|
||||
"permDeleteWarning": "Att ta bort saker fr\u00e5n Firefly III \u00e4r permanent och kan inte \u00e5ngras.",
|
||||
"account_areYouSure_js": "\u00c4r du s\u00e4ker du vill ta bort kontot \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "Inga spargrisar|Den enda spargrisen som \u00e4r ansluten till detta konto kommer ocks\u00e5 att tas bort.|Alla {count} spargrisar anslutna till detta konto kommer ocks\u00e5 att tas bort.",
|
||||
"also_delete_transactions_js": "Inga transaktioner|Den enda transaktionen som \u00e4r ansluten till detta konto kommer ocks\u00e5 att tas bort.|Alla {count} transaktioner som \u00e4r kopplade till detta konto kommer ocks\u00e5 att tas bort.",
|
||||
"process_date": "Behandlingsdatum",
|
||||
"due_date": "F\u00f6rfallodatum",
|
||||
"payment_date": "Betalningsdatum",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "Ghi ch\u00fa",
|
||||
"yourAccounts": "T\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n",
|
||||
"go_to_asset_accounts": "Xem t\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n",
|
||||
"delete_account": "X\u00f3a t\u00e0i kho\u1ea3n",
|
||||
"transaction_table_description": "A table containing your transactions",
|
||||
"account": "T\u00e0i kho\u1ea3n",
|
||||
"description": "S\u1ef1 mi\u00eau t\u1ea3",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "H\u00e0nh \u0111\u1ed9ng",
|
||||
"edit": "S\u1eeda",
|
||||
"delete": "X\u00f3a",
|
||||
"reconcile_this_account": "\u0110i\u1ec1u ch\u1ec9nh t\u00e0i kho\u1ea3n n\u00e0y"
|
||||
"reconcile_this_account": "\u0110i\u1ec1u ch\u1ec9nh t\u00e0i kho\u1ea3n n\u00e0y",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "\u1ed0ng heo con",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "Ngo\u1ea1i t\u1ec7",
|
||||
"interest_date": "Ng\u00e0y l\u00e3i",
|
||||
"book_date": "Ng\u00e0y \u0111\u1eb7t s\u00e1ch",
|
||||
"permDeleteWarning": "X\u00f3a n\u1ed9i dung kh\u1ecfi Firefly III l\u00e0 v\u0129nh vi\u1ec5n v\u00e0 kh\u00f4ng th\u1ec3 ho\u00e0n t\u00e1c.",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "Ng\u00e0y x\u1eed l\u00fd",
|
||||
"due_date": "Ng\u00e0y \u0111\u00e1o h\u1ea1n",
|
||||
"payment_date": "Ng\u00e0y thanh to\u00e1n",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "\u5907\u6ce8",
|
||||
"yourAccounts": "\u60a8\u7684\u8d26\u6237",
|
||||
"go_to_asset_accounts": "\u67e5\u770b\u60a8\u7684\u8d44\u4ea7\u8d26\u6237",
|
||||
"delete_account": "\u5220\u9664\u8d26\u6237",
|
||||
"transaction_table_description": "\u5305\u542b\u60a8\u4ea4\u6613\u7684\u8868\u683c",
|
||||
"account": "\u8d26\u6237",
|
||||
"description": "\u63cf\u8ff0",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "\u64cd\u4f5c",
|
||||
"edit": "\u7f16\u8f91",
|
||||
"delete": "\u5220\u9664",
|
||||
"reconcile_this_account": "\u5bf9\u8d26\u6b64\u8d26\u6237"
|
||||
"reconcile_this_account": "\u5bf9\u8d26\u6b64\u8d26\u6237",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "\u5b58\u94b1\u7f50",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "\u5916\u5e01\u91d1\u989d",
|
||||
"interest_date": "\u5229\u606f\u65e5\u671f",
|
||||
"book_date": "\u767b\u8bb0\u65e5\u671f",
|
||||
"permDeleteWarning": "\u4ece Firefly III \u5220\u9664\u5185\u5bb9\u662f\u6c38\u4e45\u4e14\u65e0\u6cd5\u6062\u590d\u7684\u3002",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "\u5904\u7406\u65e5\u671f",
|
||||
"due_date": "\u5230\u671f\u65e5",
|
||||
"payment_date": "\u4ed8\u6b3e\u65e5\u671f",
|
||||
|
@@ -30,6 +30,7 @@
|
||||
"notes": "\u5099\u8a3b",
|
||||
"yourAccounts": "\u60a8\u7684\u5e33\u6236",
|
||||
"go_to_asset_accounts": "\u6aa2\u8996\u60a8\u7684\u8cc7\u7522\u5e33\u6236",
|
||||
"delete_account": "\u79fb\u9664\u5e33\u865f",
|
||||
"transaction_table_description": "A table containing your transactions",
|
||||
"account": "\u5e33\u6236",
|
||||
"description": "\u63cf\u8ff0",
|
||||
@@ -107,7 +108,9 @@
|
||||
"actions": "\u64cd\u4f5c",
|
||||
"edit": "\u7de8\u8f2f",
|
||||
"delete": "\u522a\u9664",
|
||||
"reconcile_this_account": "\u5c0d\u5e33\u6b64\u5e33\u6236"
|
||||
"reconcile_this_account": "\u5c0d\u5e33\u6b64\u5e33\u6236",
|
||||
"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)"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "\u5c0f\u8c6c\u64b2\u6eff",
|
||||
@@ -126,6 +129,10 @@
|
||||
"foreign_amount": "\u5916\u5e63\u91d1\u984d",
|
||||
"interest_date": "\u5229\u7387\u65e5\u671f",
|
||||
"book_date": "\u767b\u8a18\u65e5\u671f",
|
||||
"permDeleteWarning": "\u81ea Firefly III \u522a\u9664\u9805\u76ee\u662f\u6c38\u4e45\u4e14\u4e0d\u53ef\u64a4\u92b7\u7684\u3002",
|
||||
"account_areYouSure_js": "Are you sure you want to delete the account named \"{name}\"?",
|
||||
"also_delete_piggyBanks_js": "No piggy banks|The only piggy bank connected to this account will be deleted as well.|All {count} piggy banks connected to this account will be deleted as well.",
|
||||
"also_delete_transactions_js": "No transactions|The only transaction connected to this account will be deleted as well.|All {count} transactions connected to this account will be deleted as well.",
|
||||
"process_date": "\u8655\u7406\u65e5\u671f",
|
||||
"due_date": "\u5230\u671f\u65e5",
|
||||
"payment_date": "\u4ed8\u6b3e\u65e5\u671f",
|
||||
|
2
frontend/webpack.mix.js
vendored
2
frontend/webpack.mix.js
vendored
@@ -45,8 +45,10 @@ mix.webpackConfig({
|
||||
|
||||
// dashboard and empty page
|
||||
mix.js('src/pages/dashboard.js', 'public/js').vue({version: 2});
|
||||
|
||||
// accounts.
|
||||
mix.js('src/pages/accounts/index.js', 'public/js/accounts').vue({version: 2});
|
||||
mix.js('src/pages/accounts/delete.js', 'public/js/accounts').vue({version: 2});
|
||||
mix.js('src/pages/accounts/show.js', 'public/js/accounts').vue({version: 2});
|
||||
|
||||
|
||||
|
@@ -3864,10 +3864,10 @@ fs-extra@^9.0.1, fs-extra@^9.1.0:
|
||||
jsonfile "^6.0.1"
|
||||
universalify "^2.0.0"
|
||||
|
||||
fs-monkey@1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.1.tgz#4a82f36944365e619f4454d9fff106553067b781"
|
||||
integrity sha512-fcSa+wyTqZa46iWweI7/ZiUfegOZl0SG8+dltIwFXo7+zYU9J9kpS3NB6pZcSlJdhvIwp81Adx2XhZorncxiaA==
|
||||
fs-monkey@1.0.3:
|
||||
version "1.0.3"
|
||||
resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.3.tgz#ae3ac92d53bb328efe0e9a1d9541f6ad8d48e2d3"
|
||||
integrity sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==
|
||||
|
||||
fs.realpath@^1.0.0:
|
||||
version "1.0.0"
|
||||
@@ -5176,11 +5176,11 @@ mem@^8.0.0:
|
||||
mimic-fn "^3.1.0"
|
||||
|
||||
memfs@^3.2.0:
|
||||
version "3.2.1"
|
||||
resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.2.1.tgz#12301801a14eb3daa9f7491aa0ff09ffec519dd0"
|
||||
integrity sha512-Y5vcpQzWTime4fBTr/fEnxXUxEYUgKbDlty1WX0gaa4ae14I6KmvK1S8HtXOX0elKAE6ENZJctkGtbTFYcRIUw==
|
||||
version "3.2.2"
|
||||
resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.2.2.tgz#5de461389d596e3f23d48bb7c2afb6161f4df40e"
|
||||
integrity sha512-RE0CwmIM3CEvpcdK3rZ19BC4E6hv9kADkMN5rPduRak58cNArWLi/9jFLsa4rhsjfVxMP3v0jO7FHXq7SvFY5Q==
|
||||
dependencies:
|
||||
fs-monkey "1.0.1"
|
||||
fs-monkey "1.0.3"
|
||||
|
||||
merge-descriptors@1.0.1:
|
||||
version "1.0.1"
|
||||
@@ -5847,10 +5847,10 @@ pbkdf2@^3.0.3:
|
||||
safe-buffer "^5.0.1"
|
||||
sha.js "^2.4.8"
|
||||
|
||||
pdfkit@>=0.8.1, pdfkit@^0.11.0:
|
||||
version "0.11.0"
|
||||
resolved "https://registry.yarnpkg.com/pdfkit/-/pdfkit-0.11.0.tgz#9cdb2fc42bd2913587fe3ddf48cc5bbb3c36f7de"
|
||||
integrity sha512-1s9gaumXkYxcVF1iRtSmLiISF2r4nHtsTgpwXiK8Swe+xwk/1pm8FJjYqN7L3x13NsWnGyUFntWcO8vfqq+wwA==
|
||||
pdfkit@>=0.8.1, pdfkit@^0.12.0:
|
||||
version "0.12.0"
|
||||
resolved "https://registry.yarnpkg.com/pdfkit/-/pdfkit-0.12.0.tgz#0681f84d83fd08fa0a1f3237338c8b9a27bdaa4c"
|
||||
integrity sha512-DnfNzX4WKfnxuk90V+focyck01QEmfSc0VBm2g9ElPKVWLcJEg66dd+t1TdaEPL3TKgDFXQOpIquEh6in6UWoA==
|
||||
dependencies:
|
||||
crypto-js "^3.1.9-1"
|
||||
fontkit "^1.8.0"
|
||||
@@ -5858,13 +5858,13 @@ pdfkit@>=0.8.1, pdfkit@^0.11.0:
|
||||
png-js "^1.0.0"
|
||||
|
||||
pdfmake@^0.1.70:
|
||||
version "0.1.70"
|
||||
resolved "https://registry.yarnpkg.com/pdfmake/-/pdfmake-0.1.70.tgz#b5102799deef264defa675dbb2dbf12ad49a9bae"
|
||||
integrity sha512-xPhkblaQ71U97qhRTPj/1HknAHHFZ3cPRmRdrqEWD2xXBcEjEM3Yw0MIjML8DRy9Dt9n6QRjHVf662f0eLtd7Q==
|
||||
version "0.1.71"
|
||||
resolved "https://registry.yarnpkg.com/pdfmake/-/pdfmake-0.1.71.tgz#9cb20032cfed534f1bb5aa95026343fd7b4a5953"
|
||||
integrity sha512-uXUy+NZ8R5pwJ6rYLJRu7VRw/w5ogBScNk440CHpMZ6Z0+E1uc1XvwK4I1U5ry0UZQ3qPD0dpSvbzAkRBKYoJA==
|
||||
dependencies:
|
||||
iconv-lite "^0.6.2"
|
||||
linebreak "^1.0.2"
|
||||
pdfkit "^0.11.0"
|
||||
pdfkit "^0.12.0"
|
||||
svg-to-pdfkit "^0.1.8"
|
||||
xmldoc "^1.1.2"
|
||||
|
||||
@@ -8017,9 +8017,9 @@ xtend@^4.0.0, xtend@^4.0.2, xtend@~4.0.1:
|
||||
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
|
||||
|
||||
y18n@^5.0.5:
|
||||
version "5.0.5"
|
||||
resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz#8769ec08d03b1ea2df2500acef561743bbb9ab18"
|
||||
integrity sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==
|
||||
version "5.0.6"
|
||||
resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.6.tgz#8236b05cfc5af6a409f41326a4847c68989bb04f"
|
||||
integrity sha512-PlVX4Y0lDTN6E2V4ES2tEdyvXkeKzxa8c/vo0pxPr/TqbztddTP0yn7zZylIyiAuxerqj0Q5GhpJ1YJCP8LaZQ==
|
||||
|
||||
yallist@^2.1.2:
|
||||
version "2.1.2"
|
||||
|
Reference in New Issue
Block a user