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"
},