Update meta files.

This commit is contained in:
James Cole
2020-07-02 20:23:45 +02:00
parent 6874d6469d
commit 45f5a38512
66 changed files with 583 additions and 203 deletions

View File

@@ -62,4 +62,4 @@
"value": "base64:If1gJN4pyycXTq+WS5TjneDympKuu+8SKvTl6RZnhJg="
}
}
}
}

View File

@@ -9,6 +9,7 @@ Several alpha and beta releases preceded this release.
- 5.3.0-alpha.1 on 2020-06-22
- 5.3.0-beta.1 on 2020-06-28
- 5.3.0-beta.1 on 2020-07-01
### Added
- Piggy banks and bills can be divided over groups. Groups can be sorted on a separate page. This may prove to be useful to organize these objects. The feature

20
composer.lock generated
View File

@@ -7549,16 +7549,16 @@
},
{
"name": "nikic/php-parser",
"version": "v4.5.0",
"version": "v4.6.0",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
"reference": "53c2753d756f5adb586dca79c2ec0e2654dd9463"
"reference": "c346bbfafe2ff60680258b631afb730d186ed864"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/53c2753d756f5adb586dca79c2ec0e2654dd9463",
"reference": "53c2753d756f5adb586dca79c2ec0e2654dd9463",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c346bbfafe2ff60680258b631afb730d186ed864",
"reference": "c346bbfafe2ff60680258b631afb730d186ed864",
"shasum": ""
},
"require": {
@@ -7597,7 +7597,7 @@
"parser",
"php"
],
"time": "2020-06-03T07:24:19+00:00"
"time": "2020-07-02T17:12:47+00:00"
},
{
"name": "ocramius/package-versions",
@@ -8569,12 +8569,12 @@
"source": {
"type": "git",
"url": "https://github.com/Roave/SecurityAdvisories.git",
"reference": "6d2e5ab854782830911ddd33b7d4649b9f18c10f"
"reference": "9ec84501a85a3b0c7b260042ae81a8efb2f234ce"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/6d2e5ab854782830911ddd33b7d4649b9f18c10f",
"reference": "6d2e5ab854782830911ddd33b7d4649b9f18c10f",
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/9ec84501a85a3b0c7b260042ae81a8efb2f234ce",
"reference": "9ec84501a85a3b0c7b260042ae81a8efb2f234ce",
"shasum": ""
},
"conflict": {
@@ -8669,7 +8669,7 @@
"monolog/monolog": ">=1.8,<1.12",
"namshi/jose": "<2.2",
"nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1",
"october/october": ">=1.0.319,<1.0.466",
"october/october": ">=1.0.319,<1.0.467",
"onelogin/php-saml": "<2.10.4",
"oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5",
"openid/php-openid": "<2.3",
@@ -8846,7 +8846,7 @@
"type": "tidelift"
}
],
"time": "2020-06-19T13:23:43+00:00"
"time": "2020-07-02T17:01:23+00:00"
},
{
"name": "sebastian/code-unit-reverse-lookup",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -7,12 +7,9 @@
<h3 class="card-title"><a :href="account.uri">{{ account.title }}</a></h3>
</div>
<div class="card-body table-responsive p-0">
<transaction-list-small :transactions="account.transactions" :account_id="account.id" />
<!--
<transaction-list-large :transactions="account.transactions" v-if="1===accounts.length" />
<transaction-list-medium :transactions="account.transactions" v-if="2===accounts.length" />
<transaction-list-small :transactions="account.transactions" v-if="accounts.length > 2" />
-->
<transaction-list-large :transactions="account.transactions" v-if="1===accounts.length" :account_id="account.id" />
<transaction-list-medium :transactions="account.transactions" v-if="2===accounts.length" :account_id="account.id" />
<transaction-list-small :transactions="account.transactions" v-if="accounts.length > 2" :account_id="account.id" />
</div>
</div>
</div>

View File

@@ -1,10 +1,76 @@
<template>
<table class="table table-striped">
<caption style="display:none;">{{ $t('firefly.transaction_table_description') }}</caption>
<thead>
<tr>
<th class="text-left">{{ $t('firefly.description') }}</th>
<th>{{ $t('firefly.opposing_account') }}</th>
<th class="text-right">{{ $t('firefly.amount') }}</th>
<th>{{ $t('firefly.category') }}</th>
<th>{{ $t('firefly.budget') }}</th>
</tr>
</thead>
<tbody>
<tr v-for="transaction in this.transactions">
<td>
<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="1===transaction.attributes.transactions.length">{{ transaction.attributes.transactions[0].description }}</span>
</a>
</td>
<td>
<span v-for="tr in transaction.attributes.transactions">
<a :href="'accounts/show/' + transaction.destination_id" v-if="'withdrawal' === tr.type">{{ tr.destination_name }}</a>
<a :href="'accounts/show/' + transaction.source_id" v-if="'deposit' === tr.type">{{ tr.source_name }}</a>
<a :href="'accounts/show/' + transaction.destination_id" v-if="'transfer' === tr.type && tr.source_id === account_id">{{ tr.destination_name }}</a>
<a :href="'accounts/show/' + transaction.source_id" v-if="'transfer' === tr.type && tr.destination_id === account_id">{{ tr.source_name }}</a>
<br />
</span>
</td>
<td style="text-align:right;">
<span v-for="tr in transaction.attributes.transactions">
<span v-if="'withdrawal' === tr.type" class="text-danger">
{{ Intl.NumberFormat('en-US', {style: 'currency', currency: tr.currency_code}).format(tr.amount * -1)}}<br>
</span>
<span v-if="'deposit' === tr.type" class="text-success">
{{ Intl.NumberFormat('en-US', {style: 'currency', currency: tr.currency_code}).format(tr.amount)}}<br>
</span>
<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>
</span>
<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>
</span>
</span>
</td>
<td>
cat
</td>
<td>
bud
</td>
</tr>
</tbody>
</table>
</template>
<script>
export default {
name: "TransactionListLarge"
name: "TransactionListLarge",
props: {
transactions: {
type: Array,
default: function () {
return [];
}
},
account_id: {
type: Number,
default: function () {
return 0;
}
},
}
}
</script>

View File

@@ -1,10 +1,68 @@
<template>
<table class="table table-striped">
<caption style="display:none;">{{ $t('firefly.transaction_table_description') }}</caption>
<thead>
<tr>
<th class="text-left">{{ $t('firefly.description') }}</th>
<th>{{ $t('firefly.opposing_account') }}</th>
<th class="text-right">{{ $t('firefly.amount') }}</th>
</tr>
</thead>
<tbody>
<tr v-for="transaction in this.transactions">
<td>
<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="1===transaction.attributes.transactions.length">{{ transaction.attributes.transactions[0].description }}</span>
</a>
</td>
<td>
<span v-for="tr in transaction.attributes.transactions">
<a :href="'accounts/show/' + transaction.destination_id" v-if="'withdrawal' === tr.type">{{ tr.destination_name }}</a>
<a :href="'accounts/show/' + transaction.source_id" v-if="'deposit' === tr.type">{{ tr.source_name }}</a>
<a :href="'accounts/show/' + transaction.destination_id" v-if="'transfer' === tr.type && tr.source_id === account_id">{{ tr.destination_name }}</a>
<a :href="'accounts/show/' + transaction.source_id" v-if="'transfer' === tr.type && tr.destination_id === account_id">{{ tr.source_name }}</a>
<br />
</span>
</td>
<td style="text-align:right;">
<span v-for="tr in transaction.attributes.transactions">
<span v-if="'withdrawal' === tr.type" class="text-danger">
{{ Intl.NumberFormat('en-US', {style: 'currency', currency: tr.currency_code}).format(tr.amount * -1)}}<br>
</span>
<span v-if="'deposit' === tr.type" class="text-success">
{{ Intl.NumberFormat('en-US', {style: 'currency', currency: tr.currency_code}).format(tr.amount)}}<br>
</span>
<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>
</span>
<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>
</span>
</span>
</td>
</tr>
</tbody>
</table>
</template>
<script>
export default {
name: "TransactionListMedium"
name: "TransactionListMedium",
props: {
transactions: {
type: Array,
default: function () {
return [];
}
},
account_id: {
type: Number,
default: function () {
return 0;
}
},
}
}
</script>

View File

@@ -1,10 +1,10 @@
<template>
<table class="table table-striped">
<caption style="display:none;">A table containing transactions.</caption>
<caption style="display:none;">{{ $t('firefly.transaction_table_description') }}</caption>
<thead>
<tr>
<th class="text-left">Description</th>
<th class="text-right">Amount</th>
<th class="text-left">{{ $t('firefly.description') }}</th>
<th class="text-right">{{ $t('firefly.amount') }}</th>
</tr>
</thead>
<tbody>

View File

@@ -6,7 +6,14 @@
"net_worth": "\u010cist\u00e9 jm\u011bn\u00ed",
"paid": "Zaplaceno",
"yourAccounts": "Va\u0161e \u00fa\u010dty",
"go_to_asset_accounts": "Zobrazit \u00fa\u010dty s aktivy"
"go_to_asset_accounts": "Zobrazit \u00fa\u010dty s aktivy",
"transaction_table_description": "A table containing your transactions",
"account": "\u00da\u010det",
"description": "Popis",
"amount": "\u010c\u00e1stka",
"budget": "Rozpo\u010det",
"category": "Kategorie",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "cs"

View File

@@ -6,7 +6,14 @@
"net_worth": "Eigenkapital",
"paid": "Bezahlt",
"yourAccounts": "Deine Konten",
"go_to_asset_accounts": "Bestandskonten anzeigen"
"go_to_asset_accounts": "Bestandskonten anzeigen",
"transaction_table_description": "Eine Tabelle mit Ihren Buchungen",
"account": "Konto",
"description": "Beschreibung",
"amount": "Betrag",
"budget": "Budget",
"category": "Kategorie",
"opposing_account": "Gegenkonto"
},
"config": {
"html_language": "de"

View File

@@ -6,7 +6,14 @@
"net_worth": "\u039a\u03b1\u03b8\u03b1\u03c1\u03ae \u03b1\u03be\u03af\u03b1",
"paid": "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf",
"yourAccounts": "\u039f\u03b9 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03af \u03c3\u03b1\u03c2",
"go_to_asset_accounts": "\u0394\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5 \u03c3\u03b1\u03c2"
"go_to_asset_accounts": "\u0394\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5 \u03c3\u03b1\u03c2",
"transaction_table_description": "A table containing your transactions",
"account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2",
"description": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae",
"amount": "\u03a0\u03bf\u03c3\u03cc",
"budget": "\u03a0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc\u03c2",
"category": "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "el"

View File

@@ -6,7 +6,14 @@
"net_worth": "Net worth",
"paid": "Paid",
"yourAccounts": "Your accounts",
"go_to_asset_accounts": "View your asset accounts"
"go_to_asset_accounts": "View your asset accounts",
"transaction_table_description": "A table containing your transactions",
"account": "Account",
"description": "Description",
"amount": "Amount",
"budget": "Budget",
"category": "Category",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "en"

View File

@@ -6,7 +6,14 @@
"net_worth": "Valor Neto",
"paid": "Pagado",
"yourAccounts": "Tus cuentas",
"go_to_asset_accounts": "Ver tus cuentas de activos"
"go_to_asset_accounts": "Ver tus cuentas de activos",
"transaction_table_description": "A table containing your transactions",
"account": "Cuenta",
"description": "Descripci\u00f3n",
"amount": "Cantidad",
"budget": "Presupuesto",
"category": "Categoria",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "es"

View File

@@ -6,7 +6,14 @@
"net_worth": "Varallisuus",
"paid": "Maksettu",
"yourAccounts": "Omat tilisi",
"go_to_asset_accounts": "Tarkastele omaisuustilej\u00e4si"
"go_to_asset_accounts": "Tarkastele omaisuustilej\u00e4si",
"transaction_table_description": "A table containing your transactions",
"account": "Tili",
"description": "Kuvaus",
"amount": "Summa",
"budget": "Budjetti",
"category": "Kategoria",
"opposing_account": "Vastatili"
},
"config": {
"html_language": "fi"

View File

@@ -6,7 +6,14 @@
"net_worth": "Avoir net",
"paid": "Pay\u00e9",
"yourAccounts": "Vos comptes",
"go_to_asset_accounts": "Afficher vos comptes d'actifs"
"go_to_asset_accounts": "Afficher vos comptes d'actifs",
"transaction_table_description": "Une table contenant vos op\u00e9rations",
"account": "Compte",
"description": "Description",
"amount": "Montant",
"budget": "Budget",
"category": "Cat\u00e9gorie",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "fr"

View File

@@ -6,7 +6,14 @@
"net_worth": "Nett\u00f3 \u00e9rt\u00e9k",
"paid": "Kifizetve",
"yourAccounts": "Banksz\u00e1ml\u00e1k",
"go_to_asset_accounts": "Eszk\u00f6zsz\u00e1ml\u00e1k megtekint\u00e9se"
"go_to_asset_accounts": "Eszk\u00f6zsz\u00e1ml\u00e1k megtekint\u00e9se",
"transaction_table_description": "A table containing your transactions",
"account": "Banksz\u00e1mla",
"description": "Le\u00edr\u00e1s",
"amount": "\u00d6sszeg",
"budget": "K\u00f6lts\u00e9gkeret",
"category": "Kateg\u00f3ria",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "hu"

View File

@@ -6,7 +6,14 @@
"net_worth": "Nilai bersih",
"paid": "Dibayar",
"yourAccounts": "Akun anda",
"go_to_asset_accounts": "Menampilkan rekening aset"
"go_to_asset_accounts": "Menampilkan rekening aset",
"transaction_table_description": "A table containing your transactions",
"account": "Rekening",
"description": "Deskripsi",
"amount": "Jumlah",
"budget": "Anggaran",
"category": "Kategori",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "id"

View File

@@ -6,7 +6,14 @@
"net_worth": "Patrimonio",
"paid": "Pagati",
"yourAccounts": "I tuoi conti",
"go_to_asset_accounts": "Visualizza i tuoi conti attivit\u00e0"
"go_to_asset_accounts": "Visualizza i tuoi conti attivit\u00e0",
"transaction_table_description": "Una tabella contenente le tue transazioni",
"account": "Conto",
"description": "Descrizione",
"amount": "Importo",
"budget": "Budget",
"category": "Categoria",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "it"

View File

@@ -6,7 +6,14 @@
"net_worth": "Formue",
"paid": "Betalt",
"yourAccounts": "Dine kontoer",
"go_to_asset_accounts": "Se aktivakontoene dine"
"go_to_asset_accounts": "Se aktivakontoene dine",
"transaction_table_description": "A table containing your transactions",
"account": "Konto",
"description": "Beskrivelse",
"amount": "Bel\u00f8p",
"budget": "Busjett",
"category": "Kategori",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "nb"

View File

@@ -6,7 +6,14 @@
"net_worth": "Kapitaal",
"paid": "Betaald",
"yourAccounts": "Je betaalrekeningen",
"go_to_asset_accounts": "Bekijk je betaalrekeningen"
"go_to_asset_accounts": "Bekijk je betaalrekeningen",
"transaction_table_description": "A table containing your transactions",
"account": "Rekening",
"description": "Omschrijving",
"amount": "Bedrag",
"budget": "Budget",
"category": "Categorie",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "nl"

View File

@@ -6,7 +6,14 @@
"net_worth": "Warto\u015b\u0107 netto",
"paid": "Zap\u0142acone",
"yourAccounts": "Twoje konta",
"go_to_asset_accounts": "Zobacz swoje konta aktyw\u00f3w"
"go_to_asset_accounts": "Zobacz swoje konta aktyw\u00f3w",
"transaction_table_description": "A table containing your transactions",
"account": "Konto",
"description": "Opis",
"amount": "Kwota",
"budget": "Bud\u017cet",
"category": "Kategoria",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "pl"

View File

@@ -6,7 +6,14 @@
"net_worth": "Valor L\u00edquido",
"paid": "Pago",
"yourAccounts": "Suas contas",
"go_to_asset_accounts": "Veja suas contas ativas"
"go_to_asset_accounts": "Veja suas contas ativas",
"transaction_table_description": "Uma tabela contendo suas transa\u00e7\u00f5es",
"account": "Conta",
"description": "Descri\u00e7\u00e3o",
"amount": "Valor",
"budget": "Or\u00e7amento",
"category": "Categoria",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "pt-br"

View File

@@ -6,7 +6,14 @@
"net_worth": "Valoarea net\u0103",
"paid": "Pl\u0103tit",
"yourAccounts": "Conturile dvs.",
"go_to_asset_accounts": "Vizualiza\u021bi conturile de active"
"go_to_asset_accounts": "Vizualiza\u021bi conturile de active",
"transaction_table_description": "A table containing your transactions",
"account": "Cont",
"description": "Descriere",
"amount": "Sum\u0103",
"budget": "Buget",
"category": "Categorie",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "ro"

View File

@@ -6,7 +6,14 @@
"net_worth": "\u041c\u043e\u0438 \u0441\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0438\u044f",
"paid": "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043e",
"yourAccounts": "\u0412\u0430\u0448\u0438 \u0441\u0447\u0435\u0442\u0430",
"go_to_asset_accounts": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u0432\u0430\u0448\u0438\u0445 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0441\u0447\u0435\u0442\u043e\u0432"
"go_to_asset_accounts": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u0432\u0430\u0448\u0438\u0445 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0441\u0447\u0435\u0442\u043e\u0432",
"transaction_table_description": "A table containing your transactions",
"account": "\u0421\u0447\u0451\u0442",
"description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
"amount": "\u0421\u0443\u043c\u043c\u0430",
"budget": "\u0411\u044e\u0434\u0436\u0435\u0442",
"category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "ru"

View File

@@ -6,7 +6,14 @@
"net_worth": "Nettof\u00f6rm\u00f6genhet",
"paid": "Betald",
"yourAccounts": "Dina konton",
"go_to_asset_accounts": "Visa dina tillg\u00e5ngskonton"
"go_to_asset_accounts": "Visa dina tillg\u00e5ngskonton",
"transaction_table_description": "A table containing your transactions",
"account": "Konto",
"description": "Beskrivning",
"amount": "Belopp",
"budget": "Budget",
"category": "Kategori",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "sv"

View File

@@ -6,7 +6,14 @@
"net_worth": "Net de\u011fer",
"paid": "\u00d6dendi",
"yourAccounts": "Hesaplar\u0131n\u0131z",
"go_to_asset_accounts": "Varl\u0131k hesaplar\u0131n\u0131z\u0131 g\u00f6r\u00fcnt\u00fcleyin"
"go_to_asset_accounts": "Varl\u0131k hesaplar\u0131n\u0131z\u0131 g\u00f6r\u00fcnt\u00fcleyin",
"transaction_table_description": "A table containing your transactions",
"account": "Hesap",
"description": "A\u00e7\u0131klama",
"amount": "Miktar",
"budget": "B\u00fct\u00e7e",
"category": "Kategori",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "tr"

View File

@@ -6,7 +6,14 @@
"net_worth": "T\u00e0i s\u1ea3n th\u1ef1c",
"paid": "\u0110\u00e3 thanh to\u00e1n",
"yourAccounts": "T\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n",
"go_to_asset_accounts": "Xem t\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n"
"go_to_asset_accounts": "Xem t\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n",
"transaction_table_description": "A table containing your transactions",
"account": "T\u00e0i kho\u1ea3n",
"description": "S\u1ef1 mi\u00eau t\u1ea3",
"amount": "S\u1ed1 ti\u1ec1n",
"budget": "Ng\u00e2n s\u00e1ch",
"category": "Danh m\u1ee5c",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "vi"

View File

@@ -6,7 +6,14 @@
"net_worth": "\u51c0\u503c",
"paid": "\u5df2\u4ed8\u6b3e",
"yourAccounts": "\u60a8\u7684\u5e10\u6237",
"go_to_asset_accounts": "\u68c0\u89c6\u60a8\u7684\u8d44\u4ea7\u5e10\u6237"
"go_to_asset_accounts": "\u68c0\u89c6\u60a8\u7684\u8d44\u4ea7\u5e10\u6237",
"transaction_table_description": "A table containing your transactions",
"account": "\u5e10\u6237",
"description": "\u63cf\u8ff0",
"amount": "\u91d1\u989d",
"budget": "\u9884\u7b97",
"category": "\u5206\u7c7b",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "zh-cn"

View File

@@ -6,7 +6,14 @@
"net_worth": "\u6de8\u503c",
"paid": "\u5df2\u4ed8\u6b3e",
"yourAccounts": "\u60a8\u7684\u5e33\u6236",
"go_to_asset_accounts": "\u6aa2\u8996\u60a8\u7684\u8cc7\u7522\u5e33\u6236"
"go_to_asset_accounts": "\u6aa2\u8996\u60a8\u7684\u8cc7\u7522\u5e33\u6236",
"transaction_table_description": "A table containing your transactions",
"account": "\u5e33\u6236",
"description": "\u63cf\u8ff0",
"amount": "\u91d1\u984d",
"budget": "\u9810\u7b97",
"category": "\u5206\u985e",
"opposing_account": "Opposing account"
},
"config": {
"html_language": "zh-tw"

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -7,9 +7,9 @@
"split_transaction_title": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03bc\u03b5 \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03cc",
"errors_submission": "\u03a5\u03c0\u03ae\u03c1\u03be\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf \u03bb\u03ac\u03b8\u03bf\u03c2 \u03bc\u03b5 \u03c4\u03b7\u03bd \u03c5\u03c0\u03bf\u03b2\u03bf\u03bb\u03ae \u03c3\u03b1\u03c2. \u0395\u03bb\u03ad\u03b3\u03be\u03c4\u03b5 \u03c4\u03b1 \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03c4\u03c9 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03b1.",
"split": "\u0394\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2",
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been updated.",
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">\u0397 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae #{ID} (\"{title}\")<\/a> \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03b5\u03af.",
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">\u0397 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae #{ID}<\/a> \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03b8\u03b5\u03af.",
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">\u0397 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae #{ID}<\/a> \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03b5\u03af.",
"transaction_journal_information": "\u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
"no_budget_pointer": "\u03a6\u03b1\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c0\u03c9\u03c2 \u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03bf\u03c1\u03af\u03c3\u03b5\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03cd\u03c2 \u03b1\u03ba\u03cc\u03bc\u03b7. \u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03c4\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf\u03bd \u03c3\u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 <a href=\"\/budgets\">\u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03ce\u03bd<\/a>. \u039f\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af \u03c3\u03b1\u03c2 \u03b2\u03bf\u03b7\u03b8\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03c0\u03b9\u03b2\u03bb\u03ad\u03c0\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2 \u03c3\u03b1\u03c2.",
"source_account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2",
@@ -44,34 +44,34 @@
"edit": "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1",
"delete": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae",
"name": "\u038c\u03bd\u03bf\u03bc\u03b1",
"profile_whoops": "Whoops!",
"profile_something_wrong": "Something went wrong!",
"profile_try_again": "Something went wrong. Please try again.",
"profile_oauth_clients": "OAuth Clients",
"profile_oauth_no_clients": "You have not created any OAuth clients.",
"profile_oauth_clients_header": "Clients",
"profile_oauth_client_id": "Client ID",
"profile_oauth_client_name": "Name",
"profile_oauth_client_secret": "Secret",
"profile_oauth_create_new_client": "Create New Client",
"profile_oauth_create_client": "Create Client",
"profile_oauth_edit_client": "Edit Client",
"profile_oauth_name_help": "Something your users will recognize and trust.",
"profile_oauth_redirect_url": "Redirect URL",
"profile_oauth_redirect_url_help": "Your application's authorization callback URL.",
"profile_authorized_apps": "Authorized applications",
"profile_authorized_clients": "Authorized clients",
"profile_scopes": "Scopes",
"profile_revoke": "Revoke",
"profile_personal_access_tokens": "Personal Access Tokens",
"profile_personal_access_token": "Personal Access Token",
"profile_personal_access_token_explanation": "Here is your new personal access token. This is the only time it will be shown so don't lose it! You may now use this token to make API requests.",
"profile_no_personal_access_token": "You have not created any personal access tokens.",
"profile_create_new_token": "Create new token",
"profile_create_token": "Create token",
"profile_create": "Create",
"profile_save_changes": "Save changes",
"default_group_title_name": "(ungrouped)",
"profile_whoops": "\u039f\u03cd\u03c0\u03c2!",
"profile_something_wrong": "\u039a\u03ac\u03c4\u03b9 \u03c0\u03ae\u03b3\u03b5 \u03c3\u03c4\u03c1\u03b1\u03b2\u03ac!",
"profile_try_again": "\u039a\u03ac\u03c4\u03b9 \u03c0\u03ae\u03b3\u03b5 \u03c3\u03c4\u03c1\u03b1\u03b2\u03ac. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03c4\u03b5 \u03be\u03b1\u03bd\u03ac.",
"profile_oauth_clients": "\u03a0\u03b5\u03bb\u03ac\u03c4\u03b5\u03c2 OAuth",
"profile_oauth_no_clients": "\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b5\u03c2 OAuth.",
"profile_oauth_clients_header": "\u03a0\u03b5\u03bb\u03ac\u03c4\u03b5\u03c2",
"profile_oauth_client_id": "\u0391\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7",
"profile_oauth_client_name": "\u038c\u03bd\u03bf\u03bc\u03b1",
"profile_oauth_client_secret": "\u039c\u03c5\u03c3\u03c4\u03b9\u03ba\u03cc",
"profile_oauth_create_new_client": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03bd\u03ad\u03bf\u03c5 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7",
"profile_oauth_create_client": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7",
"profile_oauth_edit_client": "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7",
"profile_oauth_name_help": "\u039a\u03ac\u03c4\u03b9 \u03c0\u03bf\u03c5 \u03bf\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 \u03c3\u03b1\u03c2 \u03b8\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03af\u03b6\u03bf\u03c5\u03bd \u03ba\u03b1\u03b9 \u03b8\u03b1 \u03b5\u03bc\u03c0\u03b9\u03c3\u03c4\u03b5\u03cd\u03bf\u03bd\u03c4\u03b1\u03b9.",
"profile_oauth_redirect_url": "URL \u03b1\u03bd\u03b1\u03ba\u03b1\u03c4\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7\u03c2",
"profile_oauth_redirect_url_help": "To authorization callback URL \u03c4\u03b7\u03c2 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae\u03c2 \u03c3\u03b1\u03c2.",
"profile_authorized_apps": "\u0395\u03be\u03bf\u03c5\u03c3\u03b9\u03bf\u03b4\u03bf\u03c4\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2",
"profile_authorized_clients": "\u0395\u03be\u03bf\u03c5\u03c3\u03b9\u03bf\u03b4\u03bf\u03c4\u03b7\u03bc\u03ad\u03bd\u03bf\u03b9 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b5\u03c2",
"profile_scopes": "\u03a0\u03b5\u03b4\u03af\u03b1 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae\u03c2",
"profile_revoke": "\u0391\u03bd\u03ac\u03ba\u03bb\u03b7\u03c3\u03b7",
"profile_personal_access_tokens": "\u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ac \u03c0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03ae\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2",
"profile_personal_access_token": "\u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ac \u03c0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03ae\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2",
"profile_personal_access_token_explanation": "\u0395\u03b4\u03ce \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf \u03bd\u03ad\u03bf \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03cc \u03c0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03ae\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2. \u0391\u03c5\u03c4\u03ae \u03b5\u03af\u03bd\u03b1\u03b9 \u03b7 \u03bc\u03cc\u03bd\u03b7 \u03c6\u03bf\u03c1\u03ac \u03c0\u03bf\u03c5 \u03b8\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03b5\u03af, \u03bf\u03c0\u03cc\u03c4\u03b5 \u03bc\u03b7 \u03c4\u03bf \u03c7\u03ac\u03c3\u03b5\u03c4\u03b5! \u039c\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03cc \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03ba\u03bb\u03ae\u03c3\u03b5\u03b9\u03c2 API.",
"profile_no_personal_access_token": "\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03c0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03ac \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ac \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2.",
"profile_create_new_token": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03bd\u03ad\u03bf\u03c5 \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd",
"profile_create_token": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd",
"profile_create": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1",
"profile_save_changes": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd",
"default_group_title_name": "(\u03c7\u03c9\u03c1\u03af\u03c2 \u03bf\u03bc\u03ac\u03b4\u03b1)",
"piggy_bank": "\u039a\u03bf\u03c5\u03bc\u03c0\u03b1\u03c1\u03ac\u03c2"
},
"form": {

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'If the currency you normally use is not listed do not worry. You can create your own currencies under Options > Currencies.',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'Vaše účty',
'your_accounts' => 'Přehled vašeho účtu',
'category_overview' => 'Přehled kategorie',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Succesfully deleted group ":title"',
'object_group' => 'Group',
//
];

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'Wenn die Währung, die Sie normalerweise verwenden, nicht aufgeführt ist, machen Sie sich keine Sorgen. Unter Optionen ➜ Währungen können Sie eigene Währungen anlegen.',
// home page:
'transaction_table_description' => 'Eine Tabelle mit Ihren Buchungen',
'opposing_account' => 'Gegenkonto',
'yourAccounts' => 'Deine Konten',
'your_accounts' => 'Kontenübersicht',
'category_overview' => 'Kategorieübersicht',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Gruppe „:title” erfolgreich entfernt',
'object_group' => 'Gruppe',
//
];

