mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Rebuil frontend.
This commit is contained in:
parent
b0ac0ea0cf
commit
b9e7d99a87
@ -19,83 +19,91 @@
|
|||||||
-->
|
-->
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<table class="table table-striped table-sm">
|
<table class="table table-striped table-sm">
|
||||||
<caption style="display:none;">{{ $t('firefly.transaction_table_description') }}</caption>
|
<caption style="display:none;">{{ $t('firefly.transaction_table_description') }}</caption>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col" class="text-left">{{ $t('firefly.description') }}</th>
|
<th scope="col" class="text-left">{{ $t('firefly.description') }}</th>
|
||||||
<th scope="col">{{ $t('firefly.opposing_account') }}</th>
|
<th scope="col">{{ $t('firefly.opposing_account') }}</th>
|
||||||
<th scope="col" class="text-right">{{ $t('firefly.amount') }}</th>
|
<th scope="col" class="text-right">{{ $t('firefly.amount') }}</th>
|
||||||
<th scope="col">{{ $t('firefly.category') }}</th>
|
<th scope="col">{{ $t('firefly.category') }}</th>
|
||||||
<th scope="col">{{ $t('firefly.budget') }}</th>
|
<th scope="col">{{ $t('firefly.budget') }}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="transaction in this.transactions">
|
<tr v-for="transaction in this.transactions">
|
||||||
<td>
|
<td>
|
||||||
<a :href="'transactions/show/' + transaction.id " :title="transaction.date">
|
<a :href="'transactions/show/' + transaction.id " :title="transaction.date">
|
||||||
<span v-if="transaction.attributes.transactions.length > 1">{{ transaction.attributes.group_title }}</span>
|
<span v-if="transaction.attributes.transactions.length > 1">{{ transaction.attributes.group_title }}</span>
|
||||||
<span v-if="1===transaction.attributes.transactions.length">{{ transaction.attributes.transactions[0].description }}</span>
|
<span v-if="1===transaction.attributes.transactions.length">{{ transaction.attributes.transactions[0].description }}</span>
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<span v-for="tr in transaction.attributes.transactions">
|
<span v-for="tr in transaction.attributes.transactions">
|
||||||
<a :href="'accounts/show/' + tr.destination_id" v-if="'withdrawal' === tr.type">{{ tr.destination_name }}</a>
|
<a :href="'accounts/show/' + tr.destination_id" v-if="'withdrawal' === tr.type">{{ tr.destination_name }}</a>
|
||||||
<a :href="'accounts/show/' + tr.source_id" v-if="'deposit' === tr.type">{{ tr.source_name }}</a>
|
<a :href="'accounts/show/' + tr.source_id" v-if="'deposit' === tr.type">{{ tr.source_name }}</a>
|
||||||
<a :href="'accounts/show/' + tr.destination_id" v-if="'transfer' === tr.type && tr.source_id === account_id">{{ tr.destination_name }}</a>
|
<a :href="'accounts/show/' + tr.destination_id" v-if="'transfer' === tr.type && tr.source_id === account_id">{{ tr.destination_name }}</a>
|
||||||
<a :href="'accounts/show/' + tr.source_id" v-if="'transfer' === tr.type && tr.destination_id === account_id">{{ tr.source_name }}</a>
|
<a :href="'accounts/show/' + tr.source_id" v-if="'transfer' === tr.type && tr.destination_id === account_id">{{ tr.source_name }}</a>
|
||||||
<br />
|
<br/>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td style="text-align:right;">
|
<td style="text-align:right;">
|
||||||
<span v-for="tr in transaction.attributes.transactions">
|
<span v-for="tr in transaction.attributes.transactions">
|
||||||
<span v-if="'withdrawal' === tr.type" class="text-danger">
|
<span v-if="'withdrawal' === tr.type" class="text-danger">
|
||||||
{{ Intl.NumberFormat('en-US', {style: 'currency', currency: tr.currency_code}).format(tr.amount * -1)}}<br>
|
{{ Intl.NumberFormat(locale, {style: 'currency', currency: tr.currency_code}).format(tr.amount * -1) }}<br>
|
||||||
</span>
|
</span>
|
||||||
<span v-if="'deposit' === tr.type" class="text-success">
|
<span v-if="'deposit' === tr.type" class="text-success">
|
||||||
{{ Intl.NumberFormat('en-US', {style: 'currency', currency: tr.currency_code}).format(tr.amount)}}<br>
|
{{ Intl.NumberFormat(locale, {style: 'currency', currency: tr.currency_code}).format(tr.amount) }}<br>
|
||||||
</span>
|
</span>
|
||||||
<span v-if="'transfer' === tr.type && tr.source_id === account_id" class="text-info">
|
<span v-if="'transfer' === tr.type && tr.source_id === account_id" class="text-info">
|
||||||
{{ Intl.NumberFormat('en-US', {style: 'currency', currency: tr.currency_code}).format(tr.amount * -1)}}<br>
|
{{ Intl.NumberFormat(locale, {style: 'currency', currency: tr.currency_code}).format(tr.amount * -1) }}<br>
|
||||||
</span>
|
</span>
|
||||||
<span v-if="'transfer' === tr.type && tr.destination_id === account_id" class="text-info">
|
<span v-if="'transfer' === tr.type && tr.destination_id === account_id" class="text-info">
|
||||||
{{ Intl.NumberFormat('en-US', {style: 'currency', currency: tr.currency_code}).format(tr.amount)}}<br>
|
{{ Intl.NumberFormat(locale, {style: 'currency', currency: tr.currency_code}).format(tr.amount) }}<br>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<span v-for="tr in transaction.attributes.transactions">
|
<span v-for="tr in transaction.attributes.transactions">
|
||||||
<a :href="'categories/show/' + tr.category_id" v-if="0!==tr.category_id">{{ tr.category_name }}</a><br />
|
<a :href="'categories/show/' + tr.category_id" v-if="0!==tr.category_id">{{ tr.category_name }}</a><br/>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<span v-for="tr in transaction.attributes.transactions">
|
<span v-for="tr in transaction.attributes.transactions">
|
||||||
<a :href="'budgets/show/' + tr.budget_id" v-if="0!==tr.budget_id">{{ tr.budget_name }}</a><br />
|
<a :href="'budgets/show/' + tr.budget_id" v-if="0!==tr.budget_id">{{ tr.budget_name }}</a><br/>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: "TransactionListLarge",
|
name: "TransactionListLarge",
|
||||||
props: {
|
data() {
|
||||||
transactions: {
|
return {
|
||||||
type: Array,
|
locale: 'en-US'
|
||||||
default: function () {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
},
|
|
||||||
account_id: {
|
|
||||||
type: Number,
|
|
||||||
default: function () {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.locale = localStorage.locale ?? 'en-US';
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
transactions: {
|
||||||
|
type: Array,
|
||||||
|
default: function () {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
},
|
||||||
|
account_id: {
|
||||||
|
type: Number,
|
||||||
|
default: function () {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
@ -19,71 +19,79 @@
|
|||||||
-->
|
-->
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<table class="table table-striped table-sm">
|
<table class="table table-striped table-sm">
|
||||||
<caption style="display:none;">{{ $t('firefly.transaction_table_description') }}</caption>
|
<caption style="display:none;">{{ $t('firefly.transaction_table_description') }}</caption>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col" class="text-left">{{ $t('firefly.description') }}</th>
|
<th scope="col" class="text-left">{{ $t('firefly.description') }}</th>
|
||||||
<th scope="col">{{ $t('firefly.opposing_account') }}</th>
|
<th scope="col">{{ $t('firefly.opposing_account') }}</th>
|
||||||
<th scope="col" class="text-right">{{ $t('firefly.amount') }}</th>
|
<th scope="col" class="text-right">{{ $t('firefly.amount') }}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="transaction in this.transactions">
|
<tr v-for="transaction in this.transactions">
|
||||||
<td>
|
<td>
|
||||||
<a :href="'transactions/show/' + transaction.id " :title="transaction.date">
|
<a :href="'transactions/show/' + transaction.id " :title="transaction.date">
|
||||||
<span v-if="transaction.attributes.transactions.length > 1">{{ transaction.attributes.group_title }}</span>
|
<span v-if="transaction.attributes.transactions.length > 1">{{ transaction.attributes.group_title }}</span>
|
||||||
<span v-if="1===transaction.attributes.transactions.length">{{ transaction.attributes.transactions[0].description }}</span>
|
<span v-if="1===transaction.attributes.transactions.length">{{ transaction.attributes.transactions[0].description }}</span>
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<span v-for="tr in transaction.attributes.transactions">
|
<span v-for="tr in transaction.attributes.transactions">
|
||||||
<a :href="'accounts/show/' + tr.destination_id" v-if="'withdrawal' === tr.type">{{ tr.destination_name }}</a>
|
<a :href="'accounts/show/' + tr.destination_id" v-if="'withdrawal' === tr.type">{{ tr.destination_name }}</a>
|
||||||
<a :href="'accounts/show/' + tr.source_id" v-if="'deposit' === tr.type">{{ tr.source_name }}</a>
|
<a :href="'accounts/show/' + tr.source_id" v-if="'deposit' === tr.type">{{ tr.source_name }}</a>
|
||||||
<a :href="'accounts/show/' + tr.destination_id" v-if="'transfer' === tr.type && tr.source_id === account_id">{{ tr.destination_name }}</a>
|
<a :href="'accounts/show/' + tr.destination_id" v-if="'transfer' === tr.type && tr.source_id === account_id">{{ tr.destination_name }}</a>
|
||||||
<a :href="'accounts/show/' + tr.source_id" v-if="'transfer' === tr.type && tr.destination_id === account_id">{{ tr.source_name }}</a>
|
<a :href="'accounts/show/' + tr.source_id" v-if="'transfer' === tr.type && tr.destination_id === account_id">{{ tr.source_name }}</a>
|
||||||
<br />
|
<br/>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td style="text-align:right;">
|
<td style="text-align:right;">
|
||||||
<span v-for="tr in transaction.attributes.transactions">
|
<span v-for="tr in transaction.attributes.transactions">
|
||||||
<span v-if="'withdrawal' === tr.type" class="text-danger">
|
<span v-if="'withdrawal' === tr.type" class="text-danger">
|
||||||
{{ Intl.NumberFormat('en-US', {style: 'currency', currency: tr.currency_code}).format(tr.amount * -1)}}<br>
|
{{ Intl.NumberFormat(locale, {style: 'currency', currency: tr.currency_code}).format(tr.amount * -1) }}<br>
|
||||||
</span>
|
</span>
|
||||||
<span v-if="'deposit' === tr.type" class="text-success">
|
<span v-if="'deposit' === tr.type" class="text-success">
|
||||||
{{ Intl.NumberFormat('en-US', {style: 'currency', currency: tr.currency_code}).format(tr.amount)}}<br>
|
{{ Intl.NumberFormat(locale, {style: 'currency', currency: tr.currency_code}).format(tr.amount) }}<br>
|
||||||
</span>
|
</span>
|
||||||
<span v-if="'transfer' === tr.type && tr.source_id === account_id" class="text-info">
|
<span v-if="'transfer' === tr.type && tr.source_id === account_id" class="text-info">
|
||||||
{{ Intl.NumberFormat('en-US', {style: 'currency', currency: tr.currency_code}).format(tr.amount * -1)}}<br>
|
{{ Intl.NumberFormat(locale, {style: 'currency', currency: tr.currency_code}).format(tr.amount * -1) }}<br>
|
||||||
</span>
|
</span>
|
||||||
<span v-if="'transfer' === tr.type && tr.destination_id === account_id" class="text-info">
|
<span v-if="'transfer' === tr.type && tr.destination_id === account_id" class="text-info">
|
||||||
{{ Intl.NumberFormat('en-US', {style: 'currency', currency: tr.currency_code}).format(tr.amount)}}<br>
|
{{ Intl.NumberFormat(locale, {style: 'currency', currency: tr.currency_code}).format(tr.amount) }}<br>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: "TransactionListMedium",
|
name: "TransactionListMedium",
|
||||||
props: {
|
data() {
|
||||||
transactions: {
|
return {
|
||||||
type: Array,
|
locale: 'en-US'
|
||||||
default: function () {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
},
|
|
||||||
account_id: {
|
|
||||||
type: Number,
|
|
||||||
default: function () {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.locale = localStorage.locale ?? 'en-US';
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
transactions: {
|
||||||
|
type: Array,
|
||||||
|
default: function () {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
},
|
||||||
|
account_id: {
|
||||||
|
type: Number,
|
||||||
|
default: function () {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
@ -1723,9 +1723,9 @@ caniuse-api@^3.0.0:
|
|||||||
lodash.uniq "^4.5.0"
|
lodash.uniq "^4.5.0"
|
||||||
|
|
||||||
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001181:
|
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001181:
|
||||||
version "1.0.30001183"
|
version "1.0.30001185"
|
||||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001183.tgz#7a57ba9d6584119bb5f2bc76d3cc47ba9356b3e2"
|
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001185.tgz#3482a407d261da04393e2f0d61eefbc53be43b95"
|
||||||
integrity sha512-7JkwTEE1hlRKETbCFd8HDZeLiQIUcl8rC6JgNjvHCNaxOeNmQ9V4LvQXRUsKIV2CC73qKxljwVhToaA3kLRqTw==
|
integrity sha512-Fpi4kVNtNvJ15H0F6vwmXtb3tukv3Zg3qhKkOGUq7KJ1J6b9kf4dnNgtEAFXhRsJo0gNj9W60+wBvn0JcTvdTg==
|
||||||
|
|
||||||
chalk@^1.1.3:
|
chalk@^1.1.3:
|
||||||
version "1.1.3"
|
version "1.1.3"
|
||||||
|
2
public/v2/js/dashboard.js
vendored
2
public/v2/js/dashboard.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
public/v2/js/vendor.js
vendored
2
public/v2/js/vendor.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Някои страници в Firefly III имат разширени опции, скрити зад този бутон. Тази страница няма нищо интересно тук, но проверете останалите!',
|
'advanced_options_explain' => 'Някои страници в Firefly III имат разширени опции, скрити зад този бутон. Тази страница няма нищо интересно тук, но проверете останалите!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v:version заявка за потвърждение',
|
'authorization_request' => 'Firefly III v:version заявка за потвърждение',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> иска разрешение за достъп до вашето финансово управление. Искате ли да упълномощите <strong>:client</strong> за достъп до тези записи?',
|
'authorization_request_intro' => '<strong>:client</strong> иска разрешение за достъп до вашето финансово управление. Искате ли да упълномощите <strong>:client</strong> за достъп до тези записи?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'неактивно правило',
|
'list_inactive_rule' => 'неактивно правило',
|
||||||
'bill_edit_rules' => 'Firefly III ще се опита да редактира и правилото, свързано с тази сметка. Ако сами сте редактирали това правило, Firefly III няма да промени нищо.|Firefly III също ще се опита да редактира и :count правила, свързани с тази сметка. Ако сами сте редактирали тези правила, Firefly III няма да промени нищо.',
|
'bill_edit_rules' => 'Firefly III ще се опита да редактира и правилото, свързано с тази сметка. Ако сами сте редактирали това правило, Firefly III няма да промени нищо.|Firefly III също ще се опита да редактира и :count правила, свързани с тази сметка. Ако сами сте редактирали тези правила, Firefly III няма да промени нищо.',
|
||||||
'bill_expected_date' => 'Очаквано :date',
|
'bill_expected_date' => 'Очаквано :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'Имате :count неактивна (архивирана) сметка, която можете да видите на тази отделна страница.|Имате :count неактивни (архивирани) сметки, които можете да видите на тази отделна страница.',
|
'inactive_account_link' => 'Имате :count неактивна (архивирана) сметка, която можете да видите на тази отделна страница.|Имате :count неактивни (архивирани) сметки, които можете да видите на тази отделна страница.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Požadavek na ověření – Firefly III verze :version',
|
'authorization_request' => 'Požadavek na ověření – Firefly III verze :version',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> žádá oprávnění pro přístup k vaší finanční správě. Chcete autorizovat <strong>:client</strong> pro přístup k těmto záznamům?',
|
'authorization_request_intro' => '<strong>:client</strong> žádá oprávnění pro přístup k vaší finanční správě. Chcete autorizovat <strong>:client</strong> pro přístup k těmto záznamům?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'neaktivní pravidlo',
|
'list_inactive_rule' => 'neaktivní pravidlo',
|
||||||
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
||||||
'bill_expected_date' => 'Expected :date',
|
'bill_expected_date' => 'Expected :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Auf einigen Seiten in Firefly III sind hinter dieser Schaltfläche erweiterte Optionen zu finden. Diese Seite enthält hier nichts Außergewöhnliches, aber schauen Sie sich die anderen an!',
|
'advanced_options_explain' => 'Auf einigen Seiten in Firefly III sind hinter dieser Schaltfläche erweiterte Optionen zu finden. Diese Seite enthält hier nichts Außergewöhnliches, aber schauen Sie sich die anderen an!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v:version Autorisierungsanfrage',
|
'authorization_request' => 'Firefly III v:version Autorisierungsanfrage',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> bittet um Erlaubnis, auf Ihre Finanzverwaltung zuzugreifen. Möchten Sie <strong>:client</strong> erlauben auf diese Datensätze zuzugreifen?',
|
'authorization_request_intro' => '<strong>:client</strong> bittet um Erlaubnis, auf Ihre Finanzverwaltung zuzugreifen. Möchten Sie <strong>:client</strong> erlauben auf diese Datensätze zuzugreifen?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'Inaktive Regeln',
|
'list_inactive_rule' => 'Inaktive Regeln',
|
||||||
'bill_edit_rules' => 'Firefly III wird versuchen, auch die mit dieser Rechnung zusammenhängende Regel zu ändern. Wenn Sie diese Regel jedoch selbst bearbeitet haben, wird Firefly III nichts ändern.|Firefly III wird versuchen, die :count mit dieser Rechnung zusammenhängenden Regeln ebenfalls zu bearbeiten. Wenn Sie diese Regeln jedoch selbst bearbeitet haben, wird Firefly III nichts ändern.',
|
'bill_edit_rules' => 'Firefly III wird versuchen, auch die mit dieser Rechnung zusammenhängende Regel zu ändern. Wenn Sie diese Regel jedoch selbst bearbeitet haben, wird Firefly III nichts ändern.|Firefly III wird versuchen, die :count mit dieser Rechnung zusammenhängenden Regeln ebenfalls zu bearbeiten. Wenn Sie diese Regeln jedoch selbst bearbeitet haben, wird Firefly III nichts ändern.',
|
||||||
'bill_expected_date' => 'Voraussichtlich :date',
|
'bill_expected_date' => 'Voraussichtlich :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'Sie haben :count inaktives (archiviertes) Konto, das Sie auf dieser separaten Seite sehen können.|Sie haben :count inaktive (archivierte) Konten, die Sie auf dieser separaten Seite anzeigen können.',
|
'inactive_account_link' => 'Sie haben :count inaktives (archiviertes) Konto, das Sie auf dieser separaten Seite sehen können.|Sie haben :count inaktive (archivierte) Konten, die Sie auf dieser separaten Seite anzeigen können.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Μερικές σελίδες στο Firefly III έχουν κρυμμένες επιλογές για προχωρημένους πίσω από αυτό το κουμπί. Αυτή η σελίδα δεν έχει τίποτα ουσιαστικό εδώ, αλλά ελέγξτε τις υπόλοιπες!',
|
'advanced_options_explain' => 'Μερικές σελίδες στο Firefly III έχουν κρυμμένες επιλογές για προχωρημένους πίσω από αυτό το κουμπί. Αυτή η σελίδα δεν έχει τίποτα ουσιαστικό εδώ, αλλά ελέγξτε τις υπόλοιπες!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Αίτημα Εξουσιοδότησης Firefly III v:version',
|
'authorization_request' => 'Αίτημα Εξουσιοδότησης Firefly III v:version',
|
||||||
'authorization_request_intro' => 'Ο <strong>:client</strong> αιτείται άδεια πρόσβασης στην οικονομική σας διαχείριση. Θέλετε να εξουσιοδοτήσετε τον <strong>:client</strong> ώστε να έχει πρόσβαση σε αυτές τις εγγραφές;',
|
'authorization_request_intro' => 'Ο <strong>:client</strong> αιτείται άδεια πρόσβασης στην οικονομική σας διαχείριση. Θέλετε να εξουσιοδοτήσετε τον <strong>:client</strong> ώστε να έχει πρόσβαση σε αυτές τις εγγραφές;',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'ανενεργός κανόνας',
|
'list_inactive_rule' => 'ανενεργός κανόνας',
|
||||||
'bill_edit_rules' => 'Το Firefly III θα προσπαθήσει επίσης να επεξεργαστεί τον κανόνα που σχετίζεται με αυτόν τον λογαριασμό. Εάν όμως έχετε επεξεργαστεί ο ίδιος αυτόν τον κανόνα, το Firefly III δεν θα αλλάξει τίποτα.|Το Firefly III θα προσπαθήσει επίσης να επεξεργαστεί τους :count κανόνες που σχετίζονται με αυτόν τον λογαριασμό. Ωστόσο, εάν έχετε επεξεργαστεί αυτούς τους κανόνες μόνοι σας, το Firefly III δεν θα αλλάξει τίποτα.',
|
'bill_edit_rules' => 'Το Firefly III θα προσπαθήσει επίσης να επεξεργαστεί τον κανόνα που σχετίζεται με αυτόν τον λογαριασμό. Εάν όμως έχετε επεξεργαστεί ο ίδιος αυτόν τον κανόνα, το Firefly III δεν θα αλλάξει τίποτα.|Το Firefly III θα προσπαθήσει επίσης να επεξεργαστεί τους :count κανόνες που σχετίζονται με αυτόν τον λογαριασμό. Ωστόσο, εάν έχετε επεξεργαστεί αυτούς τους κανόνες μόνοι σας, το Firefly III δεν θα αλλάξει τίποτα.',
|
||||||
'bill_expected_date' => 'Αναμένεται :date',
|
'bill_expected_date' => 'Αναμένεται :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'Έχετε :count ανενεργό λογαριασμό (σε αρχειοθέτηση), τον οποίο μπορείτε να δείτε σε αυτή τη ξεχωριστή σελίδα.|Έχετε :count ανενεργούς λογαριασμούς (σε αρχειοθέτηση), τους οποίους μπορείτε να δείτε σε αυτή τη ξεχωριστή σελίδα.',
|
'inactive_account_link' => 'Έχετε :count ανενεργό λογαριασμό (σε αρχειοθέτηση), τον οποίο μπορείτε να δείτε σε αυτή τη ξεχωριστή σελίδα.|Έχετε :count ανενεργούς λογαριασμούς (σε αρχειοθέτηση), τους οποίους μπορείτε να δείτε σε αυτή τη ξεχωριστή σελίδα.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v:version Authorisation Request',
|
'authorization_request' => 'Firefly III v:version Authorisation Request',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> is requesting permission to access your financial administration. Would you like to authorise <strong>:client</strong> to access these records?',
|
'authorization_request_intro' => '<strong>:client</strong> is requesting permission to access your financial administration. Would you like to authorise <strong>:client</strong> to access these records?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'inactive rule',
|
'list_inactive_rule' => 'inactive rule',
|
||||||
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
||||||
'bill_expected_date' => 'Expected :date',
|
'bill_expected_date' => 'Expected :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v:version Authorization Request',
|
'authorization_request' => 'Firefly III v:version Authorization Request',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> is requesting permission to access your financial administration. Would you like to authorize <strong>:client</strong> to access these records?',
|
'authorization_request_intro' => '<strong>:client</strong> is requesting permission to access your financial administration. Would you like to authorize <strong>:client</strong> to access these records?',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Algunas páginas de Firefly III tienen opciones avanzadas ocultas detrás de este botón. Esta página no tiene nada elegante, ¡pero echa un vistazo a las demás!',
|
'advanced_options_explain' => 'Algunas páginas de Firefly III tienen opciones avanzadas ocultas detrás de este botón. Esta página no tiene nada elegante, ¡pero echa un vistazo a las demás!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v:version Solicitud de autorización',
|
'authorization_request' => 'Firefly III v:version Solicitud de autorización',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> está solicitando permiso para acceder a tu administración financiera. ¿Deseas autorizar a <strong>:client</strong> para acceder a estos registros?',
|
'authorization_request_intro' => '<strong>:client</strong> está solicitando permiso para acceder a tu administración financiera. ¿Deseas autorizar a <strong>:client</strong> para acceder a estos registros?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'regla inactiva',
|
'list_inactive_rule' => 'regla inactiva',
|
||||||
'bill_edit_rules' => 'Firefly III también intentará editar la regla relacionada con esta factura. Sin embargo, si ha editado esta regla usted mismo, Firefly III no cambiará nada.|Firefly III intentará editar también las :count reglas relacionadas con esta factura. Sin embargo, si ha editado estas reglas usted mismo, Firefly III no cambiará nada.',
|
'bill_edit_rules' => 'Firefly III también intentará editar la regla relacionada con esta factura. Sin embargo, si ha editado esta regla usted mismo, Firefly III no cambiará nada.|Firefly III intentará editar también las :count reglas relacionadas con esta factura. Sin embargo, si ha editado estas reglas usted mismo, Firefly III no cambiará nada.',
|
||||||
'bill_expected_date' => 'Se espera :date',
|
'bill_expected_date' => 'Se espera :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'Tiene :count cuenta inactiva (archivada), que puedes ver en esta página separada.|Tienes cuentas :count inactivas (archivadas), que puedes ver en esta página separada.',
|
'inactive_account_link' => 'Tiene :count cuenta inactiva (archivada), que puedes ver en esta página separada.|Tienes cuentas :count inactivas (archivadas), que puedes ver en esta página separada.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v:version Valtuutus Pyyntö',
|
'authorization_request' => 'Firefly III v:version Valtuutus Pyyntö',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> pyytää valtuutustasi nähdäkseen sinun taloushallintosi. Haluatko antaa hänelle pääsyn näihin tietoihin?',
|
'authorization_request_intro' => '<strong>:client</strong> pyytää valtuutustasi nähdäkseen sinun taloushallintosi. Haluatko antaa hänelle pääsyn näihin tietoihin?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'käytöstä poistettu sääntö',
|
'list_inactive_rule' => 'käytöstä poistettu sääntö',
|
||||||
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
||||||
'bill_expected_date' => 'Expected :date',
|
'bill_expected_date' => 'Expected :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Certaines pages de Firefly III ont des options avancées cachées derrière ce bouton. Cette page n\'a rien de bien utile ici, mais regardez les autres !',
|
'advanced_options_explain' => 'Certaines pages de Firefly III ont des options avancées cachées derrière ce bouton. Cette page n\'a rien de bien utile ici, mais regardez les autres !',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v:version demande d\'autorisation',
|
'authorization_request' => 'Firefly III v:version demande d\'autorisation',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> demande l\'autorisation d\'accéder à votre administration financière. Souhaitez-vous autoriser <strong>:client</strong> à accéder à ces enregistrements?',
|
'authorization_request_intro' => '<strong>:client</strong> demande l\'autorisation d\'accéder à votre administration financière. Souhaitez-vous autoriser <strong>:client</strong> à accéder à ces enregistrements?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'règle inactive',
|
'list_inactive_rule' => 'règle inactive',
|
||||||
'bill_edit_rules' => 'Firefly III tentera également de modifier la règle relative à cette facture. Si vous avez modifié cette règle vous-même, Firefly III ne changera rien. Firefly III tentera également de modifier les :count règles relatives à cette facture. Si vous avez modifié ces règles vous-même, Firefly III ne changera rien.',
|
'bill_edit_rules' => 'Firefly III tentera également de modifier la règle relative à cette facture. Si vous avez modifié cette règle vous-même, Firefly III ne changera rien. Firefly III tentera également de modifier les :count règles relatives à cette facture. Si vous avez modifié ces règles vous-même, Firefly III ne changera rien.',
|
||||||
'bill_expected_date' => 'Prévu :date',
|
'bill_expected_date' => 'Prévu :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'Vous avez :count compte inactif (archivé) que vous pouvez consulter sur cette page dédiée.| Vous avez :count comptes inactifs (archivés) que vous pouvez consulter sur cette page dédiée.',
|
'inactive_account_link' => 'Vous avez :count compte inactif (archivé) que vous pouvez consulter sur cette page dédiée.| Vous avez :count comptes inactifs (archivés) que vous pouvez consulter sur cette page dédiée.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v:version engedély kérelem',
|
'authorization_request' => 'Firefly III v:version engedély kérelem',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> hozzáférést kért az Ön pénzügyi adminisztrációjához. Szeretne hozzáférést ezekhez adatokhoz <strong>:client</strong> részére?',
|
'authorization_request_intro' => '<strong>:client</strong> hozzáférést kért az Ön pénzügyi adminisztrációjához. Szeretne hozzáférést ezekhez adatokhoz <strong>:client</strong> részére?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'inaktív szabály',
|
'list_inactive_rule' => 'inaktív szabály',
|
||||||
'bill_edit_rules' => 'A Firefly III megpróbálja szerkeszteni a a számlához kapcsolódó szabályt is. Ha ön már szerkesztette a szabályt, a Firefly III nem fogja módosítani.|A Firefly III megpróbálja szerkeszteni a a számlához kapcsolódó :count szabályt is. Ha ön már szerkesztette a szabályt, a Firefly III nem fogja módosítani.',
|
'bill_edit_rules' => 'A Firefly III megpróbálja szerkeszteni a a számlához kapcsolódó szabályt is. Ha ön már szerkesztette a szabályt, a Firefly III nem fogja módosítani.|A Firefly III megpróbálja szerkeszteni a a számlához kapcsolódó :count szabályt is. Ha ön már szerkesztette a szabályt, a Firefly III nem fogja módosítani.',
|
||||||
'bill_expected_date' => 'Várható dátum :date',
|
'bill_expected_date' => 'Várható dátum :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v:version Authorization Request',
|
'authorization_request' => 'Firefly III v:version Authorization Request',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> is requesting permission to access your financial administration. Would you like to authorize <strong>:client</strong> to access these records?',
|
'authorization_request_intro' => '<strong>:client</strong> is requesting permission to access your financial administration. Would you like to authorize <strong>:client</strong> to access these records?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'inactive rule',
|
'list_inactive_rule' => 'inactive rule',
|
||||||
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
||||||
'bill_expected_date' => 'Expected :date',
|
'bill_expected_date' => 'Expected :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Alcune pagine in Firefly III hanno opzioni avanzate nascoste dietro questo pulsante. Questa pagina non ha nulla di interessante, ma controlla le altre!',
|
'advanced_options_explain' => 'Alcune pagine in Firefly III hanno opzioni avanzate nascoste dietro questo pulsante. Questa pagina non ha nulla di interessante, ma controlla le altre!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v:version Richiesta Autorizzazione',
|
'authorization_request' => 'Firefly III v:version Richiesta Autorizzazione',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> sta richiedendo l\'autorizzazione per accedere alla tua amministrazione finanziaria. Desideri autorizzare <strong>:client</strong> ad accedere a questi record?',
|
'authorization_request_intro' => '<strong>:client</strong> sta richiedendo l\'autorizzazione per accedere alla tua amministrazione finanziaria. Desideri autorizzare <strong>:client</strong> ad accedere a questi record?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'regola inattiva',
|
'list_inactive_rule' => 'regola inattiva',
|
||||||
'bill_edit_rules' => 'Firefly III tenterà anche di modificare la regola relativa a questa bolletta. Se hai modificato questa regola da solo, Firefly III non cambierà nulla.|Firefly III tenterà anche di modificare le :count regole relative a questa bolletta. Se hai modificato queste regole, Firefly III non cambierà nulla.',
|
'bill_edit_rules' => 'Firefly III tenterà anche di modificare la regola relativa a questa bolletta. Se hai modificato questa regola da solo, Firefly III non cambierà nulla.|Firefly III tenterà anche di modificare le :count regole relative a questa bolletta. Se hai modificato queste regole, Firefly III non cambierà nulla.',
|
||||||
'bill_expected_date' => 'Attesa :date',
|
'bill_expected_date' => 'Attesa :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'Hai :count conto inattivo (archiviato), che puoi visualizzare in questa pagina separata.|Hai :count conti inattivi (archiviati), che puoi visualizzare in questa pagina separata.',
|
'inactive_account_link' => 'Hai :count conto inattivo (archiviato), che puoi visualizzare in questa pagina separata.|Hai :count conti inattivi (archiviati), che puoi visualizzare in questa pagina separata.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v:version autorisasjonsforespørsel',
|
'authorization_request' => 'Firefly III v:version autorisasjonsforespørsel',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> ber om tillatelse til å få tilgang til finansadministrasjonen din. Vil du autorisere <strong>:client</strong> slik at den får tilgang til disse dine data?',
|
'authorization_request_intro' => '<strong>:client</strong> ber om tillatelse til å få tilgang til finansadministrasjonen din. Vil du autorisere <strong>:client</strong> slik at den får tilgang til disse dine data?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'inaktiv regel',
|
'list_inactive_rule' => 'inaktiv regel',
|
||||||
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
||||||
'bill_expected_date' => 'Expected :date',
|
'bill_expected_date' => 'Expected :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Sommige pagina\'s in Firefly III hebben geavanceerde opties verborgen achter deze knop. Voor deze pagina geldt dat niet, maar check zeker de andere pagina\'s!',
|
'advanced_options_explain' => 'Sommige pagina\'s in Firefly III hebben geavanceerde opties verborgen achter deze knop. Voor deze pagina geldt dat niet, maar check zeker de andere pagina\'s!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v:version autorisatieverzoek',
|
'authorization_request' => 'Firefly III v:version autorisatieverzoek',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> vraagt toestemming om toegang te krijgen tot je financiële administratie. Wil je <strong>:client</strong> autoriseren om toegang te krijgen tot je gegevens?',
|
'authorization_request_intro' => '<strong>:client</strong> vraagt toestemming om toegang te krijgen tot je financiële administratie. Wil je <strong>:client</strong> autoriseren om toegang te krijgen tot je gegevens?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'inactieve regel',
|
'list_inactive_rule' => 'inactieve regel',
|
||||||
'bill_edit_rules' => 'Firefly III gaat proberen de gerelateerde regel ook aan te passen. Als je deze zelf al hebt gewijzigd echter, zal dit niet gebeuren.|Firefly III gaat proberen de :count gerelateerde regels ook aan te passen. Als je deze zelf al hebt gewijzigd echter, zal dit niet gebeuren.',
|
'bill_edit_rules' => 'Firefly III gaat proberen de gerelateerde regel ook aan te passen. Als je deze zelf al hebt gewijzigd echter, zal dit niet gebeuren.|Firefly III gaat proberen de :count gerelateerde regels ook aan te passen. Als je deze zelf al hebt gewijzigd echter, zal dit niet gebeuren.',
|
||||||
'bill_expected_date' => 'Verwacht :date',
|
'bill_expected_date' => 'Verwacht :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'Je hebt :count inactieve (gearchiveerde) rekening, die je kan bekijken op deze aparte pagina.|Je hebt :count inactieve (gearchiveerde) rekeningen, die je kan bekijken op deze aparte pagina.',
|
'inactive_account_link' => 'Je hebt :count inactieve (gearchiveerde) rekening, die je kan bekijken op deze aparte pagina.|Je hebt :count inactieve (gearchiveerde) rekeningen, die je kan bekijken op deze aparte pagina.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Niektóre strony w Firefly III mają zaawansowane opcje ukryte pod tym przyciskiem. Ta strona niestety nie ma nic, ale sprawdź inne!',
|
'advanced_options_explain' => 'Niektóre strony w Firefly III mają zaawansowane opcje ukryte pod tym przyciskiem. Ta strona niestety nie ma nic, ale sprawdź inne!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Żądanie autoryzacji Firefly III v:version',
|
'authorization_request' => 'Żądanie autoryzacji Firefly III v:version',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> prosi o pozwolenie na dostęp do Twojej administracji finansowej. Czy chcesz pozwolić <strong>:client</strong> na dostęp do tych danych?',
|
'authorization_request_intro' => '<strong>:client</strong> prosi o pozwolenie na dostęp do Twojej administracji finansowej. Czy chcesz pozwolić <strong>:client</strong> na dostęp do tych danych?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'nieaktywna reguła',
|
'list_inactive_rule' => 'nieaktywna reguła',
|
||||||
'bill_edit_rules' => 'Firefly III spróbuje edytować regułę związaną z tym rachunkiem. Jeśli jednak reguła była edytowana przez Ciebie, Firefly III nic nie zmieni. Firefly III spróbuje edytować reguły :count również związane z tym rachunkiem. Jeśli jednak reguły były edytowane przez Ciebie, Firefly III nic nie zmieni.',
|
'bill_edit_rules' => 'Firefly III spróbuje edytować regułę związaną z tym rachunkiem. Jeśli jednak reguła była edytowana przez Ciebie, Firefly III nic nie zmieni. Firefly III spróbuje edytować reguły :count również związane z tym rachunkiem. Jeśli jednak reguły były edytowane przez Ciebie, Firefly III nic nie zmieni.',
|
||||||
'bill_expected_date' => 'Oczekiwane :date',
|
'bill_expected_date' => 'Oczekiwane :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'Masz :count nieaktywne (zarchiwizowane) konto, które możesz zobaczyć na tej stronie.|Masz :count nieaktywnych (zarchiwizowanych) kont, które możesz zobaczyć na tej stronie.',
|
'inactive_account_link' => 'Masz :count nieaktywne (zarchiwizowane) konto, które możesz zobaczyć na tej stronie.|Masz :count nieaktywnych (zarchiwizowanych) kont, które możesz zobaczyć na tej stronie.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Algumas páginas no Firefly III têm opções avançadas escondidas atrás deste botão. Esta página não tem nada elaborado aqui, mas confira as outras!',
|
'advanced_options_explain' => 'Algumas páginas no Firefly III têm opções avançadas escondidas atrás deste botão. Esta página não tem nada elaborado aqui, mas confira as outras!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v:version Pedido de autorização',
|
'authorization_request' => 'Firefly III v:version Pedido de autorização',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> está pedindo permissão para acessar sua administração financeira. Gostaria de autorizar <strong>:client</strong> para acessar esses registros?',
|
'authorization_request_intro' => '<strong>:client</strong> está pedindo permissão para acessar sua administração financeira. Gostaria de autorizar <strong>:client</strong> para acessar esses registros?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'regra inativa',
|
'list_inactive_rule' => 'regra inativa',
|
||||||
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
||||||
'bill_expected_date' => 'Estimado :date',
|
'bill_expected_date' => 'Estimado :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Algumas páginas no Firefly III têm opções avançadas escondidas atrás deste botão. Esta página não tem nada chique aqui, mas veja as outras!',
|
'advanced_options_explain' => 'Algumas páginas no Firefly III têm opções avançadas escondidas atrás deste botão. Esta página não tem nada chique aqui, mas veja as outras!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v:version Solicitar Autorizacao',
|
'authorization_request' => 'Firefly III v:version Solicitar Autorizacao',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> esta a pedir para aceder a sua administracao financeira. Gostarias de autorizar <strong>:client</strong> a aceder a esses registos?',
|
'authorization_request_intro' => '<strong>:client</strong> esta a pedir para aceder a sua administracao financeira. Gostarias de autorizar <strong>:client</strong> a aceder a esses registos?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'regra inactiva',
|
'list_inactive_rule' => 'regra inactiva',
|
||||||
'bill_edit_rules' => 'O Firefly III tentará editar a regra relacionada a esta conta também. Se editou esta regra, o Firefly III não vai mudar nada.|Firefly III tentará editar as regras de :count relacionadas a esta conta também. Se editou estas regras, no entanto, o Firefly III não vai mudar nada.',
|
'bill_edit_rules' => 'O Firefly III tentará editar a regra relacionada a esta conta também. Se editou esta regra, o Firefly III não vai mudar nada.|Firefly III tentará editar as regras de :count relacionadas a esta conta também. Se editou estas regras, no entanto, o Firefly III não vai mudar nada.',
|
||||||
'bill_expected_date' => 'Esperado :date',
|
'bill_expected_date' => 'Esperado :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'Você tem :count conta inativa (arquivada), que pode visualizar nesta página separada.| Você tem :count contas inativas (arquivadas), que pode visualizar nesta página separada.',
|
'inactive_account_link' => 'Você tem :count conta inativa (arquivada), que pode visualizar nesta página separada.| Você tem :count contas inativas (arquivadas), que pode visualizar nesta página separada.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Unele pagini din Firefly III au opțiuni avansate ascunse în spatele acestui buton. Această pagină nu are nimic extravagant aici, dar verifică celelalte!',
|
'advanced_options_explain' => 'Unele pagini din Firefly III au opțiuni avansate ascunse în spatele acestui buton. Această pagină nu are nimic extravagant aici, dar verifică celelalte!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'v: Solicitare de autorizare',
|
'authorization_request' => 'v: Solicitare de autorizare',
|
||||||
'authorization_request_intro' => '<strong> :client </ strong> solicită permisiunea de a accesa administrația financiară. Doriți să autorizați <strong> :client </ strong> pentru a accesa aceste înregistrări?',
|
'authorization_request_intro' => '<strong> :client </ strong> solicită permisiunea de a accesa administrația financiară. Doriți să autorizați <strong> :client </ strong> pentru a accesa aceste înregistrări?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'regulă inactivă',
|
'list_inactive_rule' => 'regulă inactivă',
|
||||||
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
||||||
'bill_expected_date' => 'Expected :date',
|
'bill_expected_date' => 'Expected :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'На некоторых страницах Firefly III за этой кнопкой скрыты расширенные опции. На этой странице нет ничего фантастического, но проверьте на других страницах!',
|
'advanced_options_explain' => 'На некоторых страницах Firefly III за этой кнопкой скрыты расширенные опции. На этой странице нет ничего фантастического, но проверьте на других страницах!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Запрос авторизации Firefly III v:version',
|
'authorization_request' => 'Запрос авторизации Firefly III v:version',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> запрашивает доступ к управлению вашими финансами. Вы хотите разрешить <strong>:client</strong> доступ к этой информации?',
|
'authorization_request_intro' => '<strong>:client</strong> запрашивает доступ к управлению вашими финансами. Вы хотите разрешить <strong>:client</strong> доступ к этой информации?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'неактивное правило',
|
'list_inactive_rule' => 'неактивное правило',
|
||||||
'bill_edit_rules' => 'Firefly III также попытается отредактировать правило, связанное с этим счётом на оплату. Однако, если вы сами отредактировали это правило, Firefly III ничего не изменит.|Firefly III также попытается отредактировать :count правил, связанных с этим счётом на оплату. Однако, если вы сами отредактировали эти правила, Firefly III ничего не изменит.',
|
'bill_edit_rules' => 'Firefly III также попытается отредактировать правило, связанное с этим счётом на оплату. Однако, если вы сами отредактировали это правило, Firefly III ничего не изменит.|Firefly III также попытается отредактировать :count правил, связанных с этим счётом на оплату. Однако, если вы сами отредактировали эти правила, Firefly III ничего не изменит.',
|
||||||
'bill_expected_date' => 'Истекает :date',
|
'bill_expected_date' => 'Истекает :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'У вас :count неактивный (архивный) счёт, который вы можете увидеть на этой отдельной странице.|У вас :count неактивных (архивных) счетов, которые вы можете увидеть на этой отдельной странице.',
|
'inactive_account_link' => 'У вас :count неактивный (архивный) счёт, который вы можете увидеть на этой отдельной странице.|У вас :count неактивных (архивных) счетов, которые вы можете увидеть на этой отдельной странице.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Niektoré stránky Firefly III majú pod týmto tlačítkom skryté pokročilé nastavenia. Táto stránka síce nič také neobsahuje, ale určite to skúste na iných!',
|
'advanced_options_explain' => 'Niektoré stránky Firefly III majú pod týmto tlačítkom skryté pokročilé nastavenia. Táto stránka síce nič také neobsahuje, ale určite to skúste na iných!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Požiadavka na overenie – Firefly III verzia :version',
|
'authorization_request' => 'Požiadavka na overenie – Firefly III verzia :version',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> žiada o oprávnenie pre prístup k vašej správe financií. Chcete <strong>:client</strong> autorizovať?',
|
'authorization_request_intro' => '<strong>:client</strong> žiada o oprávnenie pre prístup k vašej správe financií. Chcete <strong>:client</strong> autorizovať?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'neaktívne pravidlo',
|
'list_inactive_rule' => 'neaktívne pravidlo',
|
||||||
'bill_edit_rules' => 'Firefly III sa pokúsi upraviť aj pravidlo týkajúce sa tohto účtu. Ak ste si však toto pravidlo upravili sami, Firefly III ho nebude meniť.|Firefly III sa pokúsi upraviť aj :count pravidiel súvisiacich s týmto účtom. Ak ste si však tieto pravidlá upravili sami, Firefly III ich nebude meniť.',
|
'bill_edit_rules' => 'Firefly III sa pokúsi upraviť aj pravidlo týkajúce sa tohto účtu. Ak ste si však toto pravidlo upravili sami, Firefly III ho nebude meniť.|Firefly III sa pokúsi upraviť aj :count pravidiel súvisiacich s týmto účtom. Ak ste si však tieto pravidlá upravili sami, Firefly III ich nebude meniť.',
|
||||||
'bill_expected_date' => 'Očakávané :date',
|
'bill_expected_date' => 'Očakávané :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'Máte :count neaktívny (archivovaný) bankový účet, ktorý môžete zobraziť na tejto samostatnej stránke.|Máte :count neaktívnych (archivovaných) bankových účtov, ktoré môžete zobraziť na tejto samostatnej stránke.',
|
'inactive_account_link' => 'Máte :count neaktívny (archivovaný) bankový účet, ktorý môžete zobraziť na tejto samostatnej stránke.|Máte :count neaktívnych (archivovaných) bankových účtov, ktoré môžete zobraziť na tejto samostatnej stránke.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Vissa sidor i Firefly III har avancerade alternativ gömda bakom den här knappen. Den här sidan har inget tjusigt här, men kolla in de andra!',
|
'advanced_options_explain' => 'Vissa sidor i Firefly III har avancerade alternativ gömda bakom den här knappen. Den här sidan har inget tjusigt här, men kolla in de andra!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v:version Auktorisationsbegäran',
|
'authorization_request' => 'Firefly III v:version Auktorisationsbegäran',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> begär tillstånd för åtkomst till din ekonomi administration. Vill du tillåta <strong>:client</strong> åtkomst till dessa poster?',
|
'authorization_request_intro' => '<strong>:client</strong> begär tillstånd för åtkomst till din ekonomi administration. Vill du tillåta <strong>:client</strong> åtkomst till dessa poster?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'inaktiv regel',
|
'list_inactive_rule' => 'inaktiv regel',
|
||||||
'bill_edit_rules' => 'Firefly III kommer också att försöka redigera regeln relaterad till denna räkning. Om du själv har redigerat denna regel kommer Firefly III inte att ändra någonting.|Firefly III kommer att försöka redigera :count regler som är relaterade till denna räkning. Om du själv har redigerat dessa regler kommer dock Firefly III inte att ändra någonting.',
|
'bill_edit_rules' => 'Firefly III kommer också att försöka redigera regeln relaterad till denna räkning. Om du själv har redigerat denna regel kommer Firefly III inte att ändra någonting.|Firefly III kommer att försöka redigera :count regler som är relaterade till denna räkning. Om du själv har redigerat dessa regler kommer dock Firefly III inte att ändra någonting.',
|
||||||
'bill_expected_date' => 'Förväntat :date',
|
'bill_expected_date' => 'Förväntat :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'Du har :count inaktiva (arkiverat) konto, som du kan se på denna separata sida.|Du har :count inaktiva (arkiverade) konton, som du kan se på denna separata sida.',
|
'inactive_account_link' => 'Du har :count inaktiva (arkiverat) konto, som du kan se på denna separata sida.|Du har :count inaktiva (arkiverade) konton, som du kan se på denna separata sida.',
|
||||||
|
@ -226,6 +226,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v: version Yetkilendirme İsteği',
|
'authorization_request' => 'Firefly III v: version Yetkilendirme İsteği',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> finansal yönetiminize erişmek için izin istiyor. Bu kayıtlara erişmek için <strong>:client</strong> \'yi yetkilendirmek ister misiniz?',
|
'authorization_request_intro' => '<strong>:client</strong> finansal yönetiminize erişmek için izin istiyor. Bu kayıtlara erişmek için <strong>:client</strong> \'yi yetkilendirmek ister misiniz?',
|
||||||
@ -1020,6 +1023,7 @@ return [
|
|||||||
'list_inactive_rule' => 'Etkin Olmayan Kurallar',
|
'list_inactive_rule' => 'Etkin Olmayan Kurallar',
|
||||||
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
||||||
'bill_expected_date' => 'Expected :date',
|
'bill_expected_date' => 'Expected :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III v: phiên bản Yêu cầu ủy quyền',
|
'authorization_request' => 'Firefly III v: phiên bản Yêu cầu ủy quyền',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> đang yêu cầu sự cho phép truy cập quản trị tài chính của bạn. Bạn có muốn ủy quyền <strong>:client</strong> để truy cập những hồ sơ này?',
|
'authorization_request_intro' => '<strong>:client</strong> đang yêu cầu sự cho phép truy cập quản trị tài chính của bạn. Bạn có muốn ủy quyền <strong>:client</strong> để truy cập những hồ sơ này?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => 'quy tắc không hoạt động',
|
'list_inactive_rule' => 'quy tắc không hoạt động',
|
||||||
'bill_edit_rules' => 'Firefly III cũng sẽ cố gắng chỉnh sửa quy tắc liên quan đến dự luật này. Tuy nhiên, nếu bạn đã tự chỉnh sửa quy tắc này, Firefly III sẽ không thay đổi bất cứ điều gì. | Firefly III cũng sẽ cố gắng chỉnh sửa :count các quy tắc liên quan đến dự luật này. Tuy nhiên, nếu bạn đã tự chỉnh sửa các quy tắc này, Firefly III sẽ không thay đổi bất cứ điều gì.',
|
'bill_edit_rules' => 'Firefly III cũng sẽ cố gắng chỉnh sửa quy tắc liên quan đến dự luật này. Tuy nhiên, nếu bạn đã tự chỉnh sửa quy tắc này, Firefly III sẽ không thay đổi bất cứ điều gì. | Firefly III cũng sẽ cố gắng chỉnh sửa :count các quy tắc liên quan đến dự luật này. Tuy nhiên, nếu bạn đã tự chỉnh sửa các quy tắc này, Firefly III sẽ không thay đổi bất cứ điều gì.',
|
||||||
'bill_expected_date' => 'Ngày đáo hạn :date',
|
'bill_expected_date' => 'Ngày đáo hạn :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'Bạn có :count tài khoản không hoạt động (được lưu trữ) mà bạn có thể xem trên trang này. Bạn có :count tài khoản không hoạt động (đã lưu trữ) mà bạn có thể xem trên trang này.',
|
'inactive_account_link' => 'Bạn có :count tài khoản không hoạt động (được lưu trữ) mà bạn có thể xem trên trang này. Bạn có :count tài khoản không hoạt động (đã lưu trữ) mà bạn có thể xem trên trang này.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III :version 版授权请求',
|
'authorization_request' => 'Firefly III :version 版授权请求',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> 正在要求通行您的财务管理后台的许可,您是否愿意授权 <strong>:client</strong> 通行这些纪录?',
|
'authorization_request_intro' => '<strong>:client</strong> 正在要求通行您的财务管理后台的许可,您是否愿意授权 <strong>:client</strong> 通行这些纪录?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => '未启用的规则',
|
'list_inactive_rule' => '未启用的规则',
|
||||||
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
||||||
'bill_expected_date' => 'Expected :date',
|
'bill_expected_date' => 'Expected :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
||||||
|
@ -225,6 +225,9 @@ return [
|
|||||||
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
'advanced_options_explain' => 'Some pages in Firefly III have advanced options hidden behind this button. This page doesn\'t have anything fancy here, but do check out the others!',
|
||||||
'here_be_dragons' => 'Hic sunt dracones',
|
'here_be_dragons' => 'Hic sunt dracones',
|
||||||
|
|
||||||
|
// Webhooks
|
||||||
|
'webhooks' => 'Webhooks',
|
||||||
|
|
||||||
// API access
|
// API access
|
||||||
'authorization_request' => 'Firefly III :version 版授權請求',
|
'authorization_request' => 'Firefly III :version 版授權請求',
|
||||||
'authorization_request_intro' => '<strong>:client</strong> 正要求權限存取您的財務管理,您是否願意授權 <strong>:client</strong> 存取這些紀錄?',
|
'authorization_request_intro' => '<strong>:client</strong> 正要求權限存取您的財務管理,您是否願意授權 <strong>:client</strong> 存取這些紀錄?',
|
||||||
@ -1019,6 +1022,7 @@ return [
|
|||||||
'list_inactive_rule' => '未啟用的規則',
|
'list_inactive_rule' => '未啟用的規則',
|
||||||
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.',
|
||||||
'bill_expected_date' => 'Expected :date',
|
'bill_expected_date' => 'Expected :date',
|
||||||
|
'bill_paid_on' => 'Paid on {date}',
|
||||||
|
|
||||||
// accounts:
|
// accounts:
|
||||||
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.',
|
||||||
|
@ -40,7 +40,11 @@
|
|||||||
</a>
|
</a>
|
||||||
<div class="dropdown-divider"></div>
|
<div class="dropdown-divider"></div>
|
||||||
<a href="#" class="dropdown-item">
|
<a href="#" class="dropdown-item">
|
||||||
<i class="fas fa-fw fa-external-link-alt mr-2"></i> {{ 'webhooks'|_ }}
|
<i class="fas fa-fw fa-globe mr-2"></i> {{ 'webhooks'|_ }}
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-divider"></div>
|
||||||
|
<a href="{{ route('export.index') }}" class="dropdown-item">
|
||||||
|
<i class="fas fa-fw fa-upload mr-2"></i> {{ 'export_data_menu'|_ }}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
@ -195,71 +195,6 @@
|
|||||||
</p>
|
</p>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="nav-item">
|
|
||||||
<a href="{{ route('export.index') }}" class="nav-link {{ activeRoutePartial('export') }}">
|
|
||||||
<i class="nav-icon fas fa-upload"></i>
|
|
||||||
<p>
|
|
||||||
{{ 'export_data_menu'|_ }}
|
|
||||||
</p>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
{#
|
|
||||||
<li class="nav-item has-treeview {{ menuOpenRoutePartial('currencies') }}">
|
|
||||||
<a href="#" class="nav-link">
|
|
||||||
<i class="nav-icon fas fa-sliders-h"></i>
|
|
||||||
<p>
|
|
||||||
{{ 'options'|_ }}
|
|
||||||
<i class="right fas fa-angle-left"></i>
|
|
||||||
</p>
|
|
||||||
</a>
|
|
||||||
<ul class="nav nav-treeview">
|
|
||||||
<!--
|
|
||||||
<li class="nav-item">
|
|
||||||
<a href="{{ route('profile.index') }}" class="nav-link">
|
|
||||||
<i class="far fa-user nav-icon"></i>
|
|
||||||
<p>{{ 'profile'|_ }}</p>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
-->
|
|
||||||
<!--
|
|
||||||
<li class="nav-item">
|
|
||||||
<a href="{{ route('preferences.index') }}" class="nav-link">
|
|
||||||
<i class="fas fa-cogs nav-icon"></i>
|
|
||||||
<p>{{ 'preferences'|_ }}</p>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
-->
|
|
||||||
<li class="nav-item">
|
|
||||||
<a href="{{ route('currencies.index') }}" class="nav-link {{ activeRoutePartial('currencies') }}">
|
|
||||||
<i class="fas fa-euro-sign nav-icon"></i>
|
|
||||||
<p>{{ 'currencies'|_ }}</p>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<!--
|
|
||||||
{% if hasRole('owner') %}
|
|
||||||
<li class="nav-item">
|
|
||||||
<a href="{{ route('admin.index') }}" class="nav-link">
|
|
||||||
<i class="far fa-hand-spock nav-icon"></i>
|
|
||||||
<p>{{ 'administration'|_ }}</p>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
{% endif %}
|
|
||||||
-->
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
#}
|
|
||||||
{#
|
|
||||||
<li class="nav-item">
|
|
||||||
<a href="{{ route('logout') }}" class="nav-link">
|
|
||||||
<i class="nav-icon fas fa-sign-out-alt"></i>
|
|
||||||
<p>
|
|
||||||
{{ 'logout'|_ }}
|
|
||||||
</p>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
#}
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
<!-- /.sidebar-menu -->
|
<!-- /.sidebar-menu -->
|
||||||
|
Loading…
Reference in New Issue
Block a user