mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Auto commit for release 'develop' on 2024-02-12
This commit is contained in:
parent
fded058ea6
commit
5c352a0d3e
@ -37,23 +37,22 @@ class TransactionController extends Controller
|
|||||||
{
|
{
|
||||||
public function listByCount(ListByCountRequest $request): JsonResponse
|
public function listByCount(ListByCountRequest $request): JsonResponse
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
// collect transactions:
|
// collect transactions:
|
||||||
$pageSize = $this->parameters->get('limit');
|
$pageSize = $this->parameters->get('limit');
|
||||||
$page = $request->getPage();
|
$page = $request->getPage();
|
||||||
$page = max($page, 1);
|
$page = max($page, 1);
|
||||||
|
|
||||||
/** @var GroupCollectorInterface $collector */
|
/** @var GroupCollectorInterface $collector */
|
||||||
$collector = app(GroupCollectorInterface::class);
|
$collector = app(GroupCollectorInterface::class);
|
||||||
$collector->setUserGroup(auth()->user()->userGroup)
|
$collector->setUserGroup(auth()->user()->userGroup)
|
||||||
->withAPIInformation()
|
->withAPIInformation()
|
||||||
->setStartRow($request->getStartRow())
|
->setStartRow($request->getStartRow())
|
||||||
->setEndRow($request->getEndRow())
|
->setEndRow($request->getEndRow())
|
||||||
->setTypes($request->getTransactionTypes());
|
->setTypes($request->getTransactionTypes())
|
||||||
|
;
|
||||||
|
|
||||||
$start = $this->parameters->get('start');
|
$start = $this->parameters->get('start');
|
||||||
$end = $this->parameters->get('end');
|
$end = $this->parameters->get('end');
|
||||||
if (null !== $start) {
|
if (null !== $start) {
|
||||||
$collector->setStart($start);
|
$collector->setStart($start);
|
||||||
}
|
}
|
||||||
@ -76,27 +75,28 @@ class TransactionController extends Controller
|
|||||||
|
|
||||||
return response()
|
return response()
|
||||||
->json($this->jsonApiList('transactions', $paginator, new TransactionGroupTransformer()))
|
->json($this->jsonApiList('transactions', $paginator, new TransactionGroupTransformer()))
|
||||||
->header('Content-Type', self::CONTENT_TYPE);
|
->header('Content-Type', self::CONTENT_TYPE)
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function list(ListRequest $request): JsonResponse
|
public function list(ListRequest $request): JsonResponse
|
||||||
{
|
{
|
||||||
// collect transactions:
|
// collect transactions:
|
||||||
$pageSize = $this->parameters->get('limit');
|
$pageSize = $this->parameters->get('limit');
|
||||||
$page = $request->getPage();
|
$page = $request->getPage();
|
||||||
$page = max($page, 1);
|
$page = max($page, 1);
|
||||||
|
|
||||||
/** @var GroupCollectorInterface $collector */
|
/** @var GroupCollectorInterface $collector */
|
||||||
$collector = app(GroupCollectorInterface::class);
|
$collector = app(GroupCollectorInterface::class);
|
||||||
$collector->setUserGroup(auth()->user()->userGroup)
|
$collector->setUserGroup(auth()->user()->userGroup)
|
||||||
->withAPIInformation()
|
->withAPIInformation()
|
||||||
->setLimit($pageSize)
|
->setLimit($pageSize)
|
||||||
->setPage($page)
|
->setPage($page)
|
||||||
->setTypes($request->getTransactionTypes());
|
->setTypes($request->getTransactionTypes())
|
||||||
|
;
|
||||||
|
|
||||||
$start = $this->parameters->get('start');
|
$start = $this->parameters->get('start');
|
||||||
$end = $this->parameters->get('end');
|
$end = $this->parameters->get('end');
|
||||||
if (null !== $start) {
|
if (null !== $start) {
|
||||||
$collector->setStart($start);
|
$collector->setStart($start);
|
||||||
}
|
}
|
||||||
|
@ -61,15 +61,14 @@ class GroupCollector implements GroupCollectorInterface
|
|||||||
*/
|
*/
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
$this->postFilters = [];
|
$this->postFilters = [];
|
||||||
$this->tags = [];
|
$this->tags = [];
|
||||||
$this->user = null;
|
$this->user = null;
|
||||||
$this->userGroup = null;
|
$this->userGroup = null;
|
||||||
$this->limit = null;
|
$this->limit = null;
|
||||||
$this->page = null;
|
$this->page = null;
|
||||||
$this->startRow = null;
|
$this->startRow = null;
|
||||||
$this->endRow = null;
|
$this->endRow = null;
|
||||||
|
|
||||||
|
|
||||||
$this->hasAccountInfo = false;
|
$this->hasAccountInfo = false;
|
||||||
$this->hasCatInformation = false;
|
$this->hasCatInformation = false;
|
||||||
@ -495,6 +494,7 @@ class GroupCollector implements GroupCollectorInterface
|
|||||||
}
|
}
|
||||||
if(null !== $this->startRow && null !== $this->endRow) {
|
if(null !== $this->startRow && null !== $this->endRow) {
|
||||||
$total = (int)($this->endRow - $this->startRow);
|
$total = (int)($this->endRow - $this->startRow);
|
||||||
|
|
||||||
return new LengthAwarePaginator($set, $this->total, $total, 1);
|
return new LengthAwarePaginator($set, $this->total, $total, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -689,6 +689,20 @@ class GroupCollector implements GroupCollectorInterface
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function setEndRow(int $endRow): self
|
||||||
|
{
|
||||||
|
$this->endRow = $endRow;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setStartRow(int $startRow): self
|
||||||
|
{
|
||||||
|
$this->startRow = $startRow;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
private function getCollectedGroupIds(): array
|
private function getCollectedGroupIds(): array
|
||||||
{
|
{
|
||||||
return $this->query->get(['transaction_journals.transaction_group_id'])->pluck('transaction_group_id')->toArray();
|
return $this->query->get(['transaction_journals.transaction_group_id'])->pluck('transaction_group_id')->toArray();
|
||||||
@ -1070,20 +1084,7 @@ class GroupCollector implements GroupCollectorInterface
|
|||||||
->orderBy('transaction_journals.order', 'ASC')
|
->orderBy('transaction_journals.order', 'ASC')
|
||||||
->orderBy('transaction_journals.id', 'DESC')
|
->orderBy('transaction_journals.id', 'DESC')
|
||||||
->orderBy('transaction_journals.description', 'DESC')
|
->orderBy('transaction_journals.description', 'DESC')
|
||||||
->orderBy('source.amount', 'DESC');
|
->orderBy('source.amount', 'DESC')
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setEndRow(int $endRow): self
|
|
||||||
{
|
|
||||||
$this->endRow = $endRow;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setStartRow(int $startRow): self
|
|
||||||
{
|
|
||||||
$this->startRow = $startRow;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
22
composer.lock
generated
22
composer.lock
generated
@ -3613,16 +3613,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "mailchimp/transactional",
|
"name": "mailchimp/transactional",
|
||||||
"version": "1.0.57",
|
"version": "1.0.59",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/mailchimp/mailchimp-transactional-php.git",
|
"url": "https://github.com/mailchimp/mailchimp-transactional-php.git",
|
||||||
"reference": "248ef0e65349f3c567827f00bc6b16a65379c947"
|
"reference": "1783927027820dc1c624fd04abf5012a57f96feb"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/mailchimp/mailchimp-transactional-php/zipball/248ef0e65349f3c567827f00bc6b16a65379c947",
|
"url": "https://api.github.com/repos/mailchimp/mailchimp-transactional-php/zipball/1783927027820dc1c624fd04abf5012a57f96feb",
|
||||||
"reference": "248ef0e65349f3c567827f00bc6b16a65379c947",
|
"reference": "1783927027820dc1c624fd04abf5012a57f96feb",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -3661,9 +3661,9 @@
|
|||||||
"swagger"
|
"swagger"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/mailchimp/mailchimp-transactional-php/tree/v1.0.57"
|
"source": "https://github.com/mailchimp/mailchimp-transactional-php/tree/v1.0.59"
|
||||||
},
|
},
|
||||||
"time": "2024-02-07T22:08:23+00:00"
|
"time": "2024-02-10T01:12:26+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "monolog/monolog",
|
"name": "monolog/monolog",
|
||||||
@ -5881,16 +5881,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "spatie/laravel-ignition",
|
"name": "spatie/laravel-ignition",
|
||||||
"version": "2.4.1",
|
"version": "2.4.2",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/spatie/laravel-ignition.git",
|
"url": "https://github.com/spatie/laravel-ignition.git",
|
||||||
"reference": "005e1e7b1232f3b22d7e7be3f602693efc7dba67"
|
"reference": "351504f4570e32908839fc5a2dc53bf77d02f85e"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/005e1e7b1232f3b22d7e7be3f602693efc7dba67",
|
"url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/351504f4570e32908839fc5a2dc53bf77d02f85e",
|
||||||
"reference": "005e1e7b1232f3b22d7e7be3f602693efc7dba67",
|
"reference": "351504f4570e32908839fc5a2dc53bf77d02f85e",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -5969,7 +5969,7 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-01-12T13:14:58+00:00"
|
"time": "2024-02-09T16:08:40+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "spatie/period",
|
"name": "spatie/period",
|
||||||
|
6
package-lock.json
generated
6
package-lock.json
generated
@ -530,9 +530,9 @@
|
|||||||
"integrity": "sha512-6Z7vzlVBJduPUi7U1MPRBzoXmJf8ob9tGcUNxxos6qU1bbjPX7Li30r1Dhtk55hSBfPmVuN7p6zahF7G38xtWA=="
|
"integrity": "sha512-6Z7vzlVBJduPUi7U1MPRBzoXmJf8ob9tGcUNxxos6qU1bbjPX7Li30r1Dhtk55hSBfPmVuN7p6zahF7G38xtWA=="
|
||||||
},
|
},
|
||||||
"node_modules/bootstrap5-tags": {
|
"node_modules/bootstrap5-tags": {
|
||||||
"version": "1.6.16",
|
"version": "1.7.0",
|
||||||
"resolved": "https://registry.npmjs.org/bootstrap5-tags/-/bootstrap5-tags-1.6.16.tgz",
|
"resolved": "https://registry.npmjs.org/bootstrap5-tags/-/bootstrap5-tags-1.7.0.tgz",
|
||||||
"integrity": "sha512-SH4pLDxeicMIdJ9aZLNUvDw89dyD0RUUmHVb8cDiKAtyH/1csa9/O23Y4WSezLZ2MpB7ZRUI4YFp4o0WwW6JVQ=="
|
"integrity": "sha512-FyOKAvC1nYMIrTMhyx7KbiBDGkOQETU5ozJwUf+jCIwyuy/QcRnaq3jCFOl7KhYRySbZXGr1zbAZ/fmtGitMLQ=="
|
||||||
},
|
},
|
||||||
"node_modules/braces": {
|
"node_modules/braces": {
|
||||||
"version": "3.0.2",
|
"version": "3.0.2",
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
|||||||
import{f as n}from"./vendor-47e474ee.js";function e(){return{id:"",name:"",alpine_name:""}}function o(){return{description:[],amount:[],currency_code:[],foreign_amount:[],foreign_currency_code:[],source_account:[],destination_account:[],budget_id:[],category_name:[],piggy_bank_id:[],bill_id:[],tags:[],notes:[],internal_reference:[],external_url:[],latitude:[],longitude:[],zoom_level:[],date:[],interest_date:[],book_date:[],process_date:[],due_date:[],payment_date:[],invoice_date:[]}}function d(){let t=n(new Date,"yyyy-MM-dd HH:mm");return{description:"",amount:"",currency_code:"EUR",foreign_amount:"",foreign_currency_code:"",source_account:e(),destination_account:e(),budget_id:null,category_name:"",piggy_bank_id:null,bill_id:null,tags:[],notes:"",internal_reference:"",external_url:"",hasLocation:!1,latitude:null,longitude:null,zoomLevel:null,date:t,interest_date:"",book_date:"",process_date:"",due_date:"",payment_date:"",invoice_date:"",errors:o()}}export{d as c,o as d};
|
import{f as n}from"./vendor-cc723e37.js";function e(){return{id:"",name:"",alpine_name:""}}function o(){return{description:[],amount:[],currency_code:[],foreign_amount:[],foreign_currency_code:[],source_account:[],destination_account:[],budget_id:[],category_name:[],piggy_bank_id:[],bill_id:[],tags:[],notes:[],internal_reference:[],external_url:[],latitude:[],longitude:[],zoom_level:[],date:[],interest_date:[],book_date:[],process_date:[],due_date:[],payment_date:[],invoice_date:[]}}function d(){let t=n(new Date,"yyyy-MM-dd HH:mm");return{description:"",amount:"",currency_code:"EUR",foreign_amount:"",foreign_currency_code:"",source_account:e(),destination_account:e(),budget_id:null,category_name:"",piggy_bank_id:null,bill_id:null,tags:[],notes:"",internal_reference:"",external_url:"",hasLocation:!1,latitude:null,longitude:null,zoomLevel:null,date:t,interest_date:"",book_date:"",process_date:"",due_date:"",payment_date:"",invoice_date:"",errors:o()}}export{d as c,o as d};
|
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
@ -1 +1 @@
|
|||||||
import{a as t}from"./format-money-2cbd3c32.js";class n{list(a){return t.get("/api/v2/transactions",{params:a})}listByCount(a){return t.get("/api/v2/transactions-inf",{params:a})}show(a,s){return t.get("/api/v2/transactions/"+a,{params:s})}}export{n as G};
|
import{a as t}from"./format-money-03f73825.js";class n{list(a){return t.get("/api/v2/transactions",{params:a})}listByCount(a){return t.get("/api/v2/transactions-inf",{params:a})}show(a,s){return t.get("/api/v2/transactions/"+a,{params:s})}}export{n as G};
|
@ -1 +1 @@
|
|||||||
import{a as s}from"./format-money-2cbd3c32.js";let t=class{list(a){return s.get("/api/v2/subscriptions",{params:a})}paid(a){return s.get("/api/v2/subscriptions/sum/paid",{params:a})}unpaid(a){return s.get("/api/v2/subscriptions/sum/unpaid",{params:a})}};class e{list(a){return s.get("/api/v2/piggy-banks",{params:a})}}export{t as G,e as a};
|
import{a as s}from"./format-money-03f73825.js";let t=class{list(a){return s.get("/api/v2/subscriptions",{params:a})}paid(a){return s.get("/api/v2/subscriptions/sum/paid",{params:a})}unpaid(a){return s.get("/api/v2/subscriptions/sum/unpaid",{params:a})}};class e{list(a){return s.get("/api/v2/piggy-banks",{params:a})}}export{t as G,e as a};
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
|||||||
import{c as o}from"./create-empty-split-c1e678fd.js";import{f as _}from"./vendor-47e474ee.js";function l(a,r){let n=[];for(let i in a)if(a.hasOwnProperty(i)){let e=a[i],t=o();t.transaction_journal_id=e.transaction_journal_id,t.transaction_group_id=r,t.bill_id=e.bill_id,t.bill_name=e.bill_name,t.budget_id=e.budget_id,t.budget_name=e.budget_name,t.category_name=e.category_name,t.category_id=e.category_id,t.piggy_bank_id=e.piggy_bank_id,t.piggy_bank_name=e.piggy_bank_name,t.book_date=e.book_date,t.due_date=e.due_date,t.interest_date=e.interest_date,t.invoice_date=e.invoice_date,t.payment_date=e.payment_date,t.process_date=e.process_date,t.external_url=e.external_url,t.internal_reference=e.internal_reference,t.notes=e.notes,t.tags=e.tags,t.amount=parseFloat(e.amount).toFixed(e.currency_decimal_places),t.currency_code=e.currency_code,e.foreign_amount!==null&&(t.forein_currency_code=e.foreign_currency_code,t.foreign_amount=parseFloat(e.foreign_amount).toFixed(e.foreign_currency_decimal_places)),t.date=_(new Date(e.date),"yyyy-MM-dd HH:mm"),t.description=e.description,t.destination_account={id:e.destination_id,name:e.destination_name,type:e.destination_type,alpine_name:e.destination_name},t.source_account={id:e.source_id,name:e.source_name,type:e.source_type,alpine_name:e.source_name},e.latitude!==null&&(t.hasLocation=!0,t.latitude=e.latitude,t.longitude=e.longitude,t.zoomLevel=e.zoom_level),n.push(t)}return n}export{l as p};
|
import{c as o}from"./create-empty-split-d82bb341.js";import{f as _}from"./vendor-cc723e37.js";function l(a,r){let n=[];for(let i in a)if(a.hasOwnProperty(i)){let e=a[i],t=o();t.transaction_journal_id=e.transaction_journal_id,t.transaction_group_id=r,t.bill_id=e.bill_id,t.bill_name=e.bill_name,t.budget_id=e.budget_id,t.budget_name=e.budget_name,t.category_name=e.category_name,t.category_id=e.category_id,t.piggy_bank_id=e.piggy_bank_id,t.piggy_bank_name=e.piggy_bank_name,t.book_date=e.book_date,t.due_date=e.due_date,t.interest_date=e.interest_date,t.invoice_date=e.invoice_date,t.payment_date=e.payment_date,t.process_date=e.process_date,t.external_url=e.external_url,t.internal_reference=e.internal_reference,t.notes=e.notes,t.tags=e.tags,t.amount=parseFloat(e.amount).toFixed(e.currency_decimal_places),t.currency_code=e.currency_code,e.foreign_amount!==null&&(t.forein_currency_code=e.foreign_currency_code,t.foreign_amount=parseFloat(e.foreign_amount).toFixed(e.foreign_currency_decimal_places)),t.date=_(new Date(e.date),"yyyy-MM-dd HH:mm"),t.description=e.description,t.destination_account={id:e.destination_id,name:e.destination_name,type:e.destination_type,alpine_name:e.destination_name},t.source_account={id:e.source_id,name:e.source_name,type:e.source_type,alpine_name:e.source_name},e.latitude!==null&&(t.hasLocation=!0,t.latitude=e.latitude,t.longitude=e.longitude,t.zoomLevel=e.zoom_level),n.push(t)}return n}export{l as p};
|
@ -1 +1 @@
|
|||||||
import{a as p}from"./format-money-2cbd3c32.js";class u{put(t,a){let r="/api/v2/transactions/"+parseInt(a.id);return p.put(r,t)}}export{u as P};
|
import{a as p}from"./format-money-03f73825.js";class u{put(t,a){let r="/api/v2/transactions/"+parseInt(a.id);return p.put(r,t)}}export{u as P};
|
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
@ -1,57 +1,57 @@
|
|||||||
{
|
{
|
||||||
"_create-empty-split-c1e678fd.js": {
|
"_create-empty-split-d82bb341.js": {
|
||||||
"file": "assets/create-empty-split-c1e678fd.js",
|
"file": "assets/create-empty-split-d82bb341.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_vendor-47e474ee.js"
|
"_vendor-cc723e37.js"
|
||||||
],
|
],
|
||||||
"integrity": "sha384-awdlECTPTzFBi+ZAQ60m+Cmmj17qMARX4xtLnsqtOdsKtG7uIvF1X0TfarYwlLgu"
|
"integrity": "sha384-xqyk8VkCuWg3Pyh5tmtlOcjXCNVzHghsQICD/8eqKQqivrhLARahE2sHuw6SiZuK"
|
||||||
},
|
},
|
||||||
"_format-money-2cbd3c32.js": {
|
"_format-money-03f73825.js": {
|
||||||
"file": "assets/format-money-2cbd3c32.js",
|
"file": "assets/format-money-03f73825.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_vendor-47e474ee.js"
|
"_vendor-cc723e37.js"
|
||||||
],
|
],
|
||||||
"integrity": "sha384-kUnpyNEiPM3XPVtLKGsI9E4m6E0SMsWwPPUX8eVUCTXvjdK3paDf2CsKageQsOXi"
|
"integrity": "sha384-zmpuSCeX+Xvs0IlpZqebAdDNiTGxuNaaFFWWEd6KF6sUQ2So61pu+jjH6RIkB3Pj"
|
||||||
},
|
},
|
||||||
"_get-4f3e9dd6.js": {
|
"_get-10f1237b.js": {
|
||||||
"file": "assets/get-4f3e9dd6.js",
|
"file": "assets/get-10f1237b.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-2cbd3c32.js"
|
"_format-money-03f73825.js"
|
||||||
],
|
],
|
||||||
"integrity": "sha384-u6Nv4ChDb9JuRSjKiNReNk6J+kv4UA3EyzwAzGt3vRtNbx6w1+K5sjL/bBMeTaa/"
|
"integrity": "sha384-Qp3fLmVM9CLH0wJSAEvAjT1Q/TK7iIbVt4wNo9WCx04cEfMp+aXC49FqNYdUSVS8"
|
||||||
},
|
},
|
||||||
"_get-8a42cab8.js": {
|
"_get-7f8692a5.js": {
|
||||||
"file": "assets/get-8a42cab8.js",
|
"file": "assets/get-7f8692a5.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-2cbd3c32.js"
|
"_format-money-03f73825.js"
|
||||||
],
|
],
|
||||||
"integrity": "sha384-Fz0DvV+QFjM+fffdA/wEY0zQG0AUBY/xV8eiLwPWc4nX8HYKOiJ/W2K+Pyym6fCo"
|
"integrity": "sha384-Nu6mFNb909g9ZLzJpntU8cRhbRBwe8tWBcmxRJ5vt88JWYVdqqrPlvxHAwyG/3I+"
|
||||||
},
|
},
|
||||||
"_parse-downloaded-splits-a5d66b5f.js": {
|
"_parse-downloaded-splits-fb2d62df.js": {
|
||||||
"file": "assets/parse-downloaded-splits-a5d66b5f.js",
|
"file": "assets/parse-downloaded-splits-fb2d62df.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_create-empty-split-c1e678fd.js",
|
"_create-empty-split-d82bb341.js",
|
||||||
"_vendor-47e474ee.js"
|
"_vendor-cc723e37.js"
|
||||||
],
|
],
|
||||||
"integrity": "sha384-N72VeLz5t7BVlDdZYeb/mhn2MBFJ40DcB6EPeiPUIYHYf2axOb6UDlVJ/6RFkbW4"
|
"integrity": "sha384-e2TYgrrrNUa1Khx6aS8Ai/mRtmiz8TPFLQZcZYz7OoOipiWHovDKven8sxIJmqkj"
|
||||||
},
|
},
|
||||||
"_put-375c2f08.js": {
|
"_put-d747f13c.js": {
|
||||||
"file": "assets/put-375c2f08.js",
|
"file": "assets/put-d747f13c.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-2cbd3c32.js"
|
"_format-money-03f73825.js"
|
||||||
],
|
],
|
||||||
"integrity": "sha384-3rM8b6WdTZH9DgPum1l/grHzsVDMHaKviqDy1kfCAPr4ggScf90rOJittYpkzacT"
|
"integrity": "sha384-m1RzGO6aYwXHYY7GIZAwxkr+70Iqu8hSxaMNWnXpQb2CB31CN5L2QqhSNBzvANc1"
|
||||||
},
|
},
|
||||||
"_splice-errors-into-transactions-8731db70.js": {
|
"_splice-errors-into-transactions-e53c1920.js": {
|
||||||
"file": "assets/splice-errors-into-transactions-8731db70.js",
|
"file": "assets/splice-errors-into-transactions-e53c1920.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-2cbd3c32.js",
|
"_format-money-03f73825.js",
|
||||||
"_get-4f3e9dd6.js",
|
"_get-7f8692a5.js",
|
||||||
"_vendor-47e474ee.js"
|
"_vendor-cc723e37.js"
|
||||||
],
|
],
|
||||||
"integrity": "sha384-hAbV6DNkFCK/dE5/bmoccrJAFz+/LUYnDwcjD0xD3hSonUhv36uASdA3G/1YC7mW"
|
"integrity": "sha384-SeZHC0EItDDobOAXWQwnZ76014a8Kn/UxN+X8zyf5ESIQ9yEnpH/PJqmt10lR+kh"
|
||||||
},
|
},
|
||||||
"_vendor-47e474ee.js": {
|
"_vendor-cc723e37.js": {
|
||||||
"assets": [
|
"assets": [
|
||||||
"assets/layers-1dbbe9d0.png",
|
"assets/layers-1dbbe9d0.png",
|
||||||
"assets/layers-2x-066daca8.png",
|
"assets/layers-2x-066daca8.png",
|
||||||
@ -60,8 +60,8 @@
|
|||||||
"css": [
|
"css": [
|
||||||
"assets/vendor-5c5099b4.css"
|
"assets/vendor-5c5099b4.css"
|
||||||
],
|
],
|
||||||
"file": "assets/vendor-47e474ee.js",
|
"file": "assets/vendor-cc723e37.js",
|
||||||
"integrity": "sha384-iPGOtcjJtQb3YU+RLNE34lsXfFLqMoqCQO6telvpyWCnoBbUnrFCPCTyyqbqjVrZ"
|
"integrity": "sha384-SBcU5qAqCE2yT4967bb7EkNvKlH48c6QqGE9S32LwfGECQA9k4nkyTlopJr0cmgR"
|
||||||
},
|
},
|
||||||
"node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf": {
|
"node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf": {
|
||||||
"file": "assets/fa-brands-400-5656d596.ttf",
|
"file": "assets/fa-brands-400-5656d596.ttf",
|
||||||
@ -109,45 +109,45 @@
|
|||||||
"integrity": "sha384-wg83fCOXjBtqzFAWhTL9Sd9vmLUNhfEEzfmNUX9zwv2igKlz/YQbdapF4ObdxF+R"
|
"integrity": "sha384-wg83fCOXjBtqzFAWhTL9Sd9vmLUNhfEEzfmNUX9zwv2igKlz/YQbdapF4ObdxF+R"
|
||||||
},
|
},
|
||||||
"resources/assets/v2/pages/dashboard/dashboard.js": {
|
"resources/assets/v2/pages/dashboard/dashboard.js": {
|
||||||
"file": "assets/dashboard-d9c7669d.js",
|
"file": "assets/dashboard-d1d540db.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-2cbd3c32.js",
|
"_format-money-03f73825.js",
|
||||||
"_vendor-47e474ee.js",
|
"_vendor-cc723e37.js",
|
||||||
"_get-8a42cab8.js",
|
"_get-10f1237b.js",
|
||||||
"_get-4f3e9dd6.js"
|
"_get-7f8692a5.js"
|
||||||
],
|
],
|
||||||
"isEntry": true,
|
"isEntry": true,
|
||||||
"src": "resources/assets/v2/pages/dashboard/dashboard.js",
|
"src": "resources/assets/v2/pages/dashboard/dashboard.js",
|
||||||
"integrity": "sha384-NYPYd9tnzT78f2cdlhzkjFTD58jtbbYwS0gl4VZ+VKeNXli0ia9GWIt90woO1yia"
|
"integrity": "sha384-EG2YFwGswmDXurC8abNfvl04dS8utpeumKrlxYAOd1ZlLc4JUQ1AWG0cRKNCsb7U"
|
||||||
},
|
},
|
||||||
"resources/assets/v2/pages/transactions/create.js": {
|
"resources/assets/v2/pages/transactions/create.js": {
|
||||||
"file": "assets/create-efd477fa.js",
|
"file": "assets/create-af0e6c17.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-2cbd3c32.js",
|
"_format-money-03f73825.js",
|
||||||
"_create-empty-split-c1e678fd.js",
|
"_create-empty-split-d82bb341.js",
|
||||||
"_splice-errors-into-transactions-8731db70.js",
|
"_splice-errors-into-transactions-e53c1920.js",
|
||||||
"_vendor-47e474ee.js",
|
"_vendor-cc723e37.js",
|
||||||
"_get-4f3e9dd6.js"
|
"_get-7f8692a5.js"
|
||||||
],
|
],
|
||||||
"isEntry": true,
|
"isEntry": true,
|
||||||
"src": "resources/assets/v2/pages/transactions/create.js",
|
"src": "resources/assets/v2/pages/transactions/create.js",
|
||||||
"integrity": "sha384-Hib9Hhn4+Rc5u9dOqLwkj91AtIVAPC3Ffz7eDyBaqXF1UQgk3GCYBwk6jFj2OjV0"
|
"integrity": "sha384-SbUjMpGlNF36W0wZYbTQkpr7nb5fI1JpOtKp/oZB7d+KfcKNmdGIafsyu5hFw+3v"
|
||||||
},
|
},
|
||||||
"resources/assets/v2/pages/transactions/edit.js": {
|
"resources/assets/v2/pages/transactions/edit.js": {
|
||||||
"file": "assets/edit-c8c6ddaf.js",
|
"file": "assets/edit-a939c15a.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-2cbd3c32.js",
|
"_format-money-03f73825.js",
|
||||||
"_get-8a42cab8.js",
|
"_get-10f1237b.js",
|
||||||
"_parse-downloaded-splits-a5d66b5f.js",
|
"_parse-downloaded-splits-fb2d62df.js",
|
||||||
"_splice-errors-into-transactions-8731db70.js",
|
"_splice-errors-into-transactions-e53c1920.js",
|
||||||
"_vendor-47e474ee.js",
|
"_vendor-cc723e37.js",
|
||||||
"_create-empty-split-c1e678fd.js",
|
"_create-empty-split-d82bb341.js",
|
||||||
"_put-375c2f08.js",
|
"_put-d747f13c.js",
|
||||||
"_get-4f3e9dd6.js"
|
"_get-7f8692a5.js"
|
||||||
],
|
],
|
||||||
"isEntry": true,
|
"isEntry": true,
|
||||||
"src": "resources/assets/v2/pages/transactions/edit.js",
|
"src": "resources/assets/v2/pages/transactions/edit.js",
|
||||||
"integrity": "sha384-tueYPW7yCjzgZQ9OA5DVMWFMdJ7BWx0ftfFvO0rPkBQdfDLJ1AbNctleEVyyEfYS"
|
"integrity": "sha384-+e/kMTR2lpALsCeYoFbNh1ePnqaC56PrwtNMhbTlCGQmtxYiAMEOTH5jE+gAnqDN"
|
||||||
},
|
},
|
||||||
"resources/assets/v2/pages/transactions/index.css": {
|
"resources/assets/v2/pages/transactions/index.css": {
|
||||||
"file": "assets/index-badb0a41.css",
|
"file": "assets/index-badb0a41.css",
|
||||||
@ -158,16 +158,16 @@
|
|||||||
"css": [
|
"css": [
|
||||||
"assets/index-badb0a41.css"
|
"assets/index-badb0a41.css"
|
||||||
],
|
],
|
||||||
"file": "assets/index-4b4f238b.js",
|
"file": "assets/index-089e7bf2.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-2cbd3c32.js",
|
"_format-money-03f73825.js",
|
||||||
"_vendor-47e474ee.js",
|
"_vendor-cc723e37.js",
|
||||||
"_get-8a42cab8.js",
|
"_get-10f1237b.js",
|
||||||
"_put-375c2f08.js"
|
"_put-d747f13c.js"
|
||||||
],
|
],
|
||||||
"isEntry": true,
|
"isEntry": true,
|
||||||
"src": "resources/assets/v2/pages/transactions/index.js",
|
"src": "resources/assets/v2/pages/transactions/index.js",
|
||||||
"integrity": "sha384-j7zkUToaYnVYwDTbfusbq6jpxZY1HJofrC9BAa5EUK8j5ddn6/aLvr2rjCXlhCbC"
|
"integrity": "sha384-LdFg7W8efK0nAmNDzVzSLaUnZ5JDpfcY7TCE5lYeh8RtvYeklsJZCJcbqbuUHint"
|
||||||
},
|
},
|
||||||
"resources/assets/v2/pages/transactions/show.css": {
|
"resources/assets/v2/pages/transactions/show.css": {
|
||||||
"file": "assets/show-8b1429e5.css",
|
"file": "assets/show-8b1429e5.css",
|
||||||
@ -178,17 +178,17 @@
|
|||||||
"css": [
|
"css": [
|
||||||
"assets/show-8b1429e5.css"
|
"assets/show-8b1429e5.css"
|
||||||
],
|
],
|
||||||
"file": "assets/show-5f809605.js",
|
"file": "assets/show-7827ee8e.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_format-money-2cbd3c32.js",
|
"_format-money-03f73825.js",
|
||||||
"_vendor-47e474ee.js",
|
"_vendor-cc723e37.js",
|
||||||
"_get-8a42cab8.js",
|
"_get-10f1237b.js",
|
||||||
"_parse-downloaded-splits-a5d66b5f.js",
|
"_parse-downloaded-splits-fb2d62df.js",
|
||||||
"_create-empty-split-c1e678fd.js"
|
"_create-empty-split-d82bb341.js"
|
||||||
],
|
],
|
||||||
"isEntry": true,
|
"isEntry": true,
|
||||||
"src": "resources/assets/v2/pages/transactions/show.js",
|
"src": "resources/assets/v2/pages/transactions/show.js",
|
||||||
"integrity": "sha384-vRm26KrhK/Z/DE1GXFYmdn4bz0RN2UFTyo6QgcoOtHaUqVsTnFxE+UiPIsZ0VS5l"
|
"integrity": "sha384-IgbM4MiKR37X2FSkAG1AzDXGHnZccsdtSXNoDQ/2wVABwhL01ef9V7zCMWhhIJiu"
|
||||||
},
|
},
|
||||||
"resources/assets/v2/sass/app.scss": {
|
"resources/assets/v2/sass/app.scss": {
|
||||||
"file": "assets/app-fb7b26ec.css",
|
"file": "assets/app-fb7b26ec.css",
|
||||||
|
@ -21,16 +21,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
];
|
];
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -65,16 +56,7 @@ return [
|
|||||||
'transfer_list' => 'Прехвърляне',
|
'transfer_list' => 'Прехвърляне',
|
||||||
'transfers_list' => 'Прехвърляне',
|
'transfers_list' => 'Прехвърляне',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'reconciliation_list' => 'Съгласувания',
|
'reconciliation_list' => 'Съгласувания',
|
||||||
'create_withdrawal' => 'Създай нов разход',
|
'create_withdrawal' => 'Създай нов разход',
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,82 +20,56 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'html_language' => 'bg',
|
'html_language' => 'bg',
|
||||||
'locale' => 'bg, Bulgarian, bg_BG.utf8, bg_BG.UTF-8',
|
'locale' => 'bg, Bulgarian, bg_BG.utf8, bg_BG.UTF-8',
|
||||||
// 'month' => '%B %Y',
|
// 'month' => '%B %Y',
|
||||||
'month_js' => 'MMMM YYYY',
|
'month_js' => 'MMMM YYYY',
|
||||||
|
|
||||||
// 'month_and_day' => '%B %e, %Y',
|
// 'month_and_day' => '%B %e, %Y',
|
||||||
'month_and_day_moment_js' => 'Do MMMM YYYY',
|
'month_and_day_moment_js' => 'Do MMMM YYYY',
|
||||||
'month_and_day_fns' => 'd MMMM y',
|
'month_and_day_fns' => 'd MMMM y',
|
||||||
'month_and_day_js' => 'Do MMMM, YYYY',
|
'month_and_day_js' => 'Do MMMM, YYYY',
|
||||||
|
|
||||||
// 'month_and_date_day' => '%A %B %e, %Y',
|
// 'month_and_date_day' => '%A %B %e, %Y',
|
||||||
'month_and_date_day_js' => 'dddd MMMM Do, YYYY',
|
'month_and_date_day_js' => 'dddd MMMM Do, YYYY',
|
||||||
|
|
||||||
// 'month_and_day_no_year' => '%B %e',
|
// 'month_and_day_no_year' => '%B %e',
|
||||||
'month_and_day_no_year_js' => 'MMMM Do',
|
'month_and_day_no_year_js' => 'MMMM Do',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// 'date_time' => '%B %e, %Y, @ %T',
|
// 'date_time' => '%B %e, %Y, @ %T',
|
||||||
'date_time_js' => 'Do MMMM, YYYY, @ HH:mm:ss',
|
'date_time_js' => 'Do MMMM, YYYY, @ HH:mm:ss',
|
||||||
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
|
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
|
||||||
|
'date_time_fns_short' => 'MMMM do, yyyy @ HH:mm',
|
||||||
|
|
||||||
// 'specific_day' => '%e %B %Y',
|
// 'specific_day' => '%e %B %Y',
|
||||||
'specific_day_js' => 'D MMMM YYYY',
|
'specific_day_js' => 'D MMMM YYYY',
|
||||||
|
|
||||||
// 'week_in_year' => 'Week %V, %G',
|
// 'week_in_year' => 'Week %V, %G',
|
||||||
'week_in_year_js' => '[Week] W, GGGG',
|
'week_in_year_js' => '[Week] W, GGGG',
|
||||||
'week_in_year_fns' => "'Week' w, yyyy",
|
'week_in_year_fns' => "'Week' w, yyyy",
|
||||||
|
|
||||||
// 'year' => '%Y',
|
// 'year' => '%Y',
|
||||||
'year_js' => 'YYYY',
|
'year_js' => 'YYYY',
|
||||||
|
|
||||||
// 'half_year' => '%B %Y',
|
// 'half_year' => '%B %Y',
|
||||||
'half_year_js' => '\QQ YYYY',
|
'half_year_js' => '\QQ YYYY',
|
||||||
|
|
||||||
'quarter_fns' => "'Q'Q, yyyy",
|
'quarter_fns' => "'Q'Q, yyyy",
|
||||||
'half_year_fns' => "'H{half}', yyyy",
|
'half_year_fns' => "'H{half}', yyyy",
|
||||||
'dow_1' => 'Понеделник',
|
'dow_1' => 'Понеделник',
|
||||||
'dow_2' => 'Вторник',
|
'dow_2' => 'Вторник',
|
||||||
'dow_3' => 'Сряда',
|
'dow_3' => 'Сряда',
|
||||||
'dow_4' => 'Четвъртък',
|
'dow_4' => 'Четвъртък',
|
||||||
'dow_5' => 'Петък',
|
'dow_5' => 'Петък',
|
||||||
'dow_6' => 'Събота',
|
'dow_6' => 'Събота',
|
||||||
'dow_7' => 'Неделя',
|
'dow_7' => 'Неделя',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -47,13 +38,4 @@ return [
|
|||||||
'profile-index' => 'Имайте предвид, че демонстрационният сайт се нулира на всеки четири часа. Вашият достъп може да бъде отменен по всяко време. Това се случва автоматично и не е грешка.',
|
'profile-index' => 'Имайте предвид, че демонстрационният сайт се нулира на всеки четири часа. Вашият достъп може да бъде отменен по всяко време. Това се случва автоматично и не е грешка.',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -44,16 +35,7 @@ return [
|
|||||||
'admin_test_subject' => 'Тестово съобщение от вашата инсталация на Firefly III',
|
'admin_test_subject' => 'Тестово съобщение от вашата инсталация на Firefly III',
|
||||||
'admin_test_body' => 'Това е тестово съобщение от вашата Firefly III инстанция. То беше изпратено на :email.',
|
'admin_test_body' => 'Това е тестово съобщение от вашата Firefly III инстанция. То беше изпратено на :email.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// invite
|
// invite
|
||||||
'invitation_created_subject' => 'An invitation has been created',
|
'invitation_created_subject' => 'An invitation has been created',
|
||||||
@ -90,16 +72,7 @@ return [
|
|||||||
'registered_pw_reset_link' => 'Смяна на парола:',
|
'registered_pw_reset_link' => 'Смяна на парола:',
|
||||||
'registered_doc_link' => 'Документация:',
|
'registered_doc_link' => 'Документация:',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// new version
|
// new version
|
||||||
'new_version_email_subject' => 'A new Firefly III version is available',
|
'new_version_email_subject' => 'A new Firefly III version is available',
|
||||||
@ -145,16 +118,7 @@ return [
|
|||||||
'error_headers' => 'The following headers may also be relevant:',
|
'error_headers' => 'The following headers may also be relevant:',
|
||||||
'error_post' => 'This was submitted by the user:',
|
'error_post' => 'This was submitted by the user:',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// report new journals
|
// report new journals
|
||||||
'new_journals_subject' => 'Firefly III създаде нова транзакция | Firefly III създаде :count нови транзакции',
|
'new_journals_subject' => 'Firefly III създаде нова транзакция | Firefly III създаде :count нови транзакции',
|
||||||
@ -171,13 +135,4 @@ return [
|
|||||||
'bill_warning_extension_date_zero' => 'Your bill **":name"** is due to be extended or cancelled on :date. This moment will pass **TODAY!**',
|
'bill_warning_extension_date_zero' => 'Your bill **":name"** is due to be extended or cancelled on :date. This moment will pass **TODAY!**',
|
||||||
'bill_warning_please_action' => 'Please take the appropriate action.',
|
'bill_warning_please_action' => 'Please take the appropriate action.',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -51,16 +42,7 @@ return [
|
|||||||
'stacktrace' => 'Проследяване на стека',
|
'stacktrace' => 'Проследяване на стека',
|
||||||
'more_info' => 'Повече информация',
|
'more_info' => 'Повече информация',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'collect_info' => 'Моля, съберете повече информация в директорията <code> storage/logs </code>, където ще намерите файловете на дневника. Ако използвате Docker, използвайте <code>docker logs -f [container]</code>.',
|
'collect_info' => 'Моля, съберете повече информация в директорията <code> storage/logs </code>, където ще намерите файловете на дневника. Ако използвате Docker, използвайте <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/how-to/general/debug/">the FAQ</a>.',
|
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
|
||||||
|
@ -22,16 +22,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
// general stuff:
|
// general stuff:
|
||||||
@ -339,16 +330,7 @@ return [
|
|||||||
|
|
||||||
// old
|
// old
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'search_modifier_date_on' => 'Transaction date is ":value"',
|
'search_modifier_date_on' => 'Transaction date is ":value"',
|
||||||
'search_modifier_not_date_on' => 'Transaction date is not ":value"',
|
'search_modifier_not_date_on' => 'Transaction date is not ":value"',
|
||||||
@ -713,16 +695,7 @@ return [
|
|||||||
'create_rule_from_query' => 'Създай ново правило от низа за търсене',
|
'create_rule_from_query' => 'Създай ново правило от низа за търсене',
|
||||||
'rule_from_search_words' => 'Механизмът за правила има затруднения с обработката на ":string". Предложеното правило, което отговаря на низа ви за търсене, може да даде различни резултати. Моля проверете внимателно задействанията на правилото.',
|
'rule_from_search_words' => 'Механизмът за правила има затруднения с обработката на ":string". Предложеното правило, което отговаря на низа ви за търсене, може да даде различни резултати. Моля проверете внимателно задействанията на правилото.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// END
|
// END
|
||||||
'modifiers_applies_are' => 'И следните модификатори се прилагат към търсенето:',
|
'modifiers_applies_are' => 'И следните модификатори се прилагат към търсенето:',
|
||||||
@ -1212,16 +1185,7 @@ return [
|
|||||||
'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account',
|
'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account',
|
||||||
'rule_trigger_not_account_is_cash' => 'Neither account is a cash account',
|
'rule_trigger_not_account_is_cash' => 'Neither account is a cash account',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
// set, clear, add, remove, append/prepend
|
// set, clear, add, remove, append/prepend
|
||||||
@ -1536,16 +1500,7 @@ return [
|
|||||||
'multi_account_warning_deposit' => 'Имайте предвид, че приходната сметка на следващите разделяния ще бъде тази която е дефинирана в първия раздел на депозита.',
|
'multi_account_warning_deposit' => 'Имайте предвид, че приходната сметка на следващите разделяния ще бъде тази която е дефинирана в първия раздел на депозита.',
|
||||||
'multi_account_warning_transfer' => 'Имайте предвид, че приходната + разходната сметка на следващите разделяния ще бъде тази която е дефинирана в първия раздел на прехвърлянето.',
|
'multi_account_warning_transfer' => 'Имайте предвид, че приходната + разходната сметка на следващите разделяния ще бъде тази която е дефинирана в първия раздел на прехвърлянето.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// export data:
|
// export data:
|
||||||
'export_data_title' => 'Експортирайте данни от Firefly III',
|
'export_data_title' => 'Експортирайте данни от Firefly III',
|
||||||
@ -1940,16 +1895,7 @@ return [
|
|||||||
'stored_category' => 'Новата категория ":name" бе запазена',
|
'stored_category' => 'Новата категория ":name" бе запазена',
|
||||||
'without_category_between' => 'Без категория между :start и :end',
|
'without_category_between' => 'Без категория между :start и :end',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// transactions:
|
// transactions:
|
||||||
'wait_loading_transaction' => 'Please wait for the form to load',
|
'wait_loading_transaction' => 'Please wait for the form to load',
|
||||||
@ -2187,16 +2133,7 @@ return [
|
|||||||
'classification' => 'Класификация',
|
'classification' => 'Класификация',
|
||||||
'store_transaction' => 'Запазете транзакция',
|
'store_transaction' => 'Запазете транзакция',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// reports:
|
// reports:
|
||||||
'report_default' => 'Финансов отчет по подразбиране между :start и :end',
|
'report_default' => 'Финансов отчет по подразбиране между :start и :end',
|
||||||
@ -2302,16 +2239,7 @@ return [
|
|||||||
'sum_in_default_currency' => 'Сумата винаги ще бъде във вашата валута по подразбиране.',
|
'sum_in_default_currency' => 'Сумата винаги ще бъде във вашата валута по подразбиране.',
|
||||||
'net_filtered_prefs' => 'Тази графика никога няма да включва сметки, при които в опцията „Включи в нетната стойност“ не е поставена отметка.',
|
'net_filtered_prefs' => 'Тази графика никога няма да включва сметки, при които в опцията „Включи в нетната стойност“ не е поставена отметка.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// charts:
|
// charts:
|
||||||
'chart' => 'Графика',
|
'chart' => 'Графика',
|
||||||
@ -2404,16 +2332,7 @@ return [
|
|||||||
'total_amount' => 'Обща сума',
|
'total_amount' => 'Обща сума',
|
||||||
'number_of_decimals' => 'Брой десетични знаци',
|
'number_of_decimals' => 'Брой десетични знаци',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// administration
|
// administration
|
||||||
'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.',
|
'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.',
|
||||||
@ -2689,16 +2608,7 @@ return [
|
|||||||
'except_weekends' => 'Освен уикендите',
|
'except_weekends' => 'Освен уикендите',
|
||||||
'recurrence_deleted' => 'Повтарящата се транзакция ":title" беше изтрита',
|
'recurrence_deleted' => 'Повтарящата се транзакция ":title" беше изтрита',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// new lines for summary controller.
|
// new lines for summary controller.
|
||||||
'box_balance_in_currency' => 'Баланс (:currency)',
|
'box_balance_in_currency' => 'Баланс (:currency)',
|
||||||
@ -2765,13 +2675,4 @@ return [
|
|||||||
'disable_auto_convert' => 'Disable currency conversion',
|
'disable_auto_convert' => 'Disable currency conversion',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -74,16 +65,7 @@ return [
|
|||||||
'tagMode' => 'Режим на етикети',
|
'tagMode' => 'Режим на етикети',
|
||||||
'virtual_balance' => 'Виртуален баланс',
|
'virtual_balance' => 'Виртуален баланс',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'targetamount' => 'Планирана сума',
|
'targetamount' => 'Планирана сума',
|
||||||
'account_role' => 'Роля на сметката',
|
'account_role' => 'Роля на сметката',
|
||||||
@ -178,16 +160,7 @@ return [
|
|||||||
'journal_areYouSure' => 'Наистина ли искате да изтриете транзакцията озаглавена ":description"?',
|
'journal_areYouSure' => 'Наистина ли искате да изтриете транзакцията озаглавена ":description"?',
|
||||||
'mass_journal_are_you_sure' => 'Наистина ли искате да изтриете тези транзакции?',
|
'mass_journal_are_you_sure' => 'Наистина ли искате да изтриете тези транзакции?',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'tag_areYouSure' => 'Наистина ли искате да изтриете етикета ":tag"?',
|
'tag_areYouSure' => 'Наистина ли искате да изтриете етикета ":tag"?',
|
||||||
'journal_link_areYouSure' => 'Наистина ли искате да изтриете връзката между <a href=":source_link">:source</a> и <a href=":destination_link">:destination</a>?',
|
'journal_link_areYouSure' => 'Наистина ли искате да изтриете връзката между <a href=":source_link">:source</a> и <a href=":destination_link">:destination</a>?',
|
||||||
@ -252,16 +225,7 @@ return [
|
|||||||
'fints_account' => 'FinTS account',
|
'fints_account' => 'FinTS account',
|
||||||
'local_account' => 'Firefly III сметка',
|
'local_account' => 'Firefly III сметка',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'from_date' => 'Дата от',
|
'from_date' => 'Дата от',
|
||||||
'to_date' => 'Дата до',
|
'to_date' => 'Дата до',
|
||||||
@ -299,13 +263,4 @@ return [
|
|||||||
'webhook_response' => 'Response',
|
'webhook_response' => 'Response',
|
||||||
'webhook_trigger' => 'Trigger',
|
'webhook_trigger' => 'Trigger',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -63,16 +54,7 @@ return [
|
|||||||
'budgets_index_list_of_budgets' => 'Използвайте тази таблица, за да зададете сумите за всеки бюджет и да видите как се справяте.',
|
'budgets_index_list_of_budgets' => 'Използвайте тази таблица, за да зададете сумите за всеки бюджет и да видите как се справяте.',
|
||||||
'budgets_index_outro' => 'За да научите повече за бюджетирането, проверете иконата за помощ в горния десен ъгъл.',
|
'budgets_index_outro' => 'За да научите повече за бюджетирането, проверете иконата за помощ в горния десен ъгъл.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// reports (index)
|
// reports (index)
|
||||||
'reports_index_intro' => 'Използвайте тези отчети, за да получите подробна информация за вашите финанси.',
|
'reports_index_intro' => 'Използвайте тези отчети, за да получите подробна информация за вашите финанси.',
|
||||||
@ -111,16 +93,7 @@ return [
|
|||||||
'piggy-banks_index_button' => 'До тази лента за прогрес са разположени два бутона (+ и -) за добавяне или премахване на пари от всяка касичка.',
|
'piggy-banks_index_button' => 'До тази лента за прогрес са разположени два бутона (+ и -) за добавяне или премахване на пари от всяка касичка.',
|
||||||
'piggy-banks_index_accountStatus' => 'За всяка сметка за активи с най-малко една касичка статусът е посочен в тази таблица.',
|
'piggy-banks_index_accountStatus' => 'За всяка сметка за активи с най-малко една касичка статусът е посочен в тази таблица.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// create piggy
|
// create piggy
|
||||||
'piggy-banks_create_name' => 'Каква е твоята цел? Нов диван, камера, пари за спешни случаи?',
|
'piggy-banks_create_name' => 'Каква е твоята цел? Нов диван, камера, пари за спешни случаи?',
|
||||||
@ -164,16 +137,7 @@ return [
|
|||||||
'rules_create_test_rule_triggers' => 'Използвайте този бутон, за да видите кои транзакции биха съответствали на вашето правило.',
|
'rules_create_test_rule_triggers' => 'Използвайте този бутон, за да видите кои транзакции биха съответствали на вашето правило.',
|
||||||
'rules_create_actions' => 'Задайте толкова действия, колкото искате.',
|
'rules_create_actions' => 'Задайте толкова действия, колкото искате.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// preferences
|
// preferences
|
||||||
'preferences_index_tabs' => 'Повече опции са достъпни зад тези раздели.',
|
'preferences_index_tabs' => 'Повече опции са достъпни зад тези раздели.',
|
||||||
@ -186,13 +150,4 @@ return [
|
|||||||
// create currency
|
// create currency
|
||||||
'currencies_create_code' => 'Този код трябва да е съвместим с ISO (използвайте Google да го намерите за вашата нова валута).',
|
'currencies_create_code' => 'Този код трябва да е съвместим с ISO (използвайте Google да го намерите за вашата нова валута).',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -68,16 +59,7 @@ return [
|
|||||||
'next_expected_match' => 'Следващo очакванo съвпадение',
|
'next_expected_match' => 'Следващo очакванo съвпадение',
|
||||||
'automatch' => 'Автоматично съвпадение?',
|
'automatch' => 'Автоматично съвпадение?',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'repeat_freq' => 'Повторения',
|
'repeat_freq' => 'Повторения',
|
||||||
'description' => 'Описание',
|
'description' => 'Описание',
|
||||||
@ -145,16 +127,7 @@ return [
|
|||||||
'account_at_bunq' => 'Сметка в bunq',
|
'account_at_bunq' => 'Сметка в bunq',
|
||||||
'file_name' => 'Име на файла',
|
'file_name' => 'Име на файла',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'file_size' => 'Размер на файла',
|
'file_size' => 'Размер на файла',
|
||||||
'file_type' => 'Вид файл',
|
'file_type' => 'Вид файл',
|
||||||
@ -183,13 +156,4 @@ return [
|
|||||||
'url' => 'URL адрес',
|
'url' => 'URL адрес',
|
||||||
'secret' => 'Тайна',
|
'secret' => 'Тайна',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -104,16 +95,7 @@ return [
|
|||||||
'unique_object_for_user' => 'Това име вече се използва.',
|
'unique_object_for_user' => 'Това име вече се използва.',
|
||||||
'unique_account_for_user' => 'Това име на потребител вече се използва.',
|
'unique_account_for_user' => 'Това име на потребител вече се използва.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'between.numeric' => ':attribute трябва да бъде между :min и :max.',
|
'between.numeric' => ':attribute трябва да бъде между :min и :max.',
|
||||||
'between.file' => ':attribute трябва да бъде с големина между :min и :max Kb.',
|
'between.file' => ':attribute трябва да бъде с големина между :min и :max Kb.',
|
||||||
@ -184,16 +166,7 @@ return [
|
|||||||
'same_account_type' => 'Both accounts must be of the same account type',
|
'same_account_type' => 'Both accounts must be of the same account type',
|
||||||
'same_account_currency' => 'Both accounts must have the same currency setting',
|
'same_account_currency' => 'Both accounts must have the same currency setting',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'secure_password' => 'Това не е сигурна парола. Моля, опитайте отново. За повече информация посетете https://bit.ly/FF3-password-security',
|
'secure_password' => 'Това не е сигурна парола. Моля, опитайте отново. За повече информация посетете https://bit.ly/FF3-password-security',
|
||||||
'valid_recurrence_rep_type' => 'Невалиден тип повторение за повтарящи се транзакции.',
|
'valid_recurrence_rep_type' => 'Невалиден тип повторение за повтарящи се транзакции.',
|
||||||
@ -256,16 +229,7 @@ return [
|
|||||||
'deposit_dest_bad_data' => 'Не може да се намери валидна приходна сметка при търсене на ID ":id" или име ":name".',
|
'deposit_dest_bad_data' => 'Не може да се намери валидна приходна сметка при търсене на ID ":id" или име ":name".',
|
||||||
'deposit_dest_wrong_type' => 'Използваната приходна сметка не е от правилния тип.',
|
'deposit_dest_wrong_type' => 'Използваната приходна сметка не е от правилния тип.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'transfer_source_need_data' => 'Трябва да използвате валидно ID на разходната сметка и / или валидно име на разходната сметка, за да продължите.',
|
'transfer_source_need_data' => 'Трябва да използвате валидно ID на разходната сметка и / или валидно име на разходната сметка, за да продължите.',
|
||||||
'transfer_source_bad_data' => '[c] Could not find a valid source account when searching for ID ":id" or name ":name".',
|
'transfer_source_bad_data' => '[c] Could not find a valid source account when searching for ID ":id" or name ":name".',
|
||||||
@ -300,13 +264,4 @@ return [
|
|||||||
'no_access_user_group' => 'You do not have the correct access rights for this administration.',
|
'no_access_user_group' => 'You do not have the correct access rights for this administration.',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -21,16 +21,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
];
|
];
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -65,16 +56,7 @@ return [
|
|||||||
'transfer_list' => 'Transferències',
|
'transfer_list' => 'Transferències',
|
||||||
'transfers_list' => 'Transferències',
|
'transfers_list' => 'Transferències',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'reconciliation_list' => 'Consolidacions',
|
'reconciliation_list' => 'Consolidacions',
|
||||||
'create_withdrawal' => 'Crea un nou reintegrament',
|
'create_withdrawal' => 'Crea un nou reintegrament',
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,82 +20,56 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'html_language' => 'ca',
|
'html_language' => 'ca',
|
||||||
'locale' => 'ca, Català, ca_ES.utf8, ca_ES.utf8',
|
'locale' => 'ca, Català, ca_ES.utf8, ca_ES.utf8',
|
||||||
// 'month' => '%B %Y',
|
// 'month' => '%B %Y',
|
||||||
'month_js' => 'MMMM YYYY',
|
'month_js' => 'MMMM YYYY',
|
||||||
|
|
||||||
// 'month_and_day' => '%B %e, %Y',
|
// 'month_and_day' => '%B %e, %Y',
|
||||||
'month_and_day_moment_js' => 'D MMM, YYYY',
|
'month_and_day_moment_js' => 'D MMM, YYYY',
|
||||||
'month_and_day_fns' => 'd MMMM y',
|
'month_and_day_fns' => 'd MMMM y',
|
||||||
'month_and_day_js' => 'Do MMMM, YYYY',
|
'month_and_day_js' => 'Do MMMM, YYYY',
|
||||||
|
|
||||||
// 'month_and_date_day' => '%A %B %e, %Y',
|
// 'month_and_date_day' => '%A %B %e, %Y',
|
||||||
'month_and_date_day_js' => 'dddd D [de/d\'] MMMM [de] YYYY',
|
'month_and_date_day_js' => 'dddd D [de/d\'] MMMM [de] YYYY',
|
||||||
|
|
||||||
// 'month_and_day_no_year' => '%B %e',
|
// 'month_and_day_no_year' => '%B %e',
|
||||||
'month_and_day_no_year_js' => 'D [de/d\'] MMMM',
|
'month_and_day_no_year_js' => 'D [de/d\'] MMMM',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// 'date_time' => '%B %e, %Y, @ %T',
|
// 'date_time' => '%B %e, %Y, @ %T',
|
||||||
'date_time_js' => 'Do MMMM, YYYY a les HH:mm:ss',
|
'date_time_js' => 'Do MMMM, YYYY a les HH:mm:ss',
|
||||||
'date_time_fns' => 'D [de/d\'] MMMM yyyy [a les] HH:mm:ss',
|
'date_time_fns' => 'D [de/d\'] MMMM yyyy [a les] HH:mm:ss',
|
||||||
|
'date_time_fns_short' => 'MMMM do, yyyy @ HH:mm',
|
||||||
|
|
||||||
// 'specific_day' => '%e %B %Y',
|
// 'specific_day' => '%e %B %Y',
|
||||||
'specific_day_js' => 'D MMMM YYYY',
|
'specific_day_js' => 'D MMMM YYYY',
|
||||||
|
|
||||||
// 'week_in_year' => 'Week %V, %G',
|
// 'week_in_year' => 'Week %V, %G',
|
||||||
'week_in_year_js' => '[Week] W, GGGG',
|
'week_in_year_js' => '[Week] W, GGGG',
|
||||||
'week_in_year_fns' => "'Setmana' w, yyyy",
|
'week_in_year_fns' => "'Setmana' w, yyyy",
|
||||||
|
|
||||||
// 'year' => '%Y',
|
// 'year' => '%Y',
|
||||||
'year_js' => 'YYYY',
|
'year_js' => 'YYYY',
|
||||||
|
|
||||||
// 'half_year' => '%B %Y',
|
// 'half_year' => '%B %Y',
|
||||||
'half_year_js' => '\QQ YYYY',
|
'half_year_js' => '\QQ YYYY',
|
||||||
|
|
||||||
'quarter_fns' => "'Trimestre' Q, yyyy",
|
'quarter_fns' => "'Trimestre' Q, yyyy",
|
||||||
'half_year_fns' => "'S{half}', yyyy",
|
'half_year_fns' => "'S{half}', yyyy",
|
||||||
'dow_1' => 'Dilluns',
|
'dow_1' => 'Dilluns',
|
||||||
'dow_2' => 'Dimarts',
|
'dow_2' => 'Dimarts',
|
||||||
'dow_3' => 'Dimecres',
|
'dow_3' => 'Dimecres',
|
||||||
'dow_4' => 'Dijous',
|
'dow_4' => 'Dijous',
|
||||||
'dow_5' => 'Divendres',
|
'dow_5' => 'Divendres',
|
||||||
'dow_6' => 'Dissabte',
|
'dow_6' => 'Dissabte',
|
||||||
'dow_7' => 'Diumenge',
|
'dow_7' => 'Diumenge',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -47,13 +38,4 @@ return [
|
|||||||
'profile-index' => 'Tingues en compte que la web de demostració es reinicia cada quatre hores. L\'accés pot ser revocat en qualsevol moment. Això passa automàticament i no és cap error.',
|
'profile-index' => 'Tingues en compte que la web de demostració es reinicia cada quatre hores. L\'accés pot ser revocat en qualsevol moment. Això passa automàticament i no és cap error.',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -44,16 +35,7 @@ return [
|
|||||||
'admin_test_subject' => 'Missatge de prova de la teva instal·lació de Firefly III',
|
'admin_test_subject' => 'Missatge de prova de la teva instal·lació de Firefly III',
|
||||||
'admin_test_body' => 'Aquest és un missatge de prova de la teva instància de Firefly III. S\'ha enviat a :email.',
|
'admin_test_body' => 'Aquest és un missatge de prova de la teva instància de Firefly III. S\'ha enviat a :email.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// invite
|
// invite
|
||||||
'invitation_created_subject' => 'S\'ha creat una invitació',
|
'invitation_created_subject' => 'S\'ha creat una invitació',
|
||||||
@ -90,16 +72,7 @@ return [
|
|||||||
'registered_pw_reset_link' => 'Restablir contrasenya:',
|
'registered_pw_reset_link' => 'Restablir contrasenya:',
|
||||||
'registered_doc_link' => 'Documentació:',
|
'registered_doc_link' => 'Documentació:',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// new version
|
// new version
|
||||||
'new_version_email_subject' => 'Hi ha disponible una nova versió de Firefly III',
|
'new_version_email_subject' => 'Hi ha disponible una nova versió de Firefly III',
|
||||||
@ -145,16 +118,7 @@ return [
|
|||||||
'error_headers' => 'Les següents capçaleres també podrien ser rellevants:',
|
'error_headers' => 'Les següents capçaleres també podrien ser rellevants:',
|
||||||
'error_post' => 'Enviat per l\'usuari:',
|
'error_post' => 'Enviat per l\'usuari:',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// report new journals
|
// report new journals
|
||||||
'new_journals_subject' => 'Firefly III ha creat una nova transacció|Firefly III ha creat :count noves transaccions',
|
'new_journals_subject' => 'Firefly III ha creat una nova transacció|Firefly III ha creat :count noves transaccions',
|
||||||
@ -171,13 +135,4 @@ return [
|
|||||||
'bill_warning_extension_date_zero' => 'La factura **":name"** ha de ser prorrogada o cancel·lada el :date. Això és **AVUI!**',
|
'bill_warning_extension_date_zero' => 'La factura **":name"** ha de ser prorrogada o cancel·lada el :date. Això és **AVUI!**',
|
||||||
'bill_warning_please_action' => 'Si us plau, prengui les mesures oportunes.',
|
'bill_warning_please_action' => 'Si us plau, prengui les mesures oportunes.',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -51,16 +42,7 @@ return [
|
|||||||
'stacktrace' => 'Traça de la pila',
|
'stacktrace' => 'Traça de la pila',
|
||||||
'more_info' => 'Més informació',
|
'more_info' => 'Més informació',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'collect_info' => 'Si us plau, recopili més informació al directori <code>emmagatzematge/registre</code> on hi ha els fitxers de registre. Si utilitzes Docker, utilitza <code>docker logs -f [container]</code>.',
|
'collect_info' => 'Si us plau, recopili més informació al directori <code>emmagatzematge/registre</code> on hi ha els fitxers de registre. Si utilitzes Docker, utilitza <code>docker logs -f [container]</code>.',
|
||||||
'collect_info_more' => 'Pots llegir més sobre la recol·lecció d\'errors a <a href="https://docs.firefly-iii.org/how-to/general/debug/">les FAQ</a>.',
|
'collect_info_more' => 'Pots llegir més sobre la recol·lecció d\'errors a <a href="https://docs.firefly-iii.org/how-to/general/debug/">les FAQ</a>.',
|
||||||
|
@ -22,16 +22,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
// general stuff:
|
// general stuff:
|
||||||
@ -339,16 +330,7 @@ return [
|
|||||||
|
|
||||||
// old
|
// old
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'search_modifier_date_on' => 'La data de la transacció és ":value"',
|
'search_modifier_date_on' => 'La data de la transacció és ":value"',
|
||||||
'search_modifier_not_date_on' => 'La data de la transacció no és ":value"',
|
'search_modifier_not_date_on' => 'La data de la transacció no és ":value"',
|
||||||
@ -713,16 +695,7 @@ return [
|
|||||||
'create_rule_from_query' => 'Crear regla nova a partir de la consulta de la cerca',
|
'create_rule_from_query' => 'Crear regla nova a partir de la consulta de la cerca',
|
||||||
'rule_from_search_words' => 'El motor de regles ha tingut problemes gestionant ":string". La regla suggerida que s\'ajusti a la consulta de cerca pot donar resultats diferents. Si us plau, verifica els activadors de la regla curosament.',
|
'rule_from_search_words' => 'El motor de regles ha tingut problemes gestionant ":string". La regla suggerida que s\'ajusti a la consulta de cerca pot donar resultats diferents. Si us plau, verifica els activadors de la regla curosament.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// END
|
// END
|
||||||
'modifiers_applies_are' => 'Els següents modificadors també s\'han aplicat a la cerca:',
|
'modifiers_applies_are' => 'Els següents modificadors també s\'han aplicat a la cerca:',
|
||||||
@ -1212,16 +1185,7 @@ return [
|
|||||||
'rule_trigger_not_destination_is_cash' => 'El compte de destí no és un compte d\'efectiu',
|
'rule_trigger_not_destination_is_cash' => 'El compte de destí no és un compte d\'efectiu',
|
||||||
'rule_trigger_not_account_is_cash' => 'Cap dels comptes és un compte d\'efectiu',
|
'rule_trigger_not_account_is_cash' => 'Cap dels comptes és un compte d\'efectiu',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
// set, clear, add, remove, append/prepend
|
// set, clear, add, remove, append/prepend
|
||||||
@ -1536,16 +1500,7 @@ return [
|
|||||||
'multi_account_warning_deposit' => 'Tingues en compte que el compte de destí de divisions posteriors serà anul·lat pel que es troba definit a la primera divisió del dipòsit.',
|
'multi_account_warning_deposit' => 'Tingues en compte que el compte de destí de divisions posteriors serà anul·lat pel que es troba definit a la primera divisió del dipòsit.',
|
||||||
'multi_account_warning_transfer' => 'Tingues en compte que el compte d\'origen + destí de divisions posteriors serà anul·lat pel que es troba definit a la primera divisió de la transferència.',
|
'multi_account_warning_transfer' => 'Tingues en compte que el compte d\'origen + destí de divisions posteriors serà anul·lat pel que es troba definit a la primera divisió de la transferència.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// export data:
|
// export data:
|
||||||
'export_data_title' => 'Exportar dades de Firefly III',
|
'export_data_title' => 'Exportar dades de Firefly III',
|
||||||
@ -1940,16 +1895,7 @@ return [
|
|||||||
'stored_category' => 'S\'ha desat la nova categoria ":name"',
|
'stored_category' => 'S\'ha desat la nova categoria ":name"',
|
||||||
'without_category_between' => 'Sense categoria entre :start i :end',
|
'without_category_between' => 'Sense categoria entre :start i :end',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// transactions:
|
// transactions:
|
||||||
'wait_loading_transaction' => 'Per favor, espera que carregui el formulari',
|
'wait_loading_transaction' => 'Per favor, espera que carregui el formulari',
|
||||||
@ -2187,16 +2133,7 @@ return [
|
|||||||
'classification' => 'Classificació',
|
'classification' => 'Classificació',
|
||||||
'store_transaction' => 'Desar transacció',
|
'store_transaction' => 'Desar transacció',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// reports:
|
// reports:
|
||||||
'report_default' => 'Informe financer per defecte entre :start i :end',
|
'report_default' => 'Informe financer per defecte entre :start i :end',
|
||||||
@ -2302,16 +2239,7 @@ return [
|
|||||||
'sum_in_default_currency' => 'La suma sempre estarà en la teua moneda per defecte.',
|
'sum_in_default_currency' => 'La suma sempre estarà en la teua moneda per defecte.',
|
||||||
'net_filtered_prefs' => 'Aquesta gràfica mai inclourà comptes que tenen la casella "Inclou al valor net" desmarcada.',
|
'net_filtered_prefs' => 'Aquesta gràfica mai inclourà comptes que tenen la casella "Inclou al valor net" desmarcada.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// charts:
|
// charts:
|
||||||
'chart' => 'Gràfica',
|
'chart' => 'Gràfica',
|
||||||
@ -2404,16 +2332,7 @@ return [
|
|||||||
'total_amount' => 'Import total',
|
'total_amount' => 'Import total',
|
||||||
'number_of_decimals' => 'Nombre de decimals',
|
'number_of_decimals' => 'Nombre de decimals',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// administration
|
// administration
|
||||||
'invite_is_already_redeemed' => 'La invitació a ":address" ja ha sigut gastada.',
|
'invite_is_already_redeemed' => 'La invitació a ":address" ja ha sigut gastada.',
|
||||||
@ -2689,16 +2608,7 @@ return [
|
|||||||
'except_weekends' => 'Excepte els caps de setmana',
|
'except_weekends' => 'Excepte els caps de setmana',
|
||||||
'recurrence_deleted' => 'S\'ha eliminat la transacció recurrent ":title"',
|
'recurrence_deleted' => 'S\'ha eliminat la transacció recurrent ":title"',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// new lines for summary controller.
|
// new lines for summary controller.
|
||||||
'box_balance_in_currency' => 'Saldo (:currency)',
|
'box_balance_in_currency' => 'Saldo (:currency)',
|
||||||
@ -2765,13 +2675,4 @@ return [
|
|||||||
'disable_auto_convert' => 'Deshabilita la conversió de moneda',
|
'disable_auto_convert' => 'Deshabilita la conversió de moneda',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -74,16 +65,7 @@ return [
|
|||||||
'tagMode' => 'Mode d\'etiqueta',
|
'tagMode' => 'Mode d\'etiqueta',
|
||||||
'virtual_balance' => 'Saldo virtual',
|
'virtual_balance' => 'Saldo virtual',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'targetamount' => 'Quantitat objectiu',
|
'targetamount' => 'Quantitat objectiu',
|
||||||
'account_role' => 'Rol del compte',
|
'account_role' => 'Rol del compte',
|
||||||
@ -178,16 +160,7 @@ return [
|
|||||||
'journal_areYouSure' => 'Estàs segur que vols eliminar la transacció amb descripció ":description"?',
|
'journal_areYouSure' => 'Estàs segur que vols eliminar la transacció amb descripció ":description"?',
|
||||||
'mass_journal_are_you_sure' => 'Estàs segur que vols eliminar aquestes transaccions?',
|
'mass_journal_are_you_sure' => 'Estàs segur que vols eliminar aquestes transaccions?',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'tag_areYouSure' => 'Estàs segur que vols eliminar l\'etiqueta ":tag"?',
|
'tag_areYouSure' => 'Estàs segur que vols eliminar l\'etiqueta ":tag"?',
|
||||||
'journal_link_areYouSure' => 'Estàs segur que vols eliminar l\'enllaç entre <a href=":source_link">:source</a> i <a href=":destination_link">:destination</a>?',
|
'journal_link_areYouSure' => 'Estàs segur que vols eliminar l\'enllaç entre <a href=":source_link">:source</a> i <a href=":destination_link">:destination</a>?',
|
||||||
@ -252,16 +225,7 @@ return [
|
|||||||
'fints_account' => 'Compte FinTS',
|
'fints_account' => 'Compte FinTS',
|
||||||
'local_account' => 'Compte Firefly III',
|
'local_account' => 'Compte Firefly III',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'from_date' => 'Data des de',
|
'from_date' => 'Data des de',
|
||||||
'to_date' => 'Data fins a',
|
'to_date' => 'Data fins a',
|
||||||
@ -299,13 +263,4 @@ return [
|
|||||||
'webhook_response' => 'Resposta',
|
'webhook_response' => 'Resposta',
|
||||||
'webhook_trigger' => 'Activador',
|
'webhook_trigger' => 'Activador',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -63,16 +54,7 @@ return [
|
|||||||
'budgets_index_list_of_budgets' => 'Fes servir aquesta taula per establir les quantitats per cada pressupost i veure com t\'està anant.',
|
'budgets_index_list_of_budgets' => 'Fes servir aquesta taula per establir les quantitats per cada pressupost i veure com t\'està anant.',
|
||||||
'budgets_index_outro' => 'Per aprendre més coses sobre pressupostar, dóna un cop d\'ull a la icona d\'ajuda de la cantonada superior dreta.',
|
'budgets_index_outro' => 'Per aprendre més coses sobre pressupostar, dóna un cop d\'ull a la icona d\'ajuda de la cantonada superior dreta.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// reports (index)
|
// reports (index)
|
||||||
'reports_index_intro' => 'Fes servir aquests informes per obtenir detalls de les teves finances.',
|
'reports_index_intro' => 'Fes servir aquests informes per obtenir detalls de les teves finances.',
|
||||||
@ -111,16 +93,7 @@ return [
|
|||||||
'piggy-banks_index_button' => 'Al costat d\'aquesta barra de progrés hi ha dos botons (+ i -) per afegir o treure diners de cada guardiola.',
|
'piggy-banks_index_button' => 'Al costat d\'aquesta barra de progrés hi ha dos botons (+ i -) per afegir o treure diners de cada guardiola.',
|
||||||
'piggy-banks_index_accountStatus' => 'Per cada compte d\'actius amb una guardiola com a mínim, el seu estat es llista en aquesta taula.',
|
'piggy-banks_index_accountStatus' => 'Per cada compte d\'actius amb una guardiola com a mínim, el seu estat es llista en aquesta taula.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// create piggy
|
// create piggy
|
||||||
'piggy-banks_create_name' => 'Quin és el teu objectiu? Un nou sofà, una càmera, diners per emergències?',
|
'piggy-banks_create_name' => 'Quin és el teu objectiu? Un nou sofà, una càmera, diners per emergències?',
|
||||||
@ -164,16 +137,7 @@ return [
|
|||||||
'rules_create_test_rule_triggers' => 'Fes servir aquest botó per veure quines transaccions coincideixen amb la regla.',
|
'rules_create_test_rule_triggers' => 'Fes servir aquest botó per veure quines transaccions coincideixen amb la regla.',
|
||||||
'rules_create_actions' => 'Estableix tantes accions com vulguis.',
|
'rules_create_actions' => 'Estableix tantes accions com vulguis.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// preferences
|
// preferences
|
||||||
'preferences_index_tabs' => 'Hi ha més opcions disponibles sota aquestes pestanyes.',
|
'preferences_index_tabs' => 'Hi ha més opcions disponibles sota aquestes pestanyes.',
|
||||||
@ -186,13 +150,4 @@ return [
|
|||||||
// create currency
|
// create currency
|
||||||
'currencies_create_code' => 'Aquest codi ha de complir amb l\'ISO (Cerca-ho a Google per la moneda nova).',
|
'currencies_create_code' => 'Aquest codi ha de complir amb l\'ISO (Cerca-ho a Google per la moneda nova).',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -68,16 +59,7 @@ return [
|
|||||||
'next_expected_match' => 'Pròxima coincidència esperada',
|
'next_expected_match' => 'Pròxima coincidència esperada',
|
||||||
'automatch' => 'Cercar coincidència automàticament?',
|
'automatch' => 'Cercar coincidència automàticament?',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'repeat_freq' => 'Repeticions',
|
'repeat_freq' => 'Repeticions',
|
||||||
'description' => 'Descripció',
|
'description' => 'Descripció',
|
||||||
@ -145,16 +127,7 @@ return [
|
|||||||
'account_at_bunq' => 'Compte amb bunq',
|
'account_at_bunq' => 'Compte amb bunq',
|
||||||
'file_name' => 'Nom del fitxer',
|
'file_name' => 'Nom del fitxer',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'file_size' => 'Mida del fitxer',
|
'file_size' => 'Mida del fitxer',
|
||||||
'file_type' => 'Tipus de fitxer',
|
'file_type' => 'Tipus de fitxer',
|
||||||
@ -183,13 +156,4 @@ return [
|
|||||||
'url' => 'URL',
|
'url' => 'URL',
|
||||||
'secret' => 'Secret',
|
'secret' => 'Secret',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -104,16 +95,7 @@ return [
|
|||||||
'unique_object_for_user' => 'Aquest nom ja és en ús.',
|
'unique_object_for_user' => 'Aquest nom ja és en ús.',
|
||||||
'unique_account_for_user' => 'Aquest nom de compte ja és en ús.',
|
'unique_account_for_user' => 'Aquest nom de compte ja és en ús.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'between.numeric' => 'El camp :attribute ha d\'estar entre :min i :max.',
|
'between.numeric' => 'El camp :attribute ha d\'estar entre :min i :max.',
|
||||||
'between.file' => 'El camp :attribute ha de tenir entre :min i :max kilobytes.',
|
'between.file' => 'El camp :attribute ha de tenir entre :min i :max kilobytes.',
|
||||||
@ -184,16 +166,7 @@ return [
|
|||||||
'same_account_type' => 'Ambdues comptes han de ser del mateix tipus',
|
'same_account_type' => 'Ambdues comptes han de ser del mateix tipus',
|
||||||
'same_account_currency' => 'Ambdues comptes han de tenir la mateixa configuració de moneda',
|
'same_account_currency' => 'Ambdues comptes han de tenir la mateixa configuració de moneda',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'secure_password' => 'Aquesta contrasenya no és segura. Si us plau, prova-ho de nou. Per més informació, visita https://bit.ly/FF3-password-security',
|
'secure_password' => 'Aquesta contrasenya no és segura. Si us plau, prova-ho de nou. Per més informació, visita https://bit.ly/FF3-password-security',
|
||||||
'valid_recurrence_rep_type' => 'Tipus de repetició invàlid per transaccions periòdiques.',
|
'valid_recurrence_rep_type' => 'Tipus de repetició invàlid per transaccions periòdiques.',
|
||||||
@ -256,16 +229,7 @@ return [
|
|||||||
'deposit_dest_bad_data' => 'No s\'ha pogut trobar un compte de destí vàlid buscant l\'ID ":id" o el nom ":name".',
|
'deposit_dest_bad_data' => 'No s\'ha pogut trobar un compte de destí vàlid buscant l\'ID ":id" o el nom ":name".',
|
||||||
'deposit_dest_wrong_type' => 'El compte de destí enviat no és del tipus correcte.',
|
'deposit_dest_wrong_type' => 'El compte de destí enviat no és del tipus correcte.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'transfer_source_need_data' => 'Necessites obtenir un ID de compte d\'origen vàlid i/o un nom de compte d\'origen vàlid per continuar.',
|
'transfer_source_need_data' => 'Necessites obtenir un ID de compte d\'origen vàlid i/o un nom de compte d\'origen vàlid per continuar.',
|
||||||
'transfer_source_bad_data' => '[c] No s\'ha pogut trobar un compte font vàlid en cercar per l\'identificador ":id" o el nom ":name".',
|
'transfer_source_bad_data' => '[c] No s\'ha pogut trobar un compte font vàlid en cercar per l\'identificador ":id" o el nom ":name".',
|
||||||
@ -300,13 +264,4 @@ return [
|
|||||||
'no_access_user_group' => 'No tens accés a aquesta administració.',
|
'no_access_user_group' => 'No tens accés a aquesta administració.',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -21,16 +21,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
];
|
];
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -65,16 +56,7 @@ return [
|
|||||||
'transfer_list' => 'Převody',
|
'transfer_list' => 'Převody',
|
||||||
'transfers_list' => 'Převody',
|
'transfers_list' => 'Převody',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'reconciliation_list' => 'Vyúčtování',
|
'reconciliation_list' => 'Vyúčtování',
|
||||||
'create_withdrawal' => 'Vytvořit nový výběr',
|
'create_withdrawal' => 'Vytvořit nový výběr',
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,82 +20,56 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'html_language' => 'cs',
|
'html_language' => 'cs',
|
||||||
'locale' => 'cs, Čeština, cs_CZ, cs_CZ.utf8, cs_CZ.UTF-8',
|
'locale' => 'cs, Čeština, cs_CZ, cs_CZ.utf8, cs_CZ.UTF-8',
|
||||||
// 'month' => '%B %Y',
|
// 'month' => '%B %Y',
|
||||||
'month_js' => 'MMMM YYYY',
|
'month_js' => 'MMMM YYYY',
|
||||||
|
|
||||||
// 'month_and_day' => '%B %e, %Y',
|
// 'month_and_day' => '%B %e, %Y',
|
||||||
'month_and_day_moment_js' => 'MMM D, RRRR',
|
'month_and_day_moment_js' => 'MMM D, RRRR',
|
||||||
'month_and_day_fns' => 'd MMMM, y',
|
'month_and_day_fns' => 'd MMMM, y',
|
||||||
'month_and_day_js' => 'D. MMMM YYYY',
|
'month_and_day_js' => 'D. MMMM YYYY',
|
||||||
|
|
||||||
// 'month_and_date_day' => '%A %B %e, %Y',
|
// 'month_and_date_day' => '%A %B %e, %Y',
|
||||||
'month_and_date_day_js' => 'dddd MMMM Do, YYYY',
|
'month_and_date_day_js' => 'dddd MMMM Do, YYYY',
|
||||||
|
|
||||||
// 'month_and_day_no_year' => '%B %e',
|
// 'month_and_day_no_year' => '%B %e',
|
||||||
'month_and_day_no_year_js' => 'MMMM Do',
|
'month_and_day_no_year_js' => 'MMMM Do',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// 'date_time' => '%B %e, %Y, @ %T',
|
// 'date_time' => '%B %e, %Y, @ %T',
|
||||||
'date_time_js' => 'D. MMMM YYYY, @ HH:mm:ss',
|
'date_time_js' => 'D. MMMM YYYY, @ HH:mm:ss',
|
||||||
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
|
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
|
||||||
|
'date_time_fns_short' => 'MMMM do, yyyy @ HH:mm',
|
||||||
|
|
||||||
// 'specific_day' => '%e %B %Y',
|
// 'specific_day' => '%e %B %Y',
|
||||||
'specific_day_js' => 'D. MMMM YYYY',
|
'specific_day_js' => 'D. MMMM YYYY',
|
||||||
|
|
||||||
// 'week_in_year' => 'Week %V, %G',
|
// 'week_in_year' => 'Week %V, %G',
|
||||||
'week_in_year_js' => '[Week] W, GGGG',
|
'week_in_year_js' => '[Week] W, GGGG',
|
||||||
'week_in_year_fns' => "'týden' w, yyyy",
|
'week_in_year_fns' => "'týden' w, yyyy",
|
||||||
|
|
||||||
// 'year' => '%Y',
|
// 'year' => '%Y',
|
||||||
'year_js' => 'YYYY',
|
'year_js' => 'YYYY',
|
||||||
|
|
||||||
// 'half_year' => '%B %Y',
|
// 'half_year' => '%B %Y',
|
||||||
'half_year_js' => '\QQ YYYY',
|
'half_year_js' => '\QQ YYYY',
|
||||||
|
|
||||||
'quarter_fns' => "Q'Q, yyyy",
|
'quarter_fns' => "Q'Q, yyyy",
|
||||||
'half_year_fns' => "'H{half}', yyyy",
|
'half_year_fns' => "'H{half}', yyyy",
|
||||||
'dow_1' => 'Pondělí',
|
'dow_1' => 'Pondělí',
|
||||||
'dow_2' => 'Úterý',
|
'dow_2' => 'Úterý',
|
||||||
'dow_3' => 'Středa',
|
'dow_3' => 'Středa',
|
||||||
'dow_4' => 'Čtvrtek',
|
'dow_4' => 'Čtvrtek',
|
||||||
'dow_5' => 'Pátek',
|
'dow_5' => 'Pátek',
|
||||||
'dow_6' => 'Sobota',
|
'dow_6' => 'Sobota',
|
||||||
'dow_7' => 'Neděle',
|
'dow_7' => 'Neděle',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -47,13 +38,4 @@ return [
|
|||||||
'profile-index' => 'Mějte na paměti, že obsah demostránky je každé čtyři hodny smazán. Přístup může být zrušen kdykoli. Toto se děje automaticky a nejedná se o chybu.',
|
'profile-index' => 'Mějte na paměti, že obsah demostránky je každé čtyři hodny smazán. Přístup může být zrušen kdykoli. Toto se děje automaticky a nejedná se o chybu.',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -44,16 +35,7 @@ return [
|
|||||||
'admin_test_subject' => 'Testovací zpráva z vaší instalace Firefly III',
|
'admin_test_subject' => 'Testovací zpráva z vaší instalace Firefly III',
|
||||||
'admin_test_body' => 'Toto je testovací zpráva z instance Firefly III. Byla odeslána na :email.',
|
'admin_test_body' => 'Toto je testovací zpráva z instance Firefly III. Byla odeslána na :email.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// invite
|
// invite
|
||||||
'invitation_created_subject' => 'An invitation has been created',
|
'invitation_created_subject' => 'An invitation has been created',
|
||||||
@ -90,16 +72,7 @@ return [
|
|||||||
'registered_pw_reset_link' => 'Obnovení hesla:',
|
'registered_pw_reset_link' => 'Obnovení hesla:',
|
||||||
'registered_doc_link' => 'Dokumentace:',
|
'registered_doc_link' => 'Dokumentace:',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// new version
|
// new version
|
||||||
'new_version_email_subject' => 'A new Firefly III version is available',
|
'new_version_email_subject' => 'A new Firefly III version is available',
|
||||||
@ -145,16 +118,7 @@ return [
|
|||||||
'error_headers' => 'The following headers may also be relevant:',
|
'error_headers' => 'The following headers may also be relevant:',
|
||||||
'error_post' => 'This was submitted by the user:',
|
'error_post' => 'This was submitted by the user:',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// report new journals
|
// report new journals
|
||||||
'new_journals_subject' => 'Firefly III vytvořil novou transakci|Firefly III vytvořil :count nových transakcí',
|
'new_journals_subject' => 'Firefly III vytvořil novou transakci|Firefly III vytvořil :count nových transakcí',
|
||||||
@ -171,13 +135,4 @@ return [
|
|||||||
'bill_warning_extension_date_zero' => 'Your bill **":name"** is due to be extended or cancelled on :date. This moment will pass **TODAY!**',
|
'bill_warning_extension_date_zero' => 'Your bill **":name"** is due to be extended or cancelled on :date. This moment will pass **TODAY!**',
|
||||||
'bill_warning_please_action' => 'Please take the appropriate action.',
|
'bill_warning_please_action' => 'Please take the appropriate action.',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -51,16 +42,7 @@ return [
|
|||||||
'stacktrace' => 'Trasování zásobníku',
|
'stacktrace' => 'Trasování zásobníku',
|
||||||
'more_info' => 'Více informací',
|
'more_info' => 'Více informací',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'collect_info' => 'Shromažďujte prosím další informace do adresáře <code>storage/logs</code>, kde najdete chybové záznamy. Pokud používáte Docker, použijte <code>docker logs -f [container]</code>.',
|
'collect_info' => 'Shromažďujte prosím další informace do adresáře <code>storage/logs</code>, kde najdete chybové záznamy. Pokud používáte Docker, použijte <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/how-to/general/debug/">the FAQ</a>.',
|
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
|
||||||
|
@ -22,16 +22,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
// general stuff:
|
// general stuff:
|
||||||
@ -42,8 +33,8 @@ return [
|
|||||||
'split' => 'Rozdělit',
|
'split' => 'Rozdělit',
|
||||||
'single_split' => 'Rozdělit',
|
'single_split' => 'Rozdělit',
|
||||||
'clone' => 'Klonovat',
|
'clone' => 'Klonovat',
|
||||||
'clone_and_edit' => 'Clone and edit',
|
'clone_and_edit' => 'Klonovat a upravit',
|
||||||
'confirm_action' => 'Confirm action',
|
'confirm_action' => 'Potvrdit akci',
|
||||||
'last_seven_days' => 'Uplynulých 7 dnů',
|
'last_seven_days' => 'Uplynulých 7 dnů',
|
||||||
'last_thirty_days' => 'Uplynulých 30 dní',
|
'last_thirty_days' => 'Uplynulých 30 dní',
|
||||||
'last_180_days' => 'Posledních 180 dní',
|
'last_180_days' => 'Posledních 180 dní',
|
||||||
@ -103,7 +94,7 @@ return [
|
|||||||
'flash_error_multiple' => 'Jedna chyba | :count chyb',
|
'flash_error_multiple' => 'Jedna chyba | :count chyb',
|
||||||
'net_worth' => 'Čisté jmění',
|
'net_worth' => 'Čisté jmění',
|
||||||
'help_for_this_page' => 'Nápověda pro tuto stránku',
|
'help_for_this_page' => 'Nápověda pro tuto stránku',
|
||||||
'help_for_this_page_body' => 'You can find more information about this page <a href="https://docs.firefly-iii.org/">in the documentation</a>.',
|
'help_for_this_page_body' => 'Více informací o této stránce <a href="https://docs.firefly-iii.org/">naleznete v dokumentaci</a>.',
|
||||||
'two_factor_welcome' => 'Zdravíme!',
|
'two_factor_welcome' => 'Zdravíme!',
|
||||||
'two_factor_enter_code' => 'Pro pokračování zadejte kód pro dvoufázové ověření. Vaše aplikace ho pro vás může vytvořit.',
|
'two_factor_enter_code' => 'Pro pokračování zadejte kód pro dvoufázové ověření. Vaše aplikace ho pro vás může vytvořit.',
|
||||||
'two_factor_code_here' => 'Sem zadejte kód',
|
'two_factor_code_here' => 'Sem zadejte kód',
|
||||||
@ -113,7 +104,7 @@ return [
|
|||||||
'two_factor_forgot' => 'Zapomněl(a) jsem si nástroj pro dvoufázové ověření.',
|
'two_factor_forgot' => 'Zapomněl(a) jsem si nástroj pro dvoufázové ověření.',
|
||||||
'two_factor_lost_header' => 'Ztratili jste své dvoufázové ověření?',
|
'two_factor_lost_header' => 'Ztratili jste své dvoufázové ověření?',
|
||||||
'two_factor_lost_intro' => 'Pokud jste ztratili i své záložní kódy, máte smůlu. Toto se pak už nedá napravit z webového rozhraní. Máte dvě možnosti:',
|
'two_factor_lost_intro' => 'Pokud jste ztratili i své záložní kódy, máte smůlu. Toto se pak už nedá napravit z webového rozhraní. Máte dvě možnosti:',
|
||||||
'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read <a href="https://docs.firefly-iii.org/references/faq/firefly-iii/using/#i-lost-my-2fa-token-generator-or-2fa-has-stopped-working>this entry in the FAQ</a> for instructions.',
|
'two_factor_lost_fix_self' => 'Pokud si sami provozujete instanci Firefly III, přečtěte si <a href="https://docs.firefly-iii.org/references/faq/firefly-iii/using/#i-lost-my-2fa-token-generator-or-2fa-has-stopped-working> tento záznam v FAQ</a> pro instrukce.',
|
||||||
'two_factor_lost_fix_owner' => 'V ostatních případech napište provozovateli, <a href="mailto::site_owner">:site_owner</a> a požádejte ho o resetování svého dvoufázového ověřování.',
|
'two_factor_lost_fix_owner' => 'V ostatních případech napište provozovateli, <a href="mailto::site_owner">:site_owner</a> a požádejte ho o resetování svého dvoufázového ověřování.',
|
||||||
'mfa_backup_code' => 'Použitím záložního kódu, umožňujícího přihlášení do Firefly III, platnost kódu zaniká. Takže kód, kterým jste se už přihlásili, už k ničemu není (není možné ho použít opakovaně) proto si ho ze seznamu vyškrtněte.',
|
'mfa_backup_code' => 'Použitím záložního kódu, umožňujícího přihlášení do Firefly III, platnost kódu zaniká. Takže kód, kterým jste se už přihlásili, už k ničemu není (není možné ho použít opakovaně) proto si ho ze seznamu vyškrtněte.',
|
||||||
'pref_two_factor_new_backup_codes' => 'Získat nové záložní kódy',
|
'pref_two_factor_new_backup_codes' => 'Získat nové záložní kódy',
|
||||||
@ -242,52 +233,52 @@ return [
|
|||||||
|
|
||||||
// Webhooks
|
// Webhooks
|
||||||
'webhooks' => 'Webhooky',
|
'webhooks' => 'Webhooky',
|
||||||
'webhooks_breadcrumb' => 'Webhooks',
|
'webhooks_breadcrumb' => 'Webhooky',
|
||||||
'webhooks_menu_disabled' => 'disabled',
|
'webhooks_menu_disabled' => 'zakázáno',
|
||||||
'no_webhook_messages' => 'There are no webhook messages',
|
'no_webhook_messages' => 'Neexistují žádné zprávy webhooku',
|
||||||
'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
|
'webhook_trigger_STORE_TRANSACTION' => 'Po vytvoření transakce',
|
||||||
'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
|
'webhook_trigger_UPDATE_TRANSACTION' => 'Po aktualizaci transakce',
|
||||||
'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
|
'webhook_trigger_DESTROY_TRANSACTION' => 'Po odstranění transakce',
|
||||||
'webhook_response_TRANSACTIONS' => 'Transaction details',
|
'webhook_response_TRANSACTIONS' => 'Podrobnosti transakce',
|
||||||
'webhook_response_ACCOUNTS' => 'Account details',
|
'webhook_response_ACCOUNTS' => 'Podrobnosti účtu',
|
||||||
'webhook_response_none_NONE' => 'No details',
|
'webhook_response_none_NONE' => 'Žádné detaily',
|
||||||
'webhook_delivery_JSON' => 'JSON',
|
'webhook_delivery_JSON' => 'JSON',
|
||||||
'inspect' => 'Inspect',
|
'inspect' => 'Prozkoumat',
|
||||||
'create_new_webhook' => 'Create new webhook',
|
'create_new_webhook' => 'Vytvořit nový webhook',
|
||||||
'webhooks_create_breadcrumb' => 'Create new webhook',
|
'webhooks_create_breadcrumb' => 'Vytvořit nový webhook',
|
||||||
'webhook_trigger_form_help' => 'Indicate on what event the webhook will trigger',
|
'webhook_trigger_form_help' => 'Určit, na kterou událost se spustí webhook',
|
||||||
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
|
'webhook_response_form_help' => 'Určit, co musí webhook odeslat do URL.',
|
||||||
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
|
'webhook_delivery_form_help' => 'V jakém formátu musí webhook posílat data.',
|
||||||
'webhook_active_form_help' => 'The webhook must be active or it won\'t be called.',
|
'webhook_active_form_help' => 'Webhook musí být aktivní, nebo nebude zavolán.',
|
||||||
'stored_new_webhook' => 'Stored new webhook ":title"',
|
'stored_new_webhook' => 'Uložený nový webhook ":title"',
|
||||||
'delete_webhook' => 'Delete webhook',
|
'delete_webhook' => 'Smazat webhook',
|
||||||
'deleted_webhook' => 'Deleted webhook ":title"',
|
'deleted_webhook' => 'Smazán webhook ":title"',
|
||||||
'edit_webhook' => 'Edit webhook ":title"',
|
'edit_webhook' => 'Upravit webhook ":title"',
|
||||||
'updated_webhook' => 'Updated webhook ":title"',
|
'updated_webhook' => 'Aktualizován webhook ":title"',
|
||||||
'edit_webhook_js' => 'Edit webhook "{title}"',
|
'edit_webhook_js' => 'Upravit webhook "{title}"',
|
||||||
'show_webhook' => 'Webhook ":title"',
|
'show_webhook' => 'Webhook ":title"',
|
||||||
'webhook_was_triggered' => 'The webhook was triggered on the indicated transaction. Please wait for results to appear.',
|
'webhook_was_triggered' => 'Webhook byl spuštěn na určené transakci. Prosím počkejte, než se objeví výsledky.',
|
||||||
'webhook_messages' => 'Webhook message',
|
'webhook_messages' => 'Zpráva webhooku',
|
||||||
'view_message' => 'View message',
|
'view_message' => 'Zobrazit zprávu',
|
||||||
'view_attempts' => 'View failed attempts',
|
'view_attempts' => 'Zobrazit neúspěšné pokusy',
|
||||||
'message_content_title' => 'Webhook message content',
|
'message_content_title' => 'Obsah zprávy webhooku',
|
||||||
'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.',
|
'message_content_help' => 'Toto je obsah zprávy, která byla odeslána (nebo vyzkoušena) pomocí tohoto webhooku.',
|
||||||
'attempt_content_title' => 'Webhook attempts',
|
'attempt_content_title' => 'Pokusy webhooku',
|
||||||
'attempt_content_help' => 'These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.',
|
'attempt_content_help' => 'To vše jsou neúspěšné pokusy této zpravy webhooku o odeslání na nakonfigurovanou URL. Po nějaké době, Firefly III přestane zkoušet odesílat zprávu.',
|
||||||
'no_attempts' => 'There are no unsuccessful attempts. That\'s a good thing!',
|
'no_attempts' => 'Nebyly nalezeny žádné neúspěšné pokusy. To je dobrá věc!',
|
||||||
'webhook_attempt_at' => 'Attempt at {moment}',
|
'webhook_attempt_at' => 'Attempt at {moment}',
|
||||||
'logs' => 'Logs',
|
'logs' => 'Logy',
|
||||||
'response' => 'Response',
|
'response' => 'Odpověď',
|
||||||
'visit_webhook_url' => 'Visit webhook URL',
|
'visit_webhook_url' => 'Navštívit URL webhooku',
|
||||||
'reset_webhook_secret' => 'Reset webhook secret',
|
'reset_webhook_secret' => 'Restartovat tajný klíč webhooku',
|
||||||
'webhook_stored_link' => '<a href="webhooks/show/{ID}">Webhook #{ID} ("{title}")</a> has been stored.',
|
'webhook_stored_link' => '<a href="webhooks/show/{ID}">Webhook #{ID} ("{title}")</a> byl uložen.',
|
||||||
'webhook_updated_link' => '<a href="webhooks/show/{ID}">Webhook #{ID}</a> ("{title}") has been updated.',
|
'webhook_updated_link' => '<a href="webhooks/show/{ID}">Webhook #{ID}</a> ("{title}") byl aktualizován.',
|
||||||
|
|
||||||
// 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' => 'Application "<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' => 'Aplikace <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_site' => 'You will be redirected to <code>:url</code> which will then be able to access your Firefly III data.',
|
'authorization_request_site' => 'Budete přesměrováni na <code>:url</code>, na které pak budete mít přístup k vašim údajům Firefly III.',
|
||||||
'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.',
|
'authorization_request_invalid' => 'Tento požadavek na přístup je neplatný. Prosím, nikdy nezkoušejte tento odkaz znovu.',
|
||||||
'scopes_will_be_able' => 'Tato aplikace bude moci:',
|
'scopes_will_be_able' => 'Tato aplikace bude moci:',
|
||||||
'button_authorize' => 'Autorizovat',
|
'button_authorize' => 'Autorizovat',
|
||||||
'none_in_select_list' => '(žádné)',
|
'none_in_select_list' => '(žádné)',
|
||||||
@ -327,243 +318,234 @@ return [
|
|||||||
'admin_update_channel_explain' => 'Firefly III má tři aktualizační "kanály", které určují, jak moc jste napřed, jde-li o funkce, vylepšení a chyby. Použijte "beta" kanál, pokud jste dobrodružný a "alfa", když chcete žít nebezpečně.',
|
'admin_update_channel_explain' => 'Firefly III má tři aktualizační "kanály", které určují, jak moc jste napřed, jde-li o funkce, vylepšení a chyby. Použijte "beta" kanál, pokud jste dobrodružný a "alfa", když chcete žít nebezpečně.',
|
||||||
'update_channel_stable' => 'Stabilní. Vše by mělo fungovat podle očekávání.',
|
'update_channel_stable' => 'Stabilní. Vše by mělo fungovat podle očekávání.',
|
||||||
'update_channel_beta' => 'Beta verze. Jsou zde nové funkce, ale nemusí vše fungovat.',
|
'update_channel_beta' => 'Beta verze. Jsou zde nové funkce, ale nemusí vše fungovat.',
|
||||||
'update_channel_alpha' => 'Alpha. We throw stuff in, and use whatever sticks.',
|
'update_channel_alpha' => 'Alfa. Míchame všechno dohromady a používáme vše, co se osvědčí.',
|
||||||
|
|
||||||
// search
|
// search
|
||||||
'search' => 'Hledat',
|
'search' => 'Hledat',
|
||||||
'search_query' => 'Dotaz',
|
'search_query' => 'Dotaz',
|
||||||
'search_found_transactions' => 'Firefly III found :count transaction in :time seconds.|Firefly III found :count transactions in :time seconds.',
|
'search_found_transactions' => 'Firefly III nalezl :count transakci během :time sekund.|Firefly III nalezl :count transakcí během :time sekund.',
|
||||||
'search_found_more_transactions' => 'Firefly III found more than :count transactions in :time seconds.',
|
'search_found_more_transactions' => 'Firefly III nalezlo vice než :count transakcí za :time sekund.',
|
||||||
'search_for_query' => 'Firefly III is searching for transactions with all of these words in them: <span class="text-info">:query</span>',
|
'search_for_query' => 'Firefly III hledá transakce se všemi těmito slovy: <span class="text-info">:query</span>',
|
||||||
'invalid_operators_list' => 'These search parameters are not valid and have been ignored.',
|
'invalid_operators_list' => 'Tyto vyhledávací parametry nejsou platné a byly ignorovány.',
|
||||||
|
|
||||||
// old
|
// old
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'search_modifier_date_on' => 'Transaction date is ":value"',
|
'search_modifier_date_on' => 'Datum transakce je ":value"',
|
||||||
'search_modifier_not_date_on' => 'Transaction date is not ":value"',
|
'search_modifier_not_date_on' => 'Datum transakce není ":value"',
|
||||||
'search_modifier_reconciled' => 'Transaction is reconciled',
|
'search_modifier_reconciled' => 'Transakce je odsouhlasena',
|
||||||
'search_modifier_not_reconciled' => 'Transaction is not reconciled',
|
'search_modifier_not_reconciled' => 'Transaction is not reconciled',
|
||||||
'search_modifier_id' => 'Číslo transakce je „:value“',
|
'search_modifier_id' => 'Číslo transakce je „:value“',
|
||||||
'search_modifier_not_id' => 'Transaction ID is not ":value"',
|
'search_modifier_not_id' => 'ID transakce není ":value"',
|
||||||
'search_modifier_date_before' => 'Datum transakce je před (včetně) ":value"',
|
'search_modifier_date_before' => 'Datum transakce je před (včetně) ":value"',
|
||||||
'search_modifier_date_after' => 'Datum transakce je po (včetně) ":value"',
|
'search_modifier_date_after' => 'Datum transakce je po (včetně) ":value"',
|
||||||
'search_modifier_external_id_is' => 'External ID is ":value"',
|
'search_modifier_external_id_is' => 'Externí ID je ":value"',
|
||||||
'search_modifier_not_external_id_is' => 'External ID is not ":value"',
|
'search_modifier_not_external_id_is' => 'Externí ID není ":value"',
|
||||||
'search_modifier_no_external_url' => 'The transaction has no external URL',
|
'search_modifier_no_external_url' => 'Transakce nemá žádnou externí URL',
|
||||||
'search_modifier_no_external_id' => 'The transaction has no external ID',
|
'search_modifier_no_external_id' => 'Transakce nemá žádnou externí ID',
|
||||||
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
|
'search_modifier_not_any_external_url' => 'Transakce nemá žádnou externí URL',
|
||||||
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
|
'search_modifier_not_any_external_id' => 'Transakce nemá žádnou externí ID',
|
||||||
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL',
|
'search_modifier_any_external_url' => 'Transakce musí mít (libovolnou) externí URL',
|
||||||
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
|
'search_modifier_any_external_id' => 'Transakce musí mít (libovolnou) externí ID',
|
||||||
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
|
'search_modifier_not_no_external_url' => 'Transakce musí mít (libovolnou) externí URL',
|
||||||
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
|
'search_modifier_not_no_external_id' => 'Transakce musí mít (libovolnou) externí ID',
|
||||||
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
|
'search_modifier_internal_reference_is' => 'Interní reference je ":value"',
|
||||||
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
|
'search_modifier_not_internal_reference_is' => 'Interní reference není ":value"',
|
||||||
'search_modifier_description_starts' => 'Description starts with ":value"',
|
'search_modifier_description_starts' => 'Popis začíná na ":value"',
|
||||||
'search_modifier_not_description_starts' => 'Description does not start with ":value"',
|
'search_modifier_not_description_starts' => 'Popis nezačíná na ":value"',
|
||||||
'search_modifier_description_ends' => 'Description ends on ":value"',
|
'search_modifier_description_ends' => 'Popis končí na ":value"',
|
||||||
'search_modifier_not_description_ends' => 'Description does not end on ":value"',
|
'search_modifier_not_description_ends' => 'Popis nekončí na ":value"',
|
||||||
'search_modifier_description_contains' => 'Description contains ":value"',
|
'search_modifier_description_contains' => 'Popis obsahuje ":value"',
|
||||||
'search_modifier_not_description_contains' => 'Description does not contain ":value"',
|
'search_modifier_not_description_contains' => 'Popis neobsahuje ":value"',
|
||||||
'search_modifier_description_is' => 'Description is exactly ":value"',
|
'search_modifier_description_is' => 'Popis je přesně ":value"',
|
||||||
'search_modifier_not_description_is' => 'Description is exactly not ":value"',
|
'search_modifier_not_description_is' => 'Popis není přesně ":value"',
|
||||||
'search_modifier_currency_is' => 'Transaction (foreign) currency is ":value"',
|
'search_modifier_currency_is' => '(Zahraniční) měna transakce je ":value"',
|
||||||
'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"',
|
'search_modifier_not_currency_is' => '(Zahraniční) měna transakce není ":value"',
|
||||||
'search_modifier_foreign_currency_is' => 'Transaction foreign currency is ":value"',
|
'search_modifier_foreign_currency_is' => 'Zahraniční měna transakce je ":value"',
|
||||||
'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"',
|
'search_modifier_not_foreign_currency_is' => 'Zahraniční měna transakce není ":value"',
|
||||||
'search_modifier_has_attachments' => 'The transaction must have an attachment',
|
'search_modifier_has_attachments' => 'Transakce musí mít přílohu',
|
||||||
'search_modifier_has_no_category' => 'The transaction must have no category',
|
'search_modifier_has_no_category' => 'Transakce nesmí mít žádnou kategorii',
|
||||||
'search_modifier_not_has_no_category' => 'The transaction must have a (any) category',
|
'search_modifier_not_has_no_category' => 'Transakce musí mít (libovolnou) kategorii',
|
||||||
'search_modifier_not_has_any_category' => 'The transaction must have no category',
|
'search_modifier_not_has_any_category' => 'Transakce nesmí mít žádnou kategorii',
|
||||||
'search_modifier_has_any_category' => 'The transaction must have a (any) category',
|
'search_modifier_has_any_category' => 'Transakce musí mít (libovolnou) kategorii',
|
||||||
'search_modifier_has_no_budget' => 'The transaction must have no budget',
|
'search_modifier_has_no_budget' => 'Transakce nesmí mít žádný rozpočet',
|
||||||
'search_modifier_not_has_any_budget' => 'The transaction must have no budget',
|
'search_modifier_not_has_any_budget' => 'Transakce nesmí mít žádný rozpočet',
|
||||||
'search_modifier_has_any_budget' => 'The transaction must have a (any) budget',
|
'search_modifier_has_any_budget' => 'Transakce musí mít (libovolný) rozpočet',
|
||||||
'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget',
|
'search_modifier_not_has_no_budget' => 'Transakce musí mít (libovolný) rozpočet',
|
||||||
'search_modifier_has_no_bill' => 'The transaction must have no bill',
|
'search_modifier_has_no_bill' => 'Transakce nesmí mít účet',
|
||||||
'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill',
|
'search_modifier_not_has_no_bill' => 'Transakce musí mít (libovolný) účet',
|
||||||
'search_modifier_has_any_bill' => 'The transaction must have a (any) bill',
|
'search_modifier_has_any_bill' => 'Transakce musí mít (libovolný) účet',
|
||||||
'search_modifier_not_has_any_bill' => 'The transaction must have no bill',
|
'search_modifier_not_has_any_bill' => 'Transakce nesmí mít účet',
|
||||||
'search_modifier_has_no_tag' => 'The transaction must have no tags',
|
'search_modifier_has_no_tag' => 'Transakce nesmí mít žádné štítky',
|
||||||
'search_modifier_not_has_any_tag' => 'The transaction must have no tags',
|
'search_modifier_not_has_any_tag' => 'Transakce nesmí mít žádné štítky',
|
||||||
'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag',
|
'search_modifier_not_has_no_tag' => 'Transakce musí mít (libovolný) štítek',
|
||||||
'search_modifier_has_any_tag' => 'The transaction must have a (any) tag',
|
'search_modifier_has_any_tag' => 'Transakce musí mít (libovolný) štítek',
|
||||||
'search_modifier_notes_contains' => 'The transaction notes contain ":value"',
|
'search_modifier_notes_contains' => 'Poznámky k transakci obsahují ":value"',
|
||||||
'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"',
|
'search_modifier_not_notes_contains' => 'Poznámky k transakci neobsahují ":value"',
|
||||||
'search_modifier_notes_starts' => 'The transaction notes start with ":value"',
|
'search_modifier_notes_starts' => 'Poznámky k transakci začínají na ":value"',
|
||||||
'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"',
|
'search_modifier_not_notes_starts' => 'Poznámky k transakci nezačínají na ":value"',
|
||||||
'search_modifier_notes_ends' => 'The transaction notes end with ":value"',
|
'search_modifier_notes_ends' => 'Poznámky k transakci končí na ":value"',
|
||||||
'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"',
|
'search_modifier_not_notes_ends' => 'Poznámky k transakci nekončí na ":value"',
|
||||||
'search_modifier_notes_is' => 'The transaction notes are exactly ":value"',
|
'search_modifier_notes_is' => 'Poznámky k transakci jsou přesně ":value"',
|
||||||
'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"',
|
'search_modifier_not_notes_is' => 'Poznámky k transakci nejsou přesně ":value"',
|
||||||
'search_modifier_no_notes' => 'The transaction has no notes',
|
'search_modifier_no_notes' => 'Transakce nemá žádné poznámky',
|
||||||
'search_modifier_not_no_notes' => 'The transaction must have notes',
|
'search_modifier_not_no_notes' => 'Transakce musí mít poznámky',
|
||||||
'search_modifier_any_notes' => 'The transaction must have notes',
|
'search_modifier_any_notes' => 'Transakce musí mít poznámky',
|
||||||
'search_modifier_not_any_notes' => 'The transaction has no notes',
|
'search_modifier_not_any_notes' => 'Transakce nemá žádné poznámky',
|
||||||
'search_modifier_amount_is' => 'Amount is exactly :value',
|
'search_modifier_amount_is' => 'Částka je přesně :value',
|
||||||
'search_modifier_not_amount_is' => 'Amount is not :value',
|
'search_modifier_not_amount_is' => 'Částka není přesně :value',
|
||||||
'search_modifier_amount_less' => 'Amount is less than or equal to :value',
|
'search_modifier_amount_less' => 'Částka je menší nebo rovna :value',
|
||||||
'search_modifier_not_amount_more' => 'Amount is less than or equal to :value',
|
'search_modifier_not_amount_more' => 'Částka je menší nebo rovna :value',
|
||||||
'search_modifier_amount_more' => 'Amount is more than or equal to :value',
|
'search_modifier_amount_more' => 'Částka je větší nebo rovna :value',
|
||||||
'search_modifier_not_amount_less' => 'Amount is more than or equal to :value',
|
'search_modifier_not_amount_less' => 'Částka je větší nebo rovna :value',
|
||||||
'search_modifier_source_account_is' => 'Source account name is exactly ":value"',
|
'search_modifier_source_account_is' => 'Název zdrojového účtu je přesně ":value"',
|
||||||
'search_modifier_not_source_account_is' => 'Source account name is not ":value"',
|
'search_modifier_not_source_account_is' => 'Název zdrojového účtu není ":value"',
|
||||||
'search_modifier_source_account_contains' => 'Source account name contains ":value"',
|
'search_modifier_source_account_contains' => 'Název zdrojového účtu obsahuje ":value"',
|
||||||
'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"',
|
'search_modifier_not_source_account_contains' => 'Název zdrojového účtu neobsahuje ":value"',
|
||||||
'search_modifier_source_account_starts' => 'Source account name starts with ":value"',
|
'search_modifier_source_account_starts' => 'Název zdrojového účtu začíná na ":value"',
|
||||||
'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"',
|
'search_modifier_not_source_account_starts' => 'Název zdrojového účtu nezačíná na ":value"',
|
||||||
'search_modifier_source_account_ends' => 'Source account name ends with ":value"',
|
'search_modifier_source_account_ends' => 'Název zdrojového účtu končí na ":value"',
|
||||||
'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"',
|
'search_modifier_not_source_account_ends' => 'Název zdrojového účtu nekončí na ":value"',
|
||||||
'search_modifier_source_account_id' => 'Source account ID is :value',
|
'search_modifier_source_account_id' => 'ID zdrojového účtu je :value',
|
||||||
'search_modifier_not_source_account_id' => 'Source account ID is not :value',
|
'search_modifier_not_source_account_id' => 'ID zdrojového účtu není :value',
|
||||||
'search_modifier_source_account_nr_is' => 'Source account number (IBAN) is ":value"',
|
'search_modifier_source_account_nr_is' => 'Číslo zdrojového účtu (IBAN) je ":value"',
|
||||||
'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"',
|
'search_modifier_not_source_account_nr_is' => 'Číslo zdrojového účtu (IBAN) není ":value"',
|
||||||
'search_modifier_source_account_nr_contains' => 'Source account number (IBAN) contains ":value"',
|
'search_modifier_source_account_nr_contains' => 'Číslo zdrojového účtu (IBAN) obsahuje ":value"',
|
||||||
'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"',
|
'search_modifier_not_source_account_nr_contains' => 'Číslo zdrojového účtu (IBAN) neobsahuje ":value"',
|
||||||
'search_modifier_source_account_nr_starts' => 'Source account number (IBAN) starts with ":value"',
|
'search_modifier_source_account_nr_starts' => 'Číslo zdrojového účtu (IBAN) začíná na ":value"',
|
||||||
'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"',
|
'search_modifier_not_source_account_nr_starts' => 'Číslo zdrojového účtu (IBAN) nezačíná na ":value"',
|
||||||
'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"',
|
'search_modifier_source_account_nr_ends' => 'Číslo zdrojového účtu (IBAN) končí na ":value"',
|
||||||
'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"',
|
'search_modifier_not_source_account_nr_ends' => 'Číslo zdrojového účtu (IBAN) nekončí na ":value"',
|
||||||
'search_modifier_destination_account_is' => 'Destination account name is exactly ":value"',
|
'search_modifier_destination_account_is' => 'Název cílového účtu je přesně ":value"',
|
||||||
'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"',
|
'search_modifier_not_destination_account_is' => 'Název cílového účtu není ":value"',
|
||||||
'search_modifier_destination_account_contains' => 'Destination account name contains ":value"',
|
'search_modifier_destination_account_contains' => 'Název cílového účtu obsahuje ":value"',
|
||||||
'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"',
|
'search_modifier_not_destination_account_contains' => 'Název cílového účtu neobsahuje ":value"',
|
||||||
'search_modifier_destination_account_starts' => 'Destination account name starts with ":value"',
|
'search_modifier_destination_account_starts' => 'Název cílového účtu začíná na ":value"',
|
||||||
'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"',
|
'search_modifier_not_destination_account_starts' => 'Název cílového účtu nezačíná na ":value"',
|
||||||
'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"',
|
'search_modifier_destination_account_ends' => 'Název cílového účtu končí na ":value"',
|
||||||
'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"',
|
'search_modifier_not_destination_account_ends' => 'Název cílového účtu nekončí na ":value"',
|
||||||
'search_modifier_destination_account_id' => 'Destination account ID is :value',
|
'search_modifier_destination_account_id' => 'ID cílového účtu je :value',
|
||||||
'search_modifier_not_destination_account_id' => 'Destination account ID is not :value',
|
'search_modifier_not_destination_account_id' => 'ID cílového účtu není :value',
|
||||||
'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account',
|
'search_modifier_destination_is_cash' => 'Cílový účet je (hotovostní) účet',
|
||||||
'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account',
|
'search_modifier_not_destination_is_cash' => 'Cílový účet není (hotovostní) účet',
|
||||||
'search_modifier_source_is_cash' => 'Source account is the "(cash)" account',
|
'search_modifier_source_is_cash' => 'Zdrojový účet je (hotovostní) účet',
|
||||||
'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account',
|
'search_modifier_not_source_is_cash' => 'Zdrojový účet není (hotovostní) účet',
|
||||||
'search_modifier_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"',
|
'search_modifier_destination_account_nr_is' => 'ČÍslo cílového účtu (IBAN) je ":value"',
|
||||||
'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"',
|
'search_modifier_not_destination_account_nr_is' => 'Číslo cílového účtu (IBAN) je ":value"',
|
||||||
'search_modifier_destination_account_nr_contains' => 'Destination account number (IBAN) contains ":value"',
|
'search_modifier_destination_account_nr_contains' => 'Číslo cílového účtu (IBAN) obsahuje ":value"',
|
||||||
'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"',
|
'search_modifier_not_destination_account_nr_contains' => 'Číslo cílového účtu (IBAN) neobsahuje ":value"',
|
||||||
'search_modifier_destination_account_nr_starts' => 'Destination account number (IBAN) starts with ":value"',
|
'search_modifier_destination_account_nr_starts' => 'Číslo cílového účtu (IBAN) začíná na ":value"',
|
||||||
'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"',
|
'search_modifier_not_destination_account_nr_starts' => 'Číslo cílového účtu (IBAN) nezačíná na ":value"',
|
||||||
'search_modifier_destination_account_nr_ends' => 'Destination account number (IBAN) ends with ":value"',
|
'search_modifier_destination_account_nr_ends' => 'Číslo cílového účtu (IBAN) končí na ":value"',
|
||||||
'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"',
|
'search_modifier_not_destination_account_nr_ends' => 'Číslo cílového účtu (IBAN) nekončí na ":value"',
|
||||||
'search_modifier_account_id' => 'Source or destination account ID\'s is/are: :value',
|
'search_modifier_account_id' => 'ID zdrojového nebo cílového účtu je/jsou: :value',
|
||||||
'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value',
|
'search_modifier_not_account_id' => 'ID zdrojového nebo cílového účtu není/nejsou: :value',
|
||||||
'search_modifier_category_is' => 'Category is ":value"',
|
'search_modifier_category_is' => 'Kategorie je „:value“',
|
||||||
'search_modifier_not_category_is' => 'Category is not ":value"',
|
'search_modifier_not_category_is' => 'Kategorie není „:value“',
|
||||||
'search_modifier_budget_is' => 'Budget is ":value"',
|
'search_modifier_budget_is' => 'Rozpočet je „:value“',
|
||||||
'search_modifier_not_budget_is' => 'Budget is not ":value"',
|
'search_modifier_not_budget_is' => 'Rozpočet není „:value“',
|
||||||
'search_modifier_bill_is' => 'Bill is ":value"',
|
'search_modifier_bill_is' => 'Účet je ":value"',
|
||||||
'search_modifier_not_bill_is' => 'Bill is not ":value"',
|
'search_modifier_not_bill_is' => 'Účet není ":value"',
|
||||||
'search_modifier_transaction_type' => 'Transaction type is ":value"',
|
'search_modifier_transaction_type' => 'Typ transakce je ":value"',
|
||||||
'search_modifier_not_transaction_type' => 'Transaction type is not ":value"',
|
'search_modifier_not_transaction_type' => 'Typ transakce není ":value"',
|
||||||
'search_modifier_tag_is' => 'Tag is ":value"',
|
'search_modifier_tag_is' => 'Štítek je „:value“',
|
||||||
'search_modifier_tag_contains' => 'Tag contains ":value"',
|
'search_modifier_tag_contains' => 'Štítek obsahuje ":value"',
|
||||||
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
|
'search_modifier_not_tag_contains' => 'Štítek neobsahuje ":value"',
|
||||||
'search_modifier_tag_ends' => 'Tag ends with ":value"',
|
'search_modifier_tag_ends' => 'Štítek končí na ":value"',
|
||||||
'search_modifier_tag_starts' => 'Tag starts with ":value"',
|
'search_modifier_tag_starts' => 'Štítek začíná na ":value"',
|
||||||
'search_modifier_not_tag_is' => 'No tag is ":value"',
|
'search_modifier_not_tag_is' => 'Žádný štítek není ":value"',
|
||||||
'search_modifier_date_on_year' => 'Transaction is in year ":value"',
|
'search_modifier_date_on_year' => 'Transakce je v roce ":value"',
|
||||||
'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"',
|
'search_modifier_not_date_on_year' => 'Transakce není v roce ":value"',
|
||||||
'search_modifier_date_on_month' => 'Transaction is in month ":value"',
|
'search_modifier_date_on_month' => 'Transakce je v měsíci ":value"',
|
||||||
'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"',
|
'search_modifier_not_date_on_month' => 'Transakce není v měsíci ":value"',
|
||||||
'search_modifier_date_on_day' => 'Transaction is on day of month ":value"',
|
'search_modifier_date_on_day' => 'Transakce je v :value. dni měsíce',
|
||||||
'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"',
|
'search_modifier_not_date_on_day' => 'Transakce není v :value. dni měsíce',
|
||||||
'search_modifier_date_before_year' => 'Transaction is before or in year ":value"',
|
'search_modifier_date_before_year' => 'Transakce je před nebo v roce ":value"',
|
||||||
'search_modifier_date_before_month' => 'Transaction is before or in month ":value"',
|
'search_modifier_date_before_month' => 'Transakce je před nebo v měsíci ":value"',
|
||||||
'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"',
|
'search_modifier_date_before_day' => 'Transakce je před nebo v :value. dni měsíce',
|
||||||
'search_modifier_date_after_year' => 'Transaction is in or after year ":value"',
|
'search_modifier_date_after_year' => 'Transakce je v roce nebo po roce ":value"',
|
||||||
'search_modifier_date_after_month' => 'Transaction is in or after month ":value"',
|
'search_modifier_date_after_month' => 'Transakce je v měsící nebo po měsíci ":value"',
|
||||||
'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"',
|
'search_modifier_date_after_day' => 'Transakce je po nebo v :value. dni měsíce',
|
||||||
|
|
||||||
// new
|
// new
|
||||||
'search_modifier_tag_is_not' => 'No tag is ":value"',
|
'search_modifier_tag_is_not' => 'Žádný štítek není ":value"',
|
||||||
'search_modifier_not_tag_is_not' => 'Tag is ":value"',
|
'search_modifier_not_tag_is_not' => 'Štítek je „:value“',
|
||||||
'search_modifier_account_is' => 'Either account is ":value"',
|
'search_modifier_account_is' => 'Alespoň jeden účet je ":value"',
|
||||||
'search_modifier_not_account_is' => 'Neither account is ":value"',
|
'search_modifier_not_account_is' => 'Ani jeden účet není ":value"',
|
||||||
'search_modifier_account_contains' => 'Either account contains ":value"',
|
'search_modifier_account_contains' => 'Alespoň jeden účet obsahuje ":value"',
|
||||||
'search_modifier_not_account_contains' => 'Neither account contains ":value"',
|
'search_modifier_not_account_contains' => 'Ani jeden účet neobsahuje ":value"',
|
||||||
'search_modifier_account_ends' => 'Either account ends with ":value"',
|
'search_modifier_account_ends' => 'Alespoň jeden účet končí na ":value"',
|
||||||
'search_modifier_not_account_ends' => 'Neither account ends with ":value"',
|
'search_modifier_not_account_ends' => 'Ani jeden účet nekončí na ":value"',
|
||||||
'search_modifier_account_starts' => 'Either account starts with ":value"',
|
'search_modifier_account_starts' => 'Alespoň jeden účet začíná na ":value"',
|
||||||
'search_modifier_not_account_starts' => 'Neither account starts with ":value"',
|
'search_modifier_not_account_starts' => 'Ani jeden účet nezačíná na ":value"',
|
||||||
'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"',
|
'search_modifier_account_nr_is' => 'Alespoň jedno číslo účtu / IBAN je ":value"',
|
||||||
'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"',
|
'search_modifier_not_account_nr_is' => 'Ani jedno číslo účtu / IBAN není ":value"',
|
||||||
'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"',
|
'search_modifier_account_nr_contains' => 'Alespoň jedno číslo účtu / IBAN obsahuje ":value"',
|
||||||
'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"',
|
'search_modifier_not_account_nr_contains' => 'Ani jedno číslo účtu / IBAN neobsahuje ":value"',
|
||||||
'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"',
|
'search_modifier_account_nr_ends' => 'Alespoň jedno číslo účtu / IBAN končí na ":value"',
|
||||||
'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"',
|
'search_modifier_not_account_nr_ends' => 'Ani jedno číslo účtu / IBAN nekončí na ":value"',
|
||||||
'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"',
|
'search_modifier_account_nr_starts' => 'Alespoň jedno číslo účtu / IBAN začíná na ":value"',
|
||||||
'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"',
|
'search_modifier_not_account_nr_starts' => 'Ani jedno číslo účtu / IBAN nezačíná na ":value"',
|
||||||
'search_modifier_category_contains' => 'Category contains ":value"',
|
'search_modifier_category_contains' => 'Kategorie obsahuje ":value"',
|
||||||
'search_modifier_not_category_contains' => 'Category does not contain ":value"',
|
'search_modifier_not_category_contains' => 'Kategorie neobsahuje ":value"',
|
||||||
'search_modifier_category_ends' => 'Category ends on ":value"',
|
'search_modifier_category_ends' => 'Kategorie končí na ":value"',
|
||||||
'search_modifier_not_category_ends' => 'Category does not end on ":value"',
|
'search_modifier_not_category_ends' => 'Kategorie nekončí na ":value"',
|
||||||
'search_modifier_category_starts' => 'Category starts with ":value"',
|
'search_modifier_category_starts' => 'Kategorie začíná na ":value"',
|
||||||
'search_modifier_not_category_starts' => 'Category does not start with ":value"',
|
'search_modifier_not_category_starts' => 'Kategorie nezačíná na ":value"',
|
||||||
'search_modifier_budget_contains' => 'Budget contains ":value"',
|
'search_modifier_budget_contains' => 'Rozpočet obsahuje ":value"',
|
||||||
'search_modifier_not_budget_contains' => 'Budget does not contain ":value"',
|
'search_modifier_not_budget_contains' => 'Rozpočet neobsahuje ":value"',
|
||||||
'search_modifier_budget_ends' => 'Budget ends with ":value"',
|
'search_modifier_budget_ends' => 'Rozpočet končí na ":value"',
|
||||||
'search_modifier_not_budget_ends' => 'Budget does not end on ":value"',
|
'search_modifier_not_budget_ends' => 'Rozpočet nekončí na ":value"',
|
||||||
'search_modifier_budget_starts' => 'Budget starts with ":value"',
|
'search_modifier_budget_starts' => 'Rozpočet začíná na ":value"',
|
||||||
'search_modifier_not_budget_starts' => 'Budget does not start with ":value"',
|
'search_modifier_not_budget_starts' => 'Rozpočet nezačíná na ":value"',
|
||||||
'search_modifier_bill_contains' => 'Bill contains ":value"',
|
'search_modifier_bill_contains' => 'Účet obsahuje ":value"',
|
||||||
'search_modifier_not_bill_contains' => 'Bill does not contain ":value"',
|
'search_modifier_not_bill_contains' => 'Účet neobsahuje ":value"',
|
||||||
'search_modifier_bill_ends' => 'Bill ends with ":value"',
|
'search_modifier_bill_ends' => 'Účet končí na ":value"',
|
||||||
'search_modifier_not_bill_ends' => 'Bill does not end on ":value"',
|
'search_modifier_not_bill_ends' => 'Účet nekončí na ":value"',
|
||||||
'search_modifier_bill_starts' => 'Bill starts with ":value"',
|
'search_modifier_bill_starts' => 'Účet začíná na ":value"',
|
||||||
'search_modifier_not_bill_starts' => 'Bill does not start with ":value"',
|
'search_modifier_not_bill_starts' => 'Účet nezačíná na ":value"',
|
||||||
'search_modifier_external_id_contains' => 'External ID contains ":value"',
|
'search_modifier_external_id_contains' => 'Externí ID obsahuje ":value"',
|
||||||
'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"',
|
'search_modifier_not_external_id_contains' => 'Externí ID neobsahuje ":value"',
|
||||||
'search_modifier_external_id_ends' => 'External ID ends with ":value"',
|
'search_modifier_external_id_ends' => 'Externí ID končí na ":value"',
|
||||||
'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"',
|
'search_modifier_not_external_id_ends' => 'Externí ID nekončí na ":value"',
|
||||||
'search_modifier_external_id_starts' => 'External ID starts with ":value"',
|
'search_modifier_external_id_starts' => 'Externí ID začíná na ":value"',
|
||||||
'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"',
|
'search_modifier_not_external_id_starts' => 'Externí ID nezačíná na ":value"',
|
||||||
'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"',
|
'search_modifier_internal_reference_contains' => 'Interní reference obsahuje ":value"',
|
||||||
'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"',
|
'search_modifier_not_internal_reference_contains' => 'Interní reference neobsahuje ":value"',
|
||||||
'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"',
|
'search_modifier_internal_reference_ends' => 'Interní reference končí na ":value"',
|
||||||
'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"',
|
'search_modifier_internal_reference_starts' => 'Interní reference začíná na ":value"',
|
||||||
'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"',
|
'search_modifier_not_internal_reference_ends' => 'Interní reference nekončí na ":value"',
|
||||||
'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"',
|
'search_modifier_not_internal_reference_starts' => 'Interní reference nezačíná na ":value"',
|
||||||
'search_modifier_external_url_is' => 'External URL is ":value"',
|
'search_modifier_external_url_is' => 'Externí URL je ":value"',
|
||||||
'search_modifier_not_external_url_is' => 'External URL is not ":value"',
|
'search_modifier_not_external_url_is' => 'Externí URL není ":value"',
|
||||||
'search_modifier_external_url_contains' => 'External URL contains ":value"',
|
'search_modifier_external_url_contains' => 'Externí URL obsahuje ":value"',
|
||||||
'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"',
|
'search_modifier_not_external_url_contains' => 'Externí URL neobsahuje ":value"',
|
||||||
'search_modifier_external_url_ends' => 'External URL ends with ":value"',
|
'search_modifier_external_url_ends' => 'Externí URL končí na ":value"',
|
||||||
'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"',
|
'search_modifier_not_external_url_ends' => 'Externí URL nekončí na ":value"',
|
||||||
'search_modifier_external_url_starts' => 'External URL starts with ":value"',
|
'search_modifier_external_url_starts' => 'Externí URL začíná na ":value"',
|
||||||
'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"',
|
'search_modifier_not_external_url_starts' => 'Externí URL nezačíná na ":value"',
|
||||||
'search_modifier_has_no_attachments' => 'Transaction has no attachments',
|
'search_modifier_has_no_attachments' => 'Transakce nemá žádné přílohy',
|
||||||
'search_modifier_not_has_no_attachments' => 'Transaction has attachments',
|
'search_modifier_not_has_no_attachments' => 'Transakce má přílohy',
|
||||||
'search_modifier_not_has_attachments' => 'Transaction has no attachments',
|
'search_modifier_not_has_attachments' => 'Transakce nemá žádné přílohy',
|
||||||
'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.',
|
'search_modifier_account_is_cash' => 'Alespoň jeden účet je hotovostní.',
|
||||||
'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.',
|
'search_modifier_not_account_is_cash' => 'Ani jeden účet není hotovostní účet.',
|
||||||
'search_modifier_journal_id' => 'The journal ID is ":value"',
|
'search_modifier_journal_id' => 'The journal ID is ":value"',
|
||||||
'search_modifier_not_journal_id' => 'The journal ID is not ":value"',
|
'search_modifier_not_journal_id' => 'The journal ID is not ":value"',
|
||||||
'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"',
|
'search_modifier_recurrence_id' => 'ID opakované transakce je ":value"',
|
||||||
'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"',
|
'search_modifier_not_recurrence_id' => 'ID opakované transakce není ":value"',
|
||||||
'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"',
|
'search_modifier_foreign_amount_is' => 'Zahraniční částka je ":value"',
|
||||||
'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"',
|
'search_modifier_not_foreign_amount_is' => 'Zahraniční částka není ":value"',
|
||||||
'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"',
|
'search_modifier_foreign_amount_less' => 'Zahraniční částka je menší než ":value"',
|
||||||
'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"',
|
'search_modifier_not_foreign_amount_more' => 'Zahraniční částka je menší než ":value"',
|
||||||
'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"',
|
'search_modifier_not_foreign_amount_less' => 'Zahraniční částka je vyšší než ":value"',
|
||||||
'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"',
|
'search_modifier_foreign_amount_more' => 'Zahraniční částka je vyšší než ":value"',
|
||||||
'search_modifier_exists' => 'Transaction exists (any transaction)',
|
'search_modifier_exists' => 'Transakce existuje (jakákoli transakce)',
|
||||||
'search_modifier_not_exists' => 'Transaction does not exist (no transaction)',
|
'search_modifier_not_exists' => 'Transakce neexistuje (žádná transakce)',
|
||||||
|
|
||||||
// date fields
|
// date fields
|
||||||
'search_modifier_interest_date_on' => 'Transaction interest date is ":value"',
|
'search_modifier_interest_date_on' => 'Datum zúročení transakce je ":value"',
|
||||||
'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"',
|
'search_modifier_not_interest_date_on' => 'Datum zúročení transakce není ":value"',
|
||||||
'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"',
|
'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"',
|
||||||
'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"',
|
'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"',
|
||||||
'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"',
|
'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"',
|
||||||
@ -600,57 +582,57 @@ return [
|
|||||||
'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"',
|
'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"',
|
||||||
'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"',
|
'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"',
|
||||||
'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"',
|
'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"',
|
||||||
'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"',
|
'search_modifier_due_date_on_year' => 'Datum splatnosti transakce je v roce ":value"',
|
||||||
'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"',
|
'search_modifier_due_date_on_month' => 'Datum splatnosti transakce je v měsíci ":value"',
|
||||||
'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"',
|
'search_modifier_due_date_on_day' => 'Datum splatnosti transakce je v ":value". dni měsíce',
|
||||||
'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"',
|
'search_modifier_not_due_date_on_year' => 'Datum splatnosti transakce není v roce ":value"',
|
||||||
'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"',
|
'search_modifier_not_due_date_on_month' => 'Datum splatnosti transakce není v měsíci ":value"',
|
||||||
'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"',
|
'search_modifier_not_due_date_on_day' => 'Datum splatnosti transakce není v ":value". dni měsíce',
|
||||||
'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"',
|
'search_modifier_due_date_before_year' => 'Datum splatnosti transakce je před nebo v roce ":value"',
|
||||||
'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"',
|
'search_modifier_due_date_before_month' => 'Datum splatnosti transakce je před nebo v měsíci ":value"',
|
||||||
'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"',
|
'search_modifier_due_date_before_day' => 'Datum splatnosti transakce je před nebo v ":value". dni měsíce',
|
||||||
'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"',
|
'search_modifier_due_date_after_year' => 'Datum splatnosti transakce je po nebo v roce ":value"',
|
||||||
'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"',
|
'search_modifier_due_date_after_month' => 'Datum splatnosti transakce je po nebo v měsíci ":value"',
|
||||||
'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"',
|
'search_modifier_due_date_after_day' => 'Datum splatnosti transakce je po nebo v ":value". dni měsíce',
|
||||||
'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"',
|
'search_modifier_payment_date_on_year' => 'Datum platby transakce je v roce ":value"',
|
||||||
'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"',
|
'search_modifier_payment_date_on_month' => 'Datum platby transakce je v měsíci ":value"',
|
||||||
'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"',
|
'search_modifier_payment_date_on_day' => 'Datum platby transakce je v ":value". dni měsíce',
|
||||||
'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"',
|
'search_modifier_not_payment_date_on_year' => 'Datum platby transakce není v roce ":value"',
|
||||||
'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"',
|
'search_modifier_not_payment_date_on_month' => 'Datum platby transakce není v měsíci ":value"',
|
||||||
'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"',
|
'search_modifier_not_payment_date_on_day' => 'Datum platby transakce není v ":value". den měsíce',
|
||||||
'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"',
|
'search_modifier_payment_date_before_year' => 'Datum platby transakce je před nebo v roce ":value"',
|
||||||
'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"',
|
'search_modifier_payment_date_before_month' => 'Datum platby transakce je před nebo v měsíci ":value"',
|
||||||
'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"',
|
'search_modifier_payment_date_before_day' => 'Datum platby transakce je před nebo v ":value". dni měsíce',
|
||||||
'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"',
|
'search_modifier_payment_date_after_year' => 'Datum platby transakce je po nebo v roce ":value"',
|
||||||
'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"',
|
'search_modifier_payment_date_after_month' => 'Datum platby transakce je po nebo v měsíci ":value"',
|
||||||
'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"',
|
'search_modifier_payment_date_after_day' => 'Datum platby transakce je po nebo v ":value". dni měsíce',
|
||||||
'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"',
|
'search_modifier_invoice_date_on_year' => 'Datum vystavení faktury transakce je v roce ":value"',
|
||||||
'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"',
|
'search_modifier_invoice_date_on_month' => 'Datum vystavení faktury transakce je v měsíci ":value"',
|
||||||
'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"',
|
'search_modifier_invoice_date_on_day' => 'Datum vystavení faktury transakce je v ":value". dni měsíce',
|
||||||
'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"',
|
'search_modifier_not_invoice_date_on_year' => 'Datum vystavení faktury transakce není v roce ":value"',
|
||||||
'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"',
|
'search_modifier_not_invoice_date_on_month' => 'Datum vystavení faktury transakce není v měsíci ":value"',
|
||||||
'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"',
|
'search_modifier_not_invoice_date_on_day' => 'Datum vystavení faktury transakce není v ":value". dni měsíce',
|
||||||
'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"',
|
'search_modifier_invoice_date_before_year' => 'Datum vystavení faktury transakce je před nebo v roce ":value"',
|
||||||
'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"',
|
'search_modifier_invoice_date_before_month' => 'Datum vystavení faktury transakce je před nebo v měsíci ":value"',
|
||||||
'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"',
|
'search_modifier_invoice_date_before_day' => 'Datum vystavení faktury transakce je před nebo v ":value". dni měsíce',
|
||||||
'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"',
|
'search_modifier_invoice_date_after_year' => 'Datum vystavení faktury transakce je po nebo v roce ":value"',
|
||||||
'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"',
|
'search_modifier_invoice_date_after_month' => 'Datum vystavení faktury transakce je po nebo v měsíci ":value"',
|
||||||
'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"',
|
'search_modifier_invoice_date_after_day' => 'Datum vystavení faktury transakce je po nebo v ":value". dni měsíce',
|
||||||
// other dates
|
// other dates
|
||||||
'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"',
|
'search_modifier_updated_at_on_year' => 'Transakce byla naposledy aktualizována v roce ":value"',
|
||||||
'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"',
|
'search_modifier_updated_at_on_month' => 'Transakce byla naposledy aktualizována v měsíci ":value"',
|
||||||
'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"',
|
'search_modifier_updated_at_on_day' => 'Transakce byla naposledy aktualizována v ":value". dni měsíce',
|
||||||
'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"',
|
'search_modifier_not_updated_at_on_year' => 'Transakce nebyla naposledy aktualizována v roce ":value"',
|
||||||
'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"',
|
'search_modifier_not_updated_at_on_month' => 'Transakce nebyla naposledy aktualizována v měsíci ":value"',
|
||||||
'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"',
|
'search_modifier_not_updated_at_on_day' => 'Transakce nebyla naposledy aktualizována v ":value". dni měsíce',
|
||||||
'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"',
|
'search_modifier_updated_at_before_year' => 'Transakce byla naposledy aktualizována v roce nebo před rokem ":value"',
|
||||||
'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"',
|
'search_modifier_updated_at_before_month' => 'Transakce byla naposledy aktualizována v měsíci nebo dříve ":value"',
|
||||||
'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"',
|
'search_modifier_updated_at_before_day' => 'Transakce byla naposledy aktualizována před nebo v ":value". dni měsíce',
|
||||||
'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"',
|
'search_modifier_updated_at_after_year' => 'Transakce byla naposledy aktualizována v roce nebo po roce ":value"',
|
||||||
'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"',
|
'search_modifier_updated_at_after_month' => 'Transakce byla naposledy aktualizována v měsíci nebo po měsíci ":value"',
|
||||||
'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"',
|
'search_modifier_updated_at_after_day' => 'Transakce byla naposledy aktualizována po nebo v ":value". dni měsíce',
|
||||||
'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"',
|
'search_modifier_created_at_on_year' => 'Transakce byla vytvořena v roce ":value"',
|
||||||
'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"',
|
'search_modifier_created_at_on_month' => 'Transakce byla vytvořena v měsíci ":value"',
|
||||||
'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"',
|
'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"',
|
||||||
'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"',
|
'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"',
|
||||||
'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"',
|
'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"',
|
||||||
@ -658,11 +640,11 @@ return [
|
|||||||
'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"',
|
'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"',
|
||||||
'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"',
|
'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"',
|
||||||
'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"',
|
'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"',
|
||||||
'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"',
|
'search_modifier_created_at_after_year' => 'Transakce byla vytvořena v roce nebo po roce ":value"',
|
||||||
'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"',
|
'search_modifier_created_at_after_month' => 'Transakce byla vytvořena v měsíci nebo po měsíci ":value"',
|
||||||
'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"',
|
'search_modifier_created_at_after_day' => 'Transakce byla vytvořena v nebo po :value. dni měsíce',
|
||||||
'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"',
|
'search_modifier_interest_date_before' => 'Datum zúročení je v nebo před ":value"',
|
||||||
'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"',
|
'search_modifier_interest_date_after' => 'Datum zúročení transakce je v nebo po ":value"',
|
||||||
'search_modifier_book_date_on' => 'Transaction book date is on ":value"',
|
'search_modifier_book_date_on' => 'Transaction book date is on ":value"',
|
||||||
'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"',
|
'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"',
|
||||||
'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"',
|
'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"',
|
||||||
@ -671,8 +653,8 @@ return [
|
|||||||
'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"',
|
'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"',
|
||||||
'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"',
|
'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"',
|
||||||
'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"',
|
'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"',
|
||||||
'search_modifier_due_date_on' => 'Transaction due date is on ":value"',
|
'search_modifier_due_date_on' => 'Datum splatnosti transakce je ":value"',
|
||||||
'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"',
|
'search_modifier_not_due_date_on' => 'Datum splatnosti transakce není v ":value"',
|
||||||
'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"',
|
'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"',
|
||||||
'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"',
|
'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"',
|
||||||
'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"',
|
'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"',
|
||||||
@ -702,8 +684,8 @@ return [
|
|||||||
'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"',
|
'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"',
|
||||||
'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"',
|
'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"',
|
||||||
'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"',
|
'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"',
|
||||||
'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"',
|
'search_modifier_not_attachment_name_starts' => 'Žádný název přílohy nezačíná na ":value"',
|
||||||
'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"',
|
'search_modifier_not_attachment_name_ends' => 'Žádný název přílohy nekončí na „:value“',
|
||||||
'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"',
|
'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"',
|
||||||
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
|
'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"',
|
||||||
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
|
'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"',
|
||||||
@ -713,16 +695,7 @@ return [
|
|||||||
'create_rule_from_query' => 'Create new rule from search query',
|
'create_rule_from_query' => 'Create new rule from search query',
|
||||||
'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.',
|
'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// END
|
// END
|
||||||
'modifiers_applies_are' => 'The following modifiers are applied to the search as well:',
|
'modifiers_applies_are' => 'The following modifiers are applied to the search as well:',
|
||||||
@ -1212,16 +1185,7 @@ return [
|
|||||||
'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account',
|
'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account',
|
||||||
'rule_trigger_not_account_is_cash' => 'Neither account is a cash account',
|
'rule_trigger_not_account_is_cash' => 'Neither account is a cash account',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
// set, clear, add, remove, append/prepend
|
// set, clear, add, remove, append/prepend
|
||||||
@ -1536,16 +1500,7 @@ return [
|
|||||||
'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.',
|
'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.',
|
||||||
'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.',
|
'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// export data:
|
// export data:
|
||||||
'export_data_title' => 'Export data from Firefly III',
|
'export_data_title' => 'Export data from Firefly III',
|
||||||
@ -1940,16 +1895,7 @@ return [
|
|||||||
'stored_category' => 'Uložena nová kategorie „:name“',
|
'stored_category' => 'Uložena nová kategorie „:name“',
|
||||||
'without_category_between' => 'Bez kategorie mezi :start a :end',
|
'without_category_between' => 'Bez kategorie mezi :start a :end',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// transactions:
|
// transactions:
|
||||||
'wait_loading_transaction' => 'Please wait for the form to load',
|
'wait_loading_transaction' => 'Please wait for the form to load',
|
||||||
@ -2187,16 +2133,7 @@ return [
|
|||||||
'classification' => 'Klasifikace',
|
'classification' => 'Klasifikace',
|
||||||
'store_transaction' => 'Store transaction',
|
'store_transaction' => 'Store transaction',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// reports:
|
// reports:
|
||||||
'report_default' => 'Výchozí finanční výkaz v období :start a :end',
|
'report_default' => 'Výchozí finanční výkaz v období :start a :end',
|
||||||
@ -2302,16 +2239,7 @@ return [
|
|||||||
'sum_in_default_currency' => 'Souhrn vždy bude v měně, kterou jste nastavili jako výchozí.',
|
'sum_in_default_currency' => 'Souhrn vždy bude v měně, kterou jste nastavili jako výchozí.',
|
||||||
'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.',
|
'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// charts:
|
// charts:
|
||||||
'chart' => 'Graf',
|
'chart' => 'Graf',
|
||||||
@ -2404,16 +2332,7 @@ return [
|
|||||||
'total_amount' => 'Celková částka',
|
'total_amount' => 'Celková částka',
|
||||||
'number_of_decimals' => 'Počet desetinných míst',
|
'number_of_decimals' => 'Počet desetinných míst',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// administration
|
// administration
|
||||||
'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.',
|
'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.',
|
||||||
@ -2689,16 +2608,7 @@ return [
|
|||||||
'except_weekends' => 'Vyjma výkendů',
|
'except_weekends' => 'Vyjma výkendů',
|
||||||
'recurrence_deleted' => 'Recurring transaction ":title" deleted',
|
'recurrence_deleted' => 'Recurring transaction ":title" deleted',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// new lines for summary controller.
|
// new lines for summary controller.
|
||||||
'box_balance_in_currency' => 'Zůstatek (:currency)',
|
'box_balance_in_currency' => 'Zůstatek (:currency)',
|
||||||
@ -2765,13 +2675,4 @@ return [
|
|||||||
'disable_auto_convert' => 'Disable currency conversion',
|
'disable_auto_convert' => 'Disable currency conversion',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -74,16 +65,7 @@ return [
|
|||||||
'tagMode' => 'Režim štítku',
|
'tagMode' => 'Režim štítku',
|
||||||
'virtual_balance' => 'Virtuální zůstatek',
|
'virtual_balance' => 'Virtuální zůstatek',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'targetamount' => 'Cílová částka',
|
'targetamount' => 'Cílová částka',
|
||||||
'account_role' => 'Role účtu',
|
'account_role' => 'Role účtu',
|
||||||
@ -145,11 +127,11 @@ return [
|
|||||||
'start_date' => 'Začátek rozsahu',
|
'start_date' => 'Začátek rozsahu',
|
||||||
'end_date' => 'Konec rozsahu',
|
'end_date' => 'Konec rozsahu',
|
||||||
'enddate' => 'Datum ukončení',
|
'enddate' => 'Datum ukončení',
|
||||||
'move_rules_before_delete' => 'Rule group',
|
'move_rules_before_delete' => 'Skupina pravidel',
|
||||||
'start' => 'Začátek rozsahu',
|
'start' => 'Začátek rozsahu',
|
||||||
'end' => 'Konec rozsahu',
|
'end' => 'Konec rozsahu',
|
||||||
'delete_account' => 'Smazat účet „:name“',
|
'delete_account' => 'Smazat účet „:name“',
|
||||||
'delete_webhook' => 'Delete webhook ":title"',
|
'delete_webhook' => 'Smazat webhook ":title"',
|
||||||
'delete_bill' => 'Smazán účet „:name“',
|
'delete_bill' => 'Smazán účet „:name“',
|
||||||
'delete_budget' => 'Smazat rozpočet „:name“',
|
'delete_budget' => 'Smazat rozpočet „:name“',
|
||||||
'delete_category' => 'Smazat kategorii „:name“',
|
'delete_category' => 'Smazat kategorii „:name“',
|
||||||
@ -170,7 +152,7 @@ return [
|
|||||||
'object_group_areYouSure' => 'Jste si jisti, že chcete odstranit skupinu s názvem „:title“?',
|
'object_group_areYouSure' => 'Jste si jisti, že chcete odstranit skupinu s názvem „:title“?',
|
||||||
'ruleGroup_areYouSure' => 'Opravdu chcete odstranit skupinu pravidel s názvem „:title“?',
|
'ruleGroup_areYouSure' => 'Opravdu chcete odstranit skupinu pravidel s názvem „:title“?',
|
||||||
'budget_areYouSure' => 'Jste si jisti, že chcete odstranit rozpočet s názvem „:name“?',
|
'budget_areYouSure' => 'Jste si jisti, že chcete odstranit rozpočet s názvem „:name“?',
|
||||||
'webhook_areYouSure' => 'Are you sure you want to delete the webhook named ":title"?',
|
'webhook_areYouSure' => 'Jste si jistí, že chcete smazat webhook zvaný ":title"?',
|
||||||
'category_areYouSure' => 'Jste si jisti, že chcete odstranit kategorii s názvem „:name“?',
|
'category_areYouSure' => 'Jste si jisti, že chcete odstranit kategorii s názvem „:name“?',
|
||||||
'recurring_areYouSure' => 'Jste si jisti, že chcete odstranit opakovanou transakci s názvem „:title“?',
|
'recurring_areYouSure' => 'Jste si jisti, že chcete odstranit opakovanou transakci s názvem „:title“?',
|
||||||
'currency_areYouSure' => 'Jste si jisti, že chcete odstranit měnu s názvem „:name“?',
|
'currency_areYouSure' => 'Jste si jisti, že chcete odstranit měnu s názvem „:name“?',
|
||||||
@ -178,16 +160,7 @@ return [
|
|||||||
'journal_areYouSure' => 'Jste si jisti, že chcete odstranit transakci popsanou „:description“?',
|
'journal_areYouSure' => 'Jste si jisti, že chcete odstranit transakci popsanou „:description“?',
|
||||||
'mass_journal_are_you_sure' => 'Jste si jisti, že chcete odstranit tyto transakce?',
|
'mass_journal_are_you_sure' => 'Jste si jisti, že chcete odstranit tyto transakce?',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'tag_areYouSure' => 'Jste si jisti, že chcete odstranit štítek „:tag“?',
|
'tag_areYouSure' => 'Jste si jisti, že chcete odstranit štítek „:tag“?',
|
||||||
'journal_link_areYouSure' => 'Jste si jisti, že chcete odstranit provázání mezi <a href=":source_link">:source</a> a <a href=":destination_link">:destination</a>?',
|
'journal_link_areYouSure' => 'Jste si jisti, že chcete odstranit provázání mezi <a href=":source_link">:source</a> a <a href=":destination_link">:destination</a>?',
|
||||||
@ -252,16 +225,7 @@ return [
|
|||||||
'fints_account' => 'FinTS účet',
|
'fints_account' => 'FinTS účet',
|
||||||
'local_account' => 'Účet Firefly III',
|
'local_account' => 'Účet Firefly III',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'from_date' => 'Od data',
|
'from_date' => 'Od data',
|
||||||
'to_date' => 'Do data',
|
'to_date' => 'Do data',
|
||||||
@ -297,15 +261,6 @@ return [
|
|||||||
'value' => 'Obsah záznamu',
|
'value' => 'Obsah záznamu',
|
||||||
'webhook_delivery' => 'Delivery',
|
'webhook_delivery' => 'Delivery',
|
||||||
'webhook_response' => 'Response',
|
'webhook_response' => 'Response',
|
||||||
'webhook_trigger' => 'Trigger',
|
'webhook_trigger' => 'Spouštěč',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -63,16 +54,7 @@ return [
|
|||||||
'budgets_index_list_of_budgets' => 'Použijte tuto tabulku k nastavení částek pro každý rozpočet a zjistěte, jak na tom jste.',
|
'budgets_index_list_of_budgets' => 'Použijte tuto tabulku k nastavení částek pro každý rozpočet a zjistěte, jak na tom jste.',
|
||||||
'budgets_index_outro' => 'Pokud se chcete dozvědět více o tvorbě rozpočtů, klikněte na ikonu nápovědy v pravém horním rohu.',
|
'budgets_index_outro' => 'Pokud se chcete dozvědět více o tvorbě rozpočtů, klikněte na ikonu nápovědy v pravém horním rohu.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// reports (index)
|
// reports (index)
|
||||||
'reports_index_intro' => 'Pomocí těchto přehledů získáte podrobné informace o svých financích.',
|
'reports_index_intro' => 'Pomocí těchto přehledů získáte podrobné informace o svých financích.',
|
||||||
@ -111,16 +93,7 @@ return [
|
|||||||
'piggy-banks_index_button' => 'Vedle tohoto ukazatele postupu se nachází dvě tlačítka (+ a -) pro přidání nebo odebrání peněz z každé z pokladniček.',
|
'piggy-banks_index_button' => 'Vedle tohoto ukazatele postupu se nachází dvě tlačítka (+ a -) pro přidání nebo odebrání peněz z každé z pokladniček.',
|
||||||
'piggy-banks_index_accountStatus' => 'Pro každý majetkový účet s alespoň jednou pokladničkou je v této tabulce vypsán stav.',
|
'piggy-banks_index_accountStatus' => 'Pro každý majetkový účet s alespoň jednou pokladničkou je v této tabulce vypsán stav.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// create piggy
|
// create piggy
|
||||||
'piggy-banks_create_name' => 'Co je vašim cílem? Nová pohovka, fotoaparát, rezerva pro nečekané výdaje?',
|
'piggy-banks_create_name' => 'Co je vašim cílem? Nová pohovka, fotoaparát, rezerva pro nečekané výdaje?',
|
||||||
@ -164,16 +137,7 @@ return [
|
|||||||
'rules_create_test_rule_triggers' => 'Toto tlačítko slouží ke zobrazení transakcí, které odpovídají pravidlu.',
|
'rules_create_test_rule_triggers' => 'Toto tlačítko slouží ke zobrazení transakcí, které odpovídají pravidlu.',
|
||||||
'rules_create_actions' => 'Nastavte tolik akcí, kolik chcete.',
|
'rules_create_actions' => 'Nastavte tolik akcí, kolik chcete.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// preferences
|
// preferences
|
||||||
'preferences_index_tabs' => 'Další volby jsou k dispozici v kartách.',
|
'preferences_index_tabs' => 'Další volby jsou k dispozici v kartách.',
|
||||||
@ -186,13 +150,4 @@ return [
|
|||||||
// create currency
|
// create currency
|
||||||
'currencies_create_code' => 'Tento kód by měl být v souladu s normou ISO (vyhledejte si pro novou měnu).',
|
'currencies_create_code' => 'Tento kód by měl být v souladu s normou ISO (vyhledejte si pro novou měnu).',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -68,16 +59,7 @@ return [
|
|||||||
'next_expected_match' => 'Další očekávaná shoda',
|
'next_expected_match' => 'Další očekávaná shoda',
|
||||||
'automatch' => 'Automatické hledání shody?',
|
'automatch' => 'Automatické hledání shody?',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'repeat_freq' => 'Opakuje se',
|
'repeat_freq' => 'Opakuje se',
|
||||||
'description' => 'Popis',
|
'description' => 'Popis',
|
||||||
@ -145,16 +127,7 @@ return [
|
|||||||
'account_at_bunq' => 'Účet s bunq',
|
'account_at_bunq' => 'Účet s bunq',
|
||||||
'file_name' => 'Název souboru',
|
'file_name' => 'Název souboru',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'file_size' => 'Velikost souboru',
|
'file_size' => 'Velikost souboru',
|
||||||
'file_type' => 'Typ souboru',
|
'file_type' => 'Typ souboru',
|
||||||
@ -183,13 +156,4 @@ return [
|
|||||||
'url' => 'URL',
|
'url' => 'URL',
|
||||||
'secret' => 'Secret',
|
'secret' => 'Secret',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -23,51 +23,51 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'main_message' => 'Action ":action", present in rule ":rule", could not be applied to transaction #:group: :error',
|
'main_message' => 'Akce ":action", přítomná v pravidle ":rule", nelze použít na transakci #:group: :error',
|
||||||
'find_or_create_tag_failed' => 'Could not find or create tag ":tag"',
|
'find_or_create_tag_failed' => 'Nelze najít nebo vytvořit štítek ":tag"',
|
||||||
'tag_already_added' => 'Tag ":tag" is already linked to this transaction',
|
'tag_already_added' => 'Štítek ":tag" je již propojen s touto transakcí',
|
||||||
'inspect_transaction' => 'Inspect transaction ":title" @ Firefly III',
|
'inspect_transaction' => 'Prozkoumat transakci ":title" @ Firefly III',
|
||||||
'inspect_rule' => 'Inspect rule ":title" @ Firefly III',
|
'inspect_rule' => 'Prozkoumat pravidlo ":title" @ Firefly III',
|
||||||
'journal_other_user' => 'This transaction doesn\'t belong to the user',
|
'journal_other_user' => 'Tato transakce nepatří uživateli',
|
||||||
'no_such_journal' => 'This transaction doesn\'t exist',
|
'no_such_journal' => 'Tato transakce neexistuje',
|
||||||
'journal_already_no_budget' => 'This transaction has no budget, so it cannot be removed',
|
'journal_already_no_budget' => 'Tato transakce nemá žádný rozpočet, proto nemůže být odstraněna',
|
||||||
'journal_already_no_category' => 'This transaction had no category, so it cannot be removed',
|
'journal_already_no_category' => 'Tato transakce nemá žádnou kategorii, proto nemůže být odstraněna',
|
||||||
'journal_already_no_notes' => 'This transaction had no notes, so they cannot be removed',
|
'journal_already_no_notes' => 'Tato transakce neměla žádné poznámky, takže nemůže být odstraněna',
|
||||||
'journal_not_found' => 'Firefly III can\'t find the requested transaction',
|
'journal_not_found' => 'Firefly III nemůže najít požadovanou transakci',
|
||||||
'split_group' => 'Firefly III cannot execute this action on a transaction with multiple splits',
|
'split_group' => 'Firefly III nemůže provést tuto akci na transakci rozdělenou na více částí',
|
||||||
'is_already_withdrawal' => 'This transaction is already a withdrawal',
|
'is_already_withdrawal' => 'Tato transakce už je výběrem',
|
||||||
'is_already_deposit' => 'This transaction is already a deposit',
|
'is_already_deposit' => 'Tato transakce už je vkladem',
|
||||||
'is_already_transfer' => 'This transaction is already a transfer',
|
'is_already_transfer' => 'Tato transakce už je převodem',
|
||||||
'is_not_transfer' => 'This transaction is not a transfer',
|
'is_not_transfer' => 'Tato transakce není převod',
|
||||||
'complex_error' => 'Something complicated went wrong. Sorry about that. Please inspect the logs of Firefly III',
|
'complex_error' => 'Něco se pokazilo. Omlouváme se, prosím zkontrolujte logy Firefly III',
|
||||||
'no_valid_opposing' => 'Conversion failed because there is no valid account named ":account"',
|
'no_valid_opposing' => 'Převod se nezdařil, protože neexistuje žádný platný účet s názvem ":account"',
|
||||||
'new_notes_empty' => 'The notes to be set are empty',
|
'new_notes_empty' => 'Poznámky, které mají být nastaveny, jsou prázdné',
|
||||||
'unsupported_transaction_type_withdrawal' => 'Firefly III cannot convert a ":type" to a withdrawal',
|
'unsupported_transaction_type_withdrawal' => 'Firefly III nemůže převést ":type" na výběr',
|
||||||
'unsupported_transaction_type_deposit' => 'Firefly III cannot convert a ":type" to a deposit',
|
'unsupported_transaction_type_deposit' => 'Firefly III nemůže konvertovat ":type" na vklad',
|
||||||
'unsupported_transaction_type_transfer' => 'Firefly III cannot convert a ":type" to a transfer',
|
'unsupported_transaction_type_transfer' => 'Firefly III nemůže konvertovat ":type" na převod',
|
||||||
'already_has_source_asset' => 'This transaction already has ":name" as the source asset account',
|
'already_has_source_asset' => 'Tato transakce již má ":name" jako zdrojový majetkový účet',
|
||||||
'already_has_destination_asset' => 'This transaction already has ":name" as the destination asset account',
|
'already_has_destination_asset' => 'Tato transakce již má ":name" jako cílový majetkový účet',
|
||||||
'already_has_destination' => 'This transaction already has ":name" as the destination account',
|
'already_has_destination' => 'Tato transakce již má ":name" jako cílový účet',
|
||||||
'already_has_source' => 'This transaction already has ":name" as the source account',
|
'already_has_source' => 'Tato transakce již má ":name" jako zdrojový účet',
|
||||||
'already_linked_to_subscription' => 'The transaction is already linked to subscription ":name"',
|
'already_linked_to_subscription' => 'The transaction is already linked to subscription ":name"',
|
||||||
'already_linked_to_category' => 'The transaction is already linked to category ":name"',
|
'already_linked_to_category' => 'Transakce je již propojena s kategorií ":name"',
|
||||||
'already_linked_to_budget' => 'The transaction is already linked to budget ":name"',
|
'already_linked_to_budget' => 'Transakce je již propojena s rozpočtem ":name"',
|
||||||
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
|
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
|
||||||
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
|
'no_notes_to_move' => 'Transakce nemá žádné poznámky k přesunutí do pole popisu',
|
||||||
'no_tags_to_remove' => 'The transaction has no tags to remove',
|
'no_tags_to_remove' => 'Transakce nemá žádné štítky k odstranění',
|
||||||
'not_withdrawal' => 'The transaction is not a withdrawal',
|
'not_withdrawal' => 'Transakce není výběrem',
|
||||||
'not_deposit' => 'The transaction is not a deposit',
|
'not_deposit' => 'Transakce není vklad',
|
||||||
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
|
'cannot_find_tag' => 'Firefly III nemůže najít štítek ":tag"',
|
||||||
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
|
'cannot_find_asset' => 'Firefly III nemůže najít majetkový účet ":name"',
|
||||||
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',
|
'cannot_find_accounts' => 'Firefly III nemůže najít zdrojový nebo cílový účet',
|
||||||
'cannot_find_source_transaction' => 'Firefly III can\'t find the source transaction',
|
'cannot_find_source_transaction' => 'Firefly III nemůže najít zdrojovou transakci',
|
||||||
'cannot_find_destination_transaction' => 'Firefly III can\'t find the destination transaction',
|
'cannot_find_destination_transaction' => 'Firefly III nemůže najít cílovou transakci',
|
||||||
'cannot_find_source_transaction_account' => 'Firefly III can\'t find the source transaction account',
|
'cannot_find_source_transaction_account' => 'Firefly III nemůže najít zdrojový transakční účet',
|
||||||
'cannot_find_destination_transaction_account' => 'Firefly III can\'t find the destination transaction account',
|
'cannot_find_destination_transaction_account' => 'Firefly III nemůže najít cílový účet transakce',
|
||||||
'cannot_find_piggy' => 'Firefly III can\'t find a piggy bank named ":name"',
|
'cannot_find_piggy' => 'Firefly III nemůže najít pokladničku s názvem ":name"',
|
||||||
'no_link_piggy' => 'This transaction\'s accounts are not linked to the piggy bank, so no action will be taken',
|
'no_link_piggy' => 'Účty této transakce nejsou propojeny s pokladničkou, takže žádná akce nebude provedena',
|
||||||
'cannot_unlink_tag' => 'Tag ":tag" isn\'t linked to this transaction',
|
'cannot_unlink_tag' => 'Štítek ":tag" není propojen s touto transakcí',
|
||||||
'cannot_find_budget' => 'Firefly III can\'t find budget ":name"',
|
'cannot_find_budget' => 'Firefly III nemůže najít rozpočet ":name"',
|
||||||
'cannot_find_category' => 'Firefly III can\'t find category ":name"',
|
'cannot_find_category' => 'Firefly III nemůže najít kategorii ":name"',
|
||||||
'cannot_set_budget' => 'Firefly III can\'t set budget ":name" to a transaction of type ":type"',
|
'cannot_set_budget' => 'Firefly III nemůže nastavit rozpočet ":name" na transakci typu ":type"',
|
||||||
];
|
];
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -104,16 +95,7 @@ return [
|
|||||||
'unique_object_for_user' => 'Tento název je již používán.',
|
'unique_object_for_user' => 'Tento název je již používán.',
|
||||||
'unique_account_for_user' => 'Tento název účtu je již používán.',
|
'unique_account_for_user' => 'Tento název účtu je již používán.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'between.numeric' => ':attribute musí být v rozmezí :min a :max.',
|
'between.numeric' => ':attribute musí být v rozmezí :min a :max.',
|
||||||
'between.file' => ':attribute musí být v rozmezí :min a :max kilobajtů.',
|
'between.file' => ':attribute musí být v rozmezí :min a :max kilobajtů.',
|
||||||
@ -184,16 +166,7 @@ return [
|
|||||||
'same_account_type' => 'Oba účty musí být stejného typu',
|
'same_account_type' => 'Oba účty musí být stejného typu',
|
||||||
'same_account_currency' => 'Oba účty musí mít stejné nastavení měny',
|
'same_account_currency' => 'Oba účty musí mít stejné nastavení měny',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'secure_password' => 'Toto není bezpečné heslo. Zkuste jiné. Více se dozvíte na http://bit.ly/FF3-password-security',
|
'secure_password' => 'Toto není bezpečné heslo. Zkuste jiné. Více se dozvíte na http://bit.ly/FF3-password-security',
|
||||||
'valid_recurrence_rep_type' => 'Neplatný typ opakování pro opakované transakce.',
|
'valid_recurrence_rep_type' => 'Neplatný typ opakování pro opakované transakce.',
|
||||||
@ -256,16 +229,7 @@ return [
|
|||||||
'deposit_dest_bad_data' => 'Při hledání ID „:id“ nebo jména „:name“ nelze najít platný cílový účet.',
|
'deposit_dest_bad_data' => 'Při hledání ID „:id“ nebo jména „:name“ nelze najít platný cílový účet.',
|
||||||
'deposit_dest_wrong_type' => 'Předložený cílový účet není správného typu.',
|
'deposit_dest_wrong_type' => 'Předložený cílový účet není správného typu.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'transfer_source_need_data' => 'Pro pokračování je potřeba získat platné ID zdrojového účtu a/nebo platný název zdrojového účtu.',
|
'transfer_source_need_data' => 'Pro pokračování je potřeba získat platné ID zdrojového účtu a/nebo platný název zdrojového účtu.',
|
||||||
'transfer_source_bad_data' => '[c] Could not find a valid source account when searching for ID ":id" or name ":name".',
|
'transfer_source_bad_data' => '[c] Could not find a valid source account when searching for ID ":id" or name ":name".',
|
||||||
@ -300,13 +264,4 @@ return [
|
|||||||
'no_access_user_group' => 'You do not have the correct access rights for this administration.',
|
'no_access_user_group' => 'You do not have the correct access rights for this administration.',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -21,16 +21,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
];
|
];
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -65,16 +56,7 @@ return [
|
|||||||
'transfer_list' => 'Overførsler',
|
'transfer_list' => 'Overførsler',
|
||||||
'transfers_list' => 'Overførsler',
|
'transfers_list' => 'Overførsler',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'reconciliation_list' => 'Afstemninger',
|
'reconciliation_list' => 'Afstemninger',
|
||||||
'create_withdrawal' => 'Opret ny hævning',
|
'create_withdrawal' => 'Opret ny hævning',
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,82 +20,56 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'html_language' => 'da',
|
'html_language' => 'da',
|
||||||
'locale' => 'da, Danish, da_DK.utf8, da_DK.UTF8',
|
'locale' => 'da, Danish, da_DK.utf8, da_DK.UTF8',
|
||||||
// 'month' => '%B %Y',
|
// 'month' => '%B %Y',
|
||||||
'month_js' => 'MMMM YYYY',
|
'month_js' => 'MMMM YYYY',
|
||||||
|
|
||||||
// 'month_and_day' => '%B %e, %Y',
|
// 'month_and_day' => '%B %e, %Y',
|
||||||
'month_and_day_moment_js' => 'D MMMM, YYYY',
|
'month_and_day_moment_js' => 'D MMMM, YYYY',
|
||||||
'month_and_day_fns' => 'd MMMM y',
|
'month_and_day_fns' => 'd MMMM y',
|
||||||
'month_and_day_js' => 'Do MMMM, YYYY',
|
'month_and_day_js' => 'Do MMMM, YYYY',
|
||||||
|
|
||||||
// 'month_and_date_day' => '%A %B %e, %Y',
|
// 'month_and_date_day' => '%A %B %e, %Y',
|
||||||
'month_and_date_day_js' => 'dddd MMMM Do, ÅÅÅÅ',
|
'month_and_date_day_js' => 'dddd MMMM Do, ÅÅÅÅ',
|
||||||
|
|
||||||
// 'month_and_day_no_year' => '%B %e',
|
// 'month_and_day_no_year' => '%B %e',
|
||||||
'month_and_day_no_year_js' => 'D MMMM',
|
'month_and_day_no_year_js' => 'D MMMM',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// 'date_time' => '%B %e, %Y, @ %T',
|
// 'date_time' => '%B %e, %Y, @ %T',
|
||||||
'date_time_js' => 'Do MMMM, YYYY @ HH:mm:ss',
|
'date_time_js' => 'Do MMMM, YYYY @ HH:mm:ss',
|
||||||
'date_time_fns' => 'MMMM gør, yyyy @ HH:mm:ss',
|
'date_time_fns' => 'MMMM gør, yyyy @ HH:mm:ss',
|
||||||
|
'date_time_fns_short' => 'MMMM do, yyyy @ HH:mm',
|
||||||
|
|
||||||
// 'specific_day' => '%e %B %Y',
|
// 'specific_day' => '%e %B %Y',
|
||||||
'specific_day_js' => 'D MMMM YYYY',
|
'specific_day_js' => 'D MMMM YYYY',
|
||||||
|
|
||||||
// 'week_in_year' => 'Week %V, %G',
|
// 'week_in_year' => 'Week %V, %G',
|
||||||
'week_in_year_js' => '[Week] U, GGGG',
|
'week_in_year_js' => '[Week] U, GGGG',
|
||||||
'week_in_year_fns' => "'Uge' w, yyyy",
|
'week_in_year_fns' => "'Uge' w, yyyy",
|
||||||
|
|
||||||
// 'year' => '%Y',
|
// 'year' => '%Y',
|
||||||
'year_js' => 'YYYY',
|
'year_js' => 'YYYY',
|
||||||
|
|
||||||
// 'half_year' => '%B %Y',
|
// 'half_year' => '%B %Y',
|
||||||
'half_year_js' => '\QQ YYYY',
|
'half_year_js' => '\QQ YYYY',
|
||||||
|
|
||||||
'quarter_fns' => "'kvt.' Q, yyyy",
|
'quarter_fns' => "'kvt.' Q, yyyy",
|
||||||
'half_year_fns' => "'H{half}', yyyyy",
|
'half_year_fns' => "'H{half}', yyyyy",
|
||||||
'dow_1' => 'Mandag',
|
'dow_1' => 'Mandag',
|
||||||
'dow_2' => 'Tirsdag',
|
'dow_2' => 'Tirsdag',
|
||||||
'dow_3' => 'Onsdag',
|
'dow_3' => 'Onsdag',
|
||||||
'dow_4' => 'Torsdag',
|
'dow_4' => 'Torsdag',
|
||||||
'dow_5' => 'Fredag',
|
'dow_5' => 'Fredag',
|
||||||
'dow_6' => 'Lørdag',
|
'dow_6' => 'Lørdag',
|
||||||
'dow_7' => 'Søndag',
|
'dow_7' => 'Søndag',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -47,13 +38,4 @@ return [
|
|||||||
'profile-index' => 'Vær opmærksom på at demosiden nulstilles hver fjerde time. Din adgang kan blive trukket tilbage til enhver tid. Dette sker automatisk, og er ikke en fejl.',
|
'profile-index' => 'Vær opmærksom på at demosiden nulstilles hver fjerde time. Din adgang kan blive trukket tilbage til enhver tid. Dette sker automatisk, og er ikke en fejl.',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -44,16 +35,7 @@ return [
|
|||||||
'admin_test_subject' => 'En testbesked fra din Firefly III-installation',
|
'admin_test_subject' => 'En testbesked fra din Firefly III-installation',
|
||||||
'admin_test_body' => 'Dette er en test besked fra din Firefly III installation. Den blev sendt til :email.',
|
'admin_test_body' => 'Dette er en test besked fra din Firefly III installation. Den blev sendt til :email.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// invite
|
// invite
|
||||||
'invitation_created_subject' => 'En invitation er blevet oprettet',
|
'invitation_created_subject' => 'En invitation er blevet oprettet',
|
||||||
@ -90,16 +72,7 @@ return [
|
|||||||
'registered_pw_reset_link' => 'Nulstilling af adgangskode:',
|
'registered_pw_reset_link' => 'Nulstilling af adgangskode:',
|
||||||
'registered_doc_link' => 'Dokumentation:',
|
'registered_doc_link' => 'Dokumentation:',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// new version
|
// new version
|
||||||
'new_version_email_subject' => 'En ny Firefly III-version er tilgængelig',
|
'new_version_email_subject' => 'En ny Firefly III-version er tilgængelig',
|
||||||
@ -145,16 +118,7 @@ return [
|
|||||||
'error_headers' => 'Følgende overskrifter kan også være relevante:',
|
'error_headers' => 'Følgende overskrifter kan også være relevante:',
|
||||||
'error_post' => 'Dette blev indsendt af brugeren:',
|
'error_post' => 'Dette blev indsendt af brugeren:',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// report new journals
|
// report new journals
|
||||||
'new_journals_subject' => 'Firefly III har oprettet en ny transaktion|Firefly III har oprettet :count nye transaktioner',
|
'new_journals_subject' => 'Firefly III har oprettet en ny transaktion|Firefly III har oprettet :count nye transaktioner',
|
||||||
@ -171,13 +135,4 @@ return [
|
|||||||
'bill_warning_extension_date_zero' => 'Regningen **":name"** er sat til at blive udskudt eller annuleret om :date. Denne dato vil blive overskrevet **I DAG!**',
|
'bill_warning_extension_date_zero' => 'Regningen **":name"** er sat til at blive udskudt eller annuleret om :date. Denne dato vil blive overskrevet **I DAG!**',
|
||||||
'bill_warning_please_action' => 'Udfør venligt den krævede handling.',
|
'bill_warning_please_action' => 'Udfør venligt den krævede handling.',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -51,16 +42,7 @@ return [
|
|||||||
'stacktrace' => 'Stack trace',
|
'stacktrace' => 'Stack trace',
|
||||||
'more_info' => 'Yderligere information',
|
'more_info' => 'Yderligere information',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'collect_info' => 'Der findes mere information i mappen <code>storage/logs</code> hvor du vil finde logfilerne. Hvis du kører Docker, brug <code>docker logs -f [container]</code>.',
|
'collect_info' => 'Der findes mere information i mappen <code>storage/logs</code> hvor du vil finde logfilerne. Hvis du kører Docker, brug <code>docker logs -f [container]</code>.',
|
||||||
'collect_info_more' => 'Du kan læse mere om indsamling af fejloplysninger i <a href="https://docs.firefly-iii.org/how-to/general/debug/">FAQ</a>.',
|
'collect_info_more' => 'Du kan læse mere om indsamling af fejloplysninger i <a href="https://docs.firefly-iii.org/how-to/general/debug/">FAQ</a>.',
|
||||||
|
@ -22,16 +22,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
// general stuff:
|
// general stuff:
|
||||||
@ -339,16 +330,7 @@ return [
|
|||||||
|
|
||||||
// old
|
// old
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'search_modifier_date_on' => 'Transaktionsdato er ":value"',
|
'search_modifier_date_on' => 'Transaktionsdato er ":value"',
|
||||||
'search_modifier_not_date_on' => 'Transaktionsdato er ikke ":value"',
|
'search_modifier_not_date_on' => 'Transaktionsdato er ikke ":value"',
|
||||||
@ -713,16 +695,7 @@ return [
|
|||||||
'create_rule_from_query' => 'Opret ny regel fra søgeforespørgsel',
|
'create_rule_from_query' => 'Opret ny regel fra søgeforespørgsel',
|
||||||
'rule_from_search_words' => 'Der er problemer med at håndtere forespørgslen ":string". Den foreslåede regel, der passer til din søgeforespørgsel, kan give forskellige resultater. Kontroller venligst omhyggeligt de udløsende hændelser.',
|
'rule_from_search_words' => 'Der er problemer med at håndtere forespørgslen ":string". Den foreslåede regel, der passer til din søgeforespørgsel, kan give forskellige resultater. Kontroller venligst omhyggeligt de udløsende hændelser.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// END
|
// END
|
||||||
'modifiers_applies_are' => 'De følgende tilpasninger anvendes også i søgningen:',
|
'modifiers_applies_are' => 'De følgende tilpasninger anvendes også i søgningen:',
|
||||||
@ -1212,16 +1185,7 @@ return [
|
|||||||
'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account',
|
'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account',
|
||||||
'rule_trigger_not_account_is_cash' => 'Neither account is a cash account',
|
'rule_trigger_not_account_is_cash' => 'Neither account is a cash account',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
// set, clear, add, remove, append/prepend
|
// set, clear, add, remove, append/prepend
|
||||||
@ -1536,16 +1500,7 @@ return [
|
|||||||
'multi_account_warning_deposit' => 'Husk, at destinationskontoen for efterfølgende opdelinger vil blive tilsidesat af hvad der er defineret i den første opsplitning af depositummet.',
|
'multi_account_warning_deposit' => 'Husk, at destinationskontoen for efterfølgende opdelinger vil blive tilsidesat af hvad der er defineret i den første opsplitning af depositummet.',
|
||||||
'multi_account_warning_transfer' => 'Husk på, at kilden + destination konto for efterfølgende opdelinger vil blive overstyret af hvad der er defineret i den første opdeling af overførslen.',
|
'multi_account_warning_transfer' => 'Husk på, at kilden + destination konto for efterfølgende opdelinger vil blive overstyret af hvad der er defineret i den første opdeling af overførslen.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// export data:
|
// export data:
|
||||||
'export_data_title' => 'Eksporter data fra Firefly III',
|
'export_data_title' => 'Eksporter data fra Firefly III',
|
||||||
@ -1940,16 +1895,7 @@ return [
|
|||||||
'stored_category' => 'Stored new category ":name"',
|
'stored_category' => 'Stored new category ":name"',
|
||||||
'without_category_between' => 'Without category between :start and :end',
|
'without_category_between' => 'Without category between :start and :end',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// transactions:
|
// transactions:
|
||||||
'wait_loading_transaction' => 'Please wait for the form to load',
|
'wait_loading_transaction' => 'Please wait for the form to load',
|
||||||
@ -2187,16 +2133,7 @@ return [
|
|||||||
'classification' => 'Classification',
|
'classification' => 'Classification',
|
||||||
'store_transaction' => 'Store transaction',
|
'store_transaction' => 'Store transaction',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// reports:
|
// reports:
|
||||||
'report_default' => 'Default financial report between :start and :end',
|
'report_default' => 'Default financial report between :start and :end',
|
||||||
@ -2302,16 +2239,7 @@ return [
|
|||||||
'sum_in_default_currency' => 'The sum will always be in your default currency.',
|
'sum_in_default_currency' => 'The sum will always be in your default currency.',
|
||||||
'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.',
|
'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// charts:
|
// charts:
|
||||||
'chart' => 'Chart',
|
'chart' => 'Chart',
|
||||||
@ -2404,16 +2332,7 @@ return [
|
|||||||
'total_amount' => 'Total amount',
|
'total_amount' => 'Total amount',
|
||||||
'number_of_decimals' => 'Number of decimals',
|
'number_of_decimals' => 'Number of decimals',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// administration
|
// administration
|
||||||
'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.',
|
'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.',
|
||||||
@ -2689,16 +2608,7 @@ return [
|
|||||||
'except_weekends' => 'Except weekends',
|
'except_weekends' => 'Except weekends',
|
||||||
'recurrence_deleted' => 'Recurring transaction ":title" deleted',
|
'recurrence_deleted' => 'Recurring transaction ":title" deleted',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// new lines for summary controller.
|
// new lines for summary controller.
|
||||||
'box_balance_in_currency' => 'Balance (:currency)',
|
'box_balance_in_currency' => 'Balance (:currency)',
|
||||||
@ -2765,13 +2675,4 @@ return [
|
|||||||
'disable_auto_convert' => 'Disable currency conversion',
|
'disable_auto_convert' => 'Disable currency conversion',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -74,16 +65,7 @@ return [
|
|||||||
'tagMode' => 'Tag tilstand',
|
'tagMode' => 'Tag tilstand',
|
||||||
'virtual_balance' => 'Virtuel saldo',
|
'virtual_balance' => 'Virtuel saldo',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'targetamount' => 'Målbeløb',
|
'targetamount' => 'Målbeløb',
|
||||||
'account_role' => 'Kontorolle',
|
'account_role' => 'Kontorolle',
|
||||||
@ -178,16 +160,7 @@ return [
|
|||||||
'journal_areYouSure' => 'Er du sikker på, at du vil slette transaktionen beskrevet med ":description"?',
|
'journal_areYouSure' => 'Er du sikker på, at du vil slette transaktionen beskrevet med ":description"?',
|
||||||
'mass_journal_are_you_sure' => 'Er du sikker på, at du vil slette disse transaktioner?',
|
'mass_journal_are_you_sure' => 'Er du sikker på, at du vil slette disse transaktioner?',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'tag_areYouSure' => 'Er du sikker på, at du vil slette tagget ":tag"?',
|
'tag_areYouSure' => 'Er du sikker på, at du vil slette tagget ":tag"?',
|
||||||
'journal_link_areYouSure' => 'Er du sikker på, at du vil slette linket mellem <a href=":source_link">:source</a> og <a href=":destination_link">:destination</a>?',
|
'journal_link_areYouSure' => 'Er du sikker på, at du vil slette linket mellem <a href=":source_link">:source</a> og <a href=":destination_link">:destination</a>?',
|
||||||
@ -252,16 +225,7 @@ return [
|
|||||||
'fints_account' => 'FinTS konto',
|
'fints_account' => 'FinTS konto',
|
||||||
'local_account' => 'Firefly III konto',
|
'local_account' => 'Firefly III konto',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'from_date' => 'Dato fra',
|
'from_date' => 'Dato fra',
|
||||||
'to_date' => 'Dato til',
|
'to_date' => 'Dato til',
|
||||||
@ -299,13 +263,4 @@ return [
|
|||||||
'webhook_response' => 'Svar',
|
'webhook_response' => 'Svar',
|
||||||
'webhook_trigger' => 'Udløser',
|
'webhook_trigger' => 'Udløser',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -63,16 +54,7 @@ return [
|
|||||||
'budgets_index_list_of_budgets' => 'Brug denne tabel til at fastsætte beløbene for hvert budget og se, hvordan du klarer det.',
|
'budgets_index_list_of_budgets' => 'Brug denne tabel til at fastsætte beløbene for hvert budget og se, hvordan du klarer det.',
|
||||||
'budgets_index_outro' => 'For at lære mere om budgettering, tjek hjælpeikonet i øverste højre hjørne.',
|
'budgets_index_outro' => 'For at lære mere om budgettering, tjek hjælpeikonet i øverste højre hjørne.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// reports (index)
|
// reports (index)
|
||||||
'reports_index_intro' => 'Brug disse rapporter til at få detaljeret indsigt i dine finanser.',
|
'reports_index_intro' => 'Brug disse rapporter til at få detaljeret indsigt i dine finanser.',
|
||||||
@ -111,16 +93,7 @@ return [
|
|||||||
'piggy-banks_index_button' => 'Ved siden af denne statuslinje er to knapper (+ og -) for at tilføje eller fjerne penge fra hver "sparebøsse".',
|
'piggy-banks_index_button' => 'Ved siden af denne statuslinje er to knapper (+ og -) for at tilføje eller fjerne penge fra hver "sparebøsse".',
|
||||||
'piggy-banks_index_accountStatus' => 'For hver konto for aktiver med mindst en "sparebøsse" er status angivet i denne tabel.',
|
'piggy-banks_index_accountStatus' => 'For hver konto for aktiver med mindst en "sparebøsse" er status angivet i denne tabel.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// create piggy
|
// create piggy
|
||||||
'piggy-banks_create_name' => 'Hvad er dit mål? En ny sofa, et kamera, penge til nødsituationer?',
|
'piggy-banks_create_name' => 'Hvad er dit mål? En ny sofa, et kamera, penge til nødsituationer?',
|
||||||
@ -164,16 +137,7 @@ return [
|
|||||||
'rules_create_test_rule_triggers' => 'Brug denne knap til at se, hvilke transaktioner der ville passe til din regel.',
|
'rules_create_test_rule_triggers' => 'Brug denne knap til at se, hvilke transaktioner der ville passe til din regel.',
|
||||||
'rules_create_actions' => 'Angiv så mange handlinger som du ønsker.',
|
'rules_create_actions' => 'Angiv så mange handlinger som du ønsker.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// preferences
|
// preferences
|
||||||
'preferences_index_tabs' => 'Flere indstillinger er tilgængelige bag disse fanerblade.',
|
'preferences_index_tabs' => 'Flere indstillinger er tilgængelige bag disse fanerblade.',
|
||||||
@ -186,13 +150,4 @@ return [
|
|||||||
// create currency
|
// create currency
|
||||||
'currencies_create_code' => 'Denne kode skal være ISO-kompatibel (Slå den op på Google for din nye valuta).',
|
'currencies_create_code' => 'Denne kode skal være ISO-kompatibel (Slå den op på Google for din nye valuta).',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -68,16 +59,7 @@ return [
|
|||||||
'next_expected_match' => 'Næste forventede afstemning',
|
'next_expected_match' => 'Næste forventede afstemning',
|
||||||
'automatch' => 'Auto afstem?',
|
'automatch' => 'Auto afstem?',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'repeat_freq' => 'Gentagelser',
|
'repeat_freq' => 'Gentagelser',
|
||||||
'description' => 'Beskrivelse',
|
'description' => 'Beskrivelse',
|
||||||
@ -145,16 +127,7 @@ return [
|
|||||||
'account_at_bunq' => 'Konto hos bunq',
|
'account_at_bunq' => 'Konto hos bunq',
|
||||||
'file_name' => 'Filnavn',
|
'file_name' => 'Filnavn',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'file_size' => 'Filstørrelse',
|
'file_size' => 'Filstørrelse',
|
||||||
'file_type' => 'Filtype',
|
'file_type' => 'Filtype',
|
||||||
@ -183,13 +156,4 @@ return [
|
|||||||
'url' => 'URL',
|
'url' => 'URL',
|
||||||
'secret' => 'Hemmelighed',
|
'secret' => 'Hemmelighed',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -104,16 +95,7 @@ return [
|
|||||||
'unique_object_for_user' => 'Navnet er allerede i brug.',
|
'unique_object_for_user' => 'Navnet er allerede i brug.',
|
||||||
'unique_account_for_user' => 'Kontonavnet er allerede i brug.',
|
'unique_account_for_user' => 'Kontonavnet er allerede i brug.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'between.numeric' => ':attribute skal være mellem :min og :max.',
|
'between.numeric' => ':attribute skal være mellem :min og :max.',
|
||||||
'between.file' => ':attribute skal være mellem :min og :max kilobytes.',
|
'between.file' => ':attribute skal være mellem :min og :max kilobytes.',
|
||||||
@ -184,16 +166,7 @@ return [
|
|||||||
'same_account_type' => 'Begge konti skal være af samme kontotype',
|
'same_account_type' => 'Begge konti skal være af samme kontotype',
|
||||||
'same_account_currency' => 'Begge konti skal have samme valuta',
|
'same_account_currency' => 'Begge konti skal have samme valuta',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'secure_password' => 'Dette er ikke en sikker adgangskode. Prøv venligst igen. For mere information, besøg https://bit.ly/FF3-password-security',
|
'secure_password' => 'Dette er ikke en sikker adgangskode. Prøv venligst igen. For mere information, besøg https://bit.ly/FF3-password-security',
|
||||||
'valid_recurrence_rep_type' => 'Ugyldig type gentalgelse for periodiske transaktioner.',
|
'valid_recurrence_rep_type' => 'Ugyldig type gentalgelse for periodiske transaktioner.',
|
||||||
@ -256,16 +229,7 @@ return [
|
|||||||
'deposit_dest_bad_data' => 'Kunne ikke finde en gyldig destinationskonto, ved søgning efter ID ":id" eller kontonavn ":name".',
|
'deposit_dest_bad_data' => 'Kunne ikke finde en gyldig destinationskonto, ved søgning efter ID ":id" eller kontonavn ":name".',
|
||||||
'deposit_dest_wrong_type' => 'Den foreslåede destinationskonto er ikke af den rigtige type.',
|
'deposit_dest_wrong_type' => 'Den foreslåede destinationskonto er ikke af den rigtige type.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'transfer_source_need_data' => 'Det er nødvendigt at have et gyldigt kildekonto ID og/eller gyldigt kildekontonavn for at fortsætte.',
|
'transfer_source_need_data' => 'Det er nødvendigt at have et gyldigt kildekonto ID og/eller gyldigt kildekontonavn for at fortsætte.',
|
||||||
'transfer_source_bad_data' => '[c] Kunne ikke finde en gyldig kildekonto ved søgning efter ID ":id" eller navn ":name".',
|
'transfer_source_bad_data' => '[c] Kunne ikke finde en gyldig kildekonto ved søgning efter ID ":id" eller navn ":name".',
|
||||||
@ -300,13 +264,4 @@ return [
|
|||||||
'no_access_user_group' => 'Du har ikke de korrekte adgangsrettigheder for denne administration.',
|
'no_access_user_group' => 'Du har ikke de korrekte adgangsrettigheder for denne administration.',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -21,16 +21,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
];
|
];
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -65,16 +56,7 @@ return [
|
|||||||
'transfer_list' => 'Umbuchungen',
|
'transfer_list' => 'Umbuchungen',
|
||||||
'transfers_list' => 'Umbuchungen',
|
'transfers_list' => 'Umbuchungen',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'reconciliation_list' => 'Kontenabgleiche',
|
'reconciliation_list' => 'Kontenabgleiche',
|
||||||
'create_withdrawal' => 'Neue Ausgabe erstellen',
|
'create_withdrawal' => 'Neue Ausgabe erstellen',
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,82 +20,56 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'html_language' => 'de',
|
'html_language' => 'de',
|
||||||
'locale' => 'de, Deutsch, de_DE.utf8, de_DE.UTF-8',
|
'locale' => 'de, Deutsch, de_DE.utf8, de_DE.UTF-8',
|
||||||
// 'month' => '%B %Y',
|
// 'month' => '%B %Y',
|
||||||
'month_js' => 'MMMM YYYY',
|
'month_js' => 'MMMM YYYY',
|
||||||
|
|
||||||
// 'month_and_day' => '%B %e, %Y',
|
// 'month_and_day' => '%B %e, %Y',
|
||||||
'month_and_day_moment_js' => 'DD. MMM. YYYY',
|
'month_and_day_moment_js' => 'DD. MMM. YYYY',
|
||||||
'month_and_day_fns' => 'D. MMMM Y',
|
'month_and_day_fns' => 'D. MMMM Y',
|
||||||
'month_and_day_js' => 'Do MMMM YYYY',
|
'month_and_day_js' => 'Do MMMM YYYY',
|
||||||
|
|
||||||
// 'month_and_date_day' => '%A %B %e, %Y',
|
// 'month_and_date_day' => '%A %B %e, %Y',
|
||||||
'month_and_date_day_js' => 'dddd DD. MMMM YYYY',
|
'month_and_date_day_js' => 'dddd DD. MMMM YYYY',
|
||||||
|
|
||||||
// 'month_and_day_no_year' => '%B %e',
|
// 'month_and_day_no_year' => '%B %e',
|
||||||
'month_and_day_no_year_js' => 'DD. MMMM',
|
'month_and_day_no_year_js' => 'DD. MMMM',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// 'date_time' => '%B %e, %Y, @ %T',
|
// 'date_time' => '%B %e, %Y, @ %T',
|
||||||
'date_time_js' => 'Do MMMM YYYY um HH:mm:ss',
|
'date_time_js' => 'Do MMMM YYYY um HH:mm:ss',
|
||||||
'date_time_fns' => 'dd. MMM. yyyy um HH:mm:ss',
|
'date_time_fns' => 'dd. MMM. yyyy um HH:mm:ss',
|
||||||
|
'date_time_fns_short' => 'MMMM do, yyyy @ HH:mm',
|
||||||
|
|
||||||
// 'specific_day' => '%e %B %Y',
|
// 'specific_day' => '%e %B %Y',
|
||||||
'specific_day_js' => 'D. MMMM YYYY',
|
'specific_day_js' => 'D. MMMM YYYY',
|
||||||
|
|
||||||
// 'week_in_year' => 'Week %V, %G',
|
// 'week_in_year' => 'Week %V, %G',
|
||||||
'week_in_year_js' => '[KW] W, GGGG',
|
'week_in_year_js' => '[KW] W, GGGG',
|
||||||
'week_in_year_fns' => "'Woche' ww/yyyy",
|
'week_in_year_fns' => "'Woche' ww/yyyy",
|
||||||
|
|
||||||
// 'year' => '%Y',
|
// 'year' => '%Y',
|
||||||
'year_js' => 'YYYY',
|
'year_js' => 'YYYY',
|
||||||
|
|
||||||
// 'half_year' => '%B %Y',
|
// 'half_year' => '%B %Y',
|
||||||
'half_year_js' => '\QQ YYYY',
|
'half_year_js' => '\QQ YYYY',
|
||||||
|
|
||||||
'quarter_fns' => "'Q'QQQ, yyyy",
|
'quarter_fns' => "'Q'QQQ, yyyy",
|
||||||
'half_year_fns' => "'H{half}', yyyy",
|
'half_year_fns' => "'H{half}', yyyy",
|
||||||
'dow_1' => 'Montag',
|
'dow_1' => 'Montag',
|
||||||
'dow_2' => 'Dienstag',
|
'dow_2' => 'Dienstag',
|
||||||
'dow_3' => 'Mittwoch',
|
'dow_3' => 'Mittwoch',
|
||||||
'dow_4' => 'Donnerstag',
|
'dow_4' => 'Donnerstag',
|
||||||
'dow_5' => 'Freitag',
|
'dow_5' => 'Freitag',
|
||||||
'dow_6' => 'Samstag',
|
'dow_6' => 'Samstag',
|
||||||
'dow_7' => 'Sonntag',
|
'dow_7' => 'Sonntag',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -47,13 +38,4 @@ return [
|
|||||||
'profile-index' => 'Beachten Sie, dass die Demo-Seite alle vier Stunden zurückgesetzt wird. Ihr Zugang kann jederzeit widerrufen werden. Dies geschieht automatisch und ist kein Fehler.',
|
'profile-index' => 'Beachten Sie, dass die Demo-Seite alle vier Stunden zurückgesetzt wird. Ihr Zugang kann jederzeit widerrufen werden. Dies geschieht automatisch und ist kein Fehler.',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -44,16 +35,7 @@ return [
|
|||||||
'admin_test_subject' => 'Eine Testmeldung von Ihrer Firefly III Installation',
|
'admin_test_subject' => 'Eine Testmeldung von Ihrer Firefly III Installation',
|
||||||
'admin_test_body' => 'Dies ist eine Testnachricht von Ihrer Firefly III-Instanz. Sie wurde an :email gesendet.',
|
'admin_test_body' => 'Dies ist eine Testnachricht von Ihrer Firefly III-Instanz. Sie wurde an :email gesendet.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// invite
|
// invite
|
||||||
'invitation_created_subject' => 'Eine Einladung wurde erstellt',
|
'invitation_created_subject' => 'Eine Einladung wurde erstellt',
|
||||||
@ -90,16 +72,7 @@ return [
|
|||||||
'registered_pw_reset_link' => 'Passwort zurücksetzen:',
|
'registered_pw_reset_link' => 'Passwort zurücksetzen:',
|
||||||
'registered_doc_link' => 'Dokumentation:',
|
'registered_doc_link' => 'Dokumentation:',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// new version
|
// new version
|
||||||
'new_version_email_subject' => 'Eine neue Firefly III-Version ist verfügbar',
|
'new_version_email_subject' => 'Eine neue Firefly III-Version ist verfügbar',
|
||||||
@ -145,16 +118,7 @@ return [
|
|||||||
'error_headers' => 'Die folgenden Kopfzeilen können ebenfalls von Bedeutung sein:',
|
'error_headers' => 'Die folgenden Kopfzeilen können ebenfalls von Bedeutung sein:',
|
||||||
'error_post' => 'Dies wurde vom Benutzer eingereicht:',
|
'error_post' => 'Dies wurde vom Benutzer eingereicht:',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// report new journals
|
// report new journals
|
||||||
'new_journals_subject' => 'Firefly III hat eine neue Transaktion erstellt|Firefly III hat :count neue Transaktionen erstellt',
|
'new_journals_subject' => 'Firefly III hat eine neue Transaktion erstellt|Firefly III hat :count neue Transaktionen erstellt',
|
||||||
@ -171,13 +135,4 @@ return [
|
|||||||
'bill_warning_extension_date_zero' => 'Ihre Rechnung **":name"** wird am :date verlängert oder storniert. Dieser Zeitpunkt wird **HEUTE!** vergehen',
|
'bill_warning_extension_date_zero' => 'Ihre Rechnung **":name"** wird am :date verlängert oder storniert. Dieser Zeitpunkt wird **HEUTE!** vergehen',
|
||||||
'bill_warning_please_action' => 'Bitte ergreifen Sie die entsprechende Maßnahme.',
|
'bill_warning_please_action' => 'Bitte ergreifen Sie die entsprechende Maßnahme.',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -51,16 +42,7 @@ return [
|
|||||||
'stacktrace' => 'Stack-Trace',
|
'stacktrace' => 'Stack-Trace',
|
||||||
'more_info' => 'Weitere Informationen',
|
'more_info' => 'Weitere Informationen',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'collect_info' => 'Bitte sammeln Sie weitere Informationen im Verzeichnis <code>storage/logs</code> wo Sie Logdateien finden können. Wenn Sie Docker verwenden, verwenden Sie <code>docker logs -f [container]</code>.',
|
'collect_info' => 'Bitte sammeln Sie weitere Informationen im Verzeichnis <code>storage/logs</code> wo Sie Logdateien finden können. Wenn Sie Docker verwenden, verwenden Sie <code>docker logs -f [container]</code>.',
|
||||||
'collect_info_more' => 'Weitere Informationen zum Sammeln von Fehlerinformationen finden Sie <a href="https://docs.firefly-iii.org/how-to/general/debug/">im FAQ</a>.',
|
'collect_info_more' => 'Weitere Informationen zum Sammeln von Fehlerinformationen finden Sie <a href="https://docs.firefly-iii.org/how-to/general/debug/">im FAQ</a>.',
|
||||||
|
@ -22,16 +22,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
// general stuff:
|
// general stuff:
|
||||||
@ -339,16 +330,7 @@ return [
|
|||||||
|
|
||||||
// old
|
// old
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'search_modifier_date_on' => 'Buchungsdatum ist „:value”',
|
'search_modifier_date_on' => 'Buchungsdatum ist „:value”',
|
||||||
'search_modifier_not_date_on' => 'Buchungsdatum ist nicht ":value"',
|
'search_modifier_not_date_on' => 'Buchungsdatum ist nicht ":value"',
|
||||||
@ -713,16 +695,7 @@ return [
|
|||||||
'create_rule_from_query' => 'Neue Regel aus Suchanfrage erstellen',
|
'create_rule_from_query' => 'Neue Regel aus Suchanfrage erstellen',
|
||||||
'rule_from_search_words' => 'Die Regel-Modul hat Schwierigkeiten „:string” zu verarbeiten. Die vorgeschlagene Regel, die Ihrer Suchanfrage entspricht, kann zu unterschiedlichen Ergebnissen führen. Bitte überprüfen Sie die Regelauslöser sorgfältig.',
|
'rule_from_search_words' => 'Die Regel-Modul hat Schwierigkeiten „:string” zu verarbeiten. Die vorgeschlagene Regel, die Ihrer Suchanfrage entspricht, kann zu unterschiedlichen Ergebnissen führen. Bitte überprüfen Sie die Regelauslöser sorgfältig.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// END
|
// END
|
||||||
'modifiers_applies_are' => 'Die folgenden Einschränkungen werden ebenfalls auf die Suche angewendet:',
|
'modifiers_applies_are' => 'Die folgenden Einschränkungen werden ebenfalls auf die Suche angewendet:',
|
||||||
@ -1212,16 +1185,7 @@ return [
|
|||||||
'rule_trigger_not_destination_is_cash' => 'Zielkonto ist kein Bargeldkonto',
|
'rule_trigger_not_destination_is_cash' => 'Zielkonto ist kein Bargeldkonto',
|
||||||
'rule_trigger_not_account_is_cash' => 'Beide Konten sind keine Bargeldkonten',
|
'rule_trigger_not_account_is_cash' => 'Beide Konten sind keine Bargeldkonten',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
// set, clear, add, remove, append/prepend
|
// set, clear, add, remove, append/prepend
|
||||||
@ -1536,16 +1500,7 @@ return [
|
|||||||
'multi_account_warning_deposit' => 'Bedenken Sie, dass das Zielkonto nachfolgender Aufteilungen von dem, was in der ersten Aufteilung der Einnahmen definiert ist, außer Kraft gesetzt wird.',
|
'multi_account_warning_deposit' => 'Bedenken Sie, dass das Zielkonto nachfolgender Aufteilungen von dem, was in der ersten Aufteilung der Einnahmen definiert ist, außer Kraft gesetzt wird.',
|
||||||
'multi_account_warning_transfer' => 'Bedenken Sie, dass das Quell- und Zielkonto nachfolgender Aufteilungen durch das, was in der ersten Aufteilung der Übertragung definiert ist, außer Kraft gesetzt wird.',
|
'multi_account_warning_transfer' => 'Bedenken Sie, dass das Quell- und Zielkonto nachfolgender Aufteilungen durch das, was in der ersten Aufteilung der Übertragung definiert ist, außer Kraft gesetzt wird.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// export data:
|
// export data:
|
||||||
'export_data_title' => 'Daten aus Firefly III exportieren',
|
'export_data_title' => 'Daten aus Firefly III exportieren',
|
||||||
@ -1940,16 +1895,7 @@ return [
|
|||||||
'stored_category' => 'Neue Kategorie „:name” gespeichert',
|
'stored_category' => 'Neue Kategorie „:name” gespeichert',
|
||||||
'without_category_between' => 'Ohne Kategorie zwischen :start und :end',
|
'without_category_between' => 'Ohne Kategorie zwischen :start und :end',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// transactions:
|
// transactions:
|
||||||
'wait_loading_transaction' => 'Bitte warten Sie, bis das Formular geladen wurde',
|
'wait_loading_transaction' => 'Bitte warten Sie, bis das Formular geladen wurde',
|
||||||
@ -2187,16 +2133,7 @@ return [
|
|||||||
'classification' => 'Klassifizierung',
|
'classification' => 'Klassifizierung',
|
||||||
'store_transaction' => 'Buchung speichern',
|
'store_transaction' => 'Buchung speichern',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// reports:
|
// reports:
|
||||||
'report_default' => 'Standardfinanzbericht zwischen :start und :end',
|
'report_default' => 'Standardfinanzbericht zwischen :start und :end',
|
||||||
@ -2302,16 +2239,7 @@ return [
|
|||||||
'sum_in_default_currency' => 'Der Betrag wird immer in Ihrer Standardwährung angegeben.',
|
'sum_in_default_currency' => 'Der Betrag wird immer in Ihrer Standardwährung angegeben.',
|
||||||
'net_filtered_prefs' => 'Dieses Diagramm wird niemals Konten einbeziehen, die die Option "Im Eigenkapital enthalten" deaktiviert haben.',
|
'net_filtered_prefs' => 'Dieses Diagramm wird niemals Konten einbeziehen, die die Option "Im Eigenkapital enthalten" deaktiviert haben.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// charts:
|
// charts:
|
||||||
'chart' => 'Diagram',
|
'chart' => 'Diagram',
|
||||||
@ -2404,16 +2332,7 @@ return [
|
|||||||
'total_amount' => 'Gesamtbetrag',
|
'total_amount' => 'Gesamtbetrag',
|
||||||
'number_of_decimals' => 'Anzahl der Nachkommastellen',
|
'number_of_decimals' => 'Anzahl der Nachkommastellen',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// administration
|
// administration
|
||||||
'invite_is_already_redeemed' => 'Die Einladung zu „:address“ wurde bereits eingelöst.',
|
'invite_is_already_redeemed' => 'Die Einladung zu „:address“ wurde bereits eingelöst.',
|
||||||
@ -2689,16 +2608,7 @@ return [
|
|||||||
'except_weekends' => 'Außer an Wochenenden',
|
'except_weekends' => 'Außer an Wochenenden',
|
||||||
'recurrence_deleted' => 'Dauerauftrag „:title” gelöscht',
|
'recurrence_deleted' => 'Dauerauftrag „:title” gelöscht',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// new lines for summary controller.
|
// new lines for summary controller.
|
||||||
'box_balance_in_currency' => 'Guthaben (:currency)',
|
'box_balance_in_currency' => 'Guthaben (:currency)',
|
||||||
@ -2765,13 +2675,4 @@ return [
|
|||||||
'disable_auto_convert' => 'Währungsumrechnung deaktivieren',
|
'disable_auto_convert' => 'Währungsumrechnung deaktivieren',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -74,16 +65,7 @@ return [
|
|||||||
'tagMode' => 'Schlagwort-Modus',
|
'tagMode' => 'Schlagwort-Modus',
|
||||||
'virtual_balance' => 'Virtueller Kontostand',
|
'virtual_balance' => 'Virtueller Kontostand',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'targetamount' => 'Zielbetrag',
|
'targetamount' => 'Zielbetrag',
|
||||||
'account_role' => 'Kontenfunktion',
|
'account_role' => 'Kontenfunktion',
|
||||||
@ -178,16 +160,7 @@ return [
|
|||||||
'journal_areYouSure' => 'Sind Sie sicher, dass Sie die Überweisung mit dem Namen ":description" löschen möchten?',
|
'journal_areYouSure' => 'Sind Sie sicher, dass Sie die Überweisung mit dem Namen ":description" löschen möchten?',
|
||||||
'mass_journal_are_you_sure' => 'Sind Sie sicher, dass Sie diese Überweisung löschen möchten?',
|
'mass_journal_are_you_sure' => 'Sind Sie sicher, dass Sie diese Überweisung löschen möchten?',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'tag_areYouSure' => 'Möchten Sie das Schlagwort „:tag” wirklich löschen?',
|
'tag_areYouSure' => 'Möchten Sie das Schlagwort „:tag” wirklich löschen?',
|
||||||
'journal_link_areYouSure' => 'Sind Sie sicher, dass Sie die Verknüpfung zwischen <a href=":source_link">:source</a> und <a href=":destination_link">:destination</a> löschen möchten?',
|
'journal_link_areYouSure' => 'Sind Sie sicher, dass Sie die Verknüpfung zwischen <a href=":source_link">:source</a> und <a href=":destination_link">:destination</a> löschen möchten?',
|
||||||
@ -252,16 +225,7 @@ return [
|
|||||||
'fints_account' => 'FinTS-Konto',
|
'fints_account' => 'FinTS-Konto',
|
||||||
'local_account' => 'Firefly-III-Konto',
|
'local_account' => 'Firefly-III-Konto',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'from_date' => 'Datum ab',
|
'from_date' => 'Datum ab',
|
||||||
'to_date' => 'Datum bis',
|
'to_date' => 'Datum bis',
|
||||||
@ -299,13 +263,4 @@ return [
|
|||||||
'webhook_response' => 'Antwort',
|
'webhook_response' => 'Antwort',
|
||||||
'webhook_trigger' => 'Auslöser',
|
'webhook_trigger' => 'Auslöser',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -63,16 +54,7 @@ return [
|
|||||||
'budgets_index_list_of_budgets' => 'Verwenden Sie diese Tabelle, um die Beträge für jedes Budget festzulegen und einen Überblick zu erhalten.',
|
'budgets_index_list_of_budgets' => 'Verwenden Sie diese Tabelle, um die Beträge für jedes Budget festzulegen und einen Überblick zu erhalten.',
|
||||||
'budgets_index_outro' => 'Um mehr über die Finanzplanung zu erfahren, klicken Sie auf das Hilfesymbol in der oberen rechten Ecke.',
|
'budgets_index_outro' => 'Um mehr über die Finanzplanung zu erfahren, klicken Sie auf das Hilfesymbol in der oberen rechten Ecke.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// reports (index)
|
// reports (index)
|
||||||
'reports_index_intro' => 'Verwenden Sie diese Reports, um detaillierte Einblicke in Ihre Finanzen zu erhalten.',
|
'reports_index_intro' => 'Verwenden Sie diese Reports, um detaillierte Einblicke in Ihre Finanzen zu erhalten.',
|
||||||
@ -111,16 +93,7 @@ return [
|
|||||||
'piggy-banks_index_button' => 'Neben diesem Fortschrittsbalken befinden sich zwei Buttons (+ und -), um Geld von jedem Sparschwein hinzuzufügen oder zu entfernen.',
|
'piggy-banks_index_button' => 'Neben diesem Fortschrittsbalken befinden sich zwei Buttons (+ und -), um Geld von jedem Sparschwein hinzuzufügen oder zu entfernen.',
|
||||||
'piggy-banks_index_accountStatus' => 'In dieser Tabelle wird der Status der Bestandskonten aufgeführt, die mit mindestens einem Sparschwein verbunden sind.',
|
'piggy-banks_index_accountStatus' => 'In dieser Tabelle wird der Status der Bestandskonten aufgeführt, die mit mindestens einem Sparschwein verbunden sind.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// create piggy
|
// create piggy
|
||||||
'piggy-banks_create_name' => 'Worauf sparen Sie? Eine neue Couch, eine Kamera, Geld für Notfälle?',
|
'piggy-banks_create_name' => 'Worauf sparen Sie? Eine neue Couch, eine Kamera, Geld für Notfälle?',
|
||||||
@ -164,16 +137,7 @@ return [
|
|||||||
'rules_create_test_rule_triggers' => 'Verwenden Sie diese Schaltfläche, um zu sehen, welche Transaktionen zu Ihrer Regel passen würden.',
|
'rules_create_test_rule_triggers' => 'Verwenden Sie diese Schaltfläche, um zu sehen, welche Transaktionen zu Ihrer Regel passen würden.',
|
||||||
'rules_create_actions' => 'Legen Sie so viele Aktionen fest, wie Sie möchten.',
|
'rules_create_actions' => 'Legen Sie so viele Aktionen fest, wie Sie möchten.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// preferences
|
// preferences
|
||||||
'preferences_index_tabs' => 'Weitere Optionen sind hinter diesen Registerkarten verfügbar.',
|
'preferences_index_tabs' => 'Weitere Optionen sind hinter diesen Registerkarten verfügbar.',
|
||||||
@ -186,13 +150,4 @@ return [
|
|||||||
// create currency
|
// create currency
|
||||||
'currencies_create_code' => 'Dieser Code sollte ISO-konform sein (Für eine neue Währung googlen).',
|
'currencies_create_code' => 'Dieser Code sollte ISO-konform sein (Für eine neue Währung googlen).',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -68,16 +59,7 @@ return [
|
|||||||
'next_expected_match' => 'Nächste erwartete Übereinstimmung',
|
'next_expected_match' => 'Nächste erwartete Übereinstimmung',
|
||||||
'automatch' => 'Automatisch erkennen?',
|
'automatch' => 'Automatisch erkennen?',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'repeat_freq' => 'Wiederholungen',
|
'repeat_freq' => 'Wiederholungen',
|
||||||
'description' => 'Beschreibung',
|
'description' => 'Beschreibung',
|
||||||
@ -145,16 +127,7 @@ return [
|
|||||||
'account_at_bunq' => 'Konto bei „bunq”',
|
'account_at_bunq' => 'Konto bei „bunq”',
|
||||||
'file_name' => 'Dateiname',
|
'file_name' => 'Dateiname',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'file_size' => 'Dateigröße',
|
'file_size' => 'Dateigröße',
|
||||||
'file_type' => 'Dateityp',
|
'file_type' => 'Dateityp',
|
||||||
@ -183,13 +156,4 @@ return [
|
|||||||
'url' => 'URL',
|
'url' => 'URL',
|
||||||
'secret' => 'Secret',
|
'secret' => 'Secret',
|
||||||
];
|
];
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -104,16 +95,7 @@ return [
|
|||||||
'unique_object_for_user' => 'Dieser Name wird bereits verwendet.',
|
'unique_object_for_user' => 'Dieser Name wird bereits verwendet.',
|
||||||
'unique_account_for_user' => 'Dieser Kontoname wird bereits verwendet.',
|
'unique_account_for_user' => 'Dieser Kontoname wird bereits verwendet.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'between.numeric' => ':attribute muss zwischen :min und :max liegen.',
|
'between.numeric' => ':attribute muss zwischen :min und :max liegen.',
|
||||||
'between.file' => ':attribute muss zwischen :min und :max Kilobytes groß sein.',
|
'between.file' => ':attribute muss zwischen :min und :max Kilobytes groß sein.',
|
||||||
@ -184,16 +166,7 @@ return [
|
|||||||
'same_account_type' => 'Beide Konten müssen vom selben Kontotyp sein',
|
'same_account_type' => 'Beide Konten müssen vom selben Kontotyp sein',
|
||||||
'same_account_currency' => 'Beiden Konten muss die gleiche Währung zugeordnet sein',
|
'same_account_currency' => 'Beiden Konten muss die gleiche Währung zugeordnet sein',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'secure_password' => 'Dies ist ein unsicheres Passwort. Bitte versuchen Sie es erneut. Weitere Informationen finden Sie unter https://github.com/firefly-iii/help/wiki/Secure-password',
|
'secure_password' => 'Dies ist ein unsicheres Passwort. Bitte versuchen Sie es erneut. Weitere Informationen finden Sie unter https://github.com/firefly-iii/help/wiki/Secure-password',
|
||||||
'valid_recurrence_rep_type' => 'Ungültige Wiederholungsart für Daueraufträge.',
|
'valid_recurrence_rep_type' => 'Ungültige Wiederholungsart für Daueraufträge.',
|
||||||
@ -256,16 +229,7 @@ return [
|
|||||||
'deposit_dest_bad_data' => 'Bei der Suche nach der Kennung „:id” oder dem Namen „:name” konnte kein gültiges Zielkonto gefunden werden.',
|
'deposit_dest_bad_data' => 'Bei der Suche nach der Kennung „:id” oder dem Namen „:name” konnte kein gültiges Zielkonto gefunden werden.',
|
||||||
'deposit_dest_wrong_type' => 'Das übermittelte Zielkonto entspricht nicht dem geforderten Typ.',
|
'deposit_dest_wrong_type' => 'Das übermittelte Zielkonto entspricht nicht dem geforderten Typ.',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'transfer_source_need_data' => 'Um fortzufahren, benötigen Sie eine gültige Quellkontenkennung und/oder einen gültigen Quellkontonamen.',
|
'transfer_source_need_data' => 'Um fortzufahren, benötigen Sie eine gültige Quellkontenkennung und/oder einen gültigen Quellkontonamen.',
|
||||||
'transfer_source_bad_data' => '[c] Bei der Suche nach der ID „:id” oder dem Namen „:name” konnte kein gültiges Quellkonto gefunden werden.',
|
'transfer_source_bad_data' => '[c] Bei der Suche nach der ID „:id” oder dem Namen „:name” konnte kein gültiges Quellkonto gefunden werden.',
|
||||||
@ -300,13 +264,4 @@ return [
|
|||||||
'no_access_user_group' => 'Für diese Verwaltung haben Sie nicht die erforderlichen Zugriffsrechte.',
|
'no_access_user_group' => 'Für diese Verwaltung haben Sie nicht die erforderlichen Zugriffsrechte.',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -21,16 +21,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
];
|
];
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -65,16 +56,7 @@ return [
|
|||||||
'transfer_list' => 'Μεταφορές',
|
'transfer_list' => 'Μεταφορές',
|
||||||
'transfers_list' => 'Μεταφορές',
|
'transfers_list' => 'Μεταφορές',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'reconciliation_list' => 'Συνδιαλλαγές',
|
'reconciliation_list' => 'Συνδιαλλαγές',
|
||||||
'create_withdrawal' => 'Δημιουργία νέας ανάληψης',
|
'create_withdrawal' => 'Δημιουργία νέας ανάληψης',
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
@ -20,82 +20,56 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'html_language' => 'el',
|
'html_language' => 'el',
|
||||||
'locale' => 'el, Ελληνικά, el_GR.utf8, el_GR.UTF-8',
|
'locale' => 'el, Ελληνικά, el_GR.utf8, el_GR.UTF-8',
|
||||||
// 'month' => '%B %Y',
|
// 'month' => '%B %Y',
|
||||||
'month_js' => 'MMMM YYYY',
|
'month_js' => 'MMMM YYYY',
|
||||||
|
|
||||||
// 'month_and_day' => '%B %e, %Y',
|
// 'month_and_day' => '%B %e, %Y',
|
||||||
'month_and_day_moment_js' => 'D MMM YYYY',
|
'month_and_day_moment_js' => 'D MMM YYYY',
|
||||||
'month_and_day_fns' => 'd MMMM y',
|
'month_and_day_fns' => 'd MMMM y',
|
||||||
'month_and_day_js' => 'Do MMMM YYYY',
|
'month_and_day_js' => 'Do MMMM YYYY',
|
||||||
|
|
||||||
// 'month_and_date_day' => '%A %B %e, %Y',
|
// 'month_and_date_day' => '%A %B %e, %Y',
|
||||||
'month_and_date_day_js' => 'dddd Do MMMM YYYY',
|
'month_and_date_day_js' => 'dddd Do MMMM YYYY',
|
||||||
|
|
||||||
// 'month_and_day_no_year' => '%B %e',
|
// 'month_and_day_no_year' => '%B %e',
|
||||||
'month_and_day_no_year_js' => 'Do MMMM',
|
'month_and_day_no_year_js' => 'Do MMMM',
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// 'date_time' => '%B %e, %Y, @ %T',
|
// 'date_time' => '%B %e, %Y, @ %T',
|
||||||
'date_time_js' => 'Do MMMM YYYY, HH:mm:ss',
|
'date_time_js' => 'Do MMMM YYYY, HH:mm:ss',
|
||||||
'date_time_fns' => 'do MMMM yyyy @ HH:mm:ss',
|
'date_time_fns' => 'do MMMM yyyy @ HH:mm:ss',
|
||||||
|
'date_time_fns_short' => 'MMMM do, yyyy @ HH:mm',
|
||||||
|
|
||||||
// 'specific_day' => '%e %B %Y',
|
// 'specific_day' => '%e %B %Y',
|
||||||
'specific_day_js' => 'D MMMM YYYY',
|
'specific_day_js' => 'D MMMM YYYY',
|
||||||
|
|
||||||
// 'week_in_year' => 'Week %V, %G',
|
// 'week_in_year' => 'Week %V, %G',
|
||||||
'week_in_year_js' => '[Week] W, GGGG',
|
'week_in_year_js' => '[Week] W, GGGG',
|
||||||
'week_in_year_fns' => "'Εβδομάδα' w, yyyy",
|
'week_in_year_fns' => "'Εβδομάδα' w, yyyy",
|
||||||
|
|
||||||
// 'year' => '%Y',
|
// 'year' => '%Y',
|
||||||
'year_js' => 'YYYY',
|
'year_js' => 'YYYY',
|
||||||
|
|
||||||
// 'half_year' => '%B %Y',
|
// 'half_year' => '%B %Y',
|
||||||
'half_year_js' => '\QQ YYYY',
|
'half_year_js' => '\QQ YYYY',
|
||||||
|
|
||||||
'quarter_fns' => "'Q'Q, yyyy",
|
'quarter_fns' => "'Q'Q, yyyy",
|
||||||
'half_year_fns' => "'H{half}', yyyy",
|
'half_year_fns' => "'H{half}', yyyy",
|
||||||
'dow_1' => 'Δευτέρα',
|
'dow_1' => 'Δευτέρα',
|
||||||
'dow_2' => 'Τρίτη',
|
'dow_2' => 'Τρίτη',
|
||||||
'dow_3' => 'Τετάρτη',
|
'dow_3' => 'Τετάρτη',
|
||||||
'dow_4' => 'Πέμπτη',
|
'dow_4' => 'Πέμπτη',
|
||||||
'dow_5' => 'Παρασκευή',
|
'dow_5' => 'Παρασκευή',
|
||||||
'dow_6' => 'Σάββατο',
|
'dow_6' => 'Σάββατο',
|
||||||
'dow_7' => 'Κυριακή',
|
'dow_7' => 'Κυριακή',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
@ -20,16 +20,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
@ -47,13 +38,4 @@ return [
|
|||||||
'profile-index' => 'Λάβετε υπόψιν ότι o ιστότοπος επίδειξης επαναφέρεται κάθε τέσσερις ώρες. Η πρόσβασή σας μπορεί να ανακληθεί οποιαδήποτε στιγμή. Αυτό συμβαίνει αυτόματα και δεν είναι σφάλμα.',
|
'profile-index' => 'Λάβετε υπόψιν ότι o ιστότοπος επίδειξης επαναφέρεται κάθε τέσσερις ώρες. Η πρόσβασή σας μπορεί να ανακληθεί οποιαδήποτε στιγμή. Αυτό συμβαίνει αυτόματα και δεν είναι σφάλμα.',
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
// Ignore this comment
|
||||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
||||||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
||||||
*
|
|
||||||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
||||||
*
|
|
||||||
* https://crowdin.com/project/firefly-iii
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user