Various PSR12 code cleanup

This commit is contained in:
James Cole
2022-12-29 19:43:43 +01:00
parent 56b9b66352
commit 5b8e01fbfb
240 changed files with 8059 additions and 7895 deletions

View File

@@ -77,7 +77,7 @@ export default defineComponent(
const getLocale = function () {
return (new Prefs).get('locale').then(data => {
const locale = data.data.data.attributes.data.replace('_','-');
const locale = data.data.data.attributes.data.replace('_', '-');
ffStore.setLocale(locale);
}).catch((err) => {

View File

@@ -33,7 +33,7 @@ export default class Get extends Api {
*/
get(identifier, date) {
let params = {date: date};
if(!date) {
if (!date) {
return this.apiGet(identifier);
}
return this.apiGet(identifier, params);

View File

@@ -21,7 +21,7 @@
import {api} from "boot/axios";
import Api from "src/api/root/api";
export default class List extends Api{
export default class List extends Api {
constructor() {
super('accounts');
}

View File

@@ -20,7 +20,7 @@
import {api} from "boot/axios";
export default class Authenticate {
export default class Authenticate {
async authenticate() {
return await api.get('/sanctum/csrf-cookie');
}

View File

@@ -23,12 +23,14 @@ import {api} from "boot/axios";
export default class Get {
get(identifier) {
let url = '/api/v1/categories/' + identifier;
return api.get(url);
return api.get(url);
}
transactions(identifier, page, cacheKey) {
let url = '/api/v1/categories/' + identifier + '/transactions';
return api.get(url, {params: {page: page, cache: cacheKey}});
}
transactionsWithoutCategory(page, cacheKey) {
let url = '/api/v1/categories/transactions-without-category';
return api.get(url, {params: {page: page, cache: cacheKey}});

View File

@@ -23,8 +23,9 @@ import {api} from "boot/axios";
export default class Get {
get(identifier) {
let url = '/api/v1/currencies/' + identifier;
return api.get(url);
return api.get(url);
}
transactions(identifier, page, cacheKey) {
let url = '/api/v1/currencies/' + identifier + '/transactions';
return api.get(url, {params: {page: page, cache: cacheKey}});

View File

@@ -20,9 +20,12 @@
import {api} from "boot/axios";
import Authenticate from '../authenticate/index';
export default class Currencies {
default() {
let auth = new Authenticate();
return auth.authenticate().then(() => {return api.get('/api/v1/currencies/default')});
return auth.authenticate().then(() => {
return api.get('/api/v1/currencies/default')
});
}
}

View File

@@ -25,6 +25,7 @@ export default class Post {
let url = '/api/v1/currencies';
return api.post(url, submission);
}
makeDefault(currency) {
let url = '/api/v1/currencies/' + currency + '/default';
return api.post(url);

View File

@@ -23,8 +23,9 @@ import {api} from "boot/axios";
export default class Get {
get(identifier) {
let url = '/api/v1/piggy_banks/' + identifier;
return api.get(url);
return api.get(url);
}
transactions(identifier, page, cacheKey) {
let url = '/api/v1/piggy_banks/' + identifier + '/transactions';
return api.get(url, {params: {page: page, cache: cacheKey}});

View File

@@ -24,6 +24,7 @@ export default class Preferences {
getByName(name) {
return api.get('/api/v1/preferences/' + name);
}
postByName(name, value) {
return api.post('/api/v1/preferences', {name: name, data: value});
}

View File

@@ -23,6 +23,6 @@ import {api} from "boot/axios";
export default class Get {
get(identifier) {
let url = '/api/v1/recurrences/' + identifier;
return api.get(url);
return api.get(url);
}
}

View File

@@ -23,11 +23,12 @@ import {api} from "boot/axios";
export default class Get {
get(identifier, date) {
let url = '/api/v1/rule_groups/' + identifier;
if(!date) {
if (!date) {
return api.get(url);
}
return api.get(url, {params: {date: date}});
}
rules(identifier, page, cacheKey) {
let url = '/api/v1/rule_groups/' + identifier + '/rules';
return api.get(url, {params: {page: page, cache: cacheKey}});

View File

@@ -23,7 +23,7 @@ import {api} from "boot/axios";
export default class Get {
get(identifier, date) {
let url = '/api/v1/rules/' + identifier;
if(!date) {
if (!date) {
return api.get(url);
}
return api.get(url, {params: {date: date}});

View File

@@ -25,6 +25,7 @@ export default class Get {
let url = '/api/v1/bills/' + identifier;
return api.get(url);
}
transactions(identifier, page, cacheKey) {
let url = '/api/v1/bills/' + identifier + '/transactions';
return api.get(url, {params: {page: page, cache: cacheKey}});

View File

@@ -22,7 +22,7 @@ import {api} from "boot/axios";
//import createAuthRefreshInterceptor from 'axios-auth-refresh';
export default class About {
list() {
return api.get('/api/v1/about');
}
list() {
return api.get('/api/v1/about');
}
}

View File

@@ -1,4 +1,3 @@
/*
* configuration.js
* Copyright (c) 2022 james@firefly-iii.org
@@ -22,11 +21,11 @@
import {api} from "boot/axios";
export default class Configuration {
get (identifier) {
get(identifier) {
return api.get('/api/v1/configuration/' + identifier);
}
put (identifier, value) {
put(identifier, value) {
return api.put('/api/v1/configuration/' + identifier, value);
}
}

View File

@@ -25,6 +25,7 @@ export default class Get {
let url = '/api/v1/tags/' + identifier;
return api.get(url);
}
transactions(identifier, page, cacheKey) {
let url = '/api/v1/tags/' + identifier + '/transactions';
return api.get(url, {params: {page: page, cache: cacheKey}});

View File

@@ -33,13 +33,14 @@ export default class Get extends Api {
*/
get(identifier, date) {
let params = {date: date};
if(!date) {
if (!date) {
return this.apiGet(identifier);
}
return this.apiGet(identifier, params);
}
transactions(identifier, params) {
if(!params) {
if (!params) {
return this.apiGetTransactions(identifier);
}
return this.apiGetTransactions(identifier, params);

View File

@@ -24,6 +24,7 @@ export default class Preferences {
get(name) {
return api.get('/api/v2/preferences/' + name);
}
// postByName(name, value) {
// return api.post('/api/v1/preferences', {name: name, data: value});
// }

View File

@@ -52,6 +52,7 @@ export default class Api {
}
return api.get(url);
}
/**
*
* @param object

View File

@@ -23,9 +23,9 @@ import axios from 'axios'
import {setupCache} from 'axios-cache-adapter'
const cache = setupCache({
maxAge: 15 * 60 * 1000,
exclude: { query: false }
})
maxAge: 15 * 60 * 1000,
exclude: {query: false}
})
// Be careful when using SSR for cross-request state pollution
// due to creating a Singleton instance here;

View File

@@ -18,11 +18,11 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { boot } from 'quasar/wrappers'
import { createI18n } from 'vue-i18n'
import {boot} from 'quasar/wrappers'
import {createI18n} from 'vue-i18n'
import messages from 'src/i18n'
export default boot(({ app }) => {
export default boot(({app}) => {
const i18n = createI18n({
locale: 'en-US',
messages

View File

@@ -19,14 +19,14 @@
-->
<template>
<div class="q-ma-md" v-if="showAlert">
<div v-if="showAlert" class="q-ma-md">
<div class="row">
<div class="col-12">
<q-banner :class="alertClass" inline-actions>
{{ message }}
<template v-slot:action>
<q-btn flat @click="dismissBanner" color="white" label="Dismiss"/>
<q-btn flat color="white" v-if="showAction" :to="actionLink" :label="actionText"/>
<q-btn color="white" flat label="Dismiss" @click="dismissBanner"/>
<q-btn v-if="showAction" :label="actionText" :to="actionLink" color="white" flat/>
</template>
</q-banner>
</div>
@@ -90,7 +90,7 @@ export default {
}
this.$q.localStorage.set('flash', false);
},
dismissBanner: function() {
dismissBanner: function () {
this.showAlert = false;
}
}

View File

@@ -33,29 +33,23 @@
</template>
<script>
import {
defineComponent,
PropType,
computed,
ref,
toRef,
Ref,
} from 'vue';
import { Todo, Meta } from './models';
import {computed, defineComponent, PropType, ref, Ref, toRef,} from 'vue';
import {Meta, Todo} from './models';
function useClickCount() {
const clickCount = ref(0);
function increment() {
clickCount.value += 1
return clickCount.value;
}
return { clickCount, increment };
return {clickCount, increment};
}
function useDisplayTodo(todos: Ref<Todo[]>) {
const todoCount = computed(() => todos.value.length);
return { todoCount };
return {todoCount};
}
export default defineComponent({
@@ -66,11 +60,11 @@ export default defineComponent({
required: true
},
todos: {
type: Array as PropType<Todo[]>,
type: Array as PropType < Todo[] >,
default: () => []
},
meta: {
type: Object as PropType<Meta>,
type: Object as PropType < Meta >,
required: true
},
active: {
@@ -78,7 +72,7 @@ export default defineComponent({
}
},
setup(props) {
return { ...useClickCount(), ...useDisplayTodo(toRef(props, 'todos')) };
return {...useClickCount(), ...useDisplayTodo(toRef(props, 'todos'))};
},
});
</script>

View File

@@ -22,14 +22,15 @@
<div class="q-pa-xs">
<div>
<!-- <DatePicker v-model="range" is-range :is-dark="darkMode" :model-config="modelConfig"/> -->
<q-date v-model="localRange" range minimal mask="YYYY-MM-DD"/>
<q-date v-model="localRange" mask="YYYY-MM-DD" minimal range/>
</div>
<div class="q-mt-xs">
<span class="q-mr-xs"><q-btn @click="resetRange" size="sm" color="primary" label="Reset"/></span>
<q-btn color="primary" size="sm" label="Change range" icon-right="fas fa-caret-down" title="More options in preferences">
<span class="q-mr-xs"><q-btn color="primary" label="Reset" size="sm" @click="resetRange"/></span>
<q-btn color="primary" icon-right="fas fa-caret-down" label="Change range" size="sm"
title="More options in preferences">
<q-menu>
<q-list style="min-width: 100px">
<q-item clickable v-close-popup v-for="choice in rangeChoices" @click="setViewRange(choice)">
<q-item v-for="choice in rangeChoices" v-close-popup clickable @click="setViewRange(choice)">
<q-item-section>{{ $t('firefly.pref_' + choice.value) }}</q-item-section>
</q-item>
</q-list>

View File

@@ -20,16 +20,16 @@
<template>
<q-item
:href="link"
clickable
tag="a"
target="_blank"
:href="link"
>
<q-item-section
v-if="icon"
avatar
>
<q-icon :name="icon" />
<q-icon :name="icon"/>
</q-item-section>
<q-item-section>
@@ -42,7 +42,7 @@
</template>
<script>
import { defineComponent } from 'vue'
import {defineComponent} from 'vue'
export default defineComponent({
name: 'EssentialLink',

View File

@@ -27,7 +27,7 @@
</q-item-section>
</q-item>
<q-separator/>
<ApexChart ref="chart" height="350" type="line" :options="options" :series="series"></ApexChart>
<ApexChart ref="chart" :options="options" :series="series" height="350" type="line"></ApexChart>
</q-card>
</div>
<div>
@@ -107,11 +107,11 @@ export default {
},
methods: {
numberFormatter: function (value, index) {
if(index instanceof Object) {
if (index instanceof Object) {
let currencyCode = this.currencies[index.seriesIndex] ?? 'EUR';
return Intl.NumberFormat(this.locale, {style: 'currency', currency: currencyCode}).format(value);
}
if(Number.isInteger(index)) {
if (Number.isInteger(index)) {
let currencyCode = this.currencies[index] ?? 'EUR';
return Intl.NumberFormat(this.locale, {style: 'currency', currency: currencyCode}).format(value);
}
@@ -142,10 +142,10 @@ export default {
series = {};
series.name = data[i].label;
series.data = [];
if(!data[i].converted) {
if (!data[i].converted) {
this.currencies.push(data[i].currency_code);
}
if(data[i].converted) {
if (data[i].converted) {
this.currencies.push(data[i].native_code);
}
for (let ii in data[i].entries) {

View File

@@ -33,10 +33,10 @@
<q-card-section horizontal>
<q-card-section>
<q-circular-progress
:value="percentage"
size="50px"
:thickness="0.22"
:value="percentage"
color="positive"
size="50px"
track-color="negative"
/>
</q-card-section>
@@ -52,10 +52,12 @@
{{ formatAmount(item.code, item.sum) }}<span v-if="index+1 !== unpaid.length"> + </span></span>
</span>
<br/>
<span v-if="paid.length > 0" :title="formatAmount(this.currency, this.paidAmount)">{{ $t('firefly.bills_paid') }}:</span>
<span v-if="paid.length > 0" :title="formatAmount(this.currency, this.paidAmount)">{{
$t('firefly.bills_paid')
}}:</span>
<span v-for="(item, index) in paid">
<span :title="formatAmount(item.native_code, item.native_sum)">
{{formatAmount(item.code, item.sum) }}
{{ formatAmount(item.code, item.sum) }}
</span>
<span v-if="index+1 !== paid.length"> + </span></span>
</q-card-section>

View File

@@ -139,8 +139,8 @@ export default {
},
parseBudgetLimits: function (data, budget) {
console.log('Parse for ' + budget.name);
for(let i in data) {
if(data.hasOwnProperty(i)) {
for (let i in data) {
if (data.hasOwnProperty(i)) {
const current = data[i];
budget.limits.push(
{
@@ -149,7 +149,7 @@ export default {
end: new Date(current.attributes.end),
}
);
console.log('A ' + new Date(current.attributes.start));
console.log('A ' + new Date(current.attributes.start));
console.log('B ' + this.store.getRange.start);
}
}

View File

@@ -32,14 +32,16 @@
<q-separator/>
<q-card-section horizontal>
<q-card-section>
<q-icon name="fas fa-chart-line" size="50px" :color="primary > 0 ? 'positive' : 'negative'"/>
<q-icon :color="primary > 0 ? 'positive' : 'negative'" name="fas fa-chart-line" size="50px"/>
</q-card-section>
<q-separator vertical/>
<q-card-section>
<strong>{{ formatAmount(currency, primary) }}</strong><br/>
<small>
<span v-for="(item, index) in netWorth">
<span :title="formatAmount(item.native_code, item.native_sum)">{{ formatAmount(item.code, item.sum) }}</span>
<span :title="formatAmount(item.native_code, item.native_sum)">{{
formatAmount(item.code, item.sum)
}}</span>
<span v-if="index+1 !== netWorth.length"> + </span></span>
</small>
</q-card-section>
@@ -104,7 +106,7 @@ export default {
if (!current.converted) {
this.primary = this.primary + parseFloat(current.sum);
}
if(parseFloat(current.sum) !== 0.0) {
if (parseFloat(current.sum) !== 0.0) {
this.netWorth.push(
{
sum: current.sum,
@@ -120,7 +122,10 @@ export default {
},
// TODO this method is recycled a lot.
formatAmount: function (currencyCode, amount) {
return Intl.NumberFormat(this.store?.getLocale ?? 'en-US', {style: 'currency', currency: currencyCode}).format(amount);
return Intl.NumberFormat(this.store?.getLocale ?? 'en-US', {
style: 'currency',
currency: currencyCode
}).format(amount);
},
},
}

View File

@@ -21,7 +21,7 @@
<template>
<div class="row">
<div class="col q-mb-xs">
<q-banner rounded class="bg-purple-8 text-white">
<q-banner class="bg-purple-8 text-white" rounded>
Hi! You must be new to Firefly III. Welcome! Please fill in this form to create some basic accounts and get you
started.
</q-banner>
@@ -37,12 +37,12 @@
<div class="row q-mb-xs">
<div class="col-8 offset-2">
<q-input
:error-message="bank_name_error"
:error="bank_name_has_error"
bottom-slots
v-model="bank_name"
:disable="disabledInput"
clearable
outlined v-model="bank_name" label="The name of your bank">
:error="bank_name_has_error"
:error-message="bank_name_error"
bottom-slots
clearable label="The name of your bank" outlined>
<template v-slot:prepend>
<q-icon name="fas fa-university"/>
</template>
@@ -52,23 +52,23 @@
<div class="row q-mb-xs">
<div class="col-3 offset-2">
<q-select
:error-message="currency_error"
:error="currency_has_error"
bottom-slots
v-model="currency"
:disable="disabledInput"
outlined
v-model="currency" emit-value class="q-pr-xs"
map-options :options="currencies" label="Currency"/>
:error="currency_has_error"
:error-message="currency_error"
:options="currencies"
bottom-slots class="q-pr-xs" emit-value
label="Currency" map-options outlined/>
</div>
<div class="col-5">
<q-input
:error-message="bank_balance_error"
:error="bank_balance_has_error"
bottom-slots
v-model="bank_balance"
:disable="disabledInput"
outlined
v-model="bank_balance" :mask="balance_input_mask" reverse-fill-mask fill-mask="0"
label="Today's balance" hint="Enter your current balance">
:error="bank_balance_has_error"
:error-message="bank_balance_error"
:mask="balance_input_mask"
bottom-slots fill-mask="0" hint="Enter your current balance" label="Today's balance"
outlined reverse-fill-mask>
<template v-slot:prepend>
<q-icon name="fas fa-money-bill-wave"/>
</template>
@@ -78,13 +78,13 @@
<div class="row q-mb-xs">
<div class="col-8 offset-2">
<q-input
:error-message="savings_balance_error"
:error="savings_balance_has_error"
bottom-slots
v-model="savings_balance"
:disable="disabledInput"
outlined
v-model="savings_balance" :mask="balance_input_mask" reverse-fill-mask fill-mask="0"
label="Today's savings account balance" hint="Leave empty or set to zero if not relevant.">
:error="savings_balance_has_error"
:error-message="savings_balance_error"
:mask="balance_input_mask"
bottom-slots fill-mask="0" hint="Leave empty or set to zero if not relevant." label="Today's savings account balance"
outlined reverse-fill-mask>
<template v-slot:prepend>
<q-icon name="fas fa-coins"/>
</template>
@@ -105,21 +105,21 @@
<div class="row q-mb-xs">
<div class="col-8 offset-2">
<q-select
:error-message="language_error"
:error="language_has_error"
bottom-slots
outlined
v-model="language"
:disable="disabledInput"
v-model="language" emit-value
map-options :options="languages" label="I prefer the following language"/>
:error="language_has_error"
:error-message="language_error"
:options="languages"
bottom-slots emit-value
label="I prefer the following language" map-options outlined/>
</div>
</div>
<div class="row">
<div class="col-10 offset-2">
<q-checkbox
:disable="disabledInput"
v-model="manage_cash" label="I want to manage cash using Firefly III"/>
v-model="manage_cash"
:disable="disabledInput" label="I want to manage cash using Firefly III"/>
<q-banner v-if="manage_cash_has_error" class="text-white bg-red">{{ manage_cash_error }}</q-banner>
</div>
</div>
@@ -127,8 +127,8 @@
<div class="row">
<div class="col-8 offset-2">
<q-checkbox
:disable="disabledInput"
v-model="have_cc" label="I have a credit card."/>
v-model="have_cc"
:disable="disabledInput" label="I have a credit card."/>
<q-banner v-if="have_cc_has_error" class="text-white bg-red">{{ have_cc_error }}</q-banner>
</div>
</div>
@@ -136,8 +136,8 @@
<div class="row">
<div class="col-8 offset-2">
<q-checkbox
:disable="disabledInput"
v-model="have_questions" label="I know where to go when I have questions"/>
v-model="have_questions"
:disable="disabledInput" label="I know where to go when I have questions"/>
<div class="q-px-sm">
Hint: visit <a href="https://github.com/firefly-iii/firefly-iii/discussions/">GitHub</a>
or <a href="#">Gitter.im</a>. You can also

View File

@@ -33,10 +33,10 @@
<q-card-section horizontal>
<q-card-section>
<q-circular-progress
:value="percentage"
size="50px"
:thickness="0.22"
:value="percentage"
color="negative"
size="50px"
track-color="positive"
/>
</q-card-section>
@@ -48,14 +48,20 @@
<span :title="formatAmount(this.currency, this.budgetedAmount)">{{ $t('firefly.budgeted') }}</span>:
<!-- list budgeted -->
<span v-for="(item, index) in budgeted">
<span :title="formatAmount(item.native_code, item.native_sum)">{{ formatAmount(item.code, item.sum) }}</span>
<span :title="formatAmount(item.native_code, item.native_sum)">{{
formatAmount(item.code, item.sum)
}}</span>
<span v-if="index+1 !== budgeted.length"> + </span>
</span>
<br />
<span v-if="spent.length > 0" :title="formatAmount(this.currency, this.spentAmount)">{{ $t('firefly.spent') }}: </span>
<br/>
<span v-if="spent.length > 0" :title="formatAmount(this.currency, this.spentAmount)">{{
$t('firefly.spent')
}}: </span>
<!-- list spent -->
<span v-for="(item, index) in spent">
<span :title="formatAmount(item.native_code, item.native_sum)">{{ formatAmount(item.code, item.sum) }}</span>
<span :title="formatAmount(item.native_code, item.native_sum)">{{
formatAmount(item.code, item.sum)
}}</span>
<span v-if="index+1 !== spent.length"> + </span></span>
</q-card-section>
</q-card-section>

View File

@@ -25,7 +25,7 @@
<q-item-section>
<q-item-label><strong>{{ accountName }}</strong>
<span v-if="accountCurrencyCode !== ''">
({{ formatAmount(accountCurrencyCode,accountBalance) }})
({{ formatAmount(accountCurrencyCode, accountBalance) }})
</span>
</q-item-label>
</q-item-section>
@@ -52,8 +52,8 @@
{{ tr.description }}
<br/>
</span>
<router-link :to="{ name: 'transactions.show', params: {id: transaction.transactionGroupId} }"
v-if="transaction.transactions.length === 1">
<router-link v-if="transaction.transactions.length === 1"
:to="{ name: 'transactions.show', params: {id: transaction.transactionGroupId} }">
{{ tr.description }}
</router-link>
</span>
@@ -86,8 +86,13 @@
<!-- show foreign amount if present and not converted (may lead to double amounts) -->
<span v-if="null !== tr.foreign_amount">
<span v-if="false === tr.foreign_currency_converted"> ({{ formatAmount(tr.foreign_currency_code, tr.foreign_amount) }})</span>
<span v-if="true === tr.foreign_currency_converted" :title="formatAmount(tr.foreign_currency_code, tr.foreign_amount)"> ({{ formatAmount(tr.native_currency_code, tr.native_foreign_amount) }})</span>
<span v-if="false === tr.foreign_currency_converted"> ({{
formatAmount(tr.foreign_currency_code, tr.foreign_amount)
}})</span>
<span v-if="true === tr.foreign_currency_converted"
:title="formatAmount(tr.foreign_currency_code, tr.foreign_amount)"> ({{
formatAmount(tr.native_currency_code, tr.native_foreign_amount)
}})</span>
</span>
<br v-if="transaction.transactions.length > 1"/>
</span>

View File

@@ -20,8 +20,8 @@
<template>
<div class="row">
<div class="col q-mr-sm" v-for="(account) in accounts">
<TransactionList :account-id="account" />
<div v-for="(account) in accounts" class="col q-mr-sm">
<TransactionList :account-id="account"/>
</div>
</div>
</template>
@@ -44,13 +44,13 @@ export default {
this.getAccounts();
},
methods: {
getAccounts: function() {
getAccounts: function () {
(new Preferences).get('frontpageAccounts').then((response) => this.parseAccounts(response.data));
},
parseAccounts: function(data) {
parseAccounts: function (data) {
const content = data.data.attributes.data;
for(let i in content) {
if(content.hasOwnProperty(i)) {
for (let i in content) {
if (content.hasOwnProperty(i)) {
this.accounts.push(content[i]);
}
}

View File

@@ -20,13 +20,13 @@
<template>
<q-table
:title="title"
:rows="rows"
:columns="columns"
row-key="group_id"
v-model:pagination="pagination"
:columns="columns"
:loading="loading"
:rows="rows"
:title="title"
class="q-ma-md"
row-key="group_id"
@request="onRequest"
>
<template v-slot:header="props">
@@ -44,13 +44,13 @@
<template v-slot:body="props">
<q-tr :props="props">
<q-td auto-width>
<q-btn size="sm" v-if="props.row.splits.length > 1" round dense @click="props.expand = !props.expand"
:icon="props.expand ? 'fas fa-minus-circle' : 'fas fa-plus-circle'"/>
<q-btn v-if="props.row.splits.length > 1" :icon="props.expand ? 'fas fa-minus-circle' : 'fas fa-plus-circle'" dense round size="sm"
@click="props.expand = !props.expand"/>
</q-td>
<q-td key="type" :props="props">
<q-icon class="fas fa-long-arrow-alt-right" v-if="'deposit' === props.row.type.toLowerCase()"></q-icon>
<q-icon class="fas fa-long-arrow-alt-left" v-if="'withdrawal' === props.row.type.toLowerCase()"></q-icon>
<q-icon class="fas fa-arrows-alt-h" v-if="'transfer' === props.row.type.toLowerCase()"></q-icon>
<q-icon v-if="'deposit' === props.row.type.toLowerCase()" class="fas fa-long-arrow-alt-right"></q-icon>
<q-icon v-if="'withdrawal' === props.row.type.toLowerCase()" class="fas fa-long-arrow-alt-left"></q-icon>
<q-icon v-if="'transfer' === props.row.type.toLowerCase()" class="fas fa-arrows-alt-h"></q-icon>
</q-td>
<q-td key="description" :props="props">
<router-link :to="{ name: 'transactions.show', params: {id: props.row.group_id} }" class="text-primary">
@@ -79,12 +79,12 @@
<q-td key="menu" :props="props">
<q-btn-dropdown color="primary" label="Actions" size="sm">
<q-list>
<q-item clickable v-close-popup :to="{name: 'transactions.edit', params: {id: props.row.group_id}}">
<q-item v-close-popup :to="{name: 'transactions.edit', params: {id: props.row.group_id}}" clickable>
<q-item-section>
<q-item-label>Edit</q-item-label>
</q-item-section>
</q-item>
<q-item clickable v-close-popup
<q-item v-close-popup clickable
@click="deleteTransaction(props.row.group_id, props.row.description, props.row.group_title)">
<q-item-section>
<q-item-label>Delete</q-item-label>
@@ -94,7 +94,7 @@
</q-btn-dropdown>
</q-td>
</q-tr>
<q-tr v-show="props.expand" :props="props" v-for="currentRow in props.row.splits">
<q-tr v-for="currentRow in props.row.splits" v-show="props.expand" :props="props">
<q-td auto-width/>
<q-td auto-width/>
<q-td>

View File

@@ -33,17 +33,17 @@
// Tip: Use the "Theme Builder" on Quasar's documentation website.
// $primary : #1976D2;
$primary : #1E6581;
$primary: #1E6581;
$secondary : #26A69A;
$accent : #9C27B0;
$secondary: #26A69A;
$accent: #9C27B0;
$dark : #1D1D1D;
$dark: #1D1D1D;
// $positive : #21BA45;
$positive: #64B624;
// $negative : #C10015;
$negative: #CD5029;
$info : #31CCEC;
$warning : #F2C037;
$info: #31CCEC;
$warning: #F2C037;

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "bg",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "\u0418\u043c\u0435",
"amount_min": "\u041c\u0438\u043d\u0438\u043c\u0430\u043b\u043d\u0430 \u0441\u0443\u043c\u0430",
"amount_max": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u043d\u0430 \u0441\u0443\u043c\u0430",
"url": "URL",
"title": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435",
"first_date": "\u041f\u044a\u0440\u0432\u0430 \u0434\u0430\u0442\u0430",
"repetitions": "\u041f\u043e\u0432\u0442\u043e\u0440\u0435\u043d\u0438\u044f",
"description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
"iban": "IBAN",
"skip": "\u041f\u0440\u043e\u043f\u0443\u0441\u043d\u0438",
"date": "\u0414\u0430\u0442\u0430"
},
"list": {
"name": "\u0418\u043c\u0435",
"account_number": "Account number",
"currentBalance": "\u0422\u0435\u043a\u0443\u0449 \u0431\u0430\u043b\u0430\u043d\u0441",
"lastActivity": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442",
"active": "\u0410\u043a\u0442\u0438\u0432\u0435\u043d \u043b\u0438 \u0435?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "\u0411\u044e\u0434\u0436\u0435\u0442\u0438",
"subscriptions": "\u0410\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442\u0438",
"transactions": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
"title_expenses": "\u0420\u0430\u0437\u0445\u043e\u0434\u0438",
"title_withdrawal": "\u0420\u0430\u0437\u0445\u043e\u0434\u0438",
"title_revenue": "\u041f\u0440\u0438\u0445\u043e\u0434\u0438",
"title_deposit": "\u041f\u0440\u0438\u0445\u043e\u0434\u0438",
"title_transfer": "\u041f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0438\u044f",
"title_transfers": "\u041f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0438\u044f",
"asset_accounts": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438",
"expense_accounts": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u0438",
"revenue_accounts": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u0438",
"liabilities_accounts": "\u0417\u0430\u0434\u044a\u043b\u0436\u0435\u043d\u0438\u044f"
},
"firefly": {
"actions": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
"edit": "\u041f\u0440\u043e\u043c\u0435\u043d\u0438",
"delete": "\u0418\u0437\u0442\u0440\u0438\u0439",
"reconcile": "\u0421\u044a\u0433\u043b\u0430\u0441\u0443\u0432\u0430\u0439",
"create_new_asset": "\u0421\u044a\u0437\u0434\u0430\u0439 \u043d\u043e\u0432\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438",
"confirm_action": "Confirm action",
"new_budget": "\u041d\u043e\u0432 \u0431\u044e\u0434\u0436\u0435\u0442",
"new_asset_account": "\u041d\u043e\u0432\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438",
"newTransfer": "\u041d\u043e\u0432\u043e \u043f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "\u041d\u043e\u0432 \u0434\u0435\u043f\u043e\u0437\u0438\u0442",
"newWithdrawal": "\u041d\u043e\u0432 \u0440\u0430\u0437\u0445\u043e\u0434",
"bills_paid": "\u041f\u043b\u0430\u0442\u0435\u043d\u0438 \u0441\u043c\u0435\u0442\u043a\u0438",
"left_to_spend": "\u041e\u0441\u0442\u0430\u043d\u0430\u043b\u0438 \u0437\u0430 \u0445\u0430\u0440\u0447\u0435\u043d\u0435",
"no_budget": "(\u0431\u0435\u0437 \u0431\u044e\u0434\u0436\u0435\u0442)",
"budgeted": "\u0411\u044e\u0434\u0436\u0435\u0442\u0438\u0440\u0430\u043d\u0438",
"spent": "\u041f\u043e\u0445\u0430\u0440\u0447\u0435\u043d\u0438",
"no_bill": "(\u043d\u044f\u043c\u0430 \u0441\u043c\u0435\u0442\u043a\u0430)",
"rule_trigger_source_account_starts_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430\u043f\u043e\u0447\u0432\u0430 \u0441..",
"rule_trigger_source_account_ends_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430\u0432\u044a\u0440\u0448\u0432\u0430 \u0441..",
"rule_trigger_source_account_is_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0435..",
"rule_trigger_source_account_contains_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "ID \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0435 \u0442\u043e\u0447\u043d\u043e..",
"rule_trigger_destination_account_id_choice": "ID \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0435 \u0442\u043e\u0447\u043d\u043e..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "\u0420\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0435 \u0441\u043c\u0435\u0442\u043a\u0430 (\u0432 \u0431\u0440\u043e\u0439)",
"rule_trigger_destination_is_cash_choice": "\u041f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0435 \u0441\u043c\u0435\u0442\u043a\u0430 (\u0432 \u0431\u0440\u043e\u0439)",
"rule_trigger_source_account_nr_starts_choice": "\u041d\u043e\u043c\u0435\u0440\u044a\u0442 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \/ IBAN \u0437\u0430\u043f\u043e\u0447\u0432\u0430 \u0441..",
"rule_trigger_source_account_nr_ends_choice": "\u041d\u043e\u043c\u0435\u0440\u044a\u0442 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \/ IBAN \u0437\u0430\u0432\u044a\u0440\u0448\u0432\u0430 \u0441..",
"rule_trigger_source_account_nr_is_choice": "\u041d\u043e\u043c\u0435\u0440\u044a\u0442 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \/ IBAN \u0435..",
"rule_trigger_source_account_nr_contains_choice": "\u041d\u043e\u043c\u0435\u0440\u044a\u0442 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \/ IBAN \u0441\u044a\u0434\u044a\u0440\u0436\u0430..",
"rule_trigger_destination_account_starts_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430\u043f\u043e\u0447\u0432\u0430 \u0441..",
"rule_trigger_destination_account_ends_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430\u0432\u044a\u0440\u0448\u0432\u0430 \u0441..",
"rule_trigger_destination_account_is_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0435..",
"rule_trigger_destination_account_contains_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430..",
"rule_trigger_destination_account_nr_starts_choice": "\u041d\u043e\u043c\u0435\u0440\u044a\u0442 \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \/ IBAN \u0437\u0430\u043f\u043e\u0447\u0432\u0430 \u0441..",
"rule_trigger_destination_account_nr_ends_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430\u0432\u044a\u0440\u0448\u0432\u0430 \u0441..",
"rule_trigger_destination_account_nr_is_choice": "\u041d\u043e\u043c\u0435\u0440\u044a\u0442 \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \/ IBAN \u0435..",
"rule_trigger_destination_account_nr_contains_choice": "\u041d\u043e\u043c\u0435\u0440\u044a\u0442 \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \/ IBAN \u0441\u044a\u0434\u044a\u0440\u0436\u0430..",
"rule_trigger_transaction_type_choice": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0435 \u043e\u0442 \u0442\u0438\u043f..",
"rule_trigger_category_is_choice": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f\u0442\u0430 \u0435..",
"rule_trigger_amount_less_choice": "\u0421\u0443\u043c\u0430\u0442\u0430 \u0435 \u043f\u043e-\u043c\u0430\u043b\u043a\u043e \u043e\u0442..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "\u0421\u0443\u043c\u0430\u0442\u0430 \u0435 \u043f\u043e-\u0433\u043e\u043b\u044f\u043c\u0430 \u043e\u0442..",
"rule_trigger_description_starts_choice": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0442\u043e \u0437\u0430\u043f\u043e\u0447\u0432\u0430 \u0441..",
"rule_trigger_description_ends_choice": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0442\u043e \u0437\u0430\u0432\u044a\u0440\u0448\u0432\u0430 \u0441..",
"rule_trigger_description_contains_choice": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0442\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430..",
"rule_trigger_description_is_choice": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0442\u043e \u0435..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "\u0414\u0430\u0442\u0430\u0442\u0430 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0435 \u043f\u0440\u0435\u0434\u0438..",
"rule_trigger_date_after_choice": "\u0414\u0430\u0442\u0430\u0442\u0430 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0435 \u0441\u043b\u0435\u0434..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "\u0411\u044e\u0434\u0436\u0435\u0442\u044a\u0442 \u0435..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "\u0412\u0430\u043b\u0443\u0442\u0430\u0442\u0430 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0435..",
"rule_trigger_foreign_currency_is_choice": "\u0427\u0443\u0436\u0434\u0430\u0442\u0430 \u0432\u0430\u043b\u0443\u0442\u0430 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0435..",
"rule_trigger_has_attachments_choice": "\u0418\u043c\u0430 \u043f\u043e\u043d\u0435 \u0442\u043e\u043b\u043a\u043e\u0432\u0430 \u043f\u0440\u0438\u043a\u0430\u0447\u0435\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435",
"rule_trigger_has_no_category_choice": "\u041d\u044f\u043c\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
"rule_trigger_has_any_category_choice": "\u0418\u043c\u0430 (\u043d\u044f\u043a\u0430\u043a\u0432\u0430) \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
"rule_trigger_has_no_budget_choice": "\u041d\u044f\u043c\u0430 \u0431\u044e\u0434\u0436\u0435\u0442",
"rule_trigger_has_any_budget_choice": "\u0418\u043c\u0430 (\u043d\u044f\u043a\u0430\u043a\u044a\u0432) \u0431\u044e\u0434\u0436\u0435\u0442",
"rule_trigger_has_no_bill_choice": "Has no bill",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "\u041d\u044f\u043c\u0430 \u0435\u0442\u0438\u043a\u0435\u0442(\u0438)",
"rule_trigger_has_any_tag_choice": "\u0418\u043c\u0430 \u0435\u0434\u0438\u043d \u0438\u043b\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 (\u043d\u044f\u043a\u0430\u043a\u0432\u0438) \u0435\u0442\u0438\u043a\u0435\u0442\u0438",
"rule_trigger_any_notes_choice": "\u0418\u043c\u0430 (\u043d\u044f\u043a\u0430\u043a\u0432\u0438) \u0431\u0435\u043b\u0435\u0436\u043a\u0438",
"rule_trigger_no_notes_choice": "\u041d\u044f\u043c\u0430 \u0431\u0435\u043b\u0435\u0436\u043a\u0438",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "\u0421\u043c\u0435\u0442\u043a\u0430\u0442\u0430 \u0435..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "ID \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0435..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "\u0418\u0437\u0447\u0438\u0441\u0442\u0438 \u0432\u0441\u0438\u0447\u043a\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "\u0418\u0437\u0447\u0438\u0441\u0442\u0438 \u0432\u0441\u0438\u0447\u043a\u0438 \u0431\u044e\u0434\u0436\u0435\u0442\u0438",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "\u041f\u0440\u0435\u043c\u0430\u0445\u043d\u0438 \u0432\u0441\u0438\u0447\u043a\u0438 \u0435\u0442\u0438\u043a\u0435\u0442\u0438",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "\u0418\u0437\u0447\u0438\u0441\u0442\u0438 \u0432\u0441\u0438\u0447\u043a\u0438 \u0431\u0435\u043b\u0435\u0436\u043a\u0438",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0432\u0430\u0439\u0442\u0435 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0432 \u0434\u0435\u043f\u043e\u0437\u0438\u0442",
"rule_action_convert_withdrawal_choice": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0432\u0430\u0439\u0442\u0435 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0432 \u0442\u0435\u0433\u043b\u0435\u043d\u0435",
"rule_action_convert_transfer_choice": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0432\u0430\u0439\u0442\u0435 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0432 \u0442\u0440\u0430\u043d\u0441\u0444\u0435\u0440",
"placeholder": "[Placeholder]",
"recurrences": "\u041f\u043e\u0432\u0442\u0430\u0440\u044f\u0449\u0438 \u0441\u0435 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
"title_expenses": "\u0420\u0430\u0437\u0445\u043e\u0434\u0438",
"title_withdrawal": "\u0422\u0435\u0433\u043b\u0435\u043d\u0438\u044f",
"title_revenue": "\u041f\u0440\u0438\u0445\u043e\u0434\u0438",
"pref_1D": "\u0415\u0434\u0438\u043d \u0434\u0435\u043d",
"pref_1W": "\u0415\u0434\u043d\u0430 \u0441\u0435\u0434\u043c\u0438\u0446\u0430",
"pref_1M": "\u0415\u0434\u0438\u043d \u043c\u0435\u0441\u0435\u0446",
"pref_3M": "\u0422\u0440\u0438 \u043c\u0435\u0441\u0435\u0446\u0430 (\u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435)",
"pref_6M": "\u0428\u0435\u0441\u0442 \u043c\u0435\u0441\u0435\u0446\u0430",
"pref_1Y": "\u0415\u0434\u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0430",
"repeat_freq_yearly": "\u0435\u0436\u0435\u0433\u043e\u0434\u043d\u043e",
"repeat_freq_half-year": "\u043d\u0430 \u0432\u0441\u0435\u043a\u0438 6 \u043c\u0435\u0441\u0435\u0446\u0430",
"repeat_freq_quarterly": "\u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u043d\u043e",
"repeat_freq_monthly": "\u043c\u0435\u0441\u0435\u0447\u043d\u043e",
"repeat_freq_weekly": "\u0435\u0436\u0435\u0441\u0435\u0434\u043c\u0438\u0447\u043d\u043e",
"single_split": "\u0420\u0430\u0437\u0434\u0435\u043b",
"asset_accounts": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438",
"expense_accounts": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u0438",
"liabilities_accounts": "\u0417\u0430\u0434\u044a\u043b\u0436\u0435\u043d\u0438\u044f",
"undefined_accounts": "Accounts",
"name": "\u0418\u043c\u0435",
"revenue_accounts": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u0438",
"description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
"category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
"title_deposit": "\u0414\u0435\u043f\u043e\u0437\u0438\u0442\u0438",
"title_transfer": "\u041f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0438\u044f",
"title_transfers": "\u041f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0438\u044f",
"piggyBanks": "\u041a\u0430\u0441\u0438\u0447\u043a\u0438",
"rules": "\u041f\u0440\u0430\u0432\u0438\u043b\u0430",
"accounts": "\u0421\u043c\u0435\u0442\u043a\u0438",
"categories": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438",
"tags": "\u0415\u0442\u0438\u043a\u0435\u0442\u0438",
"object_groups_page_title": "\u0413\u0440\u0443\u043f\u0438",
"reports": "\u041e\u0442\u0447\u0435\u0442\u0438",
"webhooks": "Webhooks",
"currencies": "\u0412\u0430\u043b\u0443\u0442\u0438",
"administration": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435",
"profile": "\u041f\u0440\u043e\u0444\u0438\u043b",
"source_account": "\u0420\u0430\u0437\u0445\u043e\u0434\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430",
"destination_account": "\u041f\u0440\u0438\u0445\u043e\u0434\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430",
"amount": "\u0421\u0443\u043c\u0430",
"date": "\u0414\u0430\u0442\u0430",
"time": "\u0412\u0440\u0435\u043c\u0435",
"preferences": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438",
"transactions": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
"balance": "\u0421\u0430\u043b\u0434\u043e",
"budgets": "\u0411\u044e\u0434\u0436\u0435\u0442\u0438",
"subscriptions": "\u0410\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442\u0438",
"welcome_back": "\u041a\u0430\u043a\u0432\u043e \u0441\u0435 \u0441\u043b\u0443\u0447\u0432\u0430?",
"bills_to_pay": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435",
"net_worth": "\u041d\u0435\u0442\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
"config": {
"html_language": "bg",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "\u0418\u043c\u0435",
"amount_min": "\u041c\u0438\u043d\u0438\u043c\u0430\u043b\u043d\u0430 \u0441\u0443\u043c\u0430",
"amount_max": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u043d\u0430 \u0441\u0443\u043c\u0430",
"url": "URL",
"title": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435",
"first_date": "\u041f\u044a\u0440\u0432\u0430 \u0434\u0430\u0442\u0430",
"repetitions": "\u041f\u043e\u0432\u0442\u043e\u0440\u0435\u043d\u0438\u044f",
"description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
"iban": "IBAN",
"skip": "\u041f\u0440\u043e\u043f\u0443\u0441\u043d\u0438",
"date": "\u0414\u0430\u0442\u0430"
},
"list": {
"name": "\u0418\u043c\u0435",
"account_number": "Account number",
"currentBalance": "\u0422\u0435\u043a\u0443\u0449 \u0431\u0430\u043b\u0430\u043d\u0441",
"lastActivity": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442",
"active": "\u0410\u043a\u0442\u0438\u0432\u0435\u043d \u043b\u0438 \u0435?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "\u0411\u044e\u0434\u0436\u0435\u0442\u0438",
"subscriptions": "\u0410\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442\u0438",
"transactions": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
"title_expenses": "\u0420\u0430\u0437\u0445\u043e\u0434\u0438",
"title_withdrawal": "\u0420\u0430\u0437\u0445\u043e\u0434\u0438",
"title_revenue": "\u041f\u0440\u0438\u0445\u043e\u0434\u0438",
"title_deposit": "\u041f\u0440\u0438\u0445\u043e\u0434\u0438",
"title_transfer": "\u041f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0438\u044f",
"title_transfers": "\u041f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0438\u044f",
"asset_accounts": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438",
"expense_accounts": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u0438",
"revenue_accounts": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u0438",
"liabilities_accounts": "\u0417\u0430\u0434\u044a\u043b\u0436\u0435\u043d\u0438\u044f"
},
"firefly": {
"actions": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
"edit": "\u041f\u0440\u043e\u043c\u0435\u043d\u0438",
"delete": "\u0418\u0437\u0442\u0440\u0438\u0439",
"reconcile": "\u0421\u044a\u0433\u043b\u0430\u0441\u0443\u0432\u0430\u0439",
"create_new_asset": "\u0421\u044a\u0437\u0434\u0430\u0439 \u043d\u043e\u0432\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438",
"confirm_action": "Confirm action",
"new_budget": "\u041d\u043e\u0432 \u0431\u044e\u0434\u0436\u0435\u0442",
"new_asset_account": "\u041d\u043e\u0432\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438",
"newTransfer": "\u041d\u043e\u0432\u043e \u043f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "\u041d\u043e\u0432 \u0434\u0435\u043f\u043e\u0437\u0438\u0442",
"newWithdrawal": "\u041d\u043e\u0432 \u0440\u0430\u0437\u0445\u043e\u0434",
"bills_paid": "\u041f\u043b\u0430\u0442\u0435\u043d\u0438 \u0441\u043c\u0435\u0442\u043a\u0438",
"left_to_spend": "\u041e\u0441\u0442\u0430\u043d\u0430\u043b\u0438 \u0437\u0430 \u0445\u0430\u0440\u0447\u0435\u043d\u0435",
"no_budget": "(\u0431\u0435\u0437 \u0431\u044e\u0434\u0436\u0435\u0442)",
"budgeted": "\u0411\u044e\u0434\u0436\u0435\u0442\u0438\u0440\u0430\u043d\u0438",
"spent": "\u041f\u043e\u0445\u0430\u0440\u0447\u0435\u043d\u0438",
"no_bill": "(\u043d\u044f\u043c\u0430 \u0441\u043c\u0435\u0442\u043a\u0430)",
"rule_trigger_source_account_starts_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430\u043f\u043e\u0447\u0432\u0430 \u0441..",
"rule_trigger_source_account_ends_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430\u0432\u044a\u0440\u0448\u0432\u0430 \u0441..",
"rule_trigger_source_account_is_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0435..",
"rule_trigger_source_account_contains_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "ID \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0435 \u0442\u043e\u0447\u043d\u043e..",
"rule_trigger_destination_account_id_choice": "ID \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0435 \u0442\u043e\u0447\u043d\u043e..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "\u0420\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0435 \u0441\u043c\u0435\u0442\u043a\u0430 (\u0432 \u0431\u0440\u043e\u0439)",
"rule_trigger_destination_is_cash_choice": "\u041f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0435 \u0441\u043c\u0435\u0442\u043a\u0430 (\u0432 \u0431\u0440\u043e\u0439)",
"rule_trigger_source_account_nr_starts_choice": "\u041d\u043e\u043c\u0435\u0440\u044a\u0442 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \/ IBAN \u0437\u0430\u043f\u043e\u0447\u0432\u0430 \u0441..",
"rule_trigger_source_account_nr_ends_choice": "\u041d\u043e\u043c\u0435\u0440\u044a\u0442 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \/ IBAN \u0437\u0430\u0432\u044a\u0440\u0448\u0432\u0430 \u0441..",
"rule_trigger_source_account_nr_is_choice": "\u041d\u043e\u043c\u0435\u0440\u044a\u0442 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \/ IBAN \u0435..",
"rule_trigger_source_account_nr_contains_choice": "\u041d\u043e\u043c\u0435\u0440\u044a\u0442 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \/ IBAN \u0441\u044a\u0434\u044a\u0440\u0436\u0430..",
"rule_trigger_destination_account_starts_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430\u043f\u043e\u0447\u0432\u0430 \u0441..",
"rule_trigger_destination_account_ends_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430\u0432\u044a\u0440\u0448\u0432\u0430 \u0441..",
"rule_trigger_destination_account_is_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0435..",
"rule_trigger_destination_account_contains_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430..",
"rule_trigger_destination_account_nr_starts_choice": "\u041d\u043e\u043c\u0435\u0440\u044a\u0442 \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \/ IBAN \u0437\u0430\u043f\u043e\u0447\u0432\u0430 \u0441..",
"rule_trigger_destination_account_nr_ends_choice": "\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430\u0432\u044a\u0440\u0448\u0432\u0430 \u0441..",
"rule_trigger_destination_account_nr_is_choice": "\u041d\u043e\u043c\u0435\u0440\u044a\u0442 \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \/ IBAN \u0435..",
"rule_trigger_destination_account_nr_contains_choice": "\u041d\u043e\u043c\u0435\u0440\u044a\u0442 \u043d\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \/ IBAN \u0441\u044a\u0434\u044a\u0440\u0436\u0430..",
"rule_trigger_transaction_type_choice": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0435 \u043e\u0442 \u0442\u0438\u043f..",
"rule_trigger_category_is_choice": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f\u0442\u0430 \u0435..",
"rule_trigger_amount_less_choice": "\u0421\u0443\u043c\u0430\u0442\u0430 \u0435 \u043f\u043e-\u043c\u0430\u043b\u043a\u043e \u043e\u0442..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "\u0421\u0443\u043c\u0430\u0442\u0430 \u0435 \u043f\u043e-\u0433\u043e\u043b\u044f\u043c\u0430 \u043e\u0442..",
"rule_trigger_description_starts_choice": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0442\u043e \u0437\u0430\u043f\u043e\u0447\u0432\u0430 \u0441..",
"rule_trigger_description_ends_choice": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0442\u043e \u0437\u0430\u0432\u044a\u0440\u0448\u0432\u0430 \u0441..",
"rule_trigger_description_contains_choice": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0442\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430..",
"rule_trigger_description_is_choice": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0442\u043e \u0435..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "\u0414\u0430\u0442\u0430\u0442\u0430 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0435 \u043f\u0440\u0435\u0434\u0438..",
"rule_trigger_date_after_choice": "\u0414\u0430\u0442\u0430\u0442\u0430 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0435 \u0441\u043b\u0435\u0434..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "\u0411\u044e\u0434\u0436\u0435\u0442\u044a\u0442 \u0435..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "\u0412\u0430\u043b\u0443\u0442\u0430\u0442\u0430 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0435..",
"rule_trigger_foreign_currency_is_choice": "\u0427\u0443\u0436\u0434\u0430\u0442\u0430 \u0432\u0430\u043b\u0443\u0442\u0430 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0435..",
"rule_trigger_has_attachments_choice": "\u0418\u043c\u0430 \u043f\u043e\u043d\u0435 \u0442\u043e\u043b\u043a\u043e\u0432\u0430 \u043f\u0440\u0438\u043a\u0430\u0447\u0435\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435",
"rule_trigger_has_no_category_choice": "\u041d\u044f\u043c\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
"rule_trigger_has_any_category_choice": "\u0418\u043c\u0430 (\u043d\u044f\u043a\u0430\u043a\u0432\u0430) \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
"rule_trigger_has_no_budget_choice": "\u041d\u044f\u043c\u0430 \u0431\u044e\u0434\u0436\u0435\u0442",
"rule_trigger_has_any_budget_choice": "\u0418\u043c\u0430 (\u043d\u044f\u043a\u0430\u043a\u044a\u0432) \u0431\u044e\u0434\u0436\u0435\u0442",
"rule_trigger_has_no_bill_choice": "Has no bill",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "\u041d\u044f\u043c\u0430 \u0435\u0442\u0438\u043a\u0435\u0442(\u0438)",
"rule_trigger_has_any_tag_choice": "\u0418\u043c\u0430 \u0435\u0434\u0438\u043d \u0438\u043b\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 (\u043d\u044f\u043a\u0430\u043a\u0432\u0438) \u0435\u0442\u0438\u043a\u0435\u0442\u0438",
"rule_trigger_any_notes_choice": "\u0418\u043c\u0430 (\u043d\u044f\u043a\u0430\u043a\u0432\u0438) \u0431\u0435\u043b\u0435\u0436\u043a\u0438",
"rule_trigger_no_notes_choice": "\u041d\u044f\u043c\u0430 \u0431\u0435\u043b\u0435\u0436\u043a\u0438",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "\u0421\u043c\u0435\u0442\u043a\u0430\u0442\u0430 \u0435..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "ID \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0435..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "\u0418\u0437\u0447\u0438\u0441\u0442\u0438 \u0432\u0441\u0438\u0447\u043a\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "\u0418\u0437\u0447\u0438\u0441\u0442\u0438 \u0432\u0441\u0438\u0447\u043a\u0438 \u0431\u044e\u0434\u0436\u0435\u0442\u0438",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "\u041f\u0440\u0435\u043c\u0430\u0445\u043d\u0438 \u0432\u0441\u0438\u0447\u043a\u0438 \u0435\u0442\u0438\u043a\u0435\u0442\u0438",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "\u0418\u0437\u0447\u0438\u0441\u0442\u0438 \u0432\u0441\u0438\u0447\u043a\u0438 \u0431\u0435\u043b\u0435\u0436\u043a\u0438",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0432\u0430\u0439\u0442\u0435 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0432 \u0434\u0435\u043f\u043e\u0437\u0438\u0442",
"rule_action_convert_withdrawal_choice": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0432\u0430\u0439\u0442\u0435 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0432 \u0442\u0435\u0433\u043b\u0435\u043d\u0435",
"rule_action_convert_transfer_choice": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0432\u0430\u0439\u0442\u0435 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u0432 \u0442\u0440\u0430\u043d\u0441\u0444\u0435\u0440",
"placeholder": "[Placeholder]",
"recurrences": "\u041f\u043e\u0432\u0442\u0430\u0440\u044f\u0449\u0438 \u0441\u0435 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
"title_expenses": "\u0420\u0430\u0437\u0445\u043e\u0434\u0438",
"title_withdrawal": "\u0422\u0435\u0433\u043b\u0435\u043d\u0438\u044f",
"title_revenue": "\u041f\u0440\u0438\u0445\u043e\u0434\u0438",
"pref_1D": "\u0415\u0434\u0438\u043d \u0434\u0435\u043d",
"pref_1W": "\u0415\u0434\u043d\u0430 \u0441\u0435\u0434\u043c\u0438\u0446\u0430",
"pref_1M": "\u0415\u0434\u0438\u043d \u043c\u0435\u0441\u0435\u0446",
"pref_3M": "\u0422\u0440\u0438 \u043c\u0435\u0441\u0435\u0446\u0430 (\u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435)",
"pref_6M": "\u0428\u0435\u0441\u0442 \u043c\u0435\u0441\u0435\u0446\u0430",
"pref_1Y": "\u0415\u0434\u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0430",
"repeat_freq_yearly": "\u0435\u0436\u0435\u0433\u043e\u0434\u043d\u043e",
"repeat_freq_half-year": "\u043d\u0430 \u0432\u0441\u0435\u043a\u0438 6 \u043c\u0435\u0441\u0435\u0446\u0430",
"repeat_freq_quarterly": "\u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u043d\u043e",
"repeat_freq_monthly": "\u043c\u0435\u0441\u0435\u0447\u043d\u043e",
"repeat_freq_weekly": "\u0435\u0436\u0435\u0441\u0435\u0434\u043c\u0438\u0447\u043d\u043e",
"single_split": "\u0420\u0430\u0437\u0434\u0435\u043b",
"asset_accounts": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438",
"expense_accounts": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u0438",
"liabilities_accounts": "\u0417\u0430\u0434\u044a\u043b\u0436\u0435\u043d\u0438\u044f",
"undefined_accounts": "Accounts",
"name": "\u0418\u043c\u0435",
"revenue_accounts": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u0438",
"description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
"category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
"title_deposit": "\u0414\u0435\u043f\u043e\u0437\u0438\u0442\u0438",
"title_transfer": "\u041f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0438\u044f",
"title_transfers": "\u041f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0438\u044f",
"piggyBanks": "\u041a\u0430\u0441\u0438\u0447\u043a\u0438",
"rules": "\u041f\u0440\u0430\u0432\u0438\u043b\u0430",
"accounts": "\u0421\u043c\u0435\u0442\u043a\u0438",
"categories": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438",
"tags": "\u0415\u0442\u0438\u043a\u0435\u0442\u0438",
"object_groups_page_title": "\u0413\u0440\u0443\u043f\u0438",
"reports": "\u041e\u0442\u0447\u0435\u0442\u0438",
"webhooks": "Webhooks",
"currencies": "\u0412\u0430\u043b\u0443\u0442\u0438",
"administration": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435",
"profile": "\u041f\u0440\u043e\u0444\u0438\u043b",
"source_account": "\u0420\u0430\u0437\u0445\u043e\u0434\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430",
"destination_account": "\u041f\u0440\u0438\u0445\u043e\u0434\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430",
"amount": "\u0421\u0443\u043c\u0430",
"date": "\u0414\u0430\u0442\u0430",
"time": "\u0412\u0440\u0435\u043c\u0435",
"preferences": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438",
"transactions": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
"balance": "\u0421\u0430\u043b\u0434\u043e",
"budgets": "\u0411\u044e\u0434\u0436\u0435\u0442\u0438",
"subscriptions": "\u0410\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442\u0438",
"welcome_back": "\u041a\u0430\u043a\u0432\u043e \u0441\u0435 \u0441\u043b\u0443\u0447\u0432\u0430?",
"bills_to_pay": "\u0421\u043c\u0435\u0442\u043a\u0438 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435",
"net_worth": "\u041d\u0435\u0442\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "cs",
"month_and_day_fns": "d MMMM, y"
},
"form": {
"name": "N\u00e1zev",
"amount_min": "Minim\u00e1ln\u00ed \u010d\u00e1stka",
"amount_max": "Maxim\u00e1ln\u00ed \u010d\u00e1stka",
"url": "URL",
"title": "N\u00e1zev",
"first_date": "Prvn\u00ed datum",
"repetitions": "Opakov\u00e1n\u00ed",
"description": "Popis",
"iban": "IBAN",
"skip": "P\u0159esko\u010dit",
"date": "Datum"
},
"list": {
"name": "Jm\u00e9no",
"account_number": "Account number",
"currentBalance": "Aktu\u00e1ln\u00ed z\u016fstatek",
"lastActivity": "Posledn\u00ed aktivita",
"active": "Aktivn\u00ed?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budgets",
"subscriptions": "Subscriptions",
"transactions": "Transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"revenue_accounts": "Revenue accounts",
"liabilities_accounts": "Liabilities"
},
"firefly": {
"actions": "Akce",
"edit": "Upravit",
"delete": "Odstranit",
"reconcile": "Reconcile",
"create_new_asset": "Vytvo\u0159it nov\u00fd \u00fa\u010det aktiv",
"confirm_action": "Confirm action",
"new_budget": "Nov\u00fd rozpo\u010det",
"new_asset_account": "Nov\u00fd \u00fa\u010det s aktivy",
"newTransfer": "Nov\u00fd p\u0159evod",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Nov\u00fd vklad",
"newWithdrawal": "Nov\u00fd v\u00fddaj",
"bills_paid": "Zaplacen\u00e9 \u00fa\u010dty",
"left_to_spend": "Zb\u00fdv\u00e1 k utracen\u00ed",
"no_budget": "(\u017e\u00e1dn\u00fd rozpo\u010det)",
"budgeted": "Rozpo\u010det",
"spent": "Utraceno",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Source account name starts with..",
"rule_trigger_source_account_ends_choice": "Source account name ends with..",
"rule_trigger_source_account_is_choice": "Source account name is..",
"rule_trigger_source_account_contains_choice": "Source account name contains..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Source account ID is exactly..",
"rule_trigger_destination_account_id_choice": "Destination account ID is exactly..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Source account is (cash) account",
"rule_trigger_destination_is_cash_choice": "Destination account is (cash) account",
"rule_trigger_source_account_nr_starts_choice": "Source account number \/ IBAN starts with..",
"rule_trigger_source_account_nr_ends_choice": "Source account number \/ IBAN ends with..",
"rule_trigger_source_account_nr_is_choice": "Source account number \/ IBAN is..",
"rule_trigger_source_account_nr_contains_choice": "Source account number \/ IBAN contains..",
"rule_trigger_destination_account_starts_choice": "Destination account name starts with..",
"rule_trigger_destination_account_ends_choice": "Destination account name ends with..",
"rule_trigger_destination_account_is_choice": "Destination account name is..",
"rule_trigger_destination_account_contains_choice": "Destination account name contains..",
"rule_trigger_destination_account_nr_starts_choice": "Destination account number \/ IBAN starts with..",
"rule_trigger_destination_account_nr_ends_choice": "Destination account number \/ IBAN ends with..",
"rule_trigger_destination_account_nr_is_choice": "Destination account number \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Destination account number \/ IBAN contains..",
"rule_trigger_transaction_type_choice": "Transakce je typu\u2026",
"rule_trigger_category_is_choice": "Kategorie je\u2026",
"rule_trigger_amount_less_choice": "\u010c\u00e1stka je ni\u017e\u0161\u00ed ne\u017e\u2026",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "\u010c\u00e1stka je vy\u0161\u0161\u00ed ne\u017e\u2026",
"rule_trigger_description_starts_choice": "Popis za\u010d\u00edn\u00e1 na\u2026",
"rule_trigger_description_ends_choice": "Popis kon\u010d\u00ed na\u2026",
"rule_trigger_description_contains_choice": "Popis obsahuje\u2026",
"rule_trigger_description_is_choice": "Popis je\u2026",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Datum transakce je p\u0159ed..",
"rule_trigger_date_after_choice": "Datum transakce je po..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Rozpo\u010det je\u2026",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "M\u011bna transakce je\u2026",
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
"rule_trigger_has_attachments_choice": "M\u00e1 alespo\u0148 tolik p\u0159\u00edloh",
"rule_trigger_has_no_category_choice": "Nem\u00e1 \u017e\u00e1dnou kategorii",
"rule_trigger_has_any_category_choice": "M\u00e1 (libovolnou) kategorii",
"rule_trigger_has_no_budget_choice": "Nem\u00e1 \u017e\u00e1dn\u00fd rozpo\u010det",
"rule_trigger_has_any_budget_choice": "M\u00e1 (libovoln\u00fd) rozpo\u010det",
"rule_trigger_has_no_bill_choice": "Has no bill",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "Nem\u00e1 \u017e\u00e1dn\u00e9 \u0161t\u00edtky",
"rule_trigger_has_any_tag_choice": "M\u00e1 jeden a v\u00edce \u0161t\u00edtk\u016f",
"rule_trigger_any_notes_choice": "M\u00e1 (jak\u00e9koli) pozn\u00e1mky",
"rule_trigger_no_notes_choice": "Nem\u00e1 \u017e\u00e1dn\u00e9 pozn\u00e1mky",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Bill is..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Vy\u010distit jak\u00e9koli kategorie",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Vy\u010distit jak\u00fdkoli rozpo\u010det",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Odebrat ve\u0161ker\u00e9 \u0161t\u00edtky",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Odstranit v\u0161echny pozn\u00e1mky",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "P\u0159em\u011bnit tuto transakci na vklad",
"rule_action_convert_withdrawal_choice": "P\u0159em\u011bnit transakci na v\u00fdb\u011br",
"rule_action_convert_transfer_choice": "P\u0159em\u011bnit tuto transakci na p\u0159evod",
"placeholder": "[Placeholder]",
"recurrences": "Opakovan\u00e9 transakce",
"title_expenses": "V\u00fddaje",
"title_withdrawal": "V\u00fddaje",
"title_revenue": "Odm\u011bna\/p\u0159\u00edjem",
"pref_1D": "Jeden den",
"pref_1W": "Jeden t\u00fdden",
"pref_1M": "Jeden m\u011bs\u00edc",
"pref_3M": "T\u0159i m\u011bs\u00edce (\u010dtvrtlet\u00ed)",
"pref_6M": "\u0160est m\u011bs\u00edc\u016f",
"pref_1Y": "Jeden rok",
"repeat_freq_yearly": "ro\u010dn\u011b",
"repeat_freq_half-year": "p\u016floro\u010dn\u011b",
"repeat_freq_quarterly": "\u010dtvrtletn\u011b",
"repeat_freq_monthly": "m\u011bs\u00ed\u010dn\u011b",
"repeat_freq_weekly": "t\u00fddn\u011b",
"single_split": "Rozd\u011blit",
"asset_accounts": "\u00da\u010dty aktiv",
"expense_accounts": "V\u00fddajov\u00e9 \u00fa\u010dty",
"liabilities_accounts": "Z\u00e1vazky",
"undefined_accounts": "Accounts",
"name": "N\u00e1zev",
"revenue_accounts": "P\u0159\u00edjmov\u00e9 \u00fa\u010dty",
"description": "Popis",
"category": "Kategorie",
"title_deposit": "Odm\u011bna\/p\u0159\u00edjem",
"title_transfer": "P\u0159evody",
"title_transfers": "P\u0159evody",
"piggyBanks": "Pokladni\u010dky",
"rules": "Pravidla",
"accounts": "\u00da\u010dty",
"categories": "Kategorie",
"tags": "\u0160t\u00edtky",
"object_groups_page_title": "Skupiny",
"reports": "P\u0159ehledy",
"webhooks": "Webhooky",
"currencies": "M\u011bny",
"administration": "Spr\u00e1va",
"profile": "Profil",
"source_account": "Zdrojov\u00fd \u00fa\u010det",
"destination_account": "C\u00edlov\u00fd \u00fa\u010det",
"amount": "\u010c\u00e1stka",
"date": "Datum",
"time": "\u010cas",
"preferences": "P\u0159edvolby",
"transactions": "Transakce",
"balance": "Z\u016fstatek",
"budgets": "Rozpo\u010dty",
"subscriptions": "Subscriptions",
"welcome_back": "Jak to jde?",
"bills_to_pay": "Faktury k zaplacen\u00ed",
"net_worth": "\u010cist\u00e9 jm\u011bn\u00ed",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
"config": {
"html_language": "cs",
"month_and_day_fns": "d MMMM, y"
},
"form": {
"name": "N\u00e1zev",
"amount_min": "Minim\u00e1ln\u00ed \u010d\u00e1stka",
"amount_max": "Maxim\u00e1ln\u00ed \u010d\u00e1stka",
"url": "URL",
"title": "N\u00e1zev",
"first_date": "Prvn\u00ed datum",
"repetitions": "Opakov\u00e1n\u00ed",
"description": "Popis",
"iban": "IBAN",
"skip": "P\u0159esko\u010dit",
"date": "Datum"
},
"list": {
"name": "Jm\u00e9no",
"account_number": "Account number",
"currentBalance": "Aktu\u00e1ln\u00ed z\u016fstatek",
"lastActivity": "Posledn\u00ed aktivita",
"active": "Aktivn\u00ed?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budgets",
"subscriptions": "Subscriptions",
"transactions": "Transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"revenue_accounts": "Revenue accounts",
"liabilities_accounts": "Liabilities"
},
"firefly": {
"actions": "Akce",
"edit": "Upravit",
"delete": "Odstranit",
"reconcile": "Reconcile",
"create_new_asset": "Vytvo\u0159it nov\u00fd \u00fa\u010det aktiv",
"confirm_action": "Confirm action",
"new_budget": "Nov\u00fd rozpo\u010det",
"new_asset_account": "Nov\u00fd \u00fa\u010det s aktivy",
"newTransfer": "Nov\u00fd p\u0159evod",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Nov\u00fd vklad",
"newWithdrawal": "Nov\u00fd v\u00fddaj",
"bills_paid": "Zaplacen\u00e9 \u00fa\u010dty",
"left_to_spend": "Zb\u00fdv\u00e1 k utracen\u00ed",
"no_budget": "(\u017e\u00e1dn\u00fd rozpo\u010det)",
"budgeted": "Rozpo\u010det",
"spent": "Utraceno",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Source account name starts with..",
"rule_trigger_source_account_ends_choice": "Source account name ends with..",
"rule_trigger_source_account_is_choice": "Source account name is..",
"rule_trigger_source_account_contains_choice": "Source account name contains..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Source account ID is exactly..",
"rule_trigger_destination_account_id_choice": "Destination account ID is exactly..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Source account is (cash) account",
"rule_trigger_destination_is_cash_choice": "Destination account is (cash) account",
"rule_trigger_source_account_nr_starts_choice": "Source account number \/ IBAN starts with..",
"rule_trigger_source_account_nr_ends_choice": "Source account number \/ IBAN ends with..",
"rule_trigger_source_account_nr_is_choice": "Source account number \/ IBAN is..",
"rule_trigger_source_account_nr_contains_choice": "Source account number \/ IBAN contains..",
"rule_trigger_destination_account_starts_choice": "Destination account name starts with..",
"rule_trigger_destination_account_ends_choice": "Destination account name ends with..",
"rule_trigger_destination_account_is_choice": "Destination account name is..",
"rule_trigger_destination_account_contains_choice": "Destination account name contains..",
"rule_trigger_destination_account_nr_starts_choice": "Destination account number \/ IBAN starts with..",
"rule_trigger_destination_account_nr_ends_choice": "Destination account number \/ IBAN ends with..",
"rule_trigger_destination_account_nr_is_choice": "Destination account number \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Destination account number \/ IBAN contains..",
"rule_trigger_transaction_type_choice": "Transakce je typu\u2026",
"rule_trigger_category_is_choice": "Kategorie je\u2026",
"rule_trigger_amount_less_choice": "\u010c\u00e1stka je ni\u017e\u0161\u00ed ne\u017e\u2026",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "\u010c\u00e1stka je vy\u0161\u0161\u00ed ne\u017e\u2026",
"rule_trigger_description_starts_choice": "Popis za\u010d\u00edn\u00e1 na\u2026",
"rule_trigger_description_ends_choice": "Popis kon\u010d\u00ed na\u2026",
"rule_trigger_description_contains_choice": "Popis obsahuje\u2026",
"rule_trigger_description_is_choice": "Popis je\u2026",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Datum transakce je p\u0159ed..",
"rule_trigger_date_after_choice": "Datum transakce je po..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Rozpo\u010det je\u2026",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "M\u011bna transakce je\u2026",
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
"rule_trigger_has_attachments_choice": "M\u00e1 alespo\u0148 tolik p\u0159\u00edloh",
"rule_trigger_has_no_category_choice": "Nem\u00e1 \u017e\u00e1dnou kategorii",
"rule_trigger_has_any_category_choice": "M\u00e1 (libovolnou) kategorii",
"rule_trigger_has_no_budget_choice": "Nem\u00e1 \u017e\u00e1dn\u00fd rozpo\u010det",
"rule_trigger_has_any_budget_choice": "M\u00e1 (libovoln\u00fd) rozpo\u010det",
"rule_trigger_has_no_bill_choice": "Has no bill",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "Nem\u00e1 \u017e\u00e1dn\u00e9 \u0161t\u00edtky",
"rule_trigger_has_any_tag_choice": "M\u00e1 jeden a v\u00edce \u0161t\u00edtk\u016f",
"rule_trigger_any_notes_choice": "M\u00e1 (jak\u00e9koli) pozn\u00e1mky",
"rule_trigger_no_notes_choice": "Nem\u00e1 \u017e\u00e1dn\u00e9 pozn\u00e1mky",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Bill is..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Vy\u010distit jak\u00e9koli kategorie",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Vy\u010distit jak\u00fdkoli rozpo\u010det",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Odebrat ve\u0161ker\u00e9 \u0161t\u00edtky",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Odstranit v\u0161echny pozn\u00e1mky",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "P\u0159em\u011bnit tuto transakci na vklad",
"rule_action_convert_withdrawal_choice": "P\u0159em\u011bnit transakci na v\u00fdb\u011br",
"rule_action_convert_transfer_choice": "P\u0159em\u011bnit tuto transakci na p\u0159evod",
"placeholder": "[Placeholder]",
"recurrences": "Opakovan\u00e9 transakce",
"title_expenses": "V\u00fddaje",
"title_withdrawal": "V\u00fddaje",
"title_revenue": "Odm\u011bna\/p\u0159\u00edjem",
"pref_1D": "Jeden den",
"pref_1W": "Jeden t\u00fdden",
"pref_1M": "Jeden m\u011bs\u00edc",
"pref_3M": "T\u0159i m\u011bs\u00edce (\u010dtvrtlet\u00ed)",
"pref_6M": "\u0160est m\u011bs\u00edc\u016f",
"pref_1Y": "Jeden rok",
"repeat_freq_yearly": "ro\u010dn\u011b",
"repeat_freq_half-year": "p\u016floro\u010dn\u011b",
"repeat_freq_quarterly": "\u010dtvrtletn\u011b",
"repeat_freq_monthly": "m\u011bs\u00ed\u010dn\u011b",
"repeat_freq_weekly": "t\u00fddn\u011b",
"single_split": "Rozd\u011blit",
"asset_accounts": "\u00da\u010dty aktiv",
"expense_accounts": "V\u00fddajov\u00e9 \u00fa\u010dty",
"liabilities_accounts": "Z\u00e1vazky",
"undefined_accounts": "Accounts",
"name": "N\u00e1zev",
"revenue_accounts": "P\u0159\u00edjmov\u00e9 \u00fa\u010dty",
"description": "Popis",
"category": "Kategorie",
"title_deposit": "Odm\u011bna\/p\u0159\u00edjem",
"title_transfer": "P\u0159evody",
"title_transfers": "P\u0159evody",
"piggyBanks": "Pokladni\u010dky",
"rules": "Pravidla",
"accounts": "\u00da\u010dty",
"categories": "Kategorie",
"tags": "\u0160t\u00edtky",
"object_groups_page_title": "Skupiny",
"reports": "P\u0159ehledy",
"webhooks": "Webhooky",
"currencies": "M\u011bny",
"administration": "Spr\u00e1va",
"profile": "Profil",
"source_account": "Zdrojov\u00fd \u00fa\u010det",
"destination_account": "C\u00edlov\u00fd \u00fa\u010det",
"amount": "\u010c\u00e1stka",
"date": "Datum",
"time": "\u010cas",
"preferences": "P\u0159edvolby",
"transactions": "Transakce",
"balance": "Z\u016fstatek",
"budgets": "Rozpo\u010dty",
"subscriptions": "Subscriptions",
"welcome_back": "Jak to jde?",
"bills_to_pay": "Faktury k zaplacen\u00ed",
"net_worth": "\u010cist\u00e9 jm\u011bn\u00ed",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "da",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "Navn",
"amount_min": "Minimumsbel\u00f8b",
"amount_max": "Maksimumbel\u00f8b",
"url": "URL",
"title": "Titel",
"first_date": "F\u00f8rste dato",
"repetitions": "Gentagelser",
"description": "Beskrivelse",
"iban": "IBAN",
"skip": "Spring over",
"date": "Dato"
},
"list": {
"name": "Navn",
"account_number": "Konto nummer",
"currentBalance": "Nuv\u00e6rende saldo",
"lastActivity": "Seneste aktivitet",
"active": "Aktiv?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budget",
"subscriptions": "Abonnementer",
"transactions": "Transaktioner",
"title_expenses": "Udgifter",
"title_withdrawal": "Udgifter",
"title_revenue": "Indt\u00e6gter \/ indkomster",
"title_deposit": "Indt\u00e6gter \/ indkomster",
"title_transfer": "Overf\u00f8rsler",
"title_transfers": "Overf\u00f8rsler",
"asset_accounts": "Aktivkonti",
"expense_accounts": "Udgiftskonti",
"revenue_accounts": "Indt\u00e6gtskonti",
"liabilities_accounts": "G\u00e6ld"
},
"firefly": {
"actions": "Handlinger",
"edit": "Rediger",
"delete": "Slet",
"reconcile": "Afstem",
"create_new_asset": "Opret ny aktivkonto",
"confirm_action": "Bekr\u00e6ft",
"new_budget": "Nyt budget",
"new_asset_account": "Ny aktivkonto",
"newTransfer": "New transfer",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "New deposit",
"newWithdrawal": "New expense",
"bills_paid": "Betalte regninger",
"left_to_spend": "Left to spend",
"no_budget": "(no budget)",
"budgeted": "Budgetteret",
"spent": "Spent",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Kildekontonavn starter med..",
"rule_trigger_source_account_ends_choice": "Kildekontonavnet slutter med..",
"rule_trigger_source_account_is_choice": "Kildekontonavn er..",
"rule_trigger_source_account_contains_choice": "Kildekontonavnet indeholder..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Kildekonto ID er pr\u00e6cis..",
"rule_trigger_destination_account_id_choice": "Destinationskonto ID er pr\u00e6cis..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Kildekonto er (kontant) konto",
"rule_trigger_destination_is_cash_choice": "Destinationskonto er (kontant) konto",
"rule_trigger_source_account_nr_starts_choice": "Kildekontonummer \/ IBAN starter med..",
"rule_trigger_source_account_nr_ends_choice": "Kildekontonummer \/ IBAN slutter med..",
"rule_trigger_source_account_nr_is_choice": "Kildekontonummer \/ IBAN er..",
"rule_trigger_source_account_nr_contains_choice": "Kildekontonummer \/ IBAN indeholder..",
"rule_trigger_destination_account_starts_choice": "Destinationskontonavnet starter med..",
"rule_trigger_destination_account_ends_choice": "Destinationskontonavnet slutter med..",
"rule_trigger_destination_account_is_choice": "Destinationskontonavnet er..",
"rule_trigger_destination_account_contains_choice": "Destinationskontonavnet indeholder..",
"rule_trigger_destination_account_nr_starts_choice": "Destinationskontonummer \/ IBAN starter med..",
"rule_trigger_destination_account_nr_ends_choice": "Destinationskontonummer \/ IBAN slutter med..",
"rule_trigger_destination_account_nr_is_choice": "Destinationskontonummer \/ IBAN er..",
"rule_trigger_destination_account_nr_contains_choice": "Destinationskontonummer \/ IBAN indeholder..",
"rule_trigger_transaction_type_choice": "Transaktionen er af type..",
"rule_trigger_category_is_choice": "Kategorien er..",
"rule_trigger_amount_less_choice": "Bel\u00f8bet er mindre end..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Bel\u00f8bet er mere end..",
"rule_trigger_description_starts_choice": "Beskrivelsen starter med..",
"rule_trigger_description_ends_choice": "Beskrivelsen slutter med..",
"rule_trigger_description_contains_choice": "Beskrivelsen indeholder..",
"rule_trigger_description_is_choice": "Beskrivelsen er..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Transaktionsdato er f\u00f8r..",
"rule_trigger_date_after_choice": "Transaktionsdatoen er efter..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Budgettet er..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Transaktionsvalutaen er..",
"rule_trigger_foreign_currency_is_choice": "Udenlandsk transaktionsvaluta er..",
"rule_trigger_has_attachments_choice": "Har mindst s\u00e5 mange vedh\u00e6ftede filer",
"rule_trigger_has_no_category_choice": "Har ingen kategori",
"rule_trigger_has_any_category_choice": "Har en (vilk\u00e5rlig) kategori",
"rule_trigger_has_no_budget_choice": "Har intet budget",
"rule_trigger_has_any_budget_choice": "Har et (noget) budget",
"rule_trigger_has_no_bill_choice": "Har ingen regning",
"rule_trigger_has_any_bill_choice": "Har en (valgfri) regning",
"rule_trigger_has_no_tag_choice": "Har ingen tag(s)",
"rule_trigger_has_any_tag_choice": "Har en eller flere (nogen) tags",
"rule_trigger_any_notes_choice": "Har (nogen) noter",
"rule_trigger_no_notes_choice": "Har ingen noter",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Regningen er..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaktionsjournal ID er..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Ryd alle kategorier",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Ryd ethvert budget",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Fjern alle tags",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Fjern alle noter",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Konverter transaktionen til et indskud",
"rule_action_convert_withdrawal_choice": "Konverter transaktionen til en udbetaling",
"rule_action_convert_transfer_choice": "Konverter transaktionen til en overf\u00f8rsel",
"placeholder": "[Placeholder]",
"recurrences": "Recurring transactions",
"title_expenses": "Udgifter",
"title_withdrawal": "Udgifter",
"title_revenue": "Indt\u00e6gter \/ indkomst",
"pref_1D": "En dag",
"pref_1W": "En uge",
"pref_1M": "En m\u00e5ned",
"pref_3M": "Tre m\u00e5neder (kvartal)",
"pref_6M": "Seks m\u00e5neder",
"pref_1Y": "Et \u00e5r",
"repeat_freq_yearly": "\u00e5rligt",
"repeat_freq_half-year": "hvert halve \u00e5r",
"repeat_freq_quarterly": "kvartalsvis",
"repeat_freq_monthly": "m\u00e5nedligt",
"repeat_freq_weekly": "ugentligt",
"single_split": "Opdel",
"asset_accounts": "Aktivkonti",
"expense_accounts": "Udgiftskonti",
"liabilities_accounts": "G\u00e6ld",
"undefined_accounts": "Accounts",
"name": "Name",
"revenue_accounts": "Indt\u00e6gtskonti",
"description": "Description",
"category": "Kategori",
"title_deposit": "Indt\u00e6gter \/ indkomster",
"title_transfer": "Overf\u00f8rsler",
"title_transfers": "Overf\u00f8rsler",
"piggyBanks": "Spareb\u00f8sser",
"rules": "Regler",
"accounts": "Konti",
"categories": "Kategorier",
"tags": "Etiketter",
"object_groups_page_title": "Groups",
"reports": "Rapporter",
"webhooks": "Webhooks",
"currencies": "Currencies",
"administration": "Administration",
"profile": "Profile",
"source_account": "Kildekonto",
"destination_account": "Destinationskonto",
"amount": "Bel\u00f8b",
"date": "Date",
"time": "Time",
"preferences": "Preferences",
"transactions": "Transaktioner",
"balance": "Saldo",
"budgets": "Budgetter",
"subscriptions": "Abonnementer",
"welcome_back": "Hvad spiller?",
"bills_to_pay": "Regninger til betaling",
"net_worth": "Nettoformue",
"pref_last365": "Sidste \u00e5r",
"pref_last90": "Sidste 90 dage",
"pref_last30": "Sidste 30 dage",
"pref_last7": "Sidste 7 dage",
"pref_YTD": "\u00c5r til dato",
"pref_QTD": "Kvartal til dato",
"pref_MTD": "M\u00e5ned til dato"
}
"config": {
"html_language": "da",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "Navn",
"amount_min": "Minimumsbel\u00f8b",
"amount_max": "Maksimumbel\u00f8b",
"url": "URL",
"title": "Titel",
"first_date": "F\u00f8rste dato",
"repetitions": "Gentagelser",
"description": "Beskrivelse",
"iban": "IBAN",
"skip": "Spring over",
"date": "Dato"
},
"list": {
"name": "Navn",
"account_number": "Konto nummer",
"currentBalance": "Nuv\u00e6rende saldo",
"lastActivity": "Seneste aktivitet",
"active": "Aktiv?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budget",
"subscriptions": "Abonnementer",
"transactions": "Transaktioner",
"title_expenses": "Udgifter",
"title_withdrawal": "Udgifter",
"title_revenue": "Indt\u00e6gter \/ indkomster",
"title_deposit": "Indt\u00e6gter \/ indkomster",
"title_transfer": "Overf\u00f8rsler",
"title_transfers": "Overf\u00f8rsler",
"asset_accounts": "Aktivkonti",
"expense_accounts": "Udgiftskonti",
"revenue_accounts": "Indt\u00e6gtskonti",
"liabilities_accounts": "G\u00e6ld"
},
"firefly": {
"actions": "Handlinger",
"edit": "Rediger",
"delete": "Slet",
"reconcile": "Afstem",
"create_new_asset": "Opret ny aktivkonto",
"confirm_action": "Bekr\u00e6ft",
"new_budget": "Nyt budget",
"new_asset_account": "Ny aktivkonto",
"newTransfer": "New transfer",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "New deposit",
"newWithdrawal": "New expense",
"bills_paid": "Betalte regninger",
"left_to_spend": "Left to spend",
"no_budget": "(no budget)",
"budgeted": "Budgetteret",
"spent": "Spent",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Kildekontonavn starter med..",
"rule_trigger_source_account_ends_choice": "Kildekontonavnet slutter med..",
"rule_trigger_source_account_is_choice": "Kildekontonavn er..",
"rule_trigger_source_account_contains_choice": "Kildekontonavnet indeholder..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Kildekonto ID er pr\u00e6cis..",
"rule_trigger_destination_account_id_choice": "Destinationskonto ID er pr\u00e6cis..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Kildekonto er (kontant) konto",
"rule_trigger_destination_is_cash_choice": "Destinationskonto er (kontant) konto",
"rule_trigger_source_account_nr_starts_choice": "Kildekontonummer \/ IBAN starter med..",
"rule_trigger_source_account_nr_ends_choice": "Kildekontonummer \/ IBAN slutter med..",
"rule_trigger_source_account_nr_is_choice": "Kildekontonummer \/ IBAN er..",
"rule_trigger_source_account_nr_contains_choice": "Kildekontonummer \/ IBAN indeholder..",
"rule_trigger_destination_account_starts_choice": "Destinationskontonavnet starter med..",
"rule_trigger_destination_account_ends_choice": "Destinationskontonavnet slutter med..",
"rule_trigger_destination_account_is_choice": "Destinationskontonavnet er..",
"rule_trigger_destination_account_contains_choice": "Destinationskontonavnet indeholder..",
"rule_trigger_destination_account_nr_starts_choice": "Destinationskontonummer \/ IBAN starter med..",
"rule_trigger_destination_account_nr_ends_choice": "Destinationskontonummer \/ IBAN slutter med..",
"rule_trigger_destination_account_nr_is_choice": "Destinationskontonummer \/ IBAN er..",
"rule_trigger_destination_account_nr_contains_choice": "Destinationskontonummer \/ IBAN indeholder..",
"rule_trigger_transaction_type_choice": "Transaktionen er af type..",
"rule_trigger_category_is_choice": "Kategorien er..",
"rule_trigger_amount_less_choice": "Bel\u00f8bet er mindre end..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Bel\u00f8bet er mere end..",
"rule_trigger_description_starts_choice": "Beskrivelsen starter med..",
"rule_trigger_description_ends_choice": "Beskrivelsen slutter med..",
"rule_trigger_description_contains_choice": "Beskrivelsen indeholder..",
"rule_trigger_description_is_choice": "Beskrivelsen er..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Transaktionsdato er f\u00f8r..",
"rule_trigger_date_after_choice": "Transaktionsdatoen er efter..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Budgettet er..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Transaktionsvalutaen er..",
"rule_trigger_foreign_currency_is_choice": "Udenlandsk transaktionsvaluta er..",
"rule_trigger_has_attachments_choice": "Har mindst s\u00e5 mange vedh\u00e6ftede filer",
"rule_trigger_has_no_category_choice": "Har ingen kategori",
"rule_trigger_has_any_category_choice": "Har en (vilk\u00e5rlig) kategori",
"rule_trigger_has_no_budget_choice": "Har intet budget",
"rule_trigger_has_any_budget_choice": "Har et (noget) budget",
"rule_trigger_has_no_bill_choice": "Har ingen regning",
"rule_trigger_has_any_bill_choice": "Har en (valgfri) regning",
"rule_trigger_has_no_tag_choice": "Har ingen tag(s)",
"rule_trigger_has_any_tag_choice": "Har en eller flere (nogen) tags",
"rule_trigger_any_notes_choice": "Har (nogen) noter",
"rule_trigger_no_notes_choice": "Har ingen noter",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Regningen er..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaktionsjournal ID er..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Ryd alle kategorier",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Ryd ethvert budget",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Fjern alle tags",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Fjern alle noter",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Konverter transaktionen til et indskud",
"rule_action_convert_withdrawal_choice": "Konverter transaktionen til en udbetaling",
"rule_action_convert_transfer_choice": "Konverter transaktionen til en overf\u00f8rsel",
"placeholder": "[Placeholder]",
"recurrences": "Recurring transactions",
"title_expenses": "Udgifter",
"title_withdrawal": "Udgifter",
"title_revenue": "Indt\u00e6gter \/ indkomst",
"pref_1D": "En dag",
"pref_1W": "En uge",
"pref_1M": "En m\u00e5ned",
"pref_3M": "Tre m\u00e5neder (kvartal)",
"pref_6M": "Seks m\u00e5neder",
"pref_1Y": "Et \u00e5r",
"repeat_freq_yearly": "\u00e5rligt",
"repeat_freq_half-year": "hvert halve \u00e5r",
"repeat_freq_quarterly": "kvartalsvis",
"repeat_freq_monthly": "m\u00e5nedligt",
"repeat_freq_weekly": "ugentligt",
"single_split": "Opdel",
"asset_accounts": "Aktivkonti",
"expense_accounts": "Udgiftskonti",
"liabilities_accounts": "G\u00e6ld",
"undefined_accounts": "Accounts",
"name": "Name",
"revenue_accounts": "Indt\u00e6gtskonti",
"description": "Description",
"category": "Kategori",
"title_deposit": "Indt\u00e6gter \/ indkomster",
"title_transfer": "Overf\u00f8rsler",
"title_transfers": "Overf\u00f8rsler",
"piggyBanks": "Spareb\u00f8sser",
"rules": "Regler",
"accounts": "Konti",
"categories": "Kategorier",
"tags": "Etiketter",
"object_groups_page_title": "Groups",
"reports": "Rapporter",
"webhooks": "Webhooks",
"currencies": "Currencies",
"administration": "Administration",
"profile": "Profile",
"source_account": "Kildekonto",
"destination_account": "Destinationskonto",
"amount": "Bel\u00f8b",
"date": "Date",
"time": "Time",
"preferences": "Preferences",
"transactions": "Transaktioner",
"balance": "Saldo",
"budgets": "Budgetter",
"subscriptions": "Abonnementer",
"welcome_back": "Hvad spiller?",
"bills_to_pay": "Regninger til betaling",
"net_worth": "Nettoformue",
"pref_last365": "Sidste \u00e5r",
"pref_last90": "Sidste 90 dage",
"pref_last30": "Sidste 30 dage",
"pref_last7": "Sidste 7 dage",
"pref_YTD": "\u00c5r til dato",
"pref_QTD": "Kvartal til dato",
"pref_MTD": "M\u00e5ned til dato"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "de",
"month_and_day_fns": "d. MMMM Y"
},
"form": {
"name": "Name",
"amount_min": "Mindestbetrag",
"amount_max": "H\u00f6chstbetrag",
"url": "URL",
"title": "Titel",
"first_date": "Erstes Datum",
"repetitions": "Wiederholungen",
"description": "Beschreibung",
"iban": "IBAN",
"skip": "\u00dcberspringen",
"date": "Datum"
},
"list": {
"name": "Name",
"account_number": "Kontonummer",
"currentBalance": "Aktueller Kontostand",
"lastActivity": "Letzte Aktivit\u00e4t",
"active": "Aktiv?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Kostenrahmen",
"subscriptions": "Abonnements",
"transactions": "Buchungen",
"title_expenses": "Ausgaben",
"title_withdrawal": "Ausgaben",
"title_revenue": "Einnahmen \/ Einkommen",
"title_deposit": "Einnahmen \/ Einkommen",
"title_transfer": "Umbuchungen",
"title_transfers": "Umbuchungen",
"asset_accounts": "Bestandskonten",
"expense_accounts": "Ausgabekonten",
"revenue_accounts": "Einnahmenkonten",
"liabilities_accounts": "Verbindlichkeiten"
},
"firefly": {
"actions": "Aktionen",
"edit": "Bearbeiten",
"delete": "L\u00f6schen",
"reconcile": "Abgleichen",
"create_new_asset": "Neues Bestandskonto erstellen",
"confirm_action": "Aktion best\u00e4tigen",
"new_budget": "Neues Budget",
"new_asset_account": "Neues Bestandskonto",
"newTransfer": "Neue Umbuchung",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Neue Einnahme",
"newWithdrawal": "Neue Ausgabe",
"bills_paid": "Rechnungen bezahlt",
"left_to_spend": "Verbleibend zum Ausgeben",
"no_budget": "(kein Budget)",
"budgeted": "Vorgesehen",
"spent": "Ausgegeben",
"no_bill": "(keine Belege)",
"rule_trigger_source_account_starts_choice": "Quellkonto-Name beginnt mit..",
"rule_trigger_source_account_ends_choice": "Quellkonto-Name endet mit..",
"rule_trigger_source_account_is_choice": "Quellkonto-Name lautet..",
"rule_trigger_source_account_contains_choice": "Quellkonto-Name enh\u00e4lt..",
"rule_trigger_account_id_choice": "Beide Konto IDs sind exakt..",
"rule_trigger_source_account_id_choice": "Quellkonto-ID ist genau..",
"rule_trigger_destination_account_id_choice": "Zielkonto-ID ist genau..",
"rule_trigger_account_is_cash_choice": "Beide Konten sind Bargeld",
"rule_trigger_source_is_cash_choice": "Quellkonto ist (bar)",
"rule_trigger_destination_is_cash_choice": "Zielkonto ist (bar)",
"rule_trigger_source_account_nr_starts_choice": "Quellkontonummer\/IBAN beginnt mit..",
"rule_trigger_source_account_nr_ends_choice": "Quellkontonummer\/IBAN endet auf..",
"rule_trigger_source_account_nr_is_choice": "Quellkontonummer\/IBAN ist..",
"rule_trigger_source_account_nr_contains_choice": "Quellkontonummer\/IBAN enth\u00e4lt..",
"rule_trigger_destination_account_starts_choice": "Zielkonto-Name beginnt mit..",
"rule_trigger_destination_account_ends_choice": "Zielkonto-Name endet auf..",
"rule_trigger_destination_account_is_choice": "Zielkonto-Name ist..",
"rule_trigger_destination_account_contains_choice": "Zielkonto-Name enth\u00e4lt..",
"rule_trigger_destination_account_nr_starts_choice": "Zielkontonummer\/IBAN beginnt mit..",
"rule_trigger_destination_account_nr_ends_choice": "Zielkontonummer\/IBAN endet auf..",
"rule_trigger_destination_account_nr_is_choice": "Zielkontonummer \/ IBAN ist..",
"rule_trigger_destination_account_nr_contains_choice": "Zielkontonummer \/ IBAN enth\u00e4lt..",
"rule_trigger_transaction_type_choice": "Buchung ist vom Typ..",
"rule_trigger_category_is_choice": "Kategorie ist..",
"rule_trigger_amount_less_choice": "Betrag ist geringer als..",
"rule_trigger_amount_is_choice": "Betrag ist..",
"rule_trigger_amount_more_choice": "Betrag ist mehr als..",
"rule_trigger_description_starts_choice": "Beschreibung beginnt mit..",
"rule_trigger_description_ends_choice": "Beschreibung endet mit..",
"rule_trigger_description_contains_choice": "Beschreibung enth\u00e4lt..",
"rule_trigger_description_is_choice": "Beschreibung ist..",
"rule_trigger_date_on_choice": "Buchungsdatum lautet..",
"rule_trigger_date_before_choice": "Buchungsdatum ist vor \u2026",
"rule_trigger_date_after_choice": "Buchungsdatum ist nach \u2026",
"rule_trigger_created_at_on_choice": "Transaktion wurde gemacht am..",
"rule_trigger_updated_at_on_choice": "Transaktion wurde zuletzt bearbeitet am..",
"rule_trigger_budget_is_choice": "Budget ist..",
"rule_trigger_tag_is_choice": "Irgendein Schlagwort lautet..",
"rule_trigger_currency_is_choice": "Buchungsw\u00e4hrung ist \u2026",
"rule_trigger_foreign_currency_is_choice": "Fremdw\u00e4hrung der Buchung ist \u2026",
"rule_trigger_has_attachments_choice": "Hat mindestens so viele Anh\u00e4nge",
"rule_trigger_has_no_category_choice": "Ohne Kategorie",
"rule_trigger_has_any_category_choice": "Hat eine (beliebige) Kategorie",
"rule_trigger_has_no_budget_choice": "Enth\u00e4lt kein Budget",
"rule_trigger_has_any_budget_choice": "Enth\u00e4lt ein (beliebiges) Budget",
"rule_trigger_has_no_bill_choice": "Keine Rechnung zugeordnet",
"rule_trigger_has_any_bill_choice": "Hat eine (beliebige) Rechnung",
"rule_trigger_has_no_tag_choice": "Enth\u00e4lt keine Schlagw\u00f6rter",
"rule_trigger_has_any_tag_choice": "Enth\u00e4lt einen oder mehrere (beliebige) Schlagw\u00f6rter",
"rule_trigger_any_notes_choice": "Hat (beliebige) Notizen",
"rule_trigger_no_notes_choice": "Hat keine Notizen",
"rule_trigger_notes_is_choice": "Notizen lauten..",
"rule_trigger_notes_contains_choice": "Notizen beinhalten..",
"rule_trigger_notes_starts_choice": "Notizen beginnen mit..",
"rule_trigger_notes_ends_choice": "Notizen enden mit..",
"rule_trigger_bill_is_choice": "Rechnung ist..",
"rule_trigger_external_id_is_choice": "Externe ID ist..",
"rule_trigger_internal_reference_is_choice": "Interne Referenz ist..",
"rule_trigger_journal_id_choice": "Transaktions-Journal-ID ist..",
"rule_trigger_any_external_url_choice": "Buchung hat eine externe URL",
"rule_trigger_no_external_url_choice": "Buchung hat keine externe URL",
"rule_trigger_id_choice": "Buchungskennung lautet \u2026",
"rule_action_delete_transaction_choice": "Buchung L\u00d6SCHEN(!)",
"rule_action_set_category_choice": "Kategorie zuweisen\u00a0...",
"rule_action_clear_category_choice": "Bereinige jede Kategorie",
"rule_action_set_budget_choice": "Setze Budget auf ..",
"rule_action_clear_budget_choice": "Alle Budgets leeren",
"rule_action_add_tag_choice": "Schlagwort hinzuf\u00fcgen \u2026",
"rule_action_remove_tag_choice": "Schlagwort entfernen \u2026",
"rule_action_remove_all_tags_choice": "Alle Schlagw\u00f6rter entfernen",
"rule_action_set_description_choice": "Beschreibung festlegen auf \u2026",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Quellkonto festlegen auf ..",
"rule_action_set_destination_account_choice": "Zielkonto festlegen auf ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Alle Notizen entfernen",
"rule_action_set_notes_choice": "Setze Notizen auf ..",
"rule_action_link_to_bill_choice": "Mit einer Rechnung verkn\u00fcpfen..",
"rule_action_convert_deposit_choice": "Buchung in eine Einzahlung umwandeln",
"rule_action_convert_withdrawal_choice": "Buchung in eine Ausgabe umwandeln",
"rule_action_convert_transfer_choice": "Buchung in eine Umbuchung umwandeln",
"placeholder": "[Placeholder]",
"recurrences": "Dauerauftr\u00e4ge",
"title_expenses": "Ausgaben",
"title_withdrawal": "Ausgaben",
"title_revenue": "Einnahmen \/ Einkommen",
"pref_1D": "Ein Tag",
"pref_1W": "Eine Woche",
"pref_1M": "Ein Monat",
"pref_3M": "Drei Monate (Quartal)",
"pref_6M": "Sechs Monate",
"pref_1Y": "Ein Jahr",
"repeat_freq_yearly": "J\u00e4hrlich",
"repeat_freq_half-year": "halbj\u00e4hrlich",
"repeat_freq_quarterly": "viertelj\u00e4hrlich",
"repeat_freq_monthly": "monatlich",
"repeat_freq_weekly": "w\u00f6chentlich",
"single_split": "Teilen",
"asset_accounts": "Bestandskonten",
"expense_accounts": "Ausgabekonten",
"liabilities_accounts": "Verbindlichkeiten",
"undefined_accounts": "Konten",
"name": "Name",
"revenue_accounts": "Einnahmekonten",
"description": "Beschreibung",
"category": "Kategorie",
"title_deposit": "Einnahmen \/ Einkommen",
"title_transfer": "Umbuchungen",
"title_transfers": "Umbuchungen",
"piggyBanks": "Sparschweine",
"rules": "Regeln",
"accounts": "Konten",
"categories": "Kategorien",
"tags": "Schlagw\u00f6rter",
"object_groups_page_title": "Gruppen",
"reports": "Berichte",
"webhooks": "Webhooks",
"currencies": "W\u00e4hrungen",
"administration": "Verwaltung",
"profile": "Profil",
"source_account": "Quellkonto",
"destination_account": "Zielkonto",
"amount": "Betrag",
"date": "Datum",
"time": "Uhrzeit",
"preferences": "Einstellungen",
"transactions": "Buchungen",
"balance": "Kontostand",
"budgets": "Budgets",
"subscriptions": "Abonnements",
"welcome_back": "\u00dcberblick",
"bills_to_pay": "Unbezahlte Rechnungen",
"net_worth": "Eigenkapital",
"pref_last365": "Letztes Jahr",
"pref_last90": "Letzte 90 Tage",
"pref_last30": "Letzte 30\u00a0Tage",
"pref_last7": "Letzte 7 Tage",
"pref_YTD": "Jahr bis heute",
"pref_QTD": "Quartal bis heute",
"pref_MTD": "Monat bis heute"
}
"config": {
"html_language": "de",
"month_and_day_fns": "d. MMMM Y"
},
"form": {
"name": "Name",
"amount_min": "Mindestbetrag",
"amount_max": "H\u00f6chstbetrag",
"url": "URL",
"title": "Titel",
"first_date": "Erstes Datum",
"repetitions": "Wiederholungen",
"description": "Beschreibung",
"iban": "IBAN",
"skip": "\u00dcberspringen",
"date": "Datum"
},
"list": {
"name": "Name",
"account_number": "Kontonummer",
"currentBalance": "Aktueller Kontostand",
"lastActivity": "Letzte Aktivit\u00e4t",
"active": "Aktiv?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Kostenrahmen",
"subscriptions": "Abonnements",
"transactions": "Buchungen",
"title_expenses": "Ausgaben",
"title_withdrawal": "Ausgaben",
"title_revenue": "Einnahmen \/ Einkommen",
"title_deposit": "Einnahmen \/ Einkommen",
"title_transfer": "Umbuchungen",
"title_transfers": "Umbuchungen",
"asset_accounts": "Bestandskonten",
"expense_accounts": "Ausgabekonten",
"revenue_accounts": "Einnahmenkonten",
"liabilities_accounts": "Verbindlichkeiten"
},
"firefly": {
"actions": "Aktionen",
"edit": "Bearbeiten",
"delete": "L\u00f6schen",
"reconcile": "Abgleichen",
"create_new_asset": "Neues Bestandskonto erstellen",
"confirm_action": "Aktion best\u00e4tigen",
"new_budget": "Neues Budget",
"new_asset_account": "Neues Bestandskonto",
"newTransfer": "Neue Umbuchung",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Neue Einnahme",
"newWithdrawal": "Neue Ausgabe",
"bills_paid": "Rechnungen bezahlt",
"left_to_spend": "Verbleibend zum Ausgeben",
"no_budget": "(kein Budget)",
"budgeted": "Vorgesehen",
"spent": "Ausgegeben",
"no_bill": "(keine Belege)",
"rule_trigger_source_account_starts_choice": "Quellkonto-Name beginnt mit..",
"rule_trigger_source_account_ends_choice": "Quellkonto-Name endet mit..",
"rule_trigger_source_account_is_choice": "Quellkonto-Name lautet..",
"rule_trigger_source_account_contains_choice": "Quellkonto-Name enh\u00e4lt..",
"rule_trigger_account_id_choice": "Beide Konto IDs sind exakt..",
"rule_trigger_source_account_id_choice": "Quellkonto-ID ist genau..",
"rule_trigger_destination_account_id_choice": "Zielkonto-ID ist genau..",
"rule_trigger_account_is_cash_choice": "Beide Konten sind Bargeld",
"rule_trigger_source_is_cash_choice": "Quellkonto ist (bar)",
"rule_trigger_destination_is_cash_choice": "Zielkonto ist (bar)",
"rule_trigger_source_account_nr_starts_choice": "Quellkontonummer\/IBAN beginnt mit..",
"rule_trigger_source_account_nr_ends_choice": "Quellkontonummer\/IBAN endet auf..",
"rule_trigger_source_account_nr_is_choice": "Quellkontonummer\/IBAN ist..",
"rule_trigger_source_account_nr_contains_choice": "Quellkontonummer\/IBAN enth\u00e4lt..",
"rule_trigger_destination_account_starts_choice": "Zielkonto-Name beginnt mit..",
"rule_trigger_destination_account_ends_choice": "Zielkonto-Name endet auf..",
"rule_trigger_destination_account_is_choice": "Zielkonto-Name ist..",
"rule_trigger_destination_account_contains_choice": "Zielkonto-Name enth\u00e4lt..",
"rule_trigger_destination_account_nr_starts_choice": "Zielkontonummer\/IBAN beginnt mit..",
"rule_trigger_destination_account_nr_ends_choice": "Zielkontonummer\/IBAN endet auf..",
"rule_trigger_destination_account_nr_is_choice": "Zielkontonummer \/ IBAN ist..",
"rule_trigger_destination_account_nr_contains_choice": "Zielkontonummer \/ IBAN enth\u00e4lt..",
"rule_trigger_transaction_type_choice": "Buchung ist vom Typ..",
"rule_trigger_category_is_choice": "Kategorie ist..",
"rule_trigger_amount_less_choice": "Betrag ist geringer als..",
"rule_trigger_amount_is_choice": "Betrag ist..",
"rule_trigger_amount_more_choice": "Betrag ist mehr als..",
"rule_trigger_description_starts_choice": "Beschreibung beginnt mit..",
"rule_trigger_description_ends_choice": "Beschreibung endet mit..",
"rule_trigger_description_contains_choice": "Beschreibung enth\u00e4lt..",
"rule_trigger_description_is_choice": "Beschreibung ist..",
"rule_trigger_date_on_choice": "Buchungsdatum lautet..",
"rule_trigger_date_before_choice": "Buchungsdatum ist vor \u2026",
"rule_trigger_date_after_choice": "Buchungsdatum ist nach \u2026",
"rule_trigger_created_at_on_choice": "Transaktion wurde gemacht am..",
"rule_trigger_updated_at_on_choice": "Transaktion wurde zuletzt bearbeitet am..",
"rule_trigger_budget_is_choice": "Budget ist..",
"rule_trigger_tag_is_choice": "Irgendein Schlagwort lautet..",
"rule_trigger_currency_is_choice": "Buchungsw\u00e4hrung ist \u2026",
"rule_trigger_foreign_currency_is_choice": "Fremdw\u00e4hrung der Buchung ist \u2026",
"rule_trigger_has_attachments_choice": "Hat mindestens so viele Anh\u00e4nge",
"rule_trigger_has_no_category_choice": "Ohne Kategorie",
"rule_trigger_has_any_category_choice": "Hat eine (beliebige) Kategorie",
"rule_trigger_has_no_budget_choice": "Enth\u00e4lt kein Budget",
"rule_trigger_has_any_budget_choice": "Enth\u00e4lt ein (beliebiges) Budget",
"rule_trigger_has_no_bill_choice": "Keine Rechnung zugeordnet",
"rule_trigger_has_any_bill_choice": "Hat eine (beliebige) Rechnung",
"rule_trigger_has_no_tag_choice": "Enth\u00e4lt keine Schlagw\u00f6rter",
"rule_trigger_has_any_tag_choice": "Enth\u00e4lt einen oder mehrere (beliebige) Schlagw\u00f6rter",
"rule_trigger_any_notes_choice": "Hat (beliebige) Notizen",
"rule_trigger_no_notes_choice": "Hat keine Notizen",
"rule_trigger_notes_is_choice": "Notizen lauten..",
"rule_trigger_notes_contains_choice": "Notizen beinhalten..",
"rule_trigger_notes_starts_choice": "Notizen beginnen mit..",
"rule_trigger_notes_ends_choice": "Notizen enden mit..",
"rule_trigger_bill_is_choice": "Rechnung ist..",
"rule_trigger_external_id_is_choice": "Externe ID ist..",
"rule_trigger_internal_reference_is_choice": "Interne Referenz ist..",
"rule_trigger_journal_id_choice": "Transaktions-Journal-ID ist..",
"rule_trigger_any_external_url_choice": "Buchung hat eine externe URL",
"rule_trigger_no_external_url_choice": "Buchung hat keine externe URL",
"rule_trigger_id_choice": "Buchungskennung lautet \u2026",
"rule_action_delete_transaction_choice": "Buchung L\u00d6SCHEN(!)",
"rule_action_set_category_choice": "Kategorie zuweisen\u00a0...",
"rule_action_clear_category_choice": "Bereinige jede Kategorie",
"rule_action_set_budget_choice": "Setze Budget auf ..",
"rule_action_clear_budget_choice": "Alle Budgets leeren",
"rule_action_add_tag_choice": "Schlagwort hinzuf\u00fcgen \u2026",
"rule_action_remove_tag_choice": "Schlagwort entfernen \u2026",
"rule_action_remove_all_tags_choice": "Alle Schlagw\u00f6rter entfernen",
"rule_action_set_description_choice": "Beschreibung festlegen auf \u2026",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Quellkonto festlegen auf ..",
"rule_action_set_destination_account_choice": "Zielkonto festlegen auf ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Alle Notizen entfernen",
"rule_action_set_notes_choice": "Setze Notizen auf ..",
"rule_action_link_to_bill_choice": "Mit einer Rechnung verkn\u00fcpfen..",
"rule_action_convert_deposit_choice": "Buchung in eine Einzahlung umwandeln",
"rule_action_convert_withdrawal_choice": "Buchung in eine Ausgabe umwandeln",
"rule_action_convert_transfer_choice": "Buchung in eine Umbuchung umwandeln",
"placeholder": "[Placeholder]",
"recurrences": "Dauerauftr\u00e4ge",
"title_expenses": "Ausgaben",
"title_withdrawal": "Ausgaben",
"title_revenue": "Einnahmen \/ Einkommen",
"pref_1D": "Ein Tag",
"pref_1W": "Eine Woche",
"pref_1M": "Ein Monat",
"pref_3M": "Drei Monate (Quartal)",
"pref_6M": "Sechs Monate",
"pref_1Y": "Ein Jahr",
"repeat_freq_yearly": "J\u00e4hrlich",
"repeat_freq_half-year": "halbj\u00e4hrlich",
"repeat_freq_quarterly": "viertelj\u00e4hrlich",
"repeat_freq_monthly": "monatlich",
"repeat_freq_weekly": "w\u00f6chentlich",
"single_split": "Teilen",
"asset_accounts": "Bestandskonten",
"expense_accounts": "Ausgabekonten",
"liabilities_accounts": "Verbindlichkeiten",
"undefined_accounts": "Konten",
"name": "Name",
"revenue_accounts": "Einnahmekonten",
"description": "Beschreibung",
"category": "Kategorie",
"title_deposit": "Einnahmen \/ Einkommen",
"title_transfer": "Umbuchungen",
"title_transfers": "Umbuchungen",
"piggyBanks": "Sparschweine",
"rules": "Regeln",
"accounts": "Konten",
"categories": "Kategorien",
"tags": "Schlagw\u00f6rter",
"object_groups_page_title": "Gruppen",
"reports": "Berichte",
"webhooks": "Webhooks",
"currencies": "W\u00e4hrungen",
"administration": "Verwaltung",
"profile": "Profil",
"source_account": "Quellkonto",
"destination_account": "Zielkonto",
"amount": "Betrag",
"date": "Datum",
"time": "Uhrzeit",
"preferences": "Einstellungen",
"transactions": "Buchungen",
"balance": "Kontostand",
"budgets": "Budgets",
"subscriptions": "Abonnements",
"welcome_back": "\u00dcberblick",
"bills_to_pay": "Unbezahlte Rechnungen",
"net_worth": "Eigenkapital",
"pref_last365": "Letztes Jahr",
"pref_last90": "Letzte 90 Tage",
"pref_last30": "Letzte 30\u00a0Tage",
"pref_last7": "Letzte 7 Tage",
"pref_YTD": "Jahr bis heute",
"pref_QTD": "Quartal bis heute",
"pref_MTD": "Monat bis heute"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "el",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "\u038c\u03bd\u03bf\u03bc\u03b1",
"amount_min": "\u0395\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf \u03c0\u03bf\u03c3\u03cc",
"amount_max": "\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf \u03c0\u03bf\u03c3\u03cc",
"url": "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL",
"title": "\u03a4\u03af\u03c4\u03bb\u03bf\u03c2",
"first_date": "\u03a0\u03c1\u03ce\u03c4\u03b7 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1",
"repetitions": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03ae\u03c8\u03b5\u03b9\u03c2",
"description": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae",
"iban": "IBAN",
"skip": "\u03a0\u03b1\u03c1\u03ac\u03bb\u03b5\u03b9\u03c8\u03b7",
"date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1"
},
"list": {
"name": "\u038c\u03bd\u03bf\u03bc\u03b1",
"account_number": "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd",
"currentBalance": "\u03a4\u03c1\u03ad\u03c7\u03bf\u03bd \u03c5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03bf",
"lastActivity": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1",
"active": "\u0395\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03cc;"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "\u03a0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af",
"subscriptions": "\u03a3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ad\u03c2",
"transactions": "\u03a3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2",
"title_expenses": "\u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2",
"title_withdrawal": "\u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2",
"title_revenue": "\u0388\u03c3\u03bf\u03b4\u03b1",
"title_deposit": "\u0388\u03c3\u03bf\u03b4\u03b1",
"title_transfer": "\u039c\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2",
"title_transfers": "\u039c\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2",
"asset_accounts": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03af \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5",
"expense_accounts": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03af \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd",
"revenue_accounts": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03af \u03b5\u03c3\u03cc\u03b4\u03c9\u03bd",
"liabilities_accounts": "\u03a5\u03c0\u03bf\u03c7\u03c1\u03b5\u03ce\u03c3\u03b5\u03b9\u03c2"
},
"firefly": {
"actions": "\u0395\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b5\u03c2",
"edit": "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1",
"delete": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae",
"reconcile": "\u03a4\u03b1\u03ba\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7",
"create_new_asset": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03bd\u03ad\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5",
"confirm_action": "\u0395\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7 \u03b5\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b1\u03c2",
"new_budget": "\u039d\u03ad\u03bf\u03c2 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc\u03c2",
"new_asset_account": "\u039d\u03ad\u03bf\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5",
"newTransfer": "\u039d\u03ad\u03b1 \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ac",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "\u039d\u03ad\u03b1 \u03ba\u03b1\u03c4\u03ac\u03b8\u03b5\u03c3\u03b7",
"newWithdrawal": "\u039d\u03ad\u03b1 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7",
"bills_paid": "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03bd\u03b1 \u03c0\u03ac\u03b3\u03b9\u03b1 \u03ad\u03be\u03bf\u03b4\u03b1",
"left_to_spend": "\u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b1 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03ce\u03bd",
"no_budget": "(\u03c7\u03c9\u03c1\u03af\u03c2 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc)",
"budgeted": "\u03a0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf",
"spent": "\u0394\u03b1\u03c0\u03b1\u03bd\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd",
"no_bill": "(\u03c7\u03c9\u03c1\u03af\u03c2 \u03c0\u03ac\u03b3\u03b9\u03bf \u03ad\u03be\u03bf\u03b4\u03bf)",
"rule_trigger_source_account_starts_choice": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \u03b1\u03c1\u03c7\u03af\u03b6\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_source_account_ends_choice": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03bd\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_source_account_is_choice": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_source_account_contains_choice": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "\u03a4\u03bf ID \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ce\u03c2..",
"rule_trigger_destination_account_id_choice": "\u03a4\u03bf ID \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ce\u03c2..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "\u039f \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 (\u03bc\u03b5\u03c4\u03c1\u03b7\u03c4\u03ce\u03bd)",
"rule_trigger_destination_is_cash_choice": "\u039f \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03b5\u03af\u03bd\u03b1\u03b9 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 (\u03bc\u03b5\u03c4\u03c1\u03b7\u03c4\u03ce\u03bd)",
"rule_trigger_source_account_nr_starts_choice": "\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \/ IBAN \u03b1\u03c1\u03c7\u03af\u03b6\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_source_account_nr_ends_choice": "\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \/ IBAN \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03bd\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_source_account_nr_is_choice": "\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \/ IBAN \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_source_account_nr_contains_choice": "\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \/ IBAN \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9..",
"rule_trigger_destination_account_starts_choice": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03b1\u03c1\u03c7\u03af\u03b6\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_destination_account_ends_choice": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03bd\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_destination_account_is_choice": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_destination_account_contains_choice": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9..",
"rule_trigger_destination_account_nr_starts_choice": "\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \/ IBAN \u03b1\u03c1\u03c7\u03af\u03b6\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_destination_account_nr_ends_choice": "\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \/ IBAN \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03bd\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_destination_account_nr_is_choice": "\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \/ IBAN \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_destination_account_nr_contains_choice": "\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \/ IBAN \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9..",
"rule_trigger_transaction_type_choice": "\u0397 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03cd\u03c0\u03bf\u03c5..",
"rule_trigger_category_is_choice": "\u0397 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_amount_less_choice": "\u03a4\u03bf \u03c0\u03bf\u03c3\u03cc \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "\u03a4\u03bf \u03c0\u03bf\u03c3\u03cc \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc..",
"rule_trigger_description_starts_choice": "\u0397 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03b1\u03c1\u03c7\u03af\u03b6\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_description_ends_choice": "\u0397 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03bd\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_description_contains_choice": "\u0397 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9..",
"rule_trigger_description_is_choice": "\u0397 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "\u0397 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c0\u03c1\u03b9\u03bd \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2..",
"rule_trigger_date_after_choice": "\u0397 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03c4\u03ac \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "\u039f \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_tag_is_choice": "\u039f\u03c0\u03bf\u03b9\u03b1\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5 \u03b5\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_currency_is_choice": "\u03a4\u03bf \u03bd\u03cc\u03bc\u03b9\u03c3\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_foreign_currency_is_choice": "\u03a4\u03bf \u03be\u03ad\u03bd\u03bf \u03bd\u03cc\u03bc\u03b9\u03c3\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_has_attachments_choice": "\u0388\u03c7\u03b5\u03b9 \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd \u03c4\u03cc\u03c3\u03b1 \u03c3\u03c5\u03bd\u03b7\u03bc\u03bc\u03ad\u03bd\u03b1",
"rule_trigger_has_no_category_choice": "\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1",
"rule_trigger_has_any_category_choice": "\u0388\u03c7\u03b5\u03b9 \u03bc\u03af\u03b1(\u03bf\u03c0\u03bf\u03b9\u03b1\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5) \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1",
"rule_trigger_has_no_budget_choice": "\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc",
"rule_trigger_has_any_budget_choice": "\u0388\u03c7\u03b5\u03b9 \u03ad\u03bd\u03b1\u03bd (\u03bf\u03c0\u03bf\u03b9\u03bf\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5) \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc",
"rule_trigger_has_no_bill_choice": "\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03c0\u03ac\u03b3\u03b9\u03bf \u03ad\u03be\u03bf\u03b4\u03bf",
"rule_trigger_has_any_bill_choice": "\u0388\u03c7\u03b5\u03b9 \u03ad\u03bd\u03b1 (\u03bf\u03c0\u03bf\u03b9\u03bf\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5) \u03c0\u03ac\u03b3\u03b9\u03bf \u03ad\u03be\u03bf\u03b4\u03bf",
"rule_trigger_has_no_tag_choice": "\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03b5\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1(\u03b5\u03c2)",
"rule_trigger_has_any_tag_choice": "\u0388\u03c7\u03b5\u03b9 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03b1\u03c0\u03cc \u03bc\u03af\u03b1 (\u03bf\u03c0\u03bf\u03b9\u03b5\u03c3\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5) \u03b5\u03c4\u03b9\u03ba\u03ad\u03c4\u03b5\u03c2",
"rule_trigger_any_notes_choice": "\u0388\u03c7\u03b5\u03b9 (\u03bf\u03c0\u03bf\u03b9\u03b5\u03c3\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5) \u03c3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2",
"rule_trigger_no_notes_choice": "\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03c3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2",
"rule_trigger_notes_is_choice": "\u039f\u03b9 \u03c3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_notes_contains_choice": "\u039f\u03b9 \u03c3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd..",
"rule_trigger_notes_starts_choice": "\u039f\u03b9 \u03c3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c1\u03c7\u03af\u03b6\u03bf\u03c5\u03bd \u03bc\u03b5..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "\u03a4\u03bf \u03c0\u03ac\u03b3\u03b9\u03bf \u03ad\u03be\u03bf\u03b4\u03bf \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "\u03a4\u03bf \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03b1\u03ba\u03cc ID \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "\u039a\u03b1\u03b8\u03b1\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03bf\u03c0\u03bf\u03b9\u03b1\u03c3\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "\u039a\u03b1\u03b8\u03b1\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03bf\u03c0\u03bf\u03b9\u03bf\u03c5\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03cd",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03cc\u03bb\u03c9\u03bd \u03c4\u03c9\u03bd \u03b5\u03c4\u03b9\u03ba\u03b5\u03c4\u03ce\u03bd",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03bf\u03c0\u03bf\u03b9\u03bf\u03bd\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5 \u03c3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03c9\u03bd",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03c3\u03b5 \u03bc\u03af\u03b1 \u03ba\u03b1\u03c4\u03ac\u03b8\u03b5\u03c3\u03b7",
"rule_action_convert_withdrawal_choice": "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03c3\u03b5 \u03bc\u03af\u03b1 \u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7",
"rule_action_convert_transfer_choice": "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03c3\u03b5 \u03bc\u03af\u03b1 \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ac",
"placeholder": "[Placeholder]",
"recurrences": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b5\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2",
"title_expenses": "\u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2",
"title_withdrawal": "\u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2",
"title_revenue": "\u0388\u03c3\u03bf\u03b4\u03b1",
"pref_1D": "\u039c\u03af\u03b1 \u03b7\u03bc\u03ad\u03c1\u03b1",
"pref_1W": "\u039c\u03af\u03b1 \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1",
"pref_1M": "\u0388\u03bd\u03b1 \u03bc\u03ae\u03bd\u03b1",
"pref_3M": "\u03a4\u03c1\u03b5\u03b9\u03c2 \u03bc\u03ae\u03bd\u03b5\u03c2 (\u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf)",
"pref_6M": "\u0388\u03be\u03b9 \u03bc\u03ae\u03bd\u03b5\u03c2 (\u03b5\u03be\u03ac\u03bc\u03b7\u03bd\u03bf)",
"pref_1Y": "\u0388\u03bd\u03b1 \u03ad\u03c4\u03bf\u03c2",
"repeat_freq_yearly": "\u03b5\u03c4\u03b7\u03c3\u03af\u03c9\u03c2",
"repeat_freq_half-year": "\u03b5\u03be\u03b1\u03bc\u03b7\u03bd\u03b9\u03b1\u03af\u03c9\u03c2",
"repeat_freq_quarterly": "\u03c4\u03c1\u03b9\u03bc\u03b7\u03bd\u03b9\u03b1\u03af\u03c9\u03c2",
"repeat_freq_monthly": "\u03bc\u03b7\u03bd\u03b9\u03b1\u03af\u03c9\u03c2",
"repeat_freq_weekly": "\u03b5\u03b2\u03b4\u03bf\u03bc\u03b1\u03b4\u03b9\u03b1\u03af\u03c9\u03c2",
"single_split": "\u0394\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2",
"asset_accounts": "\u039a\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03b1",
"expense_accounts": "\u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2",
"liabilities_accounts": "\u03a5\u03c0\u03bf\u03c7\u03c1\u03b5\u03ce\u03c3\u03b5\u03b9\u03c2",
"undefined_accounts": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03af",
"name": "\u038c\u03bd\u03bf\u03bc\u03b1",
"revenue_accounts": "\u0388\u03c3\u03bf\u03b4\u03b1",
"description": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae",
"category": "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1",
"title_deposit": "\u0388\u03c3\u03bf\u03b4\u03b1",
"title_transfer": "\u039c\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2",
"title_transfers": "\u039c\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2",
"piggyBanks": "\u039a\u03bf\u03c5\u03bc\u03c0\u03b1\u03c1\u03ac\u03b4\u03b5\u03c2",
"rules": "\u039a\u03b1\u03bd\u03cc\u03bd\u03b5\u03c2",
"accounts": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03af",
"categories": "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b5\u03c2",
"tags": "\u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b5\u03c2",
"object_groups_page_title": "\u039f\u03bc\u03ac\u03b4\u03b5\u03c2",
"reports": "\u0391\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2",
"webhooks": "Webhooks",
"currencies": "\u039d\u03bf\u03bc\u03af\u03c3\u03bc\u03b1\u03c4\u03b1",
"administration": "\u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7",
"profile": "\u03a0\u03c1\u03bf\u03c6\u03af\u03bb",
"source_account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2",
"destination_account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd",
"amount": "\u03a0\u03bf\u03c3\u03cc",
"date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1",
"time": "\u038f\u03c1\u03b1",
"preferences": "\u03a0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2",
"transactions": "\u03a3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2",
"balance": "\u0399\u03c3\u03bf\u03b6\u03cd\u03b3\u03b9\u03bf",
"budgets": "\u03a0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af",
"subscriptions": "\u03a3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ad\u03c2",
"welcome_back": "\u03a4\u03b9 \u03c0\u03b1\u03af\u03b6\u03b5\u03b9;",
"bills_to_pay": "\u03a0\u03ac\u03b3\u03b9\u03b1 \u03ad\u03be\u03bf\u03b4\u03b1 \u03c0\u03c1\u03bf\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae",
"net_worth": "\u039a\u03b1\u03b8\u03b1\u03c1\u03ae \u03b1\u03be\u03af\u03b1",
"pref_last365": "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03ad\u03c4\u03bf\u03c2",
"pref_last90": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b5\u03c2 90 \u03b7\u03bc\u03ad\u03c1\u03b5\u03c2",
"pref_last30": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b5\u03c2 30 \u03b7\u03bc\u03ad\u03c1\u03b5\u03c2",
"pref_last7": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b5\u03c2 7 \u03b7\u03bc\u03ad\u03c1\u03b5\u03c2",
"pref_YTD": "\u0391\u03c0\u03cc \u03c4\u03b7\u03bd \u03b1\u03c1\u03c7\u03ae \u03c4\u03bf\u03c5 \u03ad\u03c4\u03bf\u03c5\u03c2 \u03c9\u03c2 \u03c3\u03ae\u03bc\u03b5\u03c1\u03b1",
"pref_QTD": "\u0391\u03c0\u03cc \u03c4\u03b7\u03bd \u03b1\u03c1\u03c7\u03ae \u03c4\u03bf\u03c5 \u03c4\u03c1\u03b9\u03bc\u03ae\u03bd\u03bf\u03c5 \u03c9\u03c2 \u03c3\u03ae\u03bc\u03b5\u03c1\u03b1",
"pref_MTD": "\u0391\u03c0\u03cc \u03c4\u03b7\u03bd\u03bd \u03b1\u03c1\u03c7\u03ae \u03c4\u03bf\u03c5 \u03bc\u03ae\u03bd\u03b1 \u03c9\u03c2 \u03c3\u03ae\u03bc\u03b5\u03c1\u03b1"
}
"config": {
"html_language": "el",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "\u038c\u03bd\u03bf\u03bc\u03b1",
"amount_min": "\u0395\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf \u03c0\u03bf\u03c3\u03cc",
"amount_max": "\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf \u03c0\u03bf\u03c3\u03cc",
"url": "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL",
"title": "\u03a4\u03af\u03c4\u03bb\u03bf\u03c2",
"first_date": "\u03a0\u03c1\u03ce\u03c4\u03b7 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1",
"repetitions": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03ae\u03c8\u03b5\u03b9\u03c2",
"description": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae",
"iban": "IBAN",
"skip": "\u03a0\u03b1\u03c1\u03ac\u03bb\u03b5\u03b9\u03c8\u03b7",
"date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1"
},
"list": {
"name": "\u038c\u03bd\u03bf\u03bc\u03b1",
"account_number": "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd",
"currentBalance": "\u03a4\u03c1\u03ad\u03c7\u03bf\u03bd \u03c5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03bf",
"lastActivity": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1",
"active": "\u0395\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03cc;"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "\u03a0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af",
"subscriptions": "\u03a3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ad\u03c2",
"transactions": "\u03a3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2",
"title_expenses": "\u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2",
"title_withdrawal": "\u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2",
"title_revenue": "\u0388\u03c3\u03bf\u03b4\u03b1",
"title_deposit": "\u0388\u03c3\u03bf\u03b4\u03b1",
"title_transfer": "\u039c\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2",
"title_transfers": "\u039c\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2",
"asset_accounts": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03af \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5",
"expense_accounts": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03af \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd",
"revenue_accounts": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03af \u03b5\u03c3\u03cc\u03b4\u03c9\u03bd",
"liabilities_accounts": "\u03a5\u03c0\u03bf\u03c7\u03c1\u03b5\u03ce\u03c3\u03b5\u03b9\u03c2"
},
"firefly": {
"actions": "\u0395\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b5\u03c2",
"edit": "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1",
"delete": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae",
"reconcile": "\u03a4\u03b1\u03ba\u03c4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7",
"create_new_asset": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03bd\u03ad\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5",
"confirm_action": "\u0395\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7 \u03b5\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b1\u03c2",
"new_budget": "\u039d\u03ad\u03bf\u03c2 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc\u03c2",
"new_asset_account": "\u039d\u03ad\u03bf\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5",
"newTransfer": "\u039d\u03ad\u03b1 \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ac",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "\u039d\u03ad\u03b1 \u03ba\u03b1\u03c4\u03ac\u03b8\u03b5\u03c3\u03b7",
"newWithdrawal": "\u039d\u03ad\u03b1 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7",
"bills_paid": "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03bd\u03b1 \u03c0\u03ac\u03b3\u03b9\u03b1 \u03ad\u03be\u03bf\u03b4\u03b1",
"left_to_spend": "\u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b1 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03ce\u03bd",
"no_budget": "(\u03c7\u03c9\u03c1\u03af\u03c2 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc)",
"budgeted": "\u03a0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf",
"spent": "\u0394\u03b1\u03c0\u03b1\u03bd\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd",
"no_bill": "(\u03c7\u03c9\u03c1\u03af\u03c2 \u03c0\u03ac\u03b3\u03b9\u03bf \u03ad\u03be\u03bf\u03b4\u03bf)",
"rule_trigger_source_account_starts_choice": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \u03b1\u03c1\u03c7\u03af\u03b6\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_source_account_ends_choice": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03bd\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_source_account_is_choice": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_source_account_contains_choice": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "\u03a4\u03bf ID \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ce\u03c2..",
"rule_trigger_destination_account_id_choice": "\u03a4\u03bf ID \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ce\u03c2..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "\u039f \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 (\u03bc\u03b5\u03c4\u03c1\u03b7\u03c4\u03ce\u03bd)",
"rule_trigger_destination_is_cash_choice": "\u039f \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03b5\u03af\u03bd\u03b1\u03b9 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 (\u03bc\u03b5\u03c4\u03c1\u03b7\u03c4\u03ce\u03bd)",
"rule_trigger_source_account_nr_starts_choice": "\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \/ IBAN \u03b1\u03c1\u03c7\u03af\u03b6\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_source_account_nr_ends_choice": "\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \/ IBAN \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03bd\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_source_account_nr_is_choice": "\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \/ IBAN \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_source_account_nr_contains_choice": "\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2 \/ IBAN \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9..",
"rule_trigger_destination_account_starts_choice": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03b1\u03c1\u03c7\u03af\u03b6\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_destination_account_ends_choice": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03bd\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_destination_account_is_choice": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_destination_account_contains_choice": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9..",
"rule_trigger_destination_account_nr_starts_choice": "\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \/ IBAN \u03b1\u03c1\u03c7\u03af\u03b6\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_destination_account_nr_ends_choice": "\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \/ IBAN \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03bd\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_destination_account_nr_is_choice": "\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \/ IBAN \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_destination_account_nr_contains_choice": "\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \/ IBAN \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9..",
"rule_trigger_transaction_type_choice": "\u0397 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03cd\u03c0\u03bf\u03c5..",
"rule_trigger_category_is_choice": "\u0397 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_amount_less_choice": "\u03a4\u03bf \u03c0\u03bf\u03c3\u03cc \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "\u03a4\u03bf \u03c0\u03bf\u03c3\u03cc \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc..",
"rule_trigger_description_starts_choice": "\u0397 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03b1\u03c1\u03c7\u03af\u03b6\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_description_ends_choice": "\u0397 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03bd\u03b5\u03b9 \u03bc\u03b5..",
"rule_trigger_description_contains_choice": "\u0397 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9..",
"rule_trigger_description_is_choice": "\u0397 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "\u0397 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c0\u03c1\u03b9\u03bd \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2..",
"rule_trigger_date_after_choice": "\u0397 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03c4\u03ac \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "\u039f \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_tag_is_choice": "\u039f\u03c0\u03bf\u03b9\u03b1\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5 \u03b5\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_currency_is_choice": "\u03a4\u03bf \u03bd\u03cc\u03bc\u03b9\u03c3\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_foreign_currency_is_choice": "\u03a4\u03bf \u03be\u03ad\u03bd\u03bf \u03bd\u03cc\u03bc\u03b9\u03c3\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_has_attachments_choice": "\u0388\u03c7\u03b5\u03b9 \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd \u03c4\u03cc\u03c3\u03b1 \u03c3\u03c5\u03bd\u03b7\u03bc\u03bc\u03ad\u03bd\u03b1",
"rule_trigger_has_no_category_choice": "\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1",
"rule_trigger_has_any_category_choice": "\u0388\u03c7\u03b5\u03b9 \u03bc\u03af\u03b1(\u03bf\u03c0\u03bf\u03b9\u03b1\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5) \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1",
"rule_trigger_has_no_budget_choice": "\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc",
"rule_trigger_has_any_budget_choice": "\u0388\u03c7\u03b5\u03b9 \u03ad\u03bd\u03b1\u03bd (\u03bf\u03c0\u03bf\u03b9\u03bf\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5) \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc",
"rule_trigger_has_no_bill_choice": "\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03c0\u03ac\u03b3\u03b9\u03bf \u03ad\u03be\u03bf\u03b4\u03bf",
"rule_trigger_has_any_bill_choice": "\u0388\u03c7\u03b5\u03b9 \u03ad\u03bd\u03b1 (\u03bf\u03c0\u03bf\u03b9\u03bf\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5) \u03c0\u03ac\u03b3\u03b9\u03bf \u03ad\u03be\u03bf\u03b4\u03bf",
"rule_trigger_has_no_tag_choice": "\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03b5\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1(\u03b5\u03c2)",
"rule_trigger_has_any_tag_choice": "\u0388\u03c7\u03b5\u03b9 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03b1\u03c0\u03cc \u03bc\u03af\u03b1 (\u03bf\u03c0\u03bf\u03b9\u03b5\u03c3\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5) \u03b5\u03c4\u03b9\u03ba\u03ad\u03c4\u03b5\u03c2",
"rule_trigger_any_notes_choice": "\u0388\u03c7\u03b5\u03b9 (\u03bf\u03c0\u03bf\u03b9\u03b5\u03c3\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5) \u03c3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2",
"rule_trigger_no_notes_choice": "\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03c3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2",
"rule_trigger_notes_is_choice": "\u039f\u03b9 \u03c3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_notes_contains_choice": "\u039f\u03b9 \u03c3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd..",
"rule_trigger_notes_starts_choice": "\u039f\u03b9 \u03c3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c1\u03c7\u03af\u03b6\u03bf\u03c5\u03bd \u03bc\u03b5..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "\u03a4\u03bf \u03c0\u03ac\u03b3\u03b9\u03bf \u03ad\u03be\u03bf\u03b4\u03bf \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "\u03a4\u03bf \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03b1\u03ba\u03cc ID \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "\u039a\u03b1\u03b8\u03b1\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03bf\u03c0\u03bf\u03b9\u03b1\u03c3\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "\u039a\u03b1\u03b8\u03b1\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03bf\u03c0\u03bf\u03b9\u03bf\u03c5\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03cd",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03cc\u03bb\u03c9\u03bd \u03c4\u03c9\u03bd \u03b5\u03c4\u03b9\u03ba\u03b5\u03c4\u03ce\u03bd",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03bf\u03c0\u03bf\u03b9\u03bf\u03bd\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5 \u03c3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03c9\u03bd",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03c3\u03b5 \u03bc\u03af\u03b1 \u03ba\u03b1\u03c4\u03ac\u03b8\u03b5\u03c3\u03b7",
"rule_action_convert_withdrawal_choice": "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03c3\u03b5 \u03bc\u03af\u03b1 \u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7",
"rule_action_convert_transfer_choice": "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03c3\u03b5 \u03bc\u03af\u03b1 \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ac",
"placeholder": "[Placeholder]",
"recurrences": "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b5\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2",
"title_expenses": "\u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2",
"title_withdrawal": "\u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2",
"title_revenue": "\u0388\u03c3\u03bf\u03b4\u03b1",
"pref_1D": "\u039c\u03af\u03b1 \u03b7\u03bc\u03ad\u03c1\u03b1",
"pref_1W": "\u039c\u03af\u03b1 \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1",
"pref_1M": "\u0388\u03bd\u03b1 \u03bc\u03ae\u03bd\u03b1",
"pref_3M": "\u03a4\u03c1\u03b5\u03b9\u03c2 \u03bc\u03ae\u03bd\u03b5\u03c2 (\u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf)",
"pref_6M": "\u0388\u03be\u03b9 \u03bc\u03ae\u03bd\u03b5\u03c2 (\u03b5\u03be\u03ac\u03bc\u03b7\u03bd\u03bf)",
"pref_1Y": "\u0388\u03bd\u03b1 \u03ad\u03c4\u03bf\u03c2",
"repeat_freq_yearly": "\u03b5\u03c4\u03b7\u03c3\u03af\u03c9\u03c2",
"repeat_freq_half-year": "\u03b5\u03be\u03b1\u03bc\u03b7\u03bd\u03b9\u03b1\u03af\u03c9\u03c2",
"repeat_freq_quarterly": "\u03c4\u03c1\u03b9\u03bc\u03b7\u03bd\u03b9\u03b1\u03af\u03c9\u03c2",
"repeat_freq_monthly": "\u03bc\u03b7\u03bd\u03b9\u03b1\u03af\u03c9\u03c2",
"repeat_freq_weekly": "\u03b5\u03b2\u03b4\u03bf\u03bc\u03b1\u03b4\u03b9\u03b1\u03af\u03c9\u03c2",
"single_split": "\u0394\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2",
"asset_accounts": "\u039a\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03b1",
"expense_accounts": "\u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2",
"liabilities_accounts": "\u03a5\u03c0\u03bf\u03c7\u03c1\u03b5\u03ce\u03c3\u03b5\u03b9\u03c2",
"undefined_accounts": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03af",
"name": "\u038c\u03bd\u03bf\u03bc\u03b1",
"revenue_accounts": "\u0388\u03c3\u03bf\u03b4\u03b1",
"description": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae",
"category": "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1",
"title_deposit": "\u0388\u03c3\u03bf\u03b4\u03b1",
"title_transfer": "\u039c\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2",
"title_transfers": "\u039c\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2",
"piggyBanks": "\u039a\u03bf\u03c5\u03bc\u03c0\u03b1\u03c1\u03ac\u03b4\u03b5\u03c2",
"rules": "\u039a\u03b1\u03bd\u03cc\u03bd\u03b5\u03c2",
"accounts": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03af",
"categories": "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b5\u03c2",
"tags": "\u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b5\u03c2",
"object_groups_page_title": "\u039f\u03bc\u03ac\u03b4\u03b5\u03c2",
"reports": "\u0391\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2",
"webhooks": "Webhooks",
"currencies": "\u039d\u03bf\u03bc\u03af\u03c3\u03bc\u03b1\u03c4\u03b1",
"administration": "\u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7",
"profile": "\u03a0\u03c1\u03bf\u03c6\u03af\u03bb",
"source_account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2",
"destination_account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03cd",
"amount": "\u03a0\u03bf\u03c3\u03cc",
"date": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1",
"time": "\u038f\u03c1\u03b1",
"preferences": "\u03a0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2",
"transactions": "\u03a3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2",
"balance": "\u0399\u03c3\u03bf\u03b6\u03cd\u03b3\u03b9\u03bf",
"budgets": "\u03a0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af",
"subscriptions": "\u03a3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ad\u03c2",
"welcome_back": "\u03a4\u03b9 \u03c0\u03b1\u03af\u03b6\u03b5\u03b9;",
"bills_to_pay": "\u03a0\u03ac\u03b3\u03b9\u03b1 \u03ad\u03be\u03bf\u03b4\u03b1 \u03c0\u03c1\u03bf\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae",
"net_worth": "\u039a\u03b1\u03b8\u03b1\u03c1\u03ae \u03b1\u03be\u03af\u03b1",
"pref_last365": "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03ad\u03c4\u03bf\u03c2",
"pref_last90": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b5\u03c2 90 \u03b7\u03bc\u03ad\u03c1\u03b5\u03c2",
"pref_last30": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b5\u03c2 30 \u03b7\u03bc\u03ad\u03c1\u03b5\u03c2",
"pref_last7": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b5\u03c2 7 \u03b7\u03bc\u03ad\u03c1\u03b5\u03c2",
"pref_YTD": "\u0391\u03c0\u03cc \u03c4\u03b7\u03bd \u03b1\u03c1\u03c7\u03ae \u03c4\u03bf\u03c5 \u03ad\u03c4\u03bf\u03c5\u03c2 \u03c9\u03c2 \u03c3\u03ae\u03bc\u03b5\u03c1\u03b1",
"pref_QTD": "\u0391\u03c0\u03cc \u03c4\u03b7\u03bd \u03b1\u03c1\u03c7\u03ae \u03c4\u03bf\u03c5 \u03c4\u03c1\u03b9\u03bc\u03ae\u03bd\u03bf\u03c5 \u03c9\u03c2 \u03c3\u03ae\u03bc\u03b5\u03c1\u03b1",
"pref_MTD": "\u0391\u03c0\u03cc \u03c4\u03b7\u03bd\u03bd \u03b1\u03c1\u03c7\u03ae \u03c4\u03bf\u03c5 \u03bc\u03ae\u03bd\u03b1 \u03c9\u03c2 \u03c3\u03ae\u03bc\u03b5\u03c1\u03b1"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "en-gb",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "Name",
"amount_min": "Minimum amount",
"amount_max": "Maximum amount",
"url": "URL",
"title": "Title",
"first_date": "First date",
"repetitions": "Repetitions",
"description": "Description",
"iban": "IBAN",
"skip": "Skip",
"date": "Date"
},
"list": {
"name": "Name",
"account_number": "Account number",
"currentBalance": "Current balance",
"lastActivity": "Last activity",
"active": "Is active?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budgets",
"subscriptions": "Subscriptions",
"transactions": "Transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"revenue_accounts": "Revenue accounts",
"liabilities_accounts": "Liabilities"
},
"firefly": {
"actions": "Actions",
"edit": "Edit",
"delete": "Delete",
"reconcile": "Reconcile",
"create_new_asset": "Create new asset account",
"confirm_action": "Confirm action",
"new_budget": "New budget",
"new_asset_account": "New asset account",
"newTransfer": "New transfer",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "New deposit",
"newWithdrawal": "New expense",
"bills_paid": "Bills paid",
"left_to_spend": "Left to spend",
"no_budget": "(no budget)",
"budgeted": "Budgeted",
"spent": "Spent",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Source account name starts with..",
"rule_trigger_source_account_ends_choice": "Source account name ends with..",
"rule_trigger_source_account_is_choice": "Source account name is..",
"rule_trigger_source_account_contains_choice": "Source account name contains..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Source account ID is exactly..",
"rule_trigger_destination_account_id_choice": "Destination account ID is exactly..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Source account is (cash) account",
"rule_trigger_destination_is_cash_choice": "Destination account is (cash) account",
"rule_trigger_source_account_nr_starts_choice": "Source account number \/ IBAN starts with..",
"rule_trigger_source_account_nr_ends_choice": "Source account number \/ IBAN ends with..",
"rule_trigger_source_account_nr_is_choice": "Source account number \/ IBAN is..",
"rule_trigger_source_account_nr_contains_choice": "Source account number \/ IBAN contains..",
"rule_trigger_destination_account_starts_choice": "Destination account name starts with..",
"rule_trigger_destination_account_ends_choice": "Destination account name ends with..",
"rule_trigger_destination_account_is_choice": "Destination account name is..",
"rule_trigger_destination_account_contains_choice": "Destination account name contains..",
"rule_trigger_destination_account_nr_starts_choice": "Destination account number \/ IBAN starts with..",
"rule_trigger_destination_account_nr_ends_choice": "Destination account number \/ IBAN ends with..",
"rule_trigger_destination_account_nr_is_choice": "Destination account number \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Destination account number \/ IBAN contains..",
"rule_trigger_transaction_type_choice": "Transaction is of type..",
"rule_trigger_category_is_choice": "Category is..",
"rule_trigger_amount_less_choice": "Amount is less than..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Amount is more than..",
"rule_trigger_description_starts_choice": "Description starts with..",
"rule_trigger_description_ends_choice": "Description ends with..",
"rule_trigger_description_contains_choice": "Description contains..",
"rule_trigger_description_is_choice": "Description is..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Transaction date is before..",
"rule_trigger_date_after_choice": "Transaction date is after..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Budget is..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Transaction currency is..",
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
"rule_trigger_has_attachments_choice": "Has at least this many attachments",
"rule_trigger_has_no_category_choice": "Has no category",
"rule_trigger_has_any_category_choice": "Has a (any) category",
"rule_trigger_has_no_budget_choice": "Has no budget",
"rule_trigger_has_any_budget_choice": "Has a (any) budget",
"rule_trigger_has_no_bill_choice": "Has no bill",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "Has no tag(s)",
"rule_trigger_has_any_tag_choice": "Has one or more (any) tags",
"rule_trigger_any_notes_choice": "Has (any) notes",
"rule_trigger_no_notes_choice": "Has no notes",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Bill is..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Clear any category",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Clear any budget",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Remove all tags",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Remove any notes",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Convert the transaction to a deposit",
"rule_action_convert_withdrawal_choice": "Convert the transaction to a withdrawal",
"rule_action_convert_transfer_choice": "Convert the transaction to a transfer",
"placeholder": "[Placeholder]",
"recurrences": "Recurring transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"pref_1D": "One day",
"pref_1W": "One week",
"pref_1M": "One month",
"pref_3M": "Three months (quarter)",
"pref_6M": "Six months",
"pref_1Y": "One year",
"repeat_freq_yearly": "yearly",
"repeat_freq_half-year": "every half-year",
"repeat_freq_quarterly": "quarterly",
"repeat_freq_monthly": "monthly",
"repeat_freq_weekly": "weekly",
"single_split": "Split",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"liabilities_accounts": "Liabilities",
"undefined_accounts": "Accounts",
"name": "Name",
"revenue_accounts": "Revenue accounts",
"description": "Description",
"category": "Category",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"piggyBanks": "Piggy banks",
"rules": "Rules",
"accounts": "Accounts",
"categories": "Categories",
"tags": "Tags",
"object_groups_page_title": "Groups",
"reports": "Reports",
"webhooks": "Webhooks",
"currencies": "Currencies",
"administration": "Administration",
"profile": "Profile",
"source_account": "Source account",
"destination_account": "Destination account",
"amount": "Amount",
"date": "Date",
"time": "Time",
"preferences": "Preferences",
"transactions": "Transactions",
"balance": "Balance",
"budgets": "Budgets",
"subscriptions": "Subscriptions",
"welcome_back": "What's playing?",
"bills_to_pay": "Bills to pay",
"net_worth": "Net worth",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
"config": {
"html_language": "en-gb",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "Name",
"amount_min": "Minimum amount",
"amount_max": "Maximum amount",
"url": "URL",
"title": "Title",
"first_date": "First date",
"repetitions": "Repetitions",
"description": "Description",
"iban": "IBAN",
"skip": "Skip",
"date": "Date"
},
"list": {
"name": "Name",
"account_number": "Account number",
"currentBalance": "Current balance",
"lastActivity": "Last activity",
"active": "Is active?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budgets",
"subscriptions": "Subscriptions",
"transactions": "Transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"revenue_accounts": "Revenue accounts",
"liabilities_accounts": "Liabilities"
},
"firefly": {
"actions": "Actions",
"edit": "Edit",
"delete": "Delete",
"reconcile": "Reconcile",
"create_new_asset": "Create new asset account",
"confirm_action": "Confirm action",
"new_budget": "New budget",
"new_asset_account": "New asset account",
"newTransfer": "New transfer",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "New deposit",
"newWithdrawal": "New expense",
"bills_paid": "Bills paid",
"left_to_spend": "Left to spend",
"no_budget": "(no budget)",
"budgeted": "Budgeted",
"spent": "Spent",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Source account name starts with..",
"rule_trigger_source_account_ends_choice": "Source account name ends with..",
"rule_trigger_source_account_is_choice": "Source account name is..",
"rule_trigger_source_account_contains_choice": "Source account name contains..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Source account ID is exactly..",
"rule_trigger_destination_account_id_choice": "Destination account ID is exactly..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Source account is (cash) account",
"rule_trigger_destination_is_cash_choice": "Destination account is (cash) account",
"rule_trigger_source_account_nr_starts_choice": "Source account number \/ IBAN starts with..",
"rule_trigger_source_account_nr_ends_choice": "Source account number \/ IBAN ends with..",
"rule_trigger_source_account_nr_is_choice": "Source account number \/ IBAN is..",
"rule_trigger_source_account_nr_contains_choice": "Source account number \/ IBAN contains..",
"rule_trigger_destination_account_starts_choice": "Destination account name starts with..",
"rule_trigger_destination_account_ends_choice": "Destination account name ends with..",
"rule_trigger_destination_account_is_choice": "Destination account name is..",
"rule_trigger_destination_account_contains_choice": "Destination account name contains..",
"rule_trigger_destination_account_nr_starts_choice": "Destination account number \/ IBAN starts with..",
"rule_trigger_destination_account_nr_ends_choice": "Destination account number \/ IBAN ends with..",
"rule_trigger_destination_account_nr_is_choice": "Destination account number \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Destination account number \/ IBAN contains..",
"rule_trigger_transaction_type_choice": "Transaction is of type..",
"rule_trigger_category_is_choice": "Category is..",
"rule_trigger_amount_less_choice": "Amount is less than..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Amount is more than..",
"rule_trigger_description_starts_choice": "Description starts with..",
"rule_trigger_description_ends_choice": "Description ends with..",
"rule_trigger_description_contains_choice": "Description contains..",
"rule_trigger_description_is_choice": "Description is..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Transaction date is before..",
"rule_trigger_date_after_choice": "Transaction date is after..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Budget is..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Transaction currency is..",
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
"rule_trigger_has_attachments_choice": "Has at least this many attachments",
"rule_trigger_has_no_category_choice": "Has no category",
"rule_trigger_has_any_category_choice": "Has a (any) category",
"rule_trigger_has_no_budget_choice": "Has no budget",
"rule_trigger_has_any_budget_choice": "Has a (any) budget",
"rule_trigger_has_no_bill_choice": "Has no bill",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "Has no tag(s)",
"rule_trigger_has_any_tag_choice": "Has one or more (any) tags",
"rule_trigger_any_notes_choice": "Has (any) notes",
"rule_trigger_no_notes_choice": "Has no notes",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Bill is..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Clear any category",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Clear any budget",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Remove all tags",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Remove any notes",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Convert the transaction to a deposit",
"rule_action_convert_withdrawal_choice": "Convert the transaction to a withdrawal",
"rule_action_convert_transfer_choice": "Convert the transaction to a transfer",
"placeholder": "[Placeholder]",
"recurrences": "Recurring transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"pref_1D": "One day",
"pref_1W": "One week",
"pref_1M": "One month",
"pref_3M": "Three months (quarter)",
"pref_6M": "Six months",
"pref_1Y": "One year",
"repeat_freq_yearly": "yearly",
"repeat_freq_half-year": "every half-year",
"repeat_freq_quarterly": "quarterly",
"repeat_freq_monthly": "monthly",
"repeat_freq_weekly": "weekly",
"single_split": "Split",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"liabilities_accounts": "Liabilities",
"undefined_accounts": "Accounts",
"name": "Name",
"revenue_accounts": "Revenue accounts",
"description": "Description",
"category": "Category",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"piggyBanks": "Piggy banks",
"rules": "Rules",
"accounts": "Accounts",
"categories": "Categories",
"tags": "Tags",
"object_groups_page_title": "Groups",
"reports": "Reports",
"webhooks": "Webhooks",
"currencies": "Currencies",
"administration": "Administration",
"profile": "Profile",
"source_account": "Source account",
"destination_account": "Destination account",
"amount": "Amount",
"date": "Date",
"time": "Time",
"preferences": "Preferences",
"transactions": "Transactions",
"balance": "Balance",
"budgets": "Budgets",
"subscriptions": "Subscriptions",
"welcome_back": "What's playing?",
"bills_to_pay": "Bills to pay",
"net_worth": "Net worth",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "en",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "Name",
"amount_min": "Minimum amount",
"amount_max": "Maximum amount",
"url": "URL",
"title": "Title",
"first_date": "First date",
"repetitions": "Repetitions",
"description": "Description",
"iban": "IBAN",
"skip": "Skip",
"date": "Date"
},
"list": {
"name": "Name",
"account_number": "Account number",
"currentBalance": "Current balance",
"lastActivity": "Last activity",
"active": "Is active?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budgets",
"subscriptions": "Subscriptions",
"transactions": "Transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"revenue_accounts": "Revenue accounts",
"liabilities_accounts": "Liabilities"
},
"firefly": {
"actions": "Actions",
"edit": "Edit",
"delete": "Delete",
"reconcile": "Reconcile",
"create_new_asset": "Create new asset account",
"confirm_action": "Confirm action",
"new_budget": "New budget",
"new_asset_account": "New asset account",
"newTransfer": "New transfer",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "New deposit",
"newWithdrawal": "New expense",
"bills_paid": "Bills paid",
"left_to_spend": "Left to spend",
"no_budget": "(no budget)",
"budgeted": "Budgeted",
"spent": "Spent",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Source account name starts with..",
"rule_trigger_source_account_ends_choice": "Source account name ends with..",
"rule_trigger_source_account_is_choice": "Source account name is..",
"rule_trigger_source_account_contains_choice": "Source account name contains..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Source account ID is exactly..",
"rule_trigger_destination_account_id_choice": "Destination account ID is exactly..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Source account is (cash) account",
"rule_trigger_destination_is_cash_choice": "Destination account is (cash) account",
"rule_trigger_source_account_nr_starts_choice": "Source account number \/ IBAN starts with..",
"rule_trigger_source_account_nr_ends_choice": "Source account number \/ IBAN ends with..",
"rule_trigger_source_account_nr_is_choice": "Source account number \/ IBAN is..",
"rule_trigger_source_account_nr_contains_choice": "Source account number \/ IBAN contains..",
"rule_trigger_destination_account_starts_choice": "Destination account name starts with..",
"rule_trigger_destination_account_ends_choice": "Destination account name ends with..",
"rule_trigger_destination_account_is_choice": "Destination account name is..",
"rule_trigger_destination_account_contains_choice": "Destination account name contains..",
"rule_trigger_destination_account_nr_starts_choice": "Destination account number \/ IBAN starts with..",
"rule_trigger_destination_account_nr_ends_choice": "Destination account number \/ IBAN ends with..",
"rule_trigger_destination_account_nr_is_choice": "Destination account number \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Destination account number \/ IBAN contains..",
"rule_trigger_transaction_type_choice": "Transaction is of type..",
"rule_trigger_category_is_choice": "Category is..",
"rule_trigger_amount_less_choice": "Amount is less than..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Amount is more than..",
"rule_trigger_description_starts_choice": "Description starts with..",
"rule_trigger_description_ends_choice": "Description ends with..",
"rule_trigger_description_contains_choice": "Description contains..",
"rule_trigger_description_is_choice": "Description is..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Transaction date is before..",
"rule_trigger_date_after_choice": "Transaction date is after..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Budget is..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Transaction currency is..",
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
"rule_trigger_has_attachments_choice": "Has at least this many attachments",
"rule_trigger_has_no_category_choice": "Has no category",
"rule_trigger_has_any_category_choice": "Has a (any) category",
"rule_trigger_has_no_budget_choice": "Has no budget",
"rule_trigger_has_any_budget_choice": "Has a (any) budget",
"rule_trigger_has_no_bill_choice": "Has no bill",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "Has no tag(s)",
"rule_trigger_has_any_tag_choice": "Has one or more (any) tags",
"rule_trigger_any_notes_choice": "Has (any) notes",
"rule_trigger_no_notes_choice": "Has no notes",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Bill is..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Clear any category",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Clear any budget",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Remove all tags",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Remove any notes",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Convert the transaction to a deposit",
"rule_action_convert_withdrawal_choice": "Convert the transaction to a withdrawal",
"rule_action_convert_transfer_choice": "Convert the transaction to a transfer",
"placeholder": "[Placeholder]",
"recurrences": "Recurring transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"pref_1D": "One day",
"pref_1W": "One week",
"pref_1M": "One month",
"pref_3M": "Three months (quarter)",
"pref_6M": "Six months",
"pref_1Y": "One year",
"repeat_freq_yearly": "yearly",
"repeat_freq_half-year": "every half-year",
"repeat_freq_quarterly": "quarterly",
"repeat_freq_monthly": "monthly",
"repeat_freq_weekly": "weekly",
"single_split": "Split",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"liabilities_accounts": "Liabilities",
"undefined_accounts": "Accounts",
"name": "Name",
"revenue_accounts": "Revenue accounts",
"description": "Description",
"category": "Category",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"piggyBanks": "Piggy banks",
"rules": "Rules",
"accounts": "Accounts",
"categories": "Categories",
"tags": "Tags",
"object_groups_page_title": "Groups",
"reports": "Reports",
"webhooks": "Webhooks",
"currencies": "Currencies",
"administration": "Administration",
"profile": "Profile",
"source_account": "Source account",
"destination_account": "Destination account",
"amount": "Amount",
"date": "Date",
"time": "Time",
"preferences": "Preferences",
"transactions": "Transactions",
"balance": "Balance",
"budgets": "Budgets",
"subscriptions": "Subscriptions",
"welcome_back": "What's playing?",
"bills_to_pay": "Bills to pay",
"net_worth": "Net worth",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
"config": {
"html_language": "en",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "Name",
"amount_min": "Minimum amount",
"amount_max": "Maximum amount",
"url": "URL",
"title": "Title",
"first_date": "First date",
"repetitions": "Repetitions",
"description": "Description",
"iban": "IBAN",
"skip": "Skip",
"date": "Date"
},
"list": {
"name": "Name",
"account_number": "Account number",
"currentBalance": "Current balance",
"lastActivity": "Last activity",
"active": "Is active?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budgets",
"subscriptions": "Subscriptions",
"transactions": "Transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"revenue_accounts": "Revenue accounts",
"liabilities_accounts": "Liabilities"
},
"firefly": {
"actions": "Actions",
"edit": "Edit",
"delete": "Delete",
"reconcile": "Reconcile",
"create_new_asset": "Create new asset account",
"confirm_action": "Confirm action",
"new_budget": "New budget",
"new_asset_account": "New asset account",
"newTransfer": "New transfer",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "New deposit",
"newWithdrawal": "New expense",
"bills_paid": "Bills paid",
"left_to_spend": "Left to spend",
"no_budget": "(no budget)",
"budgeted": "Budgeted",
"spent": "Spent",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Source account name starts with..",
"rule_trigger_source_account_ends_choice": "Source account name ends with..",
"rule_trigger_source_account_is_choice": "Source account name is..",
"rule_trigger_source_account_contains_choice": "Source account name contains..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Source account ID is exactly..",
"rule_trigger_destination_account_id_choice": "Destination account ID is exactly..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Source account is (cash) account",
"rule_trigger_destination_is_cash_choice": "Destination account is (cash) account",
"rule_trigger_source_account_nr_starts_choice": "Source account number \/ IBAN starts with..",
"rule_trigger_source_account_nr_ends_choice": "Source account number \/ IBAN ends with..",
"rule_trigger_source_account_nr_is_choice": "Source account number \/ IBAN is..",
"rule_trigger_source_account_nr_contains_choice": "Source account number \/ IBAN contains..",
"rule_trigger_destination_account_starts_choice": "Destination account name starts with..",
"rule_trigger_destination_account_ends_choice": "Destination account name ends with..",
"rule_trigger_destination_account_is_choice": "Destination account name is..",
"rule_trigger_destination_account_contains_choice": "Destination account name contains..",
"rule_trigger_destination_account_nr_starts_choice": "Destination account number \/ IBAN starts with..",
"rule_trigger_destination_account_nr_ends_choice": "Destination account number \/ IBAN ends with..",
"rule_trigger_destination_account_nr_is_choice": "Destination account number \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Destination account number \/ IBAN contains..",
"rule_trigger_transaction_type_choice": "Transaction is of type..",
"rule_trigger_category_is_choice": "Category is..",
"rule_trigger_amount_less_choice": "Amount is less than..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Amount is more than..",
"rule_trigger_description_starts_choice": "Description starts with..",
"rule_trigger_description_ends_choice": "Description ends with..",
"rule_trigger_description_contains_choice": "Description contains..",
"rule_trigger_description_is_choice": "Description is..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Transaction date is before..",
"rule_trigger_date_after_choice": "Transaction date is after..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Budget is..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Transaction currency is..",
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
"rule_trigger_has_attachments_choice": "Has at least this many attachments",
"rule_trigger_has_no_category_choice": "Has no category",
"rule_trigger_has_any_category_choice": "Has a (any) category",
"rule_trigger_has_no_budget_choice": "Has no budget",
"rule_trigger_has_any_budget_choice": "Has a (any) budget",
"rule_trigger_has_no_bill_choice": "Has no bill",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "Has no tag(s)",
"rule_trigger_has_any_tag_choice": "Has one or more (any) tags",
"rule_trigger_any_notes_choice": "Has (any) notes",
"rule_trigger_no_notes_choice": "Has no notes",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Bill is..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Clear any category",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Clear any budget",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Remove all tags",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Remove any notes",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Convert the transaction to a deposit",
"rule_action_convert_withdrawal_choice": "Convert the transaction to a withdrawal",
"rule_action_convert_transfer_choice": "Convert the transaction to a transfer",
"placeholder": "[Placeholder]",
"recurrences": "Recurring transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"pref_1D": "One day",
"pref_1W": "One week",
"pref_1M": "One month",
"pref_3M": "Three months (quarter)",
"pref_6M": "Six months",
"pref_1Y": "One year",
"repeat_freq_yearly": "yearly",
"repeat_freq_half-year": "every half-year",
"repeat_freq_quarterly": "quarterly",
"repeat_freq_monthly": "monthly",
"repeat_freq_weekly": "weekly",
"single_split": "Split",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"liabilities_accounts": "Liabilities",
"undefined_accounts": "Accounts",
"name": "Name",
"revenue_accounts": "Revenue accounts",
"description": "Description",
"category": "Category",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"piggyBanks": "Piggy banks",
"rules": "Rules",
"accounts": "Accounts",
"categories": "Categories",
"tags": "Tags",
"object_groups_page_title": "Groups",
"reports": "Reports",
"webhooks": "Webhooks",
"currencies": "Currencies",
"administration": "Administration",
"profile": "Profile",
"source_account": "Source account",
"destination_account": "Destination account",
"amount": "Amount",
"date": "Date",
"time": "Time",
"preferences": "Preferences",
"transactions": "Transactions",
"balance": "Balance",
"budgets": "Budgets",
"subscriptions": "Subscriptions",
"welcome_back": "What's playing?",
"bills_to_pay": "Bills to pay",
"net_worth": "Net worth",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "es",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "Nombre",
"amount_min": "Importe m\u00ednimo",
"amount_max": "Importe m\u00e1ximo",
"url": "URL",
"title": "T\u00edtulo",
"first_date": "Primera fecha",
"repetitions": "Repeticiones",
"description": "Descripci\u00f3n",
"iban": "IBAN",
"skip": "Saltar",
"date": "Fecha"
},
"list": {
"name": "Nombre",
"account_number": "N\u00famero de cuenta",
"currentBalance": "Balance actual",
"lastActivity": "Actividad m\u00e1s reciente",
"active": "\u00bfEst\u00e1 Activo?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Presupuestos",
"subscriptions": "Suscripciones",
"transactions": "Transacciones",
"title_expenses": "Gastos",
"title_withdrawal": "Gastos",
"title_revenue": "Ingresos \/ salario",
"title_deposit": "Ingresos \/ salario",
"title_transfer": "Transferencias",
"title_transfers": "Transferencias",
"asset_accounts": "Cuentas de activos",
"expense_accounts": "Cuentas de gastos",
"revenue_accounts": "Cuentas de ingresos",
"liabilities_accounts": "Pasivos"
},
"firefly": {
"actions": "Acciones",
"edit": "Editar",
"delete": "Eliminar",
"reconcile": "Reconciliar",
"create_new_asset": "Crear nueva cuenta de activos",
"confirm_action": "Confirmar acci\u00f3n",
"new_budget": "Nuevo presupuesto",
"new_asset_account": "Nueva cuenta de activo",
"newTransfer": "Nueva transferencia",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Nuevo deposito",
"newWithdrawal": "Nuevo gasto",
"bills_paid": "Facturas pagadas",
"left_to_spend": "Disponible para gastar",
"no_budget": "(sin presupuesto)",
"budgeted": "Presupuestado",
"spent": "Gastado",
"no_bill": "(sin factura)",
"rule_trigger_source_account_starts_choice": "El nombre de la cuenta de origen comienza con..",
"rule_trigger_source_account_ends_choice": "El nombre de la cuenta de origen termina con..",
"rule_trigger_source_account_is_choice": "El nombre de la cuenta origen es..",
"rule_trigger_source_account_contains_choice": "El nombre de cuenta de origen contiene..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "El ID de la cuenta de origen es exactamente..",
"rule_trigger_destination_account_id_choice": "El ID de la cuenta de destino es exactamente..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "La cuenta de origen es de efectivo",
"rule_trigger_destination_is_cash_choice": "La cuenta de destino es de efectivo",
"rule_trigger_source_account_nr_starts_choice": "N\u00famero de la cuenta de origen \/ IBAN comienza con..",
"rule_trigger_source_account_nr_ends_choice": "N\u00famero \/ IBAN de la cuenta de origen termina con..",
"rule_trigger_source_account_nr_is_choice": "N\u00famero de la cuenta de origen \/ IBAN es..",
"rule_trigger_source_account_nr_contains_choice": "N\u00famero de cuenta de origen \/ IBAN contiene..",
"rule_trigger_destination_account_starts_choice": "El nombre de cuenta de destino comienza con..",
"rule_trigger_destination_account_ends_choice": "El nombre de cuenta de destino termina con...",
"rule_trigger_destination_account_is_choice": "El nombre de cuenta de destino es...",
"rule_trigger_destination_account_contains_choice": "El nombre de cuenta de destino contiene..",
"rule_trigger_destination_account_nr_starts_choice": "N\u00famero \/ IBAN de la cuenta de destino empieza con..",
"rule_trigger_destination_account_nr_ends_choice": "N\u00famero de la cuenta de destino \/ IBAN termina con..",
"rule_trigger_destination_account_nr_is_choice": "N\u00famero de la cuenta de destino \/ IBAN es..",
"rule_trigger_destination_account_nr_contains_choice": "El n\u00famero de la cuenta de destino \/ IBAN contiene..",
"rule_trigger_transaction_type_choice": "Transacci\u00f3n es del tipo..",
"rule_trigger_category_is_choice": "Categor\u00eda es..",
"rule_trigger_amount_less_choice": "Cantidad es menos de..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Cantidad es mas de..",
"rule_trigger_description_starts_choice": "Descripci\u00f3n comienza con..",
"rule_trigger_description_ends_choice": "Descripci\u00f3n termina con..",
"rule_trigger_description_contains_choice": "Descripci\u00f3n contiene..",
"rule_trigger_description_is_choice": "Descripci\u00f3n es..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "La fecha de la transacci\u00f3n es anterior a..",
"rule_trigger_date_after_choice": "La fecha de la transacci\u00f3n es despu\u00e9s de..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Presupuesto es..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "La moneda de la transacci\u00f3n es..",
"rule_trigger_foreign_currency_is_choice": "La transacci\u00f3n en moneda extranjera es..",
"rule_trigger_has_attachments_choice": "Tiene al menos tantos archivos adjuntos",
"rule_trigger_has_no_category_choice": "No tiene categor\u00eda",
"rule_trigger_has_any_category_choice": "Tiene (cualquier) categor\u00eda",
"rule_trigger_has_no_budget_choice": "No tiene presupuesto",
"rule_trigger_has_any_budget_choice": "Tiene un (cualquier) presupuesto",
"rule_trigger_has_no_bill_choice": "No tiene factura",
"rule_trigger_has_any_bill_choice": "Tiene una (cualquier) factura",
"rule_trigger_has_no_tag_choice": "No tiene etiqueta(s)",
"rule_trigger_has_any_tag_choice": "Tiene una o mas (cualquier) etiquetas",
"rule_trigger_any_notes_choice": "Tiene (cualquier) notas",
"rule_trigger_no_notes_choice": "No tiene notas",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "La factura es..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "El ID del diario de transacciones es..",
"rule_trigger_any_external_url_choice": "La transacci\u00f3n tiene una URL externa",
"rule_trigger_no_external_url_choice": "La transacci\u00f3n no tiene URL externa",
"rule_trigger_id_choice": "La ID de la transacci\u00f3n es..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Eliminar cualquier categor\u00eda",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Eliminar cualquier presupuesto",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Eliminar todas las etiquetas",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Eliminar cualquier nota",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Convierta esta transacci\u00f3n en un dep\u00f3sito",
"rule_action_convert_withdrawal_choice": "Convierta esta transacci\u00f3n en un retiro",
"rule_action_convert_transfer_choice": "Convierta la transacci\u00f3n a una transferencia",
"placeholder": "[Placeholder]",
"recurrences": "Transacciones Recurrentes",
"title_expenses": "Gastos",
"title_withdrawal": "Gastos",
"title_revenue": "Ingresos \/ salarios",
"pref_1D": "Un dia",
"pref_1W": "Una semana",
"pref_1M": "Un mes",
"pref_3M": "Tres meses (trimestre)",
"pref_6M": "Seis meses",
"pref_1Y": "Un a\u00f1o",
"repeat_freq_yearly": "anualmente",
"repeat_freq_half-year": "cada medio a\u00f1o",
"repeat_freq_quarterly": "trimestralmente",
"repeat_freq_monthly": "mensualmente",
"repeat_freq_weekly": "semanalmente",
"single_split": "Divisi\u00f3n",
"asset_accounts": "Cuenta de activos",
"expense_accounts": "Cuentas de gastos",
"liabilities_accounts": "Pasivos",
"undefined_accounts": "Cuentas",
"name": "Nombre",
"revenue_accounts": "Cuentas de ingresos",
"description": "Descripci\u00f3n",
"category": "Categoria",
"title_deposit": "Ingresos \/ salarios",
"title_transfer": "Transferencias",
"title_transfers": "Transferencias",
"piggyBanks": "Huchas",
"rules": "Reglas",
"accounts": "Cuentas",
"categories": "Categor\u00edas",
"tags": "Etiquetas",
"object_groups_page_title": "Grupos",
"reports": "Informes",
"webhooks": "Webhooks",
"currencies": "Divisas",
"administration": "Administraci\u00f3n",
"profile": "Perfil",
"source_account": "Cuenta origen",
"destination_account": "Cuenta destino",
"amount": "Cantidad",
"date": "Fecha",
"time": "Hora",
"preferences": "Preferencias",
"transactions": "Transacciones",
"balance": "Balance",
"budgets": "Presupuestos",
"subscriptions": "Suscripciones",
"welcome_back": "\u00bfQu\u00e9 est\u00e1 pasando?",
"bills_to_pay": "Facturas por pagar",
"net_worth": "Valor Neto",
"pref_last365": "A\u00f1o pasado",
"pref_last90": "\u00daltimos 90 d\u00edas",
"pref_last30": "\u00daltimos 30 d\u00edas",
"pref_last7": "\u00daltimos 7 d\u00edas",
"pref_YTD": "A\u00f1o hasta hoy",
"pref_QTD": "Trimestre hasta hoy",
"pref_MTD": "Mes hasta hoy"
}
"config": {
"html_language": "es",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "Nombre",
"amount_min": "Importe m\u00ednimo",
"amount_max": "Importe m\u00e1ximo",
"url": "URL",
"title": "T\u00edtulo",
"first_date": "Primera fecha",
"repetitions": "Repeticiones",
"description": "Descripci\u00f3n",
"iban": "IBAN",
"skip": "Saltar",
"date": "Fecha"
},
"list": {
"name": "Nombre",
"account_number": "N\u00famero de cuenta",
"currentBalance": "Balance actual",
"lastActivity": "Actividad m\u00e1s reciente",
"active": "\u00bfEst\u00e1 Activo?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Presupuestos",
"subscriptions": "Suscripciones",
"transactions": "Transacciones",
"title_expenses": "Gastos",
"title_withdrawal": "Gastos",
"title_revenue": "Ingresos \/ salario",
"title_deposit": "Ingresos \/ salario",
"title_transfer": "Transferencias",
"title_transfers": "Transferencias",
"asset_accounts": "Cuentas de activos",
"expense_accounts": "Cuentas de gastos",
"revenue_accounts": "Cuentas de ingresos",
"liabilities_accounts": "Pasivos"
},
"firefly": {
"actions": "Acciones",
"edit": "Editar",
"delete": "Eliminar",
"reconcile": "Reconciliar",
"create_new_asset": "Crear nueva cuenta de activos",
"confirm_action": "Confirmar acci\u00f3n",
"new_budget": "Nuevo presupuesto",
"new_asset_account": "Nueva cuenta de activo",
"newTransfer": "Nueva transferencia",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Nuevo deposito",
"newWithdrawal": "Nuevo gasto",
"bills_paid": "Facturas pagadas",
"left_to_spend": "Disponible para gastar",
"no_budget": "(sin presupuesto)",
"budgeted": "Presupuestado",
"spent": "Gastado",
"no_bill": "(sin factura)",
"rule_trigger_source_account_starts_choice": "El nombre de la cuenta de origen comienza con..",
"rule_trigger_source_account_ends_choice": "El nombre de la cuenta de origen termina con..",
"rule_trigger_source_account_is_choice": "El nombre de la cuenta origen es..",
"rule_trigger_source_account_contains_choice": "El nombre de cuenta de origen contiene..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "El ID de la cuenta de origen es exactamente..",
"rule_trigger_destination_account_id_choice": "El ID de la cuenta de destino es exactamente..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "La cuenta de origen es de efectivo",
"rule_trigger_destination_is_cash_choice": "La cuenta de destino es de efectivo",
"rule_trigger_source_account_nr_starts_choice": "N\u00famero de la cuenta de origen \/ IBAN comienza con..",
"rule_trigger_source_account_nr_ends_choice": "N\u00famero \/ IBAN de la cuenta de origen termina con..",
"rule_trigger_source_account_nr_is_choice": "N\u00famero de la cuenta de origen \/ IBAN es..",
"rule_trigger_source_account_nr_contains_choice": "N\u00famero de cuenta de origen \/ IBAN contiene..",
"rule_trigger_destination_account_starts_choice": "El nombre de cuenta de destino comienza con..",
"rule_trigger_destination_account_ends_choice": "El nombre de cuenta de destino termina con...",
"rule_trigger_destination_account_is_choice": "El nombre de cuenta de destino es...",
"rule_trigger_destination_account_contains_choice": "El nombre de cuenta de destino contiene..",
"rule_trigger_destination_account_nr_starts_choice": "N\u00famero \/ IBAN de la cuenta de destino empieza con..",
"rule_trigger_destination_account_nr_ends_choice": "N\u00famero de la cuenta de destino \/ IBAN termina con..",
"rule_trigger_destination_account_nr_is_choice": "N\u00famero de la cuenta de destino \/ IBAN es..",
"rule_trigger_destination_account_nr_contains_choice": "El n\u00famero de la cuenta de destino \/ IBAN contiene..",
"rule_trigger_transaction_type_choice": "Transacci\u00f3n es del tipo..",
"rule_trigger_category_is_choice": "Categor\u00eda es..",
"rule_trigger_amount_less_choice": "Cantidad es menos de..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Cantidad es mas de..",
"rule_trigger_description_starts_choice": "Descripci\u00f3n comienza con..",
"rule_trigger_description_ends_choice": "Descripci\u00f3n termina con..",
"rule_trigger_description_contains_choice": "Descripci\u00f3n contiene..",
"rule_trigger_description_is_choice": "Descripci\u00f3n es..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "La fecha de la transacci\u00f3n es anterior a..",
"rule_trigger_date_after_choice": "La fecha de la transacci\u00f3n es despu\u00e9s de..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Presupuesto es..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "La moneda de la transacci\u00f3n es..",
"rule_trigger_foreign_currency_is_choice": "La transacci\u00f3n en moneda extranjera es..",
"rule_trigger_has_attachments_choice": "Tiene al menos tantos archivos adjuntos",
"rule_trigger_has_no_category_choice": "No tiene categor\u00eda",
"rule_trigger_has_any_category_choice": "Tiene (cualquier) categor\u00eda",
"rule_trigger_has_no_budget_choice": "No tiene presupuesto",
"rule_trigger_has_any_budget_choice": "Tiene un (cualquier) presupuesto",
"rule_trigger_has_no_bill_choice": "No tiene factura",
"rule_trigger_has_any_bill_choice": "Tiene una (cualquier) factura",
"rule_trigger_has_no_tag_choice": "No tiene etiqueta(s)",
"rule_trigger_has_any_tag_choice": "Tiene una o mas (cualquier) etiquetas",
"rule_trigger_any_notes_choice": "Tiene (cualquier) notas",
"rule_trigger_no_notes_choice": "No tiene notas",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "La factura es..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "El ID del diario de transacciones es..",
"rule_trigger_any_external_url_choice": "La transacci\u00f3n tiene una URL externa",
"rule_trigger_no_external_url_choice": "La transacci\u00f3n no tiene URL externa",
"rule_trigger_id_choice": "La ID de la transacci\u00f3n es..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Eliminar cualquier categor\u00eda",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Eliminar cualquier presupuesto",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Eliminar todas las etiquetas",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Eliminar cualquier nota",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Convierta esta transacci\u00f3n en un dep\u00f3sito",
"rule_action_convert_withdrawal_choice": "Convierta esta transacci\u00f3n en un retiro",
"rule_action_convert_transfer_choice": "Convierta la transacci\u00f3n a una transferencia",
"placeholder": "[Placeholder]",
"recurrences": "Transacciones Recurrentes",
"title_expenses": "Gastos",
"title_withdrawal": "Gastos",
"title_revenue": "Ingresos \/ salarios",
"pref_1D": "Un dia",
"pref_1W": "Una semana",
"pref_1M": "Un mes",
"pref_3M": "Tres meses (trimestre)",
"pref_6M": "Seis meses",
"pref_1Y": "Un a\u00f1o",
"repeat_freq_yearly": "anualmente",
"repeat_freq_half-year": "cada medio a\u00f1o",
"repeat_freq_quarterly": "trimestralmente",
"repeat_freq_monthly": "mensualmente",
"repeat_freq_weekly": "semanalmente",
"single_split": "Divisi\u00f3n",
"asset_accounts": "Cuenta de activos",
"expense_accounts": "Cuentas de gastos",
"liabilities_accounts": "Pasivos",
"undefined_accounts": "Cuentas",
"name": "Nombre",
"revenue_accounts": "Cuentas de ingresos",
"description": "Descripci\u00f3n",
"category": "Categoria",
"title_deposit": "Ingresos \/ salarios",
"title_transfer": "Transferencias",
"title_transfers": "Transferencias",
"piggyBanks": "Huchas",
"rules": "Reglas",
"accounts": "Cuentas",
"categories": "Categor\u00edas",
"tags": "Etiquetas",
"object_groups_page_title": "Grupos",
"reports": "Informes",
"webhooks": "Webhooks",
"currencies": "Divisas",
"administration": "Administraci\u00f3n",
"profile": "Perfil",
"source_account": "Cuenta origen",
"destination_account": "Cuenta destino",
"amount": "Cantidad",
"date": "Fecha",
"time": "Hora",
"preferences": "Preferencias",
"transactions": "Transacciones",
"balance": "Balance",
"budgets": "Presupuestos",
"subscriptions": "Suscripciones",
"welcome_back": "\u00bfQu\u00e9 est\u00e1 pasando?",
"bills_to_pay": "Facturas por pagar",
"net_worth": "Valor Neto",
"pref_last365": "A\u00f1o pasado",
"pref_last90": "\u00daltimos 90 d\u00edas",
"pref_last30": "\u00daltimos 30 d\u00edas",
"pref_last7": "\u00daltimos 7 d\u00edas",
"pref_YTD": "A\u00f1o hasta hoy",
"pref_QTD": "Trimestre hasta hoy",
"pref_MTD": "Mes hasta hoy"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "fi",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "Nimi",
"amount_min": "V\u00e4himm\u00e4issumma",
"amount_max": "Enimm\u00e4issumma",
"url": "URL-osoite",
"title": "Otsikko",
"first_date": "Aloitusp\u00e4iv\u00e4",
"repetitions": "Toistot",
"description": "Kuvaus",
"iban": "IBAN",
"skip": "Ohita",
"date": "P\u00e4iv\u00e4m\u00e4\u00e4r\u00e4"
},
"list": {
"name": "Nimi",
"account_number": "Tilinumero",
"currentBalance": "T\u00e4m\u00e4nhetkinen saldo",
"lastActivity": "Viimeisin tapahtuma",
"active": "Aktiivinen?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budjetit",
"subscriptions": "Tilaukset",
"transactions": "Tapahtumat",
"title_expenses": "Kustannukset",
"title_withdrawal": "Kustannukset",
"title_revenue": "Tuotto \/ ansio",
"title_deposit": "Tuotto \/ ansio",
"title_transfer": "Tilisiirrot",
"title_transfers": "Tilisiirrot",
"asset_accounts": "K\u00e4ytt\u00f6tilit",
"expense_accounts": "Kulutustilit",
"revenue_accounts": "Tuottotilit",
"liabilities_accounts": "Lainat"
},
"firefly": {
"actions": "Toiminnot",
"edit": "Muokkaa",
"delete": "Poista",
"reconcile": "T\u00e4sm\u00e4yt\u00e4",
"create_new_asset": "Luo uusi omaisuustili",
"confirm_action": "Vahvista toiminto",
"new_budget": "Uusi budjetti",
"new_asset_account": "Uusi omaisuustili",
"newTransfer": "Uusi siirto",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Uusi talletus",
"newWithdrawal": "Uusi kustannus",
"bills_paid": "Maksetut laskut",
"left_to_spend": "K\u00e4ytett\u00e4viss\u00e4",
"no_budget": "(ei budjettia)",
"budgeted": "Budjetoitu",
"spent": "K\u00e4ytetty",
"no_bill": "(ei laskua)",
"rule_trigger_source_account_starts_choice": "L\u00e4hdetilin nimi alkaa ...",
"rule_trigger_source_account_ends_choice": "L\u00e4hdetilin nimi p\u00e4\u00e4ttyy..",
"rule_trigger_source_account_is_choice": "L\u00e4hdetilin nimi on..",
"rule_trigger_source_account_contains_choice": "L\u00e4hdetilin nimi sis\u00e4lt\u00e4\u00e4..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "L\u00e4hdetili ID on tarkalleen..",
"rule_trigger_destination_account_id_choice": "Kohdetilin ID on tarkalleen..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "L\u00e4hdetili on (k\u00e4teis) tili",
"rule_trigger_destination_is_cash_choice": "Kohdetili on (k\u00e4teis) tili",
"rule_trigger_source_account_nr_starts_choice": "L\u00e4hdetilin numero \/ IBAN alkaa..",
"rule_trigger_source_account_nr_ends_choice": "L\u00e4hdetilin numero \/ IBAN p\u00e4\u00e4ttyy..",
"rule_trigger_source_account_nr_is_choice": "L\u00e4hdetilin numero \/ IBAN on..",
"rule_trigger_source_account_nr_contains_choice": "L\u00e4hdetilin numero \/ IBAN sis\u00e4lt\u00e4\u00e4..",
"rule_trigger_destination_account_starts_choice": "Kohdetilin nimi alkaa..",
"rule_trigger_destination_account_ends_choice": "Kohdetilin nimi p\u00e4\u00e4ttyy..",
"rule_trigger_destination_account_is_choice": "Kohdetilin nimi on..",
"rule_trigger_destination_account_contains_choice": "Kohdetilin nimi sis\u00e4lt\u00e4\u00e4..",
"rule_trigger_destination_account_nr_starts_choice": "Kohdetilin numero \/ IBAN alkaa..",
"rule_trigger_destination_account_nr_ends_choice": "Kohdetilin numero \/ IBAN p\u00e4\u00e4ttyy..",
"rule_trigger_destination_account_nr_is_choice": "Kohdetilin numero \/ IBAN on..",
"rule_trigger_destination_account_nr_contains_choice": "Kohdetilin numero \/ IBAN sis\u00e4lt\u00e4\u00e4..",
"rule_trigger_transaction_type_choice": "Tapahtuman tyyppi on ...",
"rule_trigger_category_is_choice": "Kategoria on ...",
"rule_trigger_amount_less_choice": "Summa on v\u00e4hemm\u00e4n kuin ...",
"rule_trigger_amount_is_choice": "Summa on..",
"rule_trigger_amount_more_choice": "Summa on enemm\u00e4n kuin ...",
"rule_trigger_description_starts_choice": "Kuvaus alkaa tekstill\u00e4 ...",
"rule_trigger_description_ends_choice": "Kuvaus p\u00e4\u00e4ttyy tekstiin ...",
"rule_trigger_description_contains_choice": "Kuvaus sis\u00e4lt\u00e4\u00e4 ...",
"rule_trigger_description_is_choice": "Kuvaus on ...",
"rule_trigger_date_on_choice": "Tapahtumap\u00e4iv\u00e4 on..",
"rule_trigger_date_before_choice": "Tapahtumap\u00e4iv\u00e4 on ennen..",
"rule_trigger_date_after_choice": "Tapahtumap\u00e4iv\u00e4 on j\u00e4lkeen..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Budjetti on ...",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Tapahtuman valuutta on ...",
"rule_trigger_foreign_currency_is_choice": "Tapahtuman valuutta on..",
"rule_trigger_has_attachments_choice": "Tapahtumalla on v\u00e4hint\u00e4\u00e4n n\u00e4in monta liitett\u00e4",
"rule_trigger_has_no_category_choice": "Ei kategoriaa",
"rule_trigger_has_any_category_choice": "Mik\u00e4 tahansa kategoria",
"rule_trigger_has_no_budget_choice": "Ei budjettia",
"rule_trigger_has_any_budget_choice": "On budjetti (mik\u00e4 tahansa)",
"rule_trigger_has_no_bill_choice": "Ei laskua",
"rule_trigger_has_any_bill_choice": "On lasku (mik\u00e4 tahansa)",
"rule_trigger_has_no_tag_choice": "Ei t\u00e4gej\u00e4",
"rule_trigger_has_any_tag_choice": "On t\u00e4gi\/t\u00e4gej\u00e4 (mit\u00e4 tahansa)",
"rule_trigger_any_notes_choice": "On muistiinpano (mit\u00e4 tahansa)",
"rule_trigger_no_notes_choice": "Ei muistiinpanoja",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Lasku on..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Tapahtumatietueen tunnus on..",
"rule_trigger_any_external_url_choice": "Tapahtumalla on ulkoinen URL-osoite",
"rule_trigger_no_external_url_choice": "Tapahtumalla ei ole ulkoista URL-osoitetta",
"rule_trigger_id_choice": "Tapahtuman tunnus on..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Tyhjenn\u00e4 kategoria",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Tyhjenn\u00e4 budjetti",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Poista kaikki t\u00e4git",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Poista kaikki muistiinpanot",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Muuta tapahtuma talletukseksi",
"rule_action_convert_withdrawal_choice": "Muuta tapahtuma nostoksi",
"rule_action_convert_transfer_choice": "Muuta tapahtuma siirroksi",
"placeholder": "[Placeholder]",
"recurrences": "Toistuvat tapahtumat",
"title_expenses": "Kustannukset",
"title_withdrawal": "Kustannukset",
"title_revenue": "Tuotto \/ ansio",
"pref_1D": "Yksi p\u00e4iv\u00e4",
"pref_1W": "Yksi viikko",
"pref_1M": "Yksi kuukausi",
"pref_3M": "Kolme kuukautta (vuosinelj\u00e4nnes)",
"pref_6M": "Kuusi kuukautta",
"pref_1Y": "Yksi vuosi",
"repeat_freq_yearly": "vuosittain",
"repeat_freq_half-year": "puoli-vuosittain",
"repeat_freq_quarterly": "nelj\u00e4nnesvuosittain",
"repeat_freq_monthly": "kuukausittain",
"repeat_freq_weekly": "viikoittain",
"single_split": "Jako",
"asset_accounts": "K\u00e4ytt\u00f6tilit",
"expense_accounts": "Kulutustilit",
"liabilities_accounts": "Lainat",
"undefined_accounts": "Tilit",
"name": "Nimi",
"revenue_accounts": "Tuottotilit",
"description": "Kuvaus",
"category": "Kategoria",
"title_deposit": "Tuotto \/ ansio",
"title_transfer": "Tilisiirrot",
"title_transfers": "Tilisiirrot",
"piggyBanks": "S\u00e4\u00e4st\u00f6possut",
"rules": "S\u00e4\u00e4nn\u00f6t",
"accounts": "Tilit",
"categories": "Kategoriat",
"tags": "T\u00e4git",
"object_groups_page_title": "Ryhm\u00e4t",
"reports": "Raportit",
"webhooks": "Webhookit",
"currencies": "Valuutat",
"administration": "Yll\u00e4pito",
"profile": "Profiili",
"source_account": "L\u00e4hdetili",
"destination_account": "Kohdetili",
"amount": "Summa",
"date": "P\u00e4iv\u00e4m\u00e4\u00e4r\u00e4",
"time": "Aika",
"preferences": "Asetukset",
"transactions": "Tapahtumat",
"balance": "Saldo",
"budgets": "Budjetit",
"subscriptions": "Tilaukset",
"welcome_back": "Mit\u00e4 kuuluu?",
"bills_to_pay": "Laskuja maksettavana",
"net_worth": "Varallisuus",
"pref_last365": "Edellinen vuosi",
"pref_last90": "Viimeiset 90 p\u00e4iv\u00e4\u00e4",
"pref_last30": "Viimeiset 30 p\u00e4iv\u00e4\u00e4",
"pref_last7": "Viimeiset 7 p\u00e4iv\u00e4\u00e4",
"pref_YTD": "Vuoden alusta",
"pref_QTD": "Nelj\u00e4nnesvuoden alusta",
"pref_MTD": "Kuukauden alusta"
}
"config": {
"html_language": "fi",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "Nimi",
"amount_min": "V\u00e4himm\u00e4issumma",
"amount_max": "Enimm\u00e4issumma",
"url": "URL-osoite",
"title": "Otsikko",
"first_date": "Aloitusp\u00e4iv\u00e4",
"repetitions": "Toistot",
"description": "Kuvaus",
"iban": "IBAN",
"skip": "Ohita",
"date": "P\u00e4iv\u00e4m\u00e4\u00e4r\u00e4"
},
"list": {
"name": "Nimi",
"account_number": "Tilinumero",
"currentBalance": "T\u00e4m\u00e4nhetkinen saldo",
"lastActivity": "Viimeisin tapahtuma",
"active": "Aktiivinen?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budjetit",
"subscriptions": "Tilaukset",
"transactions": "Tapahtumat",
"title_expenses": "Kustannukset",
"title_withdrawal": "Kustannukset",
"title_revenue": "Tuotto \/ ansio",
"title_deposit": "Tuotto \/ ansio",
"title_transfer": "Tilisiirrot",
"title_transfers": "Tilisiirrot",
"asset_accounts": "K\u00e4ytt\u00f6tilit",
"expense_accounts": "Kulutustilit",
"revenue_accounts": "Tuottotilit",
"liabilities_accounts": "Lainat"
},
"firefly": {
"actions": "Toiminnot",
"edit": "Muokkaa",
"delete": "Poista",
"reconcile": "T\u00e4sm\u00e4yt\u00e4",
"create_new_asset": "Luo uusi omaisuustili",
"confirm_action": "Vahvista toiminto",
"new_budget": "Uusi budjetti",
"new_asset_account": "Uusi omaisuustili",
"newTransfer": "Uusi siirto",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Uusi talletus",
"newWithdrawal": "Uusi kustannus",
"bills_paid": "Maksetut laskut",
"left_to_spend": "K\u00e4ytett\u00e4viss\u00e4",
"no_budget": "(ei budjettia)",
"budgeted": "Budjetoitu",
"spent": "K\u00e4ytetty",
"no_bill": "(ei laskua)",
"rule_trigger_source_account_starts_choice": "L\u00e4hdetilin nimi alkaa ...",
"rule_trigger_source_account_ends_choice": "L\u00e4hdetilin nimi p\u00e4\u00e4ttyy..",
"rule_trigger_source_account_is_choice": "L\u00e4hdetilin nimi on..",
"rule_trigger_source_account_contains_choice": "L\u00e4hdetilin nimi sis\u00e4lt\u00e4\u00e4..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "L\u00e4hdetili ID on tarkalleen..",
"rule_trigger_destination_account_id_choice": "Kohdetilin ID on tarkalleen..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "L\u00e4hdetili on (k\u00e4teis) tili",
"rule_trigger_destination_is_cash_choice": "Kohdetili on (k\u00e4teis) tili",
"rule_trigger_source_account_nr_starts_choice": "L\u00e4hdetilin numero \/ IBAN alkaa..",
"rule_trigger_source_account_nr_ends_choice": "L\u00e4hdetilin numero \/ IBAN p\u00e4\u00e4ttyy..",
"rule_trigger_source_account_nr_is_choice": "L\u00e4hdetilin numero \/ IBAN on..",
"rule_trigger_source_account_nr_contains_choice": "L\u00e4hdetilin numero \/ IBAN sis\u00e4lt\u00e4\u00e4..",
"rule_trigger_destination_account_starts_choice": "Kohdetilin nimi alkaa..",
"rule_trigger_destination_account_ends_choice": "Kohdetilin nimi p\u00e4\u00e4ttyy..",
"rule_trigger_destination_account_is_choice": "Kohdetilin nimi on..",
"rule_trigger_destination_account_contains_choice": "Kohdetilin nimi sis\u00e4lt\u00e4\u00e4..",
"rule_trigger_destination_account_nr_starts_choice": "Kohdetilin numero \/ IBAN alkaa..",
"rule_trigger_destination_account_nr_ends_choice": "Kohdetilin numero \/ IBAN p\u00e4\u00e4ttyy..",
"rule_trigger_destination_account_nr_is_choice": "Kohdetilin numero \/ IBAN on..",
"rule_trigger_destination_account_nr_contains_choice": "Kohdetilin numero \/ IBAN sis\u00e4lt\u00e4\u00e4..",
"rule_trigger_transaction_type_choice": "Tapahtuman tyyppi on ...",
"rule_trigger_category_is_choice": "Kategoria on ...",
"rule_trigger_amount_less_choice": "Summa on v\u00e4hemm\u00e4n kuin ...",
"rule_trigger_amount_is_choice": "Summa on..",
"rule_trigger_amount_more_choice": "Summa on enemm\u00e4n kuin ...",
"rule_trigger_description_starts_choice": "Kuvaus alkaa tekstill\u00e4 ...",
"rule_trigger_description_ends_choice": "Kuvaus p\u00e4\u00e4ttyy tekstiin ...",
"rule_trigger_description_contains_choice": "Kuvaus sis\u00e4lt\u00e4\u00e4 ...",
"rule_trigger_description_is_choice": "Kuvaus on ...",
"rule_trigger_date_on_choice": "Tapahtumap\u00e4iv\u00e4 on..",
"rule_trigger_date_before_choice": "Tapahtumap\u00e4iv\u00e4 on ennen..",
"rule_trigger_date_after_choice": "Tapahtumap\u00e4iv\u00e4 on j\u00e4lkeen..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Budjetti on ...",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Tapahtuman valuutta on ...",
"rule_trigger_foreign_currency_is_choice": "Tapahtuman valuutta on..",
"rule_trigger_has_attachments_choice": "Tapahtumalla on v\u00e4hint\u00e4\u00e4n n\u00e4in monta liitett\u00e4",
"rule_trigger_has_no_category_choice": "Ei kategoriaa",
"rule_trigger_has_any_category_choice": "Mik\u00e4 tahansa kategoria",
"rule_trigger_has_no_budget_choice": "Ei budjettia",
"rule_trigger_has_any_budget_choice": "On budjetti (mik\u00e4 tahansa)",
"rule_trigger_has_no_bill_choice": "Ei laskua",
"rule_trigger_has_any_bill_choice": "On lasku (mik\u00e4 tahansa)",
"rule_trigger_has_no_tag_choice": "Ei t\u00e4gej\u00e4",
"rule_trigger_has_any_tag_choice": "On t\u00e4gi\/t\u00e4gej\u00e4 (mit\u00e4 tahansa)",
"rule_trigger_any_notes_choice": "On muistiinpano (mit\u00e4 tahansa)",
"rule_trigger_no_notes_choice": "Ei muistiinpanoja",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Lasku on..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Tapahtumatietueen tunnus on..",
"rule_trigger_any_external_url_choice": "Tapahtumalla on ulkoinen URL-osoite",
"rule_trigger_no_external_url_choice": "Tapahtumalla ei ole ulkoista URL-osoitetta",
"rule_trigger_id_choice": "Tapahtuman tunnus on..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Tyhjenn\u00e4 kategoria",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Tyhjenn\u00e4 budjetti",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Poista kaikki t\u00e4git",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Poista kaikki muistiinpanot",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Muuta tapahtuma talletukseksi",
"rule_action_convert_withdrawal_choice": "Muuta tapahtuma nostoksi",
"rule_action_convert_transfer_choice": "Muuta tapahtuma siirroksi",
"placeholder": "[Placeholder]",
"recurrences": "Toistuvat tapahtumat",
"title_expenses": "Kustannukset",
"title_withdrawal": "Kustannukset",
"title_revenue": "Tuotto \/ ansio",
"pref_1D": "Yksi p\u00e4iv\u00e4",
"pref_1W": "Yksi viikko",
"pref_1M": "Yksi kuukausi",
"pref_3M": "Kolme kuukautta (vuosinelj\u00e4nnes)",
"pref_6M": "Kuusi kuukautta",
"pref_1Y": "Yksi vuosi",
"repeat_freq_yearly": "vuosittain",
"repeat_freq_half-year": "puoli-vuosittain",
"repeat_freq_quarterly": "nelj\u00e4nnesvuosittain",
"repeat_freq_monthly": "kuukausittain",
"repeat_freq_weekly": "viikoittain",
"single_split": "Jako",
"asset_accounts": "K\u00e4ytt\u00f6tilit",
"expense_accounts": "Kulutustilit",
"liabilities_accounts": "Lainat",
"undefined_accounts": "Tilit",
"name": "Nimi",
"revenue_accounts": "Tuottotilit",
"description": "Kuvaus",
"category": "Kategoria",
"title_deposit": "Tuotto \/ ansio",
"title_transfer": "Tilisiirrot",
"title_transfers": "Tilisiirrot",
"piggyBanks": "S\u00e4\u00e4st\u00f6possut",
"rules": "S\u00e4\u00e4nn\u00f6t",
"accounts": "Tilit",
"categories": "Kategoriat",
"tags": "T\u00e4git",
"object_groups_page_title": "Ryhm\u00e4t",
"reports": "Raportit",
"webhooks": "Webhookit",
"currencies": "Valuutat",
"administration": "Yll\u00e4pito",
"profile": "Profiili",
"source_account": "L\u00e4hdetili",
"destination_account": "Kohdetili",
"amount": "Summa",
"date": "P\u00e4iv\u00e4m\u00e4\u00e4r\u00e4",
"time": "Aika",
"preferences": "Asetukset",
"transactions": "Tapahtumat",
"balance": "Saldo",
"budgets": "Budjetit",
"subscriptions": "Tilaukset",
"welcome_back": "Mit\u00e4 kuuluu?",
"bills_to_pay": "Laskuja maksettavana",
"net_worth": "Varallisuus",
"pref_last365": "Edellinen vuosi",
"pref_last90": "Viimeiset 90 p\u00e4iv\u00e4\u00e4",
"pref_last30": "Viimeiset 30 p\u00e4iv\u00e4\u00e4",
"pref_last7": "Viimeiset 7 p\u00e4iv\u00e4\u00e4",
"pref_YTD": "Vuoden alusta",
"pref_QTD": "Nelj\u00e4nnesvuoden alusta",
"pref_MTD": "Kuukauden alusta"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "fr",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "Nom",
"amount_min": "Montant minimum",
"amount_max": "Montant maximum",
"url": "Liens",
"title": "Titre",
"first_date": "Date de d\u00e9but",
"repetitions": "R\u00e9p\u00e9titions",
"description": "Description",
"iban": "Num\u00e9ro IBAN",
"skip": "Ignorer",
"date": "Date"
},
"list": {
"name": "Nom",
"account_number": "N\u00b0 de compte",
"currentBalance": "Solde courant",
"lastActivity": "Activit\u00e9 r\u00e9cente",
"active": "Actif ?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budgets",
"subscriptions": "Abonnements",
"transactions": "Op\u00e9rations",
"title_expenses": "D\u00e9penses",
"title_withdrawal": "D\u00e9penses",
"title_revenue": "Recette \/ revenu",
"title_deposit": "Recette \/ revenu",
"title_transfer": "Transferts",
"title_transfers": "Transferts",
"asset_accounts": "Comptes d\u2019actif",
"expense_accounts": "Comptes de d\u00e9penses",
"revenue_accounts": "Comptes de recettes",
"liabilities_accounts": "Passifs"
},
"firefly": {
"actions": "Actions",
"edit": "Modifier",
"delete": "Supprimer",
"reconcile": "Rapprocher",
"create_new_asset": "Cr\u00e9er un nouveau compte d\u2019actif",
"confirm_action": "Confirmer l'action",
"new_budget": "Nouveau budget",
"new_asset_account": "Nouveau compte d\u2019actif",
"newTransfer": "Nouveau transfert",
"submission_options": "Options de soumission",
"apply_rules_checkbox": "Appliquer les r\u00e8gles",
"fire_webhooks_checkbox": "Lancer les webhooks",
"newDeposit": "Nouveau d\u00e9p\u00f4t",
"newWithdrawal": "Nouvelle d\u00e9pense",
"bills_paid": "Factures pay\u00e9es",
"left_to_spend": "Reste \u00e0 d\u00e9penser",
"no_budget": "(pas de budget)",
"budgeted": "Budg\u00e9tis\u00e9",
"spent": "D\u00e9pens\u00e9",
"no_bill": "(aucune facture)",
"rule_trigger_source_account_starts_choice": "Le nom du compte source commence par..",
"rule_trigger_source_account_ends_choice": "Le nom du compte source se termine par..",
"rule_trigger_source_account_is_choice": "Le nom du compte source est..",
"rule_trigger_source_account_contains_choice": "Le nom du compte source contient..",
"rule_trigger_account_id_choice": "L'un des deux comptes a pour identifiant..",
"rule_trigger_source_account_id_choice": "L'ID du compte source est exactement..",
"rule_trigger_destination_account_id_choice": "L'ID du compte de destination est exactement..",
"rule_trigger_account_is_cash_choice": "L'un des deux comptes est en esp\u00e8ces",
"rule_trigger_source_is_cash_choice": "Le compte source est un compte (d'esp\u00e8ces)",
"rule_trigger_destination_is_cash_choice": "Le compte de destination est un compte (d'esp\u00e8ces)",
"rule_trigger_source_account_nr_starts_choice": "Le num\u00e9ro \/ IBAN du compte source commence par..",
"rule_trigger_source_account_nr_ends_choice": "Le num\u00e9ro \/ IBAN du compte source se termine par..",
"rule_trigger_source_account_nr_is_choice": "Le num\u00e9ro \/ IBAN du compte source est..",
"rule_trigger_source_account_nr_contains_choice": "Le num\u00e9ro \/ IBAN du compte source contient..",
"rule_trigger_destination_account_starts_choice": "Le nom du compte de destination commence par..",
"rule_trigger_destination_account_ends_choice": "Le nom du compte de destination se termine par..",
"rule_trigger_destination_account_is_choice": "Le nom du compte de destination est..",
"rule_trigger_destination_account_contains_choice": "Le nom du compte de destination contient..",
"rule_trigger_destination_account_nr_starts_choice": "Le num\u00e9ro \/ IBAN du compte de destination commence par..",
"rule_trigger_destination_account_nr_ends_choice": "Le num\u00e9ro \/ IBAN du compte de destination se termine par..",
"rule_trigger_destination_account_nr_is_choice": "Le num\u00e9ro \/ IBAN du compte de destination est..",
"rule_trigger_destination_account_nr_contains_choice": "Le num\u00e9ro \/ IBAN du compte de destination contient..",
"rule_trigger_transaction_type_choice": "L'op\u00e9ration est du type..",
"rule_trigger_category_is_choice": "La cat\u00e9gorie est..",
"rule_trigger_amount_less_choice": "Le montant est inf\u00e9rieur \u00e0..",
"rule_trigger_amount_is_choice": "Le montant est..",
"rule_trigger_amount_more_choice": "Le montant est sup\u00e9rieur \u00e0..",
"rule_trigger_description_starts_choice": "Le description commence par..",
"rule_trigger_description_ends_choice": "La description se termine par..",
"rule_trigger_description_contains_choice": "La description contient..",
"rule_trigger_description_is_choice": "La description est..",
"rule_trigger_date_on_choice": "La date de l'op\u00e9ration est..",
"rule_trigger_date_before_choice": "La date de l'op\u00e9ration se situe avant..",
"rule_trigger_date_after_choice": "La date de l'op\u00e9ration se situe apr\u00e8s..",
"rule_trigger_created_at_on_choice": "L'op\u00e9ration a \u00e9t\u00e9 cr\u00e9\u00e9e le..",
"rule_trigger_updated_at_on_choice": "L'op\u00e9ration a \u00e9t\u00e9 mise \u00e0 jour pour la derni\u00e8re fois le..",
"rule_trigger_budget_is_choice": "Le budget est..",
"rule_trigger_tag_is_choice": "Un tag est..",
"rule_trigger_currency_is_choice": "La devise de l'op\u00e9ration est..",
"rule_trigger_foreign_currency_is_choice": "La devise \u00e9trang\u00e8re de l'op\u00e9ration est..",
"rule_trigger_has_attachments_choice": "A au moins autant de pi\u00e8ces jointes",
"rule_trigger_has_no_category_choice": "N'a pas de cat\u00e9gorie",
"rule_trigger_has_any_category_choice": "A une cat\u00e9gorie",
"rule_trigger_has_no_budget_choice": "N'a pas de budget",
"rule_trigger_has_any_budget_choice": "A un (des) budget",
"rule_trigger_has_no_bill_choice": "N'a pas de facture",
"rule_trigger_has_any_bill_choice": "A (au moins) une facture",
"rule_trigger_has_no_tag_choice": "N'a pas de tag(s)",
"rule_trigger_has_any_tag_choice": "Dispose d'un ou de plusieurs tags",
"rule_trigger_any_notes_choice": "A une (ou plusieurs) note(s)",
"rule_trigger_no_notes_choice": "N'a pas de note",
"rule_trigger_notes_is_choice": "Les notes sont..",
"rule_trigger_notes_contains_choice": "Les notes contiennent..",
"rule_trigger_notes_starts_choice": "Les notes commencent par..",
"rule_trigger_notes_ends_choice": "Les notes se terminent par..",
"rule_trigger_bill_is_choice": "La facture est..",
"rule_trigger_external_id_is_choice": "L'ID externe est..",
"rule_trigger_internal_reference_is_choice": "La r\u00e9f\u00e9rence interne est..",
"rule_trigger_journal_id_choice": "L'ID du journal d'op\u00e9rations est..",
"rule_trigger_any_external_url_choice": "L'op\u00e9ration a une URL externe",
"rule_trigger_no_external_url_choice": "L'op\u00e9ration n'a pas d'URL externe",
"rule_trigger_id_choice": "L'ID de l'op\u00e9ration est..",
"rule_action_delete_transaction_choice": "SUPPRIMER l'op\u00e9ration(!)",
"rule_action_set_category_choice": "D\u00e9finir la cat\u00e9gorie \u00e0..",
"rule_action_clear_category_choice": "Effacer les cat\u00e9gories",
"rule_action_set_budget_choice": "D\u00e9finir le budget \u00e0..",
"rule_action_clear_budget_choice": "Effacer les budgets",
"rule_action_add_tag_choice": "Ajouter un tag..",
"rule_action_remove_tag_choice": "Retirer le tag..",
"rule_action_remove_all_tags_choice": "Supprimer tous les tags",
"rule_action_set_description_choice": "D\u00e9finir la description \u00e0..",
"rule_action_update_piggy_choice": "Ajouter\/supprimer un montant dans la tirelire..",
"rule_action_append_description_choice": "Suffixer la description avec..",
"rule_action_prepend_description_choice": "Pr\u00e9fixer la description avec..",
"rule_action_set_source_account_choice": "D\u00e9finir le compte source \u00e0..",
"rule_action_set_destination_account_choice": "D\u00e9finir le compte de destination \u00e0..",
"rule_action_append_notes_choice": "Ajouter aux notes ..",
"rule_action_prepend_notes_choice": "Ajouter au d\u00e9but des notes..",
"rule_action_clear_notes_choice": "Supprimer les notes",
"rule_action_set_notes_choice": "Remplacer les notes par..",
"rule_action_link_to_bill_choice": "Lier \u00e0 une facture..",
"rule_action_convert_deposit_choice": "Convertir cette op\u00e9ration en d\u00e9p\u00f4t",
"rule_action_convert_withdrawal_choice": "Convertir cette op\u00e9ration en d\u00e9pense",
"rule_action_convert_transfer_choice": "Convertir cette op\u00e9ration en transfert",
"placeholder": "[R\u00e9serv\u00e9]",
"recurrences": "Op\u00e9rations p\u00e9riodiques",
"title_expenses": "D\u00e9penses",
"title_withdrawal": "D\u00e9penses",
"title_revenue": "Recette \/ revenu",
"pref_1D": "Un jour",
"pref_1W": "Une semaine",
"pref_1M": "Un mois",
"pref_3M": "Trois mois (trimestre)",
"pref_6M": "Six mois",
"pref_1Y": "Un an",
"repeat_freq_yearly": "annuellement",
"repeat_freq_half-year": "semestriel",
"repeat_freq_quarterly": "trimestriel",
"repeat_freq_monthly": "mensuel",
"repeat_freq_weekly": "hebdomadaire",
"single_split": "Ventilation",
"asset_accounts": "Comptes d\u2019actif",
"expense_accounts": "Comptes de d\u00e9penses",
"liabilities_accounts": "Passifs",
"undefined_accounts": "Comptes",
"name": "Nom",
"revenue_accounts": "Comptes de recettes",
"description": "Description",
"category": "Cat\u00e9gorie",
"title_deposit": "Recette \/ revenu",
"title_transfer": "Transferts",
"title_transfers": "Transferts",
"piggyBanks": "Tirelires",
"rules": "R\u00e8gles",
"accounts": "Comptes",
"categories": "Cat\u00e9gories",
"tags": "Tags",
"object_groups_page_title": "Groupes",
"reports": "Rapports",
"webhooks": "Webhooks",
"currencies": "Devises",
"administration": "Administration",
"profile": "Profil",
"source_account": "Compte source",
"destination_account": "Compte de destination",
"amount": "Montant",
"date": "Date",
"time": "Heure",
"preferences": "Pr\u00e9f\u00e9rences",
"transactions": "Op\u00e9rations",
"balance": "Solde",
"budgets": "Budgets",
"subscriptions": "Abonnements",
"welcome_back": "Quoi de neuf ?",
"bills_to_pay": "Factures \u00e0 payer",
"net_worth": "Avoir net",
"pref_last365": "L'ann\u00e9e derni\u00e8re",
"pref_last90": "Les 90 derniers jours",
"pref_last30": "Les 30 derniers jours",
"pref_last7": "Les 7 derniers jours",
"pref_YTD": "Ann\u00e9e en cours",
"pref_QTD": "Ce trimestre",
"pref_MTD": "Ce mois-ci"
}
"config": {
"html_language": "fr",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "Nom",
"amount_min": "Montant minimum",
"amount_max": "Montant maximum",
"url": "Liens",
"title": "Titre",
"first_date": "Date de d\u00e9but",
"repetitions": "R\u00e9p\u00e9titions",
"description": "Description",
"iban": "Num\u00e9ro IBAN",
"skip": "Ignorer",
"date": "Date"
},
"list": {
"name": "Nom",
"account_number": "N\u00b0 de compte",
"currentBalance": "Solde courant",
"lastActivity": "Activit\u00e9 r\u00e9cente",
"active": "Actif ?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budgets",
"subscriptions": "Abonnements",
"transactions": "Op\u00e9rations",
"title_expenses": "D\u00e9penses",
"title_withdrawal": "D\u00e9penses",
"title_revenue": "Recette \/ revenu",
"title_deposit": "Recette \/ revenu",
"title_transfer": "Transferts",
"title_transfers": "Transferts",
"asset_accounts": "Comptes d\u2019actif",
"expense_accounts": "Comptes de d\u00e9penses",
"revenue_accounts": "Comptes de recettes",
"liabilities_accounts": "Passifs"
},
"firefly": {
"actions": "Actions",
"edit": "Modifier",
"delete": "Supprimer",
"reconcile": "Rapprocher",
"create_new_asset": "Cr\u00e9er un nouveau compte d\u2019actif",
"confirm_action": "Confirmer l'action",
"new_budget": "Nouveau budget",
"new_asset_account": "Nouveau compte d\u2019actif",
"newTransfer": "Nouveau transfert",
"submission_options": "Options de soumission",
"apply_rules_checkbox": "Appliquer les r\u00e8gles",
"fire_webhooks_checkbox": "Lancer les webhooks",
"newDeposit": "Nouveau d\u00e9p\u00f4t",
"newWithdrawal": "Nouvelle d\u00e9pense",
"bills_paid": "Factures pay\u00e9es",
"left_to_spend": "Reste \u00e0 d\u00e9penser",
"no_budget": "(pas de budget)",
"budgeted": "Budg\u00e9tis\u00e9",
"spent": "D\u00e9pens\u00e9",
"no_bill": "(aucune facture)",
"rule_trigger_source_account_starts_choice": "Le nom du compte source commence par..",
"rule_trigger_source_account_ends_choice": "Le nom du compte source se termine par..",
"rule_trigger_source_account_is_choice": "Le nom du compte source est..",
"rule_trigger_source_account_contains_choice": "Le nom du compte source contient..",
"rule_trigger_account_id_choice": "L'un des deux comptes a pour identifiant..",
"rule_trigger_source_account_id_choice": "L'ID du compte source est exactement..",
"rule_trigger_destination_account_id_choice": "L'ID du compte de destination est exactement..",
"rule_trigger_account_is_cash_choice": "L'un des deux comptes est en esp\u00e8ces",
"rule_trigger_source_is_cash_choice": "Le compte source est un compte (d'esp\u00e8ces)",
"rule_trigger_destination_is_cash_choice": "Le compte de destination est un compte (d'esp\u00e8ces)",
"rule_trigger_source_account_nr_starts_choice": "Le num\u00e9ro \/ IBAN du compte source commence par..",
"rule_trigger_source_account_nr_ends_choice": "Le num\u00e9ro \/ IBAN du compte source se termine par..",
"rule_trigger_source_account_nr_is_choice": "Le num\u00e9ro \/ IBAN du compte source est..",
"rule_trigger_source_account_nr_contains_choice": "Le num\u00e9ro \/ IBAN du compte source contient..",
"rule_trigger_destination_account_starts_choice": "Le nom du compte de destination commence par..",
"rule_trigger_destination_account_ends_choice": "Le nom du compte de destination se termine par..",
"rule_trigger_destination_account_is_choice": "Le nom du compte de destination est..",
"rule_trigger_destination_account_contains_choice": "Le nom du compte de destination contient..",
"rule_trigger_destination_account_nr_starts_choice": "Le num\u00e9ro \/ IBAN du compte de destination commence par..",
"rule_trigger_destination_account_nr_ends_choice": "Le num\u00e9ro \/ IBAN du compte de destination se termine par..",
"rule_trigger_destination_account_nr_is_choice": "Le num\u00e9ro \/ IBAN du compte de destination est..",
"rule_trigger_destination_account_nr_contains_choice": "Le num\u00e9ro \/ IBAN du compte de destination contient..",
"rule_trigger_transaction_type_choice": "L'op\u00e9ration est du type..",
"rule_trigger_category_is_choice": "La cat\u00e9gorie est..",
"rule_trigger_amount_less_choice": "Le montant est inf\u00e9rieur \u00e0..",
"rule_trigger_amount_is_choice": "Le montant est..",
"rule_trigger_amount_more_choice": "Le montant est sup\u00e9rieur \u00e0..",
"rule_trigger_description_starts_choice": "Le description commence par..",
"rule_trigger_description_ends_choice": "La description se termine par..",
"rule_trigger_description_contains_choice": "La description contient..",
"rule_trigger_description_is_choice": "La description est..",
"rule_trigger_date_on_choice": "La date de l'op\u00e9ration est..",
"rule_trigger_date_before_choice": "La date de l'op\u00e9ration se situe avant..",
"rule_trigger_date_after_choice": "La date de l'op\u00e9ration se situe apr\u00e8s..",
"rule_trigger_created_at_on_choice": "L'op\u00e9ration a \u00e9t\u00e9 cr\u00e9\u00e9e le..",
"rule_trigger_updated_at_on_choice": "L'op\u00e9ration a \u00e9t\u00e9 mise \u00e0 jour pour la derni\u00e8re fois le..",
"rule_trigger_budget_is_choice": "Le budget est..",
"rule_trigger_tag_is_choice": "Un tag est..",
"rule_trigger_currency_is_choice": "La devise de l'op\u00e9ration est..",
"rule_trigger_foreign_currency_is_choice": "La devise \u00e9trang\u00e8re de l'op\u00e9ration est..",
"rule_trigger_has_attachments_choice": "A au moins autant de pi\u00e8ces jointes",
"rule_trigger_has_no_category_choice": "N'a pas de cat\u00e9gorie",
"rule_trigger_has_any_category_choice": "A une cat\u00e9gorie",
"rule_trigger_has_no_budget_choice": "N'a pas de budget",
"rule_trigger_has_any_budget_choice": "A un (des) budget",
"rule_trigger_has_no_bill_choice": "N'a pas de facture",
"rule_trigger_has_any_bill_choice": "A (au moins) une facture",
"rule_trigger_has_no_tag_choice": "N'a pas de tag(s)",
"rule_trigger_has_any_tag_choice": "Dispose d'un ou de plusieurs tags",
"rule_trigger_any_notes_choice": "A une (ou plusieurs) note(s)",
"rule_trigger_no_notes_choice": "N'a pas de note",
"rule_trigger_notes_is_choice": "Les notes sont..",
"rule_trigger_notes_contains_choice": "Les notes contiennent..",
"rule_trigger_notes_starts_choice": "Les notes commencent par..",
"rule_trigger_notes_ends_choice": "Les notes se terminent par..",
"rule_trigger_bill_is_choice": "La facture est..",
"rule_trigger_external_id_is_choice": "L'ID externe est..",
"rule_trigger_internal_reference_is_choice": "La r\u00e9f\u00e9rence interne est..",
"rule_trigger_journal_id_choice": "L'ID du journal d'op\u00e9rations est..",
"rule_trigger_any_external_url_choice": "L'op\u00e9ration a une URL externe",
"rule_trigger_no_external_url_choice": "L'op\u00e9ration n'a pas d'URL externe",
"rule_trigger_id_choice": "L'ID de l'op\u00e9ration est..",
"rule_action_delete_transaction_choice": "SUPPRIMER l'op\u00e9ration(!)",
"rule_action_set_category_choice": "D\u00e9finir la cat\u00e9gorie \u00e0..",
"rule_action_clear_category_choice": "Effacer les cat\u00e9gories",
"rule_action_set_budget_choice": "D\u00e9finir le budget \u00e0..",
"rule_action_clear_budget_choice": "Effacer les budgets",
"rule_action_add_tag_choice": "Ajouter un tag..",
"rule_action_remove_tag_choice": "Retirer le tag..",
"rule_action_remove_all_tags_choice": "Supprimer tous les tags",
"rule_action_set_description_choice": "D\u00e9finir la description \u00e0..",
"rule_action_update_piggy_choice": "Ajouter\/supprimer un montant dans la tirelire..",
"rule_action_append_description_choice": "Suffixer la description avec..",
"rule_action_prepend_description_choice": "Pr\u00e9fixer la description avec..",
"rule_action_set_source_account_choice": "D\u00e9finir le compte source \u00e0..",
"rule_action_set_destination_account_choice": "D\u00e9finir le compte de destination \u00e0..",
"rule_action_append_notes_choice": "Ajouter aux notes ..",
"rule_action_prepend_notes_choice": "Ajouter au d\u00e9but des notes..",
"rule_action_clear_notes_choice": "Supprimer les notes",
"rule_action_set_notes_choice": "Remplacer les notes par..",
"rule_action_link_to_bill_choice": "Lier \u00e0 une facture..",
"rule_action_convert_deposit_choice": "Convertir cette op\u00e9ration en d\u00e9p\u00f4t",
"rule_action_convert_withdrawal_choice": "Convertir cette op\u00e9ration en d\u00e9pense",
"rule_action_convert_transfer_choice": "Convertir cette op\u00e9ration en transfert",
"placeholder": "[R\u00e9serv\u00e9]",
"recurrences": "Op\u00e9rations p\u00e9riodiques",
"title_expenses": "D\u00e9penses",
"title_withdrawal": "D\u00e9penses",
"title_revenue": "Recette \/ revenu",
"pref_1D": "Un jour",
"pref_1W": "Une semaine",
"pref_1M": "Un mois",
"pref_3M": "Trois mois (trimestre)",
"pref_6M": "Six mois",
"pref_1Y": "Un an",
"repeat_freq_yearly": "annuellement",
"repeat_freq_half-year": "semestriel",
"repeat_freq_quarterly": "trimestriel",
"repeat_freq_monthly": "mensuel",
"repeat_freq_weekly": "hebdomadaire",
"single_split": "Ventilation",
"asset_accounts": "Comptes d\u2019actif",
"expense_accounts": "Comptes de d\u00e9penses",
"liabilities_accounts": "Passifs",
"undefined_accounts": "Comptes",
"name": "Nom",
"revenue_accounts": "Comptes de recettes",
"description": "Description",
"category": "Cat\u00e9gorie",
"title_deposit": "Recette \/ revenu",
"title_transfer": "Transferts",
"title_transfers": "Transferts",
"piggyBanks": "Tirelires",
"rules": "R\u00e8gles",
"accounts": "Comptes",
"categories": "Cat\u00e9gories",
"tags": "Tags",
"object_groups_page_title": "Groupes",
"reports": "Rapports",
"webhooks": "Webhooks",
"currencies": "Devises",
"administration": "Administration",
"profile": "Profil",
"source_account": "Compte source",
"destination_account": "Compte de destination",
"amount": "Montant",
"date": "Date",
"time": "Heure",
"preferences": "Pr\u00e9f\u00e9rences",
"transactions": "Op\u00e9rations",
"balance": "Solde",
"budgets": "Budgets",
"subscriptions": "Abonnements",
"welcome_back": "Quoi de neuf ?",
"bills_to_pay": "Factures \u00e0 payer",
"net_worth": "Avoir net",
"pref_last365": "L'ann\u00e9e derni\u00e8re",
"pref_last90": "Les 90 derniers jours",
"pref_last30": "Les 30 derniers jours",
"pref_last7": "Les 7 derniers jours",
"pref_YTD": "Ann\u00e9e en cours",
"pref_QTD": "Ce trimestre",
"pref_MTD": "Ce mois-ci"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "hu",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "N\u00e9v",
"amount_min": "Minim\u00e1lis \u00f6sszeg",
"amount_max": "Maxim\u00e1lis \u00f6sszeg",
"url": "URL",
"title": "C\u00edm",
"first_date": "Els\u0151 d\u00e1tum",
"repetitions": "Ism\u00e9tl\u00e9sek",
"description": "Le\u00edr\u00e1s",
"iban": "IBAN",
"skip": "Kihagy\u00e1s",
"date": "D\u00e1tum"
},
"list": {
"name": "N\u00e9v",
"account_number": "Account number",
"currentBalance": "Aktu\u00e1lis egyenleg",
"lastActivity": "Utols\u00f3 aktivit\u00e1s",
"active": "Akt\u00edv?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budgets",
"subscriptions": "Subscriptions",
"transactions": "Transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"revenue_accounts": "Revenue accounts",
"liabilities_accounts": "Liabilities"
},
"firefly": {
"actions": "M\u0171veletek",
"edit": "Szerkeszt\u00e9s",
"delete": "T\u00f6rl\u00e9s",
"reconcile": "Egyeztet\u00e9s",
"create_new_asset": "\u00daj eszk\u00f6zsz\u00e1mla l\u00e9trehoz\u00e1sa",
"confirm_action": "Confirm action",
"new_budget": "\u00daj k\u00f6lts\u00e9gkeret",
"new_asset_account": "\u00daj eszk\u00f6zsz\u00e1mla",
"newTransfer": "\u00daj \u00e1tvezet\u00e9s",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "\u00daj bev\u00e9tel",
"newWithdrawal": "\u00daj k\u00f6lts\u00e9g",
"bills_paid": "Befizetett sz\u00e1ml\u00e1k",
"left_to_spend": "Elk\u00f6lthet\u0151",
"no_budget": "(nincs k\u00f6lts\u00e9gkeret)",
"budgeted": "Betervezett",
"spent": "Elk\u00f6lt\u00f6tt",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Forr\u00e1ssz\u00e1mla nev\u00e9nek eleje..",
"rule_trigger_source_account_ends_choice": "Forr\u00e1ssz\u00e1mla nev\u00e9nek v\u00e9ge..",
"rule_trigger_source_account_is_choice": "A forr\u00e1ssz\u00e1mla neve..",
"rule_trigger_source_account_contains_choice": "Forr\u00e1ssz\u00e1mla neve tartalmazza..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Forr\u00e1ssz\u00e1mla ID pontosan..",
"rule_trigger_destination_account_id_choice": "C\u00e9lsz\u00e1mla ID pontosan..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Forr\u00e1ssz\u00e1mla egy k\u00e9szp\u00e9nz sz\u00e1mla",
"rule_trigger_destination_is_cash_choice": "C\u00e9lsz\u00e1mla egy k\u00e9szp\u00e9nz sz\u00e1mla",
"rule_trigger_source_account_nr_starts_choice": "Forr\u00e1ssz\u00e1mla sz\u00e1mlasz\u00e1ma \/ IBAN eleje..",
"rule_trigger_source_account_nr_ends_choice": "Forr\u00e1ssz\u00e1mla sz\u00e1mlasz\u00e1ma \/ IBAN v\u00e9ge..",
"rule_trigger_source_account_nr_is_choice": "Forr\u00e1ssz\u00e1mla sz\u00e1ma \/ IBAN..",
"rule_trigger_source_account_nr_contains_choice": "Forr\u00e1ssz\u00e1mla sz\u00e1ma \/ IBAN tartalmazza..",
"rule_trigger_destination_account_starts_choice": "C\u00e9lsz\u00e1mla nev\u00e9nek eleje..",
"rule_trigger_destination_account_ends_choice": "C\u00e9lsz\u00e1mla nev\u00e9nek v\u00e9ge..",
"rule_trigger_destination_account_is_choice": "A c\u00e9lsz\u00e1mla neve..",
"rule_trigger_destination_account_contains_choice": "A c\u00e9lsz\u00e1mla neve tartalmazza..",
"rule_trigger_destination_account_nr_starts_choice": "C\u00e9lsz\u00e1mla sz\u00e1mlasz\u00e1ma \/ IBAN eleje..",
"rule_trigger_destination_account_nr_ends_choice": "C\u00e9lsz\u00e1mla sz\u00e1mlasz\u00e1ma \/ IBAN eleje..",
"rule_trigger_destination_account_nr_is_choice": "C\u00e9lsz\u00e1mla sz\u00e1ma \/ IBAN..",
"rule_trigger_destination_account_nr_contains_choice": "C\u00e9lsz\u00e1mla sz\u00e1ma \/ IBAN tartalmazza..",
"rule_trigger_transaction_type_choice": "A tranzakci\u00f3 t\u00edpusa..",
"rule_trigger_category_is_choice": "A kateg\u00f3ria..",
"rule_trigger_amount_less_choice": "\u00d6sszeg kevesebb mint..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "\u00d6sszeg t\u00f6bb, mint..",
"rule_trigger_description_starts_choice": "Le\u00edr\u00e1s eleje..",
"rule_trigger_description_ends_choice": "Le\u00edr\u00e1s v\u00e9ge..",
"rule_trigger_description_contains_choice": "A le\u00edr\u00e1s tartalmazza..",
"rule_trigger_description_is_choice": "A le\u00edr\u00e1s pontosan..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Tranzakci\u00f3 d\u00e1tuma kor\u00e1bbi, mint..",
"rule_trigger_date_after_choice": "Tranzakci\u00f3 d\u00e1tuma k\u00e9s\u0151bbi, mint..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "A k\u00f6lts\u00e9gkeret..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "A tranzakci\u00f3 p\u00e9nzneme..",
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
"rule_trigger_has_attachments_choice": "Legal\u00e1bb ennyi mell\u00e9klete van",
"rule_trigger_has_no_category_choice": "Nincs kateg\u00f3ri\u00e1ja",
"rule_trigger_has_any_category_choice": "Van kateg\u00f3ri\u00e1ja",
"rule_trigger_has_no_budget_choice": "Nincs k\u00f6lts\u00e9gkerete",
"rule_trigger_has_any_budget_choice": "Van k\u00f6lts\u00e9gkerete",
"rule_trigger_has_no_bill_choice": "Has no bill",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "Nincsenek c\u00edmk\u00e9i",
"rule_trigger_has_any_tag_choice": "Van legal\u00e1bb egy c\u00edmk\u00e9je",
"rule_trigger_any_notes_choice": "Van megjegyz\u00e9se",
"rule_trigger_no_notes_choice": "Nincsenek megjegyz\u00e9sei",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "A sz\u00e1mla..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Minden kateg\u00f3ria t\u00f6rl\u00e9se",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Minden k\u00f6lts\u00e9gvet\u00e9s t\u00f6rl\u00e9se",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Minden c\u00edmke elt\u00e1vol\u00edt\u00e1sa",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Megjegyz\u00e9sek elt\u00e1vol\u00edt\u00e1sa",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "A tranzakci\u00f3 bev\u00e9tell\u00e9 konvert\u00e1l\u00e1sa",
"rule_action_convert_withdrawal_choice": "A tranzakci\u00f3 k\u00f6lts\u00e9gg\u00e9 konvert\u00e1l\u00e1sa",
"rule_action_convert_transfer_choice": "A tranzakci\u00f3 \u00e1tvezet\u00e9ss\u00e9 konvert\u00e1l\u00e1sa",
"placeholder": "[Placeholder]",
"recurrences": "Ism\u00e9tl\u0151d\u0151 tranzakci\u00f3k",
"title_expenses": "K\u00f6lts\u00e9gek",
"title_withdrawal": "K\u00f6lts\u00e9gek",
"title_revenue": "J\u00f6vedelem \/ bev\u00e9tel",
"pref_1D": "Egy nap",
"pref_1W": "Egy h\u00e9t",
"pref_1M": "Egy h\u00f3nap",
"pref_3M": "H\u00e1rom h\u00f3nap (negyed\u00e9v)",
"pref_6M": "Hat h\u00f3nap",
"pref_1Y": "Egy \u00e9v",
"repeat_freq_yearly": "\u00e9ves",
"repeat_freq_half-year": "f\u00e9l\u00e9vente",
"repeat_freq_quarterly": "negyed\u00e9ves",
"repeat_freq_monthly": "havi",
"repeat_freq_weekly": "heti",
"single_split": "Feloszt\u00e1s",
"asset_accounts": "Eszk\u00f6zsz\u00e1ml\u00e1k",
"expense_accounts": "K\u00f6lts\u00e9gsz\u00e1ml\u00e1k",
"liabilities_accounts": "K\u00f6telezetts\u00e9gek",
"undefined_accounts": "Accounts",
"name": "N\u00e9v",
"revenue_accounts": "J\u00f6vedelemsz\u00e1ml\u00e1k",
"description": "Le\u00edr\u00e1s",
"category": "Kateg\u00f3ria",
"title_deposit": "J\u00f6vedelem \/ bev\u00e9tel",
"title_transfer": "\u00c1tvezet\u00e9sek",
"title_transfers": "\u00c1tvezet\u00e9sek",
"piggyBanks": "Malacperselyek",
"rules": "Szab\u00e1lyok",
"accounts": "Sz\u00e1ml\u00e1k",
"categories": "Kateg\u00f3ri\u00e1k",
"tags": "C\u00edmk\u00e9k",
"object_groups_page_title": "Csoportok",
"reports": "Jelent\u00e9sek",
"webhooks": "Webhooks",
"currencies": "P\u00e9nznemek",
"administration": "Adminisztr\u00e1ci\u00f3",
"profile": "Profil",
"source_account": "Forr\u00e1s sz\u00e1mla",
"destination_account": "C\u00e9lsz\u00e1mla",
"amount": "\u00d6sszeg",
"date": "D\u00e1tum",
"time": "Time",
"preferences": "Be\u00e1ll\u00edt\u00e1sok",
"transactions": "Tranzakci\u00f3k",
"balance": "Egyenleg",
"budgets": "K\u00f6lts\u00e9gkeretek",
"subscriptions": "Subscriptions",
"welcome_back": "Mi a helyzet?",
"bills_to_pay": "Fizetend\u0151 sz\u00e1ml\u00e1k",
"net_worth": "Nett\u00f3 \u00e9rt\u00e9k",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
"config": {
"html_language": "hu",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "N\u00e9v",
"amount_min": "Minim\u00e1lis \u00f6sszeg",
"amount_max": "Maxim\u00e1lis \u00f6sszeg",
"url": "URL",
"title": "C\u00edm",
"first_date": "Els\u0151 d\u00e1tum",
"repetitions": "Ism\u00e9tl\u00e9sek",
"description": "Le\u00edr\u00e1s",
"iban": "IBAN",
"skip": "Kihagy\u00e1s",
"date": "D\u00e1tum"
},
"list": {
"name": "N\u00e9v",
"account_number": "Account number",
"currentBalance": "Aktu\u00e1lis egyenleg",
"lastActivity": "Utols\u00f3 aktivit\u00e1s",
"active": "Akt\u00edv?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budgets",
"subscriptions": "Subscriptions",
"transactions": "Transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"revenue_accounts": "Revenue accounts",
"liabilities_accounts": "Liabilities"
},
"firefly": {
"actions": "M\u0171veletek",
"edit": "Szerkeszt\u00e9s",
"delete": "T\u00f6rl\u00e9s",
"reconcile": "Egyeztet\u00e9s",
"create_new_asset": "\u00daj eszk\u00f6zsz\u00e1mla l\u00e9trehoz\u00e1sa",
"confirm_action": "Confirm action",
"new_budget": "\u00daj k\u00f6lts\u00e9gkeret",
"new_asset_account": "\u00daj eszk\u00f6zsz\u00e1mla",
"newTransfer": "\u00daj \u00e1tvezet\u00e9s",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "\u00daj bev\u00e9tel",
"newWithdrawal": "\u00daj k\u00f6lts\u00e9g",
"bills_paid": "Befizetett sz\u00e1ml\u00e1k",
"left_to_spend": "Elk\u00f6lthet\u0151",
"no_budget": "(nincs k\u00f6lts\u00e9gkeret)",
"budgeted": "Betervezett",
"spent": "Elk\u00f6lt\u00f6tt",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Forr\u00e1ssz\u00e1mla nev\u00e9nek eleje..",
"rule_trigger_source_account_ends_choice": "Forr\u00e1ssz\u00e1mla nev\u00e9nek v\u00e9ge..",
"rule_trigger_source_account_is_choice": "A forr\u00e1ssz\u00e1mla neve..",
"rule_trigger_source_account_contains_choice": "Forr\u00e1ssz\u00e1mla neve tartalmazza..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Forr\u00e1ssz\u00e1mla ID pontosan..",
"rule_trigger_destination_account_id_choice": "C\u00e9lsz\u00e1mla ID pontosan..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Forr\u00e1ssz\u00e1mla egy k\u00e9szp\u00e9nz sz\u00e1mla",
"rule_trigger_destination_is_cash_choice": "C\u00e9lsz\u00e1mla egy k\u00e9szp\u00e9nz sz\u00e1mla",
"rule_trigger_source_account_nr_starts_choice": "Forr\u00e1ssz\u00e1mla sz\u00e1mlasz\u00e1ma \/ IBAN eleje..",
"rule_trigger_source_account_nr_ends_choice": "Forr\u00e1ssz\u00e1mla sz\u00e1mlasz\u00e1ma \/ IBAN v\u00e9ge..",
"rule_trigger_source_account_nr_is_choice": "Forr\u00e1ssz\u00e1mla sz\u00e1ma \/ IBAN..",
"rule_trigger_source_account_nr_contains_choice": "Forr\u00e1ssz\u00e1mla sz\u00e1ma \/ IBAN tartalmazza..",
"rule_trigger_destination_account_starts_choice": "C\u00e9lsz\u00e1mla nev\u00e9nek eleje..",
"rule_trigger_destination_account_ends_choice": "C\u00e9lsz\u00e1mla nev\u00e9nek v\u00e9ge..",
"rule_trigger_destination_account_is_choice": "A c\u00e9lsz\u00e1mla neve..",
"rule_trigger_destination_account_contains_choice": "A c\u00e9lsz\u00e1mla neve tartalmazza..",
"rule_trigger_destination_account_nr_starts_choice": "C\u00e9lsz\u00e1mla sz\u00e1mlasz\u00e1ma \/ IBAN eleje..",
"rule_trigger_destination_account_nr_ends_choice": "C\u00e9lsz\u00e1mla sz\u00e1mlasz\u00e1ma \/ IBAN eleje..",
"rule_trigger_destination_account_nr_is_choice": "C\u00e9lsz\u00e1mla sz\u00e1ma \/ IBAN..",
"rule_trigger_destination_account_nr_contains_choice": "C\u00e9lsz\u00e1mla sz\u00e1ma \/ IBAN tartalmazza..",
"rule_trigger_transaction_type_choice": "A tranzakci\u00f3 t\u00edpusa..",
"rule_trigger_category_is_choice": "A kateg\u00f3ria..",
"rule_trigger_amount_less_choice": "\u00d6sszeg kevesebb mint..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "\u00d6sszeg t\u00f6bb, mint..",
"rule_trigger_description_starts_choice": "Le\u00edr\u00e1s eleje..",
"rule_trigger_description_ends_choice": "Le\u00edr\u00e1s v\u00e9ge..",
"rule_trigger_description_contains_choice": "A le\u00edr\u00e1s tartalmazza..",
"rule_trigger_description_is_choice": "A le\u00edr\u00e1s pontosan..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Tranzakci\u00f3 d\u00e1tuma kor\u00e1bbi, mint..",
"rule_trigger_date_after_choice": "Tranzakci\u00f3 d\u00e1tuma k\u00e9s\u0151bbi, mint..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "A k\u00f6lts\u00e9gkeret..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "A tranzakci\u00f3 p\u00e9nzneme..",
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
"rule_trigger_has_attachments_choice": "Legal\u00e1bb ennyi mell\u00e9klete van",
"rule_trigger_has_no_category_choice": "Nincs kateg\u00f3ri\u00e1ja",
"rule_trigger_has_any_category_choice": "Van kateg\u00f3ri\u00e1ja",
"rule_trigger_has_no_budget_choice": "Nincs k\u00f6lts\u00e9gkerete",
"rule_trigger_has_any_budget_choice": "Van k\u00f6lts\u00e9gkerete",
"rule_trigger_has_no_bill_choice": "Has no bill",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "Nincsenek c\u00edmk\u00e9i",
"rule_trigger_has_any_tag_choice": "Van legal\u00e1bb egy c\u00edmk\u00e9je",
"rule_trigger_any_notes_choice": "Van megjegyz\u00e9se",
"rule_trigger_no_notes_choice": "Nincsenek megjegyz\u00e9sei",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "A sz\u00e1mla..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Minden kateg\u00f3ria t\u00f6rl\u00e9se",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Minden k\u00f6lts\u00e9gvet\u00e9s t\u00f6rl\u00e9se",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Minden c\u00edmke elt\u00e1vol\u00edt\u00e1sa",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Megjegyz\u00e9sek elt\u00e1vol\u00edt\u00e1sa",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "A tranzakci\u00f3 bev\u00e9tell\u00e9 konvert\u00e1l\u00e1sa",
"rule_action_convert_withdrawal_choice": "A tranzakci\u00f3 k\u00f6lts\u00e9gg\u00e9 konvert\u00e1l\u00e1sa",
"rule_action_convert_transfer_choice": "A tranzakci\u00f3 \u00e1tvezet\u00e9ss\u00e9 konvert\u00e1l\u00e1sa",
"placeholder": "[Placeholder]",
"recurrences": "Ism\u00e9tl\u0151d\u0151 tranzakci\u00f3k",
"title_expenses": "K\u00f6lts\u00e9gek",
"title_withdrawal": "K\u00f6lts\u00e9gek",
"title_revenue": "J\u00f6vedelem \/ bev\u00e9tel",
"pref_1D": "Egy nap",
"pref_1W": "Egy h\u00e9t",
"pref_1M": "Egy h\u00f3nap",
"pref_3M": "H\u00e1rom h\u00f3nap (negyed\u00e9v)",
"pref_6M": "Hat h\u00f3nap",
"pref_1Y": "Egy \u00e9v",
"repeat_freq_yearly": "\u00e9ves",
"repeat_freq_half-year": "f\u00e9l\u00e9vente",
"repeat_freq_quarterly": "negyed\u00e9ves",
"repeat_freq_monthly": "havi",
"repeat_freq_weekly": "heti",
"single_split": "Feloszt\u00e1s",
"asset_accounts": "Eszk\u00f6zsz\u00e1ml\u00e1k",
"expense_accounts": "K\u00f6lts\u00e9gsz\u00e1ml\u00e1k",
"liabilities_accounts": "K\u00f6telezetts\u00e9gek",
"undefined_accounts": "Accounts",
"name": "N\u00e9v",
"revenue_accounts": "J\u00f6vedelemsz\u00e1ml\u00e1k",
"description": "Le\u00edr\u00e1s",
"category": "Kateg\u00f3ria",
"title_deposit": "J\u00f6vedelem \/ bev\u00e9tel",
"title_transfer": "\u00c1tvezet\u00e9sek",
"title_transfers": "\u00c1tvezet\u00e9sek",
"piggyBanks": "Malacperselyek",
"rules": "Szab\u00e1lyok",
"accounts": "Sz\u00e1ml\u00e1k",
"categories": "Kateg\u00f3ri\u00e1k",
"tags": "C\u00edmk\u00e9k",
"object_groups_page_title": "Csoportok",
"reports": "Jelent\u00e9sek",
"webhooks": "Webhooks",
"currencies": "P\u00e9nznemek",
"administration": "Adminisztr\u00e1ci\u00f3",
"profile": "Profil",
"source_account": "Forr\u00e1s sz\u00e1mla",
"destination_account": "C\u00e9lsz\u00e1mla",
"amount": "\u00d6sszeg",
"date": "D\u00e1tum",
"time": "Time",
"preferences": "Be\u00e1ll\u00edt\u00e1sok",
"transactions": "Tranzakci\u00f3k",
"balance": "Egyenleg",
"budgets": "K\u00f6lts\u00e9gkeretek",
"subscriptions": "Subscriptions",
"welcome_back": "Mi a helyzet?",
"bills_to_pay": "Fizetend\u0151 sz\u00e1ml\u00e1k",
"net_worth": "Nett\u00f3 \u00e9rt\u00e9k",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "id",
"month_and_day_fns": "d MMMM, y"
},
"form": {
"name": "Nama",
"amount_min": "Jumlah minimal",
"amount_max": "Jumlah maksimum",
"url": "URL",
"title": "Judul",
"first_date": "Tanggal pertama",
"repetitions": "Pengulangan",
"description": "Deskripsi",
"iban": "IBAN",
"skip": "Melewatkan",
"date": "Tanggal"
},
"list": {
"name": "Nama",
"account_number": "Account number",
"currentBalance": "Saldo saat ini",
"lastActivity": "Aktifitas terakhir",
"active": "Aktif?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Anggaran",
"subscriptions": "Langganan",
"transactions": "Transaksi",
"title_expenses": "Pengeluaran",
"title_withdrawal": "Pengeluaran",
"title_revenue": "Penghasilan \/ pendapatan",
"title_deposit": "Penghasilan \/ pendapatan",
"title_transfer": "Transfer",
"title_transfers": "Transfer",
"asset_accounts": "Akun aset",
"expense_accounts": "Akun pengeluaran",
"revenue_accounts": "Akun pendapatan",
"liabilities_accounts": "Kewajiban"
},
"firefly": {
"actions": "Tindakan",
"edit": "Edit",
"delete": "Menghapus",
"reconcile": "Reconcile",
"create_new_asset": "Buat akun aset baru",
"confirm_action": "Confirm action",
"new_budget": "Anggaran baru",
"new_asset_account": "Akun aset baru",
"newTransfer": "Transfer baru",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Deposit baru",
"newWithdrawal": "Biaya baru",
"bills_paid": "Tagihan dibayar",
"left_to_spend": "Kiri untuk dibelanjakan",
"no_budget": "(no budget)",
"budgeted": "Dianggarkan",
"spent": "Menghabiskan",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Source account name starts with..",
"rule_trigger_source_account_ends_choice": "Source account name ends with..",
"rule_trigger_source_account_is_choice": "Source account name is..",
"rule_trigger_source_account_contains_choice": "Source account name contains..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Source account ID is exactly..",
"rule_trigger_destination_account_id_choice": "Destination account ID is exactly..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Source account is (cash) account",
"rule_trigger_destination_is_cash_choice": "Destination account is (cash) account",
"rule_trigger_source_account_nr_starts_choice": "Source account number \/ IBAN starts with..",
"rule_trigger_source_account_nr_ends_choice": "Source account number \/ IBAN ends with..",
"rule_trigger_source_account_nr_is_choice": "Source account number \/ IBAN is..",
"rule_trigger_source_account_nr_contains_choice": "Source account number \/ IBAN contains..",
"rule_trigger_destination_account_starts_choice": "Destination account name starts with..",
"rule_trigger_destination_account_ends_choice": "Destination account name ends with..",
"rule_trigger_destination_account_is_choice": "Destination account name is..",
"rule_trigger_destination_account_contains_choice": "Destination account name contains..",
"rule_trigger_destination_account_nr_starts_choice": "Destination account number \/ IBAN starts with..",
"rule_trigger_destination_account_nr_ends_choice": "Destination account number \/ IBAN ends with..",
"rule_trigger_destination_account_nr_is_choice": "Destination account number \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Destination account number \/ IBAN contains..",
"rule_trigger_transaction_type_choice": "Transaksi adalah tipe..",
"rule_trigger_category_is_choice": "Kategori adalah..",
"rule_trigger_amount_less_choice": "Jumlahnya kurang dari..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Jumlahnya lebih dari..",
"rule_trigger_description_starts_choice": "Deskripsi dimulai dengan..",
"rule_trigger_description_ends_choice": "Deskripsi diakhiri dengan..",
"rule_trigger_description_contains_choice": "Deskripsi berisi..",
"rule_trigger_description_is_choice": "Deskripsi adalah..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Transaction date is before..",
"rule_trigger_date_after_choice": "Transaction date is after..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Anggaran adalah..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Transaction currency is..",
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
"rule_trigger_has_attachments_choice": "Paling tidak banyak keterikatan ini",
"rule_trigger_has_no_category_choice": "Tidak memiliki kategori",
"rule_trigger_has_any_category_choice": "Memiliki kategori (apapun)",
"rule_trigger_has_no_budget_choice": "Tidak memiliki anggaran",
"rule_trigger_has_any_budget_choice": "Memiliki anggaran (apapun)",
"rule_trigger_has_no_bill_choice": "Has no bill",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "Tidak memiliki tag",
"rule_trigger_has_any_tag_choice": "Memiliki satu atau beberapa tag (apapun)",
"rule_trigger_any_notes_choice": "Telah ada catatan",
"rule_trigger_no_notes_choice": "Tidak memiliki catatan",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Bill is..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Kosongkan kategori apapun",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Kosongkan anggaran",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Hapus semua tag",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Hapus catatan apapun",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Convert the transaction to a deposit",
"rule_action_convert_withdrawal_choice": "Convert the transaction to a withdrawal",
"rule_action_convert_transfer_choice": "Convert the transaction to a transfer",
"placeholder": "[Placeholder]",
"recurrences": "Recurring transactions",
"title_expenses": "Beban",
"title_withdrawal": "Beban",
"title_revenue": "Pendapatan \/ penghasilan",
"pref_1D": "Suatu hari",
"pref_1W": "Satu minggu",
"pref_1M": "Satu bulan",
"pref_3M": "Tiga bulan (seperempat)",
"pref_6M": "Enam bulan",
"pref_1Y": "Satu tahun",
"repeat_freq_yearly": "tahunan",
"repeat_freq_half-year": "setiap setengah tahun",
"repeat_freq_quarterly": "triwulanan",
"repeat_freq_monthly": "bulanan",
"repeat_freq_weekly": "mingguan",
"single_split": "Pisah",
"asset_accounts": "Akun aset",
"expense_accounts": "Rekening pengeluaran",
"liabilities_accounts": "Liabilities",
"undefined_accounts": "Accounts",
"name": "Nama",
"revenue_accounts": "Akun pendapatan",
"description": "Deskripsi",
"category": "Kategori",
"title_deposit": "Pendapatan \/ penghasilan",
"title_transfer": "Transfer",
"title_transfers": "Transfer",
"piggyBanks": "Celengan babi",
"rules": "Aturan",
"accounts": "Akun",
"categories": "Kategori",
"tags": "Tag",
"object_groups_page_title": "Groups",
"reports": "Laporan",
"webhooks": "Webhooks",
"currencies": "Mata uang",
"administration": "Administrasi",
"profile": "Profil",
"source_account": "Akun sumber",
"destination_account": "Akun tujuan",
"amount": "Jumlah",
"date": "Tanggal",
"time": "Time",
"preferences": "Preferensi",
"transactions": "Transaksi",
"balance": "Keseimbangan",
"budgets": "Anggaran",
"subscriptions": "Subscriptions",
"welcome_back": "Apa yang sedang dimainkan?",
"bills_to_pay": "Bills untuk membayar",
"net_worth": "Nilai bersih",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
"config": {
"html_language": "id",
"month_and_day_fns": "d MMMM, y"
},
"form": {
"name": "Nama",
"amount_min": "Jumlah minimal",
"amount_max": "Jumlah maksimum",
"url": "URL",
"title": "Judul",
"first_date": "Tanggal pertama",
"repetitions": "Pengulangan",
"description": "Deskripsi",
"iban": "IBAN",
"skip": "Melewatkan",
"date": "Tanggal"
},
"list": {
"name": "Nama",
"account_number": "Account number",
"currentBalance": "Saldo saat ini",
"lastActivity": "Aktifitas terakhir",
"active": "Aktif?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Anggaran",
"subscriptions": "Langganan",
"transactions": "Transaksi",
"title_expenses": "Pengeluaran",
"title_withdrawal": "Pengeluaran",
"title_revenue": "Penghasilan \/ pendapatan",
"title_deposit": "Penghasilan \/ pendapatan",
"title_transfer": "Transfer",
"title_transfers": "Transfer",
"asset_accounts": "Akun aset",
"expense_accounts": "Akun pengeluaran",
"revenue_accounts": "Akun pendapatan",
"liabilities_accounts": "Kewajiban"
},
"firefly": {
"actions": "Tindakan",
"edit": "Edit",
"delete": "Menghapus",
"reconcile": "Reconcile",
"create_new_asset": "Buat akun aset baru",
"confirm_action": "Confirm action",
"new_budget": "Anggaran baru",
"new_asset_account": "Akun aset baru",
"newTransfer": "Transfer baru",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Deposit baru",
"newWithdrawal": "Biaya baru",
"bills_paid": "Tagihan dibayar",
"left_to_spend": "Kiri untuk dibelanjakan",
"no_budget": "(no budget)",
"budgeted": "Dianggarkan",
"spent": "Menghabiskan",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Source account name starts with..",
"rule_trigger_source_account_ends_choice": "Source account name ends with..",
"rule_trigger_source_account_is_choice": "Source account name is..",
"rule_trigger_source_account_contains_choice": "Source account name contains..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Source account ID is exactly..",
"rule_trigger_destination_account_id_choice": "Destination account ID is exactly..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Source account is (cash) account",
"rule_trigger_destination_is_cash_choice": "Destination account is (cash) account",
"rule_trigger_source_account_nr_starts_choice": "Source account number \/ IBAN starts with..",
"rule_trigger_source_account_nr_ends_choice": "Source account number \/ IBAN ends with..",
"rule_trigger_source_account_nr_is_choice": "Source account number \/ IBAN is..",
"rule_trigger_source_account_nr_contains_choice": "Source account number \/ IBAN contains..",
"rule_trigger_destination_account_starts_choice": "Destination account name starts with..",
"rule_trigger_destination_account_ends_choice": "Destination account name ends with..",
"rule_trigger_destination_account_is_choice": "Destination account name is..",
"rule_trigger_destination_account_contains_choice": "Destination account name contains..",
"rule_trigger_destination_account_nr_starts_choice": "Destination account number \/ IBAN starts with..",
"rule_trigger_destination_account_nr_ends_choice": "Destination account number \/ IBAN ends with..",
"rule_trigger_destination_account_nr_is_choice": "Destination account number \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Destination account number \/ IBAN contains..",
"rule_trigger_transaction_type_choice": "Transaksi adalah tipe..",
"rule_trigger_category_is_choice": "Kategori adalah..",
"rule_trigger_amount_less_choice": "Jumlahnya kurang dari..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Jumlahnya lebih dari..",
"rule_trigger_description_starts_choice": "Deskripsi dimulai dengan..",
"rule_trigger_description_ends_choice": "Deskripsi diakhiri dengan..",
"rule_trigger_description_contains_choice": "Deskripsi berisi..",
"rule_trigger_description_is_choice": "Deskripsi adalah..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Transaction date is before..",
"rule_trigger_date_after_choice": "Transaction date is after..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Anggaran adalah..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Transaction currency is..",
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
"rule_trigger_has_attachments_choice": "Paling tidak banyak keterikatan ini",
"rule_trigger_has_no_category_choice": "Tidak memiliki kategori",
"rule_trigger_has_any_category_choice": "Memiliki kategori (apapun)",
"rule_trigger_has_no_budget_choice": "Tidak memiliki anggaran",
"rule_trigger_has_any_budget_choice": "Memiliki anggaran (apapun)",
"rule_trigger_has_no_bill_choice": "Has no bill",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "Tidak memiliki tag",
"rule_trigger_has_any_tag_choice": "Memiliki satu atau beberapa tag (apapun)",
"rule_trigger_any_notes_choice": "Telah ada catatan",
"rule_trigger_no_notes_choice": "Tidak memiliki catatan",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Bill is..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Kosongkan kategori apapun",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Kosongkan anggaran",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Hapus semua tag",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Hapus catatan apapun",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Convert the transaction to a deposit",
"rule_action_convert_withdrawal_choice": "Convert the transaction to a withdrawal",
"rule_action_convert_transfer_choice": "Convert the transaction to a transfer",
"placeholder": "[Placeholder]",
"recurrences": "Recurring transactions",
"title_expenses": "Beban",
"title_withdrawal": "Beban",
"title_revenue": "Pendapatan \/ penghasilan",
"pref_1D": "Suatu hari",
"pref_1W": "Satu minggu",
"pref_1M": "Satu bulan",
"pref_3M": "Tiga bulan (seperempat)",
"pref_6M": "Enam bulan",
"pref_1Y": "Satu tahun",
"repeat_freq_yearly": "tahunan",
"repeat_freq_half-year": "setiap setengah tahun",
"repeat_freq_quarterly": "triwulanan",
"repeat_freq_monthly": "bulanan",
"repeat_freq_weekly": "mingguan",
"single_split": "Pisah",
"asset_accounts": "Akun aset",
"expense_accounts": "Rekening pengeluaran",
"liabilities_accounts": "Liabilities",
"undefined_accounts": "Accounts",
"name": "Nama",
"revenue_accounts": "Akun pendapatan",
"description": "Deskripsi",
"category": "Kategori",
"title_deposit": "Pendapatan \/ penghasilan",
"title_transfer": "Transfer",
"title_transfers": "Transfer",
"piggyBanks": "Celengan babi",
"rules": "Aturan",
"accounts": "Akun",
"categories": "Kategori",
"tags": "Tag",
"object_groups_page_title": "Groups",
"reports": "Laporan",
"webhooks": "Webhooks",
"currencies": "Mata uang",
"administration": "Administrasi",
"profile": "Profil",
"source_account": "Akun sumber",
"destination_account": "Akun tujuan",
"amount": "Jumlah",
"date": "Tanggal",
"time": "Time",
"preferences": "Preferensi",
"transactions": "Transaksi",
"balance": "Keseimbangan",
"budgets": "Anggaran",
"subscriptions": "Subscriptions",
"welcome_back": "Apa yang sedang dimainkan?",
"bills_to_pay": "Bills untuk membayar",
"net_worth": "Nilai bersih",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "it",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "Nome",
"amount_min": "Importo minimo",
"amount_max": "Importo massimo",
"url": "URL",
"title": "Titolo",
"first_date": "Prima volta",
"repetitions": "Ripetizioni",
"description": "Descrizione",
"iban": "IBAN",
"skip": "Salta ogni",
"date": "Data"
},
"list": {
"name": "Nome",
"account_number": "Numero conto",
"currentBalance": "Saldo corrente",
"lastActivity": "Ultima attivit\u00e0",
"active": "Attivo"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budget",
"subscriptions": "Abbonamenti",
"transactions": "Transazioni",
"title_expenses": "Uscite",
"title_withdrawal": "Prelievi",
"title_revenue": "Redditi \/ entrate",
"title_deposit": "Versamenti",
"title_transfer": "Trasferimenti",
"title_transfers": "Trasferimenti",
"asset_accounts": "Conti attivit\u00e0",
"expense_accounts": "Conti uscite",
"revenue_accounts": "Conti entrate",
"liabilities_accounts": "Passivit\u00e0"
},
"firefly": {
"actions": "Azioni",
"edit": "Modifica",
"delete": "Elimina",
"reconcile": "Riconcilia",
"create_new_asset": "Crea un nuovo conto attivit\u00e0",
"confirm_action": "Conferma azione",
"new_budget": "Nuovo budget",
"new_asset_account": "Nuovo conto attivit\u00e0",
"newTransfer": "Nuovo trasferimento",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Nuova entrata",
"newWithdrawal": "Nuova uscita",
"bills_paid": "Bollette pagate",
"left_to_spend": "Altro da spendere",
"no_budget": "(nessun budget)",
"budgeted": "Preventivato",
"spent": "Speso",
"no_bill": "(nessuna bolletta)",
"rule_trigger_source_account_starts_choice": "Il nome del conto di origine inizia con..",
"rule_trigger_source_account_ends_choice": "Il nome del conto di origine termina con..",
"rule_trigger_source_account_is_choice": "Il nome del conto di origine \u00e8..",
"rule_trigger_source_account_contains_choice": "Il nome del conto di origine contiene...",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "L'ID del conto di origine \u00e8 esattamente...",
"rule_trigger_destination_account_id_choice": "L'ID del conto di destinazione \u00e8 esattamente...",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Il conte di origine \u00e8 un conto (in contanti)",
"rule_trigger_destination_is_cash_choice": "Il conto destinazione \u00e8 un conto (in contanti)",
"rule_trigger_source_account_nr_starts_choice": "Il numero del conto di origine \/ l'IBAN inizia con...",
"rule_trigger_source_account_nr_ends_choice": "Il numero del conto di origine \/ l'IBAN termina con...",
"rule_trigger_source_account_nr_is_choice": "Il numero del conto di origine \/ l'IBAN \u00e8...",
"rule_trigger_source_account_nr_contains_choice": "Il numero del conto di origine \/ l'IBAN contiene...",
"rule_trigger_destination_account_starts_choice": "Il nome del conto di destinazione inizia con...",
"rule_trigger_destination_account_ends_choice": "Il nome del conto di destinazione termina con...",
"rule_trigger_destination_account_is_choice": "Il nome del conto di destinazione \u00e8..",
"rule_trigger_destination_account_contains_choice": "Il nome del conto di destinazione contiene..",
"rule_trigger_destination_account_nr_starts_choice": "Il numero del conto di destinazione \/ l'IBAN inizia con..",
"rule_trigger_destination_account_nr_ends_choice": "Il numero del conto di destinazione \/ l'IBAN termina con..",
"rule_trigger_destination_account_nr_is_choice": "Il numero del conto di destinazione \/ l'IBAN \u00e8..",
"rule_trigger_destination_account_nr_contains_choice": "Il numero del conto di destinazione \/ l'IBAN contiene..",
"rule_trigger_transaction_type_choice": "La transazione \u00e8 di tipo...",
"rule_trigger_category_is_choice": "La categoria \u00e8...",
"rule_trigger_amount_less_choice": "L'importo \u00e8 inferiore a...",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "L'importo \u00e8 pi\u00f9 di...",
"rule_trigger_description_starts_choice": "La descrizione inizia con...",
"rule_trigger_description_ends_choice": "La descrizione termina con...",
"rule_trigger_description_contains_choice": "La descrizione contiene...",
"rule_trigger_description_is_choice": "La descrizione \u00e8...",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "La data della transazione \u00e8 antecedente al...",
"rule_trigger_date_after_choice": "La data della transazione \u00e8 successiva al...",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Il budget \u00e8...",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "La valuta della transazione \u00e8...",
"rule_trigger_foreign_currency_is_choice": "La valuta estera della transazione \u00e8...",
"rule_trigger_has_attachments_choice": "Ha almeno cos\u00ec tanti allegati",
"rule_trigger_has_no_category_choice": "Non ha categoria",
"rule_trigger_has_any_category_choice": "Ha una (qualsiasi) categoria",
"rule_trigger_has_no_budget_choice": "Non ha un budget",
"rule_trigger_has_any_budget_choice": "Ha un (qualsiasi) budget",
"rule_trigger_has_no_bill_choice": "Non ha bollette",
"rule_trigger_has_any_bill_choice": "Ha una (qualsiasi) bolletta",
"rule_trigger_has_no_tag_choice": "Non ha etichette",
"rule_trigger_has_any_tag_choice": "Ha una o pi\u00f9 etichette (qualsiasi)",
"rule_trigger_any_notes_choice": "Ha una (qualsiasi) nota",
"rule_trigger_no_notes_choice": "Non ha note",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "La bollett\u00e0 \u00e8...",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "L'ID journal della transazione \u00e8...",
"rule_trigger_any_external_url_choice": "La transazione ha un URL esterno",
"rule_trigger_no_external_url_choice": "La transazione non ha URL esterno",
"rule_trigger_id_choice": "L'ID della transazione \u00e8...",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Rimuovi da tutte le categorie",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Rimuovi da tutti i budget",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Rimuovi tutte le etichette",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Rimuovi tutte le note",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Converti la transazione in un deposito",
"rule_action_convert_withdrawal_choice": "Converti la transazione in un prelievo",
"rule_action_convert_transfer_choice": "Converti la transazione in un trasferimento",
"placeholder": "[Placeholder]",
"recurrences": "Transazioni ricorrenti",
"title_expenses": "Spese",
"title_withdrawal": "Spese",
"title_revenue": "Entrate",
"pref_1D": "Un giorno",
"pref_1W": "Una settimana",
"pref_1M": "Un mese",
"pref_3M": "Tre mesi (trimestre)",
"pref_6M": "Sei mesi",
"pref_1Y": "Un anno",
"repeat_freq_yearly": "annualmente",
"repeat_freq_half-year": "semestralmente",
"repeat_freq_quarterly": "trimestralmente",
"repeat_freq_monthly": "mensilmente",
"repeat_freq_weekly": "settimanalmente",
"single_split": "Divisione",
"asset_accounts": "Conti attivit\u00e0",
"expense_accounts": "Conti uscite",
"liabilities_accounts": "Passivit\u00e0",
"undefined_accounts": "Conti",
"name": "Nome",
"revenue_accounts": "Conti entrate",
"description": "Descrizione",
"category": "Categoria",
"title_deposit": "Redditi \/ entrate",
"title_transfer": "Trasferimenti",
"title_transfers": "Trasferimenti",
"piggyBanks": "Salvadanai",
"rules": "Regole",
"accounts": "Conti",
"categories": "Categorie",
"tags": "Etichette",
"object_groups_page_title": "Gruppi",
"reports": "Resoconti",
"webhooks": "Webhook",
"currencies": "Valute",
"administration": "Amministrazione",
"profile": "Profilo",
"source_account": "Conto di origine",
"destination_account": "Conto destinazione",
"amount": "Importo",
"date": "Data",
"time": "Ora",
"preferences": "Preferenze",
"transactions": "Transazioni",
"balance": "Saldo",
"budgets": "Budget",
"subscriptions": "Abbonamenti",
"welcome_back": "La tua situazione finanziaria",
"bills_to_pay": "Bollette da pagare",
"net_worth": "Patrimonio",
"pref_last365": "Anno scorso",
"pref_last90": "Ultimi 90 giorni",
"pref_last30": "Ultimi 30 giorni",
"pref_last7": "Ultimi 7 giorni",
"pref_YTD": "Ultimo anno",
"pref_QTD": "Ultimo trimestre",
"pref_MTD": "Ultimo mese"
}
"config": {
"html_language": "it",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "Nome",
"amount_min": "Importo minimo",
"amount_max": "Importo massimo",
"url": "URL",
"title": "Titolo",
"first_date": "Prima volta",
"repetitions": "Ripetizioni",
"description": "Descrizione",
"iban": "IBAN",
"skip": "Salta ogni",
"date": "Data"
},
"list": {
"name": "Nome",
"account_number": "Numero conto",
"currentBalance": "Saldo corrente",
"lastActivity": "Ultima attivit\u00e0",
"active": "Attivo"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budget",
"subscriptions": "Abbonamenti",
"transactions": "Transazioni",
"title_expenses": "Uscite",
"title_withdrawal": "Prelievi",
"title_revenue": "Redditi \/ entrate",
"title_deposit": "Versamenti",
"title_transfer": "Trasferimenti",
"title_transfers": "Trasferimenti",
"asset_accounts": "Conti attivit\u00e0",
"expense_accounts": "Conti uscite",
"revenue_accounts": "Conti entrate",
"liabilities_accounts": "Passivit\u00e0"
},
"firefly": {
"actions": "Azioni",
"edit": "Modifica",
"delete": "Elimina",
"reconcile": "Riconcilia",
"create_new_asset": "Crea un nuovo conto attivit\u00e0",
"confirm_action": "Conferma azione",
"new_budget": "Nuovo budget",
"new_asset_account": "Nuovo conto attivit\u00e0",
"newTransfer": "Nuovo trasferimento",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Nuova entrata",
"newWithdrawal": "Nuova uscita",
"bills_paid": "Bollette pagate",
"left_to_spend": "Altro da spendere",
"no_budget": "(nessun budget)",
"budgeted": "Preventivato",
"spent": "Speso",
"no_bill": "(nessuna bolletta)",
"rule_trigger_source_account_starts_choice": "Il nome del conto di origine inizia con..",
"rule_trigger_source_account_ends_choice": "Il nome del conto di origine termina con..",
"rule_trigger_source_account_is_choice": "Il nome del conto di origine \u00e8..",
"rule_trigger_source_account_contains_choice": "Il nome del conto di origine contiene...",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "L'ID del conto di origine \u00e8 esattamente...",
"rule_trigger_destination_account_id_choice": "L'ID del conto di destinazione \u00e8 esattamente...",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Il conte di origine \u00e8 un conto (in contanti)",
"rule_trigger_destination_is_cash_choice": "Il conto destinazione \u00e8 un conto (in contanti)",
"rule_trigger_source_account_nr_starts_choice": "Il numero del conto di origine \/ l'IBAN inizia con...",
"rule_trigger_source_account_nr_ends_choice": "Il numero del conto di origine \/ l'IBAN termina con...",
"rule_trigger_source_account_nr_is_choice": "Il numero del conto di origine \/ l'IBAN \u00e8...",
"rule_trigger_source_account_nr_contains_choice": "Il numero del conto di origine \/ l'IBAN contiene...",
"rule_trigger_destination_account_starts_choice": "Il nome del conto di destinazione inizia con...",
"rule_trigger_destination_account_ends_choice": "Il nome del conto di destinazione termina con...",
"rule_trigger_destination_account_is_choice": "Il nome del conto di destinazione \u00e8..",
"rule_trigger_destination_account_contains_choice": "Il nome del conto di destinazione contiene..",
"rule_trigger_destination_account_nr_starts_choice": "Il numero del conto di destinazione \/ l'IBAN inizia con..",
"rule_trigger_destination_account_nr_ends_choice": "Il numero del conto di destinazione \/ l'IBAN termina con..",
"rule_trigger_destination_account_nr_is_choice": "Il numero del conto di destinazione \/ l'IBAN \u00e8..",
"rule_trigger_destination_account_nr_contains_choice": "Il numero del conto di destinazione \/ l'IBAN contiene..",
"rule_trigger_transaction_type_choice": "La transazione \u00e8 di tipo...",
"rule_trigger_category_is_choice": "La categoria \u00e8...",
"rule_trigger_amount_less_choice": "L'importo \u00e8 inferiore a...",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "L'importo \u00e8 pi\u00f9 di...",
"rule_trigger_description_starts_choice": "La descrizione inizia con...",
"rule_trigger_description_ends_choice": "La descrizione termina con...",
"rule_trigger_description_contains_choice": "La descrizione contiene...",
"rule_trigger_description_is_choice": "La descrizione \u00e8...",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "La data della transazione \u00e8 antecedente al...",
"rule_trigger_date_after_choice": "La data della transazione \u00e8 successiva al...",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Il budget \u00e8...",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "La valuta della transazione \u00e8...",
"rule_trigger_foreign_currency_is_choice": "La valuta estera della transazione \u00e8...",
"rule_trigger_has_attachments_choice": "Ha almeno cos\u00ec tanti allegati",
"rule_trigger_has_no_category_choice": "Non ha categoria",
"rule_trigger_has_any_category_choice": "Ha una (qualsiasi) categoria",
"rule_trigger_has_no_budget_choice": "Non ha un budget",
"rule_trigger_has_any_budget_choice": "Ha un (qualsiasi) budget",
"rule_trigger_has_no_bill_choice": "Non ha bollette",
"rule_trigger_has_any_bill_choice": "Ha una (qualsiasi) bolletta",
"rule_trigger_has_no_tag_choice": "Non ha etichette",
"rule_trigger_has_any_tag_choice": "Ha una o pi\u00f9 etichette (qualsiasi)",
"rule_trigger_any_notes_choice": "Ha una (qualsiasi) nota",
"rule_trigger_no_notes_choice": "Non ha note",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "La bollett\u00e0 \u00e8...",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "L'ID journal della transazione \u00e8...",
"rule_trigger_any_external_url_choice": "La transazione ha un URL esterno",
"rule_trigger_no_external_url_choice": "La transazione non ha URL esterno",
"rule_trigger_id_choice": "L'ID della transazione \u00e8...",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Rimuovi da tutte le categorie",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Rimuovi da tutti i budget",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Rimuovi tutte le etichette",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Rimuovi tutte le note",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Converti la transazione in un deposito",
"rule_action_convert_withdrawal_choice": "Converti la transazione in un prelievo",
"rule_action_convert_transfer_choice": "Converti la transazione in un trasferimento",
"placeholder": "[Placeholder]",
"recurrences": "Transazioni ricorrenti",
"title_expenses": "Spese",
"title_withdrawal": "Spese",
"title_revenue": "Entrate",
"pref_1D": "Un giorno",
"pref_1W": "Una settimana",
"pref_1M": "Un mese",
"pref_3M": "Tre mesi (trimestre)",
"pref_6M": "Sei mesi",
"pref_1Y": "Un anno",
"repeat_freq_yearly": "annualmente",
"repeat_freq_half-year": "semestralmente",
"repeat_freq_quarterly": "trimestralmente",
"repeat_freq_monthly": "mensilmente",
"repeat_freq_weekly": "settimanalmente",
"single_split": "Divisione",
"asset_accounts": "Conti attivit\u00e0",
"expense_accounts": "Conti uscite",
"liabilities_accounts": "Passivit\u00e0",
"undefined_accounts": "Conti",
"name": "Nome",
"revenue_accounts": "Conti entrate",
"description": "Descrizione",
"category": "Categoria",
"title_deposit": "Redditi \/ entrate",
"title_transfer": "Trasferimenti",
"title_transfers": "Trasferimenti",
"piggyBanks": "Salvadanai",
"rules": "Regole",
"accounts": "Conti",
"categories": "Categorie",
"tags": "Etichette",
"object_groups_page_title": "Gruppi",
"reports": "Resoconti",
"webhooks": "Webhook",
"currencies": "Valute",
"administration": "Amministrazione",
"profile": "Profilo",
"source_account": "Conto di origine",
"destination_account": "Conto destinazione",
"amount": "Importo",
"date": "Data",
"time": "Ora",
"preferences": "Preferenze",
"transactions": "Transazioni",
"balance": "Saldo",
"budgets": "Budget",
"subscriptions": "Abbonamenti",
"welcome_back": "La tua situazione finanziaria",
"bills_to_pay": "Bollette da pagare",
"net_worth": "Patrimonio",
"pref_last365": "Anno scorso",
"pref_last90": "Ultimi 90 giorni",
"pref_last30": "Ultimi 30 giorni",
"pref_last7": "Ultimi 7 giorni",
"pref_YTD": "Ultimo anno",
"pref_QTD": "Ultimo trimestre",
"pref_MTD": "Ultimo mese"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "ja",
"month_and_day_fns": "y\u5e74 MMMM d\u65e5"
},
"form": {
"name": "\u540d\u79f0",
"amount_min": "\u6700\u4f4e\u984d",
"amount_max": "\u4e0a\u9650\u984d",
"url": "URL",
"title": "\u30bf\u30a4\u30c8\u30eb",
"first_date": "\u6700\u521d\u306e\u65e5\u4ed8",
"repetitions": "\u30ea\u30d4\u30fc\u30c8",
"description": "\u8aac\u660e",
"iban": "IBAN",
"skip": "\u30b9\u30ad\u30c3\u30d7",
"date": "\u65e5\u4ed8"
},
"list": {
"name": "\u540d\u79f0",
"account_number": "\u53e3\u5ea7\u756a\u53f7",
"currentBalance": "\u73fe\u5728\u306e\u6b8b\u9ad8",
"lastActivity": "\u6700\u7d42\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3",
"active": "\u6709\u52b9"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "\u4e88\u7b97",
"subscriptions": "Subscriptions",
"transactions": "\u53d6\u5f15",
"title_expenses": "\u652f\u51fa",
"title_withdrawal": "\u652f\u51fa",
"title_revenue": "\u53ce\u76ca \/ \u53ce\u5165",
"title_deposit": "\u53ce\u76ca \/ \u53ce\u5165",
"title_transfer": "\u9001\u91d1",
"title_transfers": "\u9001\u91d1",
"asset_accounts": "\u8cc7\u7523\u53e3\u5ea7",
"expense_accounts": "\u652f\u51fa\u53e3\u5ea7",
"revenue_accounts": "\u53ce\u5165\u53e3\u5ea7",
"liabilities_accounts": "\u8ca0\u50b5"
},
"firefly": {
"actions": "\u64cd\u4f5c",
"edit": "\u7de8\u96c6",
"delete": "\u524a\u9664",
"reconcile": "\u7167\u5408",
"create_new_asset": "\u65b0\u3057\u3044\u8cc7\u7523\u53e3\u5ea7\u3092\u4f5c\u6210",
"confirm_action": "\u64cd\u4f5c\u3092\u78ba\u8a8d",
"new_budget": "\u65b0\u3057\u3044\u4e88\u7b97",
"new_asset_account": "\u65b0\u3057\u3044\u8cc7\u7523\u53e3\u5ea7",
"newTransfer": "\u65b0\u3057\u3044\u9001\u91d1",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "\u65b0\u3057\u3044\u5165\u91d1",
"newWithdrawal": "\u65b0\u3057\u3044\u652f\u51fa",
"bills_paid": "\u652f\u6255\u3044\u6e08\u307f\u8acb\u6c42",
"left_to_spend": "\u652f\u51fa\u3067\u304d\u308b\u6b8b\u308a",
"no_budget": "(\u4e88\u7b97\u306a\u3057)",
"budgeted": "\u8a08\u4e0a\u4e88\u7b97",
"spent": "\u652f\u51fa",
"no_bill": "(\u8acb\u6c42\u306a\u3057)",
"rule_trigger_source_account_starts_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u540d\u304c...\u3067\u59cb\u307e\u308b",
"rule_trigger_source_account_ends_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u540d\u304c\u2026\u3067\u7d42\u308f\u308b",
"rule_trigger_source_account_is_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u540d\u304c...",
"rule_trigger_source_account_contains_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u540d\u304c\u2026\u3092\u542b\u3080",
"rule_trigger_account_id_choice": "\u3069\u3061\u3089\u304b\u306e\u53e3\u5ea7ID\u304c\u2026",
"rule_trigger_source_account_id_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7ID\u304c\u2026",
"rule_trigger_destination_account_id_choice": "\u9001\u91d1\u5148\u53e3\u5ea7ID\u304c\u2026",
"rule_trigger_account_is_cash_choice": "\u3069\u3061\u3089\u304b\u306e\u53e3\u5ea7\u304c\u73fe\u91d1",
"rule_trigger_source_is_cash_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u304c\u73fe\u91d1\u53e3\u5ea7",
"rule_trigger_destination_is_cash_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u304c\u73fe\u91d1\u53e3\u5ea7",
"rule_trigger_source_account_nr_starts_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u756a\u53f7\/IBAN\u304c\u2026\u3067\u59cb\u307e\u308b",
"rule_trigger_source_account_nr_ends_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u756a\u53f7\/IBAN\u304c\u2026\u3067\u7d42\u308f\u308b",
"rule_trigger_source_account_nr_is_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u756a\u53f7\/IBAN\u304c\u2026",
"rule_trigger_source_account_nr_contains_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u756a\u53f7\/IBAN\u304c\u2026\u3092\u542b\u3080",
"rule_trigger_destination_account_starts_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u540d\u304c\u6b21\u3067\u59cb\u307e\u308b",
"rule_trigger_destination_account_ends_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u540d\u304c\u6b21\u3067\u7d42\u308f\u308b",
"rule_trigger_destination_account_is_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u540d\u304c\u2026",
"rule_trigger_destination_account_contains_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u540d\u304c\u6b21\u3092\u542b\u3080",
"rule_trigger_destination_account_nr_starts_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u756a\u53f7\/IBAN\u304c\u6b21\u3067\u59cb\u307e\u308b",
"rule_trigger_destination_account_nr_ends_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u756a\u53f7\uff08IBAN\uff09\u304c\u6b21\u3067\u7d42\u308f\u308b",
"rule_trigger_destination_account_nr_is_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u756a\u53f7\/IBAN\u304c\u2026",
"rule_trigger_destination_account_nr_contains_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u756a\u53f7\/IBAN\u304c\u6b21\u3092\u542b\u3080",
"rule_trigger_transaction_type_choice": "\u53d6\u5f15\u7a2e\u5225\u304c\u2026",
"rule_trigger_category_is_choice": "\u30ab\u30c6\u30b4\u30ea\u304c\u2026",
"rule_trigger_amount_less_choice": "\u91d1\u984d\u304c\u2026\u3088\u308a\u5c0f\u3055\u3044",
"rule_trigger_amount_is_choice": "\u91d1\u984d\u304c\u2026",
"rule_trigger_amount_more_choice": "\u91d1\u984d\u304c\u2026\u3088\u308a\u5927\u304d\u3044",
"rule_trigger_description_starts_choice": "\u8aac\u660e\u304c\u2026\u3067\u59cb\u307e\u308b",
"rule_trigger_description_ends_choice": "\u8aac\u660e\u304c\u2026\u3067\u7d42\u308f\u308b",
"rule_trigger_description_contains_choice": "\u8aac\u660e\u306b\u2026\u3092\u542b\u3080",
"rule_trigger_description_is_choice": "\u8aac\u660e\u304c\u2026",
"rule_trigger_date_on_choice": "\u53d6\u5f15\u65e5\u304c\u2026",
"rule_trigger_date_before_choice": "\u53d6\u5f15\u65e5\u304c\u2026\u3088\u308a\u524d",
"rule_trigger_date_after_choice": "\u53d6\u5f15\u65e5\u304c\u2026\u3088\u308a\u5f8c",
"rule_trigger_created_at_on_choice": "\u53d6\u5f15\u304c\u4f5c\u6210\u65e5\u304c",
"rule_trigger_updated_at_on_choice": "\u53d6\u5f15\u306e\u6700\u7d42\u7de8\u96c6\u65e5\u304c",
"rule_trigger_budget_is_choice": "\u4e88\u7b97\u304c\u2026",
"rule_trigger_tag_is_choice": "\u30bf\u30b0\u304c",
"rule_trigger_currency_is_choice": "\u53d6\u5f15\u901a\u8ca8\u304c\u2026",
"rule_trigger_foreign_currency_is_choice": "\u53d6\u5f15\u5916\u56fd\u901a\u8ca8\u304c\u2026",
"rule_trigger_has_attachments_choice": "\u6b21\u306e\u500b\u6570\u4ee5\u4e0a\u306e\u6dfb\u4ed8\u30d5\u30a1\u30a4\u30eb\u304c\u3042\u308b",
"rule_trigger_has_no_category_choice": "\u30ab\u30c6\u30b4\u30ea\u306a\u3057",
"rule_trigger_has_any_category_choice": "(\u4efb\u610f\u306e) \u30ab\u30c6\u30b4\u30ea\u304c\u3042\u308b",
"rule_trigger_has_no_budget_choice": "\u4e88\u7b97\u3092\u3082\u305f\u306a\u3044",
"rule_trigger_has_any_budget_choice": "\u4e88\u7b97\u304c\u3042\u308b\u53d6\u5f15",
"rule_trigger_has_no_bill_choice": "\u8acb\u6c42\u304c\u306a\u3044",
"rule_trigger_has_any_bill_choice": "\u8acb\u6c42\u304c\u3042\u308b",
"rule_trigger_has_no_tag_choice": "\u30bf\u30b0\u304c\u306a\u3044",
"rule_trigger_has_any_tag_choice": "\u4e00\u3064\u4ee5\u4e0a\u306e\u30bf\u30b0\u304c\u3042\u308b",
"rule_trigger_any_notes_choice": "\u5099\u8003\u304c\u3042\u308b",
"rule_trigger_no_notes_choice": "\u5099\u8003\u304c\u306a\u3044",
"rule_trigger_notes_is_choice": "\u5099\u8003\u304c",
"rule_trigger_notes_contains_choice": "\u5099\u8003\u304c\u6b21\u3092\u542b\u3080",
"rule_trigger_notes_starts_choice": "\u5099\u8003\u304c\u6b21\u3067\u59cb\u307e\u308b",
"rule_trigger_notes_ends_choice": "\u5099\u8003\u304c\u6b21\u3067\u7d42\u308f\u308b",
"rule_trigger_bill_is_choice": "\u8acb\u6c42\u304c\u2026",
"rule_trigger_external_id_is_choice": "\u5916\u90e8 ID \u304c\u2026",
"rule_trigger_internal_reference_is_choice": "\u5185\u90e8\u53c2\u7167\u304c\u2026",
"rule_trigger_journal_id_choice": "\u53d6\u5f15ID\u304c\u2026",
"rule_trigger_any_external_url_choice": "\u53d6\u5f15\u306b\u5916\u90e8 URL \u304c\u3042\u308b",
"rule_trigger_no_external_url_choice": "\u53d6\u5f15\u306b\u5916\u90e8 URL \u304c\u306a\u3044",
"rule_trigger_id_choice": "\u53d6\u5f15 ID \u304c\u2026",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "\u30ab\u30c6\u30b4\u30ea\u3092\u30af\u30ea\u30a2",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "\u4e88\u7b97\u3092\u30af\u30ea\u30a2",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "\u3059\u3079\u3066\u306e\u30bf\u30b0\u3092\u524a\u9664",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "\u5099\u8003\u3092\u524a\u9664",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "\u53d6\u5f15\u3092\u5165\u91d1\u306b\u5909\u63db",
"rule_action_convert_withdrawal_choice": "\u53d6\u5f15\u3092\u51fa\u91d1\u306b\u5909\u63db",
"rule_action_convert_transfer_choice": "\u53d6\u5f15\u3092\u9001\u91d1\u306b\u5909\u63db",
"placeholder": "[Placeholder]",
"recurrences": "\u5b9a\u671f\u7684\u306a\u53d6\u5f15",
"title_expenses": "\u652f\u51fa",
"title_withdrawal": "\u652f\u51fa",
"title_revenue": "\u53ce\u76ca \/ \u53ce\u5165",
"pref_1D": "1\u65e5",
"pref_1W": "YYYY\u5e74w[\u9031\u76ee]",
"pref_1M": "1\u30f5\u6708",
"pref_3M": "3\u30f6\u6708 (\u56db\u534a\u671f)",
"pref_6M": "6\u30f6\u6708",
"pref_1Y": "1\u5e74",
"repeat_freq_yearly": "\u6bce\u5e74",
"repeat_freq_half-year": "\u534a\u5e74\u3054\u3068",
"repeat_freq_quarterly": "\u56db\u534a\u671f\u3054\u3068",
"repeat_freq_monthly": "\u6bce\u6708",
"repeat_freq_weekly": "\u9031\u6bce",
"single_split": "\u5206\u5272",
"asset_accounts": "\u8cc7\u7523\u52d8\u5b9a",
"expense_accounts": "\u652f\u51fa\u53e3\u5ea7",
"liabilities_accounts": "\u50b5\u52d9",
"undefined_accounts": "\u53e3\u5ea7",
"name": "\u540d\u79f0",
"revenue_accounts": "\u53ce\u5165\u53e3\u5ea7",
"description": "\u8aac\u660e",
"category": "\u30ab\u30c6\u30b4\u30ea",
"title_deposit": "\u53ce\u76ca \/ \u53ce\u5165",
"title_transfer": "\u9001\u91d1",
"title_transfers": "\u9001\u91d1",
"piggyBanks": "\u8caf\u91d1\u7bb1",
"rules": "\u30eb\u30fc\u30eb",
"accounts": "\u53e3\u5ea7",
"categories": "\u30ab\u30c6\u30b4\u30ea",
"tags": "\u30bf\u30b0",
"object_groups_page_title": "\u30b0\u30eb\u30fc\u30d7",
"reports": "\u30ec\u30dd\u30fc\u30c8",
"webhooks": "Webhooks",
"currencies": "\u901a\u8ca8",
"administration": "\u7ba1\u7406",
"profile": "\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb",
"source_account": "\u652f\u51fa\u5143\u53e3\u5ea7",
"destination_account": "\u9001\u91d1\u5148\u306e\u53e3\u5ea7",
"amount": "\u91d1\u984d",
"date": "\u65e5\u4ed8",
"time": "\u6642\u523b",
"preferences": "\u8a2d\u5b9a",
"transactions": "\u53d6\u5f15",
"balance": "\u53ce\u652f",
"budgets": "\u4e88\u7b97",
"subscriptions": "\u8b1b\u8aad",
"welcome_back": "\u6982\u8981",
"bills_to_pay": "\u8acb\u6c42\u66f8",
"net_worth": "\u7d14\u8cc7\u7523",
"pref_last365": "\u6628\u5e74",
"pref_last90": "\u904e\u53bb 90 \u65e5\u9593",
"pref_last30": "\u904e\u53bb 30 \u65e5\u9593",
"pref_last7": "\u904e\u53bb 7 \u65e5\u9593",
"pref_YTD": "\u5e74\u59cb\u304b\u3089\u4eca\u65e5\u307e\u3067",
"pref_QTD": "\u4eca\u56db\u534a\u671f",
"pref_MTD": "\u4eca\u6708"
}
"config": {
"html_language": "ja",
"month_and_day_fns": "y\u5e74 MMMM d\u65e5"
},
"form": {
"name": "\u540d\u79f0",
"amount_min": "\u6700\u4f4e\u984d",
"amount_max": "\u4e0a\u9650\u984d",
"url": "URL",
"title": "\u30bf\u30a4\u30c8\u30eb",
"first_date": "\u6700\u521d\u306e\u65e5\u4ed8",
"repetitions": "\u30ea\u30d4\u30fc\u30c8",
"description": "\u8aac\u660e",
"iban": "IBAN",
"skip": "\u30b9\u30ad\u30c3\u30d7",
"date": "\u65e5\u4ed8"
},
"list": {
"name": "\u540d\u79f0",
"account_number": "\u53e3\u5ea7\u756a\u53f7",
"currentBalance": "\u73fe\u5728\u306e\u6b8b\u9ad8",
"lastActivity": "\u6700\u7d42\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3",
"active": "\u6709\u52b9"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "\u4e88\u7b97",
"subscriptions": "Subscriptions",
"transactions": "\u53d6\u5f15",
"title_expenses": "\u652f\u51fa",
"title_withdrawal": "\u652f\u51fa",
"title_revenue": "\u53ce\u76ca \/ \u53ce\u5165",
"title_deposit": "\u53ce\u76ca \/ \u53ce\u5165",
"title_transfer": "\u9001\u91d1",
"title_transfers": "\u9001\u91d1",
"asset_accounts": "\u8cc7\u7523\u53e3\u5ea7",
"expense_accounts": "\u652f\u51fa\u53e3\u5ea7",
"revenue_accounts": "\u53ce\u5165\u53e3\u5ea7",
"liabilities_accounts": "\u8ca0\u50b5"
},
"firefly": {
"actions": "\u64cd\u4f5c",
"edit": "\u7de8\u96c6",
"delete": "\u524a\u9664",
"reconcile": "\u7167\u5408",
"create_new_asset": "\u65b0\u3057\u3044\u8cc7\u7523\u53e3\u5ea7\u3092\u4f5c\u6210",
"confirm_action": "\u64cd\u4f5c\u3092\u78ba\u8a8d",
"new_budget": "\u65b0\u3057\u3044\u4e88\u7b97",
"new_asset_account": "\u65b0\u3057\u3044\u8cc7\u7523\u53e3\u5ea7",
"newTransfer": "\u65b0\u3057\u3044\u9001\u91d1",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "\u65b0\u3057\u3044\u5165\u91d1",
"newWithdrawal": "\u65b0\u3057\u3044\u652f\u51fa",
"bills_paid": "\u652f\u6255\u3044\u6e08\u307f\u8acb\u6c42",
"left_to_spend": "\u652f\u51fa\u3067\u304d\u308b\u6b8b\u308a",
"no_budget": "(\u4e88\u7b97\u306a\u3057)",
"budgeted": "\u8a08\u4e0a\u4e88\u7b97",
"spent": "\u652f\u51fa",
"no_bill": "(\u8acb\u6c42\u306a\u3057)",
"rule_trigger_source_account_starts_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u540d\u304c...\u3067\u59cb\u307e\u308b",
"rule_trigger_source_account_ends_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u540d\u304c\u2026\u3067\u7d42\u308f\u308b",
"rule_trigger_source_account_is_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u540d\u304c...",
"rule_trigger_source_account_contains_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u540d\u304c\u2026\u3092\u542b\u3080",
"rule_trigger_account_id_choice": "\u3069\u3061\u3089\u304b\u306e\u53e3\u5ea7ID\u304c\u2026",
"rule_trigger_source_account_id_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7ID\u304c\u2026",
"rule_trigger_destination_account_id_choice": "\u9001\u91d1\u5148\u53e3\u5ea7ID\u304c\u2026",
"rule_trigger_account_is_cash_choice": "\u3069\u3061\u3089\u304b\u306e\u53e3\u5ea7\u304c\u73fe\u91d1",
"rule_trigger_source_is_cash_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u304c\u73fe\u91d1\u53e3\u5ea7",
"rule_trigger_destination_is_cash_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u304c\u73fe\u91d1\u53e3\u5ea7",
"rule_trigger_source_account_nr_starts_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u756a\u53f7\/IBAN\u304c\u2026\u3067\u59cb\u307e\u308b",
"rule_trigger_source_account_nr_ends_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u756a\u53f7\/IBAN\u304c\u2026\u3067\u7d42\u308f\u308b",
"rule_trigger_source_account_nr_is_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u756a\u53f7\/IBAN\u304c\u2026",
"rule_trigger_source_account_nr_contains_choice": "\u51fa\u91d1\u5143\u53e3\u5ea7\u756a\u53f7\/IBAN\u304c\u2026\u3092\u542b\u3080",
"rule_trigger_destination_account_starts_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u540d\u304c\u6b21\u3067\u59cb\u307e\u308b",
"rule_trigger_destination_account_ends_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u540d\u304c\u6b21\u3067\u7d42\u308f\u308b",
"rule_trigger_destination_account_is_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u540d\u304c\u2026",
"rule_trigger_destination_account_contains_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u540d\u304c\u6b21\u3092\u542b\u3080",
"rule_trigger_destination_account_nr_starts_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u756a\u53f7\/IBAN\u304c\u6b21\u3067\u59cb\u307e\u308b",
"rule_trigger_destination_account_nr_ends_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u756a\u53f7\uff08IBAN\uff09\u304c\u6b21\u3067\u7d42\u308f\u308b",
"rule_trigger_destination_account_nr_is_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u756a\u53f7\/IBAN\u304c\u2026",
"rule_trigger_destination_account_nr_contains_choice": "\u9001\u91d1\u5148\u53e3\u5ea7\u756a\u53f7\/IBAN\u304c\u6b21\u3092\u542b\u3080",
"rule_trigger_transaction_type_choice": "\u53d6\u5f15\u7a2e\u5225\u304c\u2026",
"rule_trigger_category_is_choice": "\u30ab\u30c6\u30b4\u30ea\u304c\u2026",
"rule_trigger_amount_less_choice": "\u91d1\u984d\u304c\u2026\u3088\u308a\u5c0f\u3055\u3044",
"rule_trigger_amount_is_choice": "\u91d1\u984d\u304c\u2026",
"rule_trigger_amount_more_choice": "\u91d1\u984d\u304c\u2026\u3088\u308a\u5927\u304d\u3044",
"rule_trigger_description_starts_choice": "\u8aac\u660e\u304c\u2026\u3067\u59cb\u307e\u308b",
"rule_trigger_description_ends_choice": "\u8aac\u660e\u304c\u2026\u3067\u7d42\u308f\u308b",
"rule_trigger_description_contains_choice": "\u8aac\u660e\u306b\u2026\u3092\u542b\u3080",
"rule_trigger_description_is_choice": "\u8aac\u660e\u304c\u2026",
"rule_trigger_date_on_choice": "\u53d6\u5f15\u65e5\u304c\u2026",
"rule_trigger_date_before_choice": "\u53d6\u5f15\u65e5\u304c\u2026\u3088\u308a\u524d",
"rule_trigger_date_after_choice": "\u53d6\u5f15\u65e5\u304c\u2026\u3088\u308a\u5f8c",
"rule_trigger_created_at_on_choice": "\u53d6\u5f15\u304c\u4f5c\u6210\u65e5\u304c",
"rule_trigger_updated_at_on_choice": "\u53d6\u5f15\u306e\u6700\u7d42\u7de8\u96c6\u65e5\u304c",
"rule_trigger_budget_is_choice": "\u4e88\u7b97\u304c\u2026",
"rule_trigger_tag_is_choice": "\u30bf\u30b0\u304c",
"rule_trigger_currency_is_choice": "\u53d6\u5f15\u901a\u8ca8\u304c\u2026",
"rule_trigger_foreign_currency_is_choice": "\u53d6\u5f15\u5916\u56fd\u901a\u8ca8\u304c\u2026",
"rule_trigger_has_attachments_choice": "\u6b21\u306e\u500b\u6570\u4ee5\u4e0a\u306e\u6dfb\u4ed8\u30d5\u30a1\u30a4\u30eb\u304c\u3042\u308b",
"rule_trigger_has_no_category_choice": "\u30ab\u30c6\u30b4\u30ea\u306a\u3057",
"rule_trigger_has_any_category_choice": "(\u4efb\u610f\u306e) \u30ab\u30c6\u30b4\u30ea\u304c\u3042\u308b",
"rule_trigger_has_no_budget_choice": "\u4e88\u7b97\u3092\u3082\u305f\u306a\u3044",
"rule_trigger_has_any_budget_choice": "\u4e88\u7b97\u304c\u3042\u308b\u53d6\u5f15",
"rule_trigger_has_no_bill_choice": "\u8acb\u6c42\u304c\u306a\u3044",
"rule_trigger_has_any_bill_choice": "\u8acb\u6c42\u304c\u3042\u308b",
"rule_trigger_has_no_tag_choice": "\u30bf\u30b0\u304c\u306a\u3044",
"rule_trigger_has_any_tag_choice": "\u4e00\u3064\u4ee5\u4e0a\u306e\u30bf\u30b0\u304c\u3042\u308b",
"rule_trigger_any_notes_choice": "\u5099\u8003\u304c\u3042\u308b",
"rule_trigger_no_notes_choice": "\u5099\u8003\u304c\u306a\u3044",
"rule_trigger_notes_is_choice": "\u5099\u8003\u304c",
"rule_trigger_notes_contains_choice": "\u5099\u8003\u304c\u6b21\u3092\u542b\u3080",
"rule_trigger_notes_starts_choice": "\u5099\u8003\u304c\u6b21\u3067\u59cb\u307e\u308b",
"rule_trigger_notes_ends_choice": "\u5099\u8003\u304c\u6b21\u3067\u7d42\u308f\u308b",
"rule_trigger_bill_is_choice": "\u8acb\u6c42\u304c\u2026",
"rule_trigger_external_id_is_choice": "\u5916\u90e8 ID \u304c\u2026",
"rule_trigger_internal_reference_is_choice": "\u5185\u90e8\u53c2\u7167\u304c\u2026",
"rule_trigger_journal_id_choice": "\u53d6\u5f15ID\u304c\u2026",
"rule_trigger_any_external_url_choice": "\u53d6\u5f15\u306b\u5916\u90e8 URL \u304c\u3042\u308b",
"rule_trigger_no_external_url_choice": "\u53d6\u5f15\u306b\u5916\u90e8 URL \u304c\u306a\u3044",
"rule_trigger_id_choice": "\u53d6\u5f15 ID \u304c\u2026",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "\u30ab\u30c6\u30b4\u30ea\u3092\u30af\u30ea\u30a2",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "\u4e88\u7b97\u3092\u30af\u30ea\u30a2",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "\u3059\u3079\u3066\u306e\u30bf\u30b0\u3092\u524a\u9664",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "\u5099\u8003\u3092\u524a\u9664",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "\u53d6\u5f15\u3092\u5165\u91d1\u306b\u5909\u63db",
"rule_action_convert_withdrawal_choice": "\u53d6\u5f15\u3092\u51fa\u91d1\u306b\u5909\u63db",
"rule_action_convert_transfer_choice": "\u53d6\u5f15\u3092\u9001\u91d1\u306b\u5909\u63db",
"placeholder": "[Placeholder]",
"recurrences": "\u5b9a\u671f\u7684\u306a\u53d6\u5f15",
"title_expenses": "\u652f\u51fa",
"title_withdrawal": "\u652f\u51fa",
"title_revenue": "\u53ce\u76ca \/ \u53ce\u5165",
"pref_1D": "1\u65e5",
"pref_1W": "YYYY\u5e74w[\u9031\u76ee]",
"pref_1M": "1\u30f5\u6708",
"pref_3M": "3\u30f6\u6708 (\u56db\u534a\u671f)",
"pref_6M": "6\u30f6\u6708",
"pref_1Y": "1\u5e74",
"repeat_freq_yearly": "\u6bce\u5e74",
"repeat_freq_half-year": "\u534a\u5e74\u3054\u3068",
"repeat_freq_quarterly": "\u56db\u534a\u671f\u3054\u3068",
"repeat_freq_monthly": "\u6bce\u6708",
"repeat_freq_weekly": "\u9031\u6bce",
"single_split": "\u5206\u5272",
"asset_accounts": "\u8cc7\u7523\u52d8\u5b9a",
"expense_accounts": "\u652f\u51fa\u53e3\u5ea7",
"liabilities_accounts": "\u50b5\u52d9",
"undefined_accounts": "\u53e3\u5ea7",
"name": "\u540d\u79f0",
"revenue_accounts": "\u53ce\u5165\u53e3\u5ea7",
"description": "\u8aac\u660e",
"category": "\u30ab\u30c6\u30b4\u30ea",
"title_deposit": "\u53ce\u76ca \/ \u53ce\u5165",
"title_transfer": "\u9001\u91d1",
"title_transfers": "\u9001\u91d1",
"piggyBanks": "\u8caf\u91d1\u7bb1",
"rules": "\u30eb\u30fc\u30eb",
"accounts": "\u53e3\u5ea7",
"categories": "\u30ab\u30c6\u30b4\u30ea",
"tags": "\u30bf\u30b0",
"object_groups_page_title": "\u30b0\u30eb\u30fc\u30d7",
"reports": "\u30ec\u30dd\u30fc\u30c8",
"webhooks": "Webhooks",
"currencies": "\u901a\u8ca8",
"administration": "\u7ba1\u7406",
"profile": "\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb",
"source_account": "\u652f\u51fa\u5143\u53e3\u5ea7",
"destination_account": "\u9001\u91d1\u5148\u306e\u53e3\u5ea7",
"amount": "\u91d1\u984d",
"date": "\u65e5\u4ed8",
"time": "\u6642\u523b",
"preferences": "\u8a2d\u5b9a",
"transactions": "\u53d6\u5f15",
"balance": "\u53ce\u652f",
"budgets": "\u4e88\u7b97",
"subscriptions": "\u8b1b\u8aad",
"welcome_back": "\u6982\u8981",
"bills_to_pay": "\u8acb\u6c42\u66f8",
"net_worth": "\u7d14\u8cc7\u7523",
"pref_last365": "\u6628\u5e74",
"pref_last90": "\u904e\u53bb 90 \u65e5\u9593",
"pref_last30": "\u904e\u53bb 30 \u65e5\u9593",
"pref_last7": "\u904e\u53bb 7 \u65e5\u9593",
"pref_YTD": "\u5e74\u59cb\u304b\u3089\u4eca\u65e5\u307e\u3067",
"pref_QTD": "\u4eca\u56db\u534a\u671f",
"pref_MTD": "\u4eca\u6708"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "nb",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "Navn",
"amount_min": "Minimumsbel\u00f8p",
"amount_max": "Maksimumsbel\u00f8p",
"url": "URL",
"title": "Tittel",
"first_date": "F\u00f8rste dato",
"repetitions": "Repetisjoner",
"description": "Beskrivelse",
"iban": "IBAN",
"skip": "Hopp over",
"date": "Dato"
},
"list": {
"name": "Navn",
"account_number": "Kontonummer",
"currentBalance": "N\u00e5v\u00e6rende saldo",
"lastActivity": "Siste aktivitet",
"active": "Er aktiv?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budsjetter",
"subscriptions": "Abonnementer",
"transactions": "Transaksjoner",
"title_expenses": "Utgifter",
"title_withdrawal": "Utgifter",
"title_revenue": "Inntekt",
"title_deposit": "Inntekt",
"title_transfer": "Overf\u00f8ringer",
"title_transfers": "Overf\u00f8ringer",
"asset_accounts": "Aktivakonto",
"expense_accounts": "Utgiftskonto",
"revenue_accounts": "Inntektskontoer",
"liabilities_accounts": "Gjeld"
},
"firefly": {
"actions": "Handlinger",
"edit": "Rediger",
"delete": "Slett",
"reconcile": "Reconcile",
"create_new_asset": "Opprett ny aktivakonto",
"confirm_action": "Bekreft handling",
"new_budget": "Nytt budsjett",
"new_asset_account": "Ny aktivakonto",
"newTransfer": "Ny overf\u00f8ring",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Nytt innskudd",
"newWithdrawal": "Ny utgift",
"bills_paid": "Regninger betalt",
"left_to_spend": "Igjen \u00e5 bruke",
"no_budget": "(ingen budsjett)",
"budgeted": "Budsjettert",
"spent": "Brukt",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Kildekonto navn starter med..",
"rule_trigger_source_account_ends_choice": "Kildenavnet slutter med..",
"rule_trigger_source_account_is_choice": "Kildekonto navn er..",
"rule_trigger_source_account_contains_choice": "Kildekonto navn inneholder..",
"rule_trigger_account_id_choice": "En av konto ID'er, er n\u00f8yaktig.",
"rule_trigger_source_account_id_choice": "Kildekonto-ID er n\u00f8yaktig..",
"rule_trigger_destination_account_id_choice": "M\u00e5lkonto ID er n\u00f8yaktig..",
"rule_trigger_account_is_cash_choice": "En av konto er kontant",
"rule_trigger_source_is_cash_choice": "Kildekonto er (kontant) konto",
"rule_trigger_destination_is_cash_choice": "M\u00e5lkonto er (kontant) konto",
"rule_trigger_source_account_nr_starts_choice": "Kildekontonummer \/ IBAN starter med..",
"rule_trigger_source_account_nr_ends_choice": "Kildekontonummer \/ IBAN slutter med..",
"rule_trigger_source_account_nr_is_choice": "Kildekontonummer \/ IBAN er..",
"rule_trigger_source_account_nr_contains_choice": "Kilde kontonummer \/ IBAN inneholder..",
"rule_trigger_destination_account_starts_choice": "M\u00e5lkontonavnet begynner med..",
"rule_trigger_destination_account_ends_choice": "M\u00e5lkontonavnet slutter med..",
"rule_trigger_destination_account_is_choice": "M\u00e5lkonto navn slutter med..",
"rule_trigger_destination_account_contains_choice": "M\u00e5lkontonavn inneholder..",
"rule_trigger_destination_account_nr_starts_choice": "M\u00e5lkontonummer \/ IBAN starter med..",
"rule_trigger_destination_account_nr_ends_choice": "M\u00e5lkontonummer \/ IBAN slutter med..",
"rule_trigger_destination_account_nr_is_choice": "M\u00e5lkontonummer \/ IBAN er..",
"rule_trigger_destination_account_nr_contains_choice": "M\u00e5lkontonummer \/ IBAN inneholder..",
"rule_trigger_transaction_type_choice": "Transaksjonen er av typen..",
"rule_trigger_category_is_choice": "Kategori er..",
"rule_trigger_amount_less_choice": "Bel\u00f8pet er mindre enn..",
"rule_trigger_amount_is_choice": "Bel\u00f8pet er..",
"rule_trigger_amount_more_choice": "Bel\u00f8pet er mer enn..",
"rule_trigger_description_starts_choice": "Beskrivelse starter med..",
"rule_trigger_description_ends_choice": "Beskrivelse slutter med..",
"rule_trigger_description_contains_choice": "Beskrivelse inneholder..",
"rule_trigger_description_is_choice": "Beskrivelse er..",
"rule_trigger_date_on_choice": "Transaksjonsdato er..",
"rule_trigger_date_before_choice": "Transaksjons dato er f\u00f8r..",
"rule_trigger_date_after_choice": "Transaksjons dato er etter..",
"rule_trigger_created_at_on_choice": "Transaksjonen ble gjort p\u00e5..",
"rule_trigger_updated_at_on_choice": "Transaksjonen ble sist redigert den..",
"rule_trigger_budget_is_choice": "Budsjett er..",
"rule_trigger_tag_is_choice": "(En) tagg er..",
"rule_trigger_currency_is_choice": "Transaksjonsvaluta er..",
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
"rule_trigger_has_attachments_choice": "Har minst s\u00e5 mange vedlegg",
"rule_trigger_has_no_category_choice": "Har ingen kategori",
"rule_trigger_has_any_category_choice": "Har en (hvilken som helst) kategori",
"rule_trigger_has_no_budget_choice": "Har ingen budsjett",
"rule_trigger_has_any_budget_choice": "Har et (hvilket som helst) budsjett",
"rule_trigger_has_no_bill_choice": "Har ingen regning",
"rule_trigger_has_any_bill_choice": "Har en regning",
"rule_trigger_has_no_tag_choice": "Har ingen tagg(er)",
"rule_trigger_has_any_tag_choice": "Har en eller flere tagger",
"rule_trigger_any_notes_choice": "Har ett eller flere notater",
"rule_trigger_no_notes_choice": "Har ingen notater",
"rule_trigger_notes_is_choice": "Notater er..",
"rule_trigger_notes_contains_choice": "Notater inneholder..",
"rule_trigger_notes_starts_choice": "Notater begynner med..",
"rule_trigger_notes_ends_choice": "Notater som slutter med..",
"rule_trigger_bill_is_choice": "Regning er..",
"rule_trigger_external_id_is_choice": "Ekstern ID er..",
"rule_trigger_internal_reference_is_choice": "Intern referanse er..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaksjons-ID er",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "T\u00f8m alle kategorier",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "T\u00f8m alle budsjetter",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Fjern alle tagger",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Fjern notater",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Konverter transaksjonen til et innskudd",
"rule_action_convert_withdrawal_choice": "Konverter denne transaksjonen til et uttak",
"rule_action_convert_transfer_choice": "Konverter transaksjonen til en overf\u00f8ring",
"placeholder": "[Placeholder]",
"recurrences": "Gjentakende transaksjoner",
"title_expenses": "Utgifter",
"title_withdrawal": "Utgifter",
"title_revenue": "Inntekt",
"pref_1D": "\u00c9n dag",
"pref_1W": "\u00c9n uke",
"pref_1M": "En m\u00e5ned",
"pref_3M": "Tre m\u00e5neder (kvartal)",
"pref_6M": "Seks m\u00e5neder",
"pref_1Y": "Ett \u00e5r",
"repeat_freq_yearly": "\u00e5rlig",
"repeat_freq_half-year": "hvert halv\u00e5r",
"repeat_freq_quarterly": "kvartalsvis",
"repeat_freq_monthly": "m\u00e5nedlig",
"repeat_freq_weekly": "ukentlig",
"single_split": "Del opp",
"asset_accounts": "Aktivakontoer",
"expense_accounts": "Utgiftskontoer",
"liabilities_accounts": "Gjeld",
"undefined_accounts": "Accounts",
"name": "Navn",
"revenue_accounts": "Inntektskontoer",
"description": "Beskrivelse",
"category": "Kategori",
"title_deposit": "Inntekt",
"title_transfer": "Overf\u00f8ringer",
"title_transfers": "Overf\u00f8ringer",
"piggyBanks": "Sparegriser",
"rules": "Regler",
"accounts": "Kontoer",
"categories": "Kategorier",
"tags": "Tagger",
"object_groups_page_title": "Groups",
"reports": "Rapporter",
"webhooks": "Webhooks",
"currencies": "Valutaer",
"administration": "Administrasjon",
"profile": "Profil",
"source_account": "Kildekonto",
"destination_account": "Destinasjonskonto",
"amount": "Bel\u00f8p",
"date": "Dato",
"time": "Time",
"preferences": "Innstillinger",
"transactions": "Transaksjoner",
"balance": "Saldo",
"budgets": "Budsjetter",
"subscriptions": "Abonnementer",
"welcome_back": "Hvordan g\u00e5r det?",
"bills_to_pay": "Regninger \u00e5 betale",
"net_worth": "Formue",
"pref_last365": "I fjor",
"pref_last90": "Siste 90 dager",
"pref_last30": "Siste 30 dagene",
"pref_last7": "Siste 7 dager",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
"config": {
"html_language": "nb",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "Navn",
"amount_min": "Minimumsbel\u00f8p",
"amount_max": "Maksimumsbel\u00f8p",
"url": "URL",
"title": "Tittel",
"first_date": "F\u00f8rste dato",
"repetitions": "Repetisjoner",
"description": "Beskrivelse",
"iban": "IBAN",
"skip": "Hopp over",
"date": "Dato"
},
"list": {
"name": "Navn",
"account_number": "Kontonummer",
"currentBalance": "N\u00e5v\u00e6rende saldo",
"lastActivity": "Siste aktivitet",
"active": "Er aktiv?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budsjetter",
"subscriptions": "Abonnementer",
"transactions": "Transaksjoner",
"title_expenses": "Utgifter",
"title_withdrawal": "Utgifter",
"title_revenue": "Inntekt",
"title_deposit": "Inntekt",
"title_transfer": "Overf\u00f8ringer",
"title_transfers": "Overf\u00f8ringer",
"asset_accounts": "Aktivakonto",
"expense_accounts": "Utgiftskonto",
"revenue_accounts": "Inntektskontoer",
"liabilities_accounts": "Gjeld"
},
"firefly": {
"actions": "Handlinger",
"edit": "Rediger",
"delete": "Slett",
"reconcile": "Reconcile",
"create_new_asset": "Opprett ny aktivakonto",
"confirm_action": "Bekreft handling",
"new_budget": "Nytt budsjett",
"new_asset_account": "Ny aktivakonto",
"newTransfer": "Ny overf\u00f8ring",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Nytt innskudd",
"newWithdrawal": "Ny utgift",
"bills_paid": "Regninger betalt",
"left_to_spend": "Igjen \u00e5 bruke",
"no_budget": "(ingen budsjett)",
"budgeted": "Budsjettert",
"spent": "Brukt",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Kildekonto navn starter med..",
"rule_trigger_source_account_ends_choice": "Kildenavnet slutter med..",
"rule_trigger_source_account_is_choice": "Kildekonto navn er..",
"rule_trigger_source_account_contains_choice": "Kildekonto navn inneholder..",
"rule_trigger_account_id_choice": "En av konto ID'er, er n\u00f8yaktig.",
"rule_trigger_source_account_id_choice": "Kildekonto-ID er n\u00f8yaktig..",
"rule_trigger_destination_account_id_choice": "M\u00e5lkonto ID er n\u00f8yaktig..",
"rule_trigger_account_is_cash_choice": "En av konto er kontant",
"rule_trigger_source_is_cash_choice": "Kildekonto er (kontant) konto",
"rule_trigger_destination_is_cash_choice": "M\u00e5lkonto er (kontant) konto",
"rule_trigger_source_account_nr_starts_choice": "Kildekontonummer \/ IBAN starter med..",
"rule_trigger_source_account_nr_ends_choice": "Kildekontonummer \/ IBAN slutter med..",
"rule_trigger_source_account_nr_is_choice": "Kildekontonummer \/ IBAN er..",
"rule_trigger_source_account_nr_contains_choice": "Kilde kontonummer \/ IBAN inneholder..",
"rule_trigger_destination_account_starts_choice": "M\u00e5lkontonavnet begynner med..",
"rule_trigger_destination_account_ends_choice": "M\u00e5lkontonavnet slutter med..",
"rule_trigger_destination_account_is_choice": "M\u00e5lkonto navn slutter med..",
"rule_trigger_destination_account_contains_choice": "M\u00e5lkontonavn inneholder..",
"rule_trigger_destination_account_nr_starts_choice": "M\u00e5lkontonummer \/ IBAN starter med..",
"rule_trigger_destination_account_nr_ends_choice": "M\u00e5lkontonummer \/ IBAN slutter med..",
"rule_trigger_destination_account_nr_is_choice": "M\u00e5lkontonummer \/ IBAN er..",
"rule_trigger_destination_account_nr_contains_choice": "M\u00e5lkontonummer \/ IBAN inneholder..",
"rule_trigger_transaction_type_choice": "Transaksjonen er av typen..",
"rule_trigger_category_is_choice": "Kategori er..",
"rule_trigger_amount_less_choice": "Bel\u00f8pet er mindre enn..",
"rule_trigger_amount_is_choice": "Bel\u00f8pet er..",
"rule_trigger_amount_more_choice": "Bel\u00f8pet er mer enn..",
"rule_trigger_description_starts_choice": "Beskrivelse starter med..",
"rule_trigger_description_ends_choice": "Beskrivelse slutter med..",
"rule_trigger_description_contains_choice": "Beskrivelse inneholder..",
"rule_trigger_description_is_choice": "Beskrivelse er..",
"rule_trigger_date_on_choice": "Transaksjonsdato er..",
"rule_trigger_date_before_choice": "Transaksjons dato er f\u00f8r..",
"rule_trigger_date_after_choice": "Transaksjons dato er etter..",
"rule_trigger_created_at_on_choice": "Transaksjonen ble gjort p\u00e5..",
"rule_trigger_updated_at_on_choice": "Transaksjonen ble sist redigert den..",
"rule_trigger_budget_is_choice": "Budsjett er..",
"rule_trigger_tag_is_choice": "(En) tagg er..",
"rule_trigger_currency_is_choice": "Transaksjonsvaluta er..",
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
"rule_trigger_has_attachments_choice": "Har minst s\u00e5 mange vedlegg",
"rule_trigger_has_no_category_choice": "Har ingen kategori",
"rule_trigger_has_any_category_choice": "Har en (hvilken som helst) kategori",
"rule_trigger_has_no_budget_choice": "Har ingen budsjett",
"rule_trigger_has_any_budget_choice": "Har et (hvilket som helst) budsjett",
"rule_trigger_has_no_bill_choice": "Har ingen regning",
"rule_trigger_has_any_bill_choice": "Har en regning",
"rule_trigger_has_no_tag_choice": "Har ingen tagg(er)",
"rule_trigger_has_any_tag_choice": "Har en eller flere tagger",
"rule_trigger_any_notes_choice": "Har ett eller flere notater",
"rule_trigger_no_notes_choice": "Har ingen notater",
"rule_trigger_notes_is_choice": "Notater er..",
"rule_trigger_notes_contains_choice": "Notater inneholder..",
"rule_trigger_notes_starts_choice": "Notater begynner med..",
"rule_trigger_notes_ends_choice": "Notater som slutter med..",
"rule_trigger_bill_is_choice": "Regning er..",
"rule_trigger_external_id_is_choice": "Ekstern ID er..",
"rule_trigger_internal_reference_is_choice": "Intern referanse er..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaksjons-ID er",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "T\u00f8m alle kategorier",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "T\u00f8m alle budsjetter",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Fjern alle tagger",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Fjern notater",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Konverter transaksjonen til et innskudd",
"rule_action_convert_withdrawal_choice": "Konverter denne transaksjonen til et uttak",
"rule_action_convert_transfer_choice": "Konverter transaksjonen til en overf\u00f8ring",
"placeholder": "[Placeholder]",
"recurrences": "Gjentakende transaksjoner",
"title_expenses": "Utgifter",
"title_withdrawal": "Utgifter",
"title_revenue": "Inntekt",
"pref_1D": "\u00c9n dag",
"pref_1W": "\u00c9n uke",
"pref_1M": "En m\u00e5ned",
"pref_3M": "Tre m\u00e5neder (kvartal)",
"pref_6M": "Seks m\u00e5neder",
"pref_1Y": "Ett \u00e5r",
"repeat_freq_yearly": "\u00e5rlig",
"repeat_freq_half-year": "hvert halv\u00e5r",
"repeat_freq_quarterly": "kvartalsvis",
"repeat_freq_monthly": "m\u00e5nedlig",
"repeat_freq_weekly": "ukentlig",
"single_split": "Del opp",
"asset_accounts": "Aktivakontoer",
"expense_accounts": "Utgiftskontoer",
"liabilities_accounts": "Gjeld",
"undefined_accounts": "Accounts",
"name": "Navn",
"revenue_accounts": "Inntektskontoer",
"description": "Beskrivelse",
"category": "Kategori",
"title_deposit": "Inntekt",
"title_transfer": "Overf\u00f8ringer",
"title_transfers": "Overf\u00f8ringer",
"piggyBanks": "Sparegriser",
"rules": "Regler",
"accounts": "Kontoer",
"categories": "Kategorier",
"tags": "Tagger",
"object_groups_page_title": "Groups",
"reports": "Rapporter",
"webhooks": "Webhooks",
"currencies": "Valutaer",
"administration": "Administrasjon",
"profile": "Profil",
"source_account": "Kildekonto",
"destination_account": "Destinasjonskonto",
"amount": "Bel\u00f8p",
"date": "Dato",
"time": "Time",
"preferences": "Innstillinger",
"transactions": "Transaksjoner",
"balance": "Saldo",
"budgets": "Budsjetter",
"subscriptions": "Abonnementer",
"welcome_back": "Hvordan g\u00e5r det?",
"bills_to_pay": "Regninger \u00e5 betale",
"net_worth": "Formue",
"pref_last365": "I fjor",
"pref_last90": "Siste 90 dager",
"pref_last30": "Siste 30 dagene",
"pref_last7": "Siste 7 dager",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "nl",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "Naam",
"amount_min": "Minimumbedrag",
"amount_max": "Maximumbedrag",
"url": "URL",
"title": "Titel",
"first_date": "Eerste datum",
"repetitions": "Herhalingen",
"description": "Omschrijving",
"iban": "IBAN",
"skip": "Overslaan",
"date": "Datum"
},
"list": {
"name": "Naam",
"account_number": "Rekeningnummer",
"currentBalance": "Huidig saldo",
"lastActivity": "Laatste activiteit",
"active": "Actief?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budgetten",
"subscriptions": "Abonnementen",
"transactions": "Transacties",
"title_expenses": "Uitgaven",
"title_withdrawal": "Uitgaven",
"title_revenue": "Inkomsten",
"title_deposit": "Inkomsten",
"title_transfer": "Overschrijvingen",
"title_transfers": "Overschrijvingen",
"asset_accounts": "Betaalrekeningen",
"expense_accounts": "Crediteuren",
"revenue_accounts": "Debiteuren",
"liabilities_accounts": "Passiva"
},
"firefly": {
"actions": "Acties",
"edit": "Wijzig",
"delete": "Verwijder",
"reconcile": "Afstemmen",
"create_new_asset": "Nieuwe betaalrekening",
"confirm_action": "Actie bevestigen",
"new_budget": "Nieuw budget",
"new_asset_account": "Nieuwe betaalrekening",
"newTransfer": "Nieuwe overschrijving",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Nieuwe inkomsten",
"newWithdrawal": "Nieuwe uitgave",
"bills_paid": "Betaalde contracten",
"left_to_spend": "Over om uit te geven",
"no_budget": "(geen budget)",
"budgeted": "Gebudgetteerd",
"spent": "Uitgegeven",
"no_bill": "(geen contract)",
"rule_trigger_source_account_starts_choice": "Bronrekeningnaam begint met..",
"rule_trigger_source_account_ends_choice": "Bronrekeningnaam eindigt op..",
"rule_trigger_source_account_is_choice": "Bronrekeningnaam is..",
"rule_trigger_source_account_contains_choice": "Bronrekeningnaam bevat..",
"rule_trigger_account_id_choice": "Bron- of doelrekening-ID is..",
"rule_trigger_source_account_id_choice": "Bronrekening ID is..",
"rule_trigger_destination_account_id_choice": "Doelrekening ID is..",
"rule_trigger_account_is_cash_choice": "Bron- of doelrekening is een cash-rekening",
"rule_trigger_source_is_cash_choice": "Bronrekening is (cash) account",
"rule_trigger_destination_is_cash_choice": "Doelrekening is (cash) account",
"rule_trigger_source_account_nr_starts_choice": "Bronrekeningnummer begint met..",
"rule_trigger_source_account_nr_ends_choice": "Bronrekeningnummer eindigt op..",
"rule_trigger_source_account_nr_is_choice": "Bronrekeningnummer \/ IBAN is..",
"rule_trigger_source_account_nr_contains_choice": "Bronrekeningnummer \/ IBAN bevat..",
"rule_trigger_destination_account_starts_choice": "Doelrekeningnaam begint met..",
"rule_trigger_destination_account_ends_choice": "Doelrekeningnaam eindigt op..",
"rule_trigger_destination_account_is_choice": "Doelrekeningnaam is..",
"rule_trigger_destination_account_contains_choice": "Doelrekeningnaam bevat..",
"rule_trigger_destination_account_nr_starts_choice": "Doelrekeningnummer \/ IBAN begint met..",
"rule_trigger_destination_account_nr_ends_choice": "Doelrekeningnummer \/ IBAN eindigt op..",
"rule_trigger_destination_account_nr_is_choice": "Doelrekeningnummer \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Doelrekeningnummer \/ IBAN bevat..",
"rule_trigger_transaction_type_choice": "Transactietype is..",
"rule_trigger_category_is_choice": "Categorie is..",
"rule_trigger_amount_less_choice": "Bedrag is minder dan..",
"rule_trigger_amount_is_choice": "Bedrag is..",
"rule_trigger_amount_more_choice": "Bedrag is meer dan..",
"rule_trigger_description_starts_choice": "Omschrijving begint met..",
"rule_trigger_description_ends_choice": "Omschrijving eindigt op..",
"rule_trigger_description_contains_choice": "Omschrijving bevat..",
"rule_trigger_description_is_choice": "Omschrijving is..",
"rule_trigger_date_on_choice": "Transactiedatum is..",
"rule_trigger_date_before_choice": "Transactiedatum is v\u00f3\u00f3r..",
"rule_trigger_date_after_choice": "Transactiedatum is na..",
"rule_trigger_created_at_on_choice": "Transactie is gemaakt op..",
"rule_trigger_updated_at_on_choice": "Transactie werd laatst gewijzigd op..",
"rule_trigger_budget_is_choice": "Budget is..",
"rule_trigger_tag_is_choice": "Een tag is..",
"rule_trigger_currency_is_choice": "Transactievaluta is..",
"rule_trigger_foreign_currency_is_choice": "Transactie vreemde valuta is..",
"rule_trigger_has_attachments_choice": "Heeft minstens zoveel bijlagen",
"rule_trigger_has_no_category_choice": "Heeft geen categorie",
"rule_trigger_has_any_category_choice": "Heeft een (welke dan ook) categorie",
"rule_trigger_has_no_budget_choice": "Heeft geen budget",
"rule_trigger_has_any_budget_choice": "Heeft een (welke dan ook) budget",
"rule_trigger_has_no_bill_choice": "Heeft geen contract",
"rule_trigger_has_any_bill_choice": "Heeft een (welke dan ook) contract",
"rule_trigger_has_no_tag_choice": "Heeft geen tag(s)",
"rule_trigger_has_any_tag_choice": "Heeft een of meer tags",
"rule_trigger_any_notes_choice": "Heeft (enige) notities",
"rule_trigger_no_notes_choice": "Heeft geen notities",
"rule_trigger_notes_is_choice": "Notities zijn..",
"rule_trigger_notes_contains_choice": "Notities bevatten..",
"rule_trigger_notes_starts_choice": "Notities beginnen met..",
"rule_trigger_notes_ends_choice": "Notities eindigen op..",
"rule_trigger_bill_is_choice": "Contract is..",
"rule_trigger_external_id_is_choice": "Externe ID is..",
"rule_trigger_internal_reference_is_choice": "Interne referentie is..",
"rule_trigger_journal_id_choice": "Transactiejournaal ID is..",
"rule_trigger_any_external_url_choice": "De transactie heeft een externe URL",
"rule_trigger_no_external_url_choice": "De transactie heeft geen externe URL",
"rule_trigger_id_choice": "Transactie-ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Geef geen categorie",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Maak budget-veld leeg",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Haal alle tags weg",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Verwijder notitie",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Verander de transactie in inkomsten",
"rule_action_convert_withdrawal_choice": "Verander de transactie in een uitgave",
"rule_action_convert_transfer_choice": "Verander de transactie in een overschrijving",
"placeholder": "[Placeholder]",
"recurrences": "Periodieke transacties",
"title_expenses": "Uitgaven",
"title_withdrawal": "Uitgaven",
"title_revenue": "Inkomsten",
"pref_1D": "E\u00e9n dag",
"pref_1W": "E\u00e9n week",
"pref_1M": "E\u00e9n maand",
"pref_3M": "Drie maanden (kwartaal)",
"pref_6M": "Zes maanden",
"pref_1Y": "E\u00e9n jaar",
"repeat_freq_yearly": "jaarlijks",
"repeat_freq_half-year": "elk half jaar",
"repeat_freq_quarterly": "elk kwartaal",
"repeat_freq_monthly": "maandelijks",
"repeat_freq_weekly": "wekelijks",
"single_split": "Split",
"asset_accounts": "Betaalrekeningen",
"expense_accounts": "Crediteuren",
"liabilities_accounts": "Passiva",
"undefined_accounts": "Rekeningen",
"name": "Naam",
"revenue_accounts": "Debiteuren",
"description": "Omschrijving",
"category": "Categorie",
"title_deposit": "Inkomsten",
"title_transfer": "Overschrijvingen",
"title_transfers": "Overschrijvingen",
"piggyBanks": "Spaarpotjes",
"rules": "Regels",
"accounts": "Rekeningen",
"categories": "Categorie\u00ebn",
"tags": "Tags",
"object_groups_page_title": "Groepen",
"reports": "Overzichten",
"webhooks": "Webhooks",
"currencies": "Valuta",
"administration": "Administratie",
"profile": "Profiel",
"source_account": "Bronrekening",
"destination_account": "Doelrekening",
"amount": "Bedrag",
"date": "Datum",
"time": "Tijd",
"preferences": "Voorkeuren",
"transactions": "Transacties",
"balance": "Saldo",
"budgets": "Budgetten",
"subscriptions": "Abonnementen",
"welcome_back": "Hoe staat het er voor?",
"bills_to_pay": "Openstaande contracten",
"net_worth": "Kapitaal",
"pref_last365": "Afgelopen jaar",
"pref_last90": "Afgelopen 90 dagen",
"pref_last30": "Afgelopen 30 dagen",
"pref_last7": "Afgelopen 7 dagen",
"pref_YTD": "Jaar tot nu",
"pref_QTD": "Kwartaal tot nu",
"pref_MTD": "Maand tot nu"
}
"config": {
"html_language": "nl",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "Naam",
"amount_min": "Minimumbedrag",
"amount_max": "Maximumbedrag",
"url": "URL",
"title": "Titel",
"first_date": "Eerste datum",
"repetitions": "Herhalingen",
"description": "Omschrijving",
"iban": "IBAN",
"skip": "Overslaan",
"date": "Datum"
},
"list": {
"name": "Naam",
"account_number": "Rekeningnummer",
"currentBalance": "Huidig saldo",
"lastActivity": "Laatste activiteit",
"active": "Actief?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budgetten",
"subscriptions": "Abonnementen",
"transactions": "Transacties",
"title_expenses": "Uitgaven",
"title_withdrawal": "Uitgaven",
"title_revenue": "Inkomsten",
"title_deposit": "Inkomsten",
"title_transfer": "Overschrijvingen",
"title_transfers": "Overschrijvingen",
"asset_accounts": "Betaalrekeningen",
"expense_accounts": "Crediteuren",
"revenue_accounts": "Debiteuren",
"liabilities_accounts": "Passiva"
},
"firefly": {
"actions": "Acties",
"edit": "Wijzig",
"delete": "Verwijder",
"reconcile": "Afstemmen",
"create_new_asset": "Nieuwe betaalrekening",
"confirm_action": "Actie bevestigen",
"new_budget": "Nieuw budget",
"new_asset_account": "Nieuwe betaalrekening",
"newTransfer": "Nieuwe overschrijving",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Nieuwe inkomsten",
"newWithdrawal": "Nieuwe uitgave",
"bills_paid": "Betaalde contracten",
"left_to_spend": "Over om uit te geven",
"no_budget": "(geen budget)",
"budgeted": "Gebudgetteerd",
"spent": "Uitgegeven",
"no_bill": "(geen contract)",
"rule_trigger_source_account_starts_choice": "Bronrekeningnaam begint met..",
"rule_trigger_source_account_ends_choice": "Bronrekeningnaam eindigt op..",
"rule_trigger_source_account_is_choice": "Bronrekeningnaam is..",
"rule_trigger_source_account_contains_choice": "Bronrekeningnaam bevat..",
"rule_trigger_account_id_choice": "Bron- of doelrekening-ID is..",
"rule_trigger_source_account_id_choice": "Bronrekening ID is..",
"rule_trigger_destination_account_id_choice": "Doelrekening ID is..",
"rule_trigger_account_is_cash_choice": "Bron- of doelrekening is een cash-rekening",
"rule_trigger_source_is_cash_choice": "Bronrekening is (cash) account",
"rule_trigger_destination_is_cash_choice": "Doelrekening is (cash) account",
"rule_trigger_source_account_nr_starts_choice": "Bronrekeningnummer begint met..",
"rule_trigger_source_account_nr_ends_choice": "Bronrekeningnummer eindigt op..",
"rule_trigger_source_account_nr_is_choice": "Bronrekeningnummer \/ IBAN is..",
"rule_trigger_source_account_nr_contains_choice": "Bronrekeningnummer \/ IBAN bevat..",
"rule_trigger_destination_account_starts_choice": "Doelrekeningnaam begint met..",
"rule_trigger_destination_account_ends_choice": "Doelrekeningnaam eindigt op..",
"rule_trigger_destination_account_is_choice": "Doelrekeningnaam is..",
"rule_trigger_destination_account_contains_choice": "Doelrekeningnaam bevat..",
"rule_trigger_destination_account_nr_starts_choice": "Doelrekeningnummer \/ IBAN begint met..",
"rule_trigger_destination_account_nr_ends_choice": "Doelrekeningnummer \/ IBAN eindigt op..",
"rule_trigger_destination_account_nr_is_choice": "Doelrekeningnummer \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Doelrekeningnummer \/ IBAN bevat..",
"rule_trigger_transaction_type_choice": "Transactietype is..",
"rule_trigger_category_is_choice": "Categorie is..",
"rule_trigger_amount_less_choice": "Bedrag is minder dan..",
"rule_trigger_amount_is_choice": "Bedrag is..",
"rule_trigger_amount_more_choice": "Bedrag is meer dan..",
"rule_trigger_description_starts_choice": "Omschrijving begint met..",
"rule_trigger_description_ends_choice": "Omschrijving eindigt op..",
"rule_trigger_description_contains_choice": "Omschrijving bevat..",
"rule_trigger_description_is_choice": "Omschrijving is..",
"rule_trigger_date_on_choice": "Transactiedatum is..",
"rule_trigger_date_before_choice": "Transactiedatum is v\u00f3\u00f3r..",
"rule_trigger_date_after_choice": "Transactiedatum is na..",
"rule_trigger_created_at_on_choice": "Transactie is gemaakt op..",
"rule_trigger_updated_at_on_choice": "Transactie werd laatst gewijzigd op..",
"rule_trigger_budget_is_choice": "Budget is..",
"rule_trigger_tag_is_choice": "Een tag is..",
"rule_trigger_currency_is_choice": "Transactievaluta is..",
"rule_trigger_foreign_currency_is_choice": "Transactie vreemde valuta is..",
"rule_trigger_has_attachments_choice": "Heeft minstens zoveel bijlagen",
"rule_trigger_has_no_category_choice": "Heeft geen categorie",
"rule_trigger_has_any_category_choice": "Heeft een (welke dan ook) categorie",
"rule_trigger_has_no_budget_choice": "Heeft geen budget",
"rule_trigger_has_any_budget_choice": "Heeft een (welke dan ook) budget",
"rule_trigger_has_no_bill_choice": "Heeft geen contract",
"rule_trigger_has_any_bill_choice": "Heeft een (welke dan ook) contract",
"rule_trigger_has_no_tag_choice": "Heeft geen tag(s)",
"rule_trigger_has_any_tag_choice": "Heeft een of meer tags",
"rule_trigger_any_notes_choice": "Heeft (enige) notities",
"rule_trigger_no_notes_choice": "Heeft geen notities",
"rule_trigger_notes_is_choice": "Notities zijn..",
"rule_trigger_notes_contains_choice": "Notities bevatten..",
"rule_trigger_notes_starts_choice": "Notities beginnen met..",
"rule_trigger_notes_ends_choice": "Notities eindigen op..",
"rule_trigger_bill_is_choice": "Contract is..",
"rule_trigger_external_id_is_choice": "Externe ID is..",
"rule_trigger_internal_reference_is_choice": "Interne referentie is..",
"rule_trigger_journal_id_choice": "Transactiejournaal ID is..",
"rule_trigger_any_external_url_choice": "De transactie heeft een externe URL",
"rule_trigger_no_external_url_choice": "De transactie heeft geen externe URL",
"rule_trigger_id_choice": "Transactie-ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Geef geen categorie",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Maak budget-veld leeg",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Haal alle tags weg",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Verwijder notitie",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Verander de transactie in inkomsten",
"rule_action_convert_withdrawal_choice": "Verander de transactie in een uitgave",
"rule_action_convert_transfer_choice": "Verander de transactie in een overschrijving",
"placeholder": "[Placeholder]",
"recurrences": "Periodieke transacties",
"title_expenses": "Uitgaven",
"title_withdrawal": "Uitgaven",
"title_revenue": "Inkomsten",
"pref_1D": "E\u00e9n dag",
"pref_1W": "E\u00e9n week",
"pref_1M": "E\u00e9n maand",
"pref_3M": "Drie maanden (kwartaal)",
"pref_6M": "Zes maanden",
"pref_1Y": "E\u00e9n jaar",
"repeat_freq_yearly": "jaarlijks",
"repeat_freq_half-year": "elk half jaar",
"repeat_freq_quarterly": "elk kwartaal",
"repeat_freq_monthly": "maandelijks",
"repeat_freq_weekly": "wekelijks",
"single_split": "Split",
"asset_accounts": "Betaalrekeningen",
"expense_accounts": "Crediteuren",
"liabilities_accounts": "Passiva",
"undefined_accounts": "Rekeningen",
"name": "Naam",
"revenue_accounts": "Debiteuren",
"description": "Omschrijving",
"category": "Categorie",
"title_deposit": "Inkomsten",
"title_transfer": "Overschrijvingen",
"title_transfers": "Overschrijvingen",
"piggyBanks": "Spaarpotjes",
"rules": "Regels",
"accounts": "Rekeningen",
"categories": "Categorie\u00ebn",
"tags": "Tags",
"object_groups_page_title": "Groepen",
"reports": "Overzichten",
"webhooks": "Webhooks",
"currencies": "Valuta",
"administration": "Administratie",
"profile": "Profiel",
"source_account": "Bronrekening",
"destination_account": "Doelrekening",
"amount": "Bedrag",
"date": "Datum",
"time": "Tijd",
"preferences": "Voorkeuren",
"transactions": "Transacties",
"balance": "Saldo",
"budgets": "Budgetten",
"subscriptions": "Abonnementen",
"welcome_back": "Hoe staat het er voor?",
"bills_to_pay": "Openstaande contracten",
"net_worth": "Kapitaal",
"pref_last365": "Afgelopen jaar",
"pref_last90": "Afgelopen 90 dagen",
"pref_last30": "Afgelopen 30 dagen",
"pref_last7": "Afgelopen 7 dagen",
"pref_YTD": "Jaar tot nu",
"pref_QTD": "Kwartaal tot nu",
"pref_MTD": "Maand tot nu"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "pl",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "Nazwa",
"amount_min": "Minimalna kwota",
"amount_max": "Maksymalna kwota",
"url": "URL",
"title": "Tytu\u0142",
"first_date": "Data pocz\u0105tkowa",
"repetitions": "Powt\u00f3rzenia",
"description": "Opis",
"iban": "IBAN",
"skip": "Pomi\u0144",
"date": "Data"
},
"list": {
"name": "Nazwa",
"account_number": "Numer konta",
"currentBalance": "Bie\u017c\u0105ce saldo",
"lastActivity": "Ostatnia aktywno\u015b\u0107",
"active": "Jest aktywny?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Bud\u017cety",
"subscriptions": "Subskrypcje",
"transactions": "Transakcje",
"title_expenses": "Wydatki",
"title_withdrawal": "Wydatki",
"title_revenue": "Przychody \/ dochody",
"title_deposit": "Przych\u00f3d \/ doch\u00f3d",
"title_transfer": "Transfery",
"title_transfers": "Transfery",
"asset_accounts": "Konta aktyw\u00f3w",
"expense_accounts": "Konta wydatk\u00f3w",
"revenue_accounts": "Konta przychod\u00f3w",
"liabilities_accounts": "Zobowi\u0105zania"
},
"firefly": {
"actions": "Akcje",
"edit": "Modyfikuj",
"delete": "Usu\u0144",
"reconcile": "Uzgodnij",
"create_new_asset": "Utw\u00f3rz nowe konto aktyw\u00f3w",
"confirm_action": "Potwierd\u017a akcj\u0119",
"new_budget": "Nowy bud\u017cet",
"new_asset_account": "Nowe konto aktyw\u00f3w",
"newTransfer": "Nowy transfer",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Nowa wp\u0142ata",
"newWithdrawal": "Nowy wydatek",
"bills_paid": "Zap\u0142acone rachunki",
"left_to_spend": "Pozosta\u0142o do wydania",
"no_budget": "(brak bud\u017cetu)",
"budgeted": "Zabud\u017cetowano",
"spent": "Wydano",
"no_bill": "(brak rachunku)",
"rule_trigger_source_account_starts_choice": "Konto \u017ar\u00f3d\u0142owe si\u0119 zaczyna od..",
"rule_trigger_source_account_ends_choice": "Konto \u017ar\u00f3d\u0142owe ko\u0144czy si\u0119 na..",
"rule_trigger_source_account_is_choice": "Kontem \u017ar\u00f3d\u0142owym jest..",
"rule_trigger_source_account_contains_choice": "Nazwa konta \u017ar\u00f3d\u0142owego zawiera..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "ID konta \u017ar\u00f3d\u0142owego to dok\u0142adnie..",
"rule_trigger_destination_account_id_choice": "ID konta docelowego to dok\u0142adnie..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Konto \u017ar\u00f3d\u0142owe to konto (got\u00f3wkowe)",
"rule_trigger_destination_is_cash_choice": "Konto docelowe to konto (got\u00f3wkowe)",
"rule_trigger_source_account_nr_starts_choice": "Numer \/ IBAN konta \u017ar\u00f3d\u0142owego zaczyna si\u0119 od..",
"rule_trigger_source_account_nr_ends_choice": "Source account number \/ IBAN ends with..",
"rule_trigger_source_account_nr_is_choice": "Source account number \/ IBAN is..",
"rule_trigger_source_account_nr_contains_choice": "Source account number \/ IBAN contains..",
"rule_trigger_destination_account_starts_choice": "Destination account name starts with..",
"rule_trigger_destination_account_ends_choice": "Destination account name ends with..",
"rule_trigger_destination_account_is_choice": "Destination account name is..",
"rule_trigger_destination_account_contains_choice": "Destination account name contains..",
"rule_trigger_destination_account_nr_starts_choice": "Destination account number \/ IBAN starts with..",
"rule_trigger_destination_account_nr_ends_choice": "Destination account number \/ IBAN ends with..",
"rule_trigger_destination_account_nr_is_choice": "Destination account number \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Destination account number \/ IBAN contains..",
"rule_trigger_transaction_type_choice": "Transakcja jest typu..",
"rule_trigger_category_is_choice": "Kategoria to..",
"rule_trigger_amount_less_choice": "Kwota jest mniejsza ni\u017c..",
"rule_trigger_amount_is_choice": "Kwota to..",
"rule_trigger_amount_more_choice": "Kwota jest wi\u0119ksza ni\u017c..",
"rule_trigger_description_starts_choice": "Opis zaczyna si\u0119 od..",
"rule_trigger_description_ends_choice": "Opis ko\u0144czy si\u0119 na..",
"rule_trigger_description_contains_choice": "Opis zawiera..",
"rule_trigger_description_is_choice": "Opis to..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Data transakcji jest przed..",
"rule_trigger_date_after_choice": "Data transakcji jest po..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Bud\u017cet to..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Waluta transakcji to..",
"rule_trigger_foreign_currency_is_choice": "Waluta obca transakcji to..",
"rule_trigger_has_attachments_choice": "Ma co najmniej podan\u0105 liczb\u0119 za\u0142\u0105cznik\u00f3w",
"rule_trigger_has_no_category_choice": "Brak kategorii",
"rule_trigger_has_any_category_choice": "Ma (dowoln\u0105) kategori\u0119",
"rule_trigger_has_no_budget_choice": "Brak bud\u017cetu",
"rule_trigger_has_any_budget_choice": "Ma (dowolny) bud\u017cet",
"rule_trigger_has_no_bill_choice": "Nie ma rachunku",
"rule_trigger_has_any_bill_choice": "Ma (dowolny) rachunek",
"rule_trigger_has_no_tag_choice": "Brak tag\u00f3w",
"rule_trigger_has_any_tag_choice": "Ma (dowolny) tag (lub kilka)",
"rule_trigger_any_notes_choice": "Ma (dowolne) notatki",
"rule_trigger_no_notes_choice": "Brak notatek",
"rule_trigger_notes_is_choice": "Notatki to..",
"rule_trigger_notes_contains_choice": "Notatki zawieraj\u0105..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Rachunek to..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "ID dziennika transakcji to..",
"rule_trigger_any_external_url_choice": "Transakcja ma zewn\u0119trzny adres URL",
"rule_trigger_no_external_url_choice": "Transakcja nie ma zewn\u0119trznego adresu URL",
"rule_trigger_id_choice": "Identyfikator transakcji to..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Wyczy\u015b\u0107 wszystkie kategorie",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Wyczy\u015b\u0107 wszystkie bud\u017cety",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Usu\u0144 wszystkie tagi",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Usu\u0144 wszystkie notatki",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Konwertuj transakcj\u0119 na wp\u0142at\u0119",
"rule_action_convert_withdrawal_choice": "Konwertuj transakcj\u0119 na wyp\u0142at\u0119",
"rule_action_convert_transfer_choice": "Konwertuj transakcj\u0119 na transfer",
"placeholder": "[Placeholder]",
"recurrences": "Cykliczne transakcje",
"title_expenses": "Wydatki",
"title_withdrawal": "Wydatki",
"title_revenue": "Przych\u00f3d \/ doch\u00f3d",
"pref_1D": "Dzie\u0144",
"pref_1W": "Tydzie\u0144",
"pref_1M": "Miesi\u0105c",
"pref_3M": "Trzy miesi\u0105ce (kwarta\u0142)",
"pref_6M": "Sze\u015b\u0107 miesi\u0119cy",
"pref_1Y": "Rok",
"repeat_freq_yearly": "rocznie",
"repeat_freq_half-year": "co p\u00f3\u0142 roku",
"repeat_freq_quarterly": "kwartalnie",
"repeat_freq_monthly": "miesi\u0119cznie",
"repeat_freq_weekly": "tygodniowo",
"single_split": "Podzia\u0142",
"asset_accounts": "Konta aktyw\u00f3w",
"expense_accounts": "Konta wydatk\u00f3w",
"liabilities_accounts": "Zobowi\u0105zania",
"undefined_accounts": "Konta",
"name": "Nazwa",
"revenue_accounts": "Konta przychod\u00f3w",
"description": "Opis",
"category": "Kategoria",
"title_deposit": "Przych\u00f3d \/ doch\u00f3d",
"title_transfer": "Transfery",
"title_transfers": "Transfery",
"piggyBanks": "Skarbonki",
"rules": "Regu\u0142y",
"accounts": "Konta",
"categories": "Kategorie",
"tags": "Tagi",
"object_groups_page_title": "Grupy",
"reports": "Raporty",
"webhooks": "Webhooki",
"currencies": "Waluty",
"administration": "Administracja",
"profile": "Profil",
"source_account": "Konto \u017ar\u00f3d\u0142owe",
"destination_account": "Konto docelowe",
"amount": "Kwota",
"date": "Data",
"time": "Czas",
"preferences": "Preferencje",
"transactions": "Transakcje",
"balance": "Saldo",
"budgets": "Bud\u017cety",
"subscriptions": "Subskrypcje",
"welcome_back": "Co jest grane?",
"bills_to_pay": "Rachunki do zap\u0142acenia",
"net_worth": "Warto\u015b\u0107 netto",
"pref_last365": "Ostatni rok",
"pref_last90": "Ostatnie 90 dni",
"pref_last30": "Ostatnie 30 dni",
"pref_last7": "Ostatnie 7 dni",
"pref_YTD": "Rok do daty",
"pref_QTD": "Kwarta\u0142 do daty",
"pref_MTD": "Miesi\u0105c do daty"
}
"config": {
"html_language": "pl",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "Nazwa",
"amount_min": "Minimalna kwota",
"amount_max": "Maksymalna kwota",
"url": "URL",
"title": "Tytu\u0142",
"first_date": "Data pocz\u0105tkowa",
"repetitions": "Powt\u00f3rzenia",
"description": "Opis",
"iban": "IBAN",
"skip": "Pomi\u0144",
"date": "Data"
},
"list": {
"name": "Nazwa",
"account_number": "Numer konta",
"currentBalance": "Bie\u017c\u0105ce saldo",
"lastActivity": "Ostatnia aktywno\u015b\u0107",
"active": "Jest aktywny?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Bud\u017cety",
"subscriptions": "Subskrypcje",
"transactions": "Transakcje",
"title_expenses": "Wydatki",
"title_withdrawal": "Wydatki",
"title_revenue": "Przychody \/ dochody",
"title_deposit": "Przych\u00f3d \/ doch\u00f3d",
"title_transfer": "Transfery",
"title_transfers": "Transfery",
"asset_accounts": "Konta aktyw\u00f3w",
"expense_accounts": "Konta wydatk\u00f3w",
"revenue_accounts": "Konta przychod\u00f3w",
"liabilities_accounts": "Zobowi\u0105zania"
},
"firefly": {
"actions": "Akcje",
"edit": "Modyfikuj",
"delete": "Usu\u0144",
"reconcile": "Uzgodnij",
"create_new_asset": "Utw\u00f3rz nowe konto aktyw\u00f3w",
"confirm_action": "Potwierd\u017a akcj\u0119",
"new_budget": "Nowy bud\u017cet",
"new_asset_account": "Nowe konto aktyw\u00f3w",
"newTransfer": "Nowy transfer",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Nowa wp\u0142ata",
"newWithdrawal": "Nowy wydatek",
"bills_paid": "Zap\u0142acone rachunki",
"left_to_spend": "Pozosta\u0142o do wydania",
"no_budget": "(brak bud\u017cetu)",
"budgeted": "Zabud\u017cetowano",
"spent": "Wydano",
"no_bill": "(brak rachunku)",
"rule_trigger_source_account_starts_choice": "Konto \u017ar\u00f3d\u0142owe si\u0119 zaczyna od..",
"rule_trigger_source_account_ends_choice": "Konto \u017ar\u00f3d\u0142owe ko\u0144czy si\u0119 na..",
"rule_trigger_source_account_is_choice": "Kontem \u017ar\u00f3d\u0142owym jest..",
"rule_trigger_source_account_contains_choice": "Nazwa konta \u017ar\u00f3d\u0142owego zawiera..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "ID konta \u017ar\u00f3d\u0142owego to dok\u0142adnie..",
"rule_trigger_destination_account_id_choice": "ID konta docelowego to dok\u0142adnie..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Konto \u017ar\u00f3d\u0142owe to konto (got\u00f3wkowe)",
"rule_trigger_destination_is_cash_choice": "Konto docelowe to konto (got\u00f3wkowe)",
"rule_trigger_source_account_nr_starts_choice": "Numer \/ IBAN konta \u017ar\u00f3d\u0142owego zaczyna si\u0119 od..",
"rule_trigger_source_account_nr_ends_choice": "Source account number \/ IBAN ends with..",
"rule_trigger_source_account_nr_is_choice": "Source account number \/ IBAN is..",
"rule_trigger_source_account_nr_contains_choice": "Source account number \/ IBAN contains..",
"rule_trigger_destination_account_starts_choice": "Destination account name starts with..",
"rule_trigger_destination_account_ends_choice": "Destination account name ends with..",
"rule_trigger_destination_account_is_choice": "Destination account name is..",
"rule_trigger_destination_account_contains_choice": "Destination account name contains..",
"rule_trigger_destination_account_nr_starts_choice": "Destination account number \/ IBAN starts with..",
"rule_trigger_destination_account_nr_ends_choice": "Destination account number \/ IBAN ends with..",
"rule_trigger_destination_account_nr_is_choice": "Destination account number \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Destination account number \/ IBAN contains..",
"rule_trigger_transaction_type_choice": "Transakcja jest typu..",
"rule_trigger_category_is_choice": "Kategoria to..",
"rule_trigger_amount_less_choice": "Kwota jest mniejsza ni\u017c..",
"rule_trigger_amount_is_choice": "Kwota to..",
"rule_trigger_amount_more_choice": "Kwota jest wi\u0119ksza ni\u017c..",
"rule_trigger_description_starts_choice": "Opis zaczyna si\u0119 od..",
"rule_trigger_description_ends_choice": "Opis ko\u0144czy si\u0119 na..",
"rule_trigger_description_contains_choice": "Opis zawiera..",
"rule_trigger_description_is_choice": "Opis to..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Data transakcji jest przed..",
"rule_trigger_date_after_choice": "Data transakcji jest po..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Bud\u017cet to..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Waluta transakcji to..",
"rule_trigger_foreign_currency_is_choice": "Waluta obca transakcji to..",
"rule_trigger_has_attachments_choice": "Ma co najmniej podan\u0105 liczb\u0119 za\u0142\u0105cznik\u00f3w",
"rule_trigger_has_no_category_choice": "Brak kategorii",
"rule_trigger_has_any_category_choice": "Ma (dowoln\u0105) kategori\u0119",
"rule_trigger_has_no_budget_choice": "Brak bud\u017cetu",
"rule_trigger_has_any_budget_choice": "Ma (dowolny) bud\u017cet",
"rule_trigger_has_no_bill_choice": "Nie ma rachunku",
"rule_trigger_has_any_bill_choice": "Ma (dowolny) rachunek",
"rule_trigger_has_no_tag_choice": "Brak tag\u00f3w",
"rule_trigger_has_any_tag_choice": "Ma (dowolny) tag (lub kilka)",
"rule_trigger_any_notes_choice": "Ma (dowolne) notatki",
"rule_trigger_no_notes_choice": "Brak notatek",
"rule_trigger_notes_is_choice": "Notatki to..",
"rule_trigger_notes_contains_choice": "Notatki zawieraj\u0105..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Rachunek to..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "ID dziennika transakcji to..",
"rule_trigger_any_external_url_choice": "Transakcja ma zewn\u0119trzny adres URL",
"rule_trigger_no_external_url_choice": "Transakcja nie ma zewn\u0119trznego adresu URL",
"rule_trigger_id_choice": "Identyfikator transakcji to..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Wyczy\u015b\u0107 wszystkie kategorie",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Wyczy\u015b\u0107 wszystkie bud\u017cety",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Usu\u0144 wszystkie tagi",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Usu\u0144 wszystkie notatki",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Konwertuj transakcj\u0119 na wp\u0142at\u0119",
"rule_action_convert_withdrawal_choice": "Konwertuj transakcj\u0119 na wyp\u0142at\u0119",
"rule_action_convert_transfer_choice": "Konwertuj transakcj\u0119 na transfer",
"placeholder": "[Placeholder]",
"recurrences": "Cykliczne transakcje",
"title_expenses": "Wydatki",
"title_withdrawal": "Wydatki",
"title_revenue": "Przych\u00f3d \/ doch\u00f3d",
"pref_1D": "Dzie\u0144",
"pref_1W": "Tydzie\u0144",
"pref_1M": "Miesi\u0105c",
"pref_3M": "Trzy miesi\u0105ce (kwarta\u0142)",
"pref_6M": "Sze\u015b\u0107 miesi\u0119cy",
"pref_1Y": "Rok",
"repeat_freq_yearly": "rocznie",
"repeat_freq_half-year": "co p\u00f3\u0142 roku",
"repeat_freq_quarterly": "kwartalnie",
"repeat_freq_monthly": "miesi\u0119cznie",
"repeat_freq_weekly": "tygodniowo",
"single_split": "Podzia\u0142",
"asset_accounts": "Konta aktyw\u00f3w",
"expense_accounts": "Konta wydatk\u00f3w",
"liabilities_accounts": "Zobowi\u0105zania",
"undefined_accounts": "Konta",
"name": "Nazwa",
"revenue_accounts": "Konta przychod\u00f3w",
"description": "Opis",
"category": "Kategoria",
"title_deposit": "Przych\u00f3d \/ doch\u00f3d",
"title_transfer": "Transfery",
"title_transfers": "Transfery",
"piggyBanks": "Skarbonki",
"rules": "Regu\u0142y",
"accounts": "Konta",
"categories": "Kategorie",
"tags": "Tagi",
"object_groups_page_title": "Grupy",
"reports": "Raporty",
"webhooks": "Webhooki",
"currencies": "Waluty",
"administration": "Administracja",
"profile": "Profil",
"source_account": "Konto \u017ar\u00f3d\u0142owe",
"destination_account": "Konto docelowe",
"amount": "Kwota",
"date": "Data",
"time": "Czas",
"preferences": "Preferencje",
"transactions": "Transakcje",
"balance": "Saldo",
"budgets": "Bud\u017cety",
"subscriptions": "Subskrypcje",
"welcome_back": "Co jest grane?",
"bills_to_pay": "Rachunki do zap\u0142acenia",
"net_worth": "Warto\u015b\u0107 netto",
"pref_last365": "Ostatni rok",
"pref_last90": "Ostatnie 90 dni",
"pref_last30": "Ostatnie 30 dni",
"pref_last7": "Ostatnie 7 dni",
"pref_YTD": "Rok do daty",
"pref_QTD": "Kwarta\u0142 do daty",
"pref_MTD": "Miesi\u0105c do daty"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "pt-br",
"month_and_day_fns": "d [de] MMMM [de] y"
},
"form": {
"name": "Nome",
"amount_min": "Valor M\u00ednimo",
"amount_max": "Valor M\u00e1ximo",
"url": "link",
"title": "T\u00edtulo",
"first_date": "Primeira data",
"repetitions": "Repeti\u00e7\u00f5es",
"description": "Descri\u00e7\u00e3o",
"iban": "IBAN",
"skip": "Pular",
"date": "Data"
},
"list": {
"name": "Nome",
"account_number": "N\u00famero da conta",
"currentBalance": "Saldo atual",
"lastActivity": "\u00daltima atividade",
"active": "Est\u00e1 ativo?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Or\u00e7amentos",
"subscriptions": "Assinaturas",
"transactions": "Transa\u00e7\u00f5es",
"title_expenses": "Despesas",
"title_withdrawal": "Despesas",
"title_revenue": "Receita \/ Renda",
"title_deposit": "Receita \/ Renda",
"title_transfer": "Transfer\u00eancias",
"title_transfers": "Transfer\u00eancias",
"asset_accounts": "Contas de ativos",
"expense_accounts": "Contas de despesas",
"revenue_accounts": "Contas de receitas",
"liabilities_accounts": "Passivos"
},
"firefly": {
"actions": "A\u00e7\u00f5es",
"edit": "Editar",
"delete": "Apagar",
"reconcile": "Reconciliar",
"create_new_asset": "Criar nova conta de ativo",
"confirm_action": "Confirmar a\u00e7\u00e3o",
"new_budget": "Novo or\u00e7amento",
"new_asset_account": "Nova conta de ativo",
"newTransfer": "Nova transfer\u00eancia",
"submission_options": "Op\u00e7\u00f5es de envio",
"apply_rules_checkbox": "Aplicar regras",
"fire_webhooks_checkbox": "Acionar webhooks",
"newDeposit": "Novo dep\u00f3sito",
"newWithdrawal": "Nova despesa",
"bills_paid": "Contas pagas",
"left_to_spend": "Restante para gastar",
"no_budget": "(sem or\u00e7amento)",
"budgeted": "Or\u00e7ado",
"spent": "Gasto",
"no_bill": "(sem conta)",
"rule_trigger_source_account_starts_choice": "Nome da conta de origem come\u00e7a com..",
"rule_trigger_source_account_ends_choice": "O nome da conta de origem termina com..",
"rule_trigger_source_account_is_choice": "Nome da conta de origem \u00e9..",
"rule_trigger_source_account_contains_choice": "Nome da conta de origem cont\u00e9m..",
"rule_trigger_account_id_choice": "Ou ID da conta \u00e9 exatamente..",
"rule_trigger_source_account_id_choice": "ID da conta de origem \u00e9 igual a..",
"rule_trigger_destination_account_id_choice": "ID da conta de destino \u00e9 igual a..",
"rule_trigger_account_is_cash_choice": "Ou a conta \u00e9 dinheiro",
"rule_trigger_source_is_cash_choice": "Conta de origem \u00e9 (dinheiro)",
"rule_trigger_destination_is_cash_choice": "Conta de destino \u00e9 (dinheiro)",
"rule_trigger_source_account_nr_starts_choice": "N\u00famero da conta de origem (IBAN) come\u00e7a com..",
"rule_trigger_source_account_nr_ends_choice": "N\u00famero da conta de origem (IBAN) termina com..",
"rule_trigger_source_account_nr_is_choice": "N\u00famero da conta de origem (IBAN) \u00e9..",
"rule_trigger_source_account_nr_contains_choice": "N\u00famero da conta de origem (IBAN) cont\u00e9m..",
"rule_trigger_destination_account_starts_choice": "Nome da conta de destino come\u00e7a com..",
"rule_trigger_destination_account_ends_choice": "Nome da conta de destino termina com..",
"rule_trigger_destination_account_is_choice": "Nome da conta de destino \u00e9..",
"rule_trigger_destination_account_contains_choice": "Nome da conta de destino cont\u00e9m..",
"rule_trigger_destination_account_nr_starts_choice": "N\u00famero da conta de destino (IBAN) come\u00e7a com..",
"rule_trigger_destination_account_nr_ends_choice": "N\u00famero da conta de destino (IBAN) termina com..",
"rule_trigger_destination_account_nr_is_choice": "N\u00famero da conta de destino (IBAN) \u00e9..",
"rule_trigger_destination_account_nr_contains_choice": "N\u00famero da conta de destino (IBAN) cont\u00e9m..",
"rule_trigger_transaction_type_choice": "Transa\u00e7\u00e3o \u00e9 do tipo..",
"rule_trigger_category_is_choice": "A categoria \u00e9..",
"rule_trigger_amount_less_choice": "Quantia \u00e9 inferior a..",
"rule_trigger_amount_is_choice": "Quantia \u00e9..",
"rule_trigger_amount_more_choice": "Quantia \u00e9 mais do que..",
"rule_trigger_description_starts_choice": "Descri\u00e7\u00e3o come\u00e7a com..",
"rule_trigger_description_ends_choice": "Descri\u00e7\u00e3o termina com..",
"rule_trigger_description_contains_choice": "Descri\u00e7\u00e3o cont\u00e9m..",
"rule_trigger_description_is_choice": "Descri\u00e7\u00e3o \u00e9..",
"rule_trigger_date_on_choice": "Data da transa\u00e7\u00e3o \u00e9..",
"rule_trigger_date_before_choice": "A data da transa\u00e7\u00e3o \u00e9 anterior a...",
"rule_trigger_date_after_choice": "A data da transa\u00e7\u00e3o \u00e9 posterior a...",
"rule_trigger_created_at_on_choice": "Transa\u00e7\u00e3o foi feita em..",
"rule_trigger_updated_at_on_choice": "Transa\u00e7\u00e3o foi editada pela \u00faltima vez em..",
"rule_trigger_budget_is_choice": "O or\u00e7amento \u00e9..",
"rule_trigger_tag_is_choice": "Qualquer tag \u00e9..",
"rule_trigger_currency_is_choice": "A moeda da transa\u00e7\u00e3o \u00e9..",
"rule_trigger_foreign_currency_is_choice": "A moeda estrangeira da transa\u00e7\u00e3o \u00e9...",
"rule_trigger_has_attachments_choice": "Tem pelo menos essa quantidade de anexos",
"rule_trigger_has_no_category_choice": "N\u00e3o tem categoria",
"rule_trigger_has_any_category_choice": "Tem uma categoria (qualquer)",
"rule_trigger_has_no_budget_choice": "N\u00e3o tem or\u00e7amento",
"rule_trigger_has_any_budget_choice": "Tem um or\u00e7amento (qualquer)",
"rule_trigger_has_no_bill_choice": "N\u00e3o tem nenhuma conta",
"rule_trigger_has_any_bill_choice": "Tem uma conta (qualquer)",
"rule_trigger_has_no_tag_choice": "N\u00e3o tem tag(s)",
"rule_trigger_has_any_tag_choice": "Tem uma ou mais tags (qualquer)",
"rule_trigger_any_notes_choice": "Tem notas (qualquer)",
"rule_trigger_no_notes_choice": "N\u00e3o tem notas",
"rule_trigger_notes_is_choice": "As notas s\u00e3o..",
"rule_trigger_notes_contains_choice": "As notas cont\u00eam..",
"rule_trigger_notes_starts_choice": "As notas come\u00e7am com..",
"rule_trigger_notes_ends_choice": "As notas terminam com..",
"rule_trigger_bill_is_choice": "Conta \u00e9..",
"rule_trigger_external_id_is_choice": "ID externo \u00e9..",
"rule_trigger_internal_reference_is_choice": "Refer\u00eancia interna \u00e9..",
"rule_trigger_journal_id_choice": "ID do livro de transa\u00e7\u00e3o \u00e9..",
"rule_trigger_any_external_url_choice": "A transa\u00e7\u00e3o tem um link externo",
"rule_trigger_no_external_url_choice": "A transa\u00e7\u00e3o n\u00e3o tem um link externo",
"rule_trigger_id_choice": "O identificador da transa\u00e7\u00e3o \u00e9..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Limpar qualquer categoria",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Limpar qualquer or\u00e7amento",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Remover todas as tags",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Remover quaisquer notas",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Converter esta transfer\u00eancia em entrada",
"rule_action_convert_withdrawal_choice": "Converter esta transa\u00e7\u00e3o para uma sa\u00edda",
"rule_action_convert_transfer_choice": "Converter esta transa\u00e7\u00e3o para transfer\u00eancia",
"placeholder": "[Placeholder]",
"recurrences": "Transa\u00e7\u00f5es recorrentes",
"title_expenses": "Despesas",
"title_withdrawal": "Despesas",
"title_revenue": "Receitas \/ Renda",
"pref_1D": "Um dia",
"pref_1W": "Uma semana",
"pref_1M": "Um m\u00eas",
"pref_3M": "Trimestral",
"pref_6M": "Semestral",
"pref_1Y": "Um ano",
"repeat_freq_yearly": "anual",
"repeat_freq_half-year": "cada semestre",
"repeat_freq_quarterly": "trimestral",
"repeat_freq_monthly": "mensal",
"repeat_freq_weekly": "semanal",
"single_split": "Divis\u00e3o",
"asset_accounts": "Contas de ativo",
"expense_accounts": "Contas de despesas",
"liabilities_accounts": "Passivos",
"undefined_accounts": "Contas",
"name": "Nome",
"revenue_accounts": "Contas de receitas",
"description": "Descri\u00e7\u00e3o",
"category": "Categoria",
"title_deposit": "Receita \/ Renda",
"title_transfer": "Transfer\u00eancias",
"title_transfers": "Transfer\u00eancias",
"piggyBanks": "Cofrinhos",
"rules": "Regras",
"accounts": "Contas",
"categories": "Categorias",
"tags": "Tags",
"object_groups_page_title": "Grupos",
"reports": "Relat\u00f3rios",
"webhooks": "Webhooks",
"currencies": "Moedas",
"administration": "Administra\u00e7\u00e3o",
"profile": "Perfil",
"source_account": "Conta origem",
"destination_account": "Conta destino",
"amount": "Valor",
"date": "Data",
"time": "Hor\u00e1rio",
"preferences": "Prefer\u00eancias",
"transactions": "Transa\u00e7\u00f5es",
"balance": "Saldo",
"budgets": "Or\u00e7amentos",
"subscriptions": "Assinaturas",
"welcome_back": "O que est\u00e1 acontecendo?",
"bills_to_pay": "Contas a pagar",
"net_worth": "Valor L\u00edquido",
"pref_last365": "Ano passado",
"pref_last90": "\u00daltimos 90 dias",
"pref_last30": "\u00daltimos 30 dias",
"pref_last7": "\u00daltimos 7 dias",
"pref_YTD": "Ano at\u00e9 \u00e0 data",
"pref_QTD": "Trimestre at\u00e9 \u00e0 data",
"pref_MTD": "M\u00eas at\u00e9 a data"
}
"config": {
"html_language": "pt-br",
"month_and_day_fns": "d [de] MMMM [de] y"
},
"form": {
"name": "Nome",
"amount_min": "Valor M\u00ednimo",
"amount_max": "Valor M\u00e1ximo",
"url": "link",
"title": "T\u00edtulo",
"first_date": "Primeira data",
"repetitions": "Repeti\u00e7\u00f5es",
"description": "Descri\u00e7\u00e3o",
"iban": "IBAN",
"skip": "Pular",
"date": "Data"
},
"list": {
"name": "Nome",
"account_number": "N\u00famero da conta",
"currentBalance": "Saldo atual",
"lastActivity": "\u00daltima atividade",
"active": "Est\u00e1 ativo?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Or\u00e7amentos",
"subscriptions": "Assinaturas",
"transactions": "Transa\u00e7\u00f5es",
"title_expenses": "Despesas",
"title_withdrawal": "Despesas",
"title_revenue": "Receita \/ Renda",
"title_deposit": "Receita \/ Renda",
"title_transfer": "Transfer\u00eancias",
"title_transfers": "Transfer\u00eancias",
"asset_accounts": "Contas de ativos",
"expense_accounts": "Contas de despesas",
"revenue_accounts": "Contas de receitas",
"liabilities_accounts": "Passivos"
},
"firefly": {
"actions": "A\u00e7\u00f5es",
"edit": "Editar",
"delete": "Apagar",
"reconcile": "Reconciliar",
"create_new_asset": "Criar nova conta de ativo",
"confirm_action": "Confirmar a\u00e7\u00e3o",
"new_budget": "Novo or\u00e7amento",
"new_asset_account": "Nova conta de ativo",
"newTransfer": "Nova transfer\u00eancia",
"submission_options": "Op\u00e7\u00f5es de envio",
"apply_rules_checkbox": "Aplicar regras",
"fire_webhooks_checkbox": "Acionar webhooks",
"newDeposit": "Novo dep\u00f3sito",
"newWithdrawal": "Nova despesa",
"bills_paid": "Contas pagas",
"left_to_spend": "Restante para gastar",
"no_budget": "(sem or\u00e7amento)",
"budgeted": "Or\u00e7ado",
"spent": "Gasto",
"no_bill": "(sem conta)",
"rule_trigger_source_account_starts_choice": "Nome da conta de origem come\u00e7a com..",
"rule_trigger_source_account_ends_choice": "O nome da conta de origem termina com..",
"rule_trigger_source_account_is_choice": "Nome da conta de origem \u00e9..",
"rule_trigger_source_account_contains_choice": "Nome da conta de origem cont\u00e9m..",
"rule_trigger_account_id_choice": "Ou ID da conta \u00e9 exatamente..",
"rule_trigger_source_account_id_choice": "ID da conta de origem \u00e9 igual a..",
"rule_trigger_destination_account_id_choice": "ID da conta de destino \u00e9 igual a..",
"rule_trigger_account_is_cash_choice": "Ou a conta \u00e9 dinheiro",
"rule_trigger_source_is_cash_choice": "Conta de origem \u00e9 (dinheiro)",
"rule_trigger_destination_is_cash_choice": "Conta de destino \u00e9 (dinheiro)",
"rule_trigger_source_account_nr_starts_choice": "N\u00famero da conta de origem (IBAN) come\u00e7a com..",
"rule_trigger_source_account_nr_ends_choice": "N\u00famero da conta de origem (IBAN) termina com..",
"rule_trigger_source_account_nr_is_choice": "N\u00famero da conta de origem (IBAN) \u00e9..",
"rule_trigger_source_account_nr_contains_choice": "N\u00famero da conta de origem (IBAN) cont\u00e9m..",
"rule_trigger_destination_account_starts_choice": "Nome da conta de destino come\u00e7a com..",
"rule_trigger_destination_account_ends_choice": "Nome da conta de destino termina com..",
"rule_trigger_destination_account_is_choice": "Nome da conta de destino \u00e9..",
"rule_trigger_destination_account_contains_choice": "Nome da conta de destino cont\u00e9m..",
"rule_trigger_destination_account_nr_starts_choice": "N\u00famero da conta de destino (IBAN) come\u00e7a com..",
"rule_trigger_destination_account_nr_ends_choice": "N\u00famero da conta de destino (IBAN) termina com..",
"rule_trigger_destination_account_nr_is_choice": "N\u00famero da conta de destino (IBAN) \u00e9..",
"rule_trigger_destination_account_nr_contains_choice": "N\u00famero da conta de destino (IBAN) cont\u00e9m..",
"rule_trigger_transaction_type_choice": "Transa\u00e7\u00e3o \u00e9 do tipo..",
"rule_trigger_category_is_choice": "A categoria \u00e9..",
"rule_trigger_amount_less_choice": "Quantia \u00e9 inferior a..",
"rule_trigger_amount_is_choice": "Quantia \u00e9..",
"rule_trigger_amount_more_choice": "Quantia \u00e9 mais do que..",
"rule_trigger_description_starts_choice": "Descri\u00e7\u00e3o come\u00e7a com..",
"rule_trigger_description_ends_choice": "Descri\u00e7\u00e3o termina com..",
"rule_trigger_description_contains_choice": "Descri\u00e7\u00e3o cont\u00e9m..",
"rule_trigger_description_is_choice": "Descri\u00e7\u00e3o \u00e9..",
"rule_trigger_date_on_choice": "Data da transa\u00e7\u00e3o \u00e9..",
"rule_trigger_date_before_choice": "A data da transa\u00e7\u00e3o \u00e9 anterior a...",
"rule_trigger_date_after_choice": "A data da transa\u00e7\u00e3o \u00e9 posterior a...",
"rule_trigger_created_at_on_choice": "Transa\u00e7\u00e3o foi feita em..",
"rule_trigger_updated_at_on_choice": "Transa\u00e7\u00e3o foi editada pela \u00faltima vez em..",
"rule_trigger_budget_is_choice": "O or\u00e7amento \u00e9..",
"rule_trigger_tag_is_choice": "Qualquer tag \u00e9..",
"rule_trigger_currency_is_choice": "A moeda da transa\u00e7\u00e3o \u00e9..",
"rule_trigger_foreign_currency_is_choice": "A moeda estrangeira da transa\u00e7\u00e3o \u00e9...",
"rule_trigger_has_attachments_choice": "Tem pelo menos essa quantidade de anexos",
"rule_trigger_has_no_category_choice": "N\u00e3o tem categoria",
"rule_trigger_has_any_category_choice": "Tem uma categoria (qualquer)",
"rule_trigger_has_no_budget_choice": "N\u00e3o tem or\u00e7amento",
"rule_trigger_has_any_budget_choice": "Tem um or\u00e7amento (qualquer)",
"rule_trigger_has_no_bill_choice": "N\u00e3o tem nenhuma conta",
"rule_trigger_has_any_bill_choice": "Tem uma conta (qualquer)",
"rule_trigger_has_no_tag_choice": "N\u00e3o tem tag(s)",
"rule_trigger_has_any_tag_choice": "Tem uma ou mais tags (qualquer)",
"rule_trigger_any_notes_choice": "Tem notas (qualquer)",
"rule_trigger_no_notes_choice": "N\u00e3o tem notas",
"rule_trigger_notes_is_choice": "As notas s\u00e3o..",
"rule_trigger_notes_contains_choice": "As notas cont\u00eam..",
"rule_trigger_notes_starts_choice": "As notas come\u00e7am com..",
"rule_trigger_notes_ends_choice": "As notas terminam com..",
"rule_trigger_bill_is_choice": "Conta \u00e9..",
"rule_trigger_external_id_is_choice": "ID externo \u00e9..",
"rule_trigger_internal_reference_is_choice": "Refer\u00eancia interna \u00e9..",
"rule_trigger_journal_id_choice": "ID do livro de transa\u00e7\u00e3o \u00e9..",
"rule_trigger_any_external_url_choice": "A transa\u00e7\u00e3o tem um link externo",
"rule_trigger_no_external_url_choice": "A transa\u00e7\u00e3o n\u00e3o tem um link externo",
"rule_trigger_id_choice": "O identificador da transa\u00e7\u00e3o \u00e9..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Limpar qualquer categoria",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Limpar qualquer or\u00e7amento",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Remover todas as tags",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Remover quaisquer notas",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Converter esta transfer\u00eancia em entrada",
"rule_action_convert_withdrawal_choice": "Converter esta transa\u00e7\u00e3o para uma sa\u00edda",
"rule_action_convert_transfer_choice": "Converter esta transa\u00e7\u00e3o para transfer\u00eancia",
"placeholder": "[Placeholder]",
"recurrences": "Transa\u00e7\u00f5es recorrentes",
"title_expenses": "Despesas",
"title_withdrawal": "Despesas",
"title_revenue": "Receitas \/ Renda",
"pref_1D": "Um dia",
"pref_1W": "Uma semana",
"pref_1M": "Um m\u00eas",
"pref_3M": "Trimestral",
"pref_6M": "Semestral",
"pref_1Y": "Um ano",
"repeat_freq_yearly": "anual",
"repeat_freq_half-year": "cada semestre",
"repeat_freq_quarterly": "trimestral",
"repeat_freq_monthly": "mensal",
"repeat_freq_weekly": "semanal",
"single_split": "Divis\u00e3o",
"asset_accounts": "Contas de ativo",
"expense_accounts": "Contas de despesas",
"liabilities_accounts": "Passivos",
"undefined_accounts": "Contas",
"name": "Nome",
"revenue_accounts": "Contas de receitas",
"description": "Descri\u00e7\u00e3o",
"category": "Categoria",
"title_deposit": "Receita \/ Renda",
"title_transfer": "Transfer\u00eancias",
"title_transfers": "Transfer\u00eancias",
"piggyBanks": "Cofrinhos",
"rules": "Regras",
"accounts": "Contas",
"categories": "Categorias",
"tags": "Tags",
"object_groups_page_title": "Grupos",
"reports": "Relat\u00f3rios",
"webhooks": "Webhooks",
"currencies": "Moedas",
"administration": "Administra\u00e7\u00e3o",
"profile": "Perfil",
"source_account": "Conta origem",
"destination_account": "Conta destino",
"amount": "Valor",
"date": "Data",
"time": "Hor\u00e1rio",
"preferences": "Prefer\u00eancias",
"transactions": "Transa\u00e7\u00f5es",
"balance": "Saldo",
"budgets": "Or\u00e7amentos",
"subscriptions": "Assinaturas",
"welcome_back": "O que est\u00e1 acontecendo?",
"bills_to_pay": "Contas a pagar",
"net_worth": "Valor L\u00edquido",
"pref_last365": "Ano passado",
"pref_last90": "\u00daltimos 90 dias",
"pref_last30": "\u00daltimos 30 dias",
"pref_last7": "\u00daltimos 7 dias",
"pref_YTD": "Ano at\u00e9 \u00e0 data",
"pref_QTD": "Trimestre at\u00e9 \u00e0 data",
"pref_MTD": "M\u00eas at\u00e9 a data"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "pt",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "Nome",
"amount_min": "Montante minimo",
"amount_max": "Montante maximo",
"url": "URL",
"title": "Titulo",
"first_date": "Primeira data",
"repetitions": "Repeticoes",
"description": "Descricao",
"iban": "IBAN",
"skip": "Pular",
"date": "Data"
},
"list": {
"name": "Nome",
"account_number": "N\u00famero de conta",
"currentBalance": "Saldo actual",
"lastActivity": "Ultima actividade",
"active": "Esta activo?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Or\u00e7amentos",
"subscriptions": "Subscri\u00e7\u00f5es",
"transactions": "Transa\u00e7\u00f5es",
"title_expenses": "Despesas",
"title_withdrawal": "Despesas",
"title_revenue": "Receita \/ renda",
"title_deposit": "Receita \/ renda",
"title_transfer": "Transfer\u00eancias",
"title_transfers": "Transfer\u00eancias",
"asset_accounts": "Conta de activos",
"expense_accounts": "Conta de despesas",
"revenue_accounts": "Conta de receitas",
"liabilities_accounts": "Passivos"
},
"firefly": {
"actions": "A\u00e7\u00f5es",
"edit": "Alterar",
"delete": "Apagar",
"reconcile": "Reconciliar",
"create_new_asset": "Criar nova conta de activos",
"confirm_action": "Confirmar a\u00e7\u00e3o",
"new_budget": "Novo or\u00e7amento",
"new_asset_account": "Nova conta de ativos",
"newTransfer": "Nova transfer\u00eancia",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Novo dep\u00f3sito",
"newWithdrawal": "Nova despesa",
"bills_paid": "Fatura pagas",
"left_to_spend": "Restante para gastar",
"no_budget": "(sem or\u00e7amento)",
"budgeted": "Or\u00e7amentado",
"spent": "Gasto",
"no_bill": "(sem fatura)",
"rule_trigger_source_account_starts_choice": "O nome da conta de origem come\u00e7a com..",
"rule_trigger_source_account_ends_choice": "O nome da conta de origem acaba com..",
"rule_trigger_source_account_is_choice": "O nome da conta de origem \u00e9..",
"rule_trigger_source_account_contains_choice": "Nome da conta de origem cont\u00e9m..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "O ID da conta de origem \u00e9 exatamente..",
"rule_trigger_destination_account_id_choice": "O ID da conta de destino \u00e9 exatamente..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "A conta de origem \u00e9 uma conta (dinheiro)",
"rule_trigger_destination_is_cash_choice": "A conta de destino \u00e9 uma conta (dinheiro)",
"rule_trigger_source_account_nr_starts_choice": "N\u00famero de conta de origem \/ IBAN come\u00e7a com..",
"rule_trigger_source_account_nr_ends_choice": "N\u00famero de conta de origem \/ IBAN acaba com..",
"rule_trigger_source_account_nr_is_choice": "N\u00famero de conta de origem \/ IBAN \u00e9..",
"rule_trigger_source_account_nr_contains_choice": "N\u00famero da conta de origem \/ IBAN cont\u00e9m..",
"rule_trigger_destination_account_starts_choice": "Nome da conta de destino come\u00e7a com..",
"rule_trigger_destination_account_ends_choice": "O nome da conta de destino acaba com..",
"rule_trigger_destination_account_is_choice": "Nome da conta de destino \u00e9..",
"rule_trigger_destination_account_contains_choice": "Nome da conta de destino cont\u00e9m..",
"rule_trigger_destination_account_nr_starts_choice": "N\u00famero da conta de destino \/ IBAN come\u00e7a com..",
"rule_trigger_destination_account_nr_ends_choice": "N\u00famero da conta de destino \/ IBAN acaba com..",
"rule_trigger_destination_account_nr_is_choice": "N\u00famero da conta de destino \/ IBAN \u00e9..",
"rule_trigger_destination_account_nr_contains_choice": "N\u00famero da conta de destino \/ IBAN cont\u00e9m..",
"rule_trigger_transaction_type_choice": "A transa\u00e7\u00e3o \u00e9 do tipo..",
"rule_trigger_category_is_choice": "A categoria \u00e9..",
"rule_trigger_amount_less_choice": "O montante \u00e9 menos de..",
"rule_trigger_amount_is_choice": "O montante \u00e9..",
"rule_trigger_amount_more_choice": "O montante \u00e9 maior que..",
"rule_trigger_description_starts_choice": "A descricao comeca com..",
"rule_trigger_description_ends_choice": "A descricao termina com..",
"rule_trigger_description_contains_choice": "A descricao contem..",
"rule_trigger_description_is_choice": "A descri\u00e7\u00e3o \u00e9..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Data de transac\u00e7\u00e3o \u00e9 anterior..",
"rule_trigger_date_after_choice": "Data da transac\u00e7\u00e3o \u00e9 ap\u00f3s..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "O or\u00e7amento \u00e9..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "A moeda da transa\u00e7\u00e3o \u00e9..",
"rule_trigger_foreign_currency_is_choice": "A moeda estrangeira da transac\u00e7\u00e3o \u00e9..",
"rule_trigger_has_attachments_choice": "Tem, pelo menos, esta quantidade de anexos",
"rule_trigger_has_no_category_choice": "N\u00e3o tem categoria",
"rule_trigger_has_any_category_choice": "Tem uma categoria (qualquer)",
"rule_trigger_has_no_budget_choice": "N\u00e3o tem or\u00e7amento",
"rule_trigger_has_any_budget_choice": "Tem um or\u00e7amento (qualquer)",
"rule_trigger_has_no_bill_choice": "N\u00e3o tem fatura",
"rule_trigger_has_any_bill_choice": "Tem (qualquer) fatura",
"rule_trigger_has_no_tag_choice": "N\u00e3o tem etiquetas",
"rule_trigger_has_any_tag_choice": "Tem uma ou mais etiquetas (quaisquer)",
"rule_trigger_any_notes_choice": "Tem notas (quaisquer)",
"rule_trigger_no_notes_choice": "N\u00e3o tem notas",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "A fatura \u00e9..",
"rule_trigger_external_id_is_choice": "O ID Externo \u00e9..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "O ID do di\u00e1rio de transa\u00e7\u00f5es \u00e9..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "ID da transa\u00e7\u00e3o \u00e9..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Limpar qualquer categoria",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Limpar qualquer or\u00e7amento",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Remover todas as etiquetas",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Remover todas as notas",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Converter a transac\u00e7\u00e3o para um dep\u00f3sito",
"rule_action_convert_withdrawal_choice": "Converter a transac\u00e7\u00e3o para um levantamento",
"rule_action_convert_transfer_choice": "Converter a transac\u00e7\u00e3o para uma transfer\u00eancia",
"placeholder": "[Placeholder]",
"recurrences": "Transa\u00e7\u00f5es recorrentes",
"title_expenses": "Despesas",
"title_withdrawal": "Despesas",
"title_revenue": "Receita \/ renda",
"pref_1D": "Um dia",
"pref_1W": "Uma semana",
"pref_1M": "Um m\u00eas",
"pref_3M": "Tr\u00eas meses (trimestre)",
"pref_6M": "Seis meses",
"pref_1Y": "Um ano",
"repeat_freq_yearly": "anualmente",
"repeat_freq_half-year": "todo meio ano",
"repeat_freq_quarterly": "trimestral",
"repeat_freq_monthly": "mensalmente",
"repeat_freq_weekly": "semanalmente",
"single_split": "Dividir",
"asset_accounts": "Conta de activos",
"expense_accounts": "Conta de despesas",
"liabilities_accounts": "Passivos",
"undefined_accounts": "Accounts",
"name": "Nome",
"revenue_accounts": "Conta de receitas",
"description": "Descricao",
"category": "Categoria",
"title_deposit": "Receita \/ renda",
"title_transfer": "Transfer\u00eancias",
"title_transfers": "Transfer\u00eancias",
"piggyBanks": "Mealheiros",
"rules": "Regras",
"accounts": "Contas",
"categories": "Categorias",
"tags": "Etiquetas",
"object_groups_page_title": "Grupos",
"reports": "Relat\u00f3rios",
"webhooks": "Webhooks",
"currencies": "Moedas",
"administration": "Administra\u00e7\u00e3o",
"profile": "Perfil",
"source_account": "Conta de origem",
"destination_account": "Conta de destino",
"amount": "Montante",
"date": "Data",
"time": "Hora",
"preferences": "Defini\u00e7\u00f5es",
"transactions": "Transa\u00e7\u00f5es",
"balance": "Saldo",
"budgets": "Or\u00e7amentos",
"subscriptions": "Subscri\u00e7\u00f5es",
"welcome_back": "Tudo bem?",
"bills_to_pay": "Faturas a pagar",
"net_worth": "Patrim\u00f3nio liquido",
"pref_last365": "Last year",
"pref_last90": "\u00daltimos 90 dias",
"pref_last30": "\u00daltimos 30 dias",
"pref_last7": "\u00daltimos 7 dias",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
"config": {
"html_language": "pt",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "Nome",
"amount_min": "Montante minimo",
"amount_max": "Montante maximo",
"url": "URL",
"title": "Titulo",
"first_date": "Primeira data",
"repetitions": "Repeticoes",
"description": "Descricao",
"iban": "IBAN",
"skip": "Pular",
"date": "Data"
},
"list": {
"name": "Nome",
"account_number": "N\u00famero de conta",
"currentBalance": "Saldo actual",
"lastActivity": "Ultima actividade",
"active": "Esta activo?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Or\u00e7amentos",
"subscriptions": "Subscri\u00e7\u00f5es",
"transactions": "Transa\u00e7\u00f5es",
"title_expenses": "Despesas",
"title_withdrawal": "Despesas",
"title_revenue": "Receita \/ renda",
"title_deposit": "Receita \/ renda",
"title_transfer": "Transfer\u00eancias",
"title_transfers": "Transfer\u00eancias",
"asset_accounts": "Conta de activos",
"expense_accounts": "Conta de despesas",
"revenue_accounts": "Conta de receitas",
"liabilities_accounts": "Passivos"
},
"firefly": {
"actions": "A\u00e7\u00f5es",
"edit": "Alterar",
"delete": "Apagar",
"reconcile": "Reconciliar",
"create_new_asset": "Criar nova conta de activos",
"confirm_action": "Confirmar a\u00e7\u00e3o",
"new_budget": "Novo or\u00e7amento",
"new_asset_account": "Nova conta de ativos",
"newTransfer": "Nova transfer\u00eancia",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Novo dep\u00f3sito",
"newWithdrawal": "Nova despesa",
"bills_paid": "Fatura pagas",
"left_to_spend": "Restante para gastar",
"no_budget": "(sem or\u00e7amento)",
"budgeted": "Or\u00e7amentado",
"spent": "Gasto",
"no_bill": "(sem fatura)",
"rule_trigger_source_account_starts_choice": "O nome da conta de origem come\u00e7a com..",
"rule_trigger_source_account_ends_choice": "O nome da conta de origem acaba com..",
"rule_trigger_source_account_is_choice": "O nome da conta de origem \u00e9..",
"rule_trigger_source_account_contains_choice": "Nome da conta de origem cont\u00e9m..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "O ID da conta de origem \u00e9 exatamente..",
"rule_trigger_destination_account_id_choice": "O ID da conta de destino \u00e9 exatamente..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "A conta de origem \u00e9 uma conta (dinheiro)",
"rule_trigger_destination_is_cash_choice": "A conta de destino \u00e9 uma conta (dinheiro)",
"rule_trigger_source_account_nr_starts_choice": "N\u00famero de conta de origem \/ IBAN come\u00e7a com..",
"rule_trigger_source_account_nr_ends_choice": "N\u00famero de conta de origem \/ IBAN acaba com..",
"rule_trigger_source_account_nr_is_choice": "N\u00famero de conta de origem \/ IBAN \u00e9..",
"rule_trigger_source_account_nr_contains_choice": "N\u00famero da conta de origem \/ IBAN cont\u00e9m..",
"rule_trigger_destination_account_starts_choice": "Nome da conta de destino come\u00e7a com..",
"rule_trigger_destination_account_ends_choice": "O nome da conta de destino acaba com..",
"rule_trigger_destination_account_is_choice": "Nome da conta de destino \u00e9..",
"rule_trigger_destination_account_contains_choice": "Nome da conta de destino cont\u00e9m..",
"rule_trigger_destination_account_nr_starts_choice": "N\u00famero da conta de destino \/ IBAN come\u00e7a com..",
"rule_trigger_destination_account_nr_ends_choice": "N\u00famero da conta de destino \/ IBAN acaba com..",
"rule_trigger_destination_account_nr_is_choice": "N\u00famero da conta de destino \/ IBAN \u00e9..",
"rule_trigger_destination_account_nr_contains_choice": "N\u00famero da conta de destino \/ IBAN cont\u00e9m..",
"rule_trigger_transaction_type_choice": "A transa\u00e7\u00e3o \u00e9 do tipo..",
"rule_trigger_category_is_choice": "A categoria \u00e9..",
"rule_trigger_amount_less_choice": "O montante \u00e9 menos de..",
"rule_trigger_amount_is_choice": "O montante \u00e9..",
"rule_trigger_amount_more_choice": "O montante \u00e9 maior que..",
"rule_trigger_description_starts_choice": "A descricao comeca com..",
"rule_trigger_description_ends_choice": "A descricao termina com..",
"rule_trigger_description_contains_choice": "A descricao contem..",
"rule_trigger_description_is_choice": "A descri\u00e7\u00e3o \u00e9..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Data de transac\u00e7\u00e3o \u00e9 anterior..",
"rule_trigger_date_after_choice": "Data da transac\u00e7\u00e3o \u00e9 ap\u00f3s..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "O or\u00e7amento \u00e9..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "A moeda da transa\u00e7\u00e3o \u00e9..",
"rule_trigger_foreign_currency_is_choice": "A moeda estrangeira da transac\u00e7\u00e3o \u00e9..",
"rule_trigger_has_attachments_choice": "Tem, pelo menos, esta quantidade de anexos",
"rule_trigger_has_no_category_choice": "N\u00e3o tem categoria",
"rule_trigger_has_any_category_choice": "Tem uma categoria (qualquer)",
"rule_trigger_has_no_budget_choice": "N\u00e3o tem or\u00e7amento",
"rule_trigger_has_any_budget_choice": "Tem um or\u00e7amento (qualquer)",
"rule_trigger_has_no_bill_choice": "N\u00e3o tem fatura",
"rule_trigger_has_any_bill_choice": "Tem (qualquer) fatura",
"rule_trigger_has_no_tag_choice": "N\u00e3o tem etiquetas",
"rule_trigger_has_any_tag_choice": "Tem uma ou mais etiquetas (quaisquer)",
"rule_trigger_any_notes_choice": "Tem notas (quaisquer)",
"rule_trigger_no_notes_choice": "N\u00e3o tem notas",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "A fatura \u00e9..",
"rule_trigger_external_id_is_choice": "O ID Externo \u00e9..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "O ID do di\u00e1rio de transa\u00e7\u00f5es \u00e9..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "ID da transa\u00e7\u00e3o \u00e9..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Limpar qualquer categoria",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Limpar qualquer or\u00e7amento",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Remover todas as etiquetas",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Remover todas as notas",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Converter a transac\u00e7\u00e3o para um dep\u00f3sito",
"rule_action_convert_withdrawal_choice": "Converter a transac\u00e7\u00e3o para um levantamento",
"rule_action_convert_transfer_choice": "Converter a transac\u00e7\u00e3o para uma transfer\u00eancia",
"placeholder": "[Placeholder]",
"recurrences": "Transa\u00e7\u00f5es recorrentes",
"title_expenses": "Despesas",
"title_withdrawal": "Despesas",
"title_revenue": "Receita \/ renda",
"pref_1D": "Um dia",
"pref_1W": "Uma semana",
"pref_1M": "Um m\u00eas",
"pref_3M": "Tr\u00eas meses (trimestre)",
"pref_6M": "Seis meses",
"pref_1Y": "Um ano",
"repeat_freq_yearly": "anualmente",
"repeat_freq_half-year": "todo meio ano",
"repeat_freq_quarterly": "trimestral",
"repeat_freq_monthly": "mensalmente",
"repeat_freq_weekly": "semanalmente",
"single_split": "Dividir",
"asset_accounts": "Conta de activos",
"expense_accounts": "Conta de despesas",
"liabilities_accounts": "Passivos",
"undefined_accounts": "Accounts",
"name": "Nome",
"revenue_accounts": "Conta de receitas",
"description": "Descricao",
"category": "Categoria",
"title_deposit": "Receita \/ renda",
"title_transfer": "Transfer\u00eancias",
"title_transfers": "Transfer\u00eancias",
"piggyBanks": "Mealheiros",
"rules": "Regras",
"accounts": "Contas",
"categories": "Categorias",
"tags": "Etiquetas",
"object_groups_page_title": "Grupos",
"reports": "Relat\u00f3rios",
"webhooks": "Webhooks",
"currencies": "Moedas",
"administration": "Administra\u00e7\u00e3o",
"profile": "Perfil",
"source_account": "Conta de origem",
"destination_account": "Conta de destino",
"amount": "Montante",
"date": "Data",
"time": "Hora",
"preferences": "Defini\u00e7\u00f5es",
"transactions": "Transa\u00e7\u00f5es",
"balance": "Saldo",
"budgets": "Or\u00e7amentos",
"subscriptions": "Subscri\u00e7\u00f5es",
"welcome_back": "Tudo bem?",
"bills_to_pay": "Faturas a pagar",
"net_worth": "Patrim\u00f3nio liquido",
"pref_last365": "Last year",
"pref_last90": "\u00daltimos 90 dias",
"pref_last30": "\u00daltimos 30 dias",
"pref_last7": "\u00daltimos 7 dias",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "ro",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "Nume",
"amount_min": "Suma minim\u0103",
"amount_max": "suma maxim\u0103",
"url": "URL",
"title": "Titlu",
"first_date": "Prima dat\u0103",
"repetitions": "Repet\u0103ri",
"description": "Descriere",
"iban": "IBAN",
"skip": "Sari peste",
"date": "Dat\u0103"
},
"list": {
"name": "Nume",
"account_number": "Account number",
"currentBalance": "Sold curent",
"lastActivity": "Ultima activitate",
"active": "Este activ?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budgets",
"subscriptions": "Subscriptions",
"transactions": "Transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"revenue_accounts": "Revenue accounts",
"liabilities_accounts": "Liabilities"
},
"firefly": {
"actions": "Ac\u021biuni",
"edit": "Editeaz\u0103",
"delete": "\u0218terge",
"reconcile": "Reconcilia",
"create_new_asset": "Crea\u021bi un nou cont de active",
"confirm_action": "Confirm action",
"new_budget": "Buget nou",
"new_asset_account": "Cont nou de activ",
"newTransfer": "Transfer nou",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Depozit nou",
"newWithdrawal": "Cheltuieli noi",
"bills_paid": "Facturile pl\u0103tite",
"left_to_spend": "Ramas de cheltuit",
"no_budget": "(nici un buget)",
"budgeted": "Bugetat",
"spent": "Cheltuit",
"no_bill": "(f\u0103r\u0103 factur\u0103)",
"rule_trigger_source_account_starts_choice": "Numele contului surs\u0103 \u00eencepe cu..",
"rule_trigger_source_account_ends_choice": "Numele contului surs\u0103 se termin\u0103 cu..",
"rule_trigger_source_account_is_choice": "Numele contului surs\u0103 este..",
"rule_trigger_source_account_contains_choice": "Numele contului surs\u0103 con\u021bine..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "ID-ul contului surs\u0103 este exact..",
"rule_trigger_destination_account_id_choice": "ID-ul contului destina\u021biei este exact..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Contul surs\u0103 este (numerar)",
"rule_trigger_destination_is_cash_choice": "Contul destina\u021biei este (numerar)",
"rule_trigger_source_account_nr_starts_choice": "Num\u0103rul contului surs\u0103\/IBAN \u00eencepe cu..",
"rule_trigger_source_account_nr_ends_choice": "Num\u0103rul contului surs\u0103\/ IBAN se \u00eencheie cu..",
"rule_trigger_source_account_nr_is_choice": "Num\u0103rul contului surs\u0103\/ IBAN este..",
"rule_trigger_source_account_nr_contains_choice": "Num\u0103rul contului surs\u0103\/ IBAN con\u021bine..",
"rule_trigger_destination_account_starts_choice": "Numele contului de destina\u021bie \u00eencepe cu..",
"rule_trigger_destination_account_ends_choice": "Numele contului de destina\u021bie se \u00eencheie cu..",
"rule_trigger_destination_account_is_choice": "Numele contului destina\u021bie este..",
"rule_trigger_destination_account_contains_choice": "Numele contului destina\u021biei con\u021bine..",
"rule_trigger_destination_account_nr_starts_choice": "Num\u0103rul contului destina\u021biei\/IBAN \u00eencepe cu..",
"rule_trigger_destination_account_nr_ends_choice": "Num\u0103rul contului de destina\u021bie\/IBAN se \u00eencheie cu..",
"rule_trigger_destination_account_nr_is_choice": "Num\u0103rul contului destina\u021biei\/IBAN este..",
"rule_trigger_destination_account_nr_contains_choice": "Num\u0103rul contului de destina\u021bie\/IBAN con\u021bine..",
"rule_trigger_transaction_type_choice": "Tranzac\u021bia este de tip..",
"rule_trigger_category_is_choice": "Categoria este..",
"rule_trigger_amount_less_choice": "Suma este mai mic\u0103 dec\u00e2t..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Suma este mai mare dec\u00e2t..",
"rule_trigger_description_starts_choice": "Descrierea \u00eencepe cu..",
"rule_trigger_description_ends_choice": "Descrierea se termin\u0103 cu..",
"rule_trigger_description_contains_choice": "Descrierea con\u021bine..",
"rule_trigger_description_is_choice": "Descrierea este..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Data tranzac\u021biei este dinainte..",
"rule_trigger_date_after_choice": "Data tranzac\u021biei este dup\u0103..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Bugetul este..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Moneda tranzac\u021biei este..",
"rule_trigger_foreign_currency_is_choice": "Tranzac\u021bia valutar\u0103 este..",
"rule_trigger_has_attachments_choice": "Are cel pu\u021bin at\u00e2tea ata\u0219amente",
"rule_trigger_has_no_category_choice": "Nu are nici o categorie",
"rule_trigger_has_any_category_choice": "Are o (orice) categorie",
"rule_trigger_has_no_budget_choice": "Nu are niciun buget",
"rule_trigger_has_any_budget_choice": "Are un (orice) buget",
"rule_trigger_has_no_bill_choice": "Nu are factur\u0103",
"rule_trigger_has_any_bill_choice": "Are o (orice) factur\u0103",
"rule_trigger_has_no_tag_choice": "Nu are etichet\u0103 (e)",
"rule_trigger_has_any_tag_choice": "Are una sau mai multe etichete",
"rule_trigger_any_notes_choice": "Are (orice) noti\u021be",
"rule_trigger_no_notes_choice": "Nu are noti\u021be",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Factura este..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "ID-ul jurnalului de tranzac\u021bie este..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "\u0218terge\u021bi any category",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "\u0218terge\u021bi any budget",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Elimina\u021bi toate etichetele",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Elimina\u021bi orice noti\u021b\u0103",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Transforma\u021bi tranzac\u021bia \u00eentr-un depozit",
"rule_action_convert_withdrawal_choice": "Transforma\u021bi tranzac\u021bia \u00eentr-o retragere",
"rule_action_convert_transfer_choice": "Transforma\u021bi tranzac\u021bia \u00eentr-un transfer",
"placeholder": "[Placeholder]",
"recurrences": "Tranzac\u021bii recurente",
"title_expenses": "Cheltuieli",
"title_withdrawal": "Cheltuieli",
"title_revenue": "Venituri",
"pref_1D": "O zi",
"pref_1W": "O saptam\u00e2n\u0103",
"pref_1M": "O lun\u0103",
"pref_3M": "Trei luni (trimestru)",
"pref_6M": "\u0218ase luni",
"pref_1Y": "Un an",
"repeat_freq_yearly": "anual",
"repeat_freq_half-year": "fiecare jum\u0103tate de an",
"repeat_freq_quarterly": "trimestrial",
"repeat_freq_monthly": "lunar",
"repeat_freq_weekly": "s\u0103pt\u0103m\u00e2nal",
"single_split": "\u00cemparte",
"asset_accounts": "Conturile de active",
"expense_accounts": "Conturi de cheltuieli",
"liabilities_accounts": "Provizioane",
"undefined_accounts": "Accounts",
"name": "Nume",
"revenue_accounts": "Conturi de venituri",
"description": "Descriere",
"category": "Categorie",
"title_deposit": "Venituri",
"title_transfer": "Transferuri",
"title_transfers": "Transferuri",
"piggyBanks": "Pu\u0219culi\u021b\u0103",
"rules": "Reguli",
"accounts": "Conturi",
"categories": "Categorii",
"tags": "Etichete",
"object_groups_page_title": "Grupuri",
"reports": "Rapoarte",
"webhooks": "Webhook-uri",
"currencies": "Monede",
"administration": "Administrare",
"profile": "Profil",
"source_account": "Contul surs\u0103",
"destination_account": "Contul de destina\u021bie",
"amount": "Sum\u0103",
"date": "Dat\u0103",
"time": "Timp",
"preferences": "Preferin\u021be",
"transactions": "Tranzac\u021bii",
"balance": "Balant\u0103",
"budgets": "Buget",
"subscriptions": "Subscriptions",
"welcome_back": "Ce se red\u0103?",
"bills_to_pay": "Facturile de plat\u0103",
"net_worth": "Valoarea net\u0103",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
"config": {
"html_language": "ro",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "Nume",
"amount_min": "Suma minim\u0103",
"amount_max": "suma maxim\u0103",
"url": "URL",
"title": "Titlu",
"first_date": "Prima dat\u0103",
"repetitions": "Repet\u0103ri",
"description": "Descriere",
"iban": "IBAN",
"skip": "Sari peste",
"date": "Dat\u0103"
},
"list": {
"name": "Nume",
"account_number": "Account number",
"currentBalance": "Sold curent",
"lastActivity": "Ultima activitate",
"active": "Este activ?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budgets",
"subscriptions": "Subscriptions",
"transactions": "Transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"revenue_accounts": "Revenue accounts",
"liabilities_accounts": "Liabilities"
},
"firefly": {
"actions": "Ac\u021biuni",
"edit": "Editeaz\u0103",
"delete": "\u0218terge",
"reconcile": "Reconcilia",
"create_new_asset": "Crea\u021bi un nou cont de active",
"confirm_action": "Confirm action",
"new_budget": "Buget nou",
"new_asset_account": "Cont nou de activ",
"newTransfer": "Transfer nou",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Depozit nou",
"newWithdrawal": "Cheltuieli noi",
"bills_paid": "Facturile pl\u0103tite",
"left_to_spend": "Ramas de cheltuit",
"no_budget": "(nici un buget)",
"budgeted": "Bugetat",
"spent": "Cheltuit",
"no_bill": "(f\u0103r\u0103 factur\u0103)",
"rule_trigger_source_account_starts_choice": "Numele contului surs\u0103 \u00eencepe cu..",
"rule_trigger_source_account_ends_choice": "Numele contului surs\u0103 se termin\u0103 cu..",
"rule_trigger_source_account_is_choice": "Numele contului surs\u0103 este..",
"rule_trigger_source_account_contains_choice": "Numele contului surs\u0103 con\u021bine..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "ID-ul contului surs\u0103 este exact..",
"rule_trigger_destination_account_id_choice": "ID-ul contului destina\u021biei este exact..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Contul surs\u0103 este (numerar)",
"rule_trigger_destination_is_cash_choice": "Contul destina\u021biei este (numerar)",
"rule_trigger_source_account_nr_starts_choice": "Num\u0103rul contului surs\u0103\/IBAN \u00eencepe cu..",
"rule_trigger_source_account_nr_ends_choice": "Num\u0103rul contului surs\u0103\/ IBAN se \u00eencheie cu..",
"rule_trigger_source_account_nr_is_choice": "Num\u0103rul contului surs\u0103\/ IBAN este..",
"rule_trigger_source_account_nr_contains_choice": "Num\u0103rul contului surs\u0103\/ IBAN con\u021bine..",
"rule_trigger_destination_account_starts_choice": "Numele contului de destina\u021bie \u00eencepe cu..",
"rule_trigger_destination_account_ends_choice": "Numele contului de destina\u021bie se \u00eencheie cu..",
"rule_trigger_destination_account_is_choice": "Numele contului destina\u021bie este..",
"rule_trigger_destination_account_contains_choice": "Numele contului destina\u021biei con\u021bine..",
"rule_trigger_destination_account_nr_starts_choice": "Num\u0103rul contului destina\u021biei\/IBAN \u00eencepe cu..",
"rule_trigger_destination_account_nr_ends_choice": "Num\u0103rul contului de destina\u021bie\/IBAN se \u00eencheie cu..",
"rule_trigger_destination_account_nr_is_choice": "Num\u0103rul contului destina\u021biei\/IBAN este..",
"rule_trigger_destination_account_nr_contains_choice": "Num\u0103rul contului de destina\u021bie\/IBAN con\u021bine..",
"rule_trigger_transaction_type_choice": "Tranzac\u021bia este de tip..",
"rule_trigger_category_is_choice": "Categoria este..",
"rule_trigger_amount_less_choice": "Suma este mai mic\u0103 dec\u00e2t..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Suma este mai mare dec\u00e2t..",
"rule_trigger_description_starts_choice": "Descrierea \u00eencepe cu..",
"rule_trigger_description_ends_choice": "Descrierea se termin\u0103 cu..",
"rule_trigger_description_contains_choice": "Descrierea con\u021bine..",
"rule_trigger_description_is_choice": "Descrierea este..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Data tranzac\u021biei este dinainte..",
"rule_trigger_date_after_choice": "Data tranzac\u021biei este dup\u0103..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Bugetul este..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Moneda tranzac\u021biei este..",
"rule_trigger_foreign_currency_is_choice": "Tranzac\u021bia valutar\u0103 este..",
"rule_trigger_has_attachments_choice": "Are cel pu\u021bin at\u00e2tea ata\u0219amente",
"rule_trigger_has_no_category_choice": "Nu are nici o categorie",
"rule_trigger_has_any_category_choice": "Are o (orice) categorie",
"rule_trigger_has_no_budget_choice": "Nu are niciun buget",
"rule_trigger_has_any_budget_choice": "Are un (orice) buget",
"rule_trigger_has_no_bill_choice": "Nu are factur\u0103",
"rule_trigger_has_any_bill_choice": "Are o (orice) factur\u0103",
"rule_trigger_has_no_tag_choice": "Nu are etichet\u0103 (e)",
"rule_trigger_has_any_tag_choice": "Are una sau mai multe etichete",
"rule_trigger_any_notes_choice": "Are (orice) noti\u021be",
"rule_trigger_no_notes_choice": "Nu are noti\u021be",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Factura este..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "ID-ul jurnalului de tranzac\u021bie este..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "\u0218terge\u021bi any category",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "\u0218terge\u021bi any budget",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Elimina\u021bi toate etichetele",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Elimina\u021bi orice noti\u021b\u0103",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Transforma\u021bi tranzac\u021bia \u00eentr-un depozit",
"rule_action_convert_withdrawal_choice": "Transforma\u021bi tranzac\u021bia \u00eentr-o retragere",
"rule_action_convert_transfer_choice": "Transforma\u021bi tranzac\u021bia \u00eentr-un transfer",
"placeholder": "[Placeholder]",
"recurrences": "Tranzac\u021bii recurente",
"title_expenses": "Cheltuieli",
"title_withdrawal": "Cheltuieli",
"title_revenue": "Venituri",
"pref_1D": "O zi",
"pref_1W": "O saptam\u00e2n\u0103",
"pref_1M": "O lun\u0103",
"pref_3M": "Trei luni (trimestru)",
"pref_6M": "\u0218ase luni",
"pref_1Y": "Un an",
"repeat_freq_yearly": "anual",
"repeat_freq_half-year": "fiecare jum\u0103tate de an",
"repeat_freq_quarterly": "trimestrial",
"repeat_freq_monthly": "lunar",
"repeat_freq_weekly": "s\u0103pt\u0103m\u00e2nal",
"single_split": "\u00cemparte",
"asset_accounts": "Conturile de active",
"expense_accounts": "Conturi de cheltuieli",
"liabilities_accounts": "Provizioane",
"undefined_accounts": "Accounts",
"name": "Nume",
"revenue_accounts": "Conturi de venituri",
"description": "Descriere",
"category": "Categorie",
"title_deposit": "Venituri",
"title_transfer": "Transferuri",
"title_transfers": "Transferuri",
"piggyBanks": "Pu\u0219culi\u021b\u0103",
"rules": "Reguli",
"accounts": "Conturi",
"categories": "Categorii",
"tags": "Etichete",
"object_groups_page_title": "Grupuri",
"reports": "Rapoarte",
"webhooks": "Webhook-uri",
"currencies": "Monede",
"administration": "Administrare",
"profile": "Profil",
"source_account": "Contul surs\u0103",
"destination_account": "Contul de destina\u021bie",
"amount": "Sum\u0103",
"date": "Dat\u0103",
"time": "Timp",
"preferences": "Preferin\u021be",
"transactions": "Tranzac\u021bii",
"balance": "Balant\u0103",
"budgets": "Buget",
"subscriptions": "Subscriptions",
"welcome_back": "Ce se red\u0103?",
"bills_to_pay": "Facturile de plat\u0103",
"net_worth": "Valoarea net\u0103",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "ru",
"month_and_day_fns": "d MMMM yyyy"
},
"form": {
"name": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435",
"amount_min": "\u041c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0443\u043c\u043c\u0430",
"amount_max": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0443\u043c\u043c\u0430",
"url": "\u0421\u0441\u044b\u043b\u043a\u0430",
"title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
"first_date": "\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u0430\u044f \u0434\u0430\u0442\u0430",
"repetitions": "\u041f\u043e\u0432\u0442\u043e\u0440\u0435\u043d\u0438\u044f",
"description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
"iban": "IBAN",
"skip": "\u041f\u0440\u043e\u043f\u0443\u0441\u0442\u0438\u0442\u044c",
"date": "\u0414\u0430\u0442\u0430"
},
"list": {
"name": "\u0418\u043c\u044f",
"account_number": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430",
"currentBalance": "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u0431\u0430\u043b\u0430\u043d\u0441",
"lastActivity": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c",
"active": "\u0410\u043a\u0442\u0438\u0432\u0435\u043d?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "\u0411\u044e\u0434\u0436\u0435\u0442",
"subscriptions": "\u041f\u043e\u0434\u043f\u0438\u0441\u043a\u0438",
"transactions": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
"title_expenses": "\u0420\u0430\u0441\u0445\u043e\u0434\u044b",
"title_withdrawal": "\u0420\u0430\u0441\u0445\u043e\u0434\u044b",
"title_revenue": "\u0414\u043e\u0445\u043e\u0434\u044b \/ \u043f\u043e\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u044f",
"title_deposit": "\u0414\u043e\u0445\u043e\u0434\u044b \/ \u043f\u043e\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u044f",
"title_transfer": "\u041f\u0435\u0440\u0435\u0432\u043e\u0434",
"title_transfers": "\u041f\u0435\u0440\u0435\u0432\u043e\u0434\u044b",
"asset_accounts": "\u041e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u0441\u0447\u0435\u0442\u0430",
"expense_accounts": "\u0421\u0447\u0435\u0442\u0430 \u0440\u0430\u0441\u0445\u043e\u0434\u043e\u0432",
"revenue_accounts": "\u0421\u0447\u0435\u0442\u0430 \u0434\u043e\u0445\u043e\u0434\u043e\u0432",
"liabilities_accounts": "\u0414\u043e\u043b\u0433\u0438"
},
"firefly": {
"actions": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
"edit": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c",
"delete": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c",
"reconcile": "\u0421\u0432\u0435\u0440\u0438\u0442\u044c",
"create_new_asset": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0441\u0447\u0451\u0442",
"confirm_action": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435",
"new_budget": "\u041d\u043e\u0432\u044b\u0439 \u0431\u044e\u0434\u0436\u0435\u0442",
"new_asset_account": "\u041d\u043e\u0432\u044b\u0439 \u0441\u0447\u0435\u0442 \u0430\u043a\u0442\u0438\u0432\u043e\u0432",
"newTransfer": "\u041d\u043e\u0432\u044b\u0439 \u043f\u0435\u0440\u0435\u0432\u043e\u0434",
"submission_options": "Submission options",
"apply_rules_checkbox": "\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u0438\u043b\u0430",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "\u041d\u043e\u0432\u044b\u0439 \u0434\u043e\u0445\u043e\u0434",
"newWithdrawal": "\u041d\u043e\u0432\u044b\u0439 \u0440\u0430\u0441\u0445\u043e\u0434",
"bills_paid": "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u0441\u0447\u0435\u0442\u0430",
"left_to_spend": "\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u043f\u043e\u0442\u0440\u0430\u0442\u0438\u0442\u044c",
"no_budget": "(\u0432\u043d\u0435 \u0431\u044e\u0434\u0436\u0435\u0442\u0430)",
"budgeted": "\u0417\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0432 \u0431\u044e\u0434\u0436\u0435\u0442\u0435",
"spent": "\u0420\u0430\u0441\u0445\u043e\u0434",
"no_bill": "(\u043d\u0435\u0442 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430 \u043e\u043f\u043b\u0430\u0442\u0443)",
"rule_trigger_source_account_starts_choice": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u0441..",
"rule_trigger_source_account_ends_choice": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u0430..",
"rule_trigger_source_account_is_choice": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430..",
"rule_trigger_source_account_contains_choice": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "ID \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u0435\u0442 \u0441..",
"rule_trigger_destination_account_id_choice": "ID \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u0435\u0442 \u0441..",
"rule_trigger_account_is_cash_choice": "\u041b\u044e\u0431\u043e\u0439 \u0441\u0447\u0435\u0442 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0430\u043b\u0438\u0447\u043d\u044b\u043c\u0438",
"rule_trigger_source_is_cash_choice": "\u0421\u0447\u0451\u0442-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a - \u044d\u0442\u043e (\u043d\u0430\u043b\u0438\u0447\u043d\u044b\u0439) \u0441\u0447\u0451\u0442",
"rule_trigger_destination_is_cash_choice": "\u0421\u0447\u0451\u0442 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f - \u044d\u0442\u043e (\u043d\u0430\u043b\u0438\u0447\u043d\u044b\u0439) \u0441\u0447\u0451\u0442",
"rule_trigger_source_account_nr_starts_choice": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \/ IBAN \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u0441..",
"rule_trigger_source_account_nr_ends_choice": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \/ IBAN \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u0430..",
"rule_trigger_source_account_nr_is_choice": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \/ IBAN..",
"rule_trigger_source_account_nr_contains_choice": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \/ IBAN \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442..",
"rule_trigger_destination_account_starts_choice": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u0441..",
"rule_trigger_destination_account_ends_choice": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u0430..",
"rule_trigger_destination_account_is_choice": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f..",
"rule_trigger_destination_account_contains_choice": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442..",
"rule_trigger_destination_account_nr_starts_choice": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \/ IBAN \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u0441..",
"rule_trigger_destination_account_nr_ends_choice": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \/ IBAN \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u0430..",
"rule_trigger_destination_account_nr_is_choice": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \/ IBAN..",
"rule_trigger_destination_account_nr_contains_choice": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \/ IBAN \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442..",
"rule_trigger_transaction_type_choice": "\u0422\u0438\u043f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 =",
"rule_trigger_category_is_choice": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f =",
"rule_trigger_amount_less_choice": "\u0421\u0443\u043c\u043c\u0430 \u043c\u0435\u043d\u044c\u0448\u0435, \u0447\u0435\u043c...",
"rule_trigger_amount_is_choice": "\u0421\u0443\u043c\u043c\u0430..",
"rule_trigger_amount_more_choice": "\u0421\u0443\u043c\u043c\u0430 \u0431\u043e\u043b\u044c\u0448\u0435, \u0447\u0435\u043c...",
"rule_trigger_description_starts_choice": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u0441...",
"rule_trigger_description_ends_choice": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u0430...",
"rule_trigger_description_contains_choice": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442...",
"rule_trigger_description_is_choice": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 =",
"rule_trigger_date_on_choice": "\u0414\u0430\u0442\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438..",
"rule_trigger_date_before_choice": "\u0414\u0430\u0442\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 \u0434\u043e...",
"rule_trigger_date_after_choice": "\u0414\u0430\u0442\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 \u043f\u043e\u0441\u043b\u0435..",
"rule_trigger_created_at_on_choice": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0430..",
"rule_trigger_updated_at_on_choice": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438..",
"rule_trigger_budget_is_choice": "\u0411\u044e\u0434\u0436\u0435\u0442 =",
"rule_trigger_tag_is_choice": "\u041b\u044e\u0431\u043e\u0439 \u0442\u0435\u0433..",
"rule_trigger_currency_is_choice": "\u0412\u0430\u043b\u044e\u0442\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 -",
"rule_trigger_foreign_currency_is_choice": "\u0412\u0430\u043b\u044e\u0442\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 -",
"rule_trigger_has_attachments_choice": "\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432\u043b\u043e\u0436\u0435\u043d\u0438\u0439",
"rule_trigger_has_no_category_choice": "\u041d\u0435\u0442 \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438",
"rule_trigger_has_any_category_choice": "\u0421\u0432\u044f\u0437\u0430\u043d\u0430 \u0441 (\u043b\u044e\u0431\u043e\u0439) \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0435\u0439",
"rule_trigger_has_no_budget_choice": "\u041d\u0435\u0442 \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u043e\u0433\u043e \u0431\u044e\u0434\u0436\u0435\u0442\u0430",
"rule_trigger_has_any_budget_choice": "\u0421\u0432\u044f\u0437\u0430\u043d\u0430 \u0441 (\u043b\u044e\u0431\u044b\u043c) \u0431\u044e\u0434\u0436\u0435\u0442\u043e\u043c",
"rule_trigger_has_no_bill_choice": "\u041d\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0441\u0447\u0435\u0442\u043e\u0432",
"rule_trigger_has_any_bill_choice": "\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u0442 (\u043b\u044e\u0431\u043e\u0439) \u0441\u0447\u0451\u0442",
"rule_trigger_has_no_tag_choice": "\u041d\u0435\u0442 \u043c\u0435\u0442\u043e\u043a",
"rule_trigger_has_any_tag_choice": "\u0415\u0441\u0442\u044c \u043e\u0434\u043d\u0430 \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e (\u043b\u044e\u0431\u044b\u0445) \u043c\u0435\u0442\u043e\u043a",
"rule_trigger_any_notes_choice": "\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u0442 (\u043b\u044e\u0431\u044b\u0435) \u0437\u0430\u043c\u0435\u0442\u043a\u0438",
"rule_trigger_no_notes_choice": "\u041d\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0437\u0430\u043c\u0435\u0442\u043e\u043a",
"rule_trigger_notes_is_choice": "\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044f..",
"rule_trigger_notes_contains_choice": "\u0417\u0430\u043c\u0435\u0442\u043a\u0438 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442..",
"rule_trigger_notes_starts_choice": "\u0417\u0430\u043c\u0435\u0442\u043a\u0438 \u043d\u0430\u0447\u0438\u043d\u0430\u044e\u0442\u0441\u044f \u0441..",
"rule_trigger_notes_ends_choice": "\u0417\u0430\u043c\u0435\u0442\u043a\u0438 \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u044e\u0442\u0441\u044f \u043d\u0430..",
"rule_trigger_bill_is_choice": "\u0421\u0447\u0451\u0442 \u043d\u0430 \u043e\u043f\u043b\u0430\u0442\u0443 = ..",
"rule_trigger_external_id_is_choice": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 ID..",
"rule_trigger_internal_reference_is_choice": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u044f\u044f \u0441\u0441\u044b\u043b\u043a\u0430..",
"rule_trigger_journal_id_choice": "ID \u0436\u0443\u0440\u043d\u0430\u043b\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0439..",
"rule_trigger_any_external_url_choice": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \u0438\u043c\u0435\u0435\u0442 \u0432\u043d\u0435\u0448\u043d\u0438\u0439 URL",
"rule_trigger_no_external_url_choice": "\u0423 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 \u043d\u0435\u0442 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e URL",
"rule_trigger_id_choice": "ID \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043b\u044e\u0431\u0443\u044e \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044e",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043b\u044e\u0431\u043e\u0439 \u0431\u044e\u0434\u0436\u0435\u0442",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0441\u0435 \u043c\u0435\u0442\u043a\u0438...",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043b\u044e\u0431\u044b\u0435 \u0437\u0430\u043c\u0435\u0442\u043a\u0438",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044e \u0432 \u0434\u043e\u0445\u043e\u0434",
"rule_action_convert_withdrawal_choice": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044e \u0432 \u0440\u0430\u0441\u0445\u043e\u0434",
"rule_action_convert_transfer_choice": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044e \u0432 \u043f\u0435\u0440\u0435\u0432\u043e\u0434",
"placeholder": "[Placeholder]",
"recurrences": "\u041f\u043e\u0432\u0442\u043e\u0440\u044f\u044e\u0449\u0438\u0435\u0441\u044f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
"title_expenses": "\u0420\u0430\u0441\u0445\u043e\u0434\u044b",
"title_withdrawal": "\u0420\u0430\u0441\u0445\u043e\u0434\u044b",
"title_revenue": "\u0414\u043e\u0445\u043e\u0434",
"pref_1D": "\u041e\u0434\u0438\u043d \u0434\u0435\u043d\u044c",
"pref_1W": "\u041e\u0434\u043d\u0430 \u043d\u0435\u0434\u0435\u043b\u044f",
"pref_1M": "\u041e\u0434\u0438\u043d \u043c\u0435\u0441\u044f\u0446",
"pref_3M": "\u0422\u0440\u0438 \u043c\u0435\u0441\u044f\u0446\u0430 (\u043a\u0432\u0430\u0440\u0442\u0430\u043b)",
"pref_6M": "\u0428\u0435\u0441\u0442\u044c \u043c\u0435\u0441\u044f\u0446\u0435\u0432",
"pref_1Y": "\u041e\u0434\u0438\u043d \u0433\u043e\u0434",
"repeat_freq_yearly": "\u0435\u0436\u0435\u0433\u043e\u0434\u043d\u043e",
"repeat_freq_half-year": "\u0440\u0430\u0437 \u0432 \u043f\u043e\u043b\u0433\u043e\u0434\u0430",
"repeat_freq_quarterly": "\u0440\u0430\u0437 \u0432 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"repeat_freq_monthly": "\u0435\u0436\u0435\u043c\u0435\u0441\u044f\u0447\u043d\u043e",
"repeat_freq_weekly": "\u0435\u0436\u0435\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u043e",
"single_split": "\u0420\u0430\u0437\u0434\u0435\u043b\u0451\u043d\u043d\u0430\u044f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f",
"asset_accounts": "\u041e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u0441\u0447\u0435\u0442\u0430",
"expense_accounts": "\u0421\u0447\u0435\u0442\u0430 \u0440\u0430\u0441\u0445\u043e\u0434\u043e\u0432",
"liabilities_accounts": "\u0414\u043e\u043b\u0433\u0438",
"undefined_accounts": "\u0423\u0447\u0451\u0442\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438",
"name": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435",
"revenue_accounts": "\u0421\u0447\u0435\u0442\u0430 \u0434\u043e\u0445\u043e\u0434\u043e\u0432",
"description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
"category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
"title_deposit": "\u0414\u043e\u0445\u043e\u0434",
"title_transfer": "\u041f\u0435\u0440\u0435\u0432\u043e\u0434\u044b",
"title_transfers": "\u041f\u0435\u0440\u0435\u0432\u043e\u0434\u044b",
"piggyBanks": "\u041a\u043e\u043f\u0438\u043b\u043a\u0438",
"rules": "\u041f\u0440\u0430\u0432\u0438\u043b\u0430",
"accounts": "\u0421\u0447\u0435\u0442\u0430",
"categories": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438",
"tags": "\u041c\u0435\u0442\u043a\u0438",
"object_groups_page_title": "\u0413\u0440\u0443\u043f\u043f\u044b",
"reports": "\u041e\u0442\u0447\u0451\u0442\u044b",
"webhooks": "\u0412\u0435\u0431-\u0445\u0443\u043a\u0438",
"currencies": "\u0412\u0430\u043b\u044e\u0442\u044b",
"administration": "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
"profile": "\u041f\u0440\u043e\u0444\u0438\u043b\u044c",
"source_account": "\u0421\u0447\u0451\u0442-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
"destination_account": "\u0421\u0447\u0451\u0442 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f",
"amount": "\u0421\u0443\u043c\u043c\u0430",
"date": "\u0414\u0430\u0442\u0430",
"time": "\u0412\u0440\u0435\u043c\u044f",
"preferences": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438",
"transactions": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
"balance": "\u0411a\u043ba\u043dc",
"budgets": "\u0411\u044e\u0434\u0436\u0435\u0442",
"subscriptions": "\u041f\u043e\u0434\u043f\u0438\u0441\u043a\u0438",
"welcome_back": "\u0427\u0442\u043e \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0441 \u043c\u043e\u0438\u043c\u0438 \u0444\u0438\u043d\u0430\u043d\u0441\u0430\u043c\u0438?",
"bills_to_pay": "\u0421\u0447\u0435\u0442\u0430 \u043a \u043e\u043f\u043b\u0430\u0442\u0435",
"net_worth": "\u041c\u043e\u0438 \u0441\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0438\u044f",
"pref_last365": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0433\u043e\u0434",
"pref_last90": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 90 \u0434\u043d\u0435\u0439",
"pref_last30": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 30 \u0434\u043d\u0435\u0439",
"pref_last7": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 7 \u0434\u043d\u0435\u0439",
"pref_YTD": "\u0417\u0430 \u0433\u043e\u0434 \u0434\u043e \u0441\u0435\u0433\u043e\u0434\u043d\u044f",
"pref_QTD": "\u041a\u0432\u0430\u0440\u0442\u0430\u043b \u0434\u043e \u0441\u0435\u0433\u043e\u0434\u043d\u044f\u0448\u043d\u0435\u0433\u043e \u0434\u043d\u044f",
"pref_MTD": "\u041c\u0435\u0441\u044f\u0446 \u0434\u043e \u0441\u0435\u0433\u043e\u0434\u043d\u044f\u0448\u043d\u0435\u0433\u043e \u0434\u043d\u044f"
}
"config": {
"html_language": "ru",
"month_and_day_fns": "d MMMM yyyy"
},
"form": {
"name": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435",
"amount_min": "\u041c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0443\u043c\u043c\u0430",
"amount_max": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0443\u043c\u043c\u0430",
"url": "\u0421\u0441\u044b\u043b\u043a\u0430",
"title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
"first_date": "\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u0430\u044f \u0434\u0430\u0442\u0430",
"repetitions": "\u041f\u043e\u0432\u0442\u043e\u0440\u0435\u043d\u0438\u044f",
"description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
"iban": "IBAN",
"skip": "\u041f\u0440\u043e\u043f\u0443\u0441\u0442\u0438\u0442\u044c",
"date": "\u0414\u0430\u0442\u0430"
},
"list": {
"name": "\u0418\u043c\u044f",
"account_number": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430",
"currentBalance": "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u0431\u0430\u043b\u0430\u043d\u0441",
"lastActivity": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c",
"active": "\u0410\u043a\u0442\u0438\u0432\u0435\u043d?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "\u0411\u044e\u0434\u0436\u0435\u0442",
"subscriptions": "\u041f\u043e\u0434\u043f\u0438\u0441\u043a\u0438",
"transactions": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
"title_expenses": "\u0420\u0430\u0441\u0445\u043e\u0434\u044b",
"title_withdrawal": "\u0420\u0430\u0441\u0445\u043e\u0434\u044b",
"title_revenue": "\u0414\u043e\u0445\u043e\u0434\u044b \/ \u043f\u043e\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u044f",
"title_deposit": "\u0414\u043e\u0445\u043e\u0434\u044b \/ \u043f\u043e\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u044f",
"title_transfer": "\u041f\u0435\u0440\u0435\u0432\u043e\u0434",
"title_transfers": "\u041f\u0435\u0440\u0435\u0432\u043e\u0434\u044b",
"asset_accounts": "\u041e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u0441\u0447\u0435\u0442\u0430",
"expense_accounts": "\u0421\u0447\u0435\u0442\u0430 \u0440\u0430\u0441\u0445\u043e\u0434\u043e\u0432",
"revenue_accounts": "\u0421\u0447\u0435\u0442\u0430 \u0434\u043e\u0445\u043e\u0434\u043e\u0432",
"liabilities_accounts": "\u0414\u043e\u043b\u0433\u0438"
},
"firefly": {
"actions": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
"edit": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c",
"delete": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c",
"reconcile": "\u0421\u0432\u0435\u0440\u0438\u0442\u044c",
"create_new_asset": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0441\u0447\u0451\u0442",
"confirm_action": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435",
"new_budget": "\u041d\u043e\u0432\u044b\u0439 \u0431\u044e\u0434\u0436\u0435\u0442",
"new_asset_account": "\u041d\u043e\u0432\u044b\u0439 \u0441\u0447\u0435\u0442 \u0430\u043a\u0442\u0438\u0432\u043e\u0432",
"newTransfer": "\u041d\u043e\u0432\u044b\u0439 \u043f\u0435\u0440\u0435\u0432\u043e\u0434",
"submission_options": "Submission options",
"apply_rules_checkbox": "\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u0438\u043b\u0430",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "\u041d\u043e\u0432\u044b\u0439 \u0434\u043e\u0445\u043e\u0434",
"newWithdrawal": "\u041d\u043e\u0432\u044b\u0439 \u0440\u0430\u0441\u0445\u043e\u0434",
"bills_paid": "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u0441\u0447\u0435\u0442\u0430",
"left_to_spend": "\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u043f\u043e\u0442\u0440\u0430\u0442\u0438\u0442\u044c",
"no_budget": "(\u0432\u043d\u0435 \u0431\u044e\u0434\u0436\u0435\u0442\u0430)",
"budgeted": "\u0417\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0432 \u0431\u044e\u0434\u0436\u0435\u0442\u0435",
"spent": "\u0420\u0430\u0441\u0445\u043e\u0434",
"no_bill": "(\u043d\u0435\u0442 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430 \u043e\u043f\u043b\u0430\u0442\u0443)",
"rule_trigger_source_account_starts_choice": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u0441..",
"rule_trigger_source_account_ends_choice": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u0430..",
"rule_trigger_source_account_is_choice": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430..",
"rule_trigger_source_account_contains_choice": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "ID \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u0435\u0442 \u0441..",
"rule_trigger_destination_account_id_choice": "ID \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u0435\u0442 \u0441..",
"rule_trigger_account_is_cash_choice": "\u041b\u044e\u0431\u043e\u0439 \u0441\u0447\u0435\u0442 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0430\u043b\u0438\u0447\u043d\u044b\u043c\u0438",
"rule_trigger_source_is_cash_choice": "\u0421\u0447\u0451\u0442-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a - \u044d\u0442\u043e (\u043d\u0430\u043b\u0438\u0447\u043d\u044b\u0439) \u0441\u0447\u0451\u0442",
"rule_trigger_destination_is_cash_choice": "\u0421\u0447\u0451\u0442 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f - \u044d\u0442\u043e (\u043d\u0430\u043b\u0438\u0447\u043d\u044b\u0439) \u0441\u0447\u0451\u0442",
"rule_trigger_source_account_nr_starts_choice": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \/ IBAN \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u0441..",
"rule_trigger_source_account_nr_ends_choice": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \/ IBAN \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u0430..",
"rule_trigger_source_account_nr_is_choice": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \/ IBAN..",
"rule_trigger_source_account_nr_contains_choice": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \/ IBAN \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442..",
"rule_trigger_destination_account_starts_choice": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u0441..",
"rule_trigger_destination_account_ends_choice": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u0430..",
"rule_trigger_destination_account_is_choice": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f..",
"rule_trigger_destination_account_contains_choice": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442..",
"rule_trigger_destination_account_nr_starts_choice": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \/ IBAN \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u0441..",
"rule_trigger_destination_account_nr_ends_choice": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \/ IBAN \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u0430..",
"rule_trigger_destination_account_nr_is_choice": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \/ IBAN..",
"rule_trigger_destination_account_nr_contains_choice": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \/ IBAN \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442..",
"rule_trigger_transaction_type_choice": "\u0422\u0438\u043f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 =",
"rule_trigger_category_is_choice": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f =",
"rule_trigger_amount_less_choice": "\u0421\u0443\u043c\u043c\u0430 \u043c\u0435\u043d\u044c\u0448\u0435, \u0447\u0435\u043c...",
"rule_trigger_amount_is_choice": "\u0421\u0443\u043c\u043c\u0430..",
"rule_trigger_amount_more_choice": "\u0421\u0443\u043c\u043c\u0430 \u0431\u043e\u043b\u044c\u0448\u0435, \u0447\u0435\u043c...",
"rule_trigger_description_starts_choice": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u0441...",
"rule_trigger_description_ends_choice": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u0430...",
"rule_trigger_description_contains_choice": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442...",
"rule_trigger_description_is_choice": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 =",
"rule_trigger_date_on_choice": "\u0414\u0430\u0442\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438..",
"rule_trigger_date_before_choice": "\u0414\u0430\u0442\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 \u0434\u043e...",
"rule_trigger_date_after_choice": "\u0414\u0430\u0442\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 \u043f\u043e\u0441\u043b\u0435..",
"rule_trigger_created_at_on_choice": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0430..",
"rule_trigger_updated_at_on_choice": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438..",
"rule_trigger_budget_is_choice": "\u0411\u044e\u0434\u0436\u0435\u0442 =",
"rule_trigger_tag_is_choice": "\u041b\u044e\u0431\u043e\u0439 \u0442\u0435\u0433..",
"rule_trigger_currency_is_choice": "\u0412\u0430\u043b\u044e\u0442\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 -",
"rule_trigger_foreign_currency_is_choice": "\u0412\u0430\u043b\u044e\u0442\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 -",
"rule_trigger_has_attachments_choice": "\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432\u043b\u043e\u0436\u0435\u043d\u0438\u0439",
"rule_trigger_has_no_category_choice": "\u041d\u0435\u0442 \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438",
"rule_trigger_has_any_category_choice": "\u0421\u0432\u044f\u0437\u0430\u043d\u0430 \u0441 (\u043b\u044e\u0431\u043e\u0439) \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0435\u0439",
"rule_trigger_has_no_budget_choice": "\u041d\u0435\u0442 \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u043e\u0433\u043e \u0431\u044e\u0434\u0436\u0435\u0442\u0430",
"rule_trigger_has_any_budget_choice": "\u0421\u0432\u044f\u0437\u0430\u043d\u0430 \u0441 (\u043b\u044e\u0431\u044b\u043c) \u0431\u044e\u0434\u0436\u0435\u0442\u043e\u043c",
"rule_trigger_has_no_bill_choice": "\u041d\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0441\u0447\u0435\u0442\u043e\u0432",
"rule_trigger_has_any_bill_choice": "\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u0442 (\u043b\u044e\u0431\u043e\u0439) \u0441\u0447\u0451\u0442",
"rule_trigger_has_no_tag_choice": "\u041d\u0435\u0442 \u043c\u0435\u0442\u043e\u043a",
"rule_trigger_has_any_tag_choice": "\u0415\u0441\u0442\u044c \u043e\u0434\u043d\u0430 \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e (\u043b\u044e\u0431\u044b\u0445) \u043c\u0435\u0442\u043e\u043a",
"rule_trigger_any_notes_choice": "\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u0442 (\u043b\u044e\u0431\u044b\u0435) \u0437\u0430\u043c\u0435\u0442\u043a\u0438",
"rule_trigger_no_notes_choice": "\u041d\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0437\u0430\u043c\u0435\u0442\u043e\u043a",
"rule_trigger_notes_is_choice": "\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044f..",
"rule_trigger_notes_contains_choice": "\u0417\u0430\u043c\u0435\u0442\u043a\u0438 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442..",
"rule_trigger_notes_starts_choice": "\u0417\u0430\u043c\u0435\u0442\u043a\u0438 \u043d\u0430\u0447\u0438\u043d\u0430\u044e\u0442\u0441\u044f \u0441..",
"rule_trigger_notes_ends_choice": "\u0417\u0430\u043c\u0435\u0442\u043a\u0438 \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u044e\u0442\u0441\u044f \u043d\u0430..",
"rule_trigger_bill_is_choice": "\u0421\u0447\u0451\u0442 \u043d\u0430 \u043e\u043f\u043b\u0430\u0442\u0443 = ..",
"rule_trigger_external_id_is_choice": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 ID..",
"rule_trigger_internal_reference_is_choice": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u044f\u044f \u0441\u0441\u044b\u043b\u043a\u0430..",
"rule_trigger_journal_id_choice": "ID \u0436\u0443\u0440\u043d\u0430\u043b\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0439..",
"rule_trigger_any_external_url_choice": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \u0438\u043c\u0435\u0435\u0442 \u0432\u043d\u0435\u0448\u043d\u0438\u0439 URL",
"rule_trigger_no_external_url_choice": "\u0423 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 \u043d\u0435\u0442 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e URL",
"rule_trigger_id_choice": "ID \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043b\u044e\u0431\u0443\u044e \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044e",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043b\u044e\u0431\u043e\u0439 \u0431\u044e\u0434\u0436\u0435\u0442",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0441\u0435 \u043c\u0435\u0442\u043a\u0438...",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043b\u044e\u0431\u044b\u0435 \u0437\u0430\u043c\u0435\u0442\u043a\u0438",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044e \u0432 \u0434\u043e\u0445\u043e\u0434",
"rule_action_convert_withdrawal_choice": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044e \u0432 \u0440\u0430\u0441\u0445\u043e\u0434",
"rule_action_convert_transfer_choice": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044e \u0432 \u043f\u0435\u0440\u0435\u0432\u043e\u0434",
"placeholder": "[Placeholder]",
"recurrences": "\u041f\u043e\u0432\u0442\u043e\u0440\u044f\u044e\u0449\u0438\u0435\u0441\u044f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
"title_expenses": "\u0420\u0430\u0441\u0445\u043e\u0434\u044b",
"title_withdrawal": "\u0420\u0430\u0441\u0445\u043e\u0434\u044b",
"title_revenue": "\u0414\u043e\u0445\u043e\u0434",
"pref_1D": "\u041e\u0434\u0438\u043d \u0434\u0435\u043d\u044c",
"pref_1W": "\u041e\u0434\u043d\u0430 \u043d\u0435\u0434\u0435\u043b\u044f",
"pref_1M": "\u041e\u0434\u0438\u043d \u043c\u0435\u0441\u044f\u0446",
"pref_3M": "\u0422\u0440\u0438 \u043c\u0435\u0441\u044f\u0446\u0430 (\u043a\u0432\u0430\u0440\u0442\u0430\u043b)",
"pref_6M": "\u0428\u0435\u0441\u0442\u044c \u043c\u0435\u0441\u044f\u0446\u0435\u0432",
"pref_1Y": "\u041e\u0434\u0438\u043d \u0433\u043e\u0434",
"repeat_freq_yearly": "\u0435\u0436\u0435\u0433\u043e\u0434\u043d\u043e",
"repeat_freq_half-year": "\u0440\u0430\u0437 \u0432 \u043f\u043e\u043b\u0433\u043e\u0434\u0430",
"repeat_freq_quarterly": "\u0440\u0430\u0437 \u0432 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
"repeat_freq_monthly": "\u0435\u0436\u0435\u043c\u0435\u0441\u044f\u0447\u043d\u043e",
"repeat_freq_weekly": "\u0435\u0436\u0435\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u043e",
"single_split": "\u0420\u0430\u0437\u0434\u0435\u043b\u0451\u043d\u043d\u0430\u044f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f",
"asset_accounts": "\u041e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u0441\u0447\u0435\u0442\u0430",
"expense_accounts": "\u0421\u0447\u0435\u0442\u0430 \u0440\u0430\u0441\u0445\u043e\u0434\u043e\u0432",
"liabilities_accounts": "\u0414\u043e\u043b\u0433\u0438",
"undefined_accounts": "\u0423\u0447\u0451\u0442\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438",
"name": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435",
"revenue_accounts": "\u0421\u0447\u0435\u0442\u0430 \u0434\u043e\u0445\u043e\u0434\u043e\u0432",
"description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
"category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
"title_deposit": "\u0414\u043e\u0445\u043e\u0434",
"title_transfer": "\u041f\u0435\u0440\u0435\u0432\u043e\u0434\u044b",
"title_transfers": "\u041f\u0435\u0440\u0435\u0432\u043e\u0434\u044b",
"piggyBanks": "\u041a\u043e\u043f\u0438\u043b\u043a\u0438",
"rules": "\u041f\u0440\u0430\u0432\u0438\u043b\u0430",
"accounts": "\u0421\u0447\u0435\u0442\u0430",
"categories": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438",
"tags": "\u041c\u0435\u0442\u043a\u0438",
"object_groups_page_title": "\u0413\u0440\u0443\u043f\u043f\u044b",
"reports": "\u041e\u0442\u0447\u0451\u0442\u044b",
"webhooks": "\u0412\u0435\u0431-\u0445\u0443\u043a\u0438",
"currencies": "\u0412\u0430\u043b\u044e\u0442\u044b",
"administration": "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
"profile": "\u041f\u0440\u043e\u0444\u0438\u043b\u044c",
"source_account": "\u0421\u0447\u0451\u0442-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
"destination_account": "\u0421\u0447\u0451\u0442 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f",
"amount": "\u0421\u0443\u043c\u043c\u0430",
"date": "\u0414\u0430\u0442\u0430",
"time": "\u0412\u0440\u0435\u043c\u044f",
"preferences": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438",
"transactions": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
"balance": "\u0411a\u043ba\u043dc",
"budgets": "\u0411\u044e\u0434\u0436\u0435\u0442",
"subscriptions": "\u041f\u043e\u0434\u043f\u0438\u0441\u043a\u0438",
"welcome_back": "\u0427\u0442\u043e \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0441 \u043c\u043e\u0438\u043c\u0438 \u0444\u0438\u043d\u0430\u043d\u0441\u0430\u043c\u0438?",
"bills_to_pay": "\u0421\u0447\u0435\u0442\u0430 \u043a \u043e\u043f\u043b\u0430\u0442\u0435",
"net_worth": "\u041c\u043e\u0438 \u0441\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0438\u044f",
"pref_last365": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0433\u043e\u0434",
"pref_last90": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 90 \u0434\u043d\u0435\u0439",
"pref_last30": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 30 \u0434\u043d\u0435\u0439",
"pref_last7": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 7 \u0434\u043d\u0435\u0439",
"pref_YTD": "\u0417\u0430 \u0433\u043e\u0434 \u0434\u043e \u0441\u0435\u0433\u043e\u0434\u043d\u044f",
"pref_QTD": "\u041a\u0432\u0430\u0440\u0442\u0430\u043b \u0434\u043e \u0441\u0435\u0433\u043e\u0434\u043d\u044f\u0448\u043d\u0435\u0433\u043e \u0434\u043d\u044f",
"pref_MTD": "\u041c\u0435\u0441\u044f\u0446 \u0434\u043e \u0441\u0435\u0433\u043e\u0434\u043d\u044f\u0448\u043d\u0435\u0433\u043e \u0434\u043d\u044f"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "sk",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "N\u00e1zov",
"amount_min": "Minim\u00e1lna suma",
"amount_max": "Maxim\u00e1lna suma",
"url": "URL",
"title": "N\u00e1zov",
"first_date": "Prv\u00fd d\u00e1tum",
"repetitions": "Opakovan\u00ed",
"description": "Popis",
"iban": "IBAN",
"skip": "Presko\u010di\u0165",
"date": "D\u00e1tum"
},
"list": {
"name": "Meno\/N\u00e1zov",
"account_number": "Account number",
"currentBalance": "Aktu\u00e1lny zostatok",
"lastActivity": "Posledn\u00e1 aktivita",
"active": "Akt\u00edvne?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budgets",
"subscriptions": "Subscriptions",
"transactions": "Transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"revenue_accounts": "Revenue accounts",
"liabilities_accounts": "Liabilities"
},
"firefly": {
"actions": "Akcie",
"edit": "Upravi\u0165",
"delete": "Odstr\u00e1ni\u0165",
"reconcile": "Vy\u00fa\u010dtova\u0165",
"create_new_asset": "Vytvori\u0165 nov\u00fd \u00fa\u010det akt\u00edv",
"confirm_action": "Confirm action",
"new_budget": "Nov\u00fd rozpo\u010det",
"new_asset_account": "Nov\u00fd \u00fa\u010det akt\u00edv",
"newTransfer": "Nov\u00fd p\u0159evod",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Nov\u00fd vklad",
"newWithdrawal": "Nov\u00fd v\u00fddavok",
"bills_paid": "Zaplaten\u00e9 \u00fa\u010dty",
"left_to_spend": "Zost\u00e1va k \u00fatrate",
"no_budget": "(\u017eiadny rozpo\u010det)",
"budgeted": "Rozpo\u010dtovan\u00e9",
"spent": "Utraten\u00e9",
"no_bill": "(\u017eiadny \u00fa\u010det)",
"rule_trigger_source_account_starts_choice": "N\u00e1zov zdrojov\u00e9ho \u00fa\u010dtu za\u010d\u00edna..",
"rule_trigger_source_account_ends_choice": "N\u00e1zov zdrojov\u00e9ho \u00fa\u010dtu kon\u010d\u00ed..",
"rule_trigger_source_account_is_choice": "N\u00e1zov zdrojov\u00e9ho \u00fa\u010dtu je..",
"rule_trigger_source_account_contains_choice": "N\u00e1zov zdrojov\u00e9ho \u00fa\u010dtu obsahuje..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "ID zdrojov\u00e9ho \u00fa\u010dtu je presne..",
"rule_trigger_destination_account_id_choice": "N\u00e1zov cie\u013eov\u00e9ho \u00fa\u010dtu je presne..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Zdrojov\u00fd \u00fa\u010det je (hotovostn\u00fd) \u00fa\u010det",
"rule_trigger_destination_is_cash_choice": "Cie\u013eov\u00fd \u00fa\u010det je (hotovostn\u00fd) \u00fa\u010det",
"rule_trigger_source_account_nr_starts_choice": "\u010c\u00edslo cie\u013eov\u00e9ho \u00fa\u010dtu \/ IBAN za\u010d\u00edna..",
"rule_trigger_source_account_nr_ends_choice": "\u010c\u00edslo zdrojov\u00e9ho \u00fa\u010dtu \/ IBAN kon\u010d\u00ed..",
"rule_trigger_source_account_nr_is_choice": "\u010c\u00edslo zdrojov\u00e9ho \u00fa\u010dtu \/ IBAN je..",
"rule_trigger_source_account_nr_contains_choice": "\u010c\u00edslo zdrojov\u00e9ho \u00fa\u010dtu \/ IBAN obsahuje..",
"rule_trigger_destination_account_starts_choice": "N\u00e1zov cie\u013eov\u00e9ho \u00fa\u010dtu za\u010d\u00edna..",
"rule_trigger_destination_account_ends_choice": "N\u00e1zov cie\u013eov\u00e9ho \u00fa\u010dtu kon\u010d\u00ed..",
"rule_trigger_destination_account_is_choice": "N\u00e1zov cie\u013eov\u00e9ho \u00fa\u010dtu je..",
"rule_trigger_destination_account_contains_choice": "N\u00e1zov cie\u013eov\u00e9ho \u00fa\u010dtu obsahuje..",
"rule_trigger_destination_account_nr_starts_choice": "\u010c\u00edslo cie\u013eov\u00e9ho \u00fa\u010dtu \/ IBAN za\u010d\u00edna..",
"rule_trigger_destination_account_nr_ends_choice": "N\u00e1zov cie\u013eov\u00e9ho \u00fa\u010dtu \/ IBAN kon\u010d\u00ed..",
"rule_trigger_destination_account_nr_is_choice": "N\u00e1zov cie\u013eov\u00e9ho \u00fa\u010dtu \/ IBAN je..",
"rule_trigger_destination_account_nr_contains_choice": "N\u00e1zov cie\u013eov\u00e9ho \u00fa\u010dtu \/ IBAN obsahuje..",
"rule_trigger_transaction_type_choice": "Transakcia je typu..",
"rule_trigger_category_is_choice": "Kateg\u00f3ria je..",
"rule_trigger_amount_less_choice": "Suma je ni\u017e\u0161ia ne\u017e..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Suma je vy\u0161\u0161ia ne\u017e..",
"rule_trigger_description_starts_choice": "Popis za\u010d\u00edna..",
"rule_trigger_description_ends_choice": "Popis kon\u010d\u00ed..",
"rule_trigger_description_contains_choice": "Popis obsahuje..",
"rule_trigger_description_is_choice": "Popis je..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "D\u00e1tum transakcie je pred..",
"rule_trigger_date_after_choice": "D\u00e1tum transakcie je po..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Rozpo\u010det je\u2026",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Mena transakcie je..",
"rule_trigger_foreign_currency_is_choice": "Cudzia mena transakcie je..",
"rule_trigger_has_attachments_choice": "M\u00e1 po\u010det pr\u00edloh minim\u00e1lne",
"rule_trigger_has_no_category_choice": "Nem\u00e1 \u017eiadnu kateg\u00f3riu",
"rule_trigger_has_any_category_choice": "M\u00e1 (\u013eubovo\u013en\u00fa) kateg\u00f3riu",
"rule_trigger_has_no_budget_choice": "Nem\u00e1 \u017eiadny rozpo\u010det",
"rule_trigger_has_any_budget_choice": "M\u00e1 (\u013eubovo\u013en\u00fd) rozpo\u010det",
"rule_trigger_has_no_bill_choice": "Nem\u00e1 \u017eiadny \u00fa\u010det",
"rule_trigger_has_any_bill_choice": "M\u00e1 (\u013eubovo\u013en\u00fd) \u00fa\u010det",
"rule_trigger_has_no_tag_choice": "Nem\u00e1 \u017eiadne \u0161t\u00edtky",
"rule_trigger_has_any_tag_choice": "M\u00e1 jeden alebo viac \u0161t\u00edtkov",
"rule_trigger_any_notes_choice": "M\u00e1 (ak\u00e9ko\u013evek) pozn\u00e1mky",
"rule_trigger_no_notes_choice": "Nem\u00e1 \u017eiadne pozn\u00e1mky",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "\u00da\u010det je..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "ID denn\u00edka transakci\u00ed je..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Odstr\u00e1ni\u0165 v\u0161etky kateg\u00f3rie",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Odste\u00e1ni\u0165 v\u0161etky rozpo\u010dty",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Odstr\u00e1ni\u0165 v\u0161etky \u0161t\u00edtky",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Odstr\u00e1ni\u0165 v\u0161etky pozn\u00e1mky",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Zmeni\u0165 t\u00fato transakciu na vklad",
"rule_action_convert_withdrawal_choice": "Zmeni\u0165 transakciu na v\u00fdb\u011br",
"rule_action_convert_transfer_choice": "Zmeni\u0165 t\u00fato transakciu na prevod",
"placeholder": "[Placeholder]",
"recurrences": "Opakovan\u00e9 transakcie",
"title_expenses": "V\u00fddavky",
"title_withdrawal": "V\u00fddavky",
"title_revenue": "Zisky \/ pr\u00edjmy",
"pref_1D": "Jeden de\u0148",
"pref_1W": "Jeden t\u00fd\u017ede\u0148",
"pref_1M": "Jeden mesiac",
"pref_3M": "Tri mesiace (\u0161tvr\u0165rok)",
"pref_6M": "\u0160es\u0165 mesiacov",
"pref_1Y": "Jeden rok",
"repeat_freq_yearly": "ro\u010dne",
"repeat_freq_half-year": "polro\u010dne",
"repeat_freq_quarterly": "\u0161tvr\u0165ro\u010dne",
"repeat_freq_monthly": "mesa\u010dne",
"repeat_freq_weekly": "t\u00fd\u017edenne",
"single_split": "Roz\u00fa\u010dtova\u0165",
"asset_accounts": "\u00da\u010dty akt\u00edv",
"expense_accounts": "V\u00fddavkov\u00e9 \u00fa\u010dty",
"liabilities_accounts": "Z\u00e1v\u00e4zky",
"undefined_accounts": "Accounts",
"name": "N\u00e1zov",
"revenue_accounts": "V\u00fdnosov\u00e9 \u00fa\u010dty",
"description": "Popis",
"category": "Kateg\u00f3ria",
"title_deposit": "Zisky \/ pr\u00edjmy",
"title_transfer": "Prevody",
"title_transfers": "Prevody",
"piggyBanks": "Pokladni\u010dky",
"rules": "Pravidl\u00e1",
"accounts": "\u00da\u010dty",
"categories": "Kateg\u00f3rie",
"tags": "\u0160t\u00edtky",
"object_groups_page_title": "Skupiny",
"reports": "V\u00fdkazy",
"webhooks": "Webhooky",
"currencies": "Meny",
"administration": "Spr\u00e1va",
"profile": "Profil",
"source_account": "Zdrojov\u00fd \u00fa\u010det",
"destination_account": "Cie\u013eov\u00fd \u00fa\u010det",
"amount": "Suma",
"date": "D\u00e1tum",
"time": "\u010cas",
"preferences": "Mo\u017enosti",
"transactions": "Transakcie",
"balance": "Zostatok",
"budgets": "Rozpo\u010dty",
"subscriptions": "Subscriptions",
"welcome_back": "Ako to ide?",
"bills_to_pay": "\u00da\u010dty na \u00fahradu",
"net_worth": "\u010cist\u00e9 imanie",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
"config": {
"html_language": "sk",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "N\u00e1zov",
"amount_min": "Minim\u00e1lna suma",
"amount_max": "Maxim\u00e1lna suma",
"url": "URL",
"title": "N\u00e1zov",
"first_date": "Prv\u00fd d\u00e1tum",
"repetitions": "Opakovan\u00ed",
"description": "Popis",
"iban": "IBAN",
"skip": "Presko\u010di\u0165",
"date": "D\u00e1tum"
},
"list": {
"name": "Meno\/N\u00e1zov",
"account_number": "Account number",
"currentBalance": "Aktu\u00e1lny zostatok",
"lastActivity": "Posledn\u00e1 aktivita",
"active": "Akt\u00edvne?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Budgets",
"subscriptions": "Subscriptions",
"transactions": "Transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"revenue_accounts": "Revenue accounts",
"liabilities_accounts": "Liabilities"
},
"firefly": {
"actions": "Akcie",
"edit": "Upravi\u0165",
"delete": "Odstr\u00e1ni\u0165",
"reconcile": "Vy\u00fa\u010dtova\u0165",
"create_new_asset": "Vytvori\u0165 nov\u00fd \u00fa\u010det akt\u00edv",
"confirm_action": "Confirm action",
"new_budget": "Nov\u00fd rozpo\u010det",
"new_asset_account": "Nov\u00fd \u00fa\u010det akt\u00edv",
"newTransfer": "Nov\u00fd p\u0159evod",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Nov\u00fd vklad",
"newWithdrawal": "Nov\u00fd v\u00fddavok",
"bills_paid": "Zaplaten\u00e9 \u00fa\u010dty",
"left_to_spend": "Zost\u00e1va k \u00fatrate",
"no_budget": "(\u017eiadny rozpo\u010det)",
"budgeted": "Rozpo\u010dtovan\u00e9",
"spent": "Utraten\u00e9",
"no_bill": "(\u017eiadny \u00fa\u010det)",
"rule_trigger_source_account_starts_choice": "N\u00e1zov zdrojov\u00e9ho \u00fa\u010dtu za\u010d\u00edna..",
"rule_trigger_source_account_ends_choice": "N\u00e1zov zdrojov\u00e9ho \u00fa\u010dtu kon\u010d\u00ed..",
"rule_trigger_source_account_is_choice": "N\u00e1zov zdrojov\u00e9ho \u00fa\u010dtu je..",
"rule_trigger_source_account_contains_choice": "N\u00e1zov zdrojov\u00e9ho \u00fa\u010dtu obsahuje..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "ID zdrojov\u00e9ho \u00fa\u010dtu je presne..",
"rule_trigger_destination_account_id_choice": "N\u00e1zov cie\u013eov\u00e9ho \u00fa\u010dtu je presne..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Zdrojov\u00fd \u00fa\u010det je (hotovostn\u00fd) \u00fa\u010det",
"rule_trigger_destination_is_cash_choice": "Cie\u013eov\u00fd \u00fa\u010det je (hotovostn\u00fd) \u00fa\u010det",
"rule_trigger_source_account_nr_starts_choice": "\u010c\u00edslo cie\u013eov\u00e9ho \u00fa\u010dtu \/ IBAN za\u010d\u00edna..",
"rule_trigger_source_account_nr_ends_choice": "\u010c\u00edslo zdrojov\u00e9ho \u00fa\u010dtu \/ IBAN kon\u010d\u00ed..",
"rule_trigger_source_account_nr_is_choice": "\u010c\u00edslo zdrojov\u00e9ho \u00fa\u010dtu \/ IBAN je..",
"rule_trigger_source_account_nr_contains_choice": "\u010c\u00edslo zdrojov\u00e9ho \u00fa\u010dtu \/ IBAN obsahuje..",
"rule_trigger_destination_account_starts_choice": "N\u00e1zov cie\u013eov\u00e9ho \u00fa\u010dtu za\u010d\u00edna..",
"rule_trigger_destination_account_ends_choice": "N\u00e1zov cie\u013eov\u00e9ho \u00fa\u010dtu kon\u010d\u00ed..",
"rule_trigger_destination_account_is_choice": "N\u00e1zov cie\u013eov\u00e9ho \u00fa\u010dtu je..",
"rule_trigger_destination_account_contains_choice": "N\u00e1zov cie\u013eov\u00e9ho \u00fa\u010dtu obsahuje..",
"rule_trigger_destination_account_nr_starts_choice": "\u010c\u00edslo cie\u013eov\u00e9ho \u00fa\u010dtu \/ IBAN za\u010d\u00edna..",
"rule_trigger_destination_account_nr_ends_choice": "N\u00e1zov cie\u013eov\u00e9ho \u00fa\u010dtu \/ IBAN kon\u010d\u00ed..",
"rule_trigger_destination_account_nr_is_choice": "N\u00e1zov cie\u013eov\u00e9ho \u00fa\u010dtu \/ IBAN je..",
"rule_trigger_destination_account_nr_contains_choice": "N\u00e1zov cie\u013eov\u00e9ho \u00fa\u010dtu \/ IBAN obsahuje..",
"rule_trigger_transaction_type_choice": "Transakcia je typu..",
"rule_trigger_category_is_choice": "Kateg\u00f3ria je..",
"rule_trigger_amount_less_choice": "Suma je ni\u017e\u0161ia ne\u017e..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Suma je vy\u0161\u0161ia ne\u017e..",
"rule_trigger_description_starts_choice": "Popis za\u010d\u00edna..",
"rule_trigger_description_ends_choice": "Popis kon\u010d\u00ed..",
"rule_trigger_description_contains_choice": "Popis obsahuje..",
"rule_trigger_description_is_choice": "Popis je..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "D\u00e1tum transakcie je pred..",
"rule_trigger_date_after_choice": "D\u00e1tum transakcie je po..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Rozpo\u010det je\u2026",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Mena transakcie je..",
"rule_trigger_foreign_currency_is_choice": "Cudzia mena transakcie je..",
"rule_trigger_has_attachments_choice": "M\u00e1 po\u010det pr\u00edloh minim\u00e1lne",
"rule_trigger_has_no_category_choice": "Nem\u00e1 \u017eiadnu kateg\u00f3riu",
"rule_trigger_has_any_category_choice": "M\u00e1 (\u013eubovo\u013en\u00fa) kateg\u00f3riu",
"rule_trigger_has_no_budget_choice": "Nem\u00e1 \u017eiadny rozpo\u010det",
"rule_trigger_has_any_budget_choice": "M\u00e1 (\u013eubovo\u013en\u00fd) rozpo\u010det",
"rule_trigger_has_no_bill_choice": "Nem\u00e1 \u017eiadny \u00fa\u010det",
"rule_trigger_has_any_bill_choice": "M\u00e1 (\u013eubovo\u013en\u00fd) \u00fa\u010det",
"rule_trigger_has_no_tag_choice": "Nem\u00e1 \u017eiadne \u0161t\u00edtky",
"rule_trigger_has_any_tag_choice": "M\u00e1 jeden alebo viac \u0161t\u00edtkov",
"rule_trigger_any_notes_choice": "M\u00e1 (ak\u00e9ko\u013evek) pozn\u00e1mky",
"rule_trigger_no_notes_choice": "Nem\u00e1 \u017eiadne pozn\u00e1mky",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "\u00da\u010det je..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "ID denn\u00edka transakci\u00ed je..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Odstr\u00e1ni\u0165 v\u0161etky kateg\u00f3rie",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Odste\u00e1ni\u0165 v\u0161etky rozpo\u010dty",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Odstr\u00e1ni\u0165 v\u0161etky \u0161t\u00edtky",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Odstr\u00e1ni\u0165 v\u0161etky pozn\u00e1mky",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Zmeni\u0165 t\u00fato transakciu na vklad",
"rule_action_convert_withdrawal_choice": "Zmeni\u0165 transakciu na v\u00fdb\u011br",
"rule_action_convert_transfer_choice": "Zmeni\u0165 t\u00fato transakciu na prevod",
"placeholder": "[Placeholder]",
"recurrences": "Opakovan\u00e9 transakcie",
"title_expenses": "V\u00fddavky",
"title_withdrawal": "V\u00fddavky",
"title_revenue": "Zisky \/ pr\u00edjmy",
"pref_1D": "Jeden de\u0148",
"pref_1W": "Jeden t\u00fd\u017ede\u0148",
"pref_1M": "Jeden mesiac",
"pref_3M": "Tri mesiace (\u0161tvr\u0165rok)",
"pref_6M": "\u0160es\u0165 mesiacov",
"pref_1Y": "Jeden rok",
"repeat_freq_yearly": "ro\u010dne",
"repeat_freq_half-year": "polro\u010dne",
"repeat_freq_quarterly": "\u0161tvr\u0165ro\u010dne",
"repeat_freq_monthly": "mesa\u010dne",
"repeat_freq_weekly": "t\u00fd\u017edenne",
"single_split": "Roz\u00fa\u010dtova\u0165",
"asset_accounts": "\u00da\u010dty akt\u00edv",
"expense_accounts": "V\u00fddavkov\u00e9 \u00fa\u010dty",
"liabilities_accounts": "Z\u00e1v\u00e4zky",
"undefined_accounts": "Accounts",
"name": "N\u00e1zov",
"revenue_accounts": "V\u00fdnosov\u00e9 \u00fa\u010dty",
"description": "Popis",
"category": "Kateg\u00f3ria",
"title_deposit": "Zisky \/ pr\u00edjmy",
"title_transfer": "Prevody",
"title_transfers": "Prevody",
"piggyBanks": "Pokladni\u010dky",
"rules": "Pravidl\u00e1",
"accounts": "\u00da\u010dty",
"categories": "Kateg\u00f3rie",
"tags": "\u0160t\u00edtky",
"object_groups_page_title": "Skupiny",
"reports": "V\u00fdkazy",
"webhooks": "Webhooky",
"currencies": "Meny",
"administration": "Spr\u00e1va",
"profile": "Profil",
"source_account": "Zdrojov\u00fd \u00fa\u010det",
"destination_account": "Cie\u013eov\u00fd \u00fa\u010det",
"amount": "Suma",
"date": "D\u00e1tum",
"time": "\u010cas",
"preferences": "Mo\u017enosti",
"transactions": "Transakcie",
"balance": "Zostatok",
"budgets": "Rozpo\u010dty",
"subscriptions": "Subscriptions",
"welcome_back": "Ako to ide?",
"bills_to_pay": "\u00da\u010dty na \u00fahradu",
"net_worth": "\u010cist\u00e9 imanie",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "sl",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "Ime",
"amount_min": "Najni\u017eji znesek",
"amount_max": "Najvi\u0161ji znesek",
"url": "URL",
"title": "Naslov",
"first_date": "Prvi datum",
"repetitions": "Ponovitve",
"description": "Opis",
"iban": "IBAN",
"skip": "Presko\u010di",
"date": "Datum"
},
"list": {
"name": "ime",
"account_number": "\u0160tevilka ra\u010duna",
"currentBalance": "trenutno stanje",
"lastActivity": "zadnja aktivnost",
"active": "Aktiviran?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Prora\u010duni",
"subscriptions": "Naro\u010dnine",
"transactions": "Transakcije",
"title_expenses": "Stro\u0161ki",
"title_withdrawal": "Stro\u0161ki",
"title_revenue": "Dohodki \/ prihodki",
"title_deposit": "Dohodki \/ prihodki",
"title_transfer": "Prenosi",
"title_transfers": "Prenosi",
"asset_accounts": "Premo\u017eenjski ra\u010duni",
"expense_accounts": "Ra\u010duni stro\u0161kov",
"revenue_accounts": "Ra\u010dun prihodkov",
"liabilities_accounts": "Obveznosti"
},
"firefly": {
"actions": "Dejanja",
"edit": "uredi",
"delete": "izbri\u0161i",
"reconcile": "Poravnaj",
"create_new_asset": "ustvari nov premo\u017eenjski ra\u010dun",
"confirm_action": "Potrdi dejanje",
"new_budget": "nov bud\u017eet",
"new_asset_account": "nov premo\u017eenjski ra\u010dun",
"newTransfer": "Nov prenos",
"submission_options": "Submission options",
"apply_rules_checkbox": "Uporabi pravila",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Nov polog",
"newWithdrawal": "Nov stro\u0161ek",
"bills_paid": "Pla\u010dani trajniki",
"left_to_spend": "Preostala poraba",
"no_budget": "(brez prora\u010duna)",
"budgeted": "Prora\u010dun",
"spent": "Porabljeno",
"no_bill": "(ni ra\u010duna)",
"rule_trigger_source_account_starts_choice": "Source account name starts with..",
"rule_trigger_source_account_ends_choice": "Source account name ends with..",
"rule_trigger_source_account_is_choice": "Source account name is..",
"rule_trigger_source_account_contains_choice": "Source account name contains..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Source account ID is exactly..",
"rule_trigger_destination_account_id_choice": "Destination account ID is exactly..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Source account is (cash) account",
"rule_trigger_destination_is_cash_choice": "Destination account is (cash) account",
"rule_trigger_source_account_nr_starts_choice": "Source account number \/ IBAN starts with..",
"rule_trigger_source_account_nr_ends_choice": "Source account number \/ IBAN ends with..",
"rule_trigger_source_account_nr_is_choice": "Source account number \/ IBAN is..",
"rule_trigger_source_account_nr_contains_choice": "Source account number \/ IBAN contains..",
"rule_trigger_destination_account_starts_choice": "Destination account name starts with..",
"rule_trigger_destination_account_ends_choice": "Destination account name ends with..",
"rule_trigger_destination_account_is_choice": "Destination account name is..",
"rule_trigger_destination_account_contains_choice": "Destination account name contains..",
"rule_trigger_destination_account_nr_starts_choice": "Destination account number \/ IBAN starts with..",
"rule_trigger_destination_account_nr_ends_choice": "Destination account number \/ IBAN ends with..",
"rule_trigger_destination_account_nr_is_choice": "Destination account number \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Destination account number \/ IBAN contains..",
"rule_trigger_transaction_type_choice": "Tip transakcije je..",
"rule_trigger_category_is_choice": "Kategorija je..",
"rule_trigger_amount_less_choice": "Znesek je manj\u0161i od..",
"rule_trigger_amount_is_choice": "Znesek je..",
"rule_trigger_amount_more_choice": "Znesek je ve\u010d kot..",
"rule_trigger_description_starts_choice": "Opis se za\u010dne s\/z..",
"rule_trigger_description_ends_choice": "Opis se kon\u010da z..",
"rule_trigger_description_contains_choice": "Opis vsebuje..",
"rule_trigger_description_is_choice": "Opis je..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Transaction date is before..",
"rule_trigger_date_after_choice": "Transaction date is after..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Prora\u010dun je..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Valuta transakcije je..",
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
"rule_trigger_has_attachments_choice": "Ima vsaj toliko priponk",
"rule_trigger_has_no_category_choice": "Nima kategorije",
"rule_trigger_has_any_category_choice": "Ima kategorijo",
"rule_trigger_has_no_budget_choice": "Nima prora\u010duna",
"rule_trigger_has_any_budget_choice": "Ima (katerikoli) prora\u010dun",
"rule_trigger_has_no_bill_choice": "Nima ra\u010duna",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "Nima oznak",
"rule_trigger_has_any_tag_choice": "Ima eno ali ve\u010d oznak",
"rule_trigger_any_notes_choice": "Ima zaznamke",
"rule_trigger_no_notes_choice": "Nima zaznamkov",
"rule_trigger_notes_is_choice": "Opombe so..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Ra\u010dun je..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Po\u010disti kategorijo",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Po\u010disti prora\u010dun",
"rule_action_add_tag_choice": "Dodaj oznako ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Odstrani vse oznake",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Odstrani opombe",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Pretvori transakcijo v polog",
"rule_action_convert_withdrawal_choice": "Pretvori transakcijo v odliv",
"rule_action_convert_transfer_choice": "Pretvori transakcijo v prenos",
"placeholder": "[Placeholder]",
"recurrences": "Ponavljajo\u010de transakcije",
"title_expenses": "stro\u0161ki",
"title_withdrawal": "stro\u0161ki",
"title_revenue": "Dohodki \/ prihodki",
"pref_1D": "En dan",
"pref_1W": "En teden",
"pref_1M": "En mesec",
"pref_3M": "Trije meseci (\u010detrtletje)",
"pref_6M": "\u0160est mesecev",
"pref_1Y": "Eno leto",
"repeat_freq_yearly": "letno",
"repeat_freq_half-year": "polletno",
"repeat_freq_quarterly": "\u010detrtletno",
"repeat_freq_monthly": "mese\u010dno",
"repeat_freq_weekly": "tedensko",
"single_split": "Razdeli",
"asset_accounts": "premo\u017eenjski ra\u010duni",
"expense_accounts": "Ra\u010duni stro\u0161kov",
"liabilities_accounts": "Obveznosti",
"undefined_accounts": "Accounts",
"name": "Ime",
"revenue_accounts": "Ra\u010dun prihodkov",
"description": "Opis",
"category": "Kategorija",
"title_deposit": "Dohodki \/ prihodki",
"title_transfer": "Prenosi",
"title_transfers": "Prenosi",
"piggyBanks": "Hranilniki",
"rules": "Pravila",
"accounts": "Ra\u010duni",
"categories": "Kategorije",
"tags": "Oznake",
"object_groups_page_title": "Skupine",
"reports": "Poro\u010dila",
"webhooks": "Spletne kljuke (Webhooks)",
"currencies": "Valute",
"administration": "Administracija",
"profile": "Profil",
"source_account": "Izvorni ra\u010dun",
"destination_account": "Ciljni ra\u010dun",
"amount": "Znesek",
"date": "Datum",
"time": "\u010cas",
"preferences": "Mo\u017enosti",
"transactions": "Transakcije",
"balance": "Stanje",
"budgets": "Prora\u010duni",
"subscriptions": "Subscriptions",
"welcome_back": "Kaj dogaja?",
"bills_to_pay": "Trajnik za pla\u010dilo",
"net_worth": "Neto vrednost",
"pref_last365": "Zadnje leto",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Zadnjih 7 dni",
"pref_YTD": "Leto do datuma",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
"config": {
"html_language": "sl",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "Ime",
"amount_min": "Najni\u017eji znesek",
"amount_max": "Najvi\u0161ji znesek",
"url": "URL",
"title": "Naslov",
"first_date": "Prvi datum",
"repetitions": "Ponovitve",
"description": "Opis",
"iban": "IBAN",
"skip": "Presko\u010di",
"date": "Datum"
},
"list": {
"name": "ime",
"account_number": "\u0160tevilka ra\u010duna",
"currentBalance": "trenutno stanje",
"lastActivity": "zadnja aktivnost",
"active": "Aktiviran?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "Prora\u010duni",
"subscriptions": "Naro\u010dnine",
"transactions": "Transakcije",
"title_expenses": "Stro\u0161ki",
"title_withdrawal": "Stro\u0161ki",
"title_revenue": "Dohodki \/ prihodki",
"title_deposit": "Dohodki \/ prihodki",
"title_transfer": "Prenosi",
"title_transfers": "Prenosi",
"asset_accounts": "Premo\u017eenjski ra\u010duni",
"expense_accounts": "Ra\u010duni stro\u0161kov",
"revenue_accounts": "Ra\u010dun prihodkov",
"liabilities_accounts": "Obveznosti"
},
"firefly": {
"actions": "Dejanja",
"edit": "uredi",
"delete": "izbri\u0161i",
"reconcile": "Poravnaj",
"create_new_asset": "ustvari nov premo\u017eenjski ra\u010dun",
"confirm_action": "Potrdi dejanje",
"new_budget": "nov bud\u017eet",
"new_asset_account": "nov premo\u017eenjski ra\u010dun",
"newTransfer": "Nov prenos",
"submission_options": "Submission options",
"apply_rules_checkbox": "Uporabi pravila",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Nov polog",
"newWithdrawal": "Nov stro\u0161ek",
"bills_paid": "Pla\u010dani trajniki",
"left_to_spend": "Preostala poraba",
"no_budget": "(brez prora\u010duna)",
"budgeted": "Prora\u010dun",
"spent": "Porabljeno",
"no_bill": "(ni ra\u010duna)",
"rule_trigger_source_account_starts_choice": "Source account name starts with..",
"rule_trigger_source_account_ends_choice": "Source account name ends with..",
"rule_trigger_source_account_is_choice": "Source account name is..",
"rule_trigger_source_account_contains_choice": "Source account name contains..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Source account ID is exactly..",
"rule_trigger_destination_account_id_choice": "Destination account ID is exactly..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Source account is (cash) account",
"rule_trigger_destination_is_cash_choice": "Destination account is (cash) account",
"rule_trigger_source_account_nr_starts_choice": "Source account number \/ IBAN starts with..",
"rule_trigger_source_account_nr_ends_choice": "Source account number \/ IBAN ends with..",
"rule_trigger_source_account_nr_is_choice": "Source account number \/ IBAN is..",
"rule_trigger_source_account_nr_contains_choice": "Source account number \/ IBAN contains..",
"rule_trigger_destination_account_starts_choice": "Destination account name starts with..",
"rule_trigger_destination_account_ends_choice": "Destination account name ends with..",
"rule_trigger_destination_account_is_choice": "Destination account name is..",
"rule_trigger_destination_account_contains_choice": "Destination account name contains..",
"rule_trigger_destination_account_nr_starts_choice": "Destination account number \/ IBAN starts with..",
"rule_trigger_destination_account_nr_ends_choice": "Destination account number \/ IBAN ends with..",
"rule_trigger_destination_account_nr_is_choice": "Destination account number \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Destination account number \/ IBAN contains..",
"rule_trigger_transaction_type_choice": "Tip transakcije je..",
"rule_trigger_category_is_choice": "Kategorija je..",
"rule_trigger_amount_less_choice": "Znesek je manj\u0161i od..",
"rule_trigger_amount_is_choice": "Znesek je..",
"rule_trigger_amount_more_choice": "Znesek je ve\u010d kot..",
"rule_trigger_description_starts_choice": "Opis se za\u010dne s\/z..",
"rule_trigger_description_ends_choice": "Opis se kon\u010da z..",
"rule_trigger_description_contains_choice": "Opis vsebuje..",
"rule_trigger_description_is_choice": "Opis je..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Transaction date is before..",
"rule_trigger_date_after_choice": "Transaction date is after..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Prora\u010dun je..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Valuta transakcije je..",
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
"rule_trigger_has_attachments_choice": "Ima vsaj toliko priponk",
"rule_trigger_has_no_category_choice": "Nima kategorije",
"rule_trigger_has_any_category_choice": "Ima kategorijo",
"rule_trigger_has_no_budget_choice": "Nima prora\u010duna",
"rule_trigger_has_any_budget_choice": "Ima (katerikoli) prora\u010dun",
"rule_trigger_has_no_bill_choice": "Nima ra\u010duna",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "Nima oznak",
"rule_trigger_has_any_tag_choice": "Ima eno ali ve\u010d oznak",
"rule_trigger_any_notes_choice": "Ima zaznamke",
"rule_trigger_no_notes_choice": "Nima zaznamkov",
"rule_trigger_notes_is_choice": "Opombe so..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Ra\u010dun je..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Po\u010disti kategorijo",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Po\u010disti prora\u010dun",
"rule_action_add_tag_choice": "Dodaj oznako ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Odstrani vse oznake",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Odstrani opombe",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Pretvori transakcijo v polog",
"rule_action_convert_withdrawal_choice": "Pretvori transakcijo v odliv",
"rule_action_convert_transfer_choice": "Pretvori transakcijo v prenos",
"placeholder": "[Placeholder]",
"recurrences": "Ponavljajo\u010de transakcije",
"title_expenses": "stro\u0161ki",
"title_withdrawal": "stro\u0161ki",
"title_revenue": "Dohodki \/ prihodki",
"pref_1D": "En dan",
"pref_1W": "En teden",
"pref_1M": "En mesec",
"pref_3M": "Trije meseci (\u010detrtletje)",
"pref_6M": "\u0160est mesecev",
"pref_1Y": "Eno leto",
"repeat_freq_yearly": "letno",
"repeat_freq_half-year": "polletno",
"repeat_freq_quarterly": "\u010detrtletno",
"repeat_freq_monthly": "mese\u010dno",
"repeat_freq_weekly": "tedensko",
"single_split": "Razdeli",
"asset_accounts": "premo\u017eenjski ra\u010duni",
"expense_accounts": "Ra\u010duni stro\u0161kov",
"liabilities_accounts": "Obveznosti",
"undefined_accounts": "Accounts",
"name": "Ime",
"revenue_accounts": "Ra\u010dun prihodkov",
"description": "Opis",
"category": "Kategorija",
"title_deposit": "Dohodki \/ prihodki",
"title_transfer": "Prenosi",
"title_transfers": "Prenosi",
"piggyBanks": "Hranilniki",
"rules": "Pravila",
"accounts": "Ra\u010duni",
"categories": "Kategorije",
"tags": "Oznake",
"object_groups_page_title": "Skupine",
"reports": "Poro\u010dila",
"webhooks": "Spletne kljuke (Webhooks)",
"currencies": "Valute",
"administration": "Administracija",
"profile": "Profil",
"source_account": "Izvorni ra\u010dun",
"destination_account": "Ciljni ra\u010dun",
"amount": "Znesek",
"date": "Datum",
"time": "\u010cas",
"preferences": "Mo\u017enosti",
"transactions": "Transakcije",
"balance": "Stanje",
"budgets": "Prora\u010duni",
"subscriptions": "Subscriptions",
"welcome_back": "Kaj dogaja?",
"bills_to_pay": "Trajnik za pla\u010dilo",
"net_worth": "Neto vrednost",
"pref_last365": "Zadnje leto",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Zadnjih 7 dni",
"pref_YTD": "Leto do datuma",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "sv",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "Namn",
"amount_min": "Minsta belopp",
"amount_max": "H\u00f6gsta belopp",
"url": "L\u00e4nk",
"title": "Titel",
"first_date": "F\u00f6rsta datum",
"repetitions": "Upprepningar",
"description": "Beskrivning",
"iban": "IBAN",
"skip": "Hoppa \u00f6ver",
"date": "Datum"
},
"list": {
"name": "Namn",
"account_number": "Kontonummer",
"currentBalance": "Nuvarande saldo",
"lastActivity": "Senaste aktivitet",
"active": "\u00c4r aktiv?"
},
"breadcrumbs": {
"placeholder": "Platsh\u00e5llare",
"budgets": "Budgetar",
"subscriptions": "Prenumerationer",
"transactions": "Transaktioner",
"title_expenses": "Utgifter",
"title_withdrawal": "Uttag",
"title_revenue": "Int\u00e4kter \/ inkomst",
"title_deposit": "Int\u00e4kter \/ inkomst",
"title_transfer": "\u00d6verf\u00f6ringar",
"title_transfers": "\u00d6verf\u00f6ringar",
"asset_accounts": "Tillg\u00e5ngskonton",
"expense_accounts": "Kostnadskonto",
"revenue_accounts": "Int\u00e4ktskonton",
"liabilities_accounts": "Skulder"
},
"firefly": {
"actions": "\u00c5tg\u00e4rder",
"edit": "Redigera",
"delete": "Ta bort",
"reconcile": "Avst\u00e4mning",
"create_new_asset": "Skapa ett nytt tillg\u00e5ngskonto",
"confirm_action": "Bekr\u00e4fta \u00e5tg\u00e4rd",
"new_budget": "Ny budget",
"new_asset_account": "Nytt tillg\u00e5ngskonto",
"newTransfer": "Ny \u00f6verf\u00f6ring",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Ny ins\u00e4ttning",
"newWithdrawal": "Ny utgift",
"bills_paid": "Notor betalda",
"left_to_spend": "\u00c5terst\u00e5r att spendera",
"no_budget": "(ingen budget)",
"budgeted": "Budgeterat",
"spent": "Spenderat",
"no_bill": "(ingen r\u00e4kning)",
"rule_trigger_source_account_starts_choice": "K\u00e4llkontonamn b\u00f6rjar med..",
"rule_trigger_source_account_ends_choice": "K\u00e4llkontonamn slutar med..",
"rule_trigger_source_account_is_choice": "K\u00e4llkontonamn \u00e4r..",
"rule_trigger_source_account_contains_choice": "K\u00e4llkontonamn inneh\u00e5ller..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "K\u00e4llkonto-ID \u00e4r exakt..",
"rule_trigger_destination_account_id_choice": "Destination konto-ID \u00e4r exakt..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "K\u00e4llkonto \u00e4r (kontant) konto",
"rule_trigger_destination_is_cash_choice": "Destinationskonto \u00e4r (kontant) konto",
"rule_trigger_source_account_nr_starts_choice": "K\u00e4llkontonummer \/ IBAN b\u00f6rjar med..",
"rule_trigger_source_account_nr_ends_choice": "K\u00e4llkontonummer \/ IBAN slutar med..",
"rule_trigger_source_account_nr_is_choice": "K\u00e4llkontonummer \/ IBAN \u00e4r..",
"rule_trigger_source_account_nr_contains_choice": "K\u00e4llkontonummer \/ IBAN inneh\u00e5ller..",
"rule_trigger_destination_account_starts_choice": "Destinationskontonamn b\u00f6rjar med..",
"rule_trigger_destination_account_ends_choice": "Destinationskontonamn slutar med..",
"rule_trigger_destination_account_is_choice": "Destinationskontonamn \u00e4r..",
"rule_trigger_destination_account_contains_choice": "Destinationenskontonamn inneh\u00e5ller..",
"rule_trigger_destination_account_nr_starts_choice": "Destinationskontonummer\/IBAN b\u00f6rjar med..",
"rule_trigger_destination_account_nr_ends_choice": "Destinationskontonummer \/ IBAN slutar med..",
"rule_trigger_destination_account_nr_is_choice": "Destinationskontonummer \/ IBAN \u00e4r..",
"rule_trigger_destination_account_nr_contains_choice": "Destinationskontonummer \/ IBAN inneh\u00e5ller..",
"rule_trigger_transaction_type_choice": "Transaktion \u00e4r av typen..",
"rule_trigger_category_is_choice": "Kategori \u00e4r..",
"rule_trigger_amount_less_choice": "Beloppet \u00e4r mindre \u00e4n..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Belopp \u00e4r mer \u00e4n..",
"rule_trigger_description_starts_choice": "Beskrivning b\u00f6rjar med..",
"rule_trigger_description_ends_choice": "Beskrivning slutar med..",
"rule_trigger_description_contains_choice": "Beskrivningen inneh\u00e5ller..",
"rule_trigger_description_is_choice": "Beskrivning \u00e4r..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Transaktionsdatum \u00e4r innan..",
"rule_trigger_date_after_choice": "Transaktionsdatum \u00e4r efter..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Budget \u00e4r..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Transaktionsvalutan \u00e4r..",
"rule_trigger_foreign_currency_is_choice": "Transaktion med utl\u00e4ndsk valuta \u00e4r..",
"rule_trigger_has_attachments_choice": "Har minst s\u00e5 m\u00e5nga bilagor",
"rule_trigger_has_no_category_choice": "Har ingen kategori",
"rule_trigger_has_any_category_choice": "Har en (valfri) kategori",
"rule_trigger_has_no_budget_choice": "Saknar budget",
"rule_trigger_has_any_budget_choice": "Har (valfri) budget",
"rule_trigger_has_no_bill_choice": "Har ingen r\u00e4kning",
"rule_trigger_has_any_bill_choice": "Har en (valfri) r\u00e4kning",
"rule_trigger_has_no_tag_choice": "Saknar etikett(er)",
"rule_trigger_has_any_tag_choice": "Har en eller flera (valfria) etiketter",
"rule_trigger_any_notes_choice": "Har (valfria) anteckningar",
"rule_trigger_no_notes_choice": "Har inga anteckningar",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Faktura \u00e4r..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaktionsjournal-ID \u00e4r..",
"rule_trigger_any_external_url_choice": "Transaktionen har en extern URL",
"rule_trigger_no_external_url_choice": "Transaktionen saknar extern URL",
"rule_trigger_id_choice": "Transaktions-ID \u00e4r..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Rensa alla kategorier",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Rensa alla budgetar",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Ta bort alla etiketter",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Ta bort alla anteckningar",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Konvertera transaktionen till en ins\u00e4ttning",
"rule_action_convert_withdrawal_choice": "Konvertera transaktionen till ett uttag",
"rule_action_convert_transfer_choice": "G\u00f6r transaktionen till en \u00f6verf\u00f6ring",
"placeholder": "[Platsh\u00e5llare]",
"recurrences": "\u00c5terkommande transaktioner",
"title_expenses": "Utgifter",
"title_withdrawal": "Utgifter",
"title_revenue": "Int\u00e4kter \/ inkomst",
"pref_1D": "En dag",
"pref_1W": "En vecka",
"pref_1M": "En m\u00e5nad",
"pref_3M": "Tre m\u00e5nader (kvartal)",
"pref_6M": "Sex m\u00e5nader",
"pref_1Y": "Ett \u00e5r",
"repeat_freq_yearly": "\u00e5rligen",
"repeat_freq_half-year": "varje halv\u00e5r",
"repeat_freq_quarterly": "kvartal",
"repeat_freq_monthly": "m\u00e5nadsvis",
"repeat_freq_weekly": "veckovis",
"single_split": "Dela",
"asset_accounts": "Tillg\u00e5ngskonton",
"expense_accounts": "Kostnadskonto",
"liabilities_accounts": "Skulder",
"undefined_accounts": "Konton",
"name": "Namn",
"revenue_accounts": "Int\u00e4ktskonton",
"description": "Beskrivning",
"category": "Kategori",
"title_deposit": "Int\u00e4kter \/ inkomst",
"title_transfer": "\u00d6verf\u00f6ringar",
"title_transfers": "\u00d6verf\u00f6ringar",
"piggyBanks": "Spargrisar",
"rules": "Regler",
"accounts": "Konton",
"categories": "Kategorier",
"tags": "Etiketter",
"object_groups_page_title": "Grupper",
"reports": "Rapporter",
"webhooks": "Webhookar",
"currencies": "Valutor",
"administration": "Administration",
"profile": "Profil",
"source_account": "K\u00e4llkonto",
"destination_account": "Till konto",
"amount": "Belopp",
"date": "Datum",
"time": "Tid",
"preferences": "Inst\u00e4llningar",
"transactions": "Transaktioner",
"balance": "Saldo",
"budgets": "Budgetar",
"subscriptions": "Prenumerationer",
"welcome_back": "Vad spelas?",
"bills_to_pay": "Notor att betala",
"net_worth": "Nettof\u00f6rm\u00f6genhet",
"pref_last365": "F\u00f6reg\u00e5ende \u00e5r",
"pref_last90": "Senaste 90 dagarna",
"pref_last30": "Senaste 30 dagarna",
"pref_last7": "Senaste 7 dagarna",
"pref_YTD": "Hittills i \u00e5r",
"pref_QTD": "Kvartal hittills",
"pref_MTD": "M\u00e5nad hittills"
}
"config": {
"html_language": "sv",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "Namn",
"amount_min": "Minsta belopp",
"amount_max": "H\u00f6gsta belopp",
"url": "L\u00e4nk",
"title": "Titel",
"first_date": "F\u00f6rsta datum",
"repetitions": "Upprepningar",
"description": "Beskrivning",
"iban": "IBAN",
"skip": "Hoppa \u00f6ver",
"date": "Datum"
},
"list": {
"name": "Namn",
"account_number": "Kontonummer",
"currentBalance": "Nuvarande saldo",
"lastActivity": "Senaste aktivitet",
"active": "\u00c4r aktiv?"
},
"breadcrumbs": {
"placeholder": "Platsh\u00e5llare",
"budgets": "Budgetar",
"subscriptions": "Prenumerationer",
"transactions": "Transaktioner",
"title_expenses": "Utgifter",
"title_withdrawal": "Uttag",
"title_revenue": "Int\u00e4kter \/ inkomst",
"title_deposit": "Int\u00e4kter \/ inkomst",
"title_transfer": "\u00d6verf\u00f6ringar",
"title_transfers": "\u00d6verf\u00f6ringar",
"asset_accounts": "Tillg\u00e5ngskonton",
"expense_accounts": "Kostnadskonto",
"revenue_accounts": "Int\u00e4ktskonton",
"liabilities_accounts": "Skulder"
},
"firefly": {
"actions": "\u00c5tg\u00e4rder",
"edit": "Redigera",
"delete": "Ta bort",
"reconcile": "Avst\u00e4mning",
"create_new_asset": "Skapa ett nytt tillg\u00e5ngskonto",
"confirm_action": "Bekr\u00e4fta \u00e5tg\u00e4rd",
"new_budget": "Ny budget",
"new_asset_account": "Nytt tillg\u00e5ngskonto",
"newTransfer": "Ny \u00f6verf\u00f6ring",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Ny ins\u00e4ttning",
"newWithdrawal": "Ny utgift",
"bills_paid": "Notor betalda",
"left_to_spend": "\u00c5terst\u00e5r att spendera",
"no_budget": "(ingen budget)",
"budgeted": "Budgeterat",
"spent": "Spenderat",
"no_bill": "(ingen r\u00e4kning)",
"rule_trigger_source_account_starts_choice": "K\u00e4llkontonamn b\u00f6rjar med..",
"rule_trigger_source_account_ends_choice": "K\u00e4llkontonamn slutar med..",
"rule_trigger_source_account_is_choice": "K\u00e4llkontonamn \u00e4r..",
"rule_trigger_source_account_contains_choice": "K\u00e4llkontonamn inneh\u00e5ller..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "K\u00e4llkonto-ID \u00e4r exakt..",
"rule_trigger_destination_account_id_choice": "Destination konto-ID \u00e4r exakt..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "K\u00e4llkonto \u00e4r (kontant) konto",
"rule_trigger_destination_is_cash_choice": "Destinationskonto \u00e4r (kontant) konto",
"rule_trigger_source_account_nr_starts_choice": "K\u00e4llkontonummer \/ IBAN b\u00f6rjar med..",
"rule_trigger_source_account_nr_ends_choice": "K\u00e4llkontonummer \/ IBAN slutar med..",
"rule_trigger_source_account_nr_is_choice": "K\u00e4llkontonummer \/ IBAN \u00e4r..",
"rule_trigger_source_account_nr_contains_choice": "K\u00e4llkontonummer \/ IBAN inneh\u00e5ller..",
"rule_trigger_destination_account_starts_choice": "Destinationskontonamn b\u00f6rjar med..",
"rule_trigger_destination_account_ends_choice": "Destinationskontonamn slutar med..",
"rule_trigger_destination_account_is_choice": "Destinationskontonamn \u00e4r..",
"rule_trigger_destination_account_contains_choice": "Destinationenskontonamn inneh\u00e5ller..",
"rule_trigger_destination_account_nr_starts_choice": "Destinationskontonummer\/IBAN b\u00f6rjar med..",
"rule_trigger_destination_account_nr_ends_choice": "Destinationskontonummer \/ IBAN slutar med..",
"rule_trigger_destination_account_nr_is_choice": "Destinationskontonummer \/ IBAN \u00e4r..",
"rule_trigger_destination_account_nr_contains_choice": "Destinationskontonummer \/ IBAN inneh\u00e5ller..",
"rule_trigger_transaction_type_choice": "Transaktion \u00e4r av typen..",
"rule_trigger_category_is_choice": "Kategori \u00e4r..",
"rule_trigger_amount_less_choice": "Beloppet \u00e4r mindre \u00e4n..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Belopp \u00e4r mer \u00e4n..",
"rule_trigger_description_starts_choice": "Beskrivning b\u00f6rjar med..",
"rule_trigger_description_ends_choice": "Beskrivning slutar med..",
"rule_trigger_description_contains_choice": "Beskrivningen inneh\u00e5ller..",
"rule_trigger_description_is_choice": "Beskrivning \u00e4r..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Transaktionsdatum \u00e4r innan..",
"rule_trigger_date_after_choice": "Transaktionsdatum \u00e4r efter..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Budget \u00e4r..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Transaktionsvalutan \u00e4r..",
"rule_trigger_foreign_currency_is_choice": "Transaktion med utl\u00e4ndsk valuta \u00e4r..",
"rule_trigger_has_attachments_choice": "Har minst s\u00e5 m\u00e5nga bilagor",
"rule_trigger_has_no_category_choice": "Har ingen kategori",
"rule_trigger_has_any_category_choice": "Har en (valfri) kategori",
"rule_trigger_has_no_budget_choice": "Saknar budget",
"rule_trigger_has_any_budget_choice": "Har (valfri) budget",
"rule_trigger_has_no_bill_choice": "Har ingen r\u00e4kning",
"rule_trigger_has_any_bill_choice": "Har en (valfri) r\u00e4kning",
"rule_trigger_has_no_tag_choice": "Saknar etikett(er)",
"rule_trigger_has_any_tag_choice": "Har en eller flera (valfria) etiketter",
"rule_trigger_any_notes_choice": "Har (valfria) anteckningar",
"rule_trigger_no_notes_choice": "Har inga anteckningar",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Faktura \u00e4r..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaktionsjournal-ID \u00e4r..",
"rule_trigger_any_external_url_choice": "Transaktionen har en extern URL",
"rule_trigger_no_external_url_choice": "Transaktionen saknar extern URL",
"rule_trigger_id_choice": "Transaktions-ID \u00e4r..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "Rensa alla kategorier",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Rensa alla budgetar",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "Ta bort alla etiketter",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Ta bort alla anteckningar",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Konvertera transaktionen till en ins\u00e4ttning",
"rule_action_convert_withdrawal_choice": "Konvertera transaktionen till ett uttag",
"rule_action_convert_transfer_choice": "G\u00f6r transaktionen till en \u00f6verf\u00f6ring",
"placeholder": "[Platsh\u00e5llare]",
"recurrences": "\u00c5terkommande transaktioner",
"title_expenses": "Utgifter",
"title_withdrawal": "Utgifter",
"title_revenue": "Int\u00e4kter \/ inkomst",
"pref_1D": "En dag",
"pref_1W": "En vecka",
"pref_1M": "En m\u00e5nad",
"pref_3M": "Tre m\u00e5nader (kvartal)",
"pref_6M": "Sex m\u00e5nader",
"pref_1Y": "Ett \u00e5r",
"repeat_freq_yearly": "\u00e5rligen",
"repeat_freq_half-year": "varje halv\u00e5r",
"repeat_freq_quarterly": "kvartal",
"repeat_freq_monthly": "m\u00e5nadsvis",
"repeat_freq_weekly": "veckovis",
"single_split": "Dela",
"asset_accounts": "Tillg\u00e5ngskonton",
"expense_accounts": "Kostnadskonto",
"liabilities_accounts": "Skulder",
"undefined_accounts": "Konton",
"name": "Namn",
"revenue_accounts": "Int\u00e4ktskonton",
"description": "Beskrivning",
"category": "Kategori",
"title_deposit": "Int\u00e4kter \/ inkomst",
"title_transfer": "\u00d6verf\u00f6ringar",
"title_transfers": "\u00d6verf\u00f6ringar",
"piggyBanks": "Spargrisar",
"rules": "Regler",
"accounts": "Konton",
"categories": "Kategorier",
"tags": "Etiketter",
"object_groups_page_title": "Grupper",
"reports": "Rapporter",
"webhooks": "Webhookar",
"currencies": "Valutor",
"administration": "Administration",
"profile": "Profil",
"source_account": "K\u00e4llkonto",
"destination_account": "Till konto",
"amount": "Belopp",
"date": "Datum",
"time": "Tid",
"preferences": "Inst\u00e4llningar",
"transactions": "Transaktioner",
"balance": "Saldo",
"budgets": "Budgetar",
"subscriptions": "Prenumerationer",
"welcome_back": "Vad spelas?",
"bills_to_pay": "Notor att betala",
"net_worth": "Nettof\u00f6rm\u00f6genhet",
"pref_last365": "F\u00f6reg\u00e5ende \u00e5r",
"pref_last90": "Senaste 90 dagarna",
"pref_last30": "Senaste 30 dagarna",
"pref_last7": "Senaste 7 dagarna",
"pref_YTD": "Hittills i \u00e5r",
"pref_QTD": "Kvartal hittills",
"pref_MTD": "M\u00e5nad hittills"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "tr",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "\u0130sim",
"amount_min": "Minimum tutar",
"amount_max": "Minimum tutar",
"url": "URL",
"title": "Ba\u015fl\u0131k",
"first_date": "First date",
"repetitions": "Repetitions",
"description": "Tan\u0131mlama",
"iban": "IBAN numaras\u0131",
"skip": "Atla",
"date": "Tarih"
},
"list": {
"name": "\u0130sim",
"account_number": "Account number",
"currentBalance": "Cari bakiye",
"lastActivity": "Son Etkinlik",
"active": "Aktif mi?"
},
"breadcrumbs": {
"placeholder": "[Tutucu]",
"budgets": "B\u00fct\u00e7eler",
"subscriptions": "Abonelik",
"transactions": "\u0130\u015flemler",
"title_expenses": "Masraflar",
"title_withdrawal": "Masraflar",
"title_revenue": "Gelir \/ kazan\u00e7",
"title_deposit": "Gelir \/kazan\u00e7",
"title_transfer": "Aktarmalar",
"title_transfers": "Aktarmalar",
"asset_accounts": "Varl\u0131k hesaplar\u0131",
"expense_accounts": "Gider hesab\u0131",
"revenue_accounts": "Kazan\u00e7 hesab\u0131",
"liabilities_accounts": "Sorumluluk"
},
"firefly": {
"actions": "Eylemler",
"edit": "D\u00fczenle",
"delete": "Sil",
"reconcile": "Reconcile",
"create_new_asset": "Yeni varl\u0131k hesab\u0131 olu\u015ftur",
"confirm_action": "Confirm action",
"new_budget": "Yeni b\u00fct\u00e7e",
"new_asset_account": "Yeni varl\u0131k hesab\u0131",
"newTransfer": "Yeni Transfer",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Yeni mevduat",
"newWithdrawal": "Yeni gider",
"bills_paid": "\u00d6denen Faturalar",
"left_to_spend": "Harcama i\u00e7in b\u0131rak\u0131ld\u0131",
"no_budget": "(b\u00fct\u00e7e yok)",
"budgeted": "B\u00fct\u00e7elenen",
"spent": "Harcanan",
"no_bill": "(hay\u0131r bill)",
"rule_trigger_source_account_starts_choice": "Kaynak hesap ad\u0131 ile ba\u015flar..",
"rule_trigger_source_account_ends_choice": "Source account name ends with..",
"rule_trigger_source_account_is_choice": "Kaynak hesap ad\u0131d\u0131r..",
"rule_trigger_source_account_contains_choice": "Kaynak hesap ad\u0131 i\u00e7erir..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Kaynak hesap kimli\u011fi tam olarak..",
"rule_trigger_destination_account_id_choice": "Hedef hesap kimli\u011fi tam olarak..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Kaynak hesap (nakit) hesapt\u0131r",
"rule_trigger_destination_is_cash_choice": "Hedef hesap (nakit) hesapt\u0131r",
"rule_trigger_source_account_nr_starts_choice": "Kaynak hesap numaras\u0131 \/ IBAN ile ba\u015flar..",
"rule_trigger_source_account_nr_ends_choice": "Kaynak hesap numaras\u0131 \/ IBAN ile biter..",
"rule_trigger_source_account_nr_is_choice": "Kaynak hesap numaras\u0131 \/ IBAN..",
"rule_trigger_source_account_nr_contains_choice": "Kaynak hesap numaras\u0131 \/ IBAN i\u00e7erir..",
"rule_trigger_destination_account_starts_choice": "Hedef hesap ad\u0131 ile ba\u015flar..",
"rule_trigger_destination_account_ends_choice": "Hedef hesap ad\u0131 ile biter..",
"rule_trigger_destination_account_is_choice": "Hedef hesap ad\u0131d\u0131r..",
"rule_trigger_destination_account_contains_choice": "Hedef hesap ad\u0131 i\u00e7erir..",
"rule_trigger_destination_account_nr_starts_choice": "Hedef hesap numaras\u0131 \/ IBAN ile ba\u015flar..",
"rule_trigger_destination_account_nr_ends_choice": "Hedef hesap numaras\u0131 \/ IBAN ile biter..",
"rule_trigger_destination_account_nr_is_choice": "Hedef hesap numaras\u0131 \/ IBAN'd\u0131r..",
"rule_trigger_destination_account_nr_contains_choice": "Hedef hesap numaras\u0131 \/ IBAN i\u00e7erir..",
"rule_trigger_transaction_type_choice": "\u0130\u015flem t\u00fcr\u00fc..",
"rule_trigger_category_is_choice": "Kategori..",
"rule_trigger_amount_less_choice": "Miktar \u015fundan az..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Miktar fazla..",
"rule_trigger_description_starts_choice": "A\u00e7\u0131klama ba\u015fl\u0131yor..",
"rule_trigger_description_ends_choice": "A\u00e7\u0131klama bitiyor..",
"rule_trigger_description_contains_choice": "A\u00e7\u0131klama i\u00e7erir..",
"rule_trigger_description_is_choice": "A\u00e7\u0131klama..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "\u0130\u015flem tarihi \u00f6ncedir..",
"rule_trigger_date_after_choice": "\u0130\u015flem tarihi sonrad\u0131r..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "B\u00fct\u00e7e..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "\u0130\u015flem d\u00f6vizi..",
"rule_trigger_foreign_currency_is_choice": "\u0130\u015flem d\u00f6vizdir..",
"rule_trigger_has_attachments_choice": "En son bir \u00e7ok eklentileri var",
"rule_trigger_has_no_category_choice": "Kategorisi yok",
"rule_trigger_has_any_category_choice": "Bir kategorisi var",
"rule_trigger_has_no_budget_choice": "B\u00fct\u00e7e yok",
"rule_trigger_has_any_budget_choice": "Bir b\u00fct\u00e7esi var",
"rule_trigger_has_no_bill_choice": "Faturas\u0131 yok",
"rule_trigger_has_any_bill_choice": "(Herhangi) bir faturas\u0131 var m\u0131",
"rule_trigger_has_no_tag_choice": "Etiket yok",
"rule_trigger_has_any_tag_choice": "Bir veya bir\u00e7ok etiketleri var",
"rule_trigger_any_notes_choice": "Notlar\u0131 var",
"rule_trigger_no_notes_choice": "Notu yok",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Bill \u00f6yle..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "\u0130\u015flem g\u00fcnl\u00fc\u011f\u00fc kimli\u011fidir..",
"rule_trigger_any_external_url_choice": "\u0130\u015flemin harici bir URL'si var",
"rule_trigger_no_external_url_choice": "\u0130\u015flemin harici URL'si yok",
"rule_trigger_id_choice": "\u0130\u015flem kimli\u011fidir..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "T\u00fcm kategoriyi temizle",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Herhangi bir b\u00fct\u00e7eyi temizle",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "T\u00fcm etiketleri kald\u0131r",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Herhangi bir notu kald\u0131r",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "\u0130\u015flemi mevduata d\u00f6n\u00fc\u015ft\u00fcr",
"rule_action_convert_withdrawal_choice": "\u0130\u015flemi para \u00e7ekmeye d\u00f6n\u00fc\u015ft\u00fcr",
"rule_action_convert_transfer_choice": "\u0130\u015flemi transfere d\u00f6n\u00fc\u015ft\u00fcr",
"placeholder": "[Placeholder]",
"recurrences": "Tekrar Eden \u0130\u015flemler",
"title_expenses": "Giderler",
"title_withdrawal": "Giderler",
"title_revenue": "Gelir \/ Gelir",
"pref_1D": "Bir g\u00fcn",
"pref_1W": "Bir hafta",
"pref_1M": "Bir ay",
"pref_3M": "\u00dc\u00e7 ay (\u00e7eyrek)",
"pref_6M": "Alt\u0131 ay",
"pref_1Y": "Bir y\u0131l",
"repeat_freq_yearly": "y\u0131ll\u0131k",
"repeat_freq_half-year": "her yar\u0131 y\u0131l",
"repeat_freq_quarterly": "\u00fc\u00e7 ayl\u0131k",
"repeat_freq_monthly": "ayl\u0131k",
"repeat_freq_weekly": "haftal\u0131k",
"single_split": "B\u00f6l",
"asset_accounts": "Varl\u0131k hesaplar\u0131",
"expense_accounts": "Gider hesaplar\u0131",
"liabilities_accounts": "Liabilities",
"undefined_accounts": "Accounts",
"name": "\u0130sim",
"revenue_accounts": "Gelir hesaplar\u0131",
"description": "A\u00e7\u0131klama",
"category": "Kategori",
"title_deposit": "Gelir \/ Gelir",
"title_transfer": "Transferler",
"title_transfers": "Transferler",
"piggyBanks": "Kumbara",
"rules": "Kurallar",
"accounts": "Hesaplar",
"categories": "Kategoriler",
"tags": "Etiketler",
"object_groups_page_title": "Groups",
"reports": "Raporlar",
"webhooks": "Web kancalar\u0131",
"currencies": "Kurlar",
"administration": "Y\u00f6netim",
"profile": "Profil",
"source_account": "Kaynak hesap",
"destination_account": "Hedef hesap",
"amount": "Miktar",
"date": "Tarih",
"time": "Time",
"preferences": "Tercihler",
"transactions": "\u0130\u015flemler",
"balance": "Denge",
"budgets": "B\u00fct\u00e7eler",
"subscriptions": "Abonelik",
"welcome_back": "Neler oluyor?",
"bills_to_pay": "\u00d6denecek fatura",
"net_worth": "Net de\u011fer",
"pref_last365": "Ge\u00e7en y\u0131l",
"pref_last90": "Son 90 g\u00fcn",
"pref_last30": "Son 30 g\u00fcn",
"pref_last7": "Son 7 g\u00fcn",
"pref_YTD": "Y\u0131ldan bug\u00fcne",
"pref_QTD": "Bug\u00fcne kadar tarih",
"pref_MTD": "Bug\u00fcne kadar ay"
}
"config": {
"html_language": "tr",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "\u0130sim",
"amount_min": "Minimum tutar",
"amount_max": "Minimum tutar",
"url": "URL",
"title": "Ba\u015fl\u0131k",
"first_date": "First date",
"repetitions": "Repetitions",
"description": "Tan\u0131mlama",
"iban": "IBAN numaras\u0131",
"skip": "Atla",
"date": "Tarih"
},
"list": {
"name": "\u0130sim",
"account_number": "Account number",
"currentBalance": "Cari bakiye",
"lastActivity": "Son Etkinlik",
"active": "Aktif mi?"
},
"breadcrumbs": {
"placeholder": "[Tutucu]",
"budgets": "B\u00fct\u00e7eler",
"subscriptions": "Abonelik",
"transactions": "\u0130\u015flemler",
"title_expenses": "Masraflar",
"title_withdrawal": "Masraflar",
"title_revenue": "Gelir \/ kazan\u00e7",
"title_deposit": "Gelir \/kazan\u00e7",
"title_transfer": "Aktarmalar",
"title_transfers": "Aktarmalar",
"asset_accounts": "Varl\u0131k hesaplar\u0131",
"expense_accounts": "Gider hesab\u0131",
"revenue_accounts": "Kazan\u00e7 hesab\u0131",
"liabilities_accounts": "Sorumluluk"
},
"firefly": {
"actions": "Eylemler",
"edit": "D\u00fczenle",
"delete": "Sil",
"reconcile": "Reconcile",
"create_new_asset": "Yeni varl\u0131k hesab\u0131 olu\u015ftur",
"confirm_action": "Confirm action",
"new_budget": "Yeni b\u00fct\u00e7e",
"new_asset_account": "Yeni varl\u0131k hesab\u0131",
"newTransfer": "Yeni Transfer",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Yeni mevduat",
"newWithdrawal": "Yeni gider",
"bills_paid": "\u00d6denen Faturalar",
"left_to_spend": "Harcama i\u00e7in b\u0131rak\u0131ld\u0131",
"no_budget": "(b\u00fct\u00e7e yok)",
"budgeted": "B\u00fct\u00e7elenen",
"spent": "Harcanan",
"no_bill": "(hay\u0131r bill)",
"rule_trigger_source_account_starts_choice": "Kaynak hesap ad\u0131 ile ba\u015flar..",
"rule_trigger_source_account_ends_choice": "Source account name ends with..",
"rule_trigger_source_account_is_choice": "Kaynak hesap ad\u0131d\u0131r..",
"rule_trigger_source_account_contains_choice": "Kaynak hesap ad\u0131 i\u00e7erir..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Kaynak hesap kimli\u011fi tam olarak..",
"rule_trigger_destination_account_id_choice": "Hedef hesap kimli\u011fi tam olarak..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Kaynak hesap (nakit) hesapt\u0131r",
"rule_trigger_destination_is_cash_choice": "Hedef hesap (nakit) hesapt\u0131r",
"rule_trigger_source_account_nr_starts_choice": "Kaynak hesap numaras\u0131 \/ IBAN ile ba\u015flar..",
"rule_trigger_source_account_nr_ends_choice": "Kaynak hesap numaras\u0131 \/ IBAN ile biter..",
"rule_trigger_source_account_nr_is_choice": "Kaynak hesap numaras\u0131 \/ IBAN..",
"rule_trigger_source_account_nr_contains_choice": "Kaynak hesap numaras\u0131 \/ IBAN i\u00e7erir..",
"rule_trigger_destination_account_starts_choice": "Hedef hesap ad\u0131 ile ba\u015flar..",
"rule_trigger_destination_account_ends_choice": "Hedef hesap ad\u0131 ile biter..",
"rule_trigger_destination_account_is_choice": "Hedef hesap ad\u0131d\u0131r..",
"rule_trigger_destination_account_contains_choice": "Hedef hesap ad\u0131 i\u00e7erir..",
"rule_trigger_destination_account_nr_starts_choice": "Hedef hesap numaras\u0131 \/ IBAN ile ba\u015flar..",
"rule_trigger_destination_account_nr_ends_choice": "Hedef hesap numaras\u0131 \/ IBAN ile biter..",
"rule_trigger_destination_account_nr_is_choice": "Hedef hesap numaras\u0131 \/ IBAN'd\u0131r..",
"rule_trigger_destination_account_nr_contains_choice": "Hedef hesap numaras\u0131 \/ IBAN i\u00e7erir..",
"rule_trigger_transaction_type_choice": "\u0130\u015flem t\u00fcr\u00fc..",
"rule_trigger_category_is_choice": "Kategori..",
"rule_trigger_amount_less_choice": "Miktar \u015fundan az..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "Miktar fazla..",
"rule_trigger_description_starts_choice": "A\u00e7\u0131klama ba\u015fl\u0131yor..",
"rule_trigger_description_ends_choice": "A\u00e7\u0131klama bitiyor..",
"rule_trigger_description_contains_choice": "A\u00e7\u0131klama i\u00e7erir..",
"rule_trigger_description_is_choice": "A\u00e7\u0131klama..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "\u0130\u015flem tarihi \u00f6ncedir..",
"rule_trigger_date_after_choice": "\u0130\u015flem tarihi sonrad\u0131r..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "B\u00fct\u00e7e..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "\u0130\u015flem d\u00f6vizi..",
"rule_trigger_foreign_currency_is_choice": "\u0130\u015flem d\u00f6vizdir..",
"rule_trigger_has_attachments_choice": "En son bir \u00e7ok eklentileri var",
"rule_trigger_has_no_category_choice": "Kategorisi yok",
"rule_trigger_has_any_category_choice": "Bir kategorisi var",
"rule_trigger_has_no_budget_choice": "B\u00fct\u00e7e yok",
"rule_trigger_has_any_budget_choice": "Bir b\u00fct\u00e7esi var",
"rule_trigger_has_no_bill_choice": "Faturas\u0131 yok",
"rule_trigger_has_any_bill_choice": "(Herhangi) bir faturas\u0131 var m\u0131",
"rule_trigger_has_no_tag_choice": "Etiket yok",
"rule_trigger_has_any_tag_choice": "Bir veya bir\u00e7ok etiketleri var",
"rule_trigger_any_notes_choice": "Notlar\u0131 var",
"rule_trigger_no_notes_choice": "Notu yok",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Bill \u00f6yle..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "\u0130\u015flem g\u00fcnl\u00fc\u011f\u00fc kimli\u011fidir..",
"rule_trigger_any_external_url_choice": "\u0130\u015flemin harici bir URL'si var",
"rule_trigger_no_external_url_choice": "\u0130\u015flemin harici URL'si yok",
"rule_trigger_id_choice": "\u0130\u015flem kimli\u011fidir..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "T\u00fcm kategoriyi temizle",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "Herhangi bir b\u00fct\u00e7eyi temizle",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "T\u00fcm etiketleri kald\u0131r",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "Herhangi bir notu kald\u0131r",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "\u0130\u015flemi mevduata d\u00f6n\u00fc\u015ft\u00fcr",
"rule_action_convert_withdrawal_choice": "\u0130\u015flemi para \u00e7ekmeye d\u00f6n\u00fc\u015ft\u00fcr",
"rule_action_convert_transfer_choice": "\u0130\u015flemi transfere d\u00f6n\u00fc\u015ft\u00fcr",
"placeholder": "[Placeholder]",
"recurrences": "Tekrar Eden \u0130\u015flemler",
"title_expenses": "Giderler",
"title_withdrawal": "Giderler",
"title_revenue": "Gelir \/ Gelir",
"pref_1D": "Bir g\u00fcn",
"pref_1W": "Bir hafta",
"pref_1M": "Bir ay",
"pref_3M": "\u00dc\u00e7 ay (\u00e7eyrek)",
"pref_6M": "Alt\u0131 ay",
"pref_1Y": "Bir y\u0131l",
"repeat_freq_yearly": "y\u0131ll\u0131k",
"repeat_freq_half-year": "her yar\u0131 y\u0131l",
"repeat_freq_quarterly": "\u00fc\u00e7 ayl\u0131k",
"repeat_freq_monthly": "ayl\u0131k",
"repeat_freq_weekly": "haftal\u0131k",
"single_split": "B\u00f6l",
"asset_accounts": "Varl\u0131k hesaplar\u0131",
"expense_accounts": "Gider hesaplar\u0131",
"liabilities_accounts": "Liabilities",
"undefined_accounts": "Accounts",
"name": "\u0130sim",
"revenue_accounts": "Gelir hesaplar\u0131",
"description": "A\u00e7\u0131klama",
"category": "Kategori",
"title_deposit": "Gelir \/ Gelir",
"title_transfer": "Transferler",
"title_transfers": "Transferler",
"piggyBanks": "Kumbara",
"rules": "Kurallar",
"accounts": "Hesaplar",
"categories": "Kategoriler",
"tags": "Etiketler",
"object_groups_page_title": "Groups",
"reports": "Raporlar",
"webhooks": "Web kancalar\u0131",
"currencies": "Kurlar",
"administration": "Y\u00f6netim",
"profile": "Profil",
"source_account": "Kaynak hesap",
"destination_account": "Hedef hesap",
"amount": "Miktar",
"date": "Tarih",
"time": "Time",
"preferences": "Tercihler",
"transactions": "\u0130\u015flemler",
"balance": "Denge",
"budgets": "B\u00fct\u00e7eler",
"subscriptions": "Abonelik",
"welcome_back": "Neler oluyor?",
"bills_to_pay": "\u00d6denecek fatura",
"net_worth": "Net de\u011fer",
"pref_last365": "Ge\u00e7en y\u0131l",
"pref_last90": "Son 90 g\u00fcn",
"pref_last30": "Son 30 g\u00fcn",
"pref_last7": "Son 7 g\u00fcn",
"pref_YTD": "Y\u0131ldan bug\u00fcne",
"pref_QTD": "Bug\u00fcne kadar tarih",
"pref_MTD": "Bug\u00fcne kadar ay"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "uk",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "\u041d\u0430\u0437\u0432\u0430",
"amount_min": "\u041c\u0456\u043d\u0456\u043c\u0430\u043b\u044c\u043d\u0430 \u0441\u0443\u043c\u0430",
"amount_max": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0430 \u0441\u0443\u043c\u0430",
"url": "URL",
"title": "\u041d\u0430\u0437\u0432\u0430",
"first_date": "\u041f\u0435\u0440\u0448\u0430 \u0434\u0430\u0442\u0430",
"repetitions": "\u041f\u043e\u0432\u0442\u043e\u0440\u0435\u043d\u043d\u044f",
"description": "\u041e\u043f\u0438\u0441",
"iban": "IBAN",
"skip": "\u041f\u0440\u043e\u043f\u0443\u0441\u0442\u0438\u0442\u0438",
"date": "\u0414\u0430\u0442\u0430"
},
"list": {
"name": "\u041d\u0430\u0437\u0432\u0430",
"account_number": "Account number",
"currentBalance": "\u041f\u043e\u0442\u043e\u0447\u043d\u0438\u0439 \u0431\u0430\u043b\u0430\u043d\u0441",
"lastActivity": "\u041e\u0441\u0442\u0430\u043d\u043d\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u044f",
"active": "\u0427\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u0438\u0439?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "\u0411\u044e\u0434\u0436\u0435\u0442",
"subscriptions": "\u041f\u0456\u0434\u043f\u0438\u0441\u043a\u0430",
"transactions": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0457",
"title_expenses": "\u0412\u0438\u0442\u0440\u0430\u0442\u0438",
"title_withdrawal": "\u0412\u0438\u0442\u0440\u0430\u0442\u0438",
"title_revenue": "\u0414\u043e\u0445\u0456\u0434 \/ \u043f\u0440\u0438\u0431\u0443\u0442\u043e\u043a",
"title_deposit": "\u0414\u043e\u0445\u0456\u0434 \/ \u043f\u0440\u0438\u0431\u0443\u0442\u043e\u043a",
"title_transfer": "\u041f\u0435\u0440\u0435\u043a\u0430\u0437\u0438",
"title_transfers": "\u041f\u0435\u0440\u0435\u043a\u0430\u0437\u0438",
"asset_accounts": "\u041e\u0441\u043d\u043e\u0432\u043d\u0456 \u0440\u0430\u0445\u0443\u043d\u043a\u0438",
"expense_accounts": "\u0420\u0430\u0445\u0443\u043d\u043a\u0438 \u0432\u0438\u0442\u0440\u0430\u0442",
"revenue_accounts": "\u0414\u0436\u0435\u0440\u0435\u043b\u0430 \u0434\u043e\u0445\u043e\u0434\u0456\u0432",
"liabilities_accounts": "\u0417\u043e\u0431\u043e\u0432'\u044f\u0437\u0430\u043d\u043d\u044f"
},
"firefly": {
"actions": "\u0414\u0456\u0457",
"edit": "\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438",
"delete": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438",
"reconcile": "Reconcile",
"create_new_asset": "Create new asset account",
"confirm_action": "\u041f\u0456\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0438 \u0434\u0456\u044e",
"new_budget": "\u041d\u043e\u0432\u0438\u0439 \u0431\u044e\u0434\u0436\u0435\u0442",
"new_asset_account": "\u041d\u043e\u0432\u0438\u0439 \u0440\u0430\u0445\u0443\u043d\u043e\u043a \u0430\u043a\u0442\u0438\u0432\u0456\u0432",
"newTransfer": "\u041d\u043e\u0432\u0438\u0439 \u043f\u0435\u0440\u0435\u043a\u0430\u0437",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "\u041d\u043e\u0432\u0456 \u043d\u0430\u0434\u0445\u043e\u0434\u0436\u0435\u043d\u043d\u044f",
"newWithdrawal": "\u041d\u043e\u0432\u0456 \u0432\u0438\u0442\u0440\u0430\u0442\u0438",
"bills_paid": "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u0456 \u0440\u0430\u0445\u0443\u043d\u043a\u0438",
"left_to_spend": "Left to spend",
"no_budget": "(\u043f\u043e\u0437\u0430 \u0431\u044e\u0434\u0436\u0435\u0442\u043e\u043c)",
"budgeted": "Budgeted",
"spent": "Spent",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "\u0406\u043c'\u044f \u0432\u0438\u0445\u0456\u0434\u043d\u043e\u0433\u043e \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u043f\u043e\u0447\u0438\u043d\u0430\u0454\u0442\u044c\u0441\u044f \u0437 \": value\"..",
"rule_trigger_source_account_ends_choice": "\u041d\u0430\u0437\u0432\u0430 \u0434\u0436\u0435\u0440\u0435\u043b\u0430 \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u0437\u0430\u043a\u0456\u043d\u0447\u0443\u0454\u0442\u044c\u0441\u044f \u043d\u0430..",
"rule_trigger_source_account_is_choice": "\u0406\u043c'\u044f \u0432\u0438\u0445\u0456\u0434\u043d\u043e\u0433\u043e \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u043c\u0456\u0441\u0442\u0438\u0442\u044c..",
"rule_trigger_source_account_contains_choice": "\u041d\u0430\u0437\u0432\u0430 \u0434\u0436\u0435\u0440\u0435\u043b\u0430 \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u043c\u0456\u0441\u0442\u0438\u0442\u044c..",
"rule_trigger_account_id_choice": "\u0406\u0434\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u044f \u0431\u0443\u0434\u044c-\u044f\u043a\u043e\u0433\u043e \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u0454 \u0442\u043e\u0447\u043d\u043e\u044e..",
"rule_trigger_source_account_id_choice": "\u0406\u0434\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u044f \u0431\u0443\u0434\u044c-\u044f\u043a\u043e\u0433\u043e \u0434\u0436\u0435\u0440\u0435\u043b\u0430 \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u0454 \u0442\u043e\u0447\u043d\u043e\u044e..",
"rule_trigger_destination_account_id_choice": "\u0406\u0434\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u044f \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0454 \u0442\u043e\u0447\u043d\u043e\u044e..",
"rule_trigger_account_is_cash_choice": "\u0411\u0443\u0434\u044c-\u044f\u043a\u0438\u0439 \u0440\u0430\u0445\u0443\u043d\u043e\u043a \u0454 \u0433\u043e\u0442\u0456\u0432\u043a\u043e\u0432\u0438\u043c",
"rule_trigger_source_is_cash_choice": "\u0414\u0436\u0435\u0440\u0435\u043b\u043e\u043c \u0440\u0430\u0445\u0443\u043d\u043a\u043e\u043c \u0454 \u200b\u200b(\u0433\u043e\u0442\u0456\u0432\u043a\u043e\u0432\u0438\u0439) \u0440\u0430\u0445\u0443\u043d\u043e\u043a",
"rule_trigger_destination_is_cash_choice": "\u0420\u0430\u0445\u0443\u043d\u043a\u043e\u043c \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0454 \u200b\u200b(\u0433\u043e\u0442\u0456\u0432\u043a\u043e\u0432\u0438\u0439) \u0440\u0430\u0445\u0443\u043d\u043e\u043a",
"rule_trigger_source_account_nr_starts_choice": "\u041d\u043e\u043c\u0435\u0440 \u0434\u0436\u0435\u0440\u0435\u043b\u0430 \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \/ IBAN \u043f\u043e\u0447\u0438\u043d\u0430\u0454\u0442\u044c\u0441\u044f \u0437..",
"rule_trigger_source_account_nr_ends_choice": "\u041d\u043e\u043c\u0435\u0440 \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \/ IBAN \u0437\u0430\u043a\u0456\u043d\u0447\u0443\u0454\u0442\u044c\u0441\u044f \u043d\u0430..",
"rule_trigger_source_account_nr_is_choice": "\u041d\u043e\u043c\u0435\u0440 \u0434\u0436\u0435\u0440\u0435\u043b\u0430 \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \/ IBAN \u0454..",
"rule_trigger_source_account_nr_contains_choice": "\u041d\u043e\u043c\u0435\u0440 \u0434\u0436\u0435\u0440\u0435\u043b\u0430 \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \/ IBAN \u043c\u0456\u0441\u0442\u0438\u0442\u044c..",
"rule_trigger_destination_account_starts_choice": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u043f\u043e\u0447\u0438\u043d\u0430\u0454\u0442\u044c\u0441\u044f \u0437..",
"rule_trigger_destination_account_ends_choice": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0437\u0430\u043a\u0456\u043d\u0447\u0443\u0454\u0442\u044c\u0441\u044f \u043d\u0430..",
"rule_trigger_destination_account_is_choice": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a-\u043e\u0434\u0435\u0440\u0436\u0443\u0432\u0430\u0447..",
"rule_trigger_destination_account_contains_choice": "\u0406\u043c'\u044f \u0440\u0430\u0445\u0443\u043d\u043e\u043a\u0443-\u043e\u0434\u0435\u0440\u0436\u0443\u0432\u0430\u0447\u0430 \u043c\u0456\u0441\u0442\u0438\u0442\u044c..",
"rule_trigger_destination_account_nr_starts_choice": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \/ IBAN \u043f\u043e\u0447\u0438\u043d\u0430\u0454\u0442\u044c\u0441\u044f \u0437..",
"rule_trigger_destination_account_nr_ends_choice": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \/ IBAN \u0437\u0430\u043a\u0456\u043d\u0447\u0443\u0454\u0442\u044c\u0441\u044f \u043d\u0430..",
"rule_trigger_destination_account_nr_is_choice": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \/ IBAN..",
"rule_trigger_destination_account_nr_contains_choice": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \/ IBAN \u043c\u0456\u0441\u0442\u0438\u0442\u044c..",
"rule_trigger_transaction_type_choice": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0456\u044f \u043c\u0430\u0454 \u0442\u0438\u043f..",
"rule_trigger_category_is_choice": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u044f \u0454..",
"rule_trigger_amount_less_choice": "\u0421\u0443\u043c\u0430 \u0431\u0456\u043b\u044c\u0448\u0435 \u043d\u0456\u0436..",
"rule_trigger_amount_is_choice": "\u0421\u0443\u043c\u0430..",
"rule_trigger_amount_more_choice": "\u0421\u0443\u043c\u0430 \u0431\u0456\u043b\u044c\u0448\u0435 \u043d\u0456\u0436..",
"rule_trigger_description_starts_choice": "\u041e\u043f\u0438\u0441 \u043f\u043e\u0447\u0438\u043d\u0430\u0454\u0442\u044c\u0441\u044f \u0437..",
"rule_trigger_description_ends_choice": "\u041e\u043f\u0438\u0441 \u0437\u0430\u043a\u0456\u043d\u0447\u0443\u0454\u0442\u044c\u0441\u044f \u043d\u0430..",
"rule_trigger_description_contains_choice": "\u041e\u043f\u0438\u0441 \u043c\u0456\u0441\u0442\u0438\u0442\u044c..",
"rule_trigger_description_is_choice": "\u041e\u043f\u0438\u0441..",
"rule_trigger_date_on_choice": "\u0414\u0430\u0442\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457..",
"rule_trigger_date_before_choice": "\u0414\u0430\u0442\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457 \u0440\u0430\u043d\u0456\u0448\u0435..",
"rule_trigger_date_after_choice": "\u0414\u0430\u0442\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457 \u043f\u0456\u0437\u043d\u0456\u0448\u0435..",
"rule_trigger_created_at_on_choice": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u044f \u0431\u0443\u043b\u0430 \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u0430..",
"rule_trigger_updated_at_on_choice": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u044f \u0431\u0443\u043b\u0430 \u0432\u0456\u0434\u0440\u0435\u0434\u0430\u0433\u043e\u0432\u0430\u043d\u0430..",
"rule_trigger_budget_is_choice": "\u0411\u044e\u0434\u0436\u0435\u0442..",
"rule_trigger_tag_is_choice": "\u0411\u0443\u0434\u044c-\u044f\u043a\u0430 \u043c\u0456\u0442\u043a\u0430..",
"rule_trigger_currency_is_choice": "\u0412\u0430\u043b\u044e\u0442\u0438 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0456\u0439 \u0454..",
"rule_trigger_foreign_currency_is_choice": "\u0412\u0430\u043b\u044e\u0442\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0456\u0457 \u0454..",
"rule_trigger_has_attachments_choice": "\u041c\u0430\u0454 \u043f\u0440\u0438\u043d\u0430\u0439\u043c\u043d\u0456 \u0446\u044e \u043a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u0432\u043a\u043b\u0430\u0434\u0435\u043d\u044c",
"rule_trigger_has_no_category_choice": "\u0411\u0435\u0437 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0457",
"rule_trigger_has_any_category_choice": "\u041c\u0430\u0454 (\u0431\u0443\u0434\u044c-\u044f\u043a\u0443) \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u044e",
"rule_trigger_has_no_budget_choice": "\u041d\u0435\u043c\u0430\u0454 \u043f\u043e\u0432'\u044f\u0437\u0430\u043d\u043e\u0433\u043e \u0431\u044e\u0434\u0436\u0435\u0442\u0443",
"rule_trigger_has_any_budget_choice": "\u041c\u0430\u0454 (\u0431\u0443\u0434\u044c-\u044f\u043a\u0438\u0439) \u0431\u044e\u0434\u0436\u0435\u0442",
"rule_trigger_has_no_bill_choice": "\u041d\u0435 \u043c\u0430\u0454 \u0440\u0430\u0445\u0443\u043d\u043a\u0456\u0432 \u0434\u043e \u0441\u043f\u043b\u0430\u0442\u0438",
"rule_trigger_has_any_bill_choice": "\u041c\u0430\u0454 (\u044f\u043a\u0438\u0439\u0441\u044c) \u0440\u0430\u0445\u0443\u043d\u043e\u043a \u0434\u043e \u0441\u043f\u043b\u0430\u0442\u0438",
"rule_trigger_has_no_tag_choice": "\u041d\u0435\u043c\u0430\u0454 \u0442\u0435\u0433\u0456\u0432",
"rule_trigger_has_any_tag_choice": "\u0404 \u043e\u0434\u0438\u043d \u0430\u0431\u043e \u043a\u0456\u043b\u044c\u043a\u0430 \u0442\u0435\u0433\u0456\u0432 (\u0431\u0443\u0434\u044c-\u044f\u043a\u0438\u0445)",
"rule_trigger_any_notes_choice": "\u041c\u0430\u0454 (\u0431\u0443\u0434\u044c-\u044f\u043a\u0456) \u043d\u043e\u0442\u0430\u0442\u043a\u0438",
"rule_trigger_no_notes_choice": "\u041d\u043e\u0442\u0430\u0442\u043a\u0438 \u0432\u0456\u0434\u0441\u0443\u0442\u043d\u0456",
"rule_trigger_notes_is_choice": "\u041f\u0440\u0438\u043c\u0456\u0442\u043a\u0438..",
"rule_trigger_notes_contains_choice": "\u041f\u0440\u0438\u043c\u0456\u0442\u043a\u0438 \u043c\u0456\u0441\u0442\u044f\u0442\u044c..",
"rule_trigger_notes_starts_choice": "\u041f\u0440\u0438\u043c\u0456\u0442\u043a\u0438 \u043f\u043e\u0447\u0438\u043d\u0430\u044e\u0442\u044c\u0441\u044f \u0437..",
"rule_trigger_notes_ends_choice": "\u041f\u0440\u0438\u043c\u0456\u0442\u043a\u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0443\u044e\u0442\u044c\u0441\u044f \u043d\u0430..",
"rule_trigger_bill_is_choice": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u0434\u043e \u0441\u043f\u043b\u0430\u0442\u0438..",
"rule_trigger_external_id_is_choice": "\u0417\u043e\u0432\u043d\u0456\u0448\u043d\u0456\u0439 ID \u043c\u0456\u0441\u0442\u0438\u0442\u044c..",
"rule_trigger_internal_reference_is_choice": "\u0412\u043d\u0443\u0442\u0440\u0456\u0448\u043d\u0454 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f - \u0446\u0435..",
"rule_trigger_journal_id_choice": "\u0406\u0434\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0442\u043e\u0440 \u0436\u0443\u0440\u043d\u0430\u043b\u0443 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0439 \u0454..",
"rule_trigger_any_external_url_choice": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u044f \u043c\u0430\u0454 \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u044e URL-\u0430\u0434\u0440\u0435\u0441\u0443",
"rule_trigger_no_external_url_choice": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u044f \u043d\u0435 \u043c\u0430\u0454 \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u044c\u043e\u0457 URL-\u0430\u0434\u0440\u0435\u0441\u0438",
"rule_trigger_id_choice": "\u0406\u0434\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0442\u043e\u0440 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457..",
"rule_action_delete_transaction_choice": "\u0412\u0418\u0414\u0410\u041b\u0418\u0422\u0418 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u044e(!)",
"rule_action_set_category_choice": "\u041e\u0431\u0440\u0430\u0442\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u044e..",
"rule_action_clear_category_choice": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0432\u0441\u0456 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0457",
"rule_action_set_budget_choice": "\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0438 \u0431\u044e\u0434\u0436\u0435\u0442..",
"rule_action_clear_budget_choice": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0432\u0441\u0456 \u0431\u044e\u0434\u0436\u0435\u0442\u0438",
"rule_action_add_tag_choice": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0442\u0435\u0433..",
"rule_action_remove_tag_choice": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0442\u0435\u0433..",
"rule_action_remove_all_tags_choice": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0443\u0441\u0456 \u0442\u0435\u0433\u0438",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "\u0412\u0438\u0431\u0440\u0430\u0442\u0438 \u0446\u0456\u043b\u044c\u043e\u0432\u0438\u0439 \u0440\u0430\u0445\u0443\u043d\u043e\u043a..",
"rule_action_append_notes_choice": "\u0414\u043e\u0434\u0430\u0439\u0442\u0435 \u043d\u043e\u0442\u0430\u0442\u043a\u0438 \u0437\u0430 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u043e\u044e ..",
"rule_action_prepend_notes_choice": "\u0414\u043e\u0434\u0430\u0439\u0442\u0435 \u0434\u043e \u043d\u043e\u0442\u0430\u0442\u043e\u043a ..",
"rule_action_clear_notes_choice": "\u0412\u0438\u0434\u0430\u043b\u0456\u0442\u044c \u0431\u0443\u0434\u044c-\u044f\u043a\u0456 \u043f\u0440\u0438\u043c\u0456\u0442\u043a\u0438",
"rule_action_set_notes_choice": "\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u043d\u043e\u0442\u0430\u0442\u043a\u0438 \u0434\u043e ..",
"rule_action_link_to_bill_choice": "\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0440\u0430\u0445\u0443\u043d\u043e\u043a \u0434\u043e \u0441\u043f\u043b\u0430\u0442\u0438 ..",
"rule_action_convert_deposit_choice": "\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u044e \u0432 \u0434\u0435\u043f\u043e\u0437\u0438\u0442",
"rule_action_convert_withdrawal_choice": "\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0456\u0442\u044c \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u044e \u043d\u0430 \u0437\u043d\u044f\u0442\u0442\u044f",
"rule_action_convert_transfer_choice": "\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457 \u043d\u0430 \u043f\u0435\u0440\u0435\u043a\u0430\u0437",
"placeholder": "[Placeholder]",
"recurrences": "Recurring transactions",
"title_expenses": "\u0412\u0438\u0442\u0440\u0430\u0442\u0438",
"title_withdrawal": "\u0412\u0438\u0442\u0440\u0430\u0442\u0438",
"title_revenue": "\u0414\u043e\u0445\u0456\u0434 \/ \u043f\u0440\u0438\u0445\u0456\u0434",
"pref_1D": "\u041e\u0434\u0438\u043d \u0434\u0435\u043d\u044c",
"pref_1W": "\u041e\u0434\u0438\u043d \u0442\u0438\u0436\u0434\u0435\u043d\u044c",
"pref_1M": "\u041e\u0434\u0438\u043d \u043c\u0456\u0441\u044f\u0446\u044c",
"pref_3M": "\u0422\u0440\u0438 \u043c\u0456\u0441\u044f\u0446\u0456 (\u043a\u0432\u0430\u0440\u0442\u0430\u043b)",
"pref_6M": "\u0428\u0456\u0441\u0442\u044c \u043c\u0456\u0441\u044f\u0446\u0456\u0432",
"pref_1Y": "\u041e\u0434\u0438\u043d \u0440\u0456\u043a",
"repeat_freq_yearly": "\u0437\u0430 \u0440\u043e\u043a\u0430\u043c\u0438",
"repeat_freq_half-year": "\u043a\u043e\u0436\u043d\u0438\u0445 \u043f\u0456\u0432\u0440\u043e\u043a\u0443",
"repeat_freq_quarterly": "\u0437\u0430 \u043a\u0432\u0430\u0440\u0442\u0430\u043b\u0430\u043c\u0438",
"repeat_freq_monthly": "\u0449\u043e\u043c\u0456\u0441\u044f\u0446\u044f",
"repeat_freq_weekly": "\u0449\u043e\u0442\u0438\u0436\u043d\u044f",
"single_split": "\u0420\u043e\u0437\u0434\u0456\u043b\u0438\u0442\u0438",
"asset_accounts": "Asset accounts",
"expense_accounts": "\u0420\u0430\u0445\u0443\u043d\u043a\u0438 \u0432\u0438\u0442\u0440\u0430\u0442",
"liabilities_accounts": "\u041f\u0430\u0441\u0438\u0432\u0438",
"undefined_accounts": "Accounts",
"name": "Name",
"revenue_accounts": "\u0414\u0436\u0435\u0440\u0435\u043b\u0430 \u0434\u043e\u0445\u043e\u0434\u0456\u0432",
"description": "Description",
"category": "Category",
"title_deposit": "\u0414\u043e\u0445\u0456\u0434 \/ \u043f\u0440\u0438\u0445\u0456\u0434",
"title_transfer": "\u041f\u0435\u0440\u0435\u043a\u0430\u0437",
"title_transfers": "\u041f\u0435\u0440\u0435\u043a\u0430\u0437\u0438",
"piggyBanks": "Piggy banks",
"rules": "\u041f\u0440\u0430\u0432\u0438\u043b\u0430",
"accounts": "\u0420\u0430\u0445\u0443\u043d\u043a\u0438",
"categories": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0457",
"tags": "\u0422\u0435\u0433\u0438",
"object_groups_page_title": "Groups",
"reports": "\u0417\u0432\u0456\u0442\u0438",
"webhooks": "\u0412\u0435\u0431-\u0433\u0430\u043a\u0438",
"currencies": "\u0412\u0430\u043b\u044e\u0442\u0438",
"administration": "Administration",
"profile": "\u041f\u0440\u043e\u0444\u0456\u043b\u044c",
"source_account": "\u0412\u0438\u0445\u0456\u0434\u043d\u0438\u0439 \u0440\u0430\u0445\u0443\u043d\u043e\u043a",
"destination_account": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f",
"amount": "Amount",
"date": "Date",
"time": "Time",
"preferences": "Preferences",
"transactions": "Transactions",
"balance": "Balance",
"budgets": "\u0411\u044e\u0434\u0436\u0435\u0442\u0438",
"subscriptions": "\u041f\u0456\u0434\u043f\u0438\u0441\u043a\u0438",
"welcome_back": "\u0429\u043e \u0432 \u0433\u0430\u043c\u0430\u043d\u0446\u0456?",
"bills_to_pay": "\u0420\u0430\u0445\u0443\u043d\u043a\u0438 \u0434\u043e \u0441\u043f\u043b\u0430\u0442\u0438",
"net_worth": "\u0427\u0438\u0441\u0442\u0456 \u0430\u043a\u0442\u0438\u0432\u0438",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
"config": {
"html_language": "uk",
"month_and_day_fns": "d MMMM y"
},
"form": {
"name": "\u041d\u0430\u0437\u0432\u0430",
"amount_min": "\u041c\u0456\u043d\u0456\u043c\u0430\u043b\u044c\u043d\u0430 \u0441\u0443\u043c\u0430",
"amount_max": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0430 \u0441\u0443\u043c\u0430",
"url": "URL",
"title": "\u041d\u0430\u0437\u0432\u0430",
"first_date": "\u041f\u0435\u0440\u0448\u0430 \u0434\u0430\u0442\u0430",
"repetitions": "\u041f\u043e\u0432\u0442\u043e\u0440\u0435\u043d\u043d\u044f",
"description": "\u041e\u043f\u0438\u0441",
"iban": "IBAN",
"skip": "\u041f\u0440\u043e\u043f\u0443\u0441\u0442\u0438\u0442\u0438",
"date": "\u0414\u0430\u0442\u0430"
},
"list": {
"name": "\u041d\u0430\u0437\u0432\u0430",
"account_number": "Account number",
"currentBalance": "\u041f\u043e\u0442\u043e\u0447\u043d\u0438\u0439 \u0431\u0430\u043b\u0430\u043d\u0441",
"lastActivity": "\u041e\u0441\u0442\u0430\u043d\u043d\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u044f",
"active": "\u0427\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u0438\u0439?"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "\u0411\u044e\u0434\u0436\u0435\u0442",
"subscriptions": "\u041f\u0456\u0434\u043f\u0438\u0441\u043a\u0430",
"transactions": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0457",
"title_expenses": "\u0412\u0438\u0442\u0440\u0430\u0442\u0438",
"title_withdrawal": "\u0412\u0438\u0442\u0440\u0430\u0442\u0438",
"title_revenue": "\u0414\u043e\u0445\u0456\u0434 \/ \u043f\u0440\u0438\u0431\u0443\u0442\u043e\u043a",
"title_deposit": "\u0414\u043e\u0445\u0456\u0434 \/ \u043f\u0440\u0438\u0431\u0443\u0442\u043e\u043a",
"title_transfer": "\u041f\u0435\u0440\u0435\u043a\u0430\u0437\u0438",
"title_transfers": "\u041f\u0435\u0440\u0435\u043a\u0430\u0437\u0438",
"asset_accounts": "\u041e\u0441\u043d\u043e\u0432\u043d\u0456 \u0440\u0430\u0445\u0443\u043d\u043a\u0438",
"expense_accounts": "\u0420\u0430\u0445\u0443\u043d\u043a\u0438 \u0432\u0438\u0442\u0440\u0430\u0442",
"revenue_accounts": "\u0414\u0436\u0435\u0440\u0435\u043b\u0430 \u0434\u043e\u0445\u043e\u0434\u0456\u0432",
"liabilities_accounts": "\u0417\u043e\u0431\u043e\u0432'\u044f\u0437\u0430\u043d\u043d\u044f"
},
"firefly": {
"actions": "\u0414\u0456\u0457",
"edit": "\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438",
"delete": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438",
"reconcile": "Reconcile",
"create_new_asset": "Create new asset account",
"confirm_action": "\u041f\u0456\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0438 \u0434\u0456\u044e",
"new_budget": "\u041d\u043e\u0432\u0438\u0439 \u0431\u044e\u0434\u0436\u0435\u0442",
"new_asset_account": "\u041d\u043e\u0432\u0438\u0439 \u0440\u0430\u0445\u0443\u043d\u043e\u043a \u0430\u043a\u0442\u0438\u0432\u0456\u0432",
"newTransfer": "\u041d\u043e\u0432\u0438\u0439 \u043f\u0435\u0440\u0435\u043a\u0430\u0437",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "\u041d\u043e\u0432\u0456 \u043d\u0430\u0434\u0445\u043e\u0434\u0436\u0435\u043d\u043d\u044f",
"newWithdrawal": "\u041d\u043e\u0432\u0456 \u0432\u0438\u0442\u0440\u0430\u0442\u0438",
"bills_paid": "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u0456 \u0440\u0430\u0445\u0443\u043d\u043a\u0438",
"left_to_spend": "Left to spend",
"no_budget": "(\u043f\u043e\u0437\u0430 \u0431\u044e\u0434\u0436\u0435\u0442\u043e\u043c)",
"budgeted": "Budgeted",
"spent": "Spent",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "\u0406\u043c'\u044f \u0432\u0438\u0445\u0456\u0434\u043d\u043e\u0433\u043e \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u043f\u043e\u0447\u0438\u043d\u0430\u0454\u0442\u044c\u0441\u044f \u0437 \": value\"..",
"rule_trigger_source_account_ends_choice": "\u041d\u0430\u0437\u0432\u0430 \u0434\u0436\u0435\u0440\u0435\u043b\u0430 \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u0437\u0430\u043a\u0456\u043d\u0447\u0443\u0454\u0442\u044c\u0441\u044f \u043d\u0430..",
"rule_trigger_source_account_is_choice": "\u0406\u043c'\u044f \u0432\u0438\u0445\u0456\u0434\u043d\u043e\u0433\u043e \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u043c\u0456\u0441\u0442\u0438\u0442\u044c..",
"rule_trigger_source_account_contains_choice": "\u041d\u0430\u0437\u0432\u0430 \u0434\u0436\u0435\u0440\u0435\u043b\u0430 \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u043c\u0456\u0441\u0442\u0438\u0442\u044c..",
"rule_trigger_account_id_choice": "\u0406\u0434\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u044f \u0431\u0443\u0434\u044c-\u044f\u043a\u043e\u0433\u043e \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u0454 \u0442\u043e\u0447\u043d\u043e\u044e..",
"rule_trigger_source_account_id_choice": "\u0406\u0434\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u044f \u0431\u0443\u0434\u044c-\u044f\u043a\u043e\u0433\u043e \u0434\u0436\u0435\u0440\u0435\u043b\u0430 \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u0454 \u0442\u043e\u0447\u043d\u043e\u044e..",
"rule_trigger_destination_account_id_choice": "\u0406\u0434\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u044f \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0454 \u0442\u043e\u0447\u043d\u043e\u044e..",
"rule_trigger_account_is_cash_choice": "\u0411\u0443\u0434\u044c-\u044f\u043a\u0438\u0439 \u0440\u0430\u0445\u0443\u043d\u043e\u043a \u0454 \u0433\u043e\u0442\u0456\u0432\u043a\u043e\u0432\u0438\u043c",
"rule_trigger_source_is_cash_choice": "\u0414\u0436\u0435\u0440\u0435\u043b\u043e\u043c \u0440\u0430\u0445\u0443\u043d\u043a\u043e\u043c \u0454 \u200b\u200b(\u0433\u043e\u0442\u0456\u0432\u043a\u043e\u0432\u0438\u0439) \u0440\u0430\u0445\u0443\u043d\u043e\u043a",
"rule_trigger_destination_is_cash_choice": "\u0420\u0430\u0445\u0443\u043d\u043a\u043e\u043c \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0454 \u200b\u200b(\u0433\u043e\u0442\u0456\u0432\u043a\u043e\u0432\u0438\u0439) \u0440\u0430\u0445\u0443\u043d\u043e\u043a",
"rule_trigger_source_account_nr_starts_choice": "\u041d\u043e\u043c\u0435\u0440 \u0434\u0436\u0435\u0440\u0435\u043b\u0430 \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \/ IBAN \u043f\u043e\u0447\u0438\u043d\u0430\u0454\u0442\u044c\u0441\u044f \u0437..",
"rule_trigger_source_account_nr_ends_choice": "\u041d\u043e\u043c\u0435\u0440 \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \/ IBAN \u0437\u0430\u043a\u0456\u043d\u0447\u0443\u0454\u0442\u044c\u0441\u044f \u043d\u0430..",
"rule_trigger_source_account_nr_is_choice": "\u041d\u043e\u043c\u0435\u0440 \u0434\u0436\u0435\u0440\u0435\u043b\u0430 \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \/ IBAN \u0454..",
"rule_trigger_source_account_nr_contains_choice": "\u041d\u043e\u043c\u0435\u0440 \u0434\u0436\u0435\u0440\u0435\u043b\u0430 \u0440\u0430\u0445\u0443\u043d\u043a\u0443 \/ IBAN \u043c\u0456\u0441\u0442\u0438\u0442\u044c..",
"rule_trigger_destination_account_starts_choice": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u043f\u043e\u0447\u0438\u043d\u0430\u0454\u0442\u044c\u0441\u044f \u0437..",
"rule_trigger_destination_account_ends_choice": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0437\u0430\u043a\u0456\u043d\u0447\u0443\u0454\u0442\u044c\u0441\u044f \u043d\u0430..",
"rule_trigger_destination_account_is_choice": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a-\u043e\u0434\u0435\u0440\u0436\u0443\u0432\u0430\u0447..",
"rule_trigger_destination_account_contains_choice": "\u0406\u043c'\u044f \u0440\u0430\u0445\u0443\u043d\u043e\u043a\u0443-\u043e\u0434\u0435\u0440\u0436\u0443\u0432\u0430\u0447\u0430 \u043c\u0456\u0441\u0442\u0438\u0442\u044c..",
"rule_trigger_destination_account_nr_starts_choice": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \/ IBAN \u043f\u043e\u0447\u0438\u043d\u0430\u0454\u0442\u044c\u0441\u044f \u0437..",
"rule_trigger_destination_account_nr_ends_choice": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \/ IBAN \u0437\u0430\u043a\u0456\u043d\u0447\u0443\u0454\u0442\u044c\u0441\u044f \u043d\u0430..",
"rule_trigger_destination_account_nr_is_choice": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \/ IBAN..",
"rule_trigger_destination_account_nr_contains_choice": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \/ IBAN \u043c\u0456\u0441\u0442\u0438\u0442\u044c..",
"rule_trigger_transaction_type_choice": "\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0456\u044f \u043c\u0430\u0454 \u0442\u0438\u043f..",
"rule_trigger_category_is_choice": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u044f \u0454..",
"rule_trigger_amount_less_choice": "\u0421\u0443\u043c\u0430 \u0431\u0456\u043b\u044c\u0448\u0435 \u043d\u0456\u0436..",
"rule_trigger_amount_is_choice": "\u0421\u0443\u043c\u0430..",
"rule_trigger_amount_more_choice": "\u0421\u0443\u043c\u0430 \u0431\u0456\u043b\u044c\u0448\u0435 \u043d\u0456\u0436..",
"rule_trigger_description_starts_choice": "\u041e\u043f\u0438\u0441 \u043f\u043e\u0447\u0438\u043d\u0430\u0454\u0442\u044c\u0441\u044f \u0437..",
"rule_trigger_description_ends_choice": "\u041e\u043f\u0438\u0441 \u0437\u0430\u043a\u0456\u043d\u0447\u0443\u0454\u0442\u044c\u0441\u044f \u043d\u0430..",
"rule_trigger_description_contains_choice": "\u041e\u043f\u0438\u0441 \u043c\u0456\u0441\u0442\u0438\u0442\u044c..",
"rule_trigger_description_is_choice": "\u041e\u043f\u0438\u0441..",
"rule_trigger_date_on_choice": "\u0414\u0430\u0442\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457..",
"rule_trigger_date_before_choice": "\u0414\u0430\u0442\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457 \u0440\u0430\u043d\u0456\u0448\u0435..",
"rule_trigger_date_after_choice": "\u0414\u0430\u0442\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457 \u043f\u0456\u0437\u043d\u0456\u0448\u0435..",
"rule_trigger_created_at_on_choice": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u044f \u0431\u0443\u043b\u0430 \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u0430..",
"rule_trigger_updated_at_on_choice": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u044f \u0431\u0443\u043b\u0430 \u0432\u0456\u0434\u0440\u0435\u0434\u0430\u0433\u043e\u0432\u0430\u043d\u0430..",
"rule_trigger_budget_is_choice": "\u0411\u044e\u0434\u0436\u0435\u0442..",
"rule_trigger_tag_is_choice": "\u0411\u0443\u0434\u044c-\u044f\u043a\u0430 \u043c\u0456\u0442\u043a\u0430..",
"rule_trigger_currency_is_choice": "\u0412\u0430\u043b\u044e\u0442\u0438 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0456\u0439 \u0454..",
"rule_trigger_foreign_currency_is_choice": "\u0412\u0430\u043b\u044e\u0442\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0456\u0457 \u0454..",
"rule_trigger_has_attachments_choice": "\u041c\u0430\u0454 \u043f\u0440\u0438\u043d\u0430\u0439\u043c\u043d\u0456 \u0446\u044e \u043a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u0432\u043a\u043b\u0430\u0434\u0435\u043d\u044c",
"rule_trigger_has_no_category_choice": "\u0411\u0435\u0437 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0457",
"rule_trigger_has_any_category_choice": "\u041c\u0430\u0454 (\u0431\u0443\u0434\u044c-\u044f\u043a\u0443) \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u044e",
"rule_trigger_has_no_budget_choice": "\u041d\u0435\u043c\u0430\u0454 \u043f\u043e\u0432'\u044f\u0437\u0430\u043d\u043e\u0433\u043e \u0431\u044e\u0434\u0436\u0435\u0442\u0443",
"rule_trigger_has_any_budget_choice": "\u041c\u0430\u0454 (\u0431\u0443\u0434\u044c-\u044f\u043a\u0438\u0439) \u0431\u044e\u0434\u0436\u0435\u0442",
"rule_trigger_has_no_bill_choice": "\u041d\u0435 \u043c\u0430\u0454 \u0440\u0430\u0445\u0443\u043d\u043a\u0456\u0432 \u0434\u043e \u0441\u043f\u043b\u0430\u0442\u0438",
"rule_trigger_has_any_bill_choice": "\u041c\u0430\u0454 (\u044f\u043a\u0438\u0439\u0441\u044c) \u0440\u0430\u0445\u0443\u043d\u043e\u043a \u0434\u043e \u0441\u043f\u043b\u0430\u0442\u0438",
"rule_trigger_has_no_tag_choice": "\u041d\u0435\u043c\u0430\u0454 \u0442\u0435\u0433\u0456\u0432",
"rule_trigger_has_any_tag_choice": "\u0404 \u043e\u0434\u0438\u043d \u0430\u0431\u043e \u043a\u0456\u043b\u044c\u043a\u0430 \u0442\u0435\u0433\u0456\u0432 (\u0431\u0443\u0434\u044c-\u044f\u043a\u0438\u0445)",
"rule_trigger_any_notes_choice": "\u041c\u0430\u0454 (\u0431\u0443\u0434\u044c-\u044f\u043a\u0456) \u043d\u043e\u0442\u0430\u0442\u043a\u0438",
"rule_trigger_no_notes_choice": "\u041d\u043e\u0442\u0430\u0442\u043a\u0438 \u0432\u0456\u0434\u0441\u0443\u0442\u043d\u0456",
"rule_trigger_notes_is_choice": "\u041f\u0440\u0438\u043c\u0456\u0442\u043a\u0438..",
"rule_trigger_notes_contains_choice": "\u041f\u0440\u0438\u043c\u0456\u0442\u043a\u0438 \u043c\u0456\u0441\u0442\u044f\u0442\u044c..",
"rule_trigger_notes_starts_choice": "\u041f\u0440\u0438\u043c\u0456\u0442\u043a\u0438 \u043f\u043e\u0447\u0438\u043d\u0430\u044e\u0442\u044c\u0441\u044f \u0437..",
"rule_trigger_notes_ends_choice": "\u041f\u0440\u0438\u043c\u0456\u0442\u043a\u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0443\u044e\u0442\u044c\u0441\u044f \u043d\u0430..",
"rule_trigger_bill_is_choice": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u0434\u043e \u0441\u043f\u043b\u0430\u0442\u0438..",
"rule_trigger_external_id_is_choice": "\u0417\u043e\u0432\u043d\u0456\u0448\u043d\u0456\u0439 ID \u043c\u0456\u0441\u0442\u0438\u0442\u044c..",
"rule_trigger_internal_reference_is_choice": "\u0412\u043d\u0443\u0442\u0440\u0456\u0448\u043d\u0454 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f - \u0446\u0435..",
"rule_trigger_journal_id_choice": "\u0406\u0434\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0442\u043e\u0440 \u0436\u0443\u0440\u043d\u0430\u043b\u0443 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0439 \u0454..",
"rule_trigger_any_external_url_choice": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u044f \u043c\u0430\u0454 \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u044e URL-\u0430\u0434\u0440\u0435\u0441\u0443",
"rule_trigger_no_external_url_choice": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u044f \u043d\u0435 \u043c\u0430\u0454 \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u044c\u043e\u0457 URL-\u0430\u0434\u0440\u0435\u0441\u0438",
"rule_trigger_id_choice": "\u0406\u0434\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0442\u043e\u0440 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457..",
"rule_action_delete_transaction_choice": "\u0412\u0418\u0414\u0410\u041b\u0418\u0422\u0418 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u044e(!)",
"rule_action_set_category_choice": "\u041e\u0431\u0440\u0430\u0442\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u044e..",
"rule_action_clear_category_choice": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0432\u0441\u0456 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0457",
"rule_action_set_budget_choice": "\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0438 \u0431\u044e\u0434\u0436\u0435\u0442..",
"rule_action_clear_budget_choice": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0432\u0441\u0456 \u0431\u044e\u0434\u0436\u0435\u0442\u0438",
"rule_action_add_tag_choice": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0442\u0435\u0433..",
"rule_action_remove_tag_choice": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0442\u0435\u0433..",
"rule_action_remove_all_tags_choice": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0443\u0441\u0456 \u0442\u0435\u0433\u0438",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "\u0412\u0438\u0431\u0440\u0430\u0442\u0438 \u0446\u0456\u043b\u044c\u043e\u0432\u0438\u0439 \u0440\u0430\u0445\u0443\u043d\u043e\u043a..",
"rule_action_append_notes_choice": "\u0414\u043e\u0434\u0430\u0439\u0442\u0435 \u043d\u043e\u0442\u0430\u0442\u043a\u0438 \u0437\u0430 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u043e\u044e ..",
"rule_action_prepend_notes_choice": "\u0414\u043e\u0434\u0430\u0439\u0442\u0435 \u0434\u043e \u043d\u043e\u0442\u0430\u0442\u043e\u043a ..",
"rule_action_clear_notes_choice": "\u0412\u0438\u0434\u0430\u043b\u0456\u0442\u044c \u0431\u0443\u0434\u044c-\u044f\u043a\u0456 \u043f\u0440\u0438\u043c\u0456\u0442\u043a\u0438",
"rule_action_set_notes_choice": "\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u043d\u043e\u0442\u0430\u0442\u043a\u0438 \u0434\u043e ..",
"rule_action_link_to_bill_choice": "\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0440\u0430\u0445\u0443\u043d\u043e\u043a \u0434\u043e \u0441\u043f\u043b\u0430\u0442\u0438 ..",
"rule_action_convert_deposit_choice": "\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u044e \u0432 \u0434\u0435\u043f\u043e\u0437\u0438\u0442",
"rule_action_convert_withdrawal_choice": "\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0456\u0442\u044c \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u044e \u043d\u0430 \u0437\u043d\u044f\u0442\u0442\u044f",
"rule_action_convert_transfer_choice": "\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457 \u043d\u0430 \u043f\u0435\u0440\u0435\u043a\u0430\u0437",
"placeholder": "[Placeholder]",
"recurrences": "Recurring transactions",
"title_expenses": "\u0412\u0438\u0442\u0440\u0430\u0442\u0438",
"title_withdrawal": "\u0412\u0438\u0442\u0440\u0430\u0442\u0438",
"title_revenue": "\u0414\u043e\u0445\u0456\u0434 \/ \u043f\u0440\u0438\u0445\u0456\u0434",
"pref_1D": "\u041e\u0434\u0438\u043d \u0434\u0435\u043d\u044c",
"pref_1W": "\u041e\u0434\u0438\u043d \u0442\u0438\u0436\u0434\u0435\u043d\u044c",
"pref_1M": "\u041e\u0434\u0438\u043d \u043c\u0456\u0441\u044f\u0446\u044c",
"pref_3M": "\u0422\u0440\u0438 \u043c\u0456\u0441\u044f\u0446\u0456 (\u043a\u0432\u0430\u0440\u0442\u0430\u043b)",
"pref_6M": "\u0428\u0456\u0441\u0442\u044c \u043c\u0456\u0441\u044f\u0446\u0456\u0432",
"pref_1Y": "\u041e\u0434\u0438\u043d \u0440\u0456\u043a",
"repeat_freq_yearly": "\u0437\u0430 \u0440\u043e\u043a\u0430\u043c\u0438",
"repeat_freq_half-year": "\u043a\u043e\u0436\u043d\u0438\u0445 \u043f\u0456\u0432\u0440\u043e\u043a\u0443",
"repeat_freq_quarterly": "\u0437\u0430 \u043a\u0432\u0430\u0440\u0442\u0430\u043b\u0430\u043c\u0438",
"repeat_freq_monthly": "\u0449\u043e\u043c\u0456\u0441\u044f\u0446\u044f",
"repeat_freq_weekly": "\u0449\u043e\u0442\u0438\u0436\u043d\u044f",
"single_split": "\u0420\u043e\u0437\u0434\u0456\u043b\u0438\u0442\u0438",
"asset_accounts": "Asset accounts",
"expense_accounts": "\u0420\u0430\u0445\u0443\u043d\u043a\u0438 \u0432\u0438\u0442\u0440\u0430\u0442",
"liabilities_accounts": "\u041f\u0430\u0441\u0438\u0432\u0438",
"undefined_accounts": "Accounts",
"name": "Name",
"revenue_accounts": "\u0414\u0436\u0435\u0440\u0435\u043b\u0430 \u0434\u043e\u0445\u043e\u0434\u0456\u0432",
"description": "Description",
"category": "Category",
"title_deposit": "\u0414\u043e\u0445\u0456\u0434 \/ \u043f\u0440\u0438\u0445\u0456\u0434",
"title_transfer": "\u041f\u0435\u0440\u0435\u043a\u0430\u0437",
"title_transfers": "\u041f\u0435\u0440\u0435\u043a\u0430\u0437\u0438",
"piggyBanks": "Piggy banks",
"rules": "\u041f\u0440\u0430\u0432\u0438\u043b\u0430",
"accounts": "\u0420\u0430\u0445\u0443\u043d\u043a\u0438",
"categories": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0457",
"tags": "\u0422\u0435\u0433\u0438",
"object_groups_page_title": "Groups",
"reports": "\u0417\u0432\u0456\u0442\u0438",
"webhooks": "\u0412\u0435\u0431-\u0433\u0430\u043a\u0438",
"currencies": "\u0412\u0430\u043b\u044e\u0442\u0438",
"administration": "Administration",
"profile": "\u041f\u0440\u043e\u0444\u0456\u043b\u044c",
"source_account": "\u0412\u0438\u0445\u0456\u0434\u043d\u0438\u0439 \u0440\u0430\u0445\u0443\u043d\u043e\u043a",
"destination_account": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f",
"amount": "Amount",
"date": "Date",
"time": "Time",
"preferences": "Preferences",
"transactions": "Transactions",
"balance": "Balance",
"budgets": "\u0411\u044e\u0434\u0436\u0435\u0442\u0438",
"subscriptions": "\u041f\u0456\u0434\u043f\u0438\u0441\u043a\u0438",
"welcome_back": "\u0429\u043e \u0432 \u0433\u0430\u043c\u0430\u043d\u0446\u0456?",
"bills_to_pay": "\u0420\u0430\u0445\u0443\u043d\u043a\u0438 \u0434\u043e \u0441\u043f\u043b\u0430\u0442\u0438",
"net_worth": "\u0427\u0438\u0441\u0442\u0456 \u0430\u043a\u0442\u0438\u0432\u0438",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "vi",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "T\u00ean",
"amount_min": "S\u1ed1 ti\u1ec1n t\u1ed1i thi\u1ec3u",
"amount_max": "S\u1ed1 ti\u1ec1n t\u1ed1i \u0111a",
"url": "URL",
"title": "Ti\u00eau \u0111\u1ec1",
"first_date": "Ng\u00e0y \u0111\u1ea7u ti\u00ean",
"repetitions": "S\u1ef1 l\u1eb7p l\u1ea1i",
"description": "M\u00f4 t\u1ea3",
"iban": "IBAN",
"skip": "B\u1ecf qua",
"date": "Ng\u00e0y"
},
"list": {
"name": "T\u00ean",
"account_number": "Account number",
"currentBalance": "S\u1ed1 d\u01b0 hi\u1ec7n t\u1ea1i",
"lastActivity": "Ho\u1ea1t \u0111\u1ed9ng cu\u1ed1i c\u00f9ng",
"active": "\u0110ang ho\u1ea1t \u0111\u1ed9ng?"
},
"breadcrumbs": {
"placeholder": "Gi\u1eef ch\u1ed7",
"budgets": "Ng\u00e2n s\u00e1ch",
"subscriptions": "\u0110\u0103ng k\u00fd nh\u1eadn th\u00f4ng tin",
"transactions": "Giao d\u1ecbch",
"title_expenses": "Chi ph\u00ed",
"title_withdrawal": "Chi ph\u00ed",
"title_revenue": "Thu nh\u1eadp doanh thu",
"title_deposit": "Thu nh\u1eadp doanh thu",
"title_transfer": "Chuy\u1ec3n",
"title_transfers": "Chuy\u1ec3n",
"asset_accounts": "T\u00e0i kho\u1ea3n t\u00e0i s\u1ea3n",
"expense_accounts": "T\u00e0i kho\u1ea3n chi ph\u00ed",
"revenue_accounts": "T\u00e0i kho\u1ea3n thu nh\u1eadp",
"liabilities_accounts": "N\u1ee3 ph\u1ea3i tr\u1ea3"
},
"firefly": {
"actions": "H\u00e0nh \u0111\u1ed9ng",
"edit": "S\u1eeda",
"delete": "X\u00f3a",
"reconcile": "\u0110\u1ed1i chi\u1ebfu",
"create_new_asset": "T\u1ea1o t\u00e0i kho\u1ea3n m\u1edbi",
"confirm_action": "Confirm action",
"new_budget": "Ng\u00e2n s\u00e1ch m\u1edbi",
"new_asset_account": "t\u00e0i kho\u1ea3n m\u1edbi",
"newTransfer": "Chuy\u1ec3n kho\u1ea3n m\u1edbi",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Ti\u1ec1n g\u1eedi m\u1edbi",
"newWithdrawal": "Chi ph\u00ed m\u1edbi",
"bills_paid": "H\u00f3a \u0111\u01a1n thanh to\u00e1n",
"left_to_spend": "C\u00f2n l\u1ea1i \u0111\u1ec3 chi ti\u00eau",
"no_budget": "(kh\u00f4ng c\u00f3 ng\u00e2n s\u00e1ch)",
"budgeted": "Ng\u00e2n s\u00e1ch",
"spent": "\u0110\u00e3 chi",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Source account name starts with..",
"rule_trigger_source_account_ends_choice": "Source account name ends with..",
"rule_trigger_source_account_is_choice": "Source account name is..",
"rule_trigger_source_account_contains_choice": "T\u00ean t\u00e0i kho\u1ea3n ch\u1ee9a..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Source account ID is exactly..",
"rule_trigger_destination_account_id_choice": "Destination account ID is exactly..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Source account is (cash) account",
"rule_trigger_destination_is_cash_choice": "Destination account is (cash) account",
"rule_trigger_source_account_nr_starts_choice": "Source account number \/ IBAN starts with..",
"rule_trigger_source_account_nr_ends_choice": "Source account number \/ IBAN ends with..",
"rule_trigger_source_account_nr_is_choice": "S\u1ed1 t\u00e0i kho\u1ea3n ngu\u1ed3n \/ IBAN l\u00e0..",
"rule_trigger_source_account_nr_contains_choice": "S\u1ed1 t\u00e0i kho\u1ea3n ngu\u1ed3n \/ IBAN ch\u1ee9a..",
"rule_trigger_destination_account_starts_choice": "T\u00ean t\u00e0i kho\u1ea3n \u0111\u00edch b\u1eaft \u0111\u1ea7u b\u1eb1ng..",
"rule_trigger_destination_account_ends_choice": "T\u00ean t\u00e0i kho\u1ea3n \u0111\u00edch k\u1ebft th\u00fac b\u1eb1ng..",
"rule_trigger_destination_account_is_choice": "T\u00ean t\u00e0i kho\u1ea3n \u0111\u00edch l\u00e0..",
"rule_trigger_destination_account_contains_choice": "Destination account name contains..",
"rule_trigger_destination_account_nr_starts_choice": "Destination account number \/ IBAN starts with..",
"rule_trigger_destination_account_nr_ends_choice": "Destination account number \/ IBAN ends with..",
"rule_trigger_destination_account_nr_is_choice": "Destination account number \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Destination account number \/ IBAN contains..",
"rule_trigger_transaction_type_choice": "Giao d\u1ecbch thu\u1ed9c lo\u1ea1i..",
"rule_trigger_category_is_choice": "Danh m\u1ee5c l\u00e0..",
"rule_trigger_amount_less_choice": "S\u1ed1 ti\u1ec1n \u00edt h\u01a1n..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "S\u1ed1 ti\u1ec1n nhi\u1ec1u h\u01a1n..",
"rule_trigger_description_starts_choice": "M\u00f4 t\u1ea3 b\u1eaft \u0111\u1ea7u b\u1eb1ng..",
"rule_trigger_description_ends_choice": "M\u00f4 t\u1ea3 k\u1ebft th\u00fac b\u1eb1ng..",
"rule_trigger_description_contains_choice": "M\u00f4 t\u1ea3 c\u00f3 ch\u1ee9a..",
"rule_trigger_description_is_choice": "M\u00f4 t\u1ea3 l\u00e0..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Ng\u00e0y giao d\u1ecbch tr\u01b0\u1edbc..",
"rule_trigger_date_after_choice": "Ng\u00e0y giao d\u1ecbch sau..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Ng\u00e2n s\u00e1ch l\u00e0..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Ti\u1ec1n t\u1ec7 giao d\u1ecbch l\u00e0..",
"rule_trigger_foreign_currency_is_choice": "Giao d\u1ecbch ngo\u1ea1i t\u1ec7 l\u00e0..",
"rule_trigger_has_attachments_choice": "C\u00f3 \u00edt nh\u1ea5t nhi\u1ec1u t\u1ec7p \u0111\u00ednh k\u00e8m n\u00e0y",
"rule_trigger_has_no_category_choice": "Kh\u00f4ng c\u00f3 danh m\u1ee5c",
"rule_trigger_has_any_category_choice": "C\u00f3 m\u1ed9t danh m\u1ee5c (b\u1ea5t k\u1ef3)",
"rule_trigger_has_no_budget_choice": "Kh\u00f4ng c\u00f3 ng\u00e2n s\u00e1ch",
"rule_trigger_has_any_budget_choice": "C\u00f3 ng\u00e2n s\u00e1ch (b\u1ea5t k\u1ef3)",
"rule_trigger_has_no_bill_choice": "Has no bill",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "Kh\u00f4ng c\u00f3 nh\u00e3n",
"rule_trigger_has_any_tag_choice": "C\u00f3 m\u1ed9t ho\u1eb7c nhi\u1ec1u nh\u00e3n(b\u1ea5t k\u1ef3)",
"rule_trigger_any_notes_choice": "C\u00f3 (b\u1ea5t k\u1ef3) ghi ch\u00fa",
"rule_trigger_no_notes_choice": "Kh\u00f4ng c\u00f3 ghi ch\u00fa",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "H\u00f3a \u0111\u01a1n l\u00e0..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "X\u00f3a m\u1ecdi danh m\u1ee5c",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "X\u00f3a m\u1ecdi ng\u00e2n s\u00e1ch",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "X\u00f3a t\u1ea5t c\u1ea3 c\u00e1c nh\u00e3n",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "X\u00f3a m\u1ecdi ghi ch\u00fa",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Chuy\u1ec3n \u0111\u1ed5i giao d\u1ecbch th\u00e0nh ti\u1ec1n g\u1eedi",
"rule_action_convert_withdrawal_choice": "Chuy\u1ec3n \u0111\u1ed5i giao d\u1ecbch sang r\u00fat ti\u1ec1n",
"rule_action_convert_transfer_choice": "Chuy\u1ec3n \u0111\u1ed5i giao d\u1ecbch sang chuy\u1ec3n kho\u1ea3n",
"placeholder": "[Placeholder]",
"recurrences": "Giao d\u1ecbch \u0111\u1ecbnh k\u1ef3",
"title_expenses": "Chi ph\u00ed",
"title_withdrawal": "Chi ph\u00ed",
"title_revenue": "Thu nh\u1eadp doanh thu",
"pref_1D": "M\u1ed9t ng\u00e0y",
"pref_1W": "M\u1ed9t tu\u1ea7n",
"pref_1M": "M\u1ed9t th\u00e1ng",
"pref_3M": "Ba th\u00e1ng (qu\u00fd)",
"pref_6M": "S\u00e1u th\u00e1ng",
"pref_1Y": "M\u1ed9t n\u0103m",
"repeat_freq_yearly": "h\u00e0ng n\u0103m",
"repeat_freq_half-year": "m\u1ed7i n\u1eeda n\u0103m",
"repeat_freq_quarterly": "h\u00e0ng qu\u00fd",
"repeat_freq_monthly": "h\u00e0ng th\u00e1ng",
"repeat_freq_weekly": "h\u00e0ng tu\u1ea7n",
"single_split": "Chia ra",
"asset_accounts": "t\u00e0i kho\u1ea3n",
"expense_accounts": "T\u00e0i kho\u1ea3n chi ph\u00ed",
"liabilities_accounts": "N\u1ee3",
"undefined_accounts": "Accounts",
"name": "T\u00ean",
"revenue_accounts": "T\u00e0i kho\u1ea3n doanh thu",
"description": "S\u1ef1 mi\u00eau t\u1ea3",
"category": "Danh m\u1ee5c",
"title_deposit": "Thu nh\u1eadp doanh thu",
"title_transfer": "Chuy\u1ec3n",
"title_transfers": "Chuy\u1ec3n",
"piggyBanks": "Heo \u0111\u1ea5t",
"rules": "Quy t\u1eafc",
"accounts": "T\u00e0i kho\u1ea3n",
"categories": "Danh m\u1ee5c",
"tags": "Nh\u00e3n",
"object_groups_page_title": "C\u00e1c Nh\u00f3m",
"reports": "B\u00e1o c\u00e1o",
"webhooks": "Webhooks",
"currencies": "Ti\u1ec1n t\u1ec7",
"administration": "Qu\u1ea3n tr\u1ecb",
"profile": "H\u1ed3 s\u01a1",
"source_account": "Ngu\u1ed3n t\u00e0i kho\u1ea3n",
"destination_account": "T\u00e0i kho\u1ea3n \u0111\u00edch",
"amount": "S\u1ed1 ti\u1ec1n",
"date": "Ng\u00e0y",
"time": "Time",
"preferences": "C\u00e1 nh\u00e2n",
"transactions": "Giao d\u1ecbch",
"balance": "Ti\u1ec1n c\u00f2n l\u1ea1i",
"budgets": "Ng\u00e2n s\u00e1ch",
"subscriptions": "Subscriptions",
"welcome_back": "Ch\u00e0o m\u1eebng tr\u1edf l\u1ea1i?",
"bills_to_pay": "H\u00f3a \u0111\u01a1n ph\u1ea3i tr\u1ea3",
"net_worth": "T\u00e0i s\u1ea3n th\u1ef1c",
"pref_last365": "N\u0103m tr\u01b0\u1edbc",
"pref_last90": "90 ng\u00e0y cu\u1ed1i",
"pref_last30": "30 ng\u00e0y cu\u1ed1i",
"pref_last7": "7 ng\u00e0y tr\u01b0\u1edbc",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
"config": {
"html_language": "vi",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "T\u00ean",
"amount_min": "S\u1ed1 ti\u1ec1n t\u1ed1i thi\u1ec3u",
"amount_max": "S\u1ed1 ti\u1ec1n t\u1ed1i \u0111a",
"url": "URL",
"title": "Ti\u00eau \u0111\u1ec1",
"first_date": "Ng\u00e0y \u0111\u1ea7u ti\u00ean",
"repetitions": "S\u1ef1 l\u1eb7p l\u1ea1i",
"description": "M\u00f4 t\u1ea3",
"iban": "IBAN",
"skip": "B\u1ecf qua",
"date": "Ng\u00e0y"
},
"list": {
"name": "T\u00ean",
"account_number": "Account number",
"currentBalance": "S\u1ed1 d\u01b0 hi\u1ec7n t\u1ea1i",
"lastActivity": "Ho\u1ea1t \u0111\u1ed9ng cu\u1ed1i c\u00f9ng",
"active": "\u0110ang ho\u1ea1t \u0111\u1ed9ng?"
},
"breadcrumbs": {
"placeholder": "Gi\u1eef ch\u1ed7",
"budgets": "Ng\u00e2n s\u00e1ch",
"subscriptions": "\u0110\u0103ng k\u00fd nh\u1eadn th\u00f4ng tin",
"transactions": "Giao d\u1ecbch",
"title_expenses": "Chi ph\u00ed",
"title_withdrawal": "Chi ph\u00ed",
"title_revenue": "Thu nh\u1eadp doanh thu",
"title_deposit": "Thu nh\u1eadp doanh thu",
"title_transfer": "Chuy\u1ec3n",
"title_transfers": "Chuy\u1ec3n",
"asset_accounts": "T\u00e0i kho\u1ea3n t\u00e0i s\u1ea3n",
"expense_accounts": "T\u00e0i kho\u1ea3n chi ph\u00ed",
"revenue_accounts": "T\u00e0i kho\u1ea3n thu nh\u1eadp",
"liabilities_accounts": "N\u1ee3 ph\u1ea3i tr\u1ea3"
},
"firefly": {
"actions": "H\u00e0nh \u0111\u1ed9ng",
"edit": "S\u1eeda",
"delete": "X\u00f3a",
"reconcile": "\u0110\u1ed1i chi\u1ebfu",
"create_new_asset": "T\u1ea1o t\u00e0i kho\u1ea3n m\u1edbi",
"confirm_action": "Confirm action",
"new_budget": "Ng\u00e2n s\u00e1ch m\u1edbi",
"new_asset_account": "t\u00e0i kho\u1ea3n m\u1edbi",
"newTransfer": "Chuy\u1ec3n kho\u1ea3n m\u1edbi",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "Ti\u1ec1n g\u1eedi m\u1edbi",
"newWithdrawal": "Chi ph\u00ed m\u1edbi",
"bills_paid": "H\u00f3a \u0111\u01a1n thanh to\u00e1n",
"left_to_spend": "C\u00f2n l\u1ea1i \u0111\u1ec3 chi ti\u00eau",
"no_budget": "(kh\u00f4ng c\u00f3 ng\u00e2n s\u00e1ch)",
"budgeted": "Ng\u00e2n s\u00e1ch",
"spent": "\u0110\u00e3 chi",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Source account name starts with..",
"rule_trigger_source_account_ends_choice": "Source account name ends with..",
"rule_trigger_source_account_is_choice": "Source account name is..",
"rule_trigger_source_account_contains_choice": "T\u00ean t\u00e0i kho\u1ea3n ch\u1ee9a..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Source account ID is exactly..",
"rule_trigger_destination_account_id_choice": "Destination account ID is exactly..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Source account is (cash) account",
"rule_trigger_destination_is_cash_choice": "Destination account is (cash) account",
"rule_trigger_source_account_nr_starts_choice": "Source account number \/ IBAN starts with..",
"rule_trigger_source_account_nr_ends_choice": "Source account number \/ IBAN ends with..",
"rule_trigger_source_account_nr_is_choice": "S\u1ed1 t\u00e0i kho\u1ea3n ngu\u1ed3n \/ IBAN l\u00e0..",
"rule_trigger_source_account_nr_contains_choice": "S\u1ed1 t\u00e0i kho\u1ea3n ngu\u1ed3n \/ IBAN ch\u1ee9a..",
"rule_trigger_destination_account_starts_choice": "T\u00ean t\u00e0i kho\u1ea3n \u0111\u00edch b\u1eaft \u0111\u1ea7u b\u1eb1ng..",
"rule_trigger_destination_account_ends_choice": "T\u00ean t\u00e0i kho\u1ea3n \u0111\u00edch k\u1ebft th\u00fac b\u1eb1ng..",
"rule_trigger_destination_account_is_choice": "T\u00ean t\u00e0i kho\u1ea3n \u0111\u00edch l\u00e0..",
"rule_trigger_destination_account_contains_choice": "Destination account name contains..",
"rule_trigger_destination_account_nr_starts_choice": "Destination account number \/ IBAN starts with..",
"rule_trigger_destination_account_nr_ends_choice": "Destination account number \/ IBAN ends with..",
"rule_trigger_destination_account_nr_is_choice": "Destination account number \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Destination account number \/ IBAN contains..",
"rule_trigger_transaction_type_choice": "Giao d\u1ecbch thu\u1ed9c lo\u1ea1i..",
"rule_trigger_category_is_choice": "Danh m\u1ee5c l\u00e0..",
"rule_trigger_amount_less_choice": "S\u1ed1 ti\u1ec1n \u00edt h\u01a1n..",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "S\u1ed1 ti\u1ec1n nhi\u1ec1u h\u01a1n..",
"rule_trigger_description_starts_choice": "M\u00f4 t\u1ea3 b\u1eaft \u0111\u1ea7u b\u1eb1ng..",
"rule_trigger_description_ends_choice": "M\u00f4 t\u1ea3 k\u1ebft th\u00fac b\u1eb1ng..",
"rule_trigger_description_contains_choice": "M\u00f4 t\u1ea3 c\u00f3 ch\u1ee9a..",
"rule_trigger_description_is_choice": "M\u00f4 t\u1ea3 l\u00e0..",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Ng\u00e0y giao d\u1ecbch tr\u01b0\u1edbc..",
"rule_trigger_date_after_choice": "Ng\u00e0y giao d\u1ecbch sau..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "Ng\u00e2n s\u00e1ch l\u00e0..",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "Ti\u1ec1n t\u1ec7 giao d\u1ecbch l\u00e0..",
"rule_trigger_foreign_currency_is_choice": "Giao d\u1ecbch ngo\u1ea1i t\u1ec7 l\u00e0..",
"rule_trigger_has_attachments_choice": "C\u00f3 \u00edt nh\u1ea5t nhi\u1ec1u t\u1ec7p \u0111\u00ednh k\u00e8m n\u00e0y",
"rule_trigger_has_no_category_choice": "Kh\u00f4ng c\u00f3 danh m\u1ee5c",
"rule_trigger_has_any_category_choice": "C\u00f3 m\u1ed9t danh m\u1ee5c (b\u1ea5t k\u1ef3)",
"rule_trigger_has_no_budget_choice": "Kh\u00f4ng c\u00f3 ng\u00e2n s\u00e1ch",
"rule_trigger_has_any_budget_choice": "C\u00f3 ng\u00e2n s\u00e1ch (b\u1ea5t k\u1ef3)",
"rule_trigger_has_no_bill_choice": "Has no bill",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "Kh\u00f4ng c\u00f3 nh\u00e3n",
"rule_trigger_has_any_tag_choice": "C\u00f3 m\u1ed9t ho\u1eb7c nhi\u1ec1u nh\u00e3n(b\u1ea5t k\u1ef3)",
"rule_trigger_any_notes_choice": "C\u00f3 (b\u1ea5t k\u1ef3) ghi ch\u00fa",
"rule_trigger_no_notes_choice": "Kh\u00f4ng c\u00f3 ghi ch\u00fa",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "H\u00f3a \u0111\u01a1n l\u00e0..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "X\u00f3a m\u1ecdi danh m\u1ee5c",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "X\u00f3a m\u1ecdi ng\u00e2n s\u00e1ch",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "X\u00f3a t\u1ea5t c\u1ea3 c\u00e1c nh\u00e3n",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "X\u00f3a m\u1ecdi ghi ch\u00fa",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "Chuy\u1ec3n \u0111\u1ed5i giao d\u1ecbch th\u00e0nh ti\u1ec1n g\u1eedi",
"rule_action_convert_withdrawal_choice": "Chuy\u1ec3n \u0111\u1ed5i giao d\u1ecbch sang r\u00fat ti\u1ec1n",
"rule_action_convert_transfer_choice": "Chuy\u1ec3n \u0111\u1ed5i giao d\u1ecbch sang chuy\u1ec3n kho\u1ea3n",
"placeholder": "[Placeholder]",
"recurrences": "Giao d\u1ecbch \u0111\u1ecbnh k\u1ef3",
"title_expenses": "Chi ph\u00ed",
"title_withdrawal": "Chi ph\u00ed",
"title_revenue": "Thu nh\u1eadp doanh thu",
"pref_1D": "M\u1ed9t ng\u00e0y",
"pref_1W": "M\u1ed9t tu\u1ea7n",
"pref_1M": "M\u1ed9t th\u00e1ng",
"pref_3M": "Ba th\u00e1ng (qu\u00fd)",
"pref_6M": "S\u00e1u th\u00e1ng",
"pref_1Y": "M\u1ed9t n\u0103m",
"repeat_freq_yearly": "h\u00e0ng n\u0103m",
"repeat_freq_half-year": "m\u1ed7i n\u1eeda n\u0103m",
"repeat_freq_quarterly": "h\u00e0ng qu\u00fd",
"repeat_freq_monthly": "h\u00e0ng th\u00e1ng",
"repeat_freq_weekly": "h\u00e0ng tu\u1ea7n",
"single_split": "Chia ra",
"asset_accounts": "t\u00e0i kho\u1ea3n",
"expense_accounts": "T\u00e0i kho\u1ea3n chi ph\u00ed",
"liabilities_accounts": "N\u1ee3",
"undefined_accounts": "Accounts",
"name": "T\u00ean",
"revenue_accounts": "T\u00e0i kho\u1ea3n doanh thu",
"description": "S\u1ef1 mi\u00eau t\u1ea3",
"category": "Danh m\u1ee5c",
"title_deposit": "Thu nh\u1eadp doanh thu",
"title_transfer": "Chuy\u1ec3n",
"title_transfers": "Chuy\u1ec3n",
"piggyBanks": "Heo \u0111\u1ea5t",
"rules": "Quy t\u1eafc",
"accounts": "T\u00e0i kho\u1ea3n",
"categories": "Danh m\u1ee5c",
"tags": "Nh\u00e3n",
"object_groups_page_title": "C\u00e1c Nh\u00f3m",
"reports": "B\u00e1o c\u00e1o",
"webhooks": "Webhooks",
"currencies": "Ti\u1ec1n t\u1ec7",
"administration": "Qu\u1ea3n tr\u1ecb",
"profile": "H\u1ed3 s\u01a1",
"source_account": "Ngu\u1ed3n t\u00e0i kho\u1ea3n",
"destination_account": "T\u00e0i kho\u1ea3n \u0111\u00edch",
"amount": "S\u1ed1 ti\u1ec1n",
"date": "Ng\u00e0y",
"time": "Time",
"preferences": "C\u00e1 nh\u00e2n",
"transactions": "Giao d\u1ecbch",
"balance": "Ti\u1ec1n c\u00f2n l\u1ea1i",
"budgets": "Ng\u00e2n s\u00e1ch",
"subscriptions": "Subscriptions",
"welcome_back": "Ch\u00e0o m\u1eebng tr\u1edf l\u1ea1i?",
"bills_to_pay": "H\u00f3a \u0111\u01a1n ph\u1ea3i tr\u1ea3",
"net_worth": "T\u00e0i s\u1ea3n th\u1ef1c",
"pref_last365": "N\u0103m tr\u01b0\u1edbc",
"pref_last90": "90 ng\u00e0y cu\u1ed1i",
"pref_last30": "30 ng\u00e0y cu\u1ed1i",
"pref_last7": "7 ng\u00e0y tr\u01b0\u1edbc",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "zh-cn",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "\u540d\u79f0",
"amount_min": "\u6700\u5c0f\u91d1\u989d",
"amount_max": "\u6700\u5927\u91d1\u989d",
"url": "\u7f51\u5740",
"title": "\u6807\u9898",
"first_date": "\u521d\u6b21\u65e5\u671f",
"repetitions": "\u91cd\u590d",
"description": "\u63cf\u8ff0",
"iban": "\u56fd\u9645\u94f6\u884c\u8d26\u6237\u53f7\u7801 IBAN",
"skip": "\u8df3\u8fc7",
"date": "\u65e5\u671f"
},
"list": {
"name": "\u540d\u79f0",
"account_number": "\u8d26\u6237\u53f7\u7801",
"currentBalance": "\u76ee\u524d\u4f59\u989d",
"lastActivity": "\u4e0a\u6b21\u6d3b\u52a8",
"active": "\u662f\u5426\u542f\u7528\uff1f"
},
"breadcrumbs": {
"placeholder": "[Placeholder][\u5360\u4f4d\u7b26]",
"budgets": "\u9884\u7b97",
"subscriptions": "\u8ba2\u9605\u5217\u8868",
"transactions": "\u4ea4\u6613",
"title_expenses": "\u652f\u51fa",
"title_withdrawal": "\u652f\u51fa",
"title_revenue": "\u6536\u76ca\/\u6536\u5165",
"title_deposit": "\u6536\u76ca\/\u6536\u5165",
"title_transfer": "\u8f6c\u8d26",
"title_transfers": "\u8f6c\u8d26",
"asset_accounts": "\u8d44\u4ea7\u8d26\u6237",
"expense_accounts": "\u652f\u51fa\u8d26\u6237",
"revenue_accounts": "\u6536\u5165\u8d26\u6237",
"liabilities_accounts": "\u503a\u52a1"
},
"firefly": {
"actions": "\u64cd\u4f5c",
"edit": "\u7f16\u8f91",
"delete": "\u5220\u9664",
"reconcile": "\u5bf9\u8d26",
"create_new_asset": "\u521b\u5efa\u65b0\u8d44\u4ea7\u8d26\u6237",
"confirm_action": "\u786e\u8ba4\u64cd\u4f5c",
"new_budget": "\u65b0\u9884\u7b97",
"new_asset_account": "\u65b0\u8d44\u4ea7\u8d26\u6237",
"newTransfer": "\u65b0\u8f6c\u8d26",
"submission_options": "Submission options",
"apply_rules_checkbox": "\u5e94\u7528\u89c4\u5219",
"fire_webhooks_checkbox": "\u89e6\u53d1 webhook",
"newDeposit": "\u65b0\u6536\u5165",
"newWithdrawal": "\u65b0\u652f\u51fa",
"bills_paid": "\u5df2\u4ed8\u8d26\u5355",
"left_to_spend": "\u5269\u4f59\u652f\u51fa",
"no_budget": "(\u65e0\u9884\u7b97)",
"budgeted": "\u9884\u7b97\u4e0a\u9650",
"spent": "\u652f\u51fa",
"no_bill": "(\u65e0\u8d26\u5355)",
"rule_trigger_source_account_starts_choice": "\u6765\u6e90\u8d26\u6237\u540d\u79f0\u5f00\u5934\u4e3a...",
"rule_trigger_source_account_ends_choice": "\u6765\u6e90\u8d26\u6237\u7ed3\u5c3e\u4e3a\u2026",
"rule_trigger_source_account_is_choice": "\u6765\u6e90\u8d26\u6237\u540d\u79f0\u4e3a...",
"rule_trigger_source_account_contains_choice": "\u6765\u6e90\u8d26\u6237\u540d\u79f0\u5305\u542b...",
"rule_trigger_account_id_choice": "\u5176\u4e2d\u4e00\u4e2a\u8d26\u6237ID\u4e3a...",
"rule_trigger_source_account_id_choice": "\u6765\u6e90\u8d26\u6237 ID \u4e3a...",
"rule_trigger_destination_account_id_choice": "\u76ee\u6807\u8d26\u6237 ID \u4e3a...",
"rule_trigger_account_is_cash_choice": "\u5176\u4e2d\u4e00\u4e2a\u8d26\u6237\u662f\u73b0\u91d1\u8d26\u6237",
"rule_trigger_source_is_cash_choice": "\u6765\u6e90\u8d26\u6237\u4e3a (\u73b0\u91d1) \u8d26\u6237",
"rule_trigger_destination_is_cash_choice": "\u76ee\u6807\u8d26\u6237\u4e3a (\u73b0\u91d1) \u8d26\u6237",
"rule_trigger_source_account_nr_starts_choice": "\u6765\u6e90\u8d26\u6237\u7f16\u53f7 \/ IBAN \u5f00\u5934\u4e3a...",
"rule_trigger_source_account_nr_ends_choice": "\u6765\u6e90\u8d26\u6237\u7f16\u53f7 \/ IBAN \u7ed3\u5c3e\u4e3a...",
"rule_trigger_source_account_nr_is_choice": "\u6765\u6e90\u8d26\u6237\u7f16\u53f7 \/ IBAN \u4e3a...",
"rule_trigger_source_account_nr_contains_choice": "\u6765\u6e90\u8d26\u6237\u7f16\u53f7 \/ IBAN \u5305\u542b...",
"rule_trigger_destination_account_starts_choice": "\u76ee\u6807\u8d26\u6237\u540d\u79f0\u5f00\u5934\u4e3a...",
"rule_trigger_destination_account_ends_choice": "\u76ee\u6807\u8d26\u6237\u540d\u79f0\u7ed3\u5c3e\u4e3a...",
"rule_trigger_destination_account_is_choice": "\u76ee\u6807\u8d26\u6237\u540d\u79f0\u4e3a...",
"rule_trigger_destination_account_contains_choice": "\u76ee\u6807\u8d26\u6237\u540d\u79f0\u5305\u542b...",
"rule_trigger_destination_account_nr_starts_choice": "\u76ee\u6807\u8d26\u6237\u7f16\u53f7 \/ IBAN \u5f00\u5934\u4e3a...",
"rule_trigger_destination_account_nr_ends_choice": "\u76ee\u6807\u8d26\u6237\u7f16\u53f7 \/ IBAN \u7ed3\u5c3e\u4e3a...",
"rule_trigger_destination_account_nr_is_choice": "\u76ee\u6807\u8d26\u6237\u7f16\u53f7 \/ IBAN \u4e3a...",
"rule_trigger_destination_account_nr_contains_choice": "\u76ee\u6807\u8d26\u6237\u7f16\u53f7 \/ IBAN \u5305\u542b...",
"rule_trigger_transaction_type_choice": "\u4ea4\u6613\u7c7b\u578b\u4e3a\u2026",
"rule_trigger_category_is_choice": "\u5206\u7c7b\u4e3a...",
"rule_trigger_amount_less_choice": "\u91d1\u989d\u5c0f\u4e8e\u2026",
"rule_trigger_amount_is_choice": "\u91d1\u989d\u662f...",
"rule_trigger_amount_more_choice": "\u91d1\u989d\u5927\u4e8e\u2026",
"rule_trigger_description_starts_choice": "\u63cf\u8ff0\u5f00\u5934\u4e3a...",
"rule_trigger_description_ends_choice": "\u63cf\u8ff0\u7ed3\u5c3e\u4e3a...",
"rule_trigger_description_contains_choice": "\u63cf\u8ff0\u5305\u542b\u2026",
"rule_trigger_description_is_choice": "\u63cf\u8ff0\u4e3a\u2026",
"rule_trigger_date_on_choice": "\u4ea4\u6613\u65e5\u671f\u4e3a...",
"rule_trigger_date_before_choice": "\u4ea4\u6613\u65e5\u671f\u65e9\u4e8e...",
"rule_trigger_date_after_choice": "\u4ea4\u6613\u65e5\u671f\u665a\u4e8e...",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "\u9884\u7b97\u4e3a\u2026",
"rule_trigger_tag_is_choice": "\u5176\u4e2d\u4e00\u4e2a\u6807\u7b7e\u4e3a...",
"rule_trigger_currency_is_choice": "\u4ea4\u6613\u8d27\u5e01\u4e3a\u2026",
"rule_trigger_foreign_currency_is_choice": "\u4ea4\u6613\u5916\u5e01\u4e3a...",
"rule_trigger_has_attachments_choice": "\u81f3\u5c11\u6709\u8fd9\u4e48\u591a\u9644\u4ef6",
"rule_trigger_has_no_category_choice": "\u65e0\u5206\u7c7b",
"rule_trigger_has_any_category_choice": "\u6709\u4e00\u4e2a (\u4efb\u4f55) \u5206\u7c7b",
"rule_trigger_has_no_budget_choice": "\u6ca1\u6709\u9884\u7b97",
"rule_trigger_has_any_budget_choice": "\u6709\u4e00\u4e2a (\u4efb\u4f55) \u9884\u7b97",
"rule_trigger_has_no_bill_choice": "\u672a\u6709\u8d26\u5355",
"rule_trigger_has_any_bill_choice": "\u6709\u4e00\u4e2a\uff08\u4efb\u4f55\uff09\u8d26\u5355",
"rule_trigger_has_no_tag_choice": "\u6ca1\u6709\u6807\u7b7e",
"rule_trigger_has_any_tag_choice": "\u6709\u4e00\u4e2a\u6216\u591a\u4e2a (\u4efb\u4f55) \u6807\u7b7e",
"rule_trigger_any_notes_choice": "\u6709 (\u4efb\u610f) \u5907\u6ce8",
"rule_trigger_no_notes_choice": "\u65e0\u5907\u6ce8",
"rule_trigger_notes_is_choice": "\u5907\u6ce8\u4e3a...",
"rule_trigger_notes_contains_choice": "\u5907\u6ce8\u5305\u542b...",
"rule_trigger_notes_starts_choice": "\u5907\u6ce8\u5f00\u5934\u4e3a...",
"rule_trigger_notes_ends_choice": "\u5907\u6ce8\u7ed3\u5c3e\u4e3a...",
"rule_trigger_bill_is_choice": "\u8d26\u5355\u662f...",
"rule_trigger_external_id_is_choice": "\u5916\u90e8ID\u4e3a...",
"rule_trigger_internal_reference_is_choice": "\u5185\u90e8\u5f15\u7528\u4e3a...",
"rule_trigger_journal_id_choice": "\u4ea4\u6613\u65e5\u5fd7 ID \u4e3a...",
"rule_trigger_any_external_url_choice": "\u4ea4\u6613\u6709\u4e00\u4e2a\u5916\u90e8URL",
"rule_trigger_no_external_url_choice": "\u4ea4\u6613\u6ca1\u6709\u5916\u90e8\u94fe\u63a5",
"rule_trigger_id_choice": "\u4ea4\u6613ID\u4e3a...",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "\u6e05\u7a7a\u4efb\u4f55\u5206\u7c7b",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "\u6e05\u7a7a\u4efb\u4f55\u9884\u7b97",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "\u79fb\u9664\u6240\u6709\u6807\u7b7e",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "\u79fb\u9664\u6240\u6709\u5907\u6ce8",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "\u5173\u8054\u81f3\u8d26\u5355\u2026",
"rule_action_convert_deposit_choice": "\u8f6c\u6362\u4ea4\u6613\u4e3a\u6536\u5165",
"rule_action_convert_withdrawal_choice": "\u8f6c\u6362\u4ea4\u6613\u4e3a\u652f\u51fa",
"rule_action_convert_transfer_choice": "\u8f6c\u6362\u4ea4\u6613\u4e3a\u8f6c\u8d26",
"placeholder": "[Placeholder]",
"recurrences": "\u5b9a\u671f\u4ea4\u6613",
"title_expenses": "\u652f\u51fa",
"title_withdrawal": "\u652f\u51fa",
"title_revenue": "\u6536\u5165",
"pref_1D": "1\u5929",
"pref_1W": "1\u5468",
"pref_1M": "1\u4e2a\u6708",
"pref_3M": "3\u4e2a\u6708 (1\u5b63\u5ea6)",
"pref_6M": "6\u4e2a\u6708",
"pref_1Y": "1\u5e74",
"repeat_freq_yearly": "\u6bcf\u5e74",
"repeat_freq_half-year": "\u6bcf\u534a\u5e74",
"repeat_freq_quarterly": "\u6bcf\u5b63",
"repeat_freq_monthly": "\u6bcf\u6708",
"repeat_freq_weekly": "\u6bcf\u5468",
"single_split": "\u62c6\u5206",
"asset_accounts": "\u8d44\u4ea7\u8d26\u6237",
"expense_accounts": "\u652f\u51fa\u8d26\u6237",
"liabilities_accounts": "\u503a\u52a1\u8d26\u6237",
"undefined_accounts": "\u8d26\u6237",
"name": "\u540d\u79f0",
"revenue_accounts": "\u6536\u5165\u8d26\u6237",
"description": "\u63cf\u8ff0",
"category": "\u5206\u7c7b",
"title_deposit": "\u6536\u5165",
"title_transfer": "\u8f6c\u8d26",
"title_transfers": "\u8f6c\u8d26",
"piggyBanks": "\u5b58\u94b1\u7f50",
"rules": "\u89c4\u5219",
"accounts": "\u8d26\u6237",
"categories": "\u5206\u7c7b",
"tags": "\u6807\u7b7e",
"object_groups_page_title": "\u7ec4",
"reports": "\u62a5\u8868",
"webhooks": "Webhooks",
"currencies": "\u8d27\u5e01",
"administration": "\u7ba1\u7406",
"profile": "\u4e2a\u4eba\u6863\u6848",
"source_account": "\u6765\u6e90\u8d26\u6237",
"destination_account": "\u76ee\u6807\u8d26\u6237",
"amount": "\u91d1\u989d",
"date": "\u65e5\u671f",
"time": "\u65f6\u95f4",
"preferences": "\u504f\u597d\u8bbe\u5b9a",
"transactions": "\u4ea4\u6613",
"balance": "\u4f59\u989d",
"budgets": "\u9884\u7b97",
"subscriptions": "Subscriptions",
"welcome_back": "\u4eca\u5929\u7406\u8d22\u4e86\u5417\uff1f",
"bills_to_pay": "\u5f85\u4ed8\u8d26\u5355",
"net_worth": "\u51c0\u8d44\u4ea7",
"pref_last365": "\u6700\u8fd1\u4e00\u5e74",
"pref_last90": "\u6700\u8fd190\u5929",
"pref_last30": "\u6700\u8fd1 30 \u5929",
"pref_last7": "\u6700\u8fd17\u5929",
"pref_YTD": "\u4eca\u5e74\u81f3\u4eca",
"pref_QTD": "\u672c\u5b63\u5ea6\u81f3\u4eca",
"pref_MTD": "\u672c\u6708\u81f3\u4eca"
}
"config": {
"html_language": "zh-cn",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "\u540d\u79f0",
"amount_min": "\u6700\u5c0f\u91d1\u989d",
"amount_max": "\u6700\u5927\u91d1\u989d",
"url": "\u7f51\u5740",
"title": "\u6807\u9898",
"first_date": "\u521d\u6b21\u65e5\u671f",
"repetitions": "\u91cd\u590d",
"description": "\u63cf\u8ff0",
"iban": "\u56fd\u9645\u94f6\u884c\u8d26\u6237\u53f7\u7801 IBAN",
"skip": "\u8df3\u8fc7",
"date": "\u65e5\u671f"
},
"list": {
"name": "\u540d\u79f0",
"account_number": "\u8d26\u6237\u53f7\u7801",
"currentBalance": "\u76ee\u524d\u4f59\u989d",
"lastActivity": "\u4e0a\u6b21\u6d3b\u52a8",
"active": "\u662f\u5426\u542f\u7528\uff1f"
},
"breadcrumbs": {
"placeholder": "[Placeholder][\u5360\u4f4d\u7b26]",
"budgets": "\u9884\u7b97",
"subscriptions": "\u8ba2\u9605\u5217\u8868",
"transactions": "\u4ea4\u6613",
"title_expenses": "\u652f\u51fa",
"title_withdrawal": "\u652f\u51fa",
"title_revenue": "\u6536\u76ca\/\u6536\u5165",
"title_deposit": "\u6536\u76ca\/\u6536\u5165",
"title_transfer": "\u8f6c\u8d26",
"title_transfers": "\u8f6c\u8d26",
"asset_accounts": "\u8d44\u4ea7\u8d26\u6237",
"expense_accounts": "\u652f\u51fa\u8d26\u6237",
"revenue_accounts": "\u6536\u5165\u8d26\u6237",
"liabilities_accounts": "\u503a\u52a1"
},
"firefly": {
"actions": "\u64cd\u4f5c",
"edit": "\u7f16\u8f91",
"delete": "\u5220\u9664",
"reconcile": "\u5bf9\u8d26",
"create_new_asset": "\u521b\u5efa\u65b0\u8d44\u4ea7\u8d26\u6237",
"confirm_action": "\u786e\u8ba4\u64cd\u4f5c",
"new_budget": "\u65b0\u9884\u7b97",
"new_asset_account": "\u65b0\u8d44\u4ea7\u8d26\u6237",
"newTransfer": "\u65b0\u8f6c\u8d26",
"submission_options": "Submission options",
"apply_rules_checkbox": "\u5e94\u7528\u89c4\u5219",
"fire_webhooks_checkbox": "\u89e6\u53d1 webhook",
"newDeposit": "\u65b0\u6536\u5165",
"newWithdrawal": "\u65b0\u652f\u51fa",
"bills_paid": "\u5df2\u4ed8\u8d26\u5355",
"left_to_spend": "\u5269\u4f59\u652f\u51fa",
"no_budget": "(\u65e0\u9884\u7b97)",
"budgeted": "\u9884\u7b97\u4e0a\u9650",
"spent": "\u652f\u51fa",
"no_bill": "(\u65e0\u8d26\u5355)",
"rule_trigger_source_account_starts_choice": "\u6765\u6e90\u8d26\u6237\u540d\u79f0\u5f00\u5934\u4e3a...",
"rule_trigger_source_account_ends_choice": "\u6765\u6e90\u8d26\u6237\u7ed3\u5c3e\u4e3a\u2026",
"rule_trigger_source_account_is_choice": "\u6765\u6e90\u8d26\u6237\u540d\u79f0\u4e3a...",
"rule_trigger_source_account_contains_choice": "\u6765\u6e90\u8d26\u6237\u540d\u79f0\u5305\u542b...",
"rule_trigger_account_id_choice": "\u5176\u4e2d\u4e00\u4e2a\u8d26\u6237ID\u4e3a...",
"rule_trigger_source_account_id_choice": "\u6765\u6e90\u8d26\u6237 ID \u4e3a...",
"rule_trigger_destination_account_id_choice": "\u76ee\u6807\u8d26\u6237 ID \u4e3a...",
"rule_trigger_account_is_cash_choice": "\u5176\u4e2d\u4e00\u4e2a\u8d26\u6237\u662f\u73b0\u91d1\u8d26\u6237",
"rule_trigger_source_is_cash_choice": "\u6765\u6e90\u8d26\u6237\u4e3a (\u73b0\u91d1) \u8d26\u6237",
"rule_trigger_destination_is_cash_choice": "\u76ee\u6807\u8d26\u6237\u4e3a (\u73b0\u91d1) \u8d26\u6237",
"rule_trigger_source_account_nr_starts_choice": "\u6765\u6e90\u8d26\u6237\u7f16\u53f7 \/ IBAN \u5f00\u5934\u4e3a...",
"rule_trigger_source_account_nr_ends_choice": "\u6765\u6e90\u8d26\u6237\u7f16\u53f7 \/ IBAN \u7ed3\u5c3e\u4e3a...",
"rule_trigger_source_account_nr_is_choice": "\u6765\u6e90\u8d26\u6237\u7f16\u53f7 \/ IBAN \u4e3a...",
"rule_trigger_source_account_nr_contains_choice": "\u6765\u6e90\u8d26\u6237\u7f16\u53f7 \/ IBAN \u5305\u542b...",
"rule_trigger_destination_account_starts_choice": "\u76ee\u6807\u8d26\u6237\u540d\u79f0\u5f00\u5934\u4e3a...",
"rule_trigger_destination_account_ends_choice": "\u76ee\u6807\u8d26\u6237\u540d\u79f0\u7ed3\u5c3e\u4e3a...",
"rule_trigger_destination_account_is_choice": "\u76ee\u6807\u8d26\u6237\u540d\u79f0\u4e3a...",
"rule_trigger_destination_account_contains_choice": "\u76ee\u6807\u8d26\u6237\u540d\u79f0\u5305\u542b...",
"rule_trigger_destination_account_nr_starts_choice": "\u76ee\u6807\u8d26\u6237\u7f16\u53f7 \/ IBAN \u5f00\u5934\u4e3a...",
"rule_trigger_destination_account_nr_ends_choice": "\u76ee\u6807\u8d26\u6237\u7f16\u53f7 \/ IBAN \u7ed3\u5c3e\u4e3a...",
"rule_trigger_destination_account_nr_is_choice": "\u76ee\u6807\u8d26\u6237\u7f16\u53f7 \/ IBAN \u4e3a...",
"rule_trigger_destination_account_nr_contains_choice": "\u76ee\u6807\u8d26\u6237\u7f16\u53f7 \/ IBAN \u5305\u542b...",
"rule_trigger_transaction_type_choice": "\u4ea4\u6613\u7c7b\u578b\u4e3a\u2026",
"rule_trigger_category_is_choice": "\u5206\u7c7b\u4e3a...",
"rule_trigger_amount_less_choice": "\u91d1\u989d\u5c0f\u4e8e\u2026",
"rule_trigger_amount_is_choice": "\u91d1\u989d\u662f...",
"rule_trigger_amount_more_choice": "\u91d1\u989d\u5927\u4e8e\u2026",
"rule_trigger_description_starts_choice": "\u63cf\u8ff0\u5f00\u5934\u4e3a...",
"rule_trigger_description_ends_choice": "\u63cf\u8ff0\u7ed3\u5c3e\u4e3a...",
"rule_trigger_description_contains_choice": "\u63cf\u8ff0\u5305\u542b\u2026",
"rule_trigger_description_is_choice": "\u63cf\u8ff0\u4e3a\u2026",
"rule_trigger_date_on_choice": "\u4ea4\u6613\u65e5\u671f\u4e3a...",
"rule_trigger_date_before_choice": "\u4ea4\u6613\u65e5\u671f\u65e9\u4e8e...",
"rule_trigger_date_after_choice": "\u4ea4\u6613\u65e5\u671f\u665a\u4e8e...",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "\u9884\u7b97\u4e3a\u2026",
"rule_trigger_tag_is_choice": "\u5176\u4e2d\u4e00\u4e2a\u6807\u7b7e\u4e3a...",
"rule_trigger_currency_is_choice": "\u4ea4\u6613\u8d27\u5e01\u4e3a\u2026",
"rule_trigger_foreign_currency_is_choice": "\u4ea4\u6613\u5916\u5e01\u4e3a...",
"rule_trigger_has_attachments_choice": "\u81f3\u5c11\u6709\u8fd9\u4e48\u591a\u9644\u4ef6",
"rule_trigger_has_no_category_choice": "\u65e0\u5206\u7c7b",
"rule_trigger_has_any_category_choice": "\u6709\u4e00\u4e2a (\u4efb\u4f55) \u5206\u7c7b",
"rule_trigger_has_no_budget_choice": "\u6ca1\u6709\u9884\u7b97",
"rule_trigger_has_any_budget_choice": "\u6709\u4e00\u4e2a (\u4efb\u4f55) \u9884\u7b97",
"rule_trigger_has_no_bill_choice": "\u672a\u6709\u8d26\u5355",
"rule_trigger_has_any_bill_choice": "\u6709\u4e00\u4e2a\uff08\u4efb\u4f55\uff09\u8d26\u5355",
"rule_trigger_has_no_tag_choice": "\u6ca1\u6709\u6807\u7b7e",
"rule_trigger_has_any_tag_choice": "\u6709\u4e00\u4e2a\u6216\u591a\u4e2a (\u4efb\u4f55) \u6807\u7b7e",
"rule_trigger_any_notes_choice": "\u6709 (\u4efb\u610f) \u5907\u6ce8",
"rule_trigger_no_notes_choice": "\u65e0\u5907\u6ce8",
"rule_trigger_notes_is_choice": "\u5907\u6ce8\u4e3a...",
"rule_trigger_notes_contains_choice": "\u5907\u6ce8\u5305\u542b...",
"rule_trigger_notes_starts_choice": "\u5907\u6ce8\u5f00\u5934\u4e3a...",
"rule_trigger_notes_ends_choice": "\u5907\u6ce8\u7ed3\u5c3e\u4e3a...",
"rule_trigger_bill_is_choice": "\u8d26\u5355\u662f...",
"rule_trigger_external_id_is_choice": "\u5916\u90e8ID\u4e3a...",
"rule_trigger_internal_reference_is_choice": "\u5185\u90e8\u5f15\u7528\u4e3a...",
"rule_trigger_journal_id_choice": "\u4ea4\u6613\u65e5\u5fd7 ID \u4e3a...",
"rule_trigger_any_external_url_choice": "\u4ea4\u6613\u6709\u4e00\u4e2a\u5916\u90e8URL",
"rule_trigger_no_external_url_choice": "\u4ea4\u6613\u6ca1\u6709\u5916\u90e8\u94fe\u63a5",
"rule_trigger_id_choice": "\u4ea4\u6613ID\u4e3a...",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "\u6e05\u7a7a\u4efb\u4f55\u5206\u7c7b",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "\u6e05\u7a7a\u4efb\u4f55\u9884\u7b97",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "\u79fb\u9664\u6240\u6709\u6807\u7b7e",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "\u79fb\u9664\u6240\u6709\u5907\u6ce8",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "\u5173\u8054\u81f3\u8d26\u5355\u2026",
"rule_action_convert_deposit_choice": "\u8f6c\u6362\u4ea4\u6613\u4e3a\u6536\u5165",
"rule_action_convert_withdrawal_choice": "\u8f6c\u6362\u4ea4\u6613\u4e3a\u652f\u51fa",
"rule_action_convert_transfer_choice": "\u8f6c\u6362\u4ea4\u6613\u4e3a\u8f6c\u8d26",
"placeholder": "[Placeholder]",
"recurrences": "\u5b9a\u671f\u4ea4\u6613",
"title_expenses": "\u652f\u51fa",
"title_withdrawal": "\u652f\u51fa",
"title_revenue": "\u6536\u5165",
"pref_1D": "1\u5929",
"pref_1W": "1\u5468",
"pref_1M": "1\u4e2a\u6708",
"pref_3M": "3\u4e2a\u6708 (1\u5b63\u5ea6)",
"pref_6M": "6\u4e2a\u6708",
"pref_1Y": "1\u5e74",
"repeat_freq_yearly": "\u6bcf\u5e74",
"repeat_freq_half-year": "\u6bcf\u534a\u5e74",
"repeat_freq_quarterly": "\u6bcf\u5b63",
"repeat_freq_monthly": "\u6bcf\u6708",
"repeat_freq_weekly": "\u6bcf\u5468",
"single_split": "\u62c6\u5206",
"asset_accounts": "\u8d44\u4ea7\u8d26\u6237",
"expense_accounts": "\u652f\u51fa\u8d26\u6237",
"liabilities_accounts": "\u503a\u52a1\u8d26\u6237",
"undefined_accounts": "\u8d26\u6237",
"name": "\u540d\u79f0",
"revenue_accounts": "\u6536\u5165\u8d26\u6237",
"description": "\u63cf\u8ff0",
"category": "\u5206\u7c7b",
"title_deposit": "\u6536\u5165",
"title_transfer": "\u8f6c\u8d26",
"title_transfers": "\u8f6c\u8d26",
"piggyBanks": "\u5b58\u94b1\u7f50",
"rules": "\u89c4\u5219",
"accounts": "\u8d26\u6237",
"categories": "\u5206\u7c7b",
"tags": "\u6807\u7b7e",
"object_groups_page_title": "\u7ec4",
"reports": "\u62a5\u8868",
"webhooks": "Webhooks",
"currencies": "\u8d27\u5e01",
"administration": "\u7ba1\u7406",
"profile": "\u4e2a\u4eba\u6863\u6848",
"source_account": "\u6765\u6e90\u8d26\u6237",
"destination_account": "\u76ee\u6807\u8d26\u6237",
"amount": "\u91d1\u989d",
"date": "\u65e5\u671f",
"time": "\u65f6\u95f4",
"preferences": "\u504f\u597d\u8bbe\u5b9a",
"transactions": "\u4ea4\u6613",
"balance": "\u4f59\u989d",
"budgets": "\u9884\u7b97",
"subscriptions": "Subscriptions",
"welcome_back": "\u4eca\u5929\u7406\u8d22\u4e86\u5417\uff1f",
"bills_to_pay": "\u5f85\u4ed8\u8d26\u5355",
"net_worth": "\u51c0\u8d44\u4ea7",
"pref_last365": "\u6700\u8fd1\u4e00\u5e74",
"pref_last90": "\u6700\u8fd190\u5929",
"pref_last30": "\u6700\u8fd1 30 \u5929",
"pref_last7": "\u6700\u8fd17\u5929",
"pref_YTD": "\u4eca\u5e74\u81f3\u4eca",
"pref_QTD": "\u672c\u5b63\u5ea6\u81f3\u4eca",
"pref_MTD": "\u672c\u6708\u81f3\u4eca"
}
}

View File

@@ -19,209 +19,209 @@
*/
export default {
"config": {
"html_language": "zh-tw",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "\u540d\u7a31",
"amount_min": "\u6700\u5c0f\u91d1\u984d",
"amount_max": "\u6700\u5927\u91d1\u984d",
"url": "URL",
"title": "\u6a19\u984c",
"first_date": "\u521d\u6b21\u65e5\u671f",
"repetitions": "\u91cd\u8907",
"description": "\u63cf\u8ff0",
"iban": "\u570b\u969b\u9280\u884c\u5e33\u6236\u865f\u78bc (IBAN)",
"skip": "\u7565\u904e",
"date": "\u65e5\u671f"
},
"list": {
"name": "\u540d\u7a31",
"account_number": "Account number",
"currentBalance": "\u76ee\u524d\u9918\u984d",
"lastActivity": "\u4e0a\u6b21\u6d3b\u52d5",
"active": "\u662f\u5426\u555f\u7528\uff1f"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "\u9810\u7b97",
"subscriptions": "Subscriptions",
"transactions": "Transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"revenue_accounts": "Revenue accounts",
"liabilities_accounts": "Liabilities"
},
"firefly": {
"actions": "\u64cd\u4f5c",
"edit": "\u7de8\u8f2f",
"delete": "\u522a\u9664",
"reconcile": "Reconcile",
"create_new_asset": "\u5efa\u7acb\u65b0\u8cc7\u7522\u5e33\u6236",
"confirm_action": "Confirm action",
"new_budget": "\u65b0\u9810\u7b97",
"new_asset_account": "\u65b0\u8cc7\u7522\u5e33\u6236",
"newTransfer": "\u65b0\u8f49\u5e33",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "\u65b0\u5b58\u6b3e",
"newWithdrawal": "\u65b0\u652f\u51fa",
"bills_paid": "\u5df2\u7e73\u5e33\u55ae",
"left_to_spend": "\u5269\u9918\u53ef\u82b1\u8cbb",
"no_budget": "(\u7121\u9810\u7b97)",
"budgeted": "\u5df2\u5217\u5165\u9810\u7b97",
"spent": "\u652f\u51fa",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Source account name starts with..",
"rule_trigger_source_account_ends_choice": "Source account name ends with..",
"rule_trigger_source_account_is_choice": "Source account name is..",
"rule_trigger_source_account_contains_choice": "Source account name contains..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Source account ID is exactly..",
"rule_trigger_destination_account_id_choice": "Destination account ID is exactly..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Source account is (cash) account",
"rule_trigger_destination_is_cash_choice": "Destination account is (cash) account",
"rule_trigger_source_account_nr_starts_choice": "Source account number \/ IBAN starts with..",
"rule_trigger_source_account_nr_ends_choice": "Source account number \/ IBAN ends with..",
"rule_trigger_source_account_nr_is_choice": "Source account number \/ IBAN is..",
"rule_trigger_source_account_nr_contains_choice": "Source account number \/ IBAN contains..",
"rule_trigger_destination_account_starts_choice": "Destination account name starts with..",
"rule_trigger_destination_account_ends_choice": "Destination account name ends with..",
"rule_trigger_destination_account_is_choice": "Destination account name is..",
"rule_trigger_destination_account_contains_choice": "Destination account name contains..",
"rule_trigger_destination_account_nr_starts_choice": "Destination account number \/ IBAN starts with..",
"rule_trigger_destination_account_nr_ends_choice": "Destination account number \/ IBAN ends with..",
"rule_trigger_destination_account_nr_is_choice": "Destination account number \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Destination account number \/ IBAN contains..",
"rule_trigger_transaction_type_choice": "\u8f49\u5e33\u985e\u578b\u70ba\u2026",
"rule_trigger_category_is_choice": "\u985e\u5225...",
"rule_trigger_amount_less_choice": "\u91d1\u984d\u5c0f\u65bc\u2026",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "\u91d1\u984d\u5927\u65bc\u2026",
"rule_trigger_description_starts_choice": "\u63cf\u8ff0\u4ee5\u2026\u958b\u982d",
"rule_trigger_description_ends_choice": "\u63cf\u8ff0\u4ee5\u2026\u4f5c\u7d50",
"rule_trigger_description_contains_choice": "\u63cf\u8ff0\u5305\u542b\u2026",
"rule_trigger_description_is_choice": "\u63cf\u8ff0\u662f\u2026",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Transaction date is before..",
"rule_trigger_date_after_choice": "Transaction date is after..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "\u9810\u7b97\u70ba\u2026",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "\u8f49\u5e33\u8ca8\u5e63\u70ba\u2026",
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
"rule_trigger_has_attachments_choice": "\u81f3\u5c11\u6709\u9019\u9ebc\u591a\u9644\u52a0\u6a94\u6848",
"rule_trigger_has_no_category_choice": "\u7121\u5206\u985e",
"rule_trigger_has_any_category_choice": "\u6709\u4e00\u500b (\u4efb\u4f55) \u5206\u985e",
"rule_trigger_has_no_budget_choice": "\u6c92\u6709\u9810\u7b97",
"rule_trigger_has_any_budget_choice": "\u6709\u4e00\u500b (\u4efb\u4f55) \u9810\u7b97",
"rule_trigger_has_no_bill_choice": "Has no bill",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "\u6c92\u6709\u6a19\u7c64",
"rule_trigger_has_any_tag_choice": "\u6709\u4e00\u500b\u6216\u591a\u500b (\u4efb\u4f55) \u6a19\u7c64",
"rule_trigger_any_notes_choice": "\u6709 (\u4efb\u4f55) \u8a3b\u91cb",
"rule_trigger_no_notes_choice": "\u6c92\u6709\u8a3b\u91cb",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Bill is..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "\u6e05\u7a7a\u4efb\u4f55\u5206\u985e",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "\u6e05\u7a7a\u4efb\u4f55\u9810\u7b97",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "\u79fb\u9664\u6240\u6709\u6a19\u7c64",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "\u79fb\u9664\u4efb\u4f55\u8a3b\u91cb",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "\u8f49\u63db\u4ea4\u6613\u70ba\u5b58\u6b3e",
"rule_action_convert_withdrawal_choice": "\u8f49\u63db\u4ea4\u6613\u81f3\u63d0\u6b3e",
"rule_action_convert_transfer_choice": "\u8f49\u63db\u4ea4\u6613\u81f3\u8f49\u5e33",
"placeholder": "[Placeholder]",
"recurrences": "\u9031\u671f\u6027\u4ea4\u6613",
"title_expenses": "\u652f\u51fa",
"title_withdrawal": "\u652f\u51fa",
"title_revenue": "\u6536\u5165",
"pref_1D": "1 \u5929",
"pref_1W": "1 \u9031",
"pref_1M": "1 \u500b\u6708",
"pref_3M": "3\u500b\u6708 (\u5b63)",
"pref_6M": "6\u500b\u6708",
"pref_1Y": "1\u5e74",
"repeat_freq_yearly": "\u6bcf\u5e74",
"repeat_freq_half-year": "\u6bcf\u534a\u5e74",
"repeat_freq_quarterly": "\u6bcf\u5b63",
"repeat_freq_monthly": "\u6bcf\u6708",
"repeat_freq_weekly": "\u6bcf\u9031",
"single_split": "Split",
"asset_accounts": "\u8cc7\u7522\u5e33\u6236",
"expense_accounts": "\u652f\u51fa\u5e33\u6236",
"liabilities_accounts": "\u50b5\u52d9",
"undefined_accounts": "Accounts",
"name": "\u540d\u7a31",
"revenue_accounts": "\u6536\u5165\u5e33\u6236",
"description": "\u63cf\u8ff0",
"category": "\u5206\u985e",
"title_deposit": "\u6536\u5165",
"title_transfer": "\u8f49\u5e33",
"title_transfers": "\u8f49\u5e33",
"piggyBanks": "\u5c0f\u8c6c\u64b2\u6eff",
"rules": "\u898f\u5247",
"accounts": "\u5e33\u6236",
"categories": "\u5206\u985e",
"tags": "\u6a19\u7c64",
"object_groups_page_title": "Groups",
"reports": "\u5831\u8868",
"webhooks": "Webhooks",
"currencies": "\u8ca8\u5e63",
"administration": "\u7ba1\u7406",
"profile": "\u500b\u4eba\u6a94\u6848",
"source_account": "Source account",
"destination_account": "Destination account",
"amount": "\u91d1\u984d",
"date": "\u65e5\u671f",
"time": "Time",
"preferences": "\u504f\u597d\u8a2d\u5b9a",
"transactions": "\u4ea4\u6613",
"balance": "\u9918\u984d",
"budgets": "\u9810\u7b97",
"subscriptions": "Subscriptions",
"welcome_back": "What's playing?",
"bills_to_pay": "\u5f85\u4ed8\u5e33\u55ae",
"net_worth": "\u6de8\u503c",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
"config": {
"html_language": "zh-tw",
"month_and_day_fns": "MMMM d, y"
},
"form": {
"name": "\u540d\u7a31",
"amount_min": "\u6700\u5c0f\u91d1\u984d",
"amount_max": "\u6700\u5927\u91d1\u984d",
"url": "URL",
"title": "\u6a19\u984c",
"first_date": "\u521d\u6b21\u65e5\u671f",
"repetitions": "\u91cd\u8907",
"description": "\u63cf\u8ff0",
"iban": "\u570b\u969b\u9280\u884c\u5e33\u6236\u865f\u78bc (IBAN)",
"skip": "\u7565\u904e",
"date": "\u65e5\u671f"
},
"list": {
"name": "\u540d\u7a31",
"account_number": "Account number",
"currentBalance": "\u76ee\u524d\u9918\u984d",
"lastActivity": "\u4e0a\u6b21\u6d3b\u52d5",
"active": "\u662f\u5426\u555f\u7528\uff1f"
},
"breadcrumbs": {
"placeholder": "[Placeholder]",
"budgets": "\u9810\u7b97",
"subscriptions": "Subscriptions",
"transactions": "Transactions",
"title_expenses": "Expenses",
"title_withdrawal": "Expenses",
"title_revenue": "Revenue \/ income",
"title_deposit": "Revenue \/ income",
"title_transfer": "Transfers",
"title_transfers": "Transfers",
"asset_accounts": "Asset accounts",
"expense_accounts": "Expense accounts",
"revenue_accounts": "Revenue accounts",
"liabilities_accounts": "Liabilities"
},
"firefly": {
"actions": "\u64cd\u4f5c",
"edit": "\u7de8\u8f2f",
"delete": "\u522a\u9664",
"reconcile": "Reconcile",
"create_new_asset": "\u5efa\u7acb\u65b0\u8cc7\u7522\u5e33\u6236",
"confirm_action": "Confirm action",
"new_budget": "\u65b0\u9810\u7b97",
"new_asset_account": "\u65b0\u8cc7\u7522\u5e33\u6236",
"newTransfer": "\u65b0\u8f49\u5e33",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"newDeposit": "\u65b0\u5b58\u6b3e",
"newWithdrawal": "\u65b0\u652f\u51fa",
"bills_paid": "\u5df2\u7e73\u5e33\u55ae",
"left_to_spend": "\u5269\u9918\u53ef\u82b1\u8cbb",
"no_budget": "(\u7121\u9810\u7b97)",
"budgeted": "\u5df2\u5217\u5165\u9810\u7b97",
"spent": "\u652f\u51fa",
"no_bill": "(no bill)",
"rule_trigger_source_account_starts_choice": "Source account name starts with..",
"rule_trigger_source_account_ends_choice": "Source account name ends with..",
"rule_trigger_source_account_is_choice": "Source account name is..",
"rule_trigger_source_account_contains_choice": "Source account name contains..",
"rule_trigger_account_id_choice": "Either account ID is exactly..",
"rule_trigger_source_account_id_choice": "Source account ID is exactly..",
"rule_trigger_destination_account_id_choice": "Destination account ID is exactly..",
"rule_trigger_account_is_cash_choice": "Either account is cash",
"rule_trigger_source_is_cash_choice": "Source account is (cash) account",
"rule_trigger_destination_is_cash_choice": "Destination account is (cash) account",
"rule_trigger_source_account_nr_starts_choice": "Source account number \/ IBAN starts with..",
"rule_trigger_source_account_nr_ends_choice": "Source account number \/ IBAN ends with..",
"rule_trigger_source_account_nr_is_choice": "Source account number \/ IBAN is..",
"rule_trigger_source_account_nr_contains_choice": "Source account number \/ IBAN contains..",
"rule_trigger_destination_account_starts_choice": "Destination account name starts with..",
"rule_trigger_destination_account_ends_choice": "Destination account name ends with..",
"rule_trigger_destination_account_is_choice": "Destination account name is..",
"rule_trigger_destination_account_contains_choice": "Destination account name contains..",
"rule_trigger_destination_account_nr_starts_choice": "Destination account number \/ IBAN starts with..",
"rule_trigger_destination_account_nr_ends_choice": "Destination account number \/ IBAN ends with..",
"rule_trigger_destination_account_nr_is_choice": "Destination account number \/ IBAN is..",
"rule_trigger_destination_account_nr_contains_choice": "Destination account number \/ IBAN contains..",
"rule_trigger_transaction_type_choice": "\u8f49\u5e33\u985e\u578b\u70ba\u2026",
"rule_trigger_category_is_choice": "\u985e\u5225...",
"rule_trigger_amount_less_choice": "\u91d1\u984d\u5c0f\u65bc\u2026",
"rule_trigger_amount_is_choice": "Amount is..",
"rule_trigger_amount_more_choice": "\u91d1\u984d\u5927\u65bc\u2026",
"rule_trigger_description_starts_choice": "\u63cf\u8ff0\u4ee5\u2026\u958b\u982d",
"rule_trigger_description_ends_choice": "\u63cf\u8ff0\u4ee5\u2026\u4f5c\u7d50",
"rule_trigger_description_contains_choice": "\u63cf\u8ff0\u5305\u542b\u2026",
"rule_trigger_description_is_choice": "\u63cf\u8ff0\u662f\u2026",
"rule_trigger_date_on_choice": "Transaction date is..",
"rule_trigger_date_before_choice": "Transaction date is before..",
"rule_trigger_date_after_choice": "Transaction date is after..",
"rule_trigger_created_at_on_choice": "Transaction was made on..",
"rule_trigger_updated_at_on_choice": "Transaction was last edited on..",
"rule_trigger_budget_is_choice": "\u9810\u7b97\u70ba\u2026",
"rule_trigger_tag_is_choice": "Any tag is..",
"rule_trigger_currency_is_choice": "\u8f49\u5e33\u8ca8\u5e63\u70ba\u2026",
"rule_trigger_foreign_currency_is_choice": "Transaction foreign currency is..",
"rule_trigger_has_attachments_choice": "\u81f3\u5c11\u6709\u9019\u9ebc\u591a\u9644\u52a0\u6a94\u6848",
"rule_trigger_has_no_category_choice": "\u7121\u5206\u985e",
"rule_trigger_has_any_category_choice": "\u6709\u4e00\u500b (\u4efb\u4f55) \u5206\u985e",
"rule_trigger_has_no_budget_choice": "\u6c92\u6709\u9810\u7b97",
"rule_trigger_has_any_budget_choice": "\u6709\u4e00\u500b (\u4efb\u4f55) \u9810\u7b97",
"rule_trigger_has_no_bill_choice": "Has no bill",
"rule_trigger_has_any_bill_choice": "Has a (any) bill",
"rule_trigger_has_no_tag_choice": "\u6c92\u6709\u6a19\u7c64",
"rule_trigger_has_any_tag_choice": "\u6709\u4e00\u500b\u6216\u591a\u500b (\u4efb\u4f55) \u6a19\u7c64",
"rule_trigger_any_notes_choice": "\u6709 (\u4efb\u4f55) \u8a3b\u91cb",
"rule_trigger_no_notes_choice": "\u6c92\u6709\u8a3b\u91cb",
"rule_trigger_notes_is_choice": "Notes are..",
"rule_trigger_notes_contains_choice": "Notes contain..",
"rule_trigger_notes_starts_choice": "Notes start with..",
"rule_trigger_notes_ends_choice": "Notes end with..",
"rule_trigger_bill_is_choice": "Bill is..",
"rule_trigger_external_id_is_choice": "External ID is..",
"rule_trigger_internal_reference_is_choice": "Internal reference is..",
"rule_trigger_journal_id_choice": "Transaction journal ID is..",
"rule_trigger_any_external_url_choice": "Transaction has an external URL",
"rule_trigger_no_external_url_choice": "Transaction has no external URL",
"rule_trigger_id_choice": "Transaction ID is..",
"rule_action_delete_transaction_choice": "DELETE transaction(!)",
"rule_action_set_category_choice": "Set category to ..",
"rule_action_clear_category_choice": "\u6e05\u7a7a\u4efb\u4f55\u5206\u985e",
"rule_action_set_budget_choice": "Set budget to ..",
"rule_action_clear_budget_choice": "\u6e05\u7a7a\u4efb\u4f55\u9810\u7b97",
"rule_action_add_tag_choice": "Add tag ..",
"rule_action_remove_tag_choice": "Remove tag ..",
"rule_action_remove_all_tags_choice": "\u79fb\u9664\u6240\u6709\u6a19\u7c64",
"rule_action_set_description_choice": "Set description to ..",
"rule_action_update_piggy_choice": "Add \/ remove transaction amount in piggy bank ..",
"rule_action_append_description_choice": "Append description with ..",
"rule_action_prepend_description_choice": "Prepend description with ..",
"rule_action_set_source_account_choice": "Set source account to ..",
"rule_action_set_destination_account_choice": "Set destination account to ..",
"rule_action_append_notes_choice": "Append notes with ..",
"rule_action_prepend_notes_choice": "Prepend notes with ..",
"rule_action_clear_notes_choice": "\u79fb\u9664\u4efb\u4f55\u8a3b\u91cb",
"rule_action_set_notes_choice": "Set notes to ..",
"rule_action_link_to_bill_choice": "Link to a bill ..",
"rule_action_convert_deposit_choice": "\u8f49\u63db\u4ea4\u6613\u70ba\u5b58\u6b3e",
"rule_action_convert_withdrawal_choice": "\u8f49\u63db\u4ea4\u6613\u81f3\u63d0\u6b3e",
"rule_action_convert_transfer_choice": "\u8f49\u63db\u4ea4\u6613\u81f3\u8f49\u5e33",
"placeholder": "[Placeholder]",
"recurrences": "\u9031\u671f\u6027\u4ea4\u6613",
"title_expenses": "\u652f\u51fa",
"title_withdrawal": "\u652f\u51fa",
"title_revenue": "\u6536\u5165",
"pref_1D": "1 \u5929",
"pref_1W": "1 \u9031",
"pref_1M": "1 \u500b\u6708",
"pref_3M": "3\u500b\u6708 (\u5b63)",
"pref_6M": "6\u500b\u6708",
"pref_1Y": "1\u5e74",
"repeat_freq_yearly": "\u6bcf\u5e74",
"repeat_freq_half-year": "\u6bcf\u534a\u5e74",
"repeat_freq_quarterly": "\u6bcf\u5b63",
"repeat_freq_monthly": "\u6bcf\u6708",
"repeat_freq_weekly": "\u6bcf\u9031",
"single_split": "Split",
"asset_accounts": "\u8cc7\u7522\u5e33\u6236",
"expense_accounts": "\u652f\u51fa\u5e33\u6236",
"liabilities_accounts": "\u50b5\u52d9",
"undefined_accounts": "Accounts",
"name": "\u540d\u7a31",
"revenue_accounts": "\u6536\u5165\u5e33\u6236",
"description": "\u63cf\u8ff0",
"category": "\u5206\u985e",
"title_deposit": "\u6536\u5165",
"title_transfer": "\u8f49\u5e33",
"title_transfers": "\u8f49\u5e33",
"piggyBanks": "\u5c0f\u8c6c\u64b2\u6eff",
"rules": "\u898f\u5247",
"accounts": "\u5e33\u6236",
"categories": "\u5206\u985e",
"tags": "\u6a19\u7c64",
"object_groups_page_title": "Groups",
"reports": "\u5831\u8868",
"webhooks": "Webhooks",
"currencies": "\u8ca8\u5e63",
"administration": "\u7ba1\u7406",
"profile": "\u500b\u4eba\u6a94\u6848",
"source_account": "Source account",
"destination_account": "Destination account",
"amount": "\u91d1\u984d",
"date": "\u65e5\u671f",
"time": "Time",
"preferences": "\u504f\u597d\u8a2d\u5b9a",
"transactions": "\u4ea4\u6613",
"balance": "\u9918\u984d",
"budgets": "\u9810\u7b97",
"subscriptions": "Subscriptions",
"welcome_back": "What's playing?",
"bills_to_pay": "\u5f85\u4ed8\u5e33\u55ae",
"net_worth": "\u6de8\u503c",
"pref_last365": "Last year",
"pref_last90": "Last 90 days",
"pref_last30": "Last 30 days",
"pref_last7": "Last 7 days",
"pref_YTD": "Year to date",
"pref_QTD": "Quarter to date",
"pref_MTD": "Month to date"
}
}

View File

@@ -20,44 +20,45 @@
<!DOCTYPE html>
<html>
<head>
<title><%= productName %></title>
<head>
<title><%= productName %></title>
<meta charset="utf-8">
<meta name="description" content="<%= productDescription %>">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>">
<meta charset="utf-8">
<meta content="<%= productDescription %>" name="description">
<meta content="telephone=no" name="format-detection">
<meta content="no" name="msapplication-tap-highlight">
<meta content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>"
name="viewport">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link href="favicon-32x32.png" rel="icon" sizes="32x32" type="image/png">
<link href="favicon-16x16.png" rel="icon" sizes="16x16" type="image/png">
<link rel="apple-touch-icon" sizes="76x76" href="maskable76.png">
<link rel="apple-touch-icon" sizes="120x120" href="maskable120.png">
<link rel="apple-touch-icon" sizes="152x152" href="maskable152.png">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link href="maskable76.png" rel="apple-touch-icon" sizes="76x76">
<link href="maskable120.png" rel="apple-touch-icon" sizes="120x120">
<link href="maskable152.png" rel="apple-touch-icon" sizes="152x152">
<link href="apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#3c8dbc">
<link color="#3c8dbc" href="safari-pinned-tab.svg" rel="mask-icon">
<link href="maskable192.png" rel="icon" sizes="192x192">
<link href="maskable128.png" rel="icon" sizes="128x128">
<link href="maskable192.png" rel="icon" sizes="192x192">
<link href="maskable128.png" rel="icon" sizes="128x128">
<link rel="manifest" href="manifest.webmanifest">
<link href="manifest.webmanifest" rel="manifest">
<meta name="msapplication-TileColor" content="#1e6581">
<meta name="msapplication-TileImage" content="maskable512.png">
<meta name="msapplication-tap-highlight" content="no">
<meta name="application-name" content="Firefly III">
<meta name="robots" content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Firefly III">
<meta name="application-name" content="Firefly III">
<meta name="msapplication-TileColor" content="#3c8dbc">
<meta name="msapplication-TileImage" content="mstile-144x144.png?v=3e8AboOwbd">
<meta name="theme-color" content="#3c8dbc">
</head>
<body>
<div id="q-app"></div>
</body>
<meta content="#1e6581" name="msapplication-TileColor">
<meta content="maskable512.png" name="msapplication-TileImage">
<meta content="no" name="msapplication-tap-highlight">
<meta content="Firefly III" name="application-name">
<meta content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir" name="robots">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="Firefly III" name="apple-mobile-web-app-title">
<meta content="Firefly III" name="application-name">
<meta content="#3c8dbc" name="msapplication-TileColor">
<meta content="mstile-144x144.png?v=3e8AboOwbd" name="msapplication-TileImage">
<meta content="#3c8dbc" name="theme-color">
</head>
<body>
<div id="q-app"></div>
</body>
</html>

View File

@@ -21,24 +21,24 @@
<template>
<q-layout view="hHh lpR fFf">
<q-header elevated class="bg-primary text-white">
<q-header class="bg-primary text-white" elevated>
<q-toolbar>
<q-btn dense flat round icon="fas fa-bars" @click="toggleLeftDrawer"/>
<q-btn dense flat icon="fas fa-bars" round @click="toggleLeftDrawer"/>
<q-toolbar-title>
<q-avatar>
<img src="maskable-icon.svg" alt="Firefly III Logo" title="Firefly III">
<img alt="Firefly III Logo" src="maskable-icon.svg" title="Firefly III">
</q-avatar>
Firefly III
</q-toolbar-title>
<q-select
ref="search" dark dense standout use-input hide-selected
class="q-mx-xs"
color="black" :stack-label="false" label="Search"
v-model="search"
ref="search" v-model="search" :stack-label="false" class="q-mx-xs" color="black" dark
dense
hide-selected label="Search" standout
style="width: 250px"
use-input
>
<template v-slot:append>
@@ -47,8 +47,8 @@
<template v-slot:option="scope">
<q-item
v-bind="scope.itemProps"
class=""
v-bind="scope.itemProps"
>
<q-item-section side>
<q-icon name="collections_bookmark"/>
@@ -56,8 +56,8 @@
<q-item-section>
<q-item-label v-html="scope.opt.label"/>
</q-item-section>
<q-item-section side class="default-type">
<q-btn outline dense no-caps text-color="blue-grey-5" size="12px" class="bg-grey-1 q-px-sm">
<q-item-section class="default-type" side>
<q-btn class="bg-grey-1 q-px-sm" dense no-caps outline size="12px" text-color="blue-grey-5">
{{ 'Jump to' }}
<q-icon name="subdirectory_arrow_left" size="14px"/>
</q-btn>
@@ -66,49 +66,49 @@
</template>
</q-select>
<q-separator dark vertical inset/>
<q-btn flat icon="fas fa-skull-crossbones" :to="{name: 'development.index'}" class="q-mx-xs"/>
<q-separator dark vertical inset/>
<q-btn flat icon="fas fa-question-circle" @click="showHelpBox" class="q-mx-xs"/>
<q-separator dark vertical inset/>
<q-separator dark inset vertical/>
<q-btn :to="{name: 'development.index'}" class="q-mx-xs" flat icon="fas fa-skull-crossbones"/>
<q-separator dark inset vertical/>
<q-btn class="q-mx-xs" flat icon="fas fa-question-circle" @click="showHelpBox"/>
<q-separator dark inset vertical/>
<!-- TODO notifications -->
<!-- date range -->
<q-btn v-if="$q.screen.gt.xs && $route.meta.dateSelector" flat class="q-mx-xs">
<q-btn v-if="$q.screen.gt.xs && $route.meta.dateSelector" class="q-mx-xs" flat>
<div class="row items-center no-wrap">
<q-icon name="fas fa-calendar" size="20px"/>
<q-icon name="fas fa-caret-down" size="12px" right/>
<q-icon name="fas fa-caret-down" right size="12px"/>
</div>
<q-menu>
<DateRange></DateRange>
</q-menu>
</q-btn>
<q-separator dark vertical inset v-if="$route.meta.dateSelector"/>
<q-separator v-if="$route.meta.dateSelector" dark inset vertical/>
<!-- specials -->
<q-btn v-if="$q.screen.gt.xs" flat class="q-mx-xs">
<q-btn v-if="$q.screen.gt.xs" class="q-mx-xs" flat>
<div class="row items-center no-wrap">
<q-icon name="fas fa-dragon" size="20px"/>
<q-icon name="fas fa-caret-down" size="12px" right/>
<q-icon name="fas fa-caret-down" right size="12px"/>
</div>
<q-menu auto-close>
<q-list style="min-width: 120px">
<q-item clickable :to="{ name: 'webhooks.index' }">
<q-item :to="{ name: 'webhooks.index' }" clickable>
<q-item-section>Webhooks</q-item-section>
</q-item>
<q-item clickable :to="{ name: 'currencies.index' }">
<q-item :to="{ name: 'currencies.index' }" clickable>
<q-item-section>Currencies</q-item-section>
</q-item>
<q-item clickable :to="{ name: 'admin.index' }">
<q-item :to="{ name: 'admin.index' }" clickable>
<q-item-section>Administration</q-item-section>
</q-item>
</q-list>
</q-menu>
</q-btn>
<q-separator dark vertical inset/>
<q-separator dark inset vertical/>
<!-- profile -->
<q-btn v-if="$q.screen.gt.xs" flat class="q-mx-xs">
<q-btn v-if="$q.screen.gt.xs" class="q-mx-xs" flat>
<div class="row items-center no-wrap">
<q-icon name="fas fa-user-circle" size="20px"/>
<q-icon name="fas fa-caret-down" right size="12px"/>
@@ -116,20 +116,20 @@
<q-menu auto-close>
<q-list style="min-width: 180px">
<q-item clickable :to="{ name: 'profile.index' }">
<q-item :to="{ name: 'profile.index' }" clickable>
<q-item-section> Profile</q-item-section>
</q-item>
<q-item clickable :to="{ name: 'profile.daa' }">
<q-item :to="{ name: 'profile.daa' }" clickable>
<q-item-section> Data management</q-item-section>
</q-item>
<q-item clickable :to="{ name: 'preferences.index' }">
<q-item :to="{ name: 'preferences.index' }" clickable>
<q-item-section>Preferences</q-item-section>
</q-item>
<q-item clickable :to="{ name: 'export.index' }">
<q-item :to="{ name: 'export.index' }" clickable>
<q-item-section>Export data</q-item-section>
</q-item>
<q-separator/>
<q-item clickable :to="{ name: 'logout' }">
<q-item :to="{ name: 'logout' }" clickable>
<q-item-section>Logout</q-item-section>
</q-item>
</q-list>
@@ -137,11 +137,11 @@
</q-btn>
</q-toolbar>
</q-header>
<q-drawer show-if-above v-model="leftDrawerOpen" side="left" bordered>
<q-drawer v-model="leftDrawerOpen" bordered show-if-above side="left">
<q-scroll-area class="fit">
<div class="q-pa-md">
<q-list>
<q-item clickable v-ripple :to="{ name: 'index' }">
<q-item v-ripple :to="{ name: 'index' }" clickable>
<q-item-section avatar>
<q-icon name="fas fa-tachometer-alt"/>
</q-item-section>
@@ -149,7 +149,7 @@
Dashboard
</q-item-section>
</q-item>
<q-item clickable v-ripple :to="{ name: 'budgets.index' }">
<q-item v-ripple :to="{ name: 'budgets.index' }" clickable>
<q-item-section avatar>
<q-icon name="fas fa-chart-pie"/>
</q-item-section>
@@ -157,7 +157,7 @@
Budgets
</q-item-section>
</q-item>
<q-item clickable v-ripple :to="{ name: 'subscriptions.index' }">
<q-item v-ripple :to="{ name: 'subscriptions.index' }" clickable>
<q-item-section avatar>
<q-icon name="far fa-calendar-alt"/>
</q-item-section>
@@ -165,7 +165,7 @@
Subscriptions
</q-item-section>
</q-item>
<q-item clickable v-ripple :to="{ name: 'piggy-banks.index' }">
<q-item v-ripple :to="{ name: 'piggy-banks.index' }" clickable>
<q-item-section avatar>
<q-icon name="fas fa-piggy-bank"/>
</q-item-section>
@@ -175,22 +175,25 @@
</q-item>
<q-expansion-item
:default-opened="this.$route.name === 'transactions.index' || this.$route.name === 'transactions.show'"
expand-separator
icon="fas fa-exchange-alt"
label="Transactions"
:default-opened="this.$route.name === 'transactions.index' || this.$route.name === 'transactions.show'"
>
<q-item :inset-level="1" clickable v-ripple :to="{ name: 'transactions.index', params: {type: 'withdrawal'} }">
<q-item v-ripple :inset-level="1" :to="{ name: 'transactions.index', params: {type: 'withdrawal'} }"
clickable>
<q-item-section>
Withdrawals
</q-item-section>
</q-item>
<q-item clickable v-ripple :inset-level="1" :to="{ name: 'transactions.index', params: {type: 'deposit'} }">
<q-item v-ripple :inset-level="1" :to="{ name: 'transactions.index', params: {type: 'deposit'} }"
clickable>
<q-item-section>
Deposits
</q-item-section>
</q-item>
<q-item clickable v-ripple :inset-level="1" :to="{ name: 'transactions.index', params: {type: 'transfers'} }">
<q-item v-ripple :inset-level="1" :to="{ name: 'transactions.index', params: {type: 'transfers'} }"
clickable>
<q-item-section>
Transfers
@@ -202,17 +205,17 @@
<q-expansion-item
default-unopened
expand-separator
icon="fas fa-microchip"
label="Automation"
default-unopened
>
<q-item :inset-level="1" clickable v-ripple :to="{ name: 'rules.index' }">
<q-item v-ripple :inset-level="1" :to="{ name: 'rules.index' }" clickable>
<q-item-section>
Rules
</q-item-section>
</q-item>
<q-item :inset-level="1" clickable v-ripple :to="{ name: 'recurring.index' }">
<q-item v-ripple :inset-level="1" :to="{ name: 'recurring.index' }" clickable>
<q-item-section>
Recurring transactions
</q-item-section>
@@ -221,27 +224,28 @@
</q-expansion-item>
<q-expansion-item
:default-opened="this.$route.name === 'accounts.index' || this.$route.name === 'accounts.show'"
expand-separator
icon="fas fa-credit-card"
label="Accounts"
:default-opened="this.$route.name === 'accounts.index' || this.$route.name === 'accounts.show'"
>
<q-item clickable v-ripple :inset-level="1" :to="{ name: 'accounts.index', params: {type: 'asset'} }">
<q-item v-ripple :inset-level="1" :to="{ name: 'accounts.index', params: {type: 'asset'} }" clickable>
<q-item-section>
Asset accounts
</q-item-section>
</q-item>
<q-item clickable v-ripple :inset-level="1" :to="{ name: 'accounts.index', params: {type: 'expense'} }">
<q-item v-ripple :inset-level="1" :to="{ name: 'accounts.index', params: {type: 'expense'} }" clickable>
<q-item-section>
Expense accounts
</q-item-section>
</q-item>
<q-item clickable v-ripple :inset-level="1" :to="{ name: 'accounts.index', params: {type: 'revenue'} }">
<q-item v-ripple :inset-level="1" :to="{ name: 'accounts.index', params: {type: 'revenue'} }" clickable>
<q-item-section>
Revenue accounts
</q-item-section>
</q-item>
<q-item clickable v-ripple :inset-level="1" :to="{ name: 'accounts.index', params: {type: 'liabilities'} }">
<q-item v-ripple :inset-level="1" :to="{ name: 'accounts.index', params: {type: 'liabilities'} }"
clickable>
<q-item-section>
Liabilities
</q-item-section>
@@ -250,28 +254,28 @@
</q-expansion-item>
<q-expansion-item
default-unopened
expand-separator
icon="fas fa-tags"
label="Classification"
default-unopened
>
<q-item clickable v-ripple :inset-level="1" :to="{ name: 'categories.index' }">
<q-item v-ripple :inset-level="1" :to="{ name: 'categories.index' }" clickable>
<q-item-section>
Categories
</q-item-section>
</q-item>
<q-item clickable v-ripple :inset-level="1" :to="{ name: 'tags.index' }">
<q-item v-ripple :inset-level="1" :to="{ name: 'tags.index' }" clickable>
<q-item-section>
Tags
</q-item-section>
</q-item>
<q-item clickable v-ripple :inset-level="1" :to="{ name: 'groups.index'}">
<q-item v-ripple :inset-level="1" :to="{ name: 'groups.index'}" clickable>
<q-item-section>
Groups
</q-item-section>
</q-item>
</q-expansion-item>
<q-item clickable v-ripple :to="{ name: 'reports.index'}">
<q-item v-ripple :to="{ name: 'reports.index'}" clickable>
<q-item-section avatar>
<q-icon name="far fa-chart-bar"/>
</q-item-section>
@@ -296,7 +300,7 @@
</div>
<div class="col-6">
<q-breadcrumbs align="right">
<q-breadcrumbs-el label="Home" :to="{ name: 'index' }"/>
<q-breadcrumbs-el :to="{ name: 'index' }" label="Home"/>
<q-breadcrumbs-el v-for="step in $route.meta.breadcrumbs" :label="$t('breadcrumbs.' + step.title)"
:to="step.route ? {name: step.route, params: step.params} : ''"/>
</q-breadcrumbs>
@@ -307,7 +311,7 @@
<router-view/>
</q-page-container>
<q-footer elevated class="bg-grey-8 text-white">
<q-footer class="bg-grey-8 text-white" elevated>
<q-toolbar>
<div>
<small>Firefly III v TODO &copy; James Cole, AGPL-3.0-or-later.</small>
@@ -344,11 +348,11 @@ export default defineComponent(
},
showHelpBox() {
$q.dialog({
title: 'Help',
message: 'The relevant help page will open in a new screen. Doesn\'t work yet.',
cancel: true,
persistent: false
}).onOk(() => {
title: 'Help',
message: 'The relevant help page will open in a new screen. Doesn\'t work yet.',
cancel: true,
persistent: false
}).onOk(() => {
// console.log('>>>> OK')
}).onCancel(() => {
// console.log('>>>> Cancel')

View File

@@ -32,18 +32,18 @@
<q-btn
class="q-mt-xl"
color="white"
text-color="blue"
unelevated
to="/"
label="Go Home"
no-caps
text-color="blue"
to="/"
unelevated
/>
</div>
</div>
</template>
<script>
import { defineComponent } from 'vue'
import {defineComponent} from 'vue'
export default defineComponent({
name: 'Error404'

View File

@@ -22,10 +22,10 @@
<q-page>
<div class="row q-mx-md">
<div class="col-12">
<q-banner inline-actions rounded class="bg-orange text-white" v-if="'' !== errorMessage">
<q-banner v-if="'' !== errorMessage" class="bg-orange text-white" inline-actions rounded>
{{ errorMessage }}
<template v-slot:action>
<q-btn flat @click="dismissBanner" label="Dismiss"/>
<q-btn flat label="Dismiss" @click="dismissBanner"/>
</template>
</q-banner>
</div>
@@ -40,22 +40,22 @@
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.name"
:error="hasSubmissionErrors.name"
bottom-slots
v-model="name"
:disable="disabledInput"
type="text" clearable v-model="name" :label="$t('form.name')"
outlined/>
:error="hasSubmissionErrors.name"
:error-message="submissionErrors.name"
:label="$t('form.name')" bottom-slots clearable outlined
type="text"/>
</div>
</div>
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.iban"
v-model="iban"
:disable="disabledInput"
:error="hasSubmissionErrors.iban"
mask="AA## XXXX XXXX XXXX XXXX XXXX XXXX XXXX XX"
bottom-slots :disable="disabledInput" type="text" clearable v-model="iban" :label="$t('form.iban')"
outlined/>
:error-message="submissionErrors.iban" :label="$t('form.iban')" bottom-slots clearable mask="AA## XXXX XXXX XXXX XXXX XXXX XXXX XXXX XX" outlined
type="text"/>
</div>
</div>
</q-card-section>
@@ -74,9 +74,11 @@
</div>
<div class="row">
<div class="col-12 text-right">
<q-checkbox :disable="disabledInput" v-model="doReturnHere" left-label label="Return here to create another one"/>
<q-checkbox v-model="doReturnHere" :disable="disabledInput" label="Return here to create another one"
left-label/>
<br/>
<q-checkbox v-model="doResetForm" left-label :disable="!doReturnHere || disabledInput" label="Reset form after submission"/>
<q-checkbox v-model="doResetForm" :disable="!doReturnHere || disabledInput" label="Reset form after submission"
left-label/>
</div>
</div>
</q-card-section>

View File

@@ -22,10 +22,10 @@
<q-page>
<div class="row q-mx-md">
<div class="col-12">
<q-banner inline-actions rounded class="bg-orange text-white" v-if="'' !== errorMessage">
<q-banner v-if="'' !== errorMessage" class="bg-orange text-white" inline-actions rounded>
{{ errorMessage }}
<template v-slot:action>
<q-btn flat @click="dismissBanner" label="Dismiss"/>
<q-btn flat label="Dismiss" @click="dismissBanner"/>
</template>
</q-banner>
</div>
@@ -40,20 +40,20 @@
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.name"
:error="hasSubmissionErrors.name"
bottom-slots :disable="disabledInput" type="text" clearable v-model="name" :label="$t('form.name')"
outlined/>
v-model="name"
:disable="disabledInput"
:error="hasSubmissionErrors.name" :error-message="submissionErrors.name" :label="$t('form.name')" bottom-slots clearable outlined
type="text"/>
</div>
</div>
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.iban"
v-model="iban"
:disable="disabledInput"
:error="hasSubmissionErrors.iban"
mask="AA## XXXX XXXX XXXX XXXX XXXX XXXX XXXX XX"
bottom-slots :disable="disabledInput" type="text" clearable v-model="iban" :label="$t('form.iban')"
outlined/>
:error-message="submissionErrors.iban" :label="$t('form.iban')" bottom-slots clearable mask="AA## XXXX XXXX XXXX XXXX XXXX XXXX XXXX XX" outlined
type="text"/>
</div>
</div>
</q-card-section>
@@ -72,7 +72,7 @@
</div>
<div class="row">
<div class="col-12 text-right">
<q-checkbox :disable="disabledInput" v-model="doReturnHere" left-label label="Return here"/>
<q-checkbox v-model="doReturnHere" :disable="disabledInput" label="Return here" left-label/>
</div>
</div>
</q-card-section>
@@ -117,11 +117,11 @@ export default {
this.collectAccount();
},
methods: {
collectAccount: function() {
collectAccount: function () {
let get = new Get;
get.get(this.id).then((response) => this.parseAccount(response));
},
parseAccount: function(response) {
parseAccount: function (response) {
this.name = response.data.data.attributes.name;
this.iban = response.data.data.attributes.iban;
},

View File

@@ -21,14 +21,14 @@
<template>
<q-page>
<q-table
:title="$t('firefly.' + this.type + '_accounts')"
:rows="rows"
:columns="columns"
row-key="id"
:dense="$q.screen.lt.md"
v-model:pagination="pagination"
:columns="columns"
:dense="$q.screen.lt.md"
:loading="loading"
:rows="rows"
:title="$t('firefly.' + this.type + '_accounts')"
class="q-ma-md"
row-key="id"
>
<template v-slot:header="props">
<q-tr :props="props">
@@ -47,14 +47,14 @@
<router-link :to="{ name: 'accounts.show', params: {id: props.row.id} }" class="text-primary">
{{ props.row.name }}
</router-link>
<q-popup-edit v-model="props.row.name" v-slot="scope">
<q-input v-model="scope.value" dense autofocus counter />
<q-popup-edit v-slot="scope" v-model="props.row.name">
<q-input v-model="scope.value" autofocus counter dense/>
</q-popup-edit>
</q-td>
<q-td key="iban" :props="props">
{{ formatIban(props.row.iban) }}
<q-popup-edit v-model="props.row.iban" v-slot="scope">
<q-input v-model="scope.value" dense autofocus counter />
<q-popup-edit v-slot="scope" v-model="props.row.iban">
<q-input v-model="scope.value" autofocus counter dense/>
</q-popup-edit>
</q-td>
<q-td key="current_balance" :props="props">
@@ -67,19 +67,20 @@
C
</q-td>
<q-td key="menu" :props="props">
<q-btn-dropdown color="primary" :label="$t('firefly.actions')" size="sm">
<q-btn-dropdown :label="$t('firefly.actions')" color="primary" size="sm">
<q-list>
<q-item clickable v-close-popup :to="{name: 'accounts.edit', params: {id: props.row.id}}">
<q-item v-close-popup :to="{name: 'accounts.edit', params: {id: props.row.id}}" clickable>
<q-item-section>
<q-item-label>{{ $t('firefly.edit') }}</q-item-label>
</q-item-section>
</q-item>
<q-item clickable v-close-popup :to="{name: 'accounts.reconcile', params: {id: props.row.id}}" v-if="'asset' === props.row.type">
<q-item v-if="'asset' === props.row.type" v-close-popup :to="{name: 'accounts.reconcile', params: {id: props.row.id}}"
clickable>
<q-item-section>
<q-item-label>{{ $t('firefly.reconcile') }}</q-item-label>
</q-item-section>
</q-item>
<q-item clickable v-close-popup @click="deleteAccount(props.row.id, props.row.name)">
<q-item v-close-popup clickable @click="deleteAccount(props.row.id, props.row.name)">
<q-item-section>
<q-item-label>{{ $t('firefly.delete') }}</q-item-label>
</q-item-section>
@@ -90,19 +91,20 @@
</q-tr>
</template>
</q-table>
<q-page-sticky position="bottom-right" :offset="[18, 18]">
<q-page-sticky :offset="[18, 18]" position="bottom-right">
<q-fab
:label="$t('firefly.actions')"
color="green"
direction="up"
icon="fas fa-chevron-up"
label-position="left"
square
vertical-actions-align="right"
label-position="left"
color="green"
icon="fas fa-chevron-up"
direction="up"
>
<!-- TODO -->
<!--<q-fab-action color="primary" square :to="{ name: 'accounts.create', params: {type: 'liability'} }" icon="fas fa-long-arrow-alt-right" label="New liability"/>-->
<q-fab-action color="primary" square :to="{ name: 'accounts.create', params: {type: 'asset'} }" icon="fas fa-exchange-alt" :label="$t('firefly.create_new_asset')"/>
<q-fab-action :label="$t('firefly.create_new_asset')" :to="{ name: 'accounts.create', params: {type: 'asset'} }" color="primary"
icon="fas fa-exchange-alt" square/>
</q-fab>
</q-page-sticky>
</q-page>
@@ -161,7 +163,6 @@ export default {
this.type = this.$route.params.type;
if (null === this.store.getRange.start || null === this.store.getRange.end) {
// subscribe, then update:
this.store.$onAction(
@@ -183,17 +184,17 @@ export default {
methods: {
deleteAccount: function (id, name) {
this.$q.dialog({
title: this.$t('firefly.confirm_action'),
message: 'Do you want to delete account "' + name + '"? Any and all transactions linked to this account will ALSO be deleted.',
cancel: true,
persistent: true
}).onOk(() => {
title: this.$t('firefly.confirm_action'),
message: 'Do you want to delete account "' + name + '"? Any and all transactions linked to this account will ALSO be deleted.',
cancel: true,
persistent: true
}).onOk(() => {
this.destroyAccount(id);
});
},
destroyAccount: function (id) {
(new Destroy('accounts')).destroy(id).then(() => {
this.rows= [];
this.rows = [];
this.store.refreshCacheKey().then(() => {
this.triggerUpdate();
});
@@ -218,7 +219,7 @@ export default {
return string.replace(NON_ALPHANUM, '').toUpperCase().replace(EVERY_FOUR_CHARS, "$1 ");
},
triggerUpdate: function () {
this.rows= [];
this.rows = [];
if (true === this.loading) {
return;
}

View File

@@ -20,7 +20,7 @@
<template>
<q-page>
<div class="row q-mx-md" v-if="!canReconcile">
<div v-if="!canReconcile" class="row q-mx-md">
<div class="col-12">
<q-card bordered>
<q-card-section>
@@ -38,28 +38,28 @@
<q-card-section>
<div class="row">
<div class="col-3 q-pr-xs">
<q-input outlined v-model="startDate" hint="Start date" type="date" dense>
<q-input v-model="startDate" dense hint="Start date" outlined type="date">
<template v-slot:prepend>
<q-icon name="far fa-calendar"/>
</template>
</q-input>
</div>
<div class="col-3 q-px-xs">
<q-input outlined v-model="startBalance" hint="Start balance" step="0.00" type="number" dense>
<q-input v-model="startBalance" dense hint="Start balance" outlined step="0.00" type="number">
<template v-slot:prepend>
<q-icon name="fas fa-coins"/>
</template>
</q-input>
</div>
<div class="col-3">
<q-input outlined v-model="endDate" hint="End date" type="date" dense>
<q-input v-model="endDate" dense hint="End date" outlined type="date">
<template v-slot:prepend>
<q-icon name="far fa-calendar"/>
</template>
</q-input>
</div>
<div class="col-3 q-px-xs">
<q-input outlined v-model="endBalance" hint="End Balance" step="0.00" type="number" dense>
<q-input v-model="endBalance" dense hint="End Balance" outlined step="0.00" type="number">
<template v-slot:prepend>
<q-icon name="fas fa-coins"/>
</template>
@@ -170,7 +170,7 @@
</div>
</div>
<q-page-scroller position="bottom-right" :offset="[16,16]" scroll-offset="120" v-if="canReconcile">
<q-page-scroller v-if="canReconcile" :offset="[16,16]" position="bottom-right" scroll-offset="120">
<div class="bg-primary text-white q-px-xl q-pa-md rounded-borders">EUR {{ balanceDiff }}</div>
</q-page-scroller>
</q-page>
@@ -209,7 +209,7 @@ export default {
this.collectBalances();
},
methods: {
initReconciliation: function() {
initReconciliation: function () {
this.$q.dialog({
title: 'Todo',
message: 'This function does not work yet.',

View File

@@ -42,13 +42,13 @@
<div class="row q-mt-sm">
<div class="col-12">
<LargeTable ref="table"
title="Transactions"
:rows="rows"
:loading="loading"
v-on:on-request="onRequest"
:page="page"
:rows="rows"
:rows-number="rowsNumber"
:rows-per-page="rowsPerPage"
:page="page"
title="Transactions"
v-on:on-request="onRequest"
>
</LargeTable>
</div>

View File

@@ -59,11 +59,11 @@
<q-card bordered>
<q-card-section>
<div class="text-h6">Is demo site?
<span class="text-secondary" v-if="true === isOk.is_demo_site"><span
<span v-if="true === isOk.is_demo_site" class="text-secondary"><span
class="far fa-check-circle"></span></span>
<span class="text-blue" v-if="true === isLoading.is_demo_site"><span
<span v-if="true === isLoading.is_demo_site" class="text-blue"><span
class="fas fa-spinner fa-spin"></span></span>
<span class="text-red" v-if="true === isFailure.is_demo_site"><span
<span v-if="true === isFailure.is_demo_site" class="text-red"><span
class="fas fa-skull-crossbones"></span> <small>Please refresh the page...</small></span>
</div>
</q-card-section>
@@ -77,11 +77,11 @@
<q-card bordered>
<q-card-section>
<div class="text-h6">Single user mode?
<span class="text-secondary" v-if="true === isOk.single_user_mode"><span
<span v-if="true === isOk.single_user_mode" class="text-secondary"><span
class="far fa-check-circle"></span></span>
<span class="text-blue" v-if="true === isLoading.single_user_mode"><span
<span v-if="true === isLoading.single_user_mode" class="text-blue"><span
class="fas fa-spinner fa-spin"></span></span>
<span class="text-red" v-if="true === isFailure.single_user_mode"><span
<span v-if="true === isFailure.single_user_mode" class="text-red"><span
class="fas fa-skull-crossbones"></span> <small>Please refresh the page...</small></span>
</div>
</q-card-section>
@@ -95,20 +95,20 @@
<q-card bordered>
<q-card-section>
<div class="text-h6">Check for updates?
<span class="text-secondary" v-if="true === isOk.update_check"><span
<span v-if="true === isOk.update_check" class="text-secondary"><span
class="far fa-check-circle"></span></span>
<span class="text-blue" v-if="true === isLoading.update_check"><span
<span v-if="true === isLoading.update_check" class="text-blue"><span
class="fas fa-spinner fa-spin"></span></span>
<span class="text-red" v-if="true === isFailure.update_check"><span
<span v-if="true === isFailure.update_check" class="text-red"><span
class="fas fa-skull-crossbones"></span> <small>Please refresh the page...</small></span>
</div>
</q-card-section>
<q-card-section>
<q-select
bottom-slots
outlined
v-model="permissionUpdateCheck" emit-value
map-options :options="permissions" label="Check for updates"/>
v-model="permissionUpdateCheck"
:options="permissions"
bottom-slots emit-value
label="Check for updates" map-options outlined/>
</q-card-section>
</q-card>
</div>

View File

@@ -22,10 +22,10 @@
<q-page>
<div class="row q-mx-md">
<div class="col-12">
<q-banner inline-actions rounded class="bg-orange text-white" v-if="'' !== errorMessage">
<q-banner v-if="'' !== errorMessage" class="bg-orange text-white" inline-actions rounded>
{{ errorMessage }}
<template v-slot:action>
<q-btn flat @click="dismissBanner" label="Dismiss"/>
<q-btn flat label="Dismiss" @click="dismissBanner"/>
</template>
</q-banner>
</div>
@@ -41,10 +41,10 @@
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.name"
:error="hasSubmissionErrors.name"
bottom-slots :disable="disabledInput" type="text" clearable v-model="name" :label="$t('form.name')"
outlined/>
v-model="name"
:disable="disabledInput"
:error="hasSubmissionErrors.name" :error-message="submissionErrors.name" :label="$t('form.name')" bottom-slots clearable outlined
type="text"/>
</div>
</div>
</q-card-section>
@@ -63,9 +63,11 @@
</div>
<div class="row">
<div class="col-12 text-right">
<q-checkbox :disable="disabledInput" v-model="doReturnHere" left-label label="Return here to create another one"/>
<q-checkbox v-model="doReturnHere" :disable="disabledInput" label="Return here to create another one"
left-label/>
<br/>
<q-checkbox v-model="doResetForm" left-label :disable="!doReturnHere || disabledInput" label="Reset form after submission"/>
<q-checkbox v-model="doResetForm" :disable="!doReturnHere || disabledInput" label="Reset form after submission"
left-label/>
</div>
</div>
</q-card-section>

View File

@@ -22,10 +22,10 @@
<q-page>
<div class="row q-mx-md">
<div class="col-12">
<q-banner inline-actions rounded class="bg-orange text-white" v-if="'' !== errorMessage">
<q-banner v-if="'' !== errorMessage" class="bg-orange text-white" inline-actions rounded>
{{ errorMessage }}
<template v-slot:action>
<q-btn flat @click="dismissBanner" label="Dismiss"/>
<q-btn flat label="Dismiss" @click="dismissBanner"/>
</template>
</q-banner>
</div>
@@ -41,10 +41,10 @@
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.name"
:error="hasSubmissionErrors.name"
bottom-slots :disable="disabledInput" type="text" clearable v-model="name" :label="$t('form.name')"
outlined/>
v-model="name"
:disable="disabledInput"
:error="hasSubmissionErrors.name" :error-message="submissionErrors.name" :label="$t('form.name')" bottom-slots clearable outlined
type="text"/>
</div>
</div>
</q-card-section>
@@ -63,7 +63,7 @@
</div>
<div class="row">
<div class="col-12 text-right">
<q-checkbox :disable="disabledInput" v-model="doReturnHere" left-label label="Return here"/>
<q-checkbox v-model="doReturnHere" :disable="disabledInput" label="Return here" left-label/>
</div>
</div>
</q-card-section>
@@ -106,11 +106,11 @@ export default {
this.collectBudget();
},
methods: {
collectBudget: function() {
collectBudget: function () {
let get = new Get;
get.get(this.id).then((response) => this.parseBudget(response));
},
parseBudget: function(response) {
parseBudget: function (response) {
this.name = response.data.data.attributes.name;
},
resetErrors: function () {

View File

@@ -21,14 +21,14 @@
<template>
<q-page>
<q-table
:title="$t('firefly.budgets')"
:rows="rows"
v-model:pagination="pagination"
:columns="columns"
:loading="loading"
:rows="rows"
:title="$t('firefly.budgets')"
class="q-ma-md"
row-key="id"
@request="onRequest"
v-model:pagination="pagination"
:loading="loading"
class="q-ma-md"
>
<template v-slot:header="props">
<q-tr :props="props">
@@ -51,12 +51,12 @@
<q-td key="menu" :props="props">
<q-btn-dropdown color="primary" label="Actions" size="sm">
<q-list>
<q-item clickable v-close-popup :to="{name: 'budgets.edit', params: {id: props.row.id}}">
<q-item v-close-popup :to="{name: 'budgets.edit', params: {id: props.row.id}}" clickable>
<q-item-section>
<q-item-label>Edit</q-item-label>
</q-item-section>
</q-item>
<q-item clickable v-close-popup @click="deleteBudget(props.row.id, props.row.name)">
<q-item v-close-popup clickable @click="deleteBudget(props.row.id, props.row.name)">
<q-item-section>
<q-item-label>Delete</q-item-label>
</q-item-section>
@@ -70,18 +70,18 @@
<p>
<q-btn :to="{name: 'budgets.show', params: {id: 0}}">Transactions without a budget</q-btn>
</p>
<q-page-sticky position="bottom-right" :offset="[18, 18]">
<q-page-sticky :offset="[18, 18]" position="bottom-right">
<q-fab
color="green"
direction="up"
icon="fas fa-chevron-up"
label="Actions"
label-position="left"
square
vertical-actions-align="right"
label-position="left"
color="green"
icon="fas fa-chevron-up"
direction="up"
>
<q-fab-action color="primary" square :to="{ name: 'budgets.create'}" icon="fas fa-exchange-alt"
label="New budget"/>
<q-fab-action :to="{ name: 'budgets.create'}" color="primary" icon="fas fa-exchange-alt" label="New budget"
square/>
</q-fab>
</q-page-sticky>
</q-page>

View File

@@ -41,13 +41,13 @@
<div class="row q-mt-sm">
<div class="col-12">
<LargeTable ref="table"
title="Transactions"
:rows="rows"
:loading="loading"
v-on:on-request="onRequest"
:page="page"
:rows="rows"
:rows-number="rowsNumber"
:rows-per-page="rowsPerPage"
:page="page"
title="Transactions"
v-on:on-request="onRequest"
>
</LargeTable>
</div>

View File

@@ -22,10 +22,10 @@
<q-page>
<div class="row q-mx-md">
<div class="col-12">
<q-banner inline-actions rounded class="bg-orange text-white" v-if="'' !== errorMessage">
<q-banner v-if="'' !== errorMessage" class="bg-orange text-white" inline-actions rounded>
{{ errorMessage }}
<template v-slot:action>
<q-btn flat @click="dismissBanner" label="Dismiss"/>
<q-btn flat label="Dismiss" @click="dismissBanner"/>
</template>
</q-banner>
</div>
@@ -40,10 +40,10 @@
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.name"
:error="hasSubmissionErrors.name"
bottom-slots :disable="disabledInput" type="text" clearable v-model="name" :label="$t('form.name')"
outlined/>
v-model="name"
:disable="disabledInput"
:error="hasSubmissionErrors.name" :error-message="submissionErrors.name" :label="$t('form.name')" bottom-slots clearable outlined
type="text"/>
</div>
</div>
</q-card-section>
@@ -62,9 +62,11 @@
</div>
<div class="row">
<div class="col-12 text-right">
<q-checkbox :disable="disabledInput" v-model="doReturnHere" left-label label="Return here to create another one"/>
<q-checkbox v-model="doReturnHere" :disable="disabledInput" label="Return here to create another one"
left-label/>
<br/>
<q-checkbox v-model="doResetForm" left-label :disable="!doReturnHere || disabledInput" label="Reset form after submission"/>
<q-checkbox v-model="doResetForm" :disable="!doReturnHere || disabledInput" label="Reset form after submission"
left-label/>
</div>
</div>
</q-card-section>

View File

@@ -22,10 +22,10 @@
<q-page>
<div class="row q-mx-md">
<div class="col-12">
<q-banner inline-actions rounded class="bg-orange text-white" v-if="'' !== errorMessage">
<q-banner v-if="'' !== errorMessage" class="bg-orange text-white" inline-actions rounded>
{{ errorMessage }}
<template v-slot:action>
<q-btn flat @click="dismissBanner" label="Dismiss"/>
<q-btn flat label="Dismiss" @click="dismissBanner"/>
</template>
</q-banner>
</div>
@@ -40,10 +40,10 @@
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.name"
:error="hasSubmissionErrors.name"
bottom-slots :disable="disabledInput" type="text" clearable v-model="name" :label="$t('form.name')"
outlined/>
v-model="name"
:disable="disabledInput"
:error="hasSubmissionErrors.name" :error-message="submissionErrors.name" :label="$t('form.name')" bottom-slots clearable outlined
type="text"/>
</div>
</div>
</q-card-section>
@@ -62,7 +62,7 @@
</div>
<div class="row">
<div class="col-12 text-right">
<q-checkbox :disable="disabledInput" v-model="doReturnHere" left-label label="Return here"/>
<q-checkbox v-model="doReturnHere" :disable="disabledInput" label="Return here" left-label/>
</div>
</div>
</q-card-section>
@@ -106,11 +106,11 @@ export default {
this.store = useFireflyIIIStore();
},
methods: {
collectCategory: function() {
collectCategory: function () {
let get = new Get;
get.get(this.id).then((response) => this.parseCategory(response));
},
parseCategory: function(response) {
parseCategory: function (response) {
this.name = response.data.data.attributes.name;
},
resetErrors: function () {

View File

@@ -21,14 +21,14 @@
<template>
<q-page>
<q-table
:title="$t('firefly.categories')"
:rows="rows"
v-model:pagination="pagination"
:columns="columns"
:loading="loading"
:rows="rows"
:title="$t('firefly.categories')"
class="q-ma-md"
row-key="id"
@request="onRequest"
v-model:pagination="pagination"
:loading="loading"
class="q-ma-md"
>
<template v-slot:header="props">
<q-tr :props="props">
@@ -51,12 +51,12 @@
<q-td key="menu" :props="props">
<q-btn-dropdown color="primary" label="Actions" size="sm">
<q-list>
<q-item clickable v-close-popup :to="{name: 'categories.edit', params: {id: props.row.id}}">
<q-item v-close-popup :to="{name: 'categories.edit', params: {id: props.row.id}}" clickable>
<q-item-section>
<q-item-label>Edit</q-item-label>
</q-item-section>
</q-item>
<q-item clickable v-close-popup @click="deleteCategory(props.row.id, props.row.name)">
<q-item v-close-popup clickable @click="deleteCategory(props.row.id, props.row.name)">
<q-item-section>
<q-item-label>Delete</q-item-label>
</q-item-section>
@@ -70,17 +70,18 @@
<p>
<q-btn :to="{name: 'categories.show', params: {id: 0}}">Transactions without a category</q-btn>
</p>
<q-page-sticky position="bottom-right" :offset="[18, 18]">
<q-page-sticky :offset="[18, 18]" position="bottom-right">
<q-fab
color="green"
direction="up"
icon="fas fa-chevron-up"
label="Actions"
label-position="left"
square
vertical-actions-align="right"
label-position="left"
color="green"
icon="fas fa-chevron-up"
direction="up"
>
<q-fab-action color="primary" square :to="{ name: 'categories.create'}" icon="fas fa-exchange-alt" label="New category"/>
<q-fab-action :to="{ name: 'categories.create'}" color="primary" icon="fas fa-exchange-alt" label="New category"
square/>
</q-fab>
</q-page-sticky>
</q-page>

View File

@@ -41,13 +41,13 @@
<div class="row q-mt-sm">
<div class="col-12">
<LargeTable ref="table"
title="Transactions"
:rows="rows"
:loading="loading"
v-on:on-request="onRequest"
:page="page"
:rows="rows"
:rows-number="rowsNumber"
:rows-per-page="rowsPerPage"
:page="page"
title="Transactions"
v-on:on-request="onRequest"
>
</LargeTable>
</div>

View File

@@ -22,10 +22,10 @@
<q-page>
<div class="row q-mx-md">
<div class="col-12">
<q-banner inline-actions rounded class="bg-orange text-white" v-if="'' !== errorMessage">
<q-banner v-if="'' !== errorMessage" class="bg-orange text-white" inline-actions rounded>
{{ errorMessage }}
<template v-slot:action>
<q-btn flat @click="dismissBanner" label="Dismiss"/>
<q-btn flat label="Dismiss" @click="dismissBanner"/>
</template>
</q-banner>
</div>
@@ -40,30 +40,31 @@
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.name"
:error="hasSubmissionErrors.name"
bottom-slots :disable="disabledInput" type="text" clearable v-model="name" :label="$t('form.name')"
outlined/>
v-model="name"
:disable="disabledInput"
:error="hasSubmissionErrors.name" :error-message="submissionErrors.name" :label="$t('form.name')" bottom-slots clearable outlined
type="text"/>
</div>
</div>
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.code"
:error="hasSubmissionErrors.code"
bottom-slots :disable="disabledInput" type="text" clearable v-model="code" :label="$t('form.code')"
outlined/>
v-model="code"
:disable="disabledInput"
:error="hasSubmissionErrors.code" :error-message="submissionErrors.code" :label="$t('form.code')" bottom-slots clearable outlined
type="text"/>
</div>
</div>
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.symbol"
:error="hasSubmissionErrors.symbol"
bottom-slots :disable="disabledInput" type="text" clearable v-model="symbol" :label="$t('form.symbol')"
outlined/>
v-model="symbol"
:disable="disabledInput"
:error="hasSubmissionErrors.symbol" :error-message="submissionErrors.symbol" :label="$t('form.symbol')" bottom-slots clearable
outlined
type="text"/>
</div>
</div>
</q-card-section>
@@ -82,9 +83,11 @@
</div>
<div class="row">
<div class="col-12 text-right">
<q-checkbox :disable="disabledInput" v-model="doReturnHere" left-label label="Return here to create another one"/>
<q-checkbox v-model="doReturnHere" :disable="disabledInput" label="Return here to create another one"
left-label/>
<br/>
<q-checkbox v-model="doResetForm" left-label :disable="!doReturnHere || disabledInput" label="Reset form after submission"/>
<q-checkbox v-model="doResetForm" :disable="!doReturnHere || disabledInput" label="Reset form after submission"
left-label/>
</div>
</div>
</q-card-section>

View File

@@ -22,10 +22,10 @@
<q-page>
<div class="row q-mx-md">
<div class="col-12">
<q-banner inline-actions rounded class="bg-orange text-white" v-if="'' !== errorMessage">
<q-banner v-if="'' !== errorMessage" class="bg-orange text-white" inline-actions rounded>
{{ errorMessage }}
<template v-slot:action>
<q-btn flat @click="dismissBanner" label="Dismiss"/>
<q-btn flat label="Dismiss" @click="dismissBanner"/>
</template>
</q-banner>
</div>
@@ -40,30 +40,31 @@
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.name"
:error="hasSubmissionErrors.name"
bottom-slots :disable="disabledInput" type="text" clearable v-model="name" :label="$t('form.name')"
outlined/>
v-model="name"
:disable="disabledInput"
:error="hasSubmissionErrors.name" :error-message="submissionErrors.name" :label="$t('form.name')" bottom-slots clearable outlined
type="text"/>
</div>
</div>
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.code"
:error="hasSubmissionErrors.code"
bottom-slots :disable="disabledInput" type="text" clearable v-model="code" :label="$t('form.code')"
outlined/>
v-model="code"
:disable="disabledInput"
:error="hasSubmissionErrors.code" :error-message="submissionErrors.code" :label="$t('form.code')" bottom-slots clearable outlined
type="text"/>
</div>
</div>
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.symbol"
:error="hasSubmissionErrors.symbol"
bottom-slots :disable="disabledInput" type="text" clearable v-model="symbol" :label="$t('form.symbol')"
outlined/>
v-model="symbol"
:disable="disabledInput"
:error="hasSubmissionErrors.symbol" :error-message="submissionErrors.symbol" :label="$t('form.symbol')" bottom-slots clearable
outlined
type="text"/>
</div>
</div>
</q-card-section>
@@ -82,7 +83,7 @@
</div>
<div class="row">
<div class="col-12 text-right">
<q-checkbox :disable="disabledInput" v-model="doReturnHere" left-label label="Return here"/>
<q-checkbox v-model="doReturnHere" :disable="disabledInput" label="Return here" left-label/>
</div>
</div>
</q-card-section>
@@ -127,11 +128,11 @@ export default {
this.store = useFireflyIIIStore();
},
methods: {
collectCurrency: function() {
collectCurrency: function () {
let get = new Get;
get.get(this.code).then((response) => this.parseCurrency(response));
},
parseCurrency: function(response) {
parseCurrency: function (response) {
this.name = response.data.data.attributes.name;
this.symbol = response.data.data.attributes.symbol;
},

View File

@@ -21,14 +21,14 @@
<template>
<q-page>
<q-table
:title="$t('firefly.currencies')"
:rows="rows"
v-model:pagination="pagination"
:columns="columns"
:loading="loading"
:rows="rows"
:title="$t('firefly.currencies')"
class="q-ma-md"
row-key="id"
@request="onRequest"
v-model:pagination="pagination"
:loading="loading"
class="q-ma-md"
>
<template v-slot:header="props">
<q-tr :props="props">
@@ -49,17 +49,17 @@
</router-link>
</q-td>
<q-td key="name" :props="props">
{{ props.row.code }}
{{ props.row.code }}
</q-td>
<q-td key="menu" :props="props">
<q-btn-dropdown color="primary" label="Actions" size="sm">
<q-list>
<q-item clickable v-close-popup :to="{name: 'currencies.edit', params: {code: props.row.code}}">
<q-item v-close-popup :to="{name: 'currencies.edit', params: {code: props.row.code}}" clickable>
<q-item-section>
<q-item-label>Edit</q-item-label>
</q-item-section>
</q-item>
<q-item clickable v-close-popup @click="deleteCurrency(props.row.code, props.row.name)">
<q-item v-close-popup clickable @click="deleteCurrency(props.row.code, props.row.name)">
<q-item-section>
<q-item-label>Delete</q-item-label>
</q-item-section>
@@ -70,17 +70,18 @@
</q-tr>
</template>
</q-table>
<q-page-sticky position="bottom-right" :offset="[18, 18]">
<q-page-sticky :offset="[18, 18]" position="bottom-right">
<q-fab
color="green"
direction="up"
icon="fas fa-chevron-up"
label="Actions"
label-position="left"
square
vertical-actions-align="right"
label-position="left"
color="green"
icon="fas fa-chevron-up"
direction="up"
>
<q-fab-action color="primary" square :to="{ name: 'currencies.create'}" icon="fas fa-exchange-alt" label="New currency"/>
<q-fab-action :to="{ name: 'currencies.create'}" color="primary" icon="fas fa-exchange-alt" label="New currency"
square/>
</q-fab>
</q-page-sticky>
</q-page>

View File

@@ -42,13 +42,13 @@
<div class="row q-mt-sm">
<div class="col-12">
<LargeTable ref="table"
title="Transactions"
:rows="rows"
:loading="loading"
v-on:on-request="onRequest"
:page="page"
:rows="rows"
:rows-number="rowsNumber"
:rows-per-page="rowsPerPage"
:page="page"
title="Transactions"
v-on:on-request="onRequest"
>
</LargeTable>
</div>

View File

@@ -154,7 +154,10 @@ export default {
triggerUpdate: function () {
if (null !== this.store.getRange.start && null !== this.store.getRange.end) {
const basic = new Basic;
basic.list({start: this.store.getRange.start, end: this.store.getRange.end}, this.store.getCacheKey).then(data => {
basic.list({
start: this.store.getRange.start,
end: this.store.getRange.end
}, this.store.getCacheKey).then(data => {
this.netWorth = this.getKeyedEntries(data.data, 'net-worth-in-');
this.leftToSpend = this.getKeyedEntries(data.data, 'left-to-spend-in-');
this.billsPaid = this.getKeyedEntries(data.data, 'bills-paid-in-');

View File

@@ -67,26 +67,26 @@
Bill box
</div>
</div>
<q-page-sticky position="bottom-right" :offset="[18, 18]">
<q-page-sticky :offset="[18, 18]" position="bottom-right">
<q-fab
color="green"
direction="up"
icon="fas fa-chevron-up"
label="Actions"
label-position="left"
square
vertical-actions-align="right"
label-position="left"
color="green"
icon="fas fa-chevron-up"
direction="up"
>
<q-fab-action color="primary" square icon="fas fa-chart-pie" :label="$t('firefly.new_budget')"
:to="{ name: 'budgets.create' }"/>
<q-fab-action color="primary" square icon="far fa-money-bill-alt" :label="$t('firefly.new_asset_account')"
:to="{ name: 'accounts.create', params: {type: 'asset'} }"/>
<q-fab-action color="primary" square icon="fas fa-exchange-alt" :label="$t('firefly.newTransfer')"
:to="{ name: 'transactions.create', params: {type: 'transfer'} }"/>
<q-fab-action color="primary" square icon="fas fa-long-arrow-alt-right" :label="$t('firefly.newDeposit')"
:to="{ name: 'transactions.create', params: {type: 'deposit'} }"/>
<q-fab-action color="primary" square icon="fas fa-long-arrow-alt-left" :label="$t('firefly.newWithdrawal')"
:to="{ name: 'transactions.create', params: {type: 'withdrawal'} }"/>
<q-fab-action :label="$t('firefly.new_budget')" :to="{ name: 'budgets.create' }" color="primary" icon="fas fa-chart-pie"
square/>
<q-fab-action :label="$t('firefly.new_asset_account')" :to="{ name: 'accounts.create', params: {type: 'asset'} }" color="primary" icon="far fa-money-bill-alt"
square/>
<q-fab-action :label="$t('firefly.newTransfer')" :to="{ name: 'transactions.create', params: {type: 'transfer'} }" color="primary" icon="fas fa-exchange-alt"
square/>
<q-fab-action :label="$t('firefly.newDeposit')" :to="{ name: 'transactions.create', params: {type: 'deposit'} }" color="primary" icon="fas fa-long-arrow-alt-right"
square/>
<q-fab-action :label="$t('firefly.newWithdrawal')" :to="{ name: 'transactions.create', params: {type: 'withdrawal'} }" color="primary" icon="fas fa-long-arrow-alt-left"
square/>
</q-fab>
</q-page-sticky>
</div>

View File

@@ -20,7 +20,7 @@
<template>
<div>
<ApexChart width="100%" ref="chart" height="350" type="line" :options="options" :series="series"></ApexChart>
<ApexChart ref="chart" :options="options" :series="series" height="350" type="line" width="100%"></ApexChart>
</div>
</template>
@@ -34,8 +34,7 @@ import {useFireflyIIIStore} from "../../stores/fireflyiii";
export default {
name: "HomeChart",
computed: {
},
computed: {},
data() {
return {
range: {

View File

@@ -23,12 +23,15 @@
<div class="row q-mx-md">
<div class="col-7">
<p>
Hi! With your active support and feedback I'm capable of building this fancy new layout. So thank you for testing and playing around.
Hi! With your active support and feedback I'm capable of building this fancy new layout. So thank you for
testing and playing around.
I'm grateful for your help.
</p>
<p>
The <strong>v2</strong> layout was built to be perfect for each page. This new <strong>v3</strong> layout has a different approach. I'm
building a "minimum viable product", where each page has <em>minimal</em> functionality. But any functionality that's there should work. It
The <strong>v2</strong> layout was built to be perfect for each page. This new <strong>v3</strong> layout has
a different approach. I'm
building a "minimum viable product", where each page has <em>minimal</em> functionality. But any functionality
that's there should work. It
may not do everything you need and stuff may be missing. The things that you see are things that work.
</p>
<p>
@@ -36,23 +39,31 @@
</p>
<ul>
<li class="text-negative">You will lose data when you edit certain objects;</li>
<li>Caching is fairly aggressive and a page refresh may be necessary to get new information. This is especially obvious when you make new transactions
<li>Caching is fairly aggressive and a page refresh may be necessary to get new information. This is
especially obvious when you make new transactions
or accounts;
</li>
<li>Not all menu's are (un)folded correctly for all pages;</li>
<li>Breadcrumbs are missing or incorrect;</li>
<li>You can't make transaction splits;</li>
<li>Accounts, budgets, transactions, etc. have only limited fields available in the edit, create and view screens;</li>
<li>Occasionally, you may spot a "TODO". I've limited their presence, but sometimes I just need a placeholder;</li>
<li>Missing translations, <code>firefly.abc</code> references, or transactions formatted in another locale;</li>
<li>Accounts, budgets, transactions, etc. have only limited fields available in the edit, create and view
screens;
</li>
<li>Occasionally, you may spot a "TODO". I've limited their presence, but sometimes I just need a
placeholder;
</li>
<li>Missing translations, <code>firefly.abc</code> references, or transactions formatted in another locale;
</li>
</ul>
<p>
If you need to visit a <strong>v1</strong> alternative for the page you are seeing, please change the URL to
<code>*/profile</code> (where <code>*</code> is your Firefly III URL). From there, you can navigate to any <strong>v1</strong> page.
<code>*/profile</code> (where <code>*</code> is your Firefly III URL). From there, you can navigate to any
<strong>v1</strong> page.
You may not be able to visit the v1 dashboard.
</p>
<p>
Tickets on GitHub that concern v3 will be <em class="text-negative">closed</em>. This rule may change in the future. Until then, please leave your feedback here:
Tickets on GitHub that concern v3 will be <em class="text-negative">closed</em>. This rule may change in the
future. Until then, please leave your feedback here:
</p>
<ul>
<li><a href="https://github.com/firefly-iii/firefly-iii/discussions/5589">GitHub discussion</a></li>

View File

@@ -22,10 +22,10 @@
<q-page>
<div class="row q-mx-md">
<div class="col-12">
<q-banner inline-actions rounded class="bg-orange text-white" v-if="'' !== errorMessage">
<q-banner v-if="'' !== errorMessage" class="bg-orange text-white" inline-actions rounded>
{{ errorMessage }}
<template v-slot:action>
<q-btn flat @click="dismissBanner" label="Dismiss"/>
<q-btn flat label="Dismiss" @click="dismissBanner"/>
</template>
</q-banner>
</div>
@@ -40,10 +40,10 @@
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.title"
:error="hasSubmissionErrors.title"
bottom-slots :disable="disabledInput" type="text" clearable v-model="title" :label="$t('form.title')"
outlined/>
v-model="title"
:disable="disabledInput"
:error="hasSubmissionErrors.title" :error-message="submissionErrors.title" :label="$t('form.title')" bottom-slots clearable outlined
type="text"/>
</div>
</div>
</q-card-section>
@@ -62,7 +62,7 @@
</div>
<div class="row">
<div class="col-12 text-right">
<q-checkbox :disable="disabledInput" v-model="doReturnHere" left-label label="Return here"/>
<q-checkbox v-model="doReturnHere" :disable="disabledInput" label="Return here" left-label/>
</div>
</div>
</q-card-section>
@@ -106,11 +106,11 @@ export default {
this.store = useFireflyIIIStore();
},
methods: {
collectGroup: function() {
collectGroup: function () {
let get = new Get;
get.get(this.id).then((response) => this.parseGroup(response));
},
parseGroup: function(response) {
parseGroup: function (response) {
this.title = response.data.data.attributes.title;
},
resetErrors: function () {

View File

@@ -21,14 +21,14 @@
<template>
<q-page>
<q-table
:title="$t('firefly.object_groups')"
:rows="rows"
v-model:pagination="pagination"
:columns="columns"
:loading="loading"
:rows="rows"
:title="$t('firefly.object_groups')"
class="q-ma-md"
row-key="id"
@request="onRequest"
v-model:pagination="pagination"
:loading="loading"
class="q-ma-md"
>
<template v-slot:header="props">
<q-tr :props="props">
@@ -51,12 +51,12 @@
<q-td key="menu" :props="props">
<q-btn-dropdown color="primary" label="Actions" size="sm">
<q-list>
<q-item clickable v-close-popup :to="{name: 'groups.edit', params: {id: props.row.id}}">
<q-item v-close-popup :to="{name: 'groups.edit', params: {id: props.row.id}}" clickable>
<q-item-section>
<q-item-label>Edit</q-item-label>
</q-item-section>
</q-item>
<q-item clickable v-close-popup @click="deleteGroup(props.row.id, props.row.title)">
<q-item v-close-popup clickable @click="deleteGroup(props.row.id, props.row.title)">
<q-item-section>
<q-item-label>Delete</q-item-label>
</q-item-section>

View File

@@ -22,10 +22,10 @@
<q-page>
<div class="row q-mx-md">
<div class="col-12">
<q-banner inline-actions rounded class="bg-orange text-white" v-if="'' !== errorMessage">
<q-banner v-if="'' !== errorMessage" class="bg-orange text-white" inline-actions rounded>
{{ errorMessage }}
<template v-slot:action>
<q-btn flat @click="dismissBanner" label="Dismiss"/>
<q-btn flat label="Dismiss" @click="dismissBanner"/>
</template>
</q-banner>
</div>
@@ -40,34 +40,34 @@
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.name"
:error="hasSubmissionErrors.name"
bottom-slots :disable="disabledInput" type="text" clearable v-model="name" :label="$t('form.name')"
outlined/>
v-model="name"
:disable="disabledInput"
:error="hasSubmissionErrors.name" :error-message="submissionErrors.name" :label="$t('form.name')" bottom-slots clearable outlined
type="text"/>
</div>
</div>
<div class="row">
<div class="col-12 q-mb-xs">
<q-select
:error-message="submissionErrors.account_id"
:error="hasSubmissionErrors.account_id"
bottom-slots
:disable="disabledInput"
outlined
v-model="account_id"
emit-value class="q-pr-xs"
map-options :options="accounts" label="Asset account"/>
:disable="disabledInput"
:error="hasSubmissionErrors.account_id"
:error-message="submissionErrors.account_id"
:options="accounts"
bottom-slots
class="q-pr-xs" emit-value
label="Asset account" map-options outlined/>
</div>
</div>
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.target_amount"
:error="hasSubmissionErrors.target_amount"
bottom-slots :disable="disabledInput" clearable :mask="balance_input_mask" reverse-fill-mask
hint="Expects #.##" fill-mask="0"
v-model="target_amount"
:label="$t('firefly.target_amount')" outlined/>
:disable="disabledInput"
:error="hasSubmissionErrors.target_amount" :error-message="submissionErrors.target_amount" :label="$t('firefly.target_amount')" :mask="balance_input_mask" bottom-slots
clearable fill-mask="0"
hint="Expects #.##"
outlined reverse-fill-mask/>
</div>
</div>
</q-card-section>
@@ -86,11 +86,11 @@
</div>
<div class="row">
<div class="col-12 text-right">
<q-checkbox :disable="disabledInput" v-model="doReturnHere" left-label
label="Return here to create another one"/>
<q-checkbox v-model="doReturnHere" :disable="disabledInput" label="Return here to create another one"
left-label/>
<br/>
<q-checkbox v-model="doResetForm" left-label :disable="!doReturnHere || disabledInput"
label="Reset form after submission"/>
<q-checkbox v-model="doResetForm" :disable="!doReturnHere || disabledInput" label="Reset form after submission"
left-label/>
</div>
</div>
</q-card-section>

View File

@@ -22,10 +22,10 @@
<q-page>
<div class="row q-mx-md">
<div class="col-12">
<q-banner inline-actions rounded class="bg-orange text-white" v-if="'' !== errorMessage">
<q-banner v-if="'' !== errorMessage" class="bg-orange text-white" inline-actions rounded>
{{ errorMessage }}
<template v-slot:action>
<q-btn flat @click="dismissBanner" label="Dismiss"/>
<q-btn flat label="Dismiss" @click="dismissBanner"/>
</template>
</q-banner>
</div>
@@ -40,10 +40,10 @@
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.name"
:error="hasSubmissionErrors.name"
bottom-slots :disable="disabledInput" type="text" clearable v-model="name" :label="$t('form.name')"
outlined/>
v-model="name"
:disable="disabledInput"
:error="hasSubmissionErrors.name" :error-message="submissionErrors.name" :label="$t('form.name')" bottom-slots clearable outlined
type="text"/>
</div>
</div>
</q-card-section>
@@ -62,7 +62,7 @@
</div>
<div class="row">
<div class="col-12 text-right">
<q-checkbox :disable="disabledInput" v-model="doReturnHere" left-label label="Return here"/>
<q-checkbox v-model="doReturnHere" :disable="disabledInput" label="Return here" left-label/>
</div>
</div>
</q-card-section>
@@ -106,11 +106,11 @@ export default {
this.store = useFireflyIIIStore();
},
methods: {
collectPiggyBank: function() {
collectPiggyBank: function () {
let get = new Get;
get.get(this.id).then((response) => this.parsePiggyBank(response));
},
parsePiggyBank: function(response) {
parsePiggyBank: function (response) {
this.name = response.data.data.attributes.name;
},
resetErrors: function () {

View File

@@ -21,14 +21,14 @@
<template>
<q-page>
<q-table
:title="$t('firefly.piggy-banks')"
:rows="rows"
v-model:pagination="pagination"
:columns="columns"
:loading="loading"
:rows="rows"
:title="$t('firefly.piggy-banks')"
class="q-ma-md"
row-key="id"
@request="onRequest"
v-model:pagination="pagination"
:loading="loading"
class="q-ma-md"
>
<template v-slot:header="props">
<q-tr :props="props">
@@ -51,12 +51,12 @@
<q-td key="menu" :props="props">
<q-btn-dropdown color="primary" label="Actions" size="sm">
<q-list>
<q-item clickable v-close-popup :to="{name: 'piggy-banks.edit', params: {id: props.row.id}}">
<q-item v-close-popup :to="{name: 'piggy-banks.edit', params: {id: props.row.id}}" clickable>
<q-item-section>
<q-item-label>Edit</q-item-label>
</q-item-section>
</q-item>
<q-item clickable v-close-popup @click="deletePiggyBank(props.row.id, props.row.name)">
<q-item v-close-popup clickable @click="deletePiggyBank(props.row.id, props.row.name)">
<q-item-section>
<q-item-label>Delete</q-item-label>
</q-item-section>
@@ -67,17 +67,18 @@
</q-tr>
</template>
</q-table>
<q-page-sticky position="bottom-right" :offset="[18, 18]">
<q-page-sticky :offset="[18, 18]" position="bottom-right">
<q-fab
color="green"
direction="up"
icon="fas fa-chevron-up"
label="Actions"
label-position="left"
square
vertical-actions-align="right"
label-position="left"
color="green"
icon="fas fa-chevron-up"
direction="up"
>
<q-fab-action color="primary" square :to="{ name: 'piggy-banks.create'}" icon="fas fa-exchange-alt" label="New piggy bank"/>
<q-fab-action :to="{ name: 'piggy-banks.create'}" color="primary" icon="fas fa-exchange-alt" label="New piggy bank"
square/>
</q-fab>
</q-page-sticky>
</q-page>

View File

@@ -52,8 +52,8 @@ export default {
}
},
created() {
this.id = parseInt(this.$route.params.id);
this.getPiggyBank();
this.id = parseInt(this.$route.params.id);
this.getPiggyBank();
},
methods: {
onRequest: function (payload) {

View File

@@ -25,21 +25,21 @@
<q-card bordered>
<q-card-section>
<div class="text-h6">Language and locale
<span class="text-secondary" v-if="true === isOk.language"><span
<span v-if="true === isOk.language" class="text-secondary"><span
class="far fa-check-circle"></span></span>
<span class="text-blue" v-if="true === isLoading.language"><span
<span v-if="true === isLoading.language" class="text-blue"><span
class="fas fa-spinner fa-spin"></span></span>
<span class="text-red" v-if="true === isFailure.language"><span
<span v-if="true === isFailure.language" class="text-red"><span
class="fas fa-skull-crossbones"></span> <small>Please refresh the page...</small></span>
</div>
</q-card-section>
<q-card-section>
<q-select
bottom-slots
outlined
v-model="language" emit-value
map-options :options="languages" label="I prefer the following language"/>
v-model="language"
:options="languages"
bottom-slots emit-value
label="I prefer the following language" map-options outlined/>
</q-card-section>
</q-card>
</div>
@@ -48,22 +48,22 @@
<q-card-section>
<div class="text-h6">Accounts on the home screen
<span class="text-secondary" v-if="true === isOk.accounts"><span
<span v-if="true === isOk.accounts" class="text-secondary"><span
class="far fa-check-circle"></span></span>
<span class="text-blue" v-if="true === isLoading.accounts"><span
<span v-if="true === isLoading.accounts" class="text-blue"><span
class="fas fa-spinner fa-spin"></span></span>
<span class="text-red" v-if="true === isFailure.accounts"><span
<span v-if="true === isFailure.accounts" class="text-red"><span
class="fas fa-skull-crossbones"></span> <small>Please refresh the page...</small></span>
</div>
</q-card-section>
<q-card-section>
<q-select
v-model="accounts"
:options="allAccounts"
bottom-slots
outlined
multiple
use-chips
v-model="accounts" emit-value
map-options :options="allAccounts" label="I want to see these accounts on the dashboard"/>
emit-value
label="I want to see these accounts on the dashboard" map-options
multiple outlined use-chips/>
</q-card-section>
</q-card>
</div>
@@ -72,24 +72,24 @@
<q-card-section>
<div class="text-h6">View range and list size
<span class="text-secondary" v-if="true === isOk.pageSize"><span
<span v-if="true === isOk.pageSize" class="text-secondary"><span
class="far fa-check-circle"></span></span>
<span class="text-blue" v-if="true === isLoading.pageSize"><span
<span v-if="true === isLoading.pageSize" class="text-blue"><span
class="fas fa-spinner fa-spin"></span></span>
<span class="text-red" v-if="true === isFailure.pageSize"><span
<span v-if="true === isFailure.pageSize" class="text-red"><span
class="fas fa-skull-crossbones"></span> <small>Please refresh the page...</small></span>
</div>
</q-card-section>
<q-card-section>
<q-input outlined v-model="pageSize" type="number" step="1" label="Page size"/>
<q-input v-model="pageSize" label="Page size" outlined step="1" type="number"/>
</q-card-section>
<q-card-section>
<q-select
bottom-slots
outlined
v-model="viewRange"
:options="viewRanges"
bottom-slots
emit-value
map-options :options="viewRanges" label="Default period and view range"/>
label="Default period and view range" map-options outlined/>
</q-card-section>
</q-card>
</div>
@@ -98,41 +98,41 @@
<q-card-section>
<div class="text-h6">Optional transaction fields
<span class="text-secondary" v-if="true === isOk.transactionFields"><span
<span v-if="true === isOk.transactionFields" class="text-secondary"><span
class="far fa-check-circle"></span></span>
<span class="text-blue" v-if="true === isLoading.transactionFields"><span
<span v-if="true === isLoading.transactionFields" class="text-blue"><span
class="fas fa-spinner fa-spin"></span></span>
<span class="text-red" v-if="true === isFailure.transactionFields"><span
<span v-if="true === isFailure.transactionFields" class="text-red"><span
class="fas fa-skull-crossbones"></span> <small>Please refresh the page...</small></span>
</div>
</q-card-section>
<q-tabs
v-model="tab" dense
>
<q-tab name="date" label="Date fields"/>
<q-tab name="meta" label="Meta data fields"/>
<q-tab name="ref" label="Reference fields"/>
<q-tab label="Date fields" name="date"/>
<q-tab label="Meta data fields" name="meta"/>
<q-tab label="Reference fields" name="ref"/>
</q-tabs>
<q-tab-panels v-model="tab" animated swipeable>
<q-tab-panel name="date">
<q-option-group
v-model="transactionFields.date"
:options="allTransactionFields.date"
type="checkbox"
v-model="transactionFields.date"
/>
</q-tab-panel>
<q-tab-panel name="meta">
<q-option-group
v-model="transactionFields.meta"
:options="allTransactionFields.meta"
type="checkbox"
v-model="transactionFields.meta"
/>
</q-tab-panel>
<q-tab-panel name="ref">
<q-option-group
v-model="transactionFields.ref"
:options="allTransactionFields.ref"
type="checkbox"
v-model="transactionFields.ref"
/>
</q-tab-panel>
</q-tab-panels>
@@ -317,13 +317,13 @@ export default {
}
});
},
submitTransactionFields: function() {
submitTransactionFields: function () {
let submission = {};
for(let i in this.transactionFields) {
if(this.transactionFields.hasOwnProperty(i)) {
for (let i in this.transactionFields) {
if (this.transactionFields.hasOwnProperty(i)) {
let set = this.transactionFields[i];
for(let ii in set) {
if(set.hasOwnProperty(ii)) {
for (let ii in set) {
if (set.hasOwnProperty(ii)) {
let value = set[ii];
submission[value] = true;
}

View File

@@ -29,13 +29,14 @@
<div class="text-h6">Email address</div>
</q-card-section>
<q-card-section>
<q-input outlined type="email" required v-model="emailAddress" label="Email address">
<q-input v-model="emailAddress" label="Email address" outlined required type="email">
<template v-slot:prepend>
<q-icon name="fas fa-envelope"/>
</template>
</q-input>
<p class="text-primary">
If you change your email address you will be logged out. You must confirm your address change before you can login again.
If you change your email address you will be logged out. You must confirm your address change before you
can login again.
</p>
</q-card-section>
<q-card-actions v-if="emailTouched">
@@ -95,16 +96,16 @@
-->
</div>
<q-page-sticky position="bottom-right" :offset="[18, 18]">
<q-page-sticky :offset="[18, 18]" position="bottom-right">
<q-fab
label="Actions"
square
vertical-actions-align="right"
label-position="left"
color="green"
direction="up"
icon="fas fa-chevron-up"
direction="up">
<q-fab-action color="primary" square :to="{ name: 'profile.data' }" icon="fas fa-database" label="Manage data"/>
label="Actions"
label-position="left"
square
vertical-actions-align="right">
<q-fab-action :to="{ name: 'profile.data' }" color="primary" icon="fas fa-database" label="Manage data" square/>
</q-fab>
</q-page-sticky>
</q-page>
@@ -145,11 +146,11 @@ export default {
},
confirmAddressChange: function () {
this.$q.dialog({
title: 'Confirm',
message: 'Are you sure?',
cancel: true,
persistent: false
}).onOk(() => {
title: 'Confirm',
message: 'Are you sure?',
cancel: true,
persistent: false
}).onOk(() => {
this.submitAddressChange();
}).onCancel(() => {
// console.log('>>>> Cancel')
@@ -159,9 +160,9 @@ export default {
},
submitAddressChange: function () {
(new AboutUser).put(this.id, {email: this.emailAddress})
.then((response) => {
(new AboutUser).logout();
});
.then((response) => {
(new AboutUser).logout();
});
}
},
}

View File

@@ -22,10 +22,10 @@
<q-page>
<div class="row q-mx-md">
<div class="col-12">
<q-banner inline-actions rounded class="bg-orange text-white" v-if="'' !== errorMessage">
<q-banner v-if="'' !== errorMessage" class="bg-orange text-white" inline-actions rounded>
{{ errorMessage }}
<template v-slot:action>
<q-btn flat @click="dismissBanner" label="Dismiss"/>
<q-btn flat label="Dismiss" @click="dismissBanner"/>
</template>
</q-banner>
</div>
@@ -40,23 +40,23 @@
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.title"
:error="hasSubmissionErrors.title"
bottom-slots :disable="disabledInput" type="text" clearable v-model="title" :label="$t('form.title')"
outlined/>
v-model="title"
:disable="disabledInput"
:error="hasSubmissionErrors.title" :error-message="submissionErrors.title" :label="$t('form.title')" bottom-slots clearable outlined
type="text"/>
</div>
</div>
<div class="row">
<div class="col-12 q-mb-xs">
<q-select
:error-message="submissionErrors.type"
:error="hasSubmissionErrors.type"
bottom-slots
:disable="disabledInput"
outlined
v-model="type"
emit-value class="q-pr-xs"
map-options :options="types" label="Transaction type"/>
:disable="disabledInput"
:error="hasSubmissionErrors.type"
:error-message="submissionErrors.type"
:options="types"
bottom-slots
class="q-pr-xs" emit-value
label="Transaction type" map-options outlined/>
</div>
</div>
</q-card-section>
@@ -71,35 +71,35 @@
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.first_date"
v-model="first_date"
:disable="disabledInput"
:error="hasSubmissionErrors.first_date"
clearable
bottom-slots :disable="disabledInput" type="date" v-model="first_date" :label="$t('form.first_date')"
hint="The first date you want the recurrence"
outlined/>
:error-message="submissionErrors.first_date" :label="$t('form.first_date')" bottom-slots clearable hint="The first date you want the recurrence"
outlined
type="date"/>
</div>
</div>
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.nr_of_repetitions"
v-model="nr_of_repetitions"
:disable="disabledInput"
:error="hasSubmissionErrors.nr_of_repetitions"
clearable
bottom-slots :disable="disabledInput" type="number" step="1" v-model="nr_of_repetitions"
:label="$t('form.repetitions')"
hint="nr_of_repetitions"
outlined/>
:error-message="submissionErrors.nr_of_repetitions" :label="$t('form.repetitions')" bottom-slots clearable hint="nr_of_repetitions"
outlined
step="1"
type="number"/>
</div>
</div>
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.repeat_until"
:error="hasSubmissionErrors.repeat_until"
bottom-slots :disable="disabledInput" type="date" v-model="repeat_until"
v-model="repeat_until"
:disable="disabledInput"
:error="hasSubmissionErrors.repeat_until" :error-message="submissionErrors.repeat_until" bottom-slots clearable
hint="repeat_until"
clearable
outlined/>
outlined
type="date"/>
</div>
</div>
</q-card-section>
@@ -116,40 +116,40 @@
<q-card-section>
<q-input
:error-message="submissionErrors.transactions[index].description"
:error="hasSubmissionErrors.transactions[index].description"
bottom-slots :disable="disabledInput" type="text" clearable v-model="transactions[index].description"
:label="$t('form.description')"
outlined/>
v-model="transactions[index].description"
:disable="disabledInput"
:error="hasSubmissionErrors.transactions[index].description" :error-message="submissionErrors.transactions[index].description" :label="$t('form.description')" bottom-slots clearable
outlined
type="text"/>
<q-input
:error-message="submissionErrors.transactions[index].amount"
:error="hasSubmissionErrors.transactions[index].amount"
bottom-slots :disable="disabledInput" clearable :mask="balance_input_mask" reverse-fill-mask
hint="Expects #.##" fill-mask="0"
v-model="transactions[index].amount"
:label="$t('firefly.amount')" outlined/>
<q-select
:error-message="submissionErrors.transactions[index].source_id"
:error="hasSubmissionErrors.transactions[index].source_id"
v-model="transactions[index].source_id"
bottom-slots
:disable="loading"
outlined
emit-value class="q-pr-xs"
map-options :options="accounts" label="Source account"/>
<q-select
:error-message="submissionErrors.transactions[index].destination_id"
:error="hasSubmissionErrors.transactions[index].destination_id"
v-model="transactions[index].destination_id"
bottom-slots
:disable="disabledInput"
outlined
emit-value class="q-pr-xs"
map-options :options="accounts" label="Destination account"/>
:error="hasSubmissionErrors.transactions[index].amount" :error-message="submissionErrors.transactions[index].amount" :label="$t('firefly.amount')" :mask="balance_input_mask" bottom-slots
clearable fill-mask="0"
hint="Expects #.##"
outlined reverse-fill-mask/>
<q-select
v-model="transactions[index].source_id"
:disable="loading"
:error="hasSubmissionErrors.transactions[index].source_id"
:error-message="submissionErrors.transactions[index].source_id"
:options="accounts"
bottom-slots
class="q-pr-xs" emit-value
label="Source account" map-options outlined/>
<q-select
v-model="transactions[index].destination_id"
:disable="disabledInput"
:error="hasSubmissionErrors.transactions[index].destination_id"
:error-message="submissionErrors.transactions[index].destination_id"
:options="accounts"
bottom-slots
class="q-pr-xs" emit-value
label="Destination account" map-options outlined/>
</q-card-section>
</q-card>
</div>
@@ -160,33 +160,33 @@
</q-card-section>
<q-card-section>
<q-select
:error-message="submissionErrors.repetitions[index].type"
v-model="repetitions[index].type"
:error="hasSubmissionErrors.repetitions[index].type"
:error-message="submissionErrors.repetitions[index].type"
:options="repetition_types"
bottom-slots
emit-value
outlined
v-model="repetitions[index].type"
map-options :options="repetition_types" label="Type of repetition"/>
label="Type of repetition" map-options outlined/>
<q-input
:error-message="submissionErrors.repetitions[index].skip"
:error="hasSubmissionErrors.repetitions[index].skip"
bottom-slots :disable="disabledInput" clearable
v-model="repetitions[index].skip"
type="number"
min="0" max="31"
:label="$t('firefly.skip')" outlined
:disable="disabledInput"
:error="hasSubmissionErrors.repetitions[index].skip" :error-message="submissionErrors.repetitions[index].skip" :label="$t('firefly.skip')"
bottom-slots
clearable
max="31" min="0"
outlined type="number"
/>
<q-select
:error-message="submissionErrors.repetitions[index].weekend"
:error="hasSubmissionErrors.repetitions[index].weekend"
v-model="repetitions[index].weekend"
bottom-slots
:disable="disabledInput"
outlined
emit-value class="q-pr-xs"
map-options :options="weekends" label="Weekend?"/>
:error="hasSubmissionErrors.repetitions[index].weekend"
:error-message="submissionErrors.repetitions[index].weekend"
:options="weekends"
bottom-slots
class="q-pr-xs" emit-value
label="Weekend?" map-options outlined/>
</q-card-section>
@@ -206,11 +206,11 @@
</div>
<div class="row">
<div class="col-12 text-right">
<q-checkbox :disable="disabledInput" v-model="doReturnHere" left-label
label="Return here to create another one"/>
<q-checkbox v-model="doReturnHere" :disable="disabledInput" label="Return here to create another one"
left-label/>
<br/>
<q-checkbox v-model="doResetForm" left-label :disable="!doReturnHere || disabledInput"
label="Reset form after submission"/>
<q-checkbox v-model="doResetForm" :disable="!doReturnHere || disabledInput" label="Reset form after submission"
left-label/>
</div>
</div>
</q-card-section>

View File

@@ -22,10 +22,10 @@
<q-page>
<div class="row q-mx-md">
<div class="col-12">
<q-banner inline-actions rounded class="bg-orange text-white" v-if="'' !== errorMessage">
<q-banner v-if="'' !== errorMessage" class="bg-orange text-white" inline-actions rounded>
{{ errorMessage }}
<template v-slot:action>
<q-btn flat @click="dismissBanner" label="Dismiss"/>
<q-btn flat label="Dismiss" @click="dismissBanner"/>
</template>
</q-banner>
</div>
@@ -40,23 +40,23 @@
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.title"
:error="hasSubmissionErrors.title"
bottom-slots :disable="disabledInput" type="text" clearable v-model="title" :label="$t('form.title')"
outlined/>
v-model="title"
:disable="disabledInput"
:error="hasSubmissionErrors.title" :error-message="submissionErrors.title" :label="$t('form.title')" bottom-slots clearable outlined
type="text"/>
</div>
</div>
<div class="row">
<div class="col-12 q-mb-xs">
<q-select
:error-message="submissionErrors.type"
:error="hasSubmissionErrors.type"
bottom-slots
:disable="disabledInput"
outlined
v-model="type"
emit-value class="q-pr-xs"
map-options :options="types" label="Transaction type"/>
:disable="disabledInput"
:error="hasSubmissionErrors.type"
:error-message="submissionErrors.type"
:options="types"
bottom-slots
class="q-pr-xs" emit-value
label="Transaction type" map-options outlined/>
</div>
</div>
</q-card-section>
@@ -71,35 +71,35 @@
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.first_date"
v-model="first_date"
:disable="disabledInput"
:error="hasSubmissionErrors.first_date"
clearable
bottom-slots :disable="disabledInput" type="date" v-model="first_date" :label="$t('form.first_date')"
hint="The first date you want the recurrence"
outlined/>
:error-message="submissionErrors.first_date" :label="$t('form.first_date')" bottom-slots clearable hint="The first date you want the recurrence"
outlined
type="date"/>
</div>
</div>
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.nr_of_repetitions"
v-model="nr_of_repetitions"
:disable="disabledInput"
:error="hasSubmissionErrors.nr_of_repetitions"
clearable
bottom-slots :disable="disabledInput" type="number" step="1" v-model="nr_of_repetitions"
:label="$t('form.repetitions')"
hint="nr_of_repetitions"
outlined/>
:error-message="submissionErrors.nr_of_repetitions" :label="$t('form.repetitions')" bottom-slots clearable hint="nr_of_repetitions"
outlined
step="1"
type="number"/>
</div>
</div>
<div class="row">
<div class="col-12 q-mb-xs">
<q-input
:error-message="submissionErrors.repeat_until"
:error="hasSubmissionErrors.repeat_until"
bottom-slots :disable="disabledInput" type="date" v-model="repeat_until"
v-model="repeat_until"
:disable="disabledInput"
:error="hasSubmissionErrors.repeat_until" :error-message="submissionErrors.repeat_until" bottom-slots clearable
hint="repeat_until"
clearable
outlined/>
outlined
type="date"/>
</div>
</div>
</q-card-section>
@@ -116,40 +116,40 @@
<q-card-section>
<q-input
:error-message="submissionErrors.transactions[index].description"
:error="hasSubmissionErrors.transactions[index].description"
bottom-slots :disable="disabledInput" type="text" clearable v-model="transactions[index].description"
:label="$t('form.description')"
outlined/>
v-model="transactions[index].description"
:disable="disabledInput"
:error="hasSubmissionErrors.transactions[index].description" :error-message="submissionErrors.transactions[index].description" :label="$t('form.description')" bottom-slots clearable
outlined
type="text"/>
<q-input
:error-message="submissionErrors.transactions[index].amount"
:error="hasSubmissionErrors.transactions[index].amount"
bottom-slots :disable="disabledInput" clearable :mask="balance_input_mask" reverse-fill-mask
hint="Expects #.##" fill-mask="0"
v-model="transactions[index].amount"
:label="$t('firefly.amount')" outlined/>
:disable="disabledInput"
:error="hasSubmissionErrors.transactions[index].amount" :error-message="submissionErrors.transactions[index].amount" :label="$t('firefly.amount')" :mask="balance_input_mask" bottom-slots
clearable fill-mask="0"
hint="Expects #.##"
outlined reverse-fill-mask/>
<q-select
:error-message="submissionErrors.transactions[index].source_id"
:error="hasSubmissionErrors.transactions[index].source_id"
v-model="transactions[index].source_id"
bottom-slots
:disable="disabledInput"
outlined
emit-value class="q-pr-xs"
map-options :options="accounts" label="Source account"/>
:error="hasSubmissionErrors.transactions[index].source_id"
:error-message="submissionErrors.transactions[index].source_id"
:options="accounts"
bottom-slots
class="q-pr-xs" emit-value
label="Source account" map-options outlined/>
<q-select
:error-message="submissionErrors.transactions[index].destination_id"
:error="hasSubmissionErrors.transactions[index].destination_id"
v-model="transactions[index].destination_id"
bottom-slots
:disable="disabledInput"
outlined
emit-value class="q-pr-xs"
map-options :options="accounts" label="Destination account"/>
:error="hasSubmissionErrors.transactions[index].destination_id"
:error-message="submissionErrors.transactions[index].destination_id"
:options="accounts"
bottom-slots
class="q-pr-xs" emit-value
label="Destination account" map-options outlined/>
</q-card-section>
</q-card>
</div>
@@ -160,34 +160,34 @@
</q-card-section>
<q-card-section>
<q-select
:error-message="submissionErrors.repetitions[index].type"
v-model="repetitions[index].type"
:disable="disabledInput"
:error="hasSubmissionErrors.repetitions[index].type"
:error-message="submissionErrors.repetitions[index].type"
:options="repetition_types"
bottom-slots
emit-value
:disable="disabledInput"
outlined
v-model="repetitions[index].type"
map-options :options="repetition_types" label="Type of repetition"/>
label="Type of repetition" map-options outlined/>
<q-input
:error-message="submissionErrors.repetitions[index].skip"
:error="hasSubmissionErrors.repetitions[index].skip"
bottom-slots :disable="disabledInput" clearable
v-model="repetitions[index].skip"
type="number"
min="0" max="31"
:label="$t('form.skip')" outlined
:disable="disabledInput"
:error="hasSubmissionErrors.repetitions[index].skip" :error-message="submissionErrors.repetitions[index].skip" :label="$t('form.skip')"
bottom-slots
clearable
max="31" min="0"
outlined type="number"
/>
<q-select
:error-message="submissionErrors.repetitions[index].weekend"
:error="hasSubmissionErrors.repetitions[index].weekend"
v-model="repetitions[index].weekend"
bottom-slots
:disable="disabledInput"
outlined
emit-value class="q-pr-xs"
map-options :options="weekends" label="Weekend?"/>
:error="hasSubmissionErrors.repetitions[index].weekend"
:error-message="submissionErrors.repetitions[index].weekend"
:options="weekends"
bottom-slots
class="q-pr-xs" emit-value
label="Weekend?" map-options outlined/>
</q-card-section>
@@ -207,11 +207,11 @@
</div>
<div class="row">
<div class="col-12 text-right">
<q-checkbox :disable="disabledInput" v-model="doReturnHere" left-label
label="Return here to create another one"/>
<q-checkbox v-model="doReturnHere" :disable="disabledInput" label="Return here to create another one"
left-label/>
<br/>
<q-checkbox v-model="doResetForm" left-label :disable="!doReturnHere || disabledInput"
label="Reset form after submission"/>
<q-checkbox v-model="doResetForm" :disable="!doReturnHere || disabledInput" label="Reset form after submission"
left-label/>
</div>
</div>
</q-card-section>

Some files were not shown because too many files have changed in this diff Show More