View File

@@ -248,7 +248,7 @@ return [
'update_check_error' => 'Παρουσιάστηκε σφάλμα κατά τον έλεγχο για ενημερώσεις: :error',
'unknown_error' => 'Άγνωστο σφάλμα. Μας συγχωρείτε γι αυτό.',
'just_new_release' => 'Μια νέα έκδοση είναι διαθέσιμη! Η εκδοσή :version κυκλοφόρησε :date. Όταν μια έκδοση είναι πολύ νέα είναι καλύτερο να περιμένετε λίγες μέρες για να είμαστε σίγουροι για τη νέα έκδοση.',
'disabled_but_check' => 'You disabled update checking. So don\'t forget to check for updates yourself every now and then. Thank you!',
'disabled_but_check' => 'Απενεργοποιήσατε τον έλεγχο ενημερώσεων. Επομένως, μην ξεχάσετε να ελέγχετε μόνος σας για τυχόν ενημερώσεις. Ευχαριστώ!',
'admin_update_channel_title' => 'Κανάλι ενημερώσεων',
'admin_update_channel_explain' => 'Το Firefly III έχει τρία "κανάλια" ενημερώσεων που καθορίζουν πόσο μπροστά είστε σε θέματα χαρακτηριστικών, βελτιστοποιήσεων και σφαλμάτων. Χρησιμοποιήστε το "beta" κανάλι εάν είστε τολμηροί και το "alpha" εάν είστε ριψοκίνδυνοι.',
'update_channel_stable' => 'Σταθερή. Όλα λειτουργούν όπως προβλέπονται.',
@@ -258,8 +258,8 @@ return [
// search
'search' => 'Αναζήτηση',
'search_query' => 'Ερώτημα',
'search_found_transactions' => 'Firefly III found :count transaction in :time seconds.|Firefly III found :count transactions in :time seconds.',
'search_found_more_transactions' => 'Firefly III found more than :count transactions in :time seconds.',
'search_found_transactions' => 'Το Firefly III βρήκε :count συναλλαγή σε :time δευτερόλεπτα.|Το Firefly III βρήκε :count συναλλαγές σε :time δευτερόλεπτα.',
'search_found_more_transactions' => 'Το Firefly III βρήκε περισσότερες από :count συναλλαγές σε :time δευτερόλεπτα.',
'search_for_query' => 'Το Firefly III αναζητεί για συναλλαγές που περιέχουν όλες αυτές τις λέξεις: <span class="text-info">:query</span>',
'search_modifier_amount_is' => 'Το ποσό είναι ακριβώς :value',
'search_modifier_amount' => 'Το ποσό είναι ακριβώς :value',
@@ -285,7 +285,7 @@ return [
'search_modifier_created_on' => 'Η συναλλαγή δημιουργήθηκε στις :value',
'search_modifier_updated_on' => 'Η συναλλαγή ενημερώθηκε στις :value',
'search_modifier_external_id' => 'External ID is ":value"',
'search_modifier_internal_reference' => 'Internal reference is ":value"',
'search_modifier_internal_reference' => 'Η εσωτερική αναφορά είναι ":value"',
'modifiers_applies_are' => 'Οι ακόλουθοι τροποποιητές εφαρμόστηκαν στην αναζήτηση επίσης:',
'general_search_error' => 'Ένα σφάλμα προέκυψε κατά την αναζήτηση. Παρακαλώ ελέγξτε τα αρχεία καταγραφής για περισσότερες πληροφορίες.',
'search_box' => 'Αναζήτηση',
@@ -433,12 +433,12 @@ return [
'rule_trigger_description_is_choice' => 'Η περιγραφή είναι..',
'rule_trigger_description_is' => 'Η περιγραφή είναι ":trigger_value"',
'rule_trigger_date_is_choice' => 'Transaction date is..',
'rule_trigger_date_is' => 'Transaction date is ":trigger_value"',
'rule_trigger_date_before_choice' => 'Transaction date is before..',
'rule_trigger_date_before' => 'Transaction date is before ":trigger_value"',
'rule_trigger_date_after_choice' => 'Transaction date is after..',
'rule_trigger_date_after' => 'Transaction date is after ":trigger_value"',
'rule_trigger_date_is_choice' => 'Η ημερομηνία συναλλαγής είναι..',
'rule_trigger_date_is' => 'Η ημερομηνία συναλλαγής είναι ":trigger_value"',
'rule_trigger_date_before_choice' => 'Η ημερομηνία συναλλαγής είναι πριν από τις..',
'rule_trigger_date_before' => 'Η ημερομηνία συναλλαγής είναι πριν από τις ":trigger_value"',
'rule_trigger_date_after_choice' => 'Η ημερομηνία συναλλαγής είναι μετά από τις..',
'rule_trigger_date_after' => 'Η ημερομηνία συναλλαγής είναι μετά από τις ":trigger_value"',
'rule_trigger_budget_is_choice' => 'Ο προϋπολογισμός είναι..',
'rule_trigger_budget_is' => 'Ο προϋπολογισμός είναι ":trigger_value"',
@@ -446,8 +446,8 @@ return [
'rule_trigger_tag_is' => 'Μία ετικέτα είναι ":trigger_value"',
'rule_trigger_currency_is_choice' => 'Το νόμισμα της συναλλαγής είναι..',
'rule_trigger_currency_is' => 'Το νόμισμα της συναλλαγής είναι ":trigger_value"',
'rule_trigger_foreign_currency_is_choice' => 'Transaction foreign currency is..',
'rule_trigger_foreign_currency_is' => 'Transaction foreign currency is ":trigger_value"',
'rule_trigger_foreign_currency_is_choice' => 'Το ξένο νόμισμα της συναλλαγής είναι..',
'rule_trigger_foreign_currency_is' => 'Το ξένο νόμισμα της συναλλαγής είναι ":trigger_value"',
'rule_trigger_has_attachments_choice' => 'Έχει τουλάχιστον τόσα συνημμένα',
'rule_trigger_has_attachments' => 'Has at least :count attachment|Has at least :count attachments',
'rule_trigger_store_journal' => 'Όταν δημιουργείται μια συναλλαγή',
@@ -655,10 +655,10 @@ return [
'secure_pw_working' => 'Τσεκάροντας αυτό το πλαίσιο, το Firefly III θα στείλει τους 5 πρώτους χαρακτήρες του SHA1 hash του κωδικού σας στον <a href="https://www.troyhunt.com/introducing-306-million-freely-downloadable-pwned-passwords/">Ιστότοπο του Troy Hunt</a> για να δει εάν είναι στη λίστα. Αυτό θα σας εμποδίσει να χρησιμοποιήσετε ένα μη ασφαλές κωδικό όπως συνιστάται στη τελευταία <a href="https://pages.nist.gov/800-63-3/sp800-63b.html">Ειδική Έκδοση NIST</a> πάνω στο θέμα αυτό.',
'secure_pw_should' => 'Θα πρέπει να τσεκάρω αυτό το πλαίσιο;',
'secure_pw_long_password' => 'Ναι. Πάντα να επιβεβαιώνετε ότι ο κωδικός σας είναι ασφαλής.',
'command_line_token' => 'Τεκμήριο γραμμής εντολών',
'explain_command_line_token' => 'You need this token to perform command line options, such as exporting data. Without it, that sensitive command will not work. Do not share your command line token. Nobody will ask you for this token, not even me. If you fear you lost this, or when you\'re paranoid, regenerate this token using the button.',
'regenerate_command_line_token' => 'Αναδημιουργία τεκμηρίου εντολής γραμμών',
'token_regenerated' => 'Ένα νέο τεκμήριο γραμμής εντολών δημιουργήθηκε',
'command_line_token' => 'Διακριτικό γραμμής εντολών',
'explain_command_line_token' => 'Χρειάζεστε αυτό το διακριτικό για να εκτελέσετε εργασίες γραμμής εντολών, όπως εξαγωγή δεδομένων. Χωρίς αυτό, οι εντολές δε θα λειτουργήσουν. Μην κοινοποιήσετε το διακριτικό της γραμμής εντολών. Κανείς δεν θα σας ζητήσει αυτό το διακριτικό. Εάν φοβάστε ότι το χάσατε, ή δε χρειάζεστε κάποιο ιδιαίτερο λόγο, δημιουργήστε ξανά αυτό το διακριτικό χρησιμοποιώντας το κουμπί.',
'regenerate_command_line_token' => 'Αναδημιουργία διακριτικού γραμμής εντολών',
'token_regenerated' => 'Δημιουργήθηκε ένα νέο διακριτικό γραμμής εντολών',
'change_your_email' => 'Αλλάξτε την διεύθυνση email σας',
'email_verification' => 'Ένα μήνυμα email θα σταλεί στην παλιά ΚΑΙ στη νέα σας διεύθυνση email. Για λόγους ασφαλείας, δεν θα μπορέσετε να συνδεθείτε εώς ότου επιβεβαιώσετε τη νέα σας διεύθυνση email. Εάν δεν είστε σίγουροι ότι η δική σας εγκατάσταση Firefly III μπορεί να στείλει email, παρακαλώ μην χρησιμοποιήσετε αυτή τη δυνατότητα. Εάν είστε διαχειριστής μπορείτε να δοκιμάσετε αυτή τη λειτουργία στη <a href="/admin">Διαχείριση</a>.',
'email_changed_logout' => 'Μέχρι να επιβεβαιώσετε την διεύθυνση email σας, δεν μπορείτε να συνδεθείτε.',
@@ -676,19 +676,19 @@ return [
'profile_oauth_create_new_client' => 'Δημιουργία νέου πελάτη',
'profile_oauth_create_client' => 'Δημιουργία πελάτη',
'profile_oauth_edit_client' => 'Επεξεργασία πελάτη',
'profile_oauth_name_help' => 'Something your users will recognize and trust.',
'profile_oauth_name_help' => 'Κάτι που οι χρήστες σας θα αναγνωρίζουν και θα εμπιστεύονται.',
'profile_oauth_redirect_url' => 'URL ανακατεύθυνσης',
'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.',
'profile_oauth_redirect_url_help' => 'To authorization callback URL της εφαρμογής σας.',
'profile_authorized_apps' => 'Εξουσιοδοτημένες εφαρμογές',
'profile_authorized_clients' => 'Εξουσιοδοτημένοι πελάτες',
'profile_scopes' => 'Scopes',
'profile_scopes' => 'Πεδία εφαρμογής',
'profile_revoke' => 'Ανάκληση',
'profile_personal_access_tokens' => 'Personal Access Tokens',
'profile_personal_access_token' => 'Personal Access Token',
'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.',
'profile_no_personal_access_token' => 'You have not created any personal access tokens.',
'profile_create_new_token' => 'Create new token',
'profile_create_token' => 'Create token',
'profile_personal_access_tokens' => 'Διακριτικά προσωπικής πρόσβασης',
'profile_personal_access_token' => 'Διακριτικά προσωπικής πρόσβασης',
'profile_personal_access_token_explanation' => 'Εδώ είναι το νέο διακριτικό προσωπικής πρόσβασης. Αυτή είναι η μόνη φορά που θα εμφανιστεί, οπότε μη το χάσετε! Μπορείτε να χρησιμοποιείτε αυτό το διακριτικό για να κάνετε κλήσεις API.',
'profile_no_personal_access_token' => 'Δεν έχετε δημιουργήσει προσωπικά διακριτικά πρόσβασης.',
'profile_create_new_token' => 'Δημιουργία νέου διακριτικού',
'profile_create_token' => 'Δημιουργία διακριτικού',
'profile_create' => 'Δημιουργία',
'profile_save_changes' => 'Αποθήκευση αλλαγών',
'profile_whoops' => 'Ούπς!',
@@ -812,7 +812,7 @@ return [
'options' => 'Επιλογές',
// budgets:
'budget_limit_not_in_range' => 'This amount applies from :start to :end.',
'budget_limit_not_in_range' => 'Αυτό το ποσό ισχύει από :start έως :end.',
'total_available_budget' => 'Συνολικός διαθέσιμος προϋπολογισμός (μεταξύ :start και :end)',
'total_available_budget_in_currency' => 'Συνολικός διαθέσιμος προϋπολογισμός σε :currency',
'see_below' => 'δες παρακάτω',
@@ -828,7 +828,7 @@ return [
'ab_basic_modal_explain' => 'Χρησιμοποιήστε αυτή τη φόρμα για να υποδείξετε πόσα μπορείτε να προϋπολογίσετε (συνολικά, σε :currency) κατά την αναφερόμενη περίοδο.',
'createBudget' => 'Νέος προϋπολογισμός',
'invalid_currency' => 'Μη έγκυρο νόμισμα',
'invalid_amount' => 'Please enter an amount',
'invalid_amount' => 'Παρακαλώ εισάγετε ένα ποσό',
'set_ab' => 'Το διαθέσιμο ποσό προϋπολογισμού έχει οριστεί',
'updated_ab' => 'Το διαθέσιμο ποσό προϋπολογισμού έχει ενημερωθεί',
'deleted_ab' => 'Το διαθέσιμο ποσό προϋπολογισμού έχει διαγραφεί',
@@ -866,11 +866,11 @@ return [
'auto_budget_help' => 'Μπορείτε να διαβάσετε περισσότερα σχετικά με αυτή τη λειτουργία στη βοήθεια. Κάντε κλικ στο εικονίδιο (?) επάνω δεξιά.',
'auto_budget_reset_icon' => 'Αυτός ο προϋπολογισμός θα οριστεί περιοδικά',
'auto_budget_rollover_icon' => 'Το ποσό του προϋπολογισμού θα αυξηθεί περιοδικά',
'remove_budgeted_amount' => 'Remove budgeted amount in :currency',
'remove_budgeted_amount' => 'Κατάργηση ποσού προϋπολογισμού σε :currency',
// bills:
'not_expected_period' => 'Not expected this period',
'not_or_not_yet' => 'Not (yet)',
'not_expected_period' => 'Δεν αναμένεται αυτή την περίοδο',
'not_or_not_yet' => 'Όχι (ακόμη)',
'match_between_amounts' => 'Αντιστοιχίες πάγιου έξοδου προς συναλλαγές μεταξύ :low και :high.',
'running_again_loss' => 'Οι συναλλαγές που έχουν συνδεθεί προηγουμένως με αυτό το πάγιο έξοδο ενδέχεται να χάσουν τη σύνδεσή τους, αν δεν συμφωνούν (πλέον) με τον κανόνα(ες).',
'bill_related_rules' => 'Συσχετιζόμενοι κανόνες με αυτό το πάγιο έξοδο',
@@ -1103,9 +1103,9 @@ return [
'unknown_journal_error' => 'Δεν ήταν δυνατή η αποθήκευση της συναλλαγής. Ελέγξτε τα αρχεία καταγραφής.',
'attachment_not_found' => 'Αυτό το συνημμένο δεν βρέθηκε.',
'journal_link_bill' => 'Αυτή η συναλλαγή συνδέεται με το πάγιο έξοδο <a href=":route">:name</a>. Για να καταργήσετε τη σύνδεση, καταργήστε την επιλογή στο κουτάκι. Χρησιμοποιήστε κανόνες για να το συνδέσετε με ένα άλλο πάγιο έξοδο.',
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
'transaction_stored_link' => '<a href="transactions/show/{ID}">Η συναλλαγή #{ID} ("{title}")</a> έχει αποθηκευτεί.',
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Η συναλλαγή #{ID}</a> έχει αποθηκευτεί.',
'transaction_updated_link' => '<a href="transactions/show/{ID}">Η συναλλαγή #{ID}</a> έχει ενημερωθεί.',
// new user:
'welcome' => 'Καλωσήρθατε στο Firefly III!',
@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'Αν δεν περιλαμβάνεται το νόμισμα που χρησιμοποιείτε, μην ανησυχείτε. Μπορείτε να δημιουργήσετε δικά σας νομίσματα στο Επιλογές > Νομίσματα.',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'Οι λογαριασμοί σας',
'your_accounts' => 'Επισκόπηση λογαριασμού',
'category_overview' => 'Επισκόπηση κατηγορίας',
@@ -1410,10 +1412,10 @@ return [
'user_data_information' => 'Δεδομένα χρήστη',
'user_information' => 'Πληροφορίες χρήστη',
'total_size' => 'συνολικό μέγεθος',
'budget_or_budgets' => ':count budget|:count budgets',
'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount',
'budget_or_budgets' => ':count προϋπολογισμός|:count προϋπολογισμοί',
'budgets_with_limits' => ':count προϋπολογισμός με καθορισμένο ποσό|:count προϋπολογισμοί με καθορισμένο ποσό',
'nr_of_rules_in_total_groups' => ':count_rules κανόνες σε :count_groups ομάδες κανόνων',
'tag_or_tags' => ':count tag|:count tags',
'tag_or_tags' => ':count ετικέτα|:count ετικέτες',
'configuration_updated' => 'Η παραμετροποίηση ενημερώθηκε',
'setting_is_demo_site' => 'Ιστοσελίδα επίδειξης',
'setting_is_demo_site_explain' => 'Εάν επιλέξετε αυτό το κουτάκι, η εγκατάσταση θα συμπεριφέρεται σαν ιστοσελίδα επίδειξης, το οποίο μπορεί να έχει παράξενες παρενέργειες.',
@@ -1457,7 +1459,7 @@ return [
'link_type_help_name' => 'Πχ. "Διπλότυπα"',
'link_type_help_inward' => 'Πχ. "διπλότυπα"',
'link_type_help_outward' => 'Πχ. "Είναι διπλότυπο από"',
'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:',
'save_connections_by_moving' => 'Αποθηκεύστε το σύνδεσμο μεταξύ αυτών των συναλλαγών μετακινώντας τις σε έναν άλλο τύπο συνδέσμου:',
'do_not_save_connection' => '(μην αποθηκεύσεις την σύνδεση)',
'link_transaction' => 'Σύνδεση συναλλαγής',
'link_to_other_transaction' => 'Σύνδεση αυτής της συναλλαγής με μια άλλη συναλλαγή',
@@ -1660,7 +1662,7 @@ return [
'telemetry_disabled_now_what' => 'Αν θέλετε, μπορείτε να ενεργοποιήσετε την τηλεμετρία στο αρχείο .env ή στην παραμετροποίηση του Docker.',
'telemetry_collected_info' => 'Συγκεντρωμένες πληροφορίες',
'no_telemetry_present' => 'Το Firefly III δεν έχει συγκεντρώσει αρχεία τηλεμετρίας.',
'records_telemetry_present' => 'Firefly III has collected :count telemetry record.|Firefly III has collected :count telemetry records.',
'records_telemetry_present' => 'Το Firefly III έχει συλλέξει :count εγγραφή τηλεμετρίας.|Το Firefly III έχει συλλέξει :count εγγραφές τηλεμετρίας.',
'telemetry_button_view' => 'Προβολή τηλεμετρίας',
'telemetry_button_delete' => 'Διαγραφή όλης της τηλεμετρίας',
'telemetry_admin_overview' => 'Επισκόπηση τηλεμετρίας',
@@ -1678,7 +1680,7 @@ return [
// debug page
'debug_page' => 'Σελίδα αποσφαλμάτωσης',
'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub issue</a>. It will generate a beautiful table that can be used to quickly diagnose your problem.',
'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.',
'debug_pretty_table' => 'Εάν αντιγράψετε / επικολλήσετε το παρακάτω πλαίσιο σε ένα GitHub issue, θα δημιουργήσει ένα πίνακα. Μην περιβάλλετε αυτό το κείμενο με backticks ή εισαγωγικά.',
'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub issue</a>. However, the content of this box may contain private information such as account names, transaction details or email addresses.',
// object groups
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Επιτυχής διαγραφή της ομάδας ":title"',
'object_group' => 'Ομάδα',
//
];

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'If the currency you normally use is not listed do not worry. You can create your own currencies under Options > Currencies.',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'Your accounts',
'your_accounts' => 'Your account overview',
'category_overview' => 'Category overview',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Succesfully deleted group ":title"',
'object_group' => 'Group',
//
];

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'If the currency you normally use is not listed do not worry. You can create your own currencies under Options > Currencies.',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'Your accounts',
'your_accounts' => 'Your account overview',
'category_overview' => 'Category overview',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Succesfully deleted group ":title"',
'object_group' => 'Group',
//
];

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'Si la moneda que normalmente utiliza no se encuentra listada, no se preocupe. Puede crear su propia moneda desde Opciones>Monedas.',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'Tus cuentas',
'your_accounts' => 'Resumen de su cuenta',
'category_overview' => 'Resumen de categorías',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Succesfully deleted group ":title"',
'object_group' => 'Group',
//
];

View File

@@ -59,7 +59,7 @@ return [
'delete_journal_link' => 'Poista linkki tapahtumien väliltä',
'telemetry_index' => 'Käyttötiedot',
'telemetry_view' => 'Tarkastele käyttötietoja',
'edit_object_group' => 'Edit group ":title"',
'delete_object_group' => 'Delete group ":title"',
'logout_others' => 'Logout other sessions'
'edit_object_group' => 'Muokkaa ryhmää ":title"',
'delete_object_group' => 'Poista ryhmä ":title"',
'logout_others' => 'Kirjaudu ulos muista istunnoista'
];

View File

@@ -24,13 +24,13 @@ declare(strict_types=1);
return [
// common items
'greeting' => 'Hi there,',
'greeting' => 'Hei siellä,',
'closing' => 'Beep boop,',
'signature' => 'The Firefly III Mail Robot',
'signature' => 'Firefly III Postirobotti',
'footer_ps' => 'PS: This message was sent because a request from IP :ipAddress triggered it.',
// admin test
'admin_test_subject' => 'A test message from your Firefly III installation',
'admin_test_subject' => 'Testiviesti Firefly III applikaatioltasi',
'admin_test_body' => 'This is a test message from your Firefly III instance. It was sent to :email.',
// access token created
@@ -48,7 +48,7 @@ return [
'registered_doc_text' => 'If you haven\'t already, please read the first use guide and the full description.',
'registered_closing' => 'Nauti!',
'registered_firefly_iii_link' => 'Firefly III:',
'registered_pw_reset_link' => 'Password reset:',
'registered_pw_reset_link' => 'Salasanan nollaus:',
'registered_doc_link' => 'Documentation:',
// email change
@@ -56,10 +56,10 @@ return [
'email_change_body_to_new' => 'You or somebody with access to your Firefly III account has changed your email address. If you did not expect this message, please ignore and delete it.',
'email_change_body_to_old' => 'You or somebody with access to your Firefly III account has changed your email address. If you did not expect this to happen, you <strong>must</strong> follow the "undo"-link below to protect your account!',
'email_change_ignore' => 'If you initiated this change, you may safely ignore this message.',
'email_change_old' => 'The old email address was: :email',
'email_change_old_strong' => 'The old email address was: <strong>:email</strong>',
'email_change_new' => 'The new email address is: :email',
'email_change_new_strong' => 'The new email address is: <strong>:email</strong>',
'email_change_old' => 'Vanha sähköpostiosoite oli: :email',
'email_change_old_strong' => 'Vanha sähköpostiosoite oli: <strong>:email</strong>',
'email_change_new' => 'Uusi sähköpostiosoite on: :email',
'email_change_new_strong' => 'Uusi sähköpostiosoite on: <strong>:email</strong>',
'email_change_instructions' => 'You cannot use Firefly III until you confirm this change. Please follow the link below to do so.',
'email_change_undo_link' => 'To undo the change, follow this link:',
@@ -78,12 +78,12 @@ return [
'error_subject' => 'Caught an error in Firefly III',
'error_intro' => 'Firefly III v:version ran into an error: <span style="font-family: monospace;">:errorMessage</span>.',
'error_type' => 'The error was of type ":class".',
'error_timestamp' => 'The error occurred on/at: :time.',
'error_timestamp' => 'Virhe tapahtui kello: :time.',
'error_location' => 'This error occurred in file "<span style="font-family: monospace;">:file</span>" on line :line with code :code.',
'error_user' => 'The error was encountered by user #:id, <a href="mailto::email">:email</a>.',
'error_no_user' => 'There was no user logged in for this error or no user was detected.',
'error_ip' => 'The IP address related to this error is: :ip',
'error_url' => 'URL is: :url',
'error_url' => 'URL on: :url',
'error_user_agent' => 'User agent: :userAgent',
'error_stacktrace' => 'The full stacktrace is below. If you think this is a bug in Firefly III, you can forward this message to <a href="mailto:james@firefly-iii.org?subject=BUG!">james@firefly-iii.org</a>. This can help fix the bug you just encountered.',
'error_github_html' => 'If you prefer, you can also open a new issue on <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a>.',

View File

@@ -23,7 +23,7 @@
declare(strict_types=1);
return [
'404_header' => 'Firefly III cannot find this page.',
'404_header' => 'Firefly III ei löydä tätä sivua.',
'404_page_does_not_exist' => 'The page you have requested does not exist. Please check that you have not entered the wrong URL. Did you make a typo perhaps?',
'404_send_error' => 'If you were redirected to this page automatically, please accept my apologies. There is a mention of this error in your log files and I would be grateful if you sent me the error to me.',
'404_github_link' => 'If you are sure this page should exist, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
@@ -36,16 +36,16 @@ return [
'error_not_recoverable' => 'Unfortunately, this error was not recoverable :(. Firefly III broke. The error is:',
'error' => 'Virhe',
'error_location' => 'This error occured in file <span style="font-family: monospace;">:file</span> on line :line with code :code.',
'stacktrace' => 'Stack trace',
'more_info' => 'More information',
'stacktrace' => 'Pinojäljitys',
'more_info' => 'Lisää tietoja',
'collect_info' => 'Please collect more information in the <code>storage/logs</code> directory where you will find log files. If you\'re running Docker, use <code>docker logs -f [container]</code>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">the FAQ</a>.',
'github_help' => 'Get help on GitHub',
'github_instructions' => 'You\'re more than welcome to open a new issue <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">on GitHub</a></strong>.',
'use_search' => 'Use the search!',
'use_search' => 'Käytä hakua!',
'include_info' => 'Include the information <a href=":link">from this debug page</a>.',
'tell_more' => 'Tell us more than "it says Whoops!"',
'include_logs' => 'Include error logs (see above).',
'what_did_you_do' => 'Tell us what you were doing.',
'tell_more' => 'Kerro meille enemmän kuin "se sanoo Whoops!"',
'include_logs' => 'Sisällytä virhelokit (katso yllä).',
'what_did_you_do' => 'Kerro meille mitä olit tekemässä.',
];

View File

@@ -204,12 +204,12 @@ return [
'authorization' => 'Valtuutus',
'active_bills_only' => 'vain aktiiviset laskut',
'active_exp_bills_only' => 'vain aktiiviset ja odotettavissa olevat laskut',
'per_period_sum_1D' => 'Expected daily costs',
'per_period_sum_1W' => 'Expected weekly costs',
'per_period_sum_1M' => 'Expected monthly costs',
'per_period_sum_1D' => 'Odotettavissa olevat päivittäiset kulut',
'per_period_sum_1W' => 'Odotettavissa olevat viikottaiset kulut',
'per_period_sum_1M' => 'Odotettavissa olevat kuukausittaiset kulut',
'per_period_sum_3M' => 'Expected quarterly costs',
'per_period_sum_6M' => 'Expected half-yearly costs',
'per_period_sum_1Y' => 'Expected yearly costs',
'per_period_sum_1Y' => 'Odotettavissa olevat vuotuiset kulut',
'average_per_bill' => 'keskiarvo laskuittain',
'expected_total' => 'odotettavissa yhteensä',
'reconciliation_account_name' => ':name reconciliation (:currency)',
@@ -285,7 +285,7 @@ return [
'search_modifier_created_on' => 'Tapahtuma luotiin :value',
'search_modifier_updated_on' => 'Tapahtumaa päivitettiin viimeksi :value',
'search_modifier_external_id' => 'External ID is ":value"',
'search_modifier_internal_reference' => 'Internal reference is ":value"',
'search_modifier_internal_reference' => 'Sisäinen viite on ":value"',
'modifiers_applies_are' => 'Seuraavat muokkaukset vaikuttavat myös hakuun:',
'general_search_error' => 'Haussa tapahtui virhe. Virhe tallennettiin lokitiedostoon.',
'search_box' => 'Hae',
@@ -306,7 +306,7 @@ return [
'yearly' => 'vuosittain',
// rules
'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.',
'cannot_fire_inactive_rules' => 'Et voi suorittaa aktivoimattomia sääntöjä.',
'rules' => 'Säännöt',
'rule_name' => 'Säännön nimi',
'rule_triggers' => 'Sääntö toteutuu kun',
@@ -669,31 +669,31 @@ return [
'delete_local_info_only' => "Because Firefly III isn't responsible for user management or authentication handling, this function will only delete local Firefly III information.",
'profile_oauth_clients' => 'OAuth Clients',
'profile_oauth_no_clients' => 'You have not created any OAuth clients.',
'profile_oauth_clients_header' => 'Clients',
'profile_oauth_client_id' => 'Client ID',
'profile_oauth_clients_header' => 'Asiakasohjelmat',
'profile_oauth_client_id' => 'Asiakastunnus',
'profile_oauth_client_name' => 'Nimi',
'profile_oauth_client_secret' => 'Salaisuus',
'profile_oauth_create_new_client' => 'Create New Client',
'profile_oauth_create_client' => 'Create Client',
'profile_oauth_edit_client' => 'Edit Client',
'profile_oauth_name_help' => 'Something your users will recognize and trust.',
'profile_oauth_redirect_url' => 'Redirect URL',
'profile_oauth_create_new_client' => 'Luo Uusi Asiakas',
'profile_oauth_create_client' => 'Luo Asiakas',
'profile_oauth_edit_client' => 'Muokkaa asiakasta',
'profile_oauth_name_help' => 'Jotain käyttäjillesi tuttua ja luotettavaa.',
'profile_oauth_redirect_url' => 'URL:n uudelleenohjaus',
'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.',
'profile_authorized_apps' => 'Authorized applications',
'profile_authorized_clients' => 'Authorized clients',
'profile_scopes' => 'Scopes',
'profile_revoke' => 'Revoke',
'profile_personal_access_tokens' => 'Personal Access Tokens',
'profile_personal_access_token' => 'Personal Access Token',
'profile_revoke' => 'Peruuta',
'profile_personal_access_tokens' => 'Henkilökohtaiset Käyttöoikeuskoodit',
'profile_personal_access_token' => 'Henkilökohtainen Käyttöoikeuskoodi',
'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.',
'profile_no_personal_access_token' => 'You have not created any personal access tokens.',
'profile_create_new_token' => 'Create new token',
'profile_create_token' => 'Create token',
'profile_create_new_token' => 'Luo uusi tunnus',
'profile_create_token' => 'Luo tunnus',
'profile_create' => 'Luo',
'profile_save_changes' => 'Save changes',
'profile_whoops' => 'Whoops!',
'profile_something_wrong' => 'Something went wrong!',
'profile_try_again' => 'Something went wrong. Please try again.',
'profile_save_changes' => 'Tallenna muutokset',
'profile_whoops' => 'Hupsis!',
'profile_something_wrong' => 'Jokin meni vikaan!',
'profile_try_again' => 'Jokin meni vikaan. Yritä uudelleen.',
// export data:
'export_data_title' => 'Vie tietoja Firefly III:sta',
@@ -828,7 +828,7 @@ return [
'ab_basic_modal_explain' => 'Käytä tätä lomaketta arvioidessasi kuinka paljon uskot pystyväsi budjetoimaan (kokonaisuudessaan, valuutassa :currency) valitulla jaksolla.',
'createBudget' => 'Uusi budjetti',
'invalid_currency' => 'Tämä ei kelpaa valuutaksi',
'invalid_amount' => 'Please enter an amount',
'invalid_amount' => 'Anna summa',
'set_ab' => 'Käytettävissä oleva budjetti on asetettu',
'updated_ab' => 'Käytettävissä oleva budjetti on päivitetty',
'deleted_ab' => 'Käytettävissä oleva budjetti on poistettu',
@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'Älä välitä vaikka normaalisti käyttämäsi valuutta ei olisi listalla. Voit luoda omia valuuttoja Optiot > Valuutat valikossa.',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Vastatili',
'yourAccounts' => 'Omat tilisi',
'your_accounts' => 'Tiliesi yleiskuva',
'category_overview' => 'Kategorioiden tarkastelu',
@@ -1145,7 +1147,7 @@ return [
'currency' => 'Valuutta',
'preferences' => 'Asetukset',
'logout' => 'Kirjaudu ulos',
'logout_other_sessions' => 'Logout all other sessions',
'logout_other_sessions' => 'Kirjaudu ulos kaikista muista istunnoista',
'toggleNavigation' => 'Vaihda navigointia',
'searchPlaceholder' => 'Hae ...',
'version' => 'Versio',
@@ -1431,9 +1433,9 @@ return [
'send_message' => 'Lähetä viesti',
'send_test_triggered' => 'Testiviesti lähetettiin. Tarkista sähköpostisi sekä lokitiedostot.',
'give_admin_careful' => 'Käyttäjät, joille on annettu järjestelmänvalvojan oikeudet, voivat poistaa oikeudet sinulta. Ole varovainen.',
'admin_maintanance_title' => 'Maintenance',
'admin_maintanance_title' => 'Huolto',
'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance',
'admin_maintenance_clear_cache' => 'Clear cache',
'admin_maintenance_clear_cache' => 'Tyhjennä välimuisti',
'split_transaction_title' => 'Jaetun tapahtuman kuvaus',
'split_transaction_title_help' => 'Jos luot jaetun tapahtuman, kokonaisuudelle tarvitaan nimi.',
@@ -1682,18 +1684,21 @@ return [
'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub issue</a>. However, the content of this box may contain private information such as account names, transaction details or email addresses.',
// object groups
'object_groups_menu_bar' => 'Groups',
'object_groups_page_title' => 'Groups',
'object_groups_breadcrumb' => 'Groups',
'object_groups_index' => 'Overview',
'object_groups' => 'Groups',
'object_groups_menu_bar' => 'Ryhmät',
'object_groups_page_title' => 'Ryhmät',
'object_groups_breadcrumb' => 'Ryhmät',
'object_groups_index' => 'Yleiskatsaus',
'object_groups' => 'Ryhmät',
'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.',
'object_group_title' => 'Title',
'edit_object_group' => 'Edit group ":title"',
'delete_object_group' => 'Edit group ":title"',
'update_object_group' => 'Update group',
'updated_object_group' => 'Succesfully updated group ":title"',
'deleted_object_group' => 'Succesfully deleted group ":title"',
'object_group' => 'Group',
'object_group_title' => 'Otsikko',
'edit_object_group' => 'Muokkaa ryhmää ":title"',
'delete_object_group' => 'Muokkaa ryhmää ":title"',
'update_object_group' => 'Päivitä ryhmä',
'updated_object_group' => 'Ryhmän ":title" päivitys onnistui',
'deleted_object_group' => 'Ryhmän ":title" poistaminen onnistui',
'object_group' => 'Ryhmä',
//
];

View File

@@ -38,7 +38,7 @@ return [
'match' => 'Täsmää',
'strict' => 'Tarkka vertailu',
'repeat_freq' => 'Toistot',
'object_group' => 'Group',
'object_group' => 'Ryhmä',
'location' => 'Sijainti',
'update_channel' => 'Päivityskanava',
'currency_id' => 'Valuutta',
@@ -165,7 +165,7 @@ return [
'tag_keep_transactions' => 'Ainoa tähän tägiin linkitetty tapahtuma säästetään.|Kaikki :count tähän tägiin yhdistetyt tapahtumat säästetään.',
'check_for_updates' => 'Tarkista päivitykset',
'delete_object_group' => 'Delete group ":title"',
'delete_object_group' => 'Poista ryhmä ":title"',
'email' => 'Sähköpostiosoite',
'password' => 'Salasana',

View File

@@ -60,7 +60,7 @@ return [
'due_date' => 'Eräpäivä',
'payment_date' => 'Maksupäivä',
'invoice_date' => 'Laskun päivämäärä',
'internal_reference' => 'Internal reference',
'internal_reference' => 'Sisäinen viite',
'notes' => 'Muistiinpanot',
'from' => 'Lähettäjä',
'piggy_bank' => 'Säästöpossu',

View File

@@ -130,7 +130,7 @@ return [
'amount_zero' => 'Summa yhteensä ei voi olla nolla.',
'current_target_amount' => 'Nykyisen summan täytyy olla tavoitesummaa pienempi.',
'unique_piggy_bank_for_user' => 'Säästöpossu tarvitsee yksilöllisen nimen.',
'unique_object_group' => 'The group name must be unique',
'unique_object_group' => 'Ryhmän nimen täytyy olla yksilöllinen',
'secure_password' => 'Tämä ei ole turvallinen salasana. Yritäpä uudestaan. Lisätietoja löydät osoitteesta https://bit.ly/FF3-password-security',
'valid_recurrence_rep_type' => 'Virheellinen toiston tyyppi toistuville tapahtumille.',

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'Si la devise que vous utilisez habituellement n\'est pas répertoriée, ne vous inquiétez pas. Vous pouvez créer vos propres devises dans Options > Devises.',
// home page:
'transaction_table_description' => 'Une table contenant vos opérations',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'Vos comptes',
'your_accounts' => 'Aperçu de votre compte',
'category_overview' => 'Aperçu des catégories',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Groupe ":title" supprimé avec succès',
'object_group' => 'Groupe',
//
];

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'Ne aggódj ha az általad normál esetben használt pénznem nincs a listában. Létrehozhatod a saját pénznemedet a Beállítások -> Pénznemek alatt.',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'Bankszámlák',
'your_accounts' => 'Számla áttekintése',
'category_overview' => 'Kategória áttekintés',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Succesfully deleted group ":title"',
'object_group' => 'Group',
//
];

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'If the currency you normally use is not listed do not worry. You can create your own currencies under Options > Currencies.',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'Akun anda',
'your_accounts' => 'Your account overview',
'category_overview' => 'Category overview',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Succesfully deleted group ":title"',
'object_group' => 'Group',
//
];

View File

@@ -204,12 +204,12 @@ return [
'authorization' => 'Autorizzazione',
'active_bills_only' => 'solo bollette attive',
'active_exp_bills_only' => 'solo bollette attive e previste',
'per_period_sum_1D' => 'Expected daily costs',
'per_period_sum_1W' => 'Expected weekly costs',
'per_period_sum_1M' => 'Expected monthly costs',
'per_period_sum_3M' => 'Expected quarterly costs',
'per_period_sum_6M' => 'Expected half-yearly costs',
'per_period_sum_1Y' => 'Expected yearly costs',
'per_period_sum_1D' => 'Costi giornalieri previsti',
'per_period_sum_1W' => 'Costi settimanali previsti',
'per_period_sum_1M' => 'Costi mensili previsti',
'per_period_sum_3M' => 'Costi trimestrali previsti',
'per_period_sum_6M' => 'Costi semestrali previsti',
'per_period_sum_1Y' => 'Costi annui previsti',
'average_per_bill' => 'media per bolletta',
'expected_total' => 'totale previsto',
'reconciliation_account_name' => ':name riconciliazione (:currency)',
@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'Se la valuta che usi normalmente non è elencata, non preoccuparti. Puoi creare le tue valute in Opzioni > Valute.',
// home page:
'transaction_table_description' => 'Una tabella contenente le tue transazioni',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'I tuoi conti',
'your_accounts' => 'Panoramica del tuo account',
'category_overview' => 'Panoramica della categoria',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Gruppo ":title" eliminato con successo',
'object_group' => 'Gruppo',
//
];

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'Hvis valutaen du vanligvis bruker ikke vises, ikke fortvil. Du kan opprette din egen valuta under Alternativer > valuta.',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'Dine kontoer',
'your_accounts' => 'Din konto oversikt',
'category_overview' => 'Kategori oversikt',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Succesfully deleted group ":title"',
'object_group' => 'Group',
//
];

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'Geen zorgen als de valuta die je gewend bent er niet tussen staat. Je kan je eigen valuta maken onder Opties > Valuta.',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'Je betaalrekeningen',
'your_accounts' => 'Je rekeningoverzicht',
'category_overview' => 'Categorieoverzicht',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Groep ":title" verwijderd',
'object_group' => 'Groep',
//
];

View File

@@ -204,12 +204,12 @@ return [
'authorization' => 'Autoryzacja',
'active_bills_only' => 'tylko aktywne rachunki',
'active_exp_bills_only' => 'tylko aktywne i oczekiwane rachunki',
'per_period_sum_1D' => 'Expected daily costs',
'per_period_sum_1W' => 'Expected weekly costs',
'per_period_sum_1M' => 'Expected monthly costs',
'per_period_sum_3M' => 'Expected quarterly costs',
'per_period_sum_6M' => 'Expected half-yearly costs',
'per_period_sum_1Y' => 'Expected yearly costs',
'per_period_sum_1D' => 'Oczekiwane koszty dzienne',
'per_period_sum_1W' => 'Oczekiwane koszty tygodniowe',
'per_period_sum_1M' => 'Przewidywane koszty miesięczne',
'per_period_sum_3M' => 'Oczekiwane koszty kwartalne',
'per_period_sum_6M' => 'Oczekiwane koszty półroczne',
'per_period_sum_1Y' => 'Oczekiwane koszty roczne',
'average_per_bill' => 'średnia za rachunek',
'expected_total' => 'oczekiwana suma',
'reconciliation_account_name' => 'Uzgadnianie :name (:currency)',
@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'Jeśli waluty, której zwykle używasz, nie ma na liście, nie martw się. Możesz tworzyć swoje własne waluty w Opcje > Waluty.',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'Twoje konta',
'your_accounts' => 'Przegląd Twoich kont',
'category_overview' => 'Przegląd kategorii',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Pomyślnie usunięto grupę ":title"',
'object_group' => 'Grupa',
//
];

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'Não se preocupe se a moeda que você usa normalmente não está listada. Você pode criar suas próprias moedas em "Opções > Moedas".',
// home page:
'transaction_table_description' => 'Uma tabela contendo suas transações',
'opposing_account' => 'Conta oposta',
'yourAccounts' => 'Suas contas',
'your_accounts' => 'Visão geral da sua conta',
'category_overview' => 'Visão geral da categoria',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'O grupo ":title" foi deletado com sucesso',
'object_group' => 'Grupo',
//
];

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'Dacă moneda pe care o utilizați în mod normal nu este listată, nu vă faceți griji. Puteți crea propriile valute în Opțiuni> Monede.',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'Conturile dvs.',
'your_accounts' => 'Prezentarea generală a contului',
'category_overview' => 'Categorie - prezentare generală',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Succesfully deleted group ":title"',
'object_group' => 'Group',
//
];

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'Если ваша основная валюта ещё не указана, не волнуйтесь. Вы можете создать собственные валюты в разделе Параметры > Валюты.',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'Ваши счета',
'your_accounts' => 'Обзор вашего счёта',
'category_overview' => 'Обзор категории',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Группа ":title" успешно удалена',
'object_group' => 'Группа',
//
];

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'Om valutan du normalt använder inte finns med, oroa dig inte. Du kan skapa nya valutor under Alternativ > Valutor.',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'Dina konton',
'your_accounts' => 'Din kontoöversikt',
'category_overview' => 'Kategori översikt',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Succesfully deleted group ":title"',
'object_group' => 'Group',
//
];

View File

@@ -1126,6 +1126,8 @@ işlemlerin kontrol edildiğini lütfen unutmayın.',
'currency_not_present' => 'Normalde kullandığınız para birimi listelenmiyorsa endişelenmeyin. Seçenekler> Para Birimleri altında kendi para birimlerini oluşturabilirsiniz.',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'Hesaplarınız',
'your_accounts' => 'Your account overview',
'category_overview' => 'Category overview',
@@ -1698,4 +1700,7 @@ işlemlerin kontrol edildiğini lütfen unutmayın.',
'deleted_object_group' => 'Succesfully deleted group ":title"',
'object_group' => 'Group',
//
];

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => 'Nếu loại tiền bạn thường sử dụng không được liệt kê, đừng lo lắng. Bạn có thể tạo tiền tệ của riêng bạn trong Tùy chọn > Tiền tệ.',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => 'Tài khoản của bạn',
'your_accounts' => 'Tổng quan về tài khoản của bạn',
'category_overview' => 'Tổng quan về danh mục',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Đã xóa nhóm thành công ":title"',
'object_group' => 'Nhóm',
//
];

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => '若您日常使用的货币未在表上,请别担心,您可在 选项 > 货币 建立自己的货币',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => '您的帐户',
'your_accounts' => '账户概览',
'category_overview' => '类别概述',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Succesfully deleted group ":title"',
'object_group' => 'Group',
//
];

View File

@@ -1124,6 +1124,8 @@ return [
'currency_not_present' => '若您日常使用的貨幣未在表上,請別擔心,您可在 選項 > 貨幣 建立自己的貨幣',
// home page:
'transaction_table_description' => 'A table containing your transactions',
'opposing_account' => 'Opposing account',
'yourAccounts' => '您的帳戶',
'your_accounts' => '您的帳戶概覽',
'category_overview' => '分類概覽',
@@ -1696,4 +1698,7 @@ return [
'deleted_object_group' => 'Succesfully deleted group ":title"',
'object_group' => 'Group',
//
];

View File

@@ -83,9 +83,10 @@
paid_dates = 0 (bill not paid in period)
pay_dates > 0 (bill IS expected to be paid in this period)
bill is active
first pay date is in the past.
#}
{% if entry.paid_dates|length == 0 and entry.pay_dates|length > 0 and entry.active %}
<td class="paid_in_period text-danger">
<td class="paid_in_period text-warning">
{{ trans('firefly.bill_expected_date', {date: entry.next_expected_match_diff }) }}
</td>
<td class="expected_in_period hidden-sm hidden-xs">

View File

@@ -1639,9 +1639,9 @@ caniuse-api@^3.0.0:
lodash.uniq "^4.5.0"
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001087, caniuse-lite@^1.0.30001088:
version "1.0.30001091"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001091.tgz#84908c67b98e02c2a56d4afa51e6458b53fb5321"
integrity sha512-ECd8gfBBpv0GKsEYY5052+8PBjExiugDoi3dfkJcxujh2mf7kiuDvb1o27GXlOOGopKiIPYEX8XDPYj7eo3E9w==
version "1.0.30001093"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001093.tgz#833e80f64b1a0455cbceed2a4a3baf19e4abd312"
integrity sha512-0+ODNoOjtWD5eS9aaIpf4K0gQqZfILNY4WSNuYzeT1sXni+lMrrVjc0odEobJt6wrODofDZUX8XYi/5y7+xl8g==
chalk@^1.1.3:
version "1.1.3"
@@ -2456,9 +2456,9 @@ ee-first@1.1.1:
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
electron-to-chromium@^1.3.483:
version "1.3.483"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.483.tgz#9269e7cfc1c8e72709824da171cbe47ca5e3ca9e"
integrity sha512-+05RF8S9rk8S0G8eBCqBRBaRq7+UN3lDs2DAvnG8SBSgQO3hjy0+qt4CmRk5eiuGbTcaicgXfPmBi31a+BD3lg==
version "1.3.484"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.484.tgz#75f5a1eee5fe3168758b7c2cf375ae73c1ccf5e6"
integrity sha512-esh5mmjAGl6HhAaYgHlDZme+jCIc+XIrLrBTwxviE+pM64UBmdLUIHLlrPzJGbit7hQI1TR/oGDQWCvQZ5yrFA==
elliptic@^6.0.0, elliptic@^6.5.2:
version "6.5.3"