Update translations and account index code.

This commit is contained in:
James Cole
2021-06-19 08:18:54 +02:00
parent 3e88bf4692
commit 0d80582874
53 changed files with 702 additions and 1716 deletions

View File

@@ -12,7 +12,7 @@
"devDependencies": {
"axios": "^0.21",
"date-fns": "^2.21.1",
"laravel-mix": "^6.0.6",
"laravel-mix": "^6",
"lodash": "^4.17.19",
"lodash.clonedeep": "^4.5.0",
"postcss": "^8.1.14",

View File

@@ -21,7 +21,7 @@
<template>
<div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="col-lg-8 col-md-6 col-sm-12 col-xs-12">
<b-pagination
v-model="currentPage"
:total-rows="total"
@@ -29,6 +29,9 @@
aria-controls="my-table"
></b-pagination>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 col-xs-12">
<button @click="newCacheKey" class="btn btn-sm float-right btn-info"><span class="fas fa-sync"></span></button>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
@@ -139,7 +142,8 @@
<div class="dropdown-menu" :aria-labelledby="'dropdownMenuButton' + data.item.id">
<a class="dropdown-item" :href="'./accounts/edit/' + data.item.id"><span class="fa fas fa-pencil-alt"></span> {{ $t('firefly.edit') }}</a>
<a class="dropdown-item" :href="'./accounts/delete/' + data.item.id"><span class="fa far fa-trash"></span> {{ $t('firefly.delete') }}</a>
<a v-if="'asset' === type" class="dropdown-item" :href="'./accounts/reconcile/' + data.item.id + '/index'"><span class="fas fa-check"></span>
<a v-if="'asset' === type" class="dropdown-item" :href="'./accounts/reconcile/' + data.item.id + '/index'"><span
class="fas fa-check"></span>
{{ $t('firefly.reconcile_this_account') }}</a>
</div>
</div>
@@ -149,13 +153,12 @@
</div>
<div class="card-footer">
<a :href="'./accounts/create/' + type" class="btn btn-success" :title="$t('firefly.create_new_' + type)">{{ $t('firefly.create_new_' + type) }}</a>
<a href="#" class="btn btn-info"><span class="fas fa-sync"></span></a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="col-lg-8 col-md-6 col-sm-12 col-xs-12">
<b-pagination
v-model="currentPage"
:total-rows="total"
@@ -163,13 +166,16 @@
aria-controls="my-table"
></b-pagination>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 col-xs-12">
<button @click="newCacheKey" class="btn btn-sm float-right btn-info"><span class="fas fa-sync"></span></button>
</div>
</div>
</div>
</template>
<script>
import {mapGetters} from "vuex";
import {mapGetters, mapMutations} from "vuex";
import Sortable from "sortablejs";
import format from "date-fns/format";
import {setup} from 'axios-cache-adapter';
@@ -275,6 +281,7 @@ export default {
},
methods: {
...mapMutations('root', ['refreshCacheKey',]),
// itemsProvider: function (ctx, callback) {
// console.log('itemsProvider()');
// console.log('ctx.currentPage = ' + ctx.currentPage);
@@ -322,6 +329,12 @@ export default {
this.sortDesc = false;
}
},
newCacheKey: function () {
this.refreshCacheKey();
this.downloaded = false;
this.accounts = [];
this.getAccountList();
},
makeTableSortable: function (orderMode) {
this.sortableOptions.disabled = !orderMode;
this.sortableOptions.onEnd = this.saveAccountSort;
@@ -555,13 +568,15 @@ export default {
// console.log('getAccountLastActivity(' + index + ')');
// get single transaction for account:
// /api/v1/accounts/1/transactions?limit=1
axios.get('./api/v1/accounts/' + acct.id + '/transactions?limit=1&key=' + this.cacheKey).then(response => {
if (0 === response.data.data.length) {
this.allAccounts[index].last_activity = 'none';
return;
}
let date = new Date(response.data.data[0].attributes.transactions[0].date);
this.allAccounts[index].last_activity = format(date, this.$t('config.month_and_day_fns'));
configureAxios().then(async (api) => {
api.get('./api/v1/accounts/' + acct.id + '/transactions?limit=1&key=' + this.cacheKey).then(response => {
if (0 === response.data.data.length) {
this.allAccounts[index].last_activity = 'none';
return;
}
let date = new Date(response.data.data[0].attributes.transactions[0].date);
this.allAccounts[index].last_activity = format(date, this.$t('config.month_and_day_fns'));
});
});
},
getAccountBalanceDifference: function (index, acct) {
@@ -570,18 +585,25 @@ export default {
let promises = [];
// add meta data to promise context.
promises.push(new Promise((resolve) => {
resolve(
{
account: acct,
index: index,
}
);
}));
promises.push(Promise.resolve({
account: acct,
index: index,
}));
let startStr = format(this.start, 'y-MM-dd');
let endStr = format(this.end, 'y-MM-dd');
promises.push(axios.get('./api/v1/accounts/' + acct.id + '?date=' + startStr + '&key=' + this.cacheKey));
promises.push(axios.get('./api/v1/accounts/' + acct.id + '?date=' + endStr + '&key=' + this.cacheKey));
configureAxios().then(api => {
return api.get('./api/v1/accounts/' + acct.id + '?date=' + startStr + '&key=' + this.cacheKey);
});
//promises.push(axios.get('./api/v1/accounts/' + acct.id + '?date=' + startStr + '&key=' + this.cacheKey));
promises.push(configureAxios().then(api => {
return api.get('./api/v1/accounts/' + acct.id + '?date=' + startStr + '&key=' + this.cacheKey);
}));
promises.push(configureAxios().then(api => {
return api.get('./api/v1/accounts/' + acct.id + '?date=' + endStr + '&key=' + this.cacheKey);
}));
Promise.all(promises).then(responses => {
let index = responses[0].index;

View File

@@ -248,13 +248,7 @@ export default {
}
}
return new Promise((resolve) => {
resolve(
{
journals: journals,
}
);
});
return Promise.resolve({journals: journals});
},
submitLinks: function (response, submission) {
let promises = [];
@@ -278,13 +272,7 @@ export default {
}
}
if (0 === promises.length) {
return new Promise((resolve) => {
resolve(
{
response: 'from submitLinks'
}
);
});
return Promise.resolve({response: 'from submitLinks'});
}
return Promise.all(promises);
},
@@ -308,13 +296,7 @@ export default {
this.submittedAttachments = 0;
}
return new Promise((resolve) => {
resolve(
{
response: 'from submitAttachments'
}
);
});
return Promise.resolve({response: 'from submitAttachments'});
},
selectedAttachment: function (payload) {
this.updateField({index: payload.index, field: 'attachments', value: true});
@@ -360,13 +342,7 @@ export default {
this.resetTransactions();
this.addTransaction();
}
return new Promise((resolve) => {
resolve(
{
response: 'from finaliseSubmission'
}
);
});
return Promise.resolve({response: 'from finaliseSubmission'});
},
handleSubmissionError: function (error) {
//console.log('in handleSubmissionError');

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.",
"none_in_select_list": "(\u043d\u0438\u0449\u043e)"
"none_in_select_list": "(\u043d\u0438\u0449\u043e)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "\u041a\u0430\u0441\u0438\u0447\u043a\u0430",

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.",
"none_in_select_list": "(\u017e\u00e1dn\u00e9)"
"none_in_select_list": "(\u017e\u00e1dn\u00e9)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "Pokladni\u010dka",

View File

@@ -137,7 +137,9 @@
"left_in_debt": "F\u00e4lliger Betrag",
"account_type_mortgage": "Hypothek",
"save_transactions_by_moving_js": "Keine Buchungen|Speichern Sie diese Buchung, indem Sie sie auf ein anderes Konto verschieben. |Speichern Sie diese Buchungen, indem Sie sie auf ein anderes Konto verschieben.",
"none_in_select_list": "(Keine)"
"none_in_select_list": "(Keine)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "Sparschwein",

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.",
"none_in_select_list": "(\u03c4\u03af\u03c0\u03bf\u03c4\u03b1)"
"none_in_select_list": "(\u03c4\u03af\u03c0\u03bf\u03c4\u03b1)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "\u039a\u03bf\u03c5\u03bc\u03c0\u03b1\u03c1\u03ac\u03c2",

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.",
"none_in_select_list": "(none)"
"none_in_select_list": "(none)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "Piggy bank",

View File

@@ -15,8 +15,6 @@
"balance": "Balance",
"transaction_journal_extra": "Extra information",
"transaction_journal_meta": "Meta information",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split",
"basic_journal_information": "Basic transaction information",
"bills_to_pay": "Bills to pay",
"left_to_spend": "Left to spend",
@@ -139,7 +137,9 @@
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.",
"none_in_select_list": "(none)"
"none_in_select_list": "(none)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "Piggy bank",

View File

@@ -114,7 +114,7 @@
"account_type_Mortgage": "Hipoteca",
"stored_new_account_js": "Nueva cuenta \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" guardada!",
"account_type_Debt": "Deuda",
"liability_direction_null_short": "Unknown",
"liability_direction_null_short": "Desconocido",
"delete": "Eliminar",
"store_new_asset_account": "Crear cuenta de activos",
"store_new_expense_account": "Crear cuenta de gastos",
@@ -130,14 +130,16 @@
"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": "Owed this debt",
"liability_direction_debit_short": "Owe this debt",
"account_type_debt": "Debt",
"account_type_loan": "Loan",
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"liability_direction_credit_short": "Ten\u00eda esta deuda",
"liability_direction_debit_short": "Tiene esta deuda",
"account_type_debt": "Deuda",
"account_type_loan": "Pr\u00e9stamo",
"left_in_debt": "Importe debido",
"account_type_mortgage": "Hipoteca",
"save_transactions_by_moving_js": "Ninguna transacci\u00f3n|Guardar esta transacci\u00f3n movi\u00e9ndola a otra cuenta. |Guardar estas transacciones movi\u00e9ndolas a otra cuenta.",
"none_in_select_list": "(ninguno)"
"none_in_select_list": "(ninguno)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "Alcancilla",
@@ -153,16 +155,16 @@
"category": "Categor\u00eda",
"iban": "IBAN",
"interest": "Inter\u00e9s",
"interest_period": "Interest period",
"interest_period": "Per\u00edodo de inter\u00e9s",
"liability_type": "Tipo de pasivo",
"liability_direction": "Liability in\/out",
"liability_direction": "Pasivo entrada\/salida",
"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": "MMMM d, y",
"month_and_day_fns": "d MMMM y",
"quarter_fns": "'Trimestre' Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.",
"none_in_select_list": "(ei mit\u00e4\u00e4n)"
"none_in_select_list": "(ei mit\u00e4\u00e4n)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "S\u00e4\u00e4st\u00f6possu",

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Montant d\u00fb",
"account_type_mortgage": "Pr\u00eat immobilier",
"save_transactions_by_moving_js": "Aucune op\u00e9ration|Conserver cette op\u00e9ration en la d\u00e9pla\u00e7ant vers un autre compte. |Conserver ces op\u00e9rations en les d\u00e9pla\u00e7ant vers un autre compte.",
"none_in_select_list": "(aucun)"
"none_in_select_list": "(aucun)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "Tirelire",

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.",
"none_in_select_list": "(nincs)"
"none_in_select_list": "(nincs)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "Malacpersely",

View File

@@ -114,7 +114,7 @@
"account_type_Mortgage": "Mutuo",
"stored_new_account_js": "Nuovo conto \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" salvato!",
"account_type_Debt": "Debito",
"liability_direction_null_short": "Unknown",
"liability_direction_null_short": "Sconosciuta",
"delete": "Elimina",
"store_new_asset_account": "Salva nuovo conto attivit\u00e0",
"store_new_expense_account": "Salva il nuovo conto uscite",
@@ -130,14 +130,16 @@
"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": "Owed this debt",
"liability_direction_debit_short": "Owe this debt",
"account_type_debt": "Debt",
"account_type_loan": "Loan",
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"liability_direction_credit_short": "Mi devono questo debito",
"liability_direction_debit_short": "Devo questo debito",
"account_type_debt": "Debito",
"account_type_loan": "Prestito",
"left_in_debt": "Importo da pagare",
"account_type_mortgage": "Mutuo",
"save_transactions_by_moving_js": "Nessuna transazione|Salva questa transazione spostandola in un altro conto.|Salva queste transazioni spostandole in un altro conto.",
"none_in_select_list": "(nessuna)"
"none_in_select_list": "(nessuna)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "Salvadanaio",
@@ -153,16 +155,16 @@
"category": "Categoria",
"iban": "IBAN",
"interest": "Interesse",
"interest_period": "Interest period",
"interest_period": "Periodo interessi",
"liability_type": "Tipo di passivit\u00e0",
"liability_direction": "Liability in\/out",
"liability_direction": "Passivit\u00e0 in entrata\/uscita",
"currentBalance": "Saldo corrente",
"next_expected_match": "Prossimo abbinamento previsto"
},
"config": {
"html_language": "it",
"week_in_year_fns": "'Settimana' w, yyyy",
"month_and_day_fns": "MMMM d, y",
"month_and_day_fns": "d MMMM y",
"quarter_fns": "'Q'Q, yyyy",
"half_year_fns": "'H{half}', yyyy"
},

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.",
"none_in_select_list": "(ingen)"
"none_in_select_list": "(ingen)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "Sparegris",

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Verschuldigd bedrag",
"account_type_mortgage": "Hypotheek",
"save_transactions_by_moving_js": "Geen transacties|Bewaar deze transactie door ze aan een andere rekening te koppelen.|Bewaar deze transacties door ze aan een andere rekening te koppelen.",
"none_in_select_list": "(geen)"
"none_in_select_list": "(geen)",
"transaction_expand_split": "Split uitklappen",
"transaction_collapse_split": "Split inklappen"
},
"list": {
"piggy_bank": "Spaarpotje",

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Do zap\u0142aty",
"account_type_mortgage": "Hipoteka",
"save_transactions_by_moving_js": "Brak transakcji|Zapisz t\u0119 transakcj\u0119, przenosz\u0105c j\u0105 na inne konto.|Zapisz te transakcje przenosz\u0105c je na inne konto.",
"none_in_select_list": "(\u017cadne)"
"none_in_select_list": "(\u017cadne)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "Skarbonka",

View File

@@ -114,7 +114,7 @@
"account_type_Mortgage": "Hipoteca",
"stored_new_account_js": "Nova conta \"<a href=\"accounts\/show\/{ID}\">{name}<\/a>\" armazenada!",
"account_type_Debt": "D\u00edvida",
"liability_direction_null_short": "Unknown",
"liability_direction_null_short": "Desconhecida",
"delete": "Apagar",
"store_new_asset_account": "Armazenar nova conta de ativo",
"store_new_expense_account": "Armazenar nova conta de despesa",
@@ -132,12 +132,14 @@
"liability_direction_debit": "Devo este d\u00e9bito a outra pessoa",
"liability_direction_credit_short": "Owed this debt",
"liability_direction_debit_short": "Owe this debt",
"account_type_debt": "Debt",
"account_type_loan": "Loan",
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"account_type_debt": "D\u00e9bito",
"account_type_loan": "Empr\u00e9stimo",
"left_in_debt": "Valor devido",
"account_type_mortgage": "Hipoteca",
"save_transactions_by_moving_js": "Nenhuma transa\u00e7\u00e3o.|Salve esta transa\u00e7\u00e3o movendo-a para outra conta.|Salve essas transa\u00e7\u00f5es movendo-as para outra conta.",
"none_in_select_list": "(nenhum)"
"none_in_select_list": "(nenhum)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "Cofrinho",
@@ -153,7 +155,7 @@
"category": "Categoria",
"iban": "IBAN",
"interest": "Juros",
"interest_period": "Interest period",
"interest_period": "Per\u00edodo de juros",
"liability_type": "Tipo de passivo",
"liability_direction": "Liability in\/out",
"currentBalance": "Saldo atual",

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Montante em d\u00edvida",
"account_type_mortgage": "Hipoteca",
"save_transactions_by_moving_js": "Nenhuma transa\u00e7\u00e3o| Guarde esta transa\u00e7\u00e3o movendo-a para outra conta| Guarde estas transa\u00e7\u00f5es movendo-as para outra conta.",
"none_in_select_list": "(nenhum)"
"none_in_select_list": "(nenhum)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "Mealheiro",

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"save_transactions_by_moving_js": "F\u0103r\u0103 tranzac\u021bii* Salva\u021bi aceast\u0103 tranzac\u021bie mut\u00e2nd-o \u00een alt cont. | Salva\u021bi aceste tranzac\u021bii mut\u00e2ndu-le \u00eentr-un alt cont.",
"none_in_select_list": "(nici unul)"
"none_in_select_list": "(nici unul)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "Pu\u0219culi\u021b\u0103",

View File

@@ -59,7 +59,7 @@
"spent": "\u0420\u0430\u0441\u0445\u043e\u0434",
"Default asset account": "\u0421\u0447\u0451\u0442 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e",
"search_results": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430",
"include": "Include?",
"include": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c?",
"transaction": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f",
"account_role_defaultAsset": "\u0421\u0447\u0451\u0442 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e",
"account_role_savingAsset": "\u0421\u0431\u0435\u0440\u0435\u0433\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0441\u0447\u0435\u0442",
@@ -137,7 +137,9 @@
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.",
"none_in_select_list": "(\u043d\u0435\u0442)"
"none_in_select_list": "(\u043d\u0435\u0442)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "\u041a\u043e\u043f\u0438\u043b\u043a\u0430",

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"save_transactions_by_moving_js": "\u017diadne transakcie|Zachova\u0165 t\u00fato transakciu presunom pod in\u00fd \u00fa\u010det.|Zachova\u0165 tieto transakcie presunom pod in\u00fd \u00fa\u010det.",
"none_in_select_list": "(\u017eiadne)"
"none_in_select_list": "(\u017eiadne)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "Pokladni\u010dka",

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Amount due",
"account_type_mortgage": "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)"
"none_in_select_list": "(Ingen)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "Spargris",

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.",
"none_in_select_list": "(Tr\u1ed1ng)"
"none_in_select_list": "(Tr\u1ed1ng)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "\u1ed0ng heo con",

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.",
"none_in_select_list": "(\u7a7a)"
"none_in_select_list": "(\u7a7a)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "\u5b58\u94b1\u7f50",

View File

@@ -137,7 +137,9 @@
"left_in_debt": "Amount due",
"account_type_mortgage": "Mortgage",
"save_transactions_by_moving_js": "No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.",
"none_in_select_list": "(\u7a7a)"
"none_in_select_list": "(\u7a7a)",
"transaction_expand_split": "Expand split",
"transaction_collapse_split": "Collapse split"
},
"list": {
"piggy_bank": "\u5c0f\u8c6c\u64b2\u6eff",

File diff suppressed because it is too large Load Diff

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Съхранете като нова транзакция, вместо да я актуализирате.',
'reset_after' => 'Изчистване на формуляра след изпращане',
'errors_submission' => 'Имаше нещо нередно с вашите данни. Моля, проверете грешките.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(без група)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Store as a new transaction instead of updating.',
'reset_after' => 'Reset form after submission',
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(neseskupeno)',

View File

@@ -27,7 +27,7 @@ return [
'greeting' => 'Hallo,',
'closing' => 'Piep piep,',
'signature' => 'Der Firefly III E-Mail-Roboter',
'footer_ps' => 'PS: Diese Nachricht wurde gesendet, da eine Anfrage von IP :ipAddress sie ausgelöst hat.',
'footer_ps' => 'PS: Diese Nachricht wurde wegen einer Anfrage durch die IP-Adresse :ipAddress versendet.',
// admin test
'admin_test_subject' => 'Eine Testmeldung von Ihrer Firefly III Installation',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Als neue Buchung speichern statt zu aktualisieren.',
'reset_after' => 'Formular nach der Übermittlung zurücksetzen',
'errors_submission' => 'Ihre Übermittlung ist fehlgeschlagen. Bitte überprüfen Sie die Fehler.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(ohne Gruppierung)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Αποθήκευση ως νέα συναλλαγή αντί για ενημέρωση.',
'reset_after' => 'Επαναφορά φόρμας μετά την υποβολή',
'errors_submission' => 'Υπήρξε κάποιο λάθος με την υποβολή σας. Παρακαλώ ελέγξτε τα σφάλματα.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(χωρίς ομάδα)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Store as a new transaction instead of updating.',
'reset_after' => 'Reset form after submission',
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(ungrouped)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Almacenar como una nueva transacción en lugar de actualizar.',
'reset_after' => 'Restablecer formulario después del envío',
'errors_submission' => 'Hubo un problema con su envío. Por favor, compruebe los errores.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(sin agrupación)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Tallenna uutena tapahtumana päivityksen sijaan.',
'reset_after' => 'Tyhjennä lomake lähetyksen jälkeen',
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(ryhmittelemättömät)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Enregistrer comme une nouvelle opération au lieu de mettre à jour.',
'reset_after' => 'Réinitialiser le formulaire après soumission',
'errors_submission' => 'Certaines informations ne sont pas correctes dans votre formulaire. Veuillez vérifier les erreurs.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(Sans groupement)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Tárolás új tranzakcióként frissítés helyett.',
'reset_after' => 'Űrlap törlése a beküldés után',
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(nem csoportosított)',

View File

@@ -28,7 +28,7 @@ return [
'month' => '%B %Y',
'month_and_day' => '%e %B %Y',
'month_and_day_moment_js' => 'MMM D, YYYY',
'month_and_day_fns' => 'MMMM d, y',
'month_and_day_fns' => 'd MMMM, y',
'month_and_date_day' => '%A, %B %e %Y',
'month_and_day_no_year' => '%B %e',
'date_time' => '%e %B %Y, @ %T',

View File

@@ -75,7 +75,7 @@ return [
'new_asset_account' => 'Akun aset baru',
'new_expense_account' => 'Akun pengeluaran baru',
'new_revenue_account' => 'Akun pendapatan baru',
'new_liabilities_account' => 'New liability',
'new_liabilities_account' => 'Liabilitas baru',
'new_budget' => 'Anggaran baru',
'new_bill' => 'Bill baru',
'block_account_logout' => 'Kamu telah keluar Akun yang ditangguhkan tidak dapat menggunakan situs ini. Apakah Anda mendaftar dengan alamat email yang benar?',
@@ -83,14 +83,14 @@ return [
'flash_info' => 'Pesan',
'flash_warning' => 'PERINGATAN!',
'flash_error' => 'Kesalahan!',
'flash_danger' => 'Danger!',
'flash_danger' => 'Bahaya!',
'flash_info_multiple' => 'Ada satu pesan|Ada :count pesan',
'flash_error_multiple' => 'Ada satu kesalahan|Ada :count kesalahan',
'net_worth' => 'Nilai bersih',
'route_has_no_help' => 'Tidak ada bantuan untuk rute ini.',
'help_for_this_page' => 'Help for this page',
'no_help_could_be_found' => 'No help text could be found.',
'no_help_title' => 'Apologies, an error occurred.',
'help_for_this_page' => 'Bantuan untuk halaman ini',
'no_help_could_be_found' => 'Tidak ada teks bantuan yang dapat ditemukan.',
'no_help_title' => 'Maaf kakak, sebuah kesalahan telah terjadi.',
'two_factor_welcome' => 'Halo!',
'two_factor_enter_code' => 'Untuk melanjutkan, masukkan kode Pengecekan keamanan dua faktor Anda. Aplikasi Anda bisa menghasilkannya untuk Anda.',
'two_factor_code_here' => 'Masukkan kode di sini',
@@ -99,13 +99,13 @@ return [
'two_factor_forgot_title' => 'Kehilangan Pengecekan keamanan dua faktor',
'two_factor_forgot' => 'Saya lupa dua faktor saya.',
'two_factor_lost_header' => 'Kehilangan Pengecekan keamanan dua faktor Anda?',
'two_factor_lost_intro' => 'If you lost your backup codes as well, you have bad luck. This is not something you can fix from the web interface. You have two choices.',
'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">this entry in the FAQ</a> for instructions.',
'two_factor_lost_intro' => 'Jika Anda kehilangan kode cadangan Anda pula, keberuntungan Anda buruk sudah. Ini bukanlah sesuatu yang Anda dapat perbaiki dari antarmuka web. Anda mempunyai dua pilihan.',
'two_factor_lost_fix_self' => 'Jika Anda menjalankan contoh Firefly III Anda sendiri, baca <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">entri ini dalam FAQ</a> untuk intruksi.',
'two_factor_lost_fix_owner' => 'Jika tidak, kirimkan email ke pemilik situs, <a href="mailto::site_owner">:site_owner</a> dan mintalah mereka untuk menyetel ulang Pengecekan keamanan dua faktor Anda.',
'mfa_backup_code' => 'You have used a backup code to login to Firefly III. It can\'t be used again, so cross it from your list.',
'pref_two_factor_new_backup_codes' => 'Get new backup codes',
'pref_two_factor_backup_code_count' => 'You have :count valid backup code.|You have :count valid backup codes.',
'2fa_i_have_them' => 'I stored them!',
'mfa_backup_code' => 'Anda telah menggunakan sebuah kode cadangan untuk masuk ke Firefly III. Kode ini tidak dapat digunakan lagi, jadi coret itu dari daftar Anda.',
'pref_two_factor_new_backup_codes' => 'Hasilkan kode cadangan baru',
'pref_two_factor_backup_code_count' => 'Anda memiliki :count kode cadangan yang valid.|Anda memiliki :count kode cadangan yang valid.',
'2fa_i_have_them' => 'Saya telah menyimpannya!',
'warning_much_data' => ':days hari data mungkin perlu beberapa saat untuk memuat.',
'registered' => 'Anda telah berhasil mendaftar!',
'Default asset account' => 'Akun aset standar',
@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Store as a new transaction instead of updating.',
'reset_after' => 'Reset form after submission',
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(ungrouped)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Salva come nuova transazione invece di aggiornarla.',
'reset_after' => 'Resetta il modulo dopo l\'invio',
'errors_submission' => 'Errore durante l\'invio. Controlla gli errori segnalati qui sotto.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(non in un gruppo)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Store as a new transaction instead of updating.',
'reset_after' => 'Reset form after submission',
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(ungrouped)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Opslaan als nieuwe transactie ipv de huidige bij te werken.',
'reset_after' => 'Reset formulier na opslaan',
'errors_submission' => 'Er ging iets mis. Check de errors.',
'transaction_expand_split' => 'Split uitklappen',
'transaction_collapse_split' => 'Split inklappen',
// object groups
'default_group_title_name' => '(ongegroepeerd)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Zapisz jako nową zamiast aktualizować.',
'reset_after' => 'Wyczyść formularz po zapisaniu',
'errors_submission' => 'Coś poszło nie tak w czasie zapisu. Proszę sprawdź błędy.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(bez grupy)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Armazene como uma nova transação em vez de atualizar.',
'reset_after' => 'Resetar o formulário após o envio',
'errors_submission' => 'Há algo de errado com o seu envio. Por favor, verifique os erros abaixo.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(não agrupado)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Guarde como uma nova transação em vez de atualizar.',
'reset_after' => 'Repor o formulário após o envio',
'errors_submission' => 'Aconteceu algo errado com a sua submissão. Por favor, verifique os erros.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(não agrupado)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Stocați ca o tranzacție nouă în loc să actualizați.',
'reset_after' => 'Resetați formularul după trimitere',
'errors_submission' => 'A fost ceva în neregulă cu depunerea ta. Te rugăm să verifici erorile.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(negrupat)',

View File

@@ -83,7 +83,7 @@ return [
'flash_info' => 'Сообщение',
'flash_warning' => 'Предупреждение!',
'flash_error' => 'Ошибка!',
'flash_danger' => 'Danger!',
'flash_danger' => 'Опасность!',
'flash_info_multiple' => 'Есть одно сообщение|Есть :count сообщений',
'flash_error_multiple' => 'Есть одна ошибка|Есть :count ошибок',
'net_worth' => 'Мои сбережения',
@@ -420,7 +420,7 @@ return [
'apply_rule_selection' => 'Применить ":title" к выбранным вами транзакциям',
'apply_rule_selection_intro' => 'Такие правила, как ":title", обычно применяются только к новым или обновлённым транзакциям, но Firefly III может применить его для выбранных вами существующих транзакций. Это может быть полезно, если вы обновили правило, и вам нужно изменить ранее созданные транзакции в соответствии с новыми условиями.',
'include_transactions_from_accounts' => 'Включить транзакции с указанных счетов',
'include' => 'Include?',
'include' => 'Включить?',
'applied_rule_selection' => '{0} В вашем выборе ни одна транзакция не была изменена правилом ":title".|[1] В вашем выборе одна транзакция была изменена правилом ":title".|[2,*] :count транзакции(-ий) в вашем выборе было изменено правилом ":title".',
'execute' => 'Выполнить',
'apply_rule_group_selection' => 'Применить группу правил":title" к выбранным вами транзакциям',
@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Сохранить как новую транзакцию вместо обновления.',
'reset_after' => 'Сбросить форму после отправки',
'errors_submission' => 'При отправке что-то пошло не так. Пожалуйста, проверьте ошибки ниже.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(без группировки)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Namiesto aktualizácie uložiť ako novú transakciu.',
'reset_after' => 'Po odoslaní vynulovať formulár',
'errors_submission' => 'Pri odosielaní sa niečo nepodarilo. Skontrolujte prosím chyby.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(nezoskupené)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Spara en ny transaktion istället för att uppdatera.',
'reset_after' => 'Återställ formulär efter inskickat',
'errors_submission' => 'Något fel uppstod med inskickningen. Vänligen kontrollera felen nedan.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(ogrupperad)',

View File

@@ -1692,6 +1692,8 @@ return [
'store_as_new' => 'Store as a new transaction instead of updating.',
'reset_after' => 'Reset form after submission',
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(ungrouped)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Lưu trữ như một giao dịch mới thay vì cập nhật.',
'reset_after' => 'Đặt lại mẫu sau khi gửi',
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(chưa nhóm)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => '保存为新交易而不是更新此交易。',
'reset_after' => '提交后重置表单',
'errors_submission' => '您提交的内容有误,请检查错误信息。',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(未分组)',

View File

@@ -1691,6 +1691,8 @@ return [
'store_as_new' => 'Store as a new transaction instead of updating.',
'reset_after' => 'Reset form after submission',
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
'transaction_expand_split' => 'Expand split',
'transaction_collapse_split' => 'Collapse split',
// object groups
'default_group_title_name' => '(ungrouped)',