mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Final code + language for alpha 2.
This commit is contained in:
parent
9f80d729a2
commit
c63721a15f
@ -1,3 +1,4 @@
|
||||
bg_BG
|
||||
cs_CZ
|
||||
de_DE
|
||||
el_GR
|
||||
|
@ -253,7 +253,7 @@ class JournalUpdateService
|
||||
}
|
||||
|
||||
$destInfo = [
|
||||
'id' => (int)($this->data['destination_id'] ?? null),
|
||||
'id' => (int) ($this->data['destination_id'] ?? null),
|
||||
'name' => $this->data['destination_name'] ?? null,
|
||||
'iban' => $this->data['destination_iban'] ?? null,
|
||||
'number' => $this->data['destination_number'] ?? null,
|
||||
@ -287,7 +287,7 @@ class JournalUpdateService
|
||||
}
|
||||
|
||||
$sourceInfo = [
|
||||
'id' => (int)($this->data['source_id'] ?? null),
|
||||
'id' => (int) ($this->data['source_id'] ?? null),
|
||||
'name' => $this->data['source_name'] ?? null,
|
||||
'iban' => $this->data['source_iban'] ?? null,
|
||||
'number' => $this->data['source_number'] ?? null,
|
||||
@ -547,12 +547,27 @@ class JournalUpdateService
|
||||
/**
|
||||
* Update journal generic field. Cannot be set to NULL.
|
||||
*
|
||||
* @param $fieldName
|
||||
* @param string $fieldName
|
||||
*/
|
||||
private function updateField($fieldName): void
|
||||
private function updateField(string $fieldName): void
|
||||
{
|
||||
if (array_key_exists($fieldName, $this->data) && '' !== (string)$this->data[$fieldName]) {
|
||||
$this->transactionJournal->$fieldName = $this->data[$fieldName];
|
||||
if (array_key_exists($fieldName, $this->data) && '' !== (string) $this->data[$fieldName]) {
|
||||
$value = $this->data[$fieldName];
|
||||
|
||||
if ('date' === $fieldName) {
|
||||
if($value instanceof Carbon) {
|
||||
// update timezone.
|
||||
$value->setTimezone(config('app.timezone'));
|
||||
}
|
||||
if(!($value instanceof Carbon)) {
|
||||
$value = new Carbon($value);
|
||||
}
|
||||
// do some parsing.
|
||||
Log::debug(sprintf('Create date value from string "%s".', $value));
|
||||
}
|
||||
|
||||
|
||||
$this->transactionJournal->$fieldName = $value;
|
||||
Log::debug(sprintf('Updated %s', $fieldName));
|
||||
}
|
||||
}
|
||||
@ -652,7 +667,7 @@ class JournalUpdateService
|
||||
foreach ($this->metaDate as $field) {
|
||||
if ($this->hasFields([$field])) {
|
||||
try {
|
||||
$value = '' === (string)$this->data[$field] ? null : new Carbon($this->data[$field]);
|
||||
$value = '' === (string) $this->data[$field] ? null : new Carbon($this->data[$field]);
|
||||
} catch (Exception $e) {
|
||||
Log::debug(sprintf('%s is not a valid date value: %s', $this->data[$field], $e->getMessage()));
|
||||
|
||||
|
@ -142,6 +142,7 @@ trait ConvertsDataTypes
|
||||
|
||||
return null;
|
||||
}
|
||||
Log::debug(sprintf('Date object: %s (%s)',$carbon->toW3cString() , $carbon->getTimezone()));
|
||||
|
||||
return $carbon;
|
||||
}
|
||||
|
14
changelog.md
14
changelog.md
@ -11,13 +11,13 @@ Several alpha and beta releases preceded this release.
|
||||
### Added
|
||||
- [Issue 3187](https://github.com/firefly-iii/firefly-iii/issues/3187) A new field for transaction URL's.
|
||||
- [Issue 3200](https://github.com/firefly-iii/firefly-iii/issues/3200) The ability to sort your accounts as you see fit.
|
||||
- [Issue 3213](https://github.com/firefly-iii/firefly-iii/issues/3213) Add totals to budget page.
|
||||
- [Issue 3213](https://github.com/firefly-iii/firefly-iii/issues/3213) Add totals to the budget page.
|
||||
- [Issue 3238](https://github.com/firefly-iii/firefly-iii/issues/3238) You can select an expense when creating a transaction.
|
||||
- [Issue 3240](https://github.com/firefly-iii/firefly-iii/issues/3240) Meta data and UI changes to count recurring transactions.
|
||||
- [Issue 3246](https://github.com/firefly-iii/firefly-iii/issues/3246) Ability to add tags in the mass editor, not just replace them.
|
||||
- [Issue 3265](https://github.com/firefly-iii/firefly-iii/issues/3265) A warning when split transactions may be changed by Firefly III.
|
||||
- [Issue 3382](https://github.com/firefly-iii/firefly-iii/issues/3382) Fixed transfers not showing the right +/- sign, by @sephrat
|
||||
- [Issue 3435](https://github.com/firefly-iii/firefly-iii/issues/3435) Create a recurring transaction from a transaction.
|
||||
- [Issue 3435](https://github.com/firefly-iii/firefly-iii/issues/3435) Create a recurring transaction from a single transaction.
|
||||
- [Issue 3451](https://github.com/firefly-iii/firefly-iii/issues/3451) Add a message on the bottom of the transaction screen so you see any errors.
|
||||
- [Issue 3475](https://github.com/firefly-iii/firefly-iii/issues/3475) A summary for the box with bills.
|
||||
- [Issue 3583](https://github.com/firefly-iii/firefly-iii/issues/3583) You can set your own custom guard header for third party authentication.
|
||||
@ -27,11 +27,12 @@ Several alpha and beta releases preceded this release.
|
||||
- [Issue 3648](https://github.com/firefly-iii/firefly-iii/issues/3648) Add a basic copy/paste feature.
|
||||
- [Issue 3651](https://github.com/firefly-iii/firefly-iii/issues/3651) Now supports public clients.
|
||||
- A new integrity check that makes sure all transaction types are correct.
|
||||
- Support for Bulgarian! 🇧🇬
|
||||
|
||||
### Changed
|
||||
- [Issue 3578](https://github.com/firefly-iii/firefly-iii/issues/3578) Use php-intl to do currency formatting, made by @hoshsadiq
|
||||
- [Issue 3586](https://github.com/firefly-iii/firefly-iii/issues/3586) Removed features that aren't necessary when using third party auth providers.
|
||||
- [Issue 3659](https://github.com/firefly-iii/firefly-iii/issues/3659) Update readme to include third party apps.
|
||||
- [Issue 3659](https://github.com/firefly-iii/firefly-iii/issues/3659) Update the readme to include third party apps.
|
||||
- All auto-complete code now uses the API; let me know if errors occur.
|
||||
- Fixed audit logs.
|
||||
|
||||
@ -40,9 +41,9 @@ Several alpha and beta releases preceded this release.
|
||||
- [Issue 3577](https://github.com/firefly-iii/firefly-iii/issues/3577) Add liability accounts when transforming transactions.
|
||||
- [Issue 3585](https://github.com/firefly-iii/firefly-iii/issues/3585) Fix issue with category lists in reports.
|
||||
- [Issue 3598](https://github.com/firefly-iii/firefly-iii/issues/3598) [issue 3597](https://github.com/firefly-iii/firefly-iii/issues/3597) Bad code in create recurring page, fixed by @maroux
|
||||
- [Issue 3630](https://github.com/firefly-iii/firefly-iii/issues/3630) Fix cron job used for auto budgeting.
|
||||
- [Issue 3635](https://github.com/firefly-iii/firefly-iii/issues/3635) Fix copy/paste error in translations, by @sephrat
|
||||
- [Issue 3638](https://github.com/firefly-iii/firefly-iii/issues/3638) Remove unused wanring, by @sephrat
|
||||
- [Issue 3630](https://github.com/firefly-iii/firefly-iii/issues/3630) Fix the cron job used for auto budgeting.
|
||||
- [Issue 3635](https://github.com/firefly-iii/firefly-iii/issues/3635) Fix a copy/paste error in translations, by @sephrat
|
||||
- [Issue 3638](https://github.com/firefly-iii/firefly-iii/issues/3638) Remove unused warning, by @sephrat
|
||||
- [Issue 3639](https://github.com/firefly-iii/firefly-iii/issues/3639) Remove unused translations, by @sephrat
|
||||
- [Issue 3640](https://github.com/firefly-iii/firefly-iii/issues/3640) Hide empty budget lists, by @sephrat
|
||||
- [Issue 3641](https://github.com/firefly-iii/firefly-iii/issues/3641) Elegant solution to fix piggy bank groups, by @sephrat
|
||||
@ -53,6 +54,7 @@ Several alpha and beta releases preceded this release.
|
||||
- [Issue 3681](https://github.com/firefly-iii/firefly-iii/issues/3681) Fix Czech translations missing file on `/profile` page.
|
||||
- [Issue 3696](https://github.com/firefly-iii/firefly-iii/issues/3696) Fix missing translations, by @sephrat
|
||||
- [Issue 3693](https://github.com/firefly-iii/firefly-iii/issues/3693) Creating users through the API was impossible.
|
||||
- [Issue 3710](https://github.com/firefly-iii/firefly-iii/issues/3710) When you create a split transaction, the title isn't correctly reset.
|
||||
- Reconciliation transactions now show the amount correctly.
|
||||
|
||||
### API
|
||||
|
391
composer.lock
generated
391
composer.lock
generated
@ -170,16 +170,16 @@
|
||||
},
|
||||
{
|
||||
"name": "brick/math",
|
||||
"version": "0.8.15",
|
||||
"version": "0.9.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/brick/math.git",
|
||||
"reference": "9b08d412b9da9455b210459ff71414de7e6241cd"
|
||||
"reference": "283a40c901101e66de7061bd359252c013dcc43c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/brick/math/zipball/9b08d412b9da9455b210459ff71414de7e6241cd",
|
||||
"reference": "9b08d412b9da9455b210459ff71414de7e6241cd",
|
||||
"url": "https://api.github.com/repos/brick/math/zipball/283a40c901101e66de7061bd359252c013dcc43c",
|
||||
"reference": "283a40c901101e66de7061bd359252c013dcc43c",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -218,51 +218,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2020-04-15T15:59:35+00:00"
|
||||
},
|
||||
{
|
||||
"name": "cweagans/composer-patches",
|
||||
"version": "1.6.7",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/cweagans/composer-patches.git",
|
||||
"reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
|
||||
"reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"composer-plugin-api": "^1.0",
|
||||
"php": ">=5.3.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"composer/composer": "~1.0",
|
||||
"phpunit/phpunit": "~4.6"
|
||||
},
|
||||
"type": "composer-plugin",
|
||||
"extra": {
|
||||
"class": "cweagans\\Composer\\Patches"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"cweagans\\Composer\\": "src"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"BSD-3-Clause"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Cameron Eagans",
|
||||
"email": "me@cweagans.net"
|
||||
}
|
||||
],
|
||||
"description": "Provides a way to patch Composer packages.",
|
||||
"time": "2019-08-29T20:11:49+00:00"
|
||||
"time": "2020-08-18T23:57:15+00:00"
|
||||
},
|
||||
{
|
||||
"name": "dasprid/enum",
|
||||
@ -1567,23 +1523,23 @@
|
||||
},
|
||||
{
|
||||
"name": "laminas/laminas-zendframework-bridge",
|
||||
"version": "1.0.4",
|
||||
"version": "1.1.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laminas/laminas-zendframework-bridge.git",
|
||||
"reference": "fcd87520e4943d968557803919523772475e8ea3"
|
||||
"reference": "4939c81f63a8a4968c108c440275c94955753b19"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
|
||||
"reference": "fcd87520e4943d968557803919523772475e8ea3",
|
||||
"url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/4939c81f63a8a4968c108c440275c94955753b19",
|
||||
"reference": "4939c81f63a8a4968c108c440275c94955753b19",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^5.6 || ^7.0"
|
||||
"php": "^5.6 || ^7.0 || ^8.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
|
||||
"phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
|
||||
"squizlabs/php_codesniffer": "^3.5"
|
||||
},
|
||||
"type": "library",
|
||||
@ -1621,7 +1577,7 @@
|
||||
"type": "community_bridge"
|
||||
}
|
||||
],
|
||||
"time": "2020-05-20T16:45:56+00:00"
|
||||
"time": "2020-08-18T16:34:51+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravel/framework",
|
||||
@ -1978,16 +1934,16 @@
|
||||
},
|
||||
{
|
||||
"name": "lcobucci/jwt",
|
||||
"version": "3.3.2",
|
||||
"version": "3.3.3",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/lcobucci/jwt.git",
|
||||
"reference": "56f10808089e38623345e28af2f2d5e4eb579455"
|
||||
"reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/lcobucci/jwt/zipball/56f10808089e38623345e28af2f2d5e4eb579455",
|
||||
"reference": "56f10808089e38623345e28af2f2d5e4eb579455",
|
||||
"url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
|
||||
"reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -2039,20 +1995,20 @@
|
||||
"type": "patreon"
|
||||
}
|
||||
],
|
||||
"time": "2020-05-22T08:21:12+00:00"
|
||||
"time": "2020-08-20T13:22:28+00:00"
|
||||
},
|
||||
{
|
||||
"name": "league/commonmark",
|
||||
"version": "1.5.3",
|
||||
"version": "1.5.4",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/thephpleague/commonmark.git",
|
||||
"reference": "2574454b97e4103dc4e36917bd783b25624aefcd"
|
||||
"reference": "21819c989e69bab07e933866ad30c7e3f32984ba"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2574454b97e4103dc4e36917bd783b25624aefcd",
|
||||
"reference": "2574454b97e4103dc4e36917bd783b25624aefcd",
|
||||
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/21819c989e69bab07e933866ad30c7e3f32984ba",
|
||||
"reference": "21819c989e69bab07e933866ad30c7e3f32984ba",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -2134,7 +2090,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2020-07-19T22:47:30+00:00"
|
||||
"time": "2020-08-18T01:19:12+00:00"
|
||||
},
|
||||
{
|
||||
"name": "league/csv",
|
||||
@ -2265,16 +2221,16 @@
|
||||
},
|
||||
{
|
||||
"name": "league/flysystem",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/thephpleague/flysystem.git",
|
||||
"reference": "6e96f54d82e71f71c4108da33ee96a7f57083710"
|
||||
"reference": "63cd8c14708b9544d3f61d3c15b747fda1c95c6e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/6e96f54d82e71f71c4108da33ee96a7f57083710",
|
||||
"reference": "6e96f54d82e71f71c4108da33ee96a7f57083710",
|
||||
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/63cd8c14708b9544d3f61d3c15b747fda1c95c6e",
|
||||
"reference": "63cd8c14708b9544d3f61d3c15b747fda1c95c6e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -2352,7 +2308,7 @@
|
||||
"type": "other"
|
||||
}
|
||||
],
|
||||
"time": "2020-08-12T14:23:41+00:00"
|
||||
"time": "2020-08-18T10:57:55+00:00"
|
||||
},
|
||||
{
|
||||
"name": "league/fractal",
|
||||
@ -3429,23 +3385,23 @@
|
||||
},
|
||||
{
|
||||
"name": "predis/predis",
|
||||
"version": "v1.1.2",
|
||||
"version": "v1.1.3",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/predishq/predis.git",
|
||||
"reference": "82eb18c6c3860849cb6e2ff34b0c4b39d5daee46"
|
||||
"url": "https://github.com/predis/predis.git",
|
||||
"reference": "2ce537d75e610550f5337e41b2a971417999b028"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/predishq/predis/zipball/82eb18c6c3860849cb6e2ff34b0c4b39d5daee46",
|
||||
"reference": "82eb18c6c3860849cb6e2ff34b0c4b39d5daee46",
|
||||
"url": "https://api.github.com/repos/predis/predis/zipball/2ce537d75e610550f5337e41b2a971417999b028",
|
||||
"reference": "2ce537d75e610550f5337e41b2a971417999b028",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"cweagans/composer-patches": "^1.6",
|
||||
"php": ">=5.3.9"
|
||||
},
|
||||
"require-dev": {
|
||||
"cweagans/composer-patches": "^1.6",
|
||||
"phpunit/phpunit": "~4.8"
|
||||
},
|
||||
"suggest": {
|
||||
@ -3478,11 +3434,17 @@
|
||||
{
|
||||
"name": "Daniele Alessandri",
|
||||
"email": "suppakilla@gmail.com",
|
||||
"homepage": "http://clorophilla.net"
|
||||
"homepage": "http://clorophilla.net",
|
||||
"role": "Creator & Maintainer"
|
||||
},
|
||||
{
|
||||
"name": "Till Krüss",
|
||||
"homepage": "https://till.im",
|
||||
"role": "Maintainer"
|
||||
}
|
||||
],
|
||||
"description": "Flexible and feature-complete Redis client for PHP and HHVM",
|
||||
"homepage": "http://github.com/nrk/predis",
|
||||
"homepage": "http://github.com/predis/predis",
|
||||
"keywords": [
|
||||
"nosql",
|
||||
"predis",
|
||||
@ -3490,15 +3452,11 @@
|
||||
],
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://www.paypal.me/tillkruss",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/tillkruss",
|
||||
"url": "https://github.com/sponsors/tillkruss",
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2020-08-11T17:28:15+00:00"
|
||||
"time": "2020-08-18T21:00:59+00:00"
|
||||
},
|
||||
{
|
||||
"name": "psr/container",
|
||||
@ -3952,20 +3910,20 @@
|
||||
},
|
||||
{
|
||||
"name": "ramsey/uuid",
|
||||
"version": "4.1.0",
|
||||
"version": "4.1.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/ramsey/uuid.git",
|
||||
"reference": "988dbefc7878d0a35f12afb4df1f7dd0bd153c43"
|
||||
"reference": "cd4032040a750077205918c86049aa0f43d22947"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/ramsey/uuid/zipball/988dbefc7878d0a35f12afb4df1f7dd0bd153c43",
|
||||
"reference": "988dbefc7878d0a35f12afb4df1f7dd0bd153c43",
|
||||
"url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
|
||||
"reference": "cd4032040a750077205918c86049aa0f43d22947",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"brick/math": "^0.8",
|
||||
"brick/math": "^0.8 || ^0.9",
|
||||
"ext-json": "*",
|
||||
"php": "^7.2 || ^8",
|
||||
"ramsey/collection": "^1.0",
|
||||
@ -4035,7 +3993,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2020-07-28T16:51:01+00:00"
|
||||
"time": "2020-08-18T17:17:46+00:00"
|
||||
},
|
||||
{
|
||||
"name": "rcrowe/twigbridge",
|
||||
@ -7222,6 +7180,75 @@
|
||||
],
|
||||
"time": "2020-08-03T09:35:19+00:00"
|
||||
},
|
||||
{
|
||||
"name": "composer/package-versions-deprecated",
|
||||
"version": "1.10.99.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/composer/package-versions-deprecated.git",
|
||||
"reference": "68c9b502036e820c33445ff4d174327f6bb87486"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/68c9b502036e820c33445ff4d174327f6bb87486",
|
||||
"reference": "68c9b502036e820c33445ff4d174327f6bb87486",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"composer-plugin-api": "^1.1.0 || ^2.0",
|
||||
"php": "^7 || ^8"
|
||||
},
|
||||
"replace": {
|
||||
"ocramius/package-versions": "1.10.99"
|
||||
},
|
||||
"require-dev": {
|
||||
"composer/composer": "^1.9.3 || ^2.0@dev",
|
||||
"ext-zip": "^1.13",
|
||||
"phpunit/phpunit": "^6.5 || ^7"
|
||||
},
|
||||
"type": "composer-plugin",
|
||||
"extra": {
|
||||
"class": "PackageVersions\\Installer",
|
||||
"branch-alias": {
|
||||
"dev-master": "1.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"PackageVersions\\": "src/PackageVersions"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Marco Pivetta",
|
||||
"email": "ocramius@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Jordi Boggiano",
|
||||
"email": "j.boggiano@seld.be"
|
||||
}
|
||||
],
|
||||
"description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://packagist.com",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/composer",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2020-08-13T12:55:41+00:00"
|
||||
},
|
||||
{
|
||||
"name": "composer/semver",
|
||||
"version": "1.5.1",
|
||||
@ -7359,16 +7386,16 @@
|
||||
},
|
||||
{
|
||||
"name": "composer/xdebug-handler",
|
||||
"version": "1.4.2",
|
||||
"version": "1.4.3",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/composer/xdebug-handler.git",
|
||||
"reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51"
|
||||
"reference": "ebd27a9866ae8254e873866f795491f02418c5a5"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/composer/xdebug-handler/zipball/fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51",
|
||||
"reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51",
|
||||
"url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ebd27a9866ae8254e873866f795491f02418c5a5",
|
||||
"reference": "ebd27a9866ae8254e873866f795491f02418c5a5",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -7413,7 +7440,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2020-06-04T11:16:35+00:00"
|
||||
"time": "2020-08-19T10:27:58+00:00"
|
||||
},
|
||||
{
|
||||
"name": "doctrine/instantiator",
|
||||
@ -8149,16 +8176,16 @@
|
||||
},
|
||||
{
|
||||
"name": "nikic/php-parser",
|
||||
"version": "v4.8.0",
|
||||
"version": "v4.9.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/nikic/PHP-Parser.git",
|
||||
"reference": "8c58eb4cd4f3883f82611abeac2efbc3dbed787e"
|
||||
"reference": "aaee038b912e567780949787d5fe1977be11a778"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8c58eb4cd4f3883f82611abeac2efbc3dbed787e",
|
||||
"reference": "8c58eb4cd4f3883f82611abeac2efbc3dbed787e",
|
||||
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/aaee038b912e567780949787d5fe1977be11a778",
|
||||
"reference": "aaee038b912e567780949787d5fe1977be11a778",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -8166,7 +8193,7 @@
|
||||
"php": ">=7.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"ircmaxell/php-yacc": "^0.0.6",
|
||||
"ircmaxell/php-yacc": "^0.0.7",
|
||||
"phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
|
||||
},
|
||||
"bin": [
|
||||
@ -8175,7 +8202,7 @@
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "4.8-dev"
|
||||
"dev-master": "4.9-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
@ -8197,7 +8224,7 @@
|
||||
"parser",
|
||||
"php"
|
||||
],
|
||||
"time": "2020-08-09T10:23:20+00:00"
|
||||
"time": "2020-08-18T19:48:01+00:00"
|
||||
},
|
||||
{
|
||||
"name": "nunomaduro/larastan",
|
||||
@ -8292,67 +8319,6 @@
|
||||
],
|
||||
"time": "2020-07-30T19:33:12+00:00"
|
||||
},
|
||||
{
|
||||
"name": "ocramius/package-versions",
|
||||
"version": "1.9.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Ocramius/PackageVersions.git",
|
||||
"reference": "94c9d42a466c57f91390cdd49c81313264f49d85"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/94c9d42a466c57f91390cdd49c81313264f49d85",
|
||||
"reference": "94c9d42a466c57f91390cdd49c81313264f49d85",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"composer-plugin-api": "^1.1.0 || ^2.0",
|
||||
"php": "^7.4.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"composer/composer": "^1.9.3 || ^2.0@dev",
|
||||
"doctrine/coding-standard": "^7.0.2",
|
||||
"ext-zip": "^1.15.0",
|
||||
"infection/infection": "^0.15.3",
|
||||
"phpunit/phpunit": "^9.1.1",
|
||||
"vimeo/psalm": "^3.9.3"
|
||||
},
|
||||
"type": "composer-plugin",
|
||||
"extra": {
|
||||
"class": "PackageVersions\\Installer",
|
||||
"branch-alias": {
|
||||
"dev-master": "1.99.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"PackageVersions\\": "src/PackageVersions"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Marco Pivetta",
|
||||
"email": "ocramius@gmail.com"
|
||||
}
|
||||
],
|
||||
"description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/Ocramius",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/ocramius/package-versions",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2020-06-22T14:15:44+00:00"
|
||||
},
|
||||
{
|
||||
"name": "openlss/lib-array2xml",
|
||||
"version": "1.0.0",
|
||||
@ -8404,22 +8370,22 @@
|
||||
},
|
||||
{
|
||||
"name": "orchestra/testbench",
|
||||
"version": "v5.3.0",
|
||||
"version": "v5.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/orchestral/testbench.git",
|
||||
"reference": "57129325ae77e9e3fa6a577b4c3544398af1620e"
|
||||
"reference": "b6601ce910984ccaa24aaffdeda03016e056e9eb"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/orchestral/testbench/zipball/57129325ae77e9e3fa6a577b4c3544398af1620e",
|
||||
"reference": "57129325ae77e9e3fa6a577b4c3544398af1620e",
|
||||
"url": "https://api.github.com/repos/orchestral/testbench/zipball/b6601ce910984ccaa24aaffdeda03016e056e9eb",
|
||||
"reference": "b6601ce910984ccaa24aaffdeda03016e056e9eb",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"laravel/framework": "^7.10",
|
||||
"mockery/mockery": "^1.3.1",
|
||||
"orchestra/testbench-core": "^5.1.4",
|
||||
"orchestra/testbench-core": "^5.2",
|
||||
"php": ">=7.2.5",
|
||||
"phpunit/phpunit": "^8.4 || ^9.0"
|
||||
},
|
||||
@ -8456,24 +8422,24 @@
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://www.patreon.com/crynobone",
|
||||
"type": "patreon"
|
||||
"url": "https://liberapay.com/crynobone",
|
||||
"type": "liberapay"
|
||||
}
|
||||
],
|
||||
"time": "2020-05-30T01:04:58+00:00"
|
||||
"time": "2020-08-17T23:01:56+00:00"
|
||||
},
|
||||
{
|
||||
"name": "orchestra/testbench-core",
|
||||
"version": "v5.1.4",
|
||||
"version": "v5.2.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/orchestral/testbench-core.git",
|
||||
"reference": "41ebd765f5b3f1aba366cc6b2f5b3856a1715519"
|
||||
"reference": "cc82d4034fbc1005851ca9a6c9ea2f316f25624a"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/orchestral/testbench-core/zipball/41ebd765f5b3f1aba366cc6b2f5b3856a1715519",
|
||||
"reference": "41ebd765f5b3f1aba366cc6b2f5b3856a1715519",
|
||||
"url": "https://api.github.com/repos/orchestral/testbench-core/zipball/cc82d4034fbc1005851ca9a6c9ea2f316f25624a",
|
||||
"reference": "cc82d4034fbc1005851ca9a6c9ea2f316f25624a",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -8532,11 +8498,11 @@
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://www.patreon.com/crynobone",
|
||||
"type": "patreon"
|
||||
"url": "https://liberapay.com/crynobone",
|
||||
"type": "liberapay"
|
||||
}
|
||||
],
|
||||
"time": "2020-05-02T13:35:10+00:00"
|
||||
"time": "2020-08-17T22:51:07+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phar-io/manifest",
|
||||
@ -8692,16 +8658,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpdocumentor/reflection-docblock",
|
||||
"version": "5.2.0",
|
||||
"version": "5.2.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
|
||||
"reference": "3170448f5769fe19f456173d833734e0ff1b84df"
|
||||
"reference": "d870572532cd70bc3fab58f2e23ad423c8404c44"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/3170448f5769fe19f456173d833734e0ff1b84df",
|
||||
"reference": "3170448f5769fe19f456173d833734e0ff1b84df",
|
||||
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d870572532cd70bc3fab58f2e23ad423c8404c44",
|
||||
"reference": "d870572532cd70bc3fab58f2e23ad423c8404c44",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -8740,7 +8706,7 @@
|
||||
}
|
||||
],
|
||||
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
|
||||
"time": "2020-07-20T20:05:34+00:00"
|
||||
"time": "2020-08-15T11:14:08+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpdocumentor/type-resolver",
|
||||
@ -8852,16 +8818,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpstan/phpstan",
|
||||
"version": "0.12.37",
|
||||
"version": "0.12.38",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/phpstan/phpstan.git",
|
||||
"reference": "5e16d83e6eb2dd784fbdaeaece5e2bca72e4f68a"
|
||||
"reference": "ad606c5f1c641b465b739e79a3a0f1a5a57cf1b4"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/5e16d83e6eb2dd784fbdaeaece5e2bca72e4f68a",
|
||||
"reference": "5e16d83e6eb2dd784fbdaeaece5e2bca72e4f68a",
|
||||
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/ad606c5f1c641b465b739e79a3a0f1a5a57cf1b4",
|
||||
"reference": "ad606c5f1c641b465b739e79a3a0f1a5a57cf1b4",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -8904,7 +8870,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2020-08-09T14:32:41+00:00"
|
||||
"time": "2020-08-19T08:13:30+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpstan/phpstan-deprecation-rules",
|
||||
@ -9355,20 +9321,20 @@
|
||||
},
|
||||
{
|
||||
"name": "psalm/plugin-laravel",
|
||||
"version": "v1.3.1",
|
||||
"version": "v1.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/psalm/psalm-plugin-laravel.git",
|
||||
"reference": "58a444c30f6710b90ac2e1fd986097df4f35806b"
|
||||
"reference": "95761f9f385a3c758438e0daef9ba09040709a61"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/psalm/psalm-plugin-laravel/zipball/58a444c30f6710b90ac2e1fd986097df4f35806b",
|
||||
"reference": "58a444c30f6710b90ac2e1fd986097df4f35806b",
|
||||
"url": "https://api.github.com/repos/psalm/psalm-plugin-laravel/zipball/95761f9f385a3c758438e0daef9ba09040709a61",
|
||||
"reference": "95761f9f385a3c758438e0daef9ba09040709a61",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"barryvdh/laravel-ide-helper": "^2.7",
|
||||
"barryvdh/laravel-ide-helper": "^2.8.0",
|
||||
"ext-simplexml": "*",
|
||||
"illuminate/container": "5.8.* || ^6.0 || ^7.0",
|
||||
"illuminate/contracts": "5.8.* || ^6.0 || ^7.0",
|
||||
@ -9377,7 +9343,7 @@
|
||||
"illuminate/support": "5.8.* || ^6.0 || ^7.0",
|
||||
"orchestra/testbench": "^3.8 || ^4.0 || ^5.0",
|
||||
"php": "^7.2|^8",
|
||||
"vimeo/psalm": "^3.11.7"
|
||||
"vimeo/psalm": "^3.13.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"codeception/codeception": "^4.1.6",
|
||||
@ -9412,7 +9378,7 @@
|
||||
}
|
||||
],
|
||||
"description": "A Laravel plugin for Psalm",
|
||||
"time": "2020-06-22T14:35:17+00:00"
|
||||
"time": "2020-08-15T06:58:50+00:00"
|
||||
},
|
||||
{
|
||||
"name": "roave/security-advisories",
|
||||
@ -9420,12 +9386,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Roave/SecurityAdvisories.git",
|
||||
"reference": "a9e4cf90fc47b0ffbb90ee79f24be1b7c5ce82dc"
|
||||
"reference": "89bed6788d61977969b89d912b5844e8beee09f0"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/a9e4cf90fc47b0ffbb90ee79f24be1b7c5ce82dc",
|
||||
"reference": "a9e4cf90fc47b0ffbb90ee79f24be1b7c5ce82dc",
|
||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/89bed6788d61977969b89d912b5844e8beee09f0",
|
||||
"reference": "89bed6788d61977969b89d912b5844e8beee09f0",
|
||||
"shasum": ""
|
||||
},
|
||||
"conflict": {
|
||||
@ -9500,7 +9466,7 @@
|
||||
"gregwar/rst": "<1.0.3",
|
||||
"guzzlehttp/guzzle": ">=4-rc.2,<4.2.4|>=5,<5.3.1|>=6,<6.2.1",
|
||||
"illuminate/auth": ">=4,<4.0.99|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.10",
|
||||
"illuminate/cookie": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<=5.5.44|>=5.6,<5.6.30|>=6,<6.18.31|>=7,<7.22.4",
|
||||
"illuminate/cookie": ">=4,<=4.0.11|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.31|>=7,<7.22.4",
|
||||
"illuminate/database": ">=4,<4.0.99|>=4.1,<4.1.29|>=5.5,<=5.5.44|>=6,<6.18.34|>=7,<7.23.2",
|
||||
"illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15",
|
||||
"illuminate/view": ">=7,<7.1.2",
|
||||
@ -9512,7 +9478,7 @@
|
||||
"kitodo/presentation": "<3.1.2",
|
||||
"kreait/firebase-php": ">=3.2,<3.8.1",
|
||||
"la-haute-societe/tcpdf": "<6.2.22",
|
||||
"laravel/framework": ">=4,<4.0.99|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<=5.5.49|>=5.6,<5.6.30|>=6,<6.18.34|>=7,<7.23.2",
|
||||
"laravel/framework": ">=4,<4.0.99|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.34|>=7,<7.23.2",
|
||||
"laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10",
|
||||
"league/commonmark": "<0.18.3",
|
||||
"librenms/librenms": "<1.53",
|
||||
@ -9533,6 +9499,7 @@
|
||||
"onelogin/php-saml": "<2.10.4",
|
||||
"oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5",
|
||||
"openid/php-openid": "<2.3",
|
||||
"openmage/magento-lts": "<19.4.6|>=20,<20.0.2",
|
||||
"oro/crm": ">=1.7,<1.7.4",
|
||||
"oro/platform": ">=1.7,<1.7.4",
|
||||
"padraic/humbug_get_contents": "<1.1.2",
|
||||
@ -9594,7 +9561,7 @@
|
||||
"sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2",
|
||||
"sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1",
|
||||
"sylius/grid-bundle": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1",
|
||||
"sylius/resource-bundle": "<1.3.13|>=1.4,<1.4.6|>=1.5,<1.5.1|>=1.6,<1.6.3",
|
||||
"sylius/resource-bundle": "<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4",
|
||||
"sylius/sylius": "<1.3.16|>=1.4,<1.4.12|>=1.5,<1.5.9|>=1.6,<1.6.5",
|
||||
"symbiote/silverstripe-multivaluefield": ">=3,<3.0.99",
|
||||
"symbiote/silverstripe-versionedfiles": "<=2.0.3",
|
||||
@ -9707,7 +9674,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2020-08-08T10:05:44+00:00"
|
||||
"time": "2020-08-19T19:01:52+00:00"
|
||||
},
|
||||
{
|
||||
"name": "sebastian/code-unit",
|
||||
@ -10894,21 +10861,22 @@
|
||||
},
|
||||
{
|
||||
"name": "vimeo/psalm",
|
||||
"version": "3.12.2",
|
||||
"version": "3.14.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/vimeo/psalm.git",
|
||||
"reference": "7c7ebd068f8acaba211d4a2c707c4ba90874fa26"
|
||||
"reference": "9822043ca46d6682b76097bfa97d7c450eef9e90"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/vimeo/psalm/zipball/7c7ebd068f8acaba211d4a2c707c4ba90874fa26",
|
||||
"reference": "7c7ebd068f8acaba211d4a2c707c4ba90874fa26",
|
||||
"url": "https://api.github.com/repos/vimeo/psalm/zipball/9822043ca46d6682b76097bfa97d7c450eef9e90",
|
||||
"reference": "9822043ca46d6682b76097bfa97d7c450eef9e90",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"amphp/amp": "^2.1",
|
||||
"amphp/byte-stream": "^1.5",
|
||||
"composer/package-versions-deprecated": "^1.8.0",
|
||||
"composer/semver": "^1.4 || ^2.0 || ^3.0",
|
||||
"composer/xdebug-handler": "^1.1",
|
||||
"ext-dom": "*",
|
||||
@ -10918,9 +10886,8 @@
|
||||
"ext-tokenizer": "*",
|
||||
"felixfbecker/advanced-json-rpc": "^3.0.3",
|
||||
"felixfbecker/language-server-protocol": "^1.4",
|
||||
"netresearch/jsonmapper": "^1.0 || ^2.0",
|
||||
"nikic/php-parser": "^4.3",
|
||||
"ocramius/package-versions": "^1.2",
|
||||
"netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0",
|
||||
"nikic/php-parser": "4.3.* || 4.4.* || 4.5.* || 4.6.* || ^4.8",
|
||||
"openlss/lib-array2xml": "^1.0",
|
||||
"php": "^7.1.3|^8",
|
||||
"sebastian/diff": "^3.0 || ^4.0",
|
||||
@ -10936,7 +10903,7 @@
|
||||
"bamarni/composer-bin-plugin": "^1.2",
|
||||
"brianium/paratest": "^4.0.0",
|
||||
"ext-curl": "*",
|
||||
"php-coveralls/php-coveralls": "^2.2",
|
||||
"phpdocumentor/reflection-docblock": "^4.3.4 || ^5",
|
||||
"phpmyadmin/sql-parser": "5.1.0",
|
||||
"phpspec/prophecy": ">=1.9.0",
|
||||
"phpunit/phpunit": "^7.5.16 || ^8.5 || ^9.0",
|
||||
@ -10987,7 +10954,7 @@
|
||||
"inspection",
|
||||
"php"
|
||||
],
|
||||
"time": "2020-07-03T16:59:07+00:00"
|
||||
"time": "2020-08-17T19:48:48+00:00"
|
||||
},
|
||||
{
|
||||
"name": "webmozart/assert",
|
||||
|
@ -143,7 +143,7 @@ return [
|
||||
],
|
||||
|
||||
//'encryption' => null === env('USE_ENCRYPTION') || true === env('USE_ENCRYPTION'),
|
||||
'version' => '5.4.0-alpha.1',
|
||||
'version' => '5.4.0-alpha.2',
|
||||
'api_version' => '1.4.0',
|
||||
'db_version' => 15,
|
||||
'maxUploadSize' => 1073741824, // 1 GB
|
||||
@ -327,6 +327,7 @@ return [
|
||||
*/
|
||||
'languages' => [
|
||||
// currently enabled languages
|
||||
'bg_BG' => ['name_locale' => 'Български', 'name_english' => 'Bulgarian'],
|
||||
'cs_CZ' => ['name_locale' => 'Czech', 'name_english' => 'Czech'],
|
||||
'de_DE' => ['name_locale' => 'Deutsch', 'name_english' => 'German'],
|
||||
'el_GR' => ['name_locale' => 'Ελληνικά', 'name_english' => 'Greek'],
|
||||
@ -350,7 +351,6 @@ return [
|
||||
'zh_CN' => ['name_locale' => 'Chinese Simplified', 'name_english' => 'Chinese Simplified'],
|
||||
|
||||
// currently disabled languages:
|
||||
// 'bg_BG' => ['name_locale' => 'Български', 'name_english' => 'Bulgarian'],
|
||||
// 'ca_ES' => ['name_locale' => 'Catalan', 'name_english' => 'Catalan'],
|
||||
// 'da_DK' => ['name_locale' => 'Danish', 'name_english' => 'Danish'],
|
||||
// 'et_EE' => ['name_locale' => 'Estonian', 'name_english' => 'Estonian'],
|
||||
|
2
public/v1/js/app.js
vendored
2
public/v1/js/app.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/app_vue.js
vendored
2
public/v1/js/app_vue.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/create_transaction.js
vendored
2
public/v1/js/create_transaction.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/edit_transaction.js
vendored
2
public/v1/js/edit_transaction.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/profile.js
vendored
2
public/v1/js/profile.js
vendored
File diff suppressed because one or more lines are too long
1
resources/assets/js/i18n.js
vendored
1
resources/assets/js/i18n.js
vendored
@ -23,6 +23,7 @@ module.exports = new vuei18n({
|
||||
locale: document.documentElement.lang, // set locale
|
||||
fallbackLocale: 'en',
|
||||
messages: {
|
||||
'bg': require('./locales/bg.json'),
|
||||
'cs': require('./locales/cs.json'),
|
||||
'de': require('./locales/de.json'),
|
||||
'en': require('./locales/en.json'),
|
||||
|
103
resources/assets/js/locales/bg.json
Normal file
103
resources/assets/js/locales/bg.json
Normal file
@ -0,0 +1,103 @@
|
||||
{
|
||||
"firefly": {
|
||||
"welcome_back": "\u041a\u0430\u043a\u0432\u043e \u0441\u0435 \u0441\u043b\u0443\u0447\u0432\u0430?",
|
||||
"flash_error": "\u0413\u0440\u0435\u0448\u043a\u0430!",
|
||||
"flash_success": "\u0423\u0441\u043f\u0435\u0445!",
|
||||
"close": "\u0417\u0430\u0442\u0432\u043e\u0440\u0438",
|
||||
"split_transaction_title": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043d\u0430 \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f",
|
||||
"errors_submission": "\u0418\u043c\u0430\u0448\u0435 \u043d\u0435\u0449\u043e \u043d\u0435\u0440\u0435\u0434\u043d\u043e \u0441 \u0432\u0430\u0448\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0438. \u041c\u043e\u043b\u044f, \u043f\u0440\u043e\u0432\u0435\u0440\u0435\u0442\u0435 \u0433\u0440\u0435\u0448\u043a\u0438\u0442\u0435 \u043f\u043e-\u0434\u043e\u043b\u0443.",
|
||||
"split": "\u0420\u0430\u0437\u0434\u0435\u043b\u0438",
|
||||
"single_split": "\u0420\u0430\u0437\u0434\u0435\u043b",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f #{ID}(\"{title}\")<\/a> \u0431\u0435\u0448\u0435 \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u0430.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f #{ID}<\/a> \u0431\u0435\u0448\u0435 \u043e\u0431\u043d\u043e\u0432\u0435\u043d\u0430.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">\u0422\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f #{ID}<\/a> \u0431\u0435\u0448\u0435 \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u0430.",
|
||||
"transaction_journal_information": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f",
|
||||
"no_budget_pointer": "\u0418\u0437\u0433\u043b\u0435\u0436\u0434\u0430 \u0432\u0441\u0435 \u043e\u0449\u0435 \u043d\u044f\u043c\u0430\u0442\u0435 \u0431\u044e\u0434\u0436\u0435\u0442\u0438. \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u043d\u044f\u043a\u043e\u0438 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430 <a href=\"\/budgets\"> \u0411\u044e\u0434\u0436\u0435\u0442\u0438 <\/a>. \u0411\u044e\u0434\u0436\u0435\u0442\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0432\u0438 \u043f\u043e\u043c\u043e\u0433\u043d\u0430\u0442 \u0434\u0430 \u0441\u043b\u0435\u0434\u0438\u0442\u0435 \u0440\u0430\u0437\u0445\u043e\u0434\u0438\u0442\u0435 \u0441\u0438.",
|
||||
"no_bill_pointer": "\u0418\u0437\u0433\u043b\u0435\u0436\u0434\u0430 \u0432\u0441\u0435 \u043e\u0449\u0435 \u043d\u044f\u043c\u0430\u0442\u0435 \u0441\u043c\u0435\u0442\u043a\u0438. \u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u043d\u044f\u043a\u043e\u0438 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430 <a href=\"\/bills\"> \u0421\u043c\u0435\u0442\u043a\u0438 <\/a>. \u0421\u043c\u0435\u0442\u043a\u0438\u0442\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0432\u0438 \u043f\u043e\u043c\u043e\u0433\u043d\u0430\u0442 \u0434\u0430 \u0441\u043b\u0435\u0434\u0438\u0442\u0435 \u0440\u0430\u0437\u0445\u043e\u0434\u0438\u0442\u0435 \u0441\u0438.",
|
||||
"source_account": "\u0420\u0430\u0437\u0445\u043e\u0434\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430",
|
||||
"hidden_fields_preferences": "\u041c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0442\u0435 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u043f\u0446\u0438\u0438 \u0437\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438 \u0432\u044a\u0432 \u0432\u0430\u0448\u0438\u0442\u0435 <a href=\"\/preferences\">\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438<\/a>.",
|
||||
"destination_account": "\u041f\u0440\u0438\u0445\u043e\u0434\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430",
|
||||
"add_another_split": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0434\u0440\u0443\u0433 \u0440\u0430\u0437\u0434\u0435\u043b",
|
||||
"submission": "\u0418\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435",
|
||||
"create_another": "\u0421\u043b\u0435\u0434 \u0441\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435\u0442\u043e \u0441\u0435 \u0432\u044a\u0440\u043d\u0435\u0442\u0435 \u0442\u0443\u043a, \u0437\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u043d\u043e\u0432\u0430.",
|
||||
"reset_after": "\u0418\u0437\u0447\u0438\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u0444\u043e\u0440\u043c\u0443\u043b\u044f\u0440\u0430 \u0441\u043b\u0435\u0434 \u0438\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435",
|
||||
"submit": "\u041f\u043e\u0442\u0432\u044a\u0440\u0434\u0438",
|
||||
"amount": "\u0421\u0443\u043c\u0430",
|
||||
"date": "\u0414\u0430\u0442\u0430",
|
||||
"tags": "\u0415\u0442\u0438\u043a\u0435\u0442\u0438",
|
||||
"no_budget": "(\u0431\u0435\u0437 \u0431\u044e\u0434\u0436\u0435\u0442)",
|
||||
"no_bill": "(\u043d\u044f\u043c\u0430 \u0441\u043c\u0435\u0442\u043a\u0430)",
|
||||
"category": "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
|
||||
"attachments": "\u041f\u0440\u0438\u043a\u0430\u0447\u0435\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435",
|
||||
"notes": "\u0411\u0435\u043b\u0435\u0436\u043a\u0438",
|
||||
"external_uri": "\u0412\u044a\u043d\u0448\u043d\u043e URI",
|
||||
"update_transaction": "\u041e\u0431\u043d\u043e\u0432\u0438 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430",
|
||||
"after_update_create_another": "\u0421\u043b\u0435\u0434 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435\u0442\u043e \u0441\u0435 \u0432\u044a\u0440\u043d\u0435\u0442\u0435 \u0442\u0443\u043a, \u0437\u0430 \u0434\u0430 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435 \u0441 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u044f\u0442\u0430.",
|
||||
"store_as_new": "\u0421\u044a\u0445\u0440\u0430\u043d\u0435\u0442\u0435 \u043a\u0430\u0442\u043e \u043d\u043e\u0432\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f, \u0432\u043c\u0435\u0441\u0442\u043e \u0434\u0430 \u044f \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u0442\u0435.",
|
||||
"split_title_help": "\u0410\u043a\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f, \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0438\u043c\u0430 \u0433\u043b\u043e\u0431\u0430\u043b\u043d\u043e \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0437\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u0440\u0430\u0437\u0434\u0435\u043b\u0438 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430.",
|
||||
"none_in_select_list": "(\u043d\u0438\u0449\u043e)",
|
||||
"no_piggy_bank": "(\u0431\u0435\u0437 \u043a\u0430\u0441\u0438\u0447\u043a\u0430)",
|
||||
"description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
||||
"split_transaction_title_help": "\u0410\u043a\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f, \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0438\u043c\u0430 \u0433\u043b\u043e\u0431\u0430\u043b\u043d\u043e \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0437\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u0440\u0430\u0437\u0434\u0435\u043b\u0438 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430.",
|
||||
"destination_account_reconciliation": "\u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442\u0435 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \u0437\u0430 \u0441\u044a\u0433\u043b\u0430\u0441\u0443\u0432\u0430\u043d\u0435.",
|
||||
"source_account_reconciliation": "\u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442\u0435 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \u0437\u0430 \u0441\u044a\u0433\u043b\u0430\u0441\u0443\u0432\u0430\u043d\u0435.",
|
||||
"budget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
||||
"bill": "\u0421\u043c\u0435\u0442\u043a\u0430",
|
||||
"you_create_withdrawal": "\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u0442\u0435 \u0442\u0435\u0433\u043b\u0435\u043d\u0435.",
|
||||
"you_create_transfer": "\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u0442\u0435 \u043f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435.",
|
||||
"you_create_deposit": "\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u0442\u0435 \u0434\u0435\u043f\u043e\u0437\u0438\u0442.",
|
||||
"edit": "\u041f\u0440\u043e\u043c\u0435\u043d\u0438",
|
||||
"delete": "\u0418\u0437\u0442\u0440\u0438\u0439",
|
||||
"name": "\u0418\u043c\u0435",
|
||||
"profile_whoops": "\u041e\u043f\u0430\u0430\u0430\u0430!",
|
||||
"profile_something_wrong": "\u041d\u0435\u0449\u043e \u0441\u0435 \u043e\u0431\u044a\u0440\u043a\u0430!",
|
||||
"profile_try_again": "\u041d\u0435\u0449\u043e \u0441\u0435 \u043e\u0431\u044a\u0440\u043a\u0430. \u041c\u043e\u043b\u044f, \u043e\u043f\u0438\u0442\u0430\u0439\u0442\u0435 \u043e\u0442\u043d\u043e\u0432\u043e.",
|
||||
"profile_oauth_clients": "OAuth \u043a\u043b\u0438\u0435\u043d\u0442\u0438",
|
||||
"profile_oauth_no_clients": "\u041d\u0435 \u0441\u0442\u0435 \u0441\u044a\u0437\u0434\u0430\u043b\u0438 \u043a\u043b\u0438\u0435\u043d\u0442\u0438 \u043d\u0430 OAuth.",
|
||||
"profile_oauth_clients_header": "\u041a\u043b\u0438\u0435\u043d\u0442\u0438",
|
||||
"profile_oauth_client_id": "\u0418\u0414 (ID) \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442",
|
||||
"profile_oauth_client_name": "\u0418\u043c\u0435",
|
||||
"profile_oauth_client_secret": "\u0422\u0430\u0439\u043d\u0430",
|
||||
"profile_oauth_create_new_client": "\u0421\u044a\u0437\u0434\u0430\u0439 \u043d\u043e\u0432 \u043a\u043b\u0438\u0435\u043d\u0442",
|
||||
"profile_oauth_create_client": "\u0421\u044a\u0437\u0434\u0430\u0439 \u043a\u043b\u0438\u0435\u043d\u0442",
|
||||
"profile_oauth_edit_client": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u043a\u043b\u0438\u0435\u043d\u0442",
|
||||
"profile_oauth_name_help": "\u041d\u0435\u0449\u043e, \u043a\u043e\u0435\u0442\u043e \u0432\u0430\u0448\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u0449\u0435 \u0440\u0430\u0437\u043f\u043e\u0437\u043d\u0430\u044f\u0442 \u0438 \u0449\u0435 \u0441\u0435 \u0434\u043e\u0432\u0435\u0440\u044f\u0442.",
|
||||
"profile_oauth_redirect_url": "\u041b\u0438\u043d\u043a \u043d\u0430 \u043f\u0440\u0435\u043f\u0440\u0430\u0442\u043a\u0430\u0442\u0430",
|
||||
"profile_oauth_redirect_url_help": "URL \u0430\u0434\u0440\u0435\u0441 \u0437\u0430 \u043e\u0431\u0440\u0430\u0442\u043d\u043e \u0438\u0437\u0432\u0438\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u044f\u0442\u0430 \u043d\u0430 \u0432\u0430\u0448\u0435\u0442\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435.",
|
||||
"profile_authorized_apps": "\u0423\u0434\u043e\u0441\u0442\u043e\u0432\u0435\u0440\u0435\u043d\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
||||
"profile_authorized_clients": "\u0423\u0434\u043e\u0441\u0442\u043e\u0432\u0435\u0440\u0435\u043d\u0438 \u043a\u043b\u0438\u0435\u043d\u0442\u0438",
|
||||
"profile_scopes": "\u0421\u0444\u0435\u0440\u0438",
|
||||
"profile_revoke": "\u0410\u043d\u0443\u043b\u0438\u0440\u0430\u0439",
|
||||
"profile_personal_access_tokens": "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u043d\u0438 \u043c\u0430\u0440\u043a\u0435\u0440\u0438 \u0437\u0430 \u0434\u043e\u0441\u0442\u044a\u043f",
|
||||
"profile_personal_access_token": "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0435\u043d \u043c\u0430\u0440\u043a\u0435\u0440 \u0437\u0430 \u0434\u043e\u0441\u0442\u044a\u043f",
|
||||
"profile_personal_access_token_explanation": "\u0422\u043e\u0432\u0430 \u0435 \u043d\u043e\u0432\u0438\u044f \u0432\u0438 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0435\u043d \u043c\u0430\u0440\u043a\u0435\u0440 \u0437\u0430 \u0434\u043e\u0441\u0442\u044a\u043f. \u0422\u043e\u0432\u0430 \u0435 \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u0438\u044f\u0442 \u043f\u044a\u0442, \u043a\u043e\u0433\u0430\u0442\u043e \u0449\u0435 \u0431\u044a\u0434\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043d, \u0442\u0430\u043a\u0430 \u0447\u0435 \u043d\u0435 \u0433\u043e \u0433\u0443\u0431\u0435\u0442\u0435! \u0412\u0435\u0447\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u0442\u043e\u0437\u0438 \u043c\u0430\u0440\u043a\u0435\u0440, \u0437\u0430 \u0434\u0430 \u043e\u0442\u043f\u0440\u0430\u0432\u044f\u0442\u0435 \u0437\u0430\u044f\u0432\u043a\u0438 \u043a\u044a\u043c API.",
|
||||
"profile_no_personal_access_token": "\u041d\u0435 \u0441\u0442\u0435 \u0441\u044a\u0437\u0434\u0430\u043b\u0438 \u043d\u0438\u043a\u0430\u043a\u0432\u0438 \u043b\u0438\u0447\u043d\u0438 \u043c\u0430\u0440\u043a\u0435\u0440\u0438 \u0437\u0430 \u0434\u043e\u0441\u0442\u044a\u043f.",
|
||||
"profile_create_new_token": "\u0421\u044a\u0437\u0434\u0430\u0439 \u043d\u043e\u0432 \u043c\u0430\u0440\u043a\u0435\u0440",
|
||||
"profile_create_token": "\u0421\u044a\u0437\u0434\u0430\u0439 \u043c\u0430\u0440\u043a\u0435\u0440",
|
||||
"profile_create": "\u0421\u044a\u0437\u0434\u0430\u0439",
|
||||
"profile_save_changes": "\u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435",
|
||||
"default_group_title_name": "(\u0431\u0435\u0437 \u0433\u0440\u0443\u043f\u0430)",
|
||||
"piggy_bank": "\u041a\u0430\u0441\u0438\u0447\u043a\u0430",
|
||||
"profile_oauth_client_secret_title": "\u0422\u0430\u0439\u043d\u0430 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430",
|
||||
"profile_oauth_client_secret_expl": "\u0422\u043e\u0432\u0430 \u0435 \u043d\u043e\u0432\u0430\u0442\u0430 \u0432\u0438 \"\u0442\u0430\u0439\u043d\u0430 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430\". \u0422\u043e\u0432\u0430 \u0435 \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u0438\u044f\u0442 \u043f\u044a\u0442, \u043a\u043e\u0433\u0430\u0442\u043e \u0449\u0435 \u0431\u044a\u0434\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u0430, \u0442\u0430\u043a\u0430 \u0447\u0435 \u043d\u0435 \u0433\u043e \u0433\u0443\u0431\u0435\u0442\u0435! \u0412\u0435\u0447\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u0442\u043e\u0437\u0438 \u043c\u0430\u0440\u043a\u0435\u0440, \u0437\u0430 \u0434\u0430 \u043e\u0442\u043f\u0440\u0430\u0432\u044f\u0442\u0435 \u0437\u0430\u044f\u0432\u043a\u0438 \u043a\u044a\u043c API.",
|
||||
"profile_oauth_confidential": "\u041f\u043e\u0432\u0435\u0440\u0438\u0442\u0435\u043b\u043d\u043e",
|
||||
"profile_oauth_confidential_help": "\u0418\u0437\u0438\u0441\u043a\u0432\u0430\u0439\u0442\u0435 \u043a\u043b\u0438\u0435\u043d\u0442\u0430 \u0434\u0430 \u0441\u0435 \u0443\u0434\u043e\u0441\u0442\u043e\u0432\u0435\u0440\u044f\u0432\u0430 \u0441 \u0442\u0430\u0439\u043d\u0430. \u041f\u043e\u0432\u0435\u0440\u0438\u0442\u0435\u043b\u043d\u0438\u0442\u0435 \u043a\u043b\u0438\u0435\u043d\u0442\u0438 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u043f\u0440\u0438\u0442\u0435\u0436\u0430\u0432\u0430\u0442 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u0438 \u0434\u0430\u043d\u043d\u0438 \u043f\u043e \u0437\u0430\u0449\u0438\u0442\u0435\u043d \u043d\u0430\u0447\u0438\u043d, \u0431\u0435\u0437 \u0434\u0430 \u0433\u0438 \u0438\u0437\u043b\u0430\u0433\u0430\u0442 \u043d\u0430 \u043d\u0435\u043e\u0442\u043e\u0440\u0438\u0437\u0438\u0440\u0430\u043d\u0438 \u0441\u0442\u0440\u0430\u043d\u0438. \u041f\u0443\u0431\u043b\u0438\u0447\u043d\u0438\u0442\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043a\u0430\u0442\u043e \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u0434\u0435\u0441\u043a\u0442\u043e\u043f\u0430 \u0438\u043b\u0438 JavaScript SPA \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043d\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u043f\u0430\u0437\u044f\u0442 \u0442\u0430\u0439\u043d\u0438 \u043f\u043e \u0441\u0438\u0433\u0443\u0440\u0435\u043d \u043d\u0430\u0447\u0438\u043d.",
|
||||
"multi_account_warning_unknown": "\u0412 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442 \u043e\u0442 \u0432\u0438\u0434\u0430 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430 \u043a\u043e\u044f\u0442\u043e \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u0442\u0435, \u0438\u0437\u0442\u043e\u0447\u043d\u0438\u043a\u044a\u0442 \u0438 \/ \u0438\u043b\u0438 \u0446\u0435\u043b\u0435\u0432\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u043d\u0430 \u0441\u043b\u0435\u0434\u0432\u0430\u0449\u0438\u0442\u0435 \u0440\u0430\u0437\u0434\u0435\u043b\u044f\u043d\u0438\u044f \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0440\u043e\u043c\u0435\u043d\u0435\u043d\u0430 \u043e\u0442 \u0442\u043e\u0432\u0430 \u043a\u043e\u0435\u0442\u043e \u0435 \u0434\u0435\u0444\u0438\u043d\u0438\u0440\u0430\u043d\u043e \u0432 \u043f\u044a\u0440\u0432\u043e\u0442\u043e \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0442\u0430.",
|
||||
"multi_account_warning_withdrawal": "\u0418\u043c\u0430\u0439\u0442\u0435 \u043f\u0440\u0435\u0434\u0432\u0438\u0434, \u0447\u0435 \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u043d\u0430 \u0441\u043b\u0435\u0434\u0432\u0430\u0449\u0438\u0442\u0435 \u0440\u0430\u0437\u0434\u0435\u043b\u044f\u043d\u0438\u044f \u0449\u0435 \u0431\u044a\u0434\u0435 \u0442\u0430\u0437\u0438 \u043a\u043e\u044f\u0442\u043e \u0435 \u0434\u0435\u0444\u0438\u043d\u0438\u0440\u0430\u043d\u0430 \u0432 \u043f\u044a\u0440\u0432\u0438\u044f \u0440\u0430\u0437\u0434\u0435\u043b \u043d\u0430 \u0442\u0435\u0433\u043b\u0435\u043d\u0435\u0442\u043e.",
|
||||
"multi_account_warning_deposit": "\u0418\u043c\u0430\u0439\u0442\u0435 \u043f\u0440\u0435\u0434\u0432\u0438\u0434, \u0447\u0435 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u043d\u0430 \u0441\u043b\u0435\u0434\u0432\u0430\u0449\u0438\u0442\u0435 \u0440\u0430\u0437\u0434\u0435\u043b\u044f\u043d\u0438\u044f \u0449\u0435 \u0431\u044a\u0434\u0435 \u0442\u0430\u0437\u0438 \u043a\u043e\u044f\u0442\u043e \u0435 \u0434\u0435\u0444\u0438\u043d\u0438\u0440\u0430\u043d\u0430 \u0432 \u043f\u044a\u0440\u0432\u0438\u044f \u0440\u0430\u0437\u0434\u0435\u043b \u043d\u0430 \u0434\u0435\u043f\u043e\u0437\u0438\u0442\u0430.",
|
||||
"multi_account_warning_transfer": "\u0418\u043c\u0430\u0439\u0442\u0435 \u043f\u0440\u0435\u0434\u0432\u0438\u0434, \u0447\u0435 \u043f\u0440\u0438\u0445\u043e\u0434\u043d\u0430\u0442\u0430 + \u0440\u0430\u0437\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430 \u043d\u0430 \u0441\u043b\u0435\u0434\u0432\u0430\u0449\u0438\u0442\u0435 \u0440\u0430\u0437\u0434\u0435\u043b\u044f\u043d\u0438\u044f \u0449\u0435 \u0431\u044a\u0434\u0435 \u0442\u0430\u0437\u0438 \u043a\u043e\u044f\u0442\u043e \u0435 \u0434\u0435\u0444\u0438\u043d\u0438\u0440\u0430\u043d\u0430 \u0432 \u043f\u044a\u0440\u0432\u0438\u044f \u0440\u0430\u0437\u0434\u0435\u043b \u043d\u0430 \u043f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435\u0442\u043e."
|
||||
},
|
||||
"form": {
|
||||
"interest_date": "\u041f\u0430\u0434\u0435\u0436 \u043d\u0430 \u043b\u0438\u0445\u0432\u0430",
|
||||
"book_date": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043e\u0441\u0447\u0435\u0442\u043e\u0432\u043e\u0434\u044f\u0432\u0430\u043d\u0435",
|
||||
"process_date": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430",
|
||||
"due_date": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043f\u0430\u0434\u0435\u0436",
|
||||
"foreign_amount": "\u0421\u0443\u043c\u0430 \u0432\u044a\u0432 \u0432\u0430\u043b\u0443\u0442\u0430",
|
||||
"payment_date": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435",
|
||||
"invoice_date": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430",
|
||||
"internal_reference": "\u0412\u044a\u0442\u0440\u0435\u0448\u043d\u0430 \u0440\u0435\u0444\u0435\u0440\u0435\u043d\u0446\u0438\u044f"
|
||||
},
|
||||
"config": {
|
||||
"html_language": "bg"
|
||||
}
|
||||
}
|
@ -82,10 +82,10 @@
|
||||
"profile_oauth_client_secret_expl": "Aqu\u00ed est\u00e1 su nuevo secreto de cliente. Esta es la \u00fanica vez que se mostrar\u00e1 as\u00ed que no lo pierda! Ahora puede usar este secreto para hacer solicitudes de API.",
|
||||
"profile_oauth_confidential": "Confidencial",
|
||||
"profile_oauth_confidential_help": "Requerir que el cliente se autentifique con un secreto. Los clientes confidenciales pueden mantener las credenciales de forma segura sin exponerlas a partes no autorizadas. Las aplicaciones p\u00fablicas, como aplicaciones de escritorio nativo o SPA de JavaScript, no pueden guardar secretos de forma segura.",
|
||||
"multi_account_warning_unknown": "Depending on the type of transaction you create, the source and\/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.",
|
||||
"multi_account_warning_withdrawal": "Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.",
|
||||
"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_unknown": "Dependiendo del tipo de transacci\u00f3n que cree, la cuenta de origen y\/o destino de divisiones posteriores puede ser anulada por lo que se define en la primera divisi\u00f3n de la transacci\u00f3n.",
|
||||
"multi_account_warning_withdrawal": "Tenga en cuenta que la cuenta de origen de las divisiones posteriores ser\u00e1 anulada por lo que se defina en la primera divisi\u00f3n del retiro.",
|
||||
"multi_account_warning_deposit": "Tenga en cuenta que la cuenta de destino de las divisiones posteriores ser\u00e1 anulada por lo que se defina en la primera divisi\u00f3n del retiro.",
|
||||
"multi_account_warning_transfer": "Tenga en cuenta que la cuenta de origen + destino de divisiones posteriores ser\u00e1 anulada por lo que se defina en la primera divisi\u00f3n de la transferencia."
|
||||
},
|
||||
"form": {
|
||||
"interest_date": "Fecha de inter\u00e9s",
|
||||
|
1
resources/lang/.gitignore
vendored
1
resources/lang/.gitignore
vendored
@ -7,6 +7,5 @@ sl_SI
|
||||
uk_UA
|
||||
sr_CS
|
||||
et_EE
|
||||
bg_BG
|
||||
tlh_AA
|
||||
lt_LT
|
||||
|
26
resources/lang/bg_BG/api.php
Normal file
26
resources/lang/bg_BG/api.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/**
|
||||
* api.php
|
||||
* Copyright (c) 2019 james@firefly-iii.org
|
||||
*
|
||||
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
|
||||
];
|
28
resources/lang/bg_BG/auth.php
Normal file
28
resources/lang/bg_BG/auth.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* auth.php
|
||||
* Copyright (c) 2019 james@firefly-iii.org
|
||||
*
|
||||
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'failed' => 'Въведените удостоверителни данни не съвпадат с нашите записи.',
|
||||
'throttle' => 'Твърде много опити за влизане. Опитайте се пак след :seconds секунди.',
|
||||
];
|
65
resources/lang/bg_BG/breadcrumbs.php
Normal file
65
resources/lang/bg_BG/breadcrumbs.php
Normal file
@ -0,0 +1,65 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* breadcrumbs.php
|
||||
* Copyright (c) 2019 james@firefly-iii.org
|
||||
*
|
||||
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'home' => 'Начало',
|
||||
'edit_currency' => 'Редактирай валута ":name"',
|
||||
'delete_currency' => 'Изтрий валута ":name"',
|
||||
'newPiggyBank' => 'Създай нова касичка',
|
||||
'edit_piggyBank' => 'Редактирай касичка ":name"',
|
||||
'preferences' => 'Настройки',
|
||||
'profile' => 'Профил',
|
||||
'changePassword' => 'Промени паролата си',
|
||||
'change_email' => 'Смяна на имейл адрес',
|
||||
'bills' => 'Сметки',
|
||||
'newBill' => 'Нова сметка',
|
||||
'edit_bill' => 'Редактирай сметка ":name"',
|
||||
'delete_bill' => 'Изтрий сметка ":name"',
|
||||
'reports' => 'Отчети',
|
||||
'search_result' => 'Резултати от търсенето за ":query"',
|
||||
'withdrawal_list' => 'Разходи',
|
||||
'Withdrawal_list' => 'Разходи',
|
||||
'deposit_list' => 'Приходи, доходи и депозити',
|
||||
'transfer_list' => 'Прехвърляне',
|
||||
'transfers_list' => 'Прехвърляне',
|
||||
'reconciliation_list' => 'Съгласувания',
|
||||
'create_withdrawal' => 'Създай нов разход',
|
||||
'create_deposit' => 'Създай нов приход',
|
||||
'create_transfer' => 'Създай ново прехвърляне',
|
||||
'create_new_transaction' => 'Създай нова трансакция',
|
||||
'edit_journal' => 'Редактирайте трансакция ":description"',
|
||||
'edit_reconciliation' => 'Редактирайте ":description"',
|
||||
'delete_journal' => 'Изтрийте трансакция ":description"',
|
||||
'delete_group' => 'Изтрийте трансакция ":description"',
|
||||
'tags' => 'Етикети',
|
||||
'createTag' => 'Създай нов етикет',
|
||||
'edit_tag' => 'Редактирай етикет ":tag"',
|
||||
'delete_tag' => 'Изтрии етикет ":tag"',
|
||||
'delete_journal_link' => 'Изтрий връзката между трансакциите',
|
||||
'telemetry_index' => 'Телеметрия',
|
||||
'telemetry_view' => 'Преглед на телеметрията',
|
||||
'edit_object_group' => 'Редактирай група ":title"',
|
||||
'delete_object_group' => 'Изтрии група ":title"',
|
||||
'logout_others' => 'Изход от другите сесии'
|
||||
];
|
29
resources/lang/bg_BG/components.php
Normal file
29
resources/lang/bg_BG/components.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* components.php
|
||||
* Copyright (c) 2019 james@firefly-iii.org
|
||||
*
|
||||
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
// profile
|
||||
|
||||
// bills:
|
||||
];
|
52
resources/lang/bg_BG/config.php
Normal file
52
resources/lang/bg_BG/config.php
Normal file
@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* config.php
|
||||
* Copyright (c) 2019 james@firefly-iii.org
|
||||
*
|
||||
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'html_language' => 'bg',
|
||||
'locale' => 'bg, Bulgarian, bg_BG.utf8, bg_BG.UTF-8',
|
||||
'month' => '%B %Y',
|
||||
'month_and_day' => '%e %B %Y',
|
||||
'month_and_day_moment_js' => 'Do MMMM YYYY',
|
||||
'month_and_date_day' => '%A %B %e, %Y',
|
||||
'month_and_day_no_year' => '%B %e',
|
||||
'date_time' => '%e %B, %Y, @ %T',
|
||||
'specific_day' => '%e %B %Y',
|
||||
'week_in_year' => 'Week %V, %G',
|
||||
'year' => '%Y',
|
||||
'half_year' => '%B %Y',
|
||||
'month_js' => 'MMMM YYYY',
|
||||
'month_and_day_js' => 'Do MMMM, YYYY',
|
||||
'date_time_js' => 'Do MMMM, YYYY, @ HH:mm:ss',
|
||||
'specific_day_js' => 'D MMMM YYYY',
|
||||
'week_in_year_js' => '[Week] w, YYYY',
|
||||
'year_js' => 'YYYY',
|
||||
'half_year_js' => 'Q YYYY',
|
||||
'dow_1' => 'Понеделник',
|
||||
'dow_2' => 'Вторник',
|
||||
'dow_3' => 'Сряда',
|
||||
'dow_4' => 'Четвъртък',
|
||||
'dow_5' => 'Петък',
|
||||
'dow_6' => 'Събота',
|
||||
'dow_7' => 'Неделя',
|
||||
];
|
37
resources/lang/bg_BG/demo.php
Normal file
37
resources/lang/bg_BG/demo.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* demo.php
|
||||
* Copyright (c) 2019 james@firefly-iii.org
|
||||
*
|
||||
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'no_demo_text' => 'За съжаление няма допълнително обяснение за <abbr title=":route"> тази демо страница </abbr>.',
|
||||
'see_help_icon' => 'Въпреки това, <i class="fa fa-question-circle"> </i> -иконата в горния десен ъгъл може да ви каже повече.',
|
||||
'index' => 'Добре дошли в <strong> Firefly III </strong>! На тази страница получавате бърз преглед на вашите финанси. За повече информация вижте Сметки → <a href=":asset"> Сметки за активи </a> и разбира се <a href=":budgets"> Бюджети </a> и <a href=":reports"> Отчети </a> страници. Или просто разгледайте и вижте къде ще се озовавате.',
|
||||
'accounts-index' => 'Сметките за активи са вашите лични банкови сметки. Сметките за разходи са сметките, по които харчите пари, като магазини и приятели. Приходните сметки са сметки, от които получавате пари, като например вашата работа, правителството или други източници на доходи. Задълженията са вашите дългове и заеми като стари дългове по кредитни карти или студентски заеми. На тази страница можете да ги редактирате или премахнете.',
|
||||
'budgets-index' => 'Тази страница ви показва преглед на вашите бюджети. Горната лента показва сумата, която е на разположение, за да бъде бюджетирана. Това може да бъде персонализирано за всеки период, като щракнете върху сумата отдясно. Реално изразходваната сума е показана в лентата по-долу. По-долу са разходите по бюджет и това, което сте предвидили за тях.',
|
||||
'reports-index-start' => 'Firefly III поддържа редица видове отчети. Прочетете за тях, като щракнете върху <i class="fa fa-question-circle"> </i> -икона в горния десен ъгъл.',
|
||||
'reports-index-examples' => 'Не забравяйте да разгледате следните примери: <a href=":one"> месечен финансов преглед </a>, <a href=":two"> годишен финансов преглед </a> и "<a href=":three"> преглед на бюджета </a>.',
|
||||
'currencies-index' => 'Firefly III поддържа множество валути. Въпреки, че по подразбиране се използва еврото, то може да бъде зададен щатския долар и много други валути. Както можете да видите, малък набор от валути е включен, но също можете да добавите своя собствена, ако желаете. Промяната на валутата по подразбиране няма да промени валутата на съществуващите транзакции, но Firefly III поддържа използването на няколко валути едновременно.',
|
||||
'transactions-index' => 'Тези разходи, депозити и прехвърляния не са особено творчески. Те са генерирани автоматично.',
|
||||
'piggy-banks-index' => 'Както можете да видите, има три касички. Използвайте бутоните плюс и минус, за да повлияете на количеството пари във всяка касичка. Кликнете върху името на касичката, за да видите управлението за всяка касичка.',
|
||||
'profile-index' => 'Имайте предвид, че демонстрационният сайт се нулира на всеки четири часа. Вашият достъп може да бъде отменен по всяко време. Това се случва автоматично и не е грешка.',
|
||||
];
|
96
resources/lang/bg_BG/email.php
Normal file
96
resources/lang/bg_BG/email.php
Normal file
@ -0,0 +1,96 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* email.php
|
||||
* Copyright (c) 2019 james@firefly-iii.org
|
||||
*
|
||||
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
// common items
|
||||
'greeting' => 'Здравейте,',
|
||||
'closing' => 'Beep boop,',
|
||||
'signature' => 'Пощенският робот на Firefly III',
|
||||
'footer_ps' => 'PS: Това съобщение беше изпратено, защото заявка от IP :ipAddress го задейства.',
|
||||
|
||||
// admin test
|
||||
'admin_test_subject' => 'Тестово съобщение от вашата инсталация на Firefly III',
|
||||
'admin_test_body' => 'Това е тестово съобщение от вашата Firefly III инстанция. То беше изпратено на :email.',
|
||||
|
||||
// access token created
|
||||
'access_token_created_subject' => 'Създаден е нов маркер за достъп (токен)',
|
||||
'access_token_created_body' => 'Някой (дано да сте вие) току-що създаде нов Firefly III API Token за вашия потребителски акаунт.',
|
||||
'access_token_created_explanation' => 'С този токен те могат да имат достъп до <strong> всички </strong> ваши финансови записи чрез Firefly III API.',
|
||||
'access_token_created_revoke' => 'Ако това не сте вие, моля, отменете този токен възможно най-скоро на адрес :url.',
|
||||
|
||||
// registered
|
||||
'registered_subject' => 'Добре дошли в Firefly III!',
|
||||
'registered_welcome' => 'Добре дошли в <a style="color:#337ab7" href=":address">Firefly III</a>. Вашата регистрация е направена и този имейл е тук, за да го потвърди. Супер!',
|
||||
'registered_pw' => 'Ако вече сте забравили паролата си, моля нулирайте я с помощта на <a style="color:#337ab7" href=":address/password/reset"> инструмента за възстановяване на паролата </a>.',
|
||||
'registered_help' => 'В горния десен ъгъл на всяка страница има икона за помощ. Ако имате нужда от помощ, щракнете върху нея!',
|
||||
'registered_doc_html' => 'Ако още не сте го направили, моля прочетете <a style="color:#337ab7" href="https://docs.firefly-iii.org/about-firefly-iii/grand-theory"> основната теория </a>.',
|
||||
'registered_doc_text' => 'Ако още не сте го направили, моля прочетете ръководството за използване както и пълното описание.',
|
||||
'registered_closing' => 'Наслаждавайте се!',
|
||||
'registered_firefly_iii_link' => 'Firefly III:',
|
||||
'registered_pw_reset_link' => 'Смяна на парола:',
|
||||
'registered_doc_link' => 'Документация:',
|
||||
|
||||
// email change
|
||||
'email_change_subject' => 'Вашият имейл адрес за Firefly III е променен',
|
||||
'email_change_body_to_new' => 'Вие или някой с достъп до вашия акаунт в Firefly III е променили имейл адреса ви. Ако не очаквате това съобщение, моля игнорирайте го и го изтрийте.',
|
||||
'email_change_body_to_old' => 'Вие или някой с достъп до вашия акаунт в Firefly III е променил имейл адреса ви. Ако не сте очаквали това да се случи, <strong>трябва</strong> да последвате връзката „отмяна“ по-долу, за да защитите акаунта си!',
|
||||
'email_change_ignore' => 'Ако сте инициирали тази промяна, можете безопасно да игнорирате това съобщение.',
|
||||
'email_change_old' => 'Старият имейл адрес беше: :email',
|
||||
'email_change_old_strong' => 'Старият имейл адрес беше: <strong>:email</strong>',
|
||||
'email_change_new' => 'Новият имейл адрес е: :email',
|
||||
'email_change_new_strong' => 'Новият имейл адрес е: <strong>:email</strong>',
|
||||
'email_change_instructions' => 'Не можете да използвате Firefly III докато не потвърдите тази промяна. Моля, следвайте линка по-долу, за да го направите.',
|
||||
'email_change_undo_link' => 'За да отмените промяната последвайте тази връзка:',
|
||||
|
||||
// OAuth token created
|
||||
'oauth_created_subject' => 'Създаден е нов клиент на OAuth',
|
||||
'oauth_created_body' => 'Някой (дано да сте вие) току-що създаде нов клиент OAuth API на Firefly III за вашия потребителски акаунт. Той е обозначен като ":name" и има URL адрес за обратно извикване <span style="font-family: monospace;">:url</span>.',
|
||||
'oauth_created_explanation' => 'С този клиент те могат да имат достъп до <strong> всички </strong> ваши финансови записи чрез Firefly III API.',
|
||||
'oauth_created_undo' => 'Ако това не сте вие, моля отменете този клиент възможно най-скоро на адрес :url.',
|
||||
|
||||
// reset password
|
||||
'reset_pw_subject' => 'Вашето искане за смяна на парола',
|
||||
'reset_pw_instructions' => 'Някой се опита да смени паролата ви. Ако сте вие, моля последвайте линка по-долу, за да го направите.',
|
||||
'reset_pw_warning' => '<strong> МОЛЯ </strong> проверете дали връзката всъщност отива към адреса на Firefly III, къде очаквате да отиде!',
|
||||
|
||||
// error
|
||||
'error_subject' => 'Уловена е грешка в Firefly III',
|
||||
'error_intro' => 'Firefly III v:version попадна в грешка: <span style="font-family: monospace;">:errorMessage</span>.',
|
||||
'error_type' => 'Грешката беше от вид:":class".',
|
||||
'error_timestamp' => 'Грешката се случи на/в: :time.',
|
||||
'error_location' => 'Тази грешка се появи във файл "<span style="font-family: monospace;">:file</span>" на ред: :line с код: :code.',
|
||||
'error_user' => 'На грешката попадна потребител #:id,<a href="mailto::email">:email</a>.',
|
||||
'error_no_user' => 'Нямаше регистриран потребител при тази грешка или не бе открит потребителя.',
|
||||
'error_ip' => 'IP адресът, свързан с тази грешка, е: :ip',
|
||||
'error_url' => 'URL адресът е: :url',
|
||||
'error_user_agent' => 'Броузър агент: :userAgent',
|
||||
'error_stacktrace' => 'Пълният стак на грешката е отдолу. Ако смятате, че това е грешка в Firefly III, можете да препратите това съобщение до <a href="mailto:james@firefly-iii.org?subject=BUG!">james@firefly-iii.org</a>. Това може да помогне за отстраняване на грешката, която току-що срещнахте.',
|
||||
'error_github_html' => 'Ако предпочитате, можете също да отворите нов проблем на <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a>.',
|
||||
'error_github_text' => 'Ако предпочитате, можете също да отворите нов проблем на https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'Пълният stacktrace е отдолу:',
|
||||
|
||||
// report new journals
|
||||
'new_journals_subject' => 'Firefly III създаде нова транзакция | Firefly III създаде :count нови транзакции',
|
||||
'new_journals_header' => 'Firefly III създаде транзакция за вас. Можете да я намерите във вашата инсталация на Firefly III: | Firefly III създаде :count транзакции за вас. Можете да ги намерите във вашата инсталация на Firefly III:',
|
||||
];
|
51
resources/lang/bg_BG/errors.php
Normal file
51
resources/lang/bg_BG/errors.php
Normal file
@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* firefly.php
|
||||
* Copyright (c) 2019 james@firefly-iii.org
|
||||
*
|
||||
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'404_header' => 'Firefly III не може да намери тази страница.',
|
||||
'404_page_does_not_exist' => 'Страницата, която сте поискали не съществува. Моля, проверете дали не сте въвели грешен URL адрес. Направихте ли печатна грешка?',
|
||||
'404_send_error' => 'Ако сте били пренасочени към тази страница автоматично, моля приемете моите извинения. Във вашите дневници има маркер за тази грешка и ще съм ви благодарен, ако ми изпратите грешката.',
|
||||
'404_github_link' => 'Ако сте сигурни, че тази страница трябва да съществува, моля отворете билет на <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
|
||||
'whoops' => 'Опаааа',
|
||||
'fatal_error' => 'Имаше фатална грешка. Моля, проверете лог файловете в "storage/logs" или използвайте "docker logs -f [container]", за да видите какво се случва.',
|
||||
'maintenance_mode' => 'Firefly III е в режим на поддръжка.',
|
||||
'be_right_back' => 'Веднага се връщам!',
|
||||
'check_back' => 'Firefly III е изключен за някаква необходима поддръжка. Моля, проверете отново след секунда.',
|
||||
'error_occurred' => 'Опаааа! Случи се грешка.',
|
||||
'error_not_recoverable' => 'За съжаление от тази грешка не се възстановява :(. Firefly III се счупи. Грешката е:',
|
||||
'error' => 'Грешка',
|
||||
'error_location' => 'Тази грешка се появи във файл "<span style="font-family: monospace;">:file</span>" на ред: :line с код: :code.',
|
||||
'stacktrace' => 'Проследяване на стека',
|
||||
'more_info' => 'Повече информация',
|
||||
'collect_info' => 'Моля, съберете повече информация в директорията <code> storage/logs </code>, където ще намерите файловете на дневника. Ако използвате Docker, използвайте <code>docker logs -f [container]</code>.',
|
||||
'collect_info_more' => 'Можете да прочетете повече за събирането на информация за грешки на <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">the FAQ</a>.',
|
||||
'github_help' => 'Получете помощ на GitHub',
|
||||
'github_instructions' => 'Добре дошли сте да отворите нов проблем <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">на GitHub</a></strong>.',
|
||||
'use_search' => 'Използвайте търсенето!',
|
||||
'include_info' => 'Включете информацията <a href=":link">от тази debug страница</a>.',
|
||||
'tell_more' => 'Разкажете ни повече от „казва Опаааа!“',
|
||||
'include_logs' => 'Включете регистрационни файлове за грешки (вижте по-горе).',
|
||||
'what_did_you_do' => 'Кажете ни какво правихте.',
|
||||
|
||||
];
|
1759
resources/lang/bg_BG/firefly.php
Normal file
1759
resources/lang/bg_BG/firefly.php
Normal file
File diff suppressed because it is too large
Load Diff
248
resources/lang/bg_BG/form.php
Normal file
248
resources/lang/bg_BG/form.php
Normal file
@ -0,0 +1,248 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* form.php
|
||||
* Copyright (c) 2019 james@firefly-iii.org
|
||||
*
|
||||
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
// new user:
|
||||
'bank_name' => 'Име на банката',
|
||||
'bank_balance' => 'Салдо',
|
||||
'savings_balance' => 'Спестявания',
|
||||
'credit_card_limit' => 'Лимит по кредитна карта',
|
||||
'automatch' => 'Автоматично съчетаване',
|
||||
'skip' => 'Пропусни',
|
||||
'enabled' => 'Активирано',
|
||||
'name' => 'Име',
|
||||
'active' => 'Активен',
|
||||
'amount_min' => 'Минимална сума',
|
||||
'amount_max' => 'Максимална сума',
|
||||
'match' => 'Съответства на',
|
||||
'strict' => 'Строг режим',
|
||||
'repeat_freq' => 'Повторения',
|
||||
'object_group' => 'Група',
|
||||
'location' => 'Местоположение',
|
||||
'update_channel' => 'Канал за обновления',
|
||||
'currency_id' => 'Валута',
|
||||
'transaction_currency_id' => 'Валута',
|
||||
'auto_budget_currency_id' => 'Валута',
|
||||
'external_ip' => 'Външен IP адрес на вашия сървър',
|
||||
'attachments' => 'Прикачени файлове',
|
||||
'BIC' => 'BIC',
|
||||
'verify_password' => 'Проверете сигурността на паролата',
|
||||
'source_account' => 'Разходна сметка',
|
||||
'destination_account' => 'Приходна сметка',
|
||||
'asset_destination_account' => 'Приходна сметка',
|
||||
'include_net_worth' => 'Включи в общото богатство',
|
||||
'asset_source_account' => 'Разходна сметка',
|
||||
'journal_description' => 'Описание',
|
||||
'note' => 'Бележки',
|
||||
'currency' => 'Валута',
|
||||
'account_id' => 'Сметка за активи',
|
||||
'budget_id' => 'Бюджет',
|
||||
'opening_balance' => 'Начално салдо',
|
||||
'tagMode' => 'Режим на етикети',
|
||||
'virtual_balance' => 'Виртуален баланс',
|
||||
'targetamount' => 'Планирана сума',
|
||||
'account_role' => 'Роля на сметката',
|
||||
'opening_balance_date' => 'Дата на началното салдо',
|
||||
'cc_type' => 'Погасителен план на кредитна карта',
|
||||
'cc_monthly_payment_date' => 'Дата за месечно плащане по кредитна карта',
|
||||
'piggy_bank_id' => 'Касичка',
|
||||
'returnHere' => 'Върнете се тук',
|
||||
'returnHereExplanation' => 'След съхраняването се върнете тук, за да създадете нова.',
|
||||
'returnHereUpdateExplanation' => 'След актуализиране се върнете тук.',
|
||||
'description' => 'Описание',
|
||||
'expense_account' => 'Сметка за разходи',
|
||||
'revenue_account' => 'Сметка за приходи',
|
||||
'decimal_places' => 'Десетични позиции',
|
||||
'destination_amount' => 'Сума (местоназначение)',
|
||||
'new_email_address' => 'Нов и-мейл адрес',
|
||||
'verification' => 'Проверка',
|
||||
'api_key' => 'API ключ',
|
||||
'remember_me' => 'Запомни ме',
|
||||
'liability_type_id' => 'Тип задължение',
|
||||
'interest' => 'Лихва',
|
||||
'interest_period' => 'Лихвен период',
|
||||
|
||||
'type' => 'Вид',
|
||||
'convert_Withdrawal' => 'Преобразувай тегленето',
|
||||
'convert_Deposit' => 'Преобразувай депозита',
|
||||
'convert_Transfer' => 'Преобразувай прехвърлянето',
|
||||
|
||||
'amount' => 'Сума',
|
||||
'foreign_amount' => 'Сума във валута',
|
||||
'date' => 'Дата',
|
||||
'interest_date' => 'Падеж на лихва',
|
||||
'book_date' => 'Дата на осчетоводяване',
|
||||
'process_date' => 'Дата на обработка',
|
||||
'category' => 'Категория',
|
||||
'tags' => 'Етикети',
|
||||
'deletePermanently' => 'Безвъзвратно изтриване',
|
||||
'cancel' => 'Отказ',
|
||||
'targetdate' => 'Целева дата',
|
||||
'startdate' => 'Начална дата',
|
||||
'tag' => 'Етикет',
|
||||
'under' => 'Под',
|
||||
'symbol' => 'Символ',
|
||||
'code' => 'Код',
|
||||
'iban' => 'IBAN',
|
||||
'account_number' => 'Номер на сметка',
|
||||
'creditCardNumber' => 'Номер на кредитна карта',
|
||||
'has_headers' => 'Горни колонтитули',
|
||||
'date_format' => 'Формат за дата',
|
||||
'specifix' => 'Банково- или файлово-спецефични корекции',
|
||||
'attachments[]' => 'Прикачени файлове',
|
||||
'title' => 'Заглавие',
|
||||
'notes' => 'Бележки',
|
||||
'filename' => 'Име на файла',
|
||||
'mime' => 'Mime тип',
|
||||
'size' => 'Размер',
|
||||
'trigger' => 'Задействане',
|
||||
'stop_processing' => 'Спри изпълнението',
|
||||
'start_date' => 'Начало на обхвата',
|
||||
'end_date' => 'Край на обхвата',
|
||||
'delete_account' => 'Изтрий сметка ":name"',
|
||||
'delete_bill' => 'Изтрий сметка ":name"',
|
||||
'delete_budget' => 'Изтрий бюджет ":name"',
|
||||
'delete_category' => 'Изтрий категория ":name"',
|
||||
'delete_currency' => 'Изтрий валута ":name"',
|
||||
'delete_journal' => 'Изтрий транзакция с описание ":description"',
|
||||
'delete_attachment' => 'Изтрий прикачен файл ":name"',
|
||||
'delete_rule' => 'Изтрии правило ":title"',
|
||||
'delete_rule_group' => 'Изтрии група правила ":title"',
|
||||
'delete_link_type' => 'Изтрий тип връзка ":name"',
|
||||
'delete_user' => 'Изтрий потребител ":email"',
|
||||
'delete_recurring' => 'Изтрий повтаряща се транзакция ":title"',
|
||||
'user_areYouSure' => 'Ако изтриете потребител ":email", всичко ще изчезне. Няма отмяна, възстановяване или нещо друго. Ако изтриете себе си, ще загубите достъп до този екземпляр на Firefly III.',
|
||||
'attachment_areYouSure' => 'Наистина ли искате да изтриете прикачения файл ":name"?',
|
||||
'account_areYouSure' => 'Наистина ли искате да изтриете сметка ":name"?',
|
||||
'bill_areYouSure' => 'Наистина ли искате да изтриете сметка ":name"?',
|
||||
'rule_areYouSure' => 'Наистина ли искате да изтриете правило ":title"?',
|
||||
'object_group_areYouSure' => 'Наистина ли искате да изтриете групата ":title"?',
|
||||
'ruleGroup_areYouSure' => 'Наистина ли искате да изтриете групата правила ":title"?',
|
||||
'budget_areYouSure' => 'Наистина ли искате да изтриете бюджета озаглавен ":name"?',
|
||||
'category_areYouSure' => 'Наистина ли искате да изтриете категорията озаглавена ":name"?',
|
||||
'recurring_areYouSure' => 'Наистина ли искате да изтриете повтарящата се транзакция ":title"?',
|
||||
'currency_areYouSure' => 'Наистина ли искате да изтриете валутата озаглавена ":name"?',
|
||||
'piggyBank_areYouSure' => 'Наистина ли искате да изтриете касичката озаглавена ":name"?',
|
||||
'journal_areYouSure' => 'Наистина ли искате да изтриете транзакцията озаглавена ":description"?',
|
||||
'mass_journal_are_you_sure' => 'Наистина ли искате да изтриете тези транзакции?',
|
||||
'tag_areYouSure' => 'Наистина ли искате да изтриете етикета ":tag"?',
|
||||
'journal_link_areYouSure' => 'Наистина ли искате да изтриете връзката между <a href=":source_link">:source</a> и <a href=":destination_link">:destination</a>?',
|
||||
'linkType_areYouSure' => 'Наистина ли искате да изтриете типа връзка ":name" (":inward" / ":outward")?',
|
||||
'permDeleteWarning' => 'Изтриването на неща от Firefly III е постоянно и не може да бъде възстановено.',
|
||||
'mass_make_selection' => 'Все още можете да предотвратите изтриването на елементи, като премахнете отметката в квадратчето.',
|
||||
'delete_all_permanently' => 'Изтрии избраните необратимо',
|
||||
'update_all_journals' => 'Обнови тези транзакции',
|
||||
'also_delete_transactions' => 'Ще бъде изтрита и единствената транзакция, свързана с тази сметка.|Всички :count транзакции, свързани с тази сметка, също ще бъдат изтрити.',
|
||||
'also_delete_connections' => 'Единствената транзакция, свързана с този тип връзки, ще загуби тази връзка.|Всички :count транзакции, свързани с този тип връзки, ще загубят връзката си.',
|
||||
'also_delete_rules' => 'Ще бъде изтрито и единственото правило, свързана с тази група правила.|Всички :count правила, свързани с тази група правила, също ще бъдат изтрити.',
|
||||
'also_delete_piggyBanks' => 'Ще бъде изтрита и единствената касичнка, свързана с тази сметка.|Всички :count касички, свързани с тази сметка, също ще бъдат изтрити.',
|
||||
'not_delete_piggy_banks' => 'Касичката свързана с тази група няма да бъде изтрита.|Всички :count касички свързани с тази група няма да бъдат изтрити.',
|
||||
'bill_keep_transactions' => 'Единствената транзакция, свързана с тази сметка няма да бъде изтрита.|Всички :count транзакции, свързани с тази сметка, няма да бъдат изтрити.',
|
||||
'budget_keep_transactions' => 'Единствената транзакция, свързана с този бюджет няма да бъде изтрита.|Всички :count транзакции, свързани с този бюджет, няма да бъдат изтрити.',
|
||||
'category_keep_transactions' => 'Единствената транзакция, свързана с тази категорияняма да бъде изтрита.|Всички :count транзакции, свързани с тази категория, няма да бъдат изтрити.',
|
||||
'recurring_keep_transactions' => 'Единствената транзакция, създадена с тази повтаряща се транзакция, няма да бъде изтрита.|Всички :count транзакции, създадени с тази повтаряща се транзакция, няма да бъдат изтрити.',
|
||||
'tag_keep_transactions' => 'Единствената транзакция, свързана с този етикет няма да бъде изтрита.|Всички :count транзакции, свързани с този етикет, няма да бъдат изтрити.',
|
||||
'check_for_updates' => 'Проверка за нова версия',
|
||||
|
||||
'delete_object_group' => 'Изтрии група ":title"',
|
||||
|
||||
'email' => 'Имейл адрес',
|
||||
'password' => 'Парола',
|
||||
'password_confirmation' => 'Парола (повтори)',
|
||||
'blocked' => 'Блокиран ли е?',
|
||||
'blocked_code' => 'Причина за блокирането',
|
||||
'login_name' => 'Вход',
|
||||
'is_owner' => 'Администратор ли е?',
|
||||
|
||||
// import
|
||||
'apply_rules' => 'Приложи правила',
|
||||
'artist' => 'Изпълнител',
|
||||
'album' => 'Албум',
|
||||
'song' => 'Песен',
|
||||
|
||||
|
||||
// admin
|
||||
'domain' => 'Домейн',
|
||||
'single_user_mode' => 'Изключи нови регистрации',
|
||||
'is_demo_site' => 'Демо страница?',
|
||||
|
||||
// import
|
||||
'configuration_file' => 'Конфигурационен файл',
|
||||
'csv_comma' => 'Запетайка (,)',
|
||||
'csv_semicolon' => 'Точка и запетая (;)',
|
||||
'csv_tab' => 'Табулация (невидимо)',
|
||||
'csv_delimiter' => 'CSV разделител на полета',
|
||||
'client_id' => 'ИД (ID) на клиент',
|
||||
'app_id' => 'Идентификатор (ID) на приложението',
|
||||
'secret' => 'Тайна',
|
||||
'public_key' => 'Обществен ключ',
|
||||
'country_code' => 'Код на страната',
|
||||
'provider_code' => 'Банка или доставчик на данни',
|
||||
'fints_url' => 'FinTS API URL',
|
||||
'fints_port' => 'Порт',
|
||||
'fints_bank_code' => 'Банков код',
|
||||
'fints_username' => 'Потребителско име',
|
||||
'fints_password' => 'PIN / Парола',
|
||||
'fints_account' => 'FinTS account',
|
||||
'local_account' => 'Firefly III сметка',
|
||||
'from_date' => 'Дата от',
|
||||
'to_date' => 'Дата до',
|
||||
|
||||
|
||||
'due_date' => 'Дата на падеж',
|
||||
'payment_date' => 'Дата на плащане',
|
||||
'invoice_date' => 'Дата на фактура',
|
||||
'internal_reference' => 'Вътрешна референция',
|
||||
'inward' => 'Входящо описание',
|
||||
'outward' => 'Изходящо описание',
|
||||
'rule_group_id' => 'Група правила',
|
||||
'transaction_description' => 'Описание на транзакция',
|
||||
'first_date' => 'Първа дата',
|
||||
'transaction_type' => 'Вид транзакция',
|
||||
'repeat_until' => 'Повтаряй до',
|
||||
'recurring_description' => 'Описание на повтаряща се транзакция',
|
||||
'repetition_type' => 'Тип на повторенията',
|
||||
'foreign_currency_id' => 'Чужда валута',
|
||||
'repetition_end' => 'Повторенията спират',
|
||||
'repetitions' => 'Повторения',
|
||||
'calendar' => 'Календар',
|
||||
'weekend' => 'Уикенд',
|
||||
'client_secret' => 'Тайна на клиента',
|
||||
|
||||
'withdrawal_destination_id' => 'Приходна сметка',
|
||||
'deposit_source_id' => 'Разходна сметка',
|
||||
'expected_on' => 'Очаквано на',
|
||||
'paid' => 'Платени',
|
||||
|
||||
'auto_budget_type' => 'Автоматичен бюджет',
|
||||
'auto_budget_amount' => 'Сума за автоматичен бюджет',
|
||||
'auto_budget_period' => 'Период за автоматичен бюджет',
|
||||
|
||||
'collected' => 'Събрани',
|
||||
'submitted' => 'Потвърдено',
|
||||
'key' => 'Ключ',
|
||||
'value' => 'Съдържание на записа'
|
||||
|
||||
|
||||
];
|
145
resources/lang/bg_BG/intro.php
Normal file
145
resources/lang/bg_BG/intro.php
Normal file
@ -0,0 +1,145 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* intro.php
|
||||
* Copyright (c) 2019 james@firefly-iii.org
|
||||
*
|
||||
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
// index
|
||||
'index_intro' => 'Добре дошли в заглавната страница на Firefly III. Моля отделете време за това въведение, за да усетите как работи Firefly III.',
|
||||
'index_accounts-chart' => 'Тази графика показва текущият баланс на вашите сметки за активи. Можете да изберете видимите тук сметки според вашите предпочитания.',
|
||||
'index_box_out_holder' => 'Тази малка кутия и кутиите до нея ще ви дадат бърз общ преглед на вашата финансова ситуация.',
|
||||
'index_help' => 'Ако някога имате нужда от помощ със страница или форма, натиснете този бутон.',
|
||||
'index_outro' => 'Повечето страници на Firefly III ще започнат с малка обиколка като тази. Моля свържете се с мен, когато имате въпроси или коментари. Насладете се!',
|
||||
'index_sidebar-toggle' => 'За да създадете нови транзакции, сметки или други неща, използвайте менюто под тази икона.',
|
||||
'index_cash_account' => 'Това са създадените досега сметки. Можете да използвате касовата сметка за проследяване на разходите в брой, но това не е задължително.',
|
||||
|
||||
// transactions
|
||||
'transactions_create_basic_info' => 'Въведете основната информация за вашата транзакция. Източник, дестинация, дата и описание.',
|
||||
'transactions_create_amount_info' => 'Въведете сумата на транзакцията. Ако е необходимо, полетата ще се актуализират автоматично за информация за сума в чужда валута.',
|
||||
'transactions_create_optional_info' => 'Всички тези полета не са задължителни. Добавянето на метаданни тук ще направи вашите транзакции по-добре организирани.',
|
||||
'transactions_create_split' => 'Ако искате да разделите транзакция, добавете още разделяния с този бутон',
|
||||
|
||||
// create account:
|
||||
'accounts_create_iban' => 'Дайте на вашите сметки валиден IBAN. Това може да направи импортирането на данни много лесно в бъдеще.',
|
||||
'accounts_create_asset_opening_balance' => 'Сметките за активи може да имат "начално салдо", което показва началото на историята на този акаунт в Firefly III.',
|
||||
'accounts_create_asset_currency' => 'Firefly III поддържа множество валути. Сметките за активи имат една основна валута, която трябва да зададете тук.',
|
||||
'accounts_create_asset_virtual' => 'Понякога може да е полезно да се даде виртуален баланс на вашата сметка: допълнителна сума, която винаги се добавя към или отстранява от действителното салдо.',
|
||||
|
||||
// budgets index
|
||||
'budgets_index_intro' => 'Бюджетите се използват за управление на вашите финанси и формират една от основните функции на Firefly III.',
|
||||
'budgets_index_set_budget' => 'Задайте общия си бюджет за всеки период, за да може Firefly III да ви каже дали сте предвидили всички налични пари.',
|
||||
'budgets_index_see_expenses_bar' => 'Харченето на пари бавно ще запълва тази лента.',
|
||||
'budgets_index_navigate_periods' => 'Придвижвайте се през периодите, за да задавате лесно бюджетите си напред.',
|
||||
'budgets_index_new_budget' => 'Създайте нови бюджети, както сметнете за добре.',
|
||||
'budgets_index_list_of_budgets' => 'Използвайте тази таблица, за да зададете сумите за всеки бюджет и да видите как се справяте.',
|
||||
'budgets_index_outro' => 'За да научите повече за бюджетирането, проверете иконата за помощ в горния десен ъгъл.',
|
||||
|
||||
// reports (index)
|
||||
'reports_index_intro' => 'Използвайте тези отчети, за да получите подробна информация за вашите финанси.',
|
||||
'reports_index_inputReportType' => 'Изберете тип отчет. Разгледайте страниците за помощ, за да видите какво ви показва всеки отчет.',
|
||||
'reports_index_inputAccountsSelect' => 'Можете да изключите или включите сметки за активи, както сметнете за добре.',
|
||||
'reports_index_inputDateRange' => 'Избраният диапазон от дати зависи изцяло от вас: от един ден до 10 години.',
|
||||
'reports_index_extra-options-box' => 'В зависимост от отчета който сте избрали, можете да изберете допълнителни филтри и опции тук. Гледайте това поле, когато променяте типовете отчети.',
|
||||
|
||||
// reports (reports)
|
||||
'reports_report_default_intro' => 'Този отчет ще ви даде бърз и изчерпателен преглед на вашите финанси. Ако искате да видите нещо друго, моля не колебайте да се свържете с мен!',
|
||||
'reports_report_audit_intro' => 'Този отчет ще ви даде подробна информация за вашите сметки за активи.',
|
||||
'reports_report_audit_optionsBox' => 'Използвайте тези квадратчета, за да покажете или скриете колоните които ви интересуват.',
|
||||
|
||||
'reports_report_category_intro' => 'Този отчет ще ви даде представа за една или няколко категории.',
|
||||
'reports_report_category_pieCharts' => 'Тези диаграми ще ви дадат представа за разходите и приходите по категория или по сметка.',
|
||||
'reports_report_category_incomeAndExpensesChart' => 'Тази диаграма показва вашите разходи и приходи по категория.',
|
||||
|
||||
'reports_report_tag_intro' => 'Този отчет ще ви даде представа за един или няколко етикета.',
|
||||
'reports_report_tag_pieCharts' => 'Тези диаграми ще ви дадат представа за разходите и приходите по етикет, сметка, категория или бюджет.',
|
||||
'reports_report_tag_incomeAndExpensesChart' => 'Тази диаграма показва вашите разходи и доходи по етикет.',
|
||||
|
||||
'reports_report_budget_intro' => 'Този отчет ще ви даде представа за един или няколко бюджета.',
|
||||
'reports_report_budget_pieCharts' => 'Тези диаграми ще ви дадат представа за разходите по бюджет или по сметка.',
|
||||
'reports_report_budget_incomeAndExpensesChart' => 'Тази диаграма показва вашите разходи по бюджет.',
|
||||
|
||||
// create transaction
|
||||
'transactions_create_switch_box' => 'Използвайте тези бутони за бързо превключване на типа транзакция, която искате да запазите.',
|
||||
'transactions_create_ffInput_category' => 'Можете свободно да пишете в това поле. Предварително създадени категории ще бъдат предложени.',
|
||||
'transactions_create_withdrawal_ffInput_budget' => 'Свържете теглене си с бюджет за по-добър финансов контрол.',
|
||||
'transactions_create_withdrawal_currency_dropdown_amount' => 'Използвайте това падащо меню, когато тегленето ви е в друга валута.',
|
||||
'transactions_create_deposit_currency_dropdown_amount' => 'Използвайте това падащо меню, когато депозита ви е в друга валута.',
|
||||
'transactions_create_transfer_ffInput_piggy_bank_id' => 'Изберете касичка и свържете това прехвърляне с вашите спестявания.',
|
||||
|
||||
// piggy banks index:
|
||||
'piggy-banks_index_saved' => 'Това поле ви показва колко сте спестили във всяка касичка.',
|
||||
'piggy-banks_index_button' => 'До тази лента за прогрес са разположени два бутона (+ и -) за добавяне или премахване на пари от всяка касичка.',
|
||||
'piggy-banks_index_accountStatus' => 'За всяка сметка за активи с най-малко една касичка статусът е посочен в тази таблица.',
|
||||
|
||||
// create piggy
|
||||
'piggy-banks_create_name' => 'Каква е твоята цел? Нов диван, камера, пари за спешни случаи?',
|
||||
'piggy-banks_create_date' => 'Можете да зададете целева дата или краен срок за вашата касичка.',
|
||||
|
||||
// show piggy
|
||||
'piggy-banks_show_piggyChart' => 'Тази диаграма ще покаже историята на тази касичка.',
|
||||
'piggy-banks_show_piggyDetails' => 'Някои подробности за вашата касичка',
|
||||
'piggy-banks_show_piggyEvents' => 'Всички допълнения или премахвания също са посочени тук.',
|
||||
|
||||
// bill index
|
||||
'bills_index_rules' => 'Тук виждате кои правила ще проверят дали тази сметка е получена',
|
||||
'bills_index_paid_in_period' => 'Това поле указва кога за последно е платена сметката.',
|
||||
'bills_index_expected_in_period' => 'Това поле обозначава за всяка сметка, ако и кога се очаква да се получи следващата сметка.',
|
||||
|
||||
// show bill
|
||||
'bills_show_billInfo' => 'Тази таблица показва обща информация за тази сметка.',
|
||||
'bills_show_billButtons' => 'Използвайте този бутон за повторно сканиране на стари транзакции, така че те да бъдат съпоставени с тази сметка.',
|
||||
'bills_show_billChart' => 'Тази диаграма показва транзакциите, свързани с тази сметка.',
|
||||
|
||||
// create bill
|
||||
'bills_create_intro' => 'Използвайте сметки за да проследявате сумата пари, които дължите за всеки период. Помислете за разходи като наем, застраховка или ипотечни плащания.',
|
||||
'bills_create_name' => 'Използвайте описателно име като "Наем" или "Здравно осигуряване".',
|
||||
//'bills_create_match' => 'To match transactions, use terms from those transactions or the expense account involved. All words must match.',
|
||||
'bills_create_amount_min_holder' => 'Изберете минимална и максимална сума за тази сметка.',
|
||||
'bills_create_repeat_freq_holder' => 'Повечето сметки се повтарят месечно, но можете да зададете друга честота тук.',
|
||||
'bills_create_skip_holder' => 'Ако сметката се повтаря на всеки 2 седмици, полето "Пропусни" трябва да бъде настроено на "1", за да се прескача през седмица.',
|
||||
|
||||
// rules index
|
||||
'rules_index_intro' => 'Firefly III ви позволява да управлявате правила, които автоматично ще се прилагат към всяка транзакция, която създавате или редактирате.',
|
||||
'rules_index_new_rule_group' => 'Можете да комбинирате правила в групи за по-лесно управление.',
|
||||
'rules_index_new_rule' => 'Създайте колкото искате правила.',
|
||||
'rules_index_prio_buttons' => 'Подредете ги, както сметнете за добре.',
|
||||
'rules_index_test_buttons' => 'Можете да тествате правилата си или да ги прилагате към съществуващи транзакции.',
|
||||
'rules_index_rule-triggers' => 'Правилата имат "задействания" и "действия", които можете да подредите чрез плъзгане и пускане.',
|
||||
'rules_index_outro' => 'Не забравяйте да разгледате помощните страници, като използвате иконата (?) горе вдясно!',
|
||||
|
||||
// create rule:
|
||||
'rules_create_mandatory' => 'Изберете описателно заглавие и задайте кога правилото трябва да бъде задействано.',
|
||||
'rules_create_ruletriggerholder' => 'Добавете колкото искате задействания, но не забравяйте че ВСИЧКИ задействания трябва да съвпаднат, преди да бъдат осъществени действия.',
|
||||
'rules_create_test_rule_triggers' => 'Използвайте този бутон, за да видите кои транзакции биха съответствали на вашето правило.',
|
||||
'rules_create_actions' => 'Задайте толкова действия, колкото искате.',
|
||||
|
||||
// preferences
|
||||
'preferences_index_tabs' => 'Повече опции са достъпни зад тези раздели.',
|
||||
|
||||
// currencies
|
||||
'currencies_index_intro' => 'Firefly III поддържа множество валути, които можете да промените на тази страница.',
|
||||
'currencies_index_default' => 'Firefly III има една валута по подразбиране.',
|
||||
'currencies_index_buttons' => 'Използвайте тези бутони, за да промените валутата по подразбиране или да активирате други валути.',
|
||||
|
||||
// create currency
|
||||
'currencies_create_code' => 'Този код трябва да е съвместим с ISO (използвайте Google да го намерите за вашата нова валута).',
|
||||
];
|
135
resources/lang/bg_BG/list.php
Normal file
135
resources/lang/bg_BG/list.php
Normal file
@ -0,0 +1,135 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* list.php
|
||||
* Copyright (c) 2019 james@firefly-iii.org
|
||||
*
|
||||
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'buttons' => 'Бутони',
|
||||
'icon' => 'Икона',
|
||||
'id' => 'ID',
|
||||
'create_date' => 'Създаден на',
|
||||
'update_date' => 'Обновен на',
|
||||
'updated_at' => 'Обновен на',
|
||||
'balance_before' => 'Баланс преди',
|
||||
'balance_after' => 'Баланс след',
|
||||
'name' => 'Име',
|
||||
'role' => 'Привилегии',
|
||||
'currentBalance' => 'Текущ баланс',
|
||||
'linked_to_rules' => 'Съответстващи правила',
|
||||
'active' => 'Активен ли е?',
|
||||
'percentage' => '%',
|
||||
'recurring_transaction' => 'Повтарящи се транзакции',
|
||||
'next_due' => 'Следващата дължима',
|
||||
'transaction_type' => 'Вид',
|
||||
'lastActivity' => 'Последна активност',
|
||||
'balanceDiff' => 'Балансова разлика',
|
||||
'other_meta_data' => 'Други мета данни',
|
||||
'account_type' => 'Вид на сметка',
|
||||
'created_at' => 'Създаден на',
|
||||
'account' => 'Сметка',
|
||||
'external_uri' => 'Външно URI',
|
||||
'matchingAmount' => 'Сума',
|
||||
'destination' => 'Дестинация',
|
||||
'source' => 'Източник',
|
||||
'next_expected_match' => 'Следващo очакванo съвпадение',
|
||||
'automatch' => 'Автоматично съвпадение?',
|
||||
'repeat_freq' => 'Повторения',
|
||||
'description' => 'Описание',
|
||||
'amount' => 'Сума',
|
||||
'date' => 'Дата',
|
||||
'interest_date' => 'Падеж на лихва',
|
||||
'book_date' => 'Дата на осчетоводяване',
|
||||
'process_date' => 'Дата на обработка',
|
||||
'due_date' => 'Дата на падеж',
|
||||
'payment_date' => 'Дата на плащане',
|
||||
'invoice_date' => 'Дата на фактура',
|
||||
'internal_reference' => 'Вътрешна референция',
|
||||
'notes' => 'Бележки',
|
||||
'from' => 'Oт',
|
||||
'piggy_bank' => 'Касичка',
|
||||
'to' => 'До',
|
||||
'budget' => 'Бюджет',
|
||||
'category' => 'Категория',
|
||||
'bill' => 'Сметка',
|
||||
'withdrawal' => 'Теглене',
|
||||
'deposit' => 'Депозит',
|
||||
'transfer' => 'Прехвърляне',
|
||||
'type' => 'Вид',
|
||||
'completed' => 'Завършен',
|
||||
'iban' => 'IBAN',
|
||||
'paid_current_period' => 'Платени този период',
|
||||
'email' => 'Имейл',
|
||||
'registered_at' => 'Регистриран на',
|
||||
'is_blocked' => 'е блокиран',
|
||||
'is_admin' => 'е администратор',
|
||||
'has_two_factor' => 'има 2FA',
|
||||
'blocked_code' => 'Блокиращ код',
|
||||
'source_account' => 'Разходна сметка',
|
||||
'destination_account' => 'Приходна сметка',
|
||||
'accounts_count' => 'Брой сметки',
|
||||
'journals_count' => 'Брой транзакции',
|
||||
'attachments_count' => 'Брой прикачени файлове',
|
||||
'bills_count' => 'Брой сметки',
|
||||
'categories_count' => 'Брой категории',
|
||||
'budget_count' => 'Брой бюджети',
|
||||
'rule_and_groups_count' => 'Брой правила и групи правила',
|
||||
'tags_count' => 'Брой етикети',
|
||||
'tags' => 'Етикети',
|
||||
'inward' => 'Входящо описание',
|
||||
'outward' => 'Изходящо описание',
|
||||
'number_of_transactions' => 'Брой транзакции',
|
||||
'total_amount' => 'Обща сума',
|
||||
'sum' => 'Сума',
|
||||
'sum_excluding_transfers' => 'Сума (без прехвърлянията)',
|
||||
'sum_withdrawals' => 'Сума на тегленията',
|
||||
'sum_deposits' => 'Сума на депозитите',
|
||||
'sum_transfers' => 'Сума на прехвърлянията',
|
||||
'sum_reconciliations' => 'Сума на съгласуванията',
|
||||
'reconcile' => 'Съгласувай',
|
||||
'sepa_ct_id' => 'SEPA Идентификатор от край до край',
|
||||
'sepa_ct_op' => 'SEPA Идентификатор на противоположния акаунт',
|
||||
'sepa_db' => 'SEPA идентификатор нареждане',
|
||||
'sepa_country' => 'SEPA държава',
|
||||
'sepa_cc' => 'SEPA клиринг код',
|
||||
'sepa_ep' => 'SEPA външнo предназначение',
|
||||
'sepa_ci' => 'SEPA идентификатор кредитор',
|
||||
'sepa_batch_id' => 'SEPA Идентификатор партида',
|
||||
'external_id' => 'Външно ID',
|
||||
'account_at_bunq' => 'Сметка в bunq',
|
||||
'file_name' => 'Име на файла',
|
||||
'file_size' => 'Размер на файла',
|
||||
'file_type' => 'Вид файл',
|
||||
'attached_to' => 'Приложен към',
|
||||
'file_exists' => 'Файлът съществува',
|
||||
'spectre_bank' => 'Банка',
|
||||
'spectre_last_use' => 'Последно влизане',
|
||||
'spectre_status' => 'Състояние',
|
||||
'bunq_payment_id' => 'bunq payment ID',
|
||||
'repetitions' => 'Повторения',
|
||||
'title' => 'Заглавие',
|
||||
'transaction_s' => 'Транзакция(и)',
|
||||
'field' => 'Поле',
|
||||
'value' => 'Стойност',
|
||||
'interest' => 'Лихва',
|
||||
'interest_period' => 'лихвен период',
|
||||
'liability_type' => 'Вид на задължението',
|
||||
];
|
1
resources/lang/bg_BG/locales.json
Normal file
1
resources/lang/bg_BG/locales.json
Normal file
File diff suppressed because one or more lines are too long
28
resources/lang/bg_BG/pagination.php
Normal file
28
resources/lang/bg_BG/pagination.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* pagination.php
|
||||
* Copyright (c) 2019 james@firefly-iii.org
|
||||
*
|
||||
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'previous' => '« Предишна',
|
||||
'next' => 'Следваща »',
|
||||
];
|
32
resources/lang/bg_BG/passwords.php
Normal file
32
resources/lang/bg_BG/passwords.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* passwords.php
|
||||
* Copyright (c) 2019 james@firefly-iii.org
|
||||
*
|
||||
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'password' => 'Паролите трябва да са дълги поне 6 символа и да съвпадат.',
|
||||
'user' => 'Не можем да намерим потребител с този имейл адрес.',
|
||||
'token' => 'Ключът за нулиране на паролата е невалиден.',
|
||||
'sent' => 'Изпратихме Ви връзка за обновяване на паролата!',
|
||||
'reset' => 'Вашата парола е нулирана!',
|
||||
'blocked' => 'Добър опит все пак.',
|
||||
];
|
209
resources/lang/bg_BG/validation.php
Normal file
209
resources/lang/bg_BG/validation.php
Normal file
@ -0,0 +1,209 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* validation.php
|
||||
* Copyright (c) 2019 james@firefly-iii.org
|
||||
*
|
||||
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'iban' => 'Това е невалиден IBAN.',
|
||||
'zero_or_more' => 'Стойността не може да бъде отрицателна.',
|
||||
'date_or_time' => 'Стойността трябва да е валидна дата и време (ISO 8601).',
|
||||
'source_equals_destination' => 'Разходната сметка е еднаква на приходната сметка.',
|
||||
'unique_account_number_for_user' => 'Изглежда, че този номер на сметка вече се използва.',
|
||||
'unique_iban_for_user' => 'Изглежда, че този IBAN вече се използва.',
|
||||
'deleted_user' => 'Поради съображения за сигурност не можете да се регистрирате, като използвате този имейл адрес.',
|
||||
'rule_trigger_value' => 'Тази стойност е невалидна за избраното задействане.',
|
||||
'rule_action_value' => 'Тази стойност е невалидна за избраното действие.',
|
||||
'file_already_attached' => 'Каченият файл ":name" вече е прикачен към този обект.',
|
||||
'file_attached' => 'Успешно качен файл ":name".',
|
||||
'must_exist' => 'Идентификаторът в поле :attribute не съществува в базата данни.',
|
||||
'all_accounts_equal' => 'Всички сметки в това поле трябва да са еднакви.',
|
||||
'group_title_mandatory' => 'Заглавието на групата е задължително, когато има повече от една транзакция.',
|
||||
'transaction_types_equal' => 'Всички разделяния трябва да са от един и същи тип.',
|
||||
'invalid_transaction_type' => 'Невалиден тип транзакция.',
|
||||
'invalid_selection' => 'Изборът ви е невалиден.',
|
||||
'belongs_user' => 'Тази стойност е невалидна за това поле.',
|
||||
'at_least_one_transaction' => 'Нужна е поне една транзакция.',
|
||||
'at_least_one_repetition' => 'Нужно е поне едно повторение.',
|
||||
'require_repeat_until' => 'Изисква се или брой повторения, или крайна дата (повтори_до). Не и двете.',
|
||||
'require_currency_info' => 'Съдържанието на това поле е невалидно без информация за валута.',
|
||||
'not_transfer_account' => 'Този акаунт не е акаунт, който може да се използва за прехвърляния.',
|
||||
'require_currency_amount' => 'Съдържанието на това поле е невалидно без стойност в другата валута.',
|
||||
'equal_description' => 'Описанието на транзакцията не трябва да е равно на общото описание.',
|
||||
'file_invalid_mime' => 'Файлът ":name" е от тип ":mime", който не се приема за качване.',
|
||||
'file_too_large' => 'Файлът ":name" е твърде голям.',
|
||||
'belongs_to_user' => 'Стойността на :attribute не е известна.',
|
||||
'accepted' => ':attribute трябва да бъде приет.',
|
||||
'bic' => 'Това е невалиден BIC.',
|
||||
'at_least_one_trigger' => 'Правилото трябва да има поне еднo задействане.',
|
||||
'at_least_one_action' => 'Правилото трябва да има поне еднo действие.',
|
||||
'base64' => 'Това не са валидни base64 кодирани данни.',
|
||||
'model_id_invalid' => 'Даденото ID изглежда невалидно за този модел.',
|
||||
'less' => ':attribute трябва да е по-малко от 10 000 000',
|
||||
'active_url' => ':attribute не е валиден URL адрес.',
|
||||
'after' => ':attribute трябва да бъде дата след :date.',
|
||||
'alpha' => ':attribute може да съдържа единствено букви.',
|
||||
'alpha_dash' => ':attribute може да съдържа само букви, числа и тирета.',
|
||||
'alpha_num' => ':attribute може да съдържа само букви и числа.',
|
||||
'array' => ':attribute трябва да бъде масив.',
|
||||
'unique_for_user' => 'Вече има запис с :attribute.',
|
||||
'before' => ':attribute трябва да бъде дата преди :date.',
|
||||
'unique_object_for_user' => 'Това име вече се използва.',
|
||||
'unique_account_for_user' => 'Това име на потребител вече се използва.',
|
||||
'between.numeric' => ':attribute трябва да бъде между :min и :max.',
|
||||
'between.file' => ':attribute трябва да бъде с големина между :min и :max Kb.',
|
||||
'between.string' => ':attribute трябва да бъде с дължина между :min и :max символа.',
|
||||
'between.array' => ':attribute трябва да има между :min и :max елемента.',
|
||||
'boolean' => ':attribute трябва да бъде вярно или невярно.',
|
||||
'confirmed' => 'Потвържденито на :attribute не съвпада.',
|
||||
'date' => ':attribute не е валидна дата.',
|
||||
'date_format' => ':attribute не е в посоченият формат - :format.',
|
||||
'different' => ':attribute и :other трябва да са различни.',
|
||||
'digits' => ':attribute трябва да бъде с дължина :digits цифри.',
|
||||
'digits_between' => ':attribute трябва да бъде с дължина между :min и :max цифри.',
|
||||
'email' => ':attribute трябва да бъде валиден имейл адрес.',
|
||||
'filled' => 'Полето :attribute е задължително.',
|
||||
'exists' => 'Избраният :attribute е невалиден.',
|
||||
'image' => ':attribute трябва да е изображение.',
|
||||
'in' => 'Избраният :attribute е невалиден.',
|
||||
'integer' => ':attribute трябва да бъде цяло число.',
|
||||
'ip' => ':attribute трябва да бъде валиден IP адрес.',
|
||||
'json' => ':attribute трябва да е валиден JSON низ.',
|
||||
'max.numeric' => ':attribute не трябва да бъде по-голям от :max.',
|
||||
'max.file' => ':attribute не може да бъде по-голям от :max Kb.',
|
||||
'max.string' => ':attribute не може да бъде по-дълъг от :max символа.',
|
||||
'max.array' => ':attribute не трябва да има повече от :max елемента.',
|
||||
'mimes' => ':attribute трябва да бъде файл от следните типове: :values.',
|
||||
'min.numeric' => ':attribute трябва да бъде минимум :min.',
|
||||
'lte.numeric' => ':attribute трябва да е по-малко или равно на :value.',
|
||||
'min.file' => ':attribute трябва да бъде с големина минимум :min Kb.',
|
||||
'min.string' => ':attribute трябва да бъде минимум :min символа.',
|
||||
'min.array' => ':attribute трябва да има поне :min елемента.',
|
||||
'not_in' => 'Избраният :attribute е невалиден.',
|
||||
'numeric' => ':attribute трябва да бъде число.',
|
||||
'numeric_native' => 'Сумата в основна валута трябва да бъде число.',
|
||||
'numeric_destination' => 'Сумата в приходната сметка трябва да е число.',
|
||||
'numeric_source' => 'Сумата в разходната сметка трябва да е число.',
|
||||
'regex' => 'Форматът на :attribute е невалиден.',
|
||||
'required' => 'Полето :attribute е задължително.',
|
||||
'required_if' => 'Полето :attribute е задължително, когато :other е :value.',
|
||||
'required_unless' => 'Полето :attribute е задължително, освен когато :other е в :values.',
|
||||
'required_with' => 'Полето :attribute е задължително, когато присъства :values.',
|
||||
'required_with_all' => 'Полето :attribute е задължително, когато присъства :values.',
|
||||
'required_without' => 'Полето :attribute е задължително, когато не присъства :values.',
|
||||
'required_without_all' => 'Полето :attribute е задължително, когато не са избрано нищо от :values.',
|
||||
'same' => ':attribute и :other трябва да съвпадат.',
|
||||
'size.numeric' => ':attribute трябва да бъде :size.',
|
||||
'amount_min_over_max' => 'Минималната сума не може да бъде по-голяма от максималната.',
|
||||
'size.file' => ':attribute трябва да бъде с големина :size Kb.',
|
||||
'size.string' => ':attribute трябва да бъде с дължина :size символа.',
|
||||
'size.array' => ':attribute трябва да съдържа :size елемента.',
|
||||
'unique' => ':attribute вече е зает.',
|
||||
'string' => ':attribute трябва да бъде низ.',
|
||||
'url' => 'Форматът на :attribute е невалиден.',
|
||||
'timezone' => ':attribute трябва да бъде валидна зона.',
|
||||
'2fa_code' => 'Форматът на полето :attribute е невалиден.',
|
||||
'dimensions' => 'Изображението :attribute има невалидни размери.',
|
||||
'distinct' => 'Полето :attribute има дублираща се стойност.',
|
||||
'file' => ':attribute трябва да е файл.',
|
||||
'in_array' => 'Полето :attribute не съществува в :other.',
|
||||
'present' => 'Полето :attribute е задължително.',
|
||||
'amount_zero' => 'Общата сума не може да е нула.',
|
||||
'current_target_amount' => 'Текущата сума трябва да бъде по-малка от планираната сума.',
|
||||
'unique_piggy_bank_for_user' => 'Името на касичката трябва да е уникално.',
|
||||
'unique_object_group' => 'Името на групата трябва да е уникално',
|
||||
|
||||
'secure_password' => 'Това не е сигурна парола. Моля, опитайте отново. За повече информация посетете https://bit.ly/FF3-password-security',
|
||||
'valid_recurrence_rep_type' => 'Невалиден тип повторение за повтарящи се транзакции.',
|
||||
'valid_recurrence_rep_moment' => 'Невалиден момент на повторение за този тип повторение.',
|
||||
'invalid_account_info' => 'Невалидна информация за сметка.',
|
||||
'attributes' => [
|
||||
'email' => 'имейл адрес',
|
||||
'description' => 'описание',
|
||||
'amount' => 'сума',
|
||||
'name' => 'име',
|
||||
'piggy_bank_id' => 'ID касичка',
|
||||
'targetamount' => 'планирана сума',
|
||||
'opening_balance_date' => 'начална дата на баланса',
|
||||
'opening_balance' => 'начално салдо',
|
||||
'match' => 'съвпадение',
|
||||
'amount_min' => 'минимална сума',
|
||||
'amount_max' => 'максимална сума',
|
||||
'title' => 'заглавие',
|
||||
'tag' => 'етикет',
|
||||
'transaction_description' => 'описание на транзакция',
|
||||
'rule-action-value.1' => 'правило действие стойност #1',
|
||||
'rule-action-value.2' => 'правило действие стойност #2',
|
||||
'rule-action-value.3' => 'правило действие стойност #3',
|
||||
'rule-action-value.4' => 'правило действие стойност #4',
|
||||
'rule-action-value.5' => 'правило действие стойност #5',
|
||||
'rule-action.1' => 'правило действие #1',
|
||||
'rule-action.2' => 'правило действие #2',
|
||||
'rule-action.3' => 'правило действие #3',
|
||||
'rule-action.4' => 'правило действие #4',
|
||||
'rule-action.5' => 'правило действие #5',
|
||||
'rule-trigger-value.1' => 'правило задействане стойност #1',
|
||||
'rule-trigger-value.2' => 'правило задействане стойност #2',
|
||||
'rule-trigger-value.3' => 'правило задействане стойност #3',
|
||||
'rule-trigger-value.4' => 'правило задействане стойност #4',
|
||||
'rule-trigger-value.5' => 'правило задействане стойност #5',
|
||||
'rule-trigger.1' => 'правило задействане #1',
|
||||
'rule-trigger.2' => 'правило задействане #2',
|
||||
'rule-trigger.3' => 'правило задействане #3',
|
||||
'rule-trigger.4' => 'правило задействане #4',
|
||||
'rule-trigger.5' => 'правило задействане #5',
|
||||
],
|
||||
|
||||
// validation of accounts:
|
||||
'withdrawal_source_need_data' => 'Трябва да използвате валидно ID на разходната сметка и / или валидно име на разходната сметка, за да продължите.',
|
||||
'withdrawal_source_bad_data' => 'Не може да се намери валидна разходна сметка при търсене на ID ":id" или име ":name".',
|
||||
'withdrawal_dest_need_data' => 'Трябва да използвате валидно ID на приходната сметка и / или валидно име на приходната сметка, за да продължите.',
|
||||
'withdrawal_dest_bad_data' => 'Не може да се намери валидна приходна сметка при търсене на ID ":id" или име ":name".',
|
||||
|
||||
'deposit_source_need_data' => 'Трябва да използвате валидно ID на разходната сметка и / или валидно име на разходната сметка, за да продължите.',
|
||||
'deposit_source_bad_data' => 'Не може да се намери валидна разходна сметка при търсене на ID ":id" или име ":name".',
|
||||
'deposit_dest_need_data' => 'Трябва да използвате валидно ID на приходната сметка и / или валидно име на приходната сметка, за да продължите.',
|
||||
'deposit_dest_bad_data' => 'Не може да се намери валидна приходна сметка при търсене на ID ":id" или име ":name".',
|
||||
'deposit_dest_wrong_type' => 'Използваната приходна сметка не е от правилния тип.',
|
||||
|
||||
'transfer_source_need_data' => 'Трябва да използвате валидно ID на разходната сметка и / или валидно име на разходната сметка, за да продължите.',
|
||||
'transfer_source_bad_data' => 'Не може да се намери валидна разходна сметка при търсене на ID ":id" или име ":name".',
|
||||
'transfer_dest_need_data' => 'Трябва да използвате валидно ID на приходната сметка и / или валидно име на приходната сметка, за да продължите.',
|
||||
'transfer_dest_bad_data' => 'Не може да се намери валидна приходна сметка при търсене на ID ":id" или име ":name".',
|
||||
'need_id_in_edit' => 'Всяко разделяне трябва да има transaction_journal_id (или валидно ID или 0).',
|
||||
|
||||
'ob_source_need_data' => 'Трябва да използвате валидно ID на разходната сметка и / или валидно име на разходната сметка, за да продължите.',
|
||||
'ob_dest_need_data' => 'Трябва да използвате валидно ID на приходната сметка и / или валидно име на приходната сметка, за да продължите.',
|
||||
'ob_dest_bad_data' => 'Не може да се намери валидна приходна сметка при търсене на ID ":id" или име ":name".',
|
||||
|
||||
'generic_invalid_source' => 'Не може да използвате тази сметка като разходна сметка.',
|
||||
'generic_invalid_destination' => 'Не може да използвате тази сметка като приходна сметка.',
|
||||
|
||||
'gte.numeric' => ':attribute трябва да е по-голямо или равно на :value.',
|
||||
'gt.numeric' => ':attribute трябва да бъде по-голям от :value.',
|
||||
'gte.file' => ':attribute трябва да е по-голямо или равно на :value Kb.',
|
||||
'gte.string' => ':attribute трябва да е по-голямо или равно на :value символа.',
|
||||
'gte.array' => ':attribute трябва да има :value елемента или повече.',
|
||||
|
||||
'amount_required_for_auto_budget' => 'Необходима е сума.',
|
||||
'auto_budget_amount_positive' => 'Сумата трябва да е по-голяма от нула.',
|
||||
'auto_budget_period_mandatory' => 'Периодът на автоматичния бюджет е задължително поле.',
|
||||
];
|
@ -620,12 +620,12 @@ return [
|
||||
'pref_optional_tj_internal_reference' => 'Interner Verweis',
|
||||
'pref_optional_tj_notes' => 'Notizen',
|
||||
'pref_optional_tj_attachments' => 'Anhänge',
|
||||
'pref_optional_tj_external_uri' => 'External URI',
|
||||
'pref_optional_tj_external_uri' => 'Externe URI',
|
||||
'optional_field_meta_dates' => 'Daten',
|
||||
'optional_field_meta_business' => 'Geschäftlich',
|
||||
'optional_field_attachments' => 'Anhänge',
|
||||
'optional_field_meta_data' => 'Optionale Metadaten',
|
||||
'external_uri' => 'External URI',
|
||||
'external_uri' => 'Externe URI',
|
||||
|
||||
// profile:
|
||||
'delete_stuff_header' => 'Daten aus Firefly III löschen',
|
||||
@ -720,10 +720,10 @@ return [
|
||||
'profile_scopes' => 'Bereiche',
|
||||
'profile_revoke' => 'Widerrufen',
|
||||
'profile_oauth_client_secret_title' => 'Client Secret',
|
||||
'profile_oauth_client_secret_expl' => 'Here is your new client secret. This is the only time it will be shown so don\'t lose it! You may now use this secret to make API requests.',
|
||||
'profile_oauth_client_secret_expl' => 'Hier ist Ihr neuer persönlicher Zugangsschlüssel. Dies ist das einzige Mal, dass er angezeigt wird, also verlieren Sie ihn nicht! Sie können diesen Token jetzt verwenden, um API-Anfragen zu stellen.',
|
||||
'profile_personal_access_tokens' => 'Persönliche Zugangs-Tokens',
|
||||
'profile_personal_access_token' => 'Persönlicher Zugangs-Token',
|
||||
'profile_oauth_confidential' => 'Confidential',
|
||||
'profile_oauth_confidential' => 'Vertraulich',
|
||||
'profile_oauth_confidential_help' => 'Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.',
|
||||
'profile_personal_access_token_explanation' => 'Hier ist Ihr neues persönlicher Zugangsschlüssel. Dies ist das einzige Mal, dass er angezeigt wird, also verlieren Sie ihn nicht! Sie können dieses Token jetzt verwenden, um API-Anfragen zu stellen.',
|
||||
'profile_no_personal_access_token' => 'Sie haben keine persönlichen Zugangsschlüssel erstellt.',
|
||||
@ -947,7 +947,7 @@ return [
|
||||
'bill_expected_date' => 'Voraussichtlich :date',
|
||||
|
||||
// accounts:
|
||||
'inactive_account_link' => 'Sie haben :count inaktives (archiviertes) Konto, das Sie auf dieser separaten Seite sehen können. Sie haben :count inaktive (archivierte) Konten, die Sie auf dieser separaten Seite anzeigen können.',
|
||||
'inactive_account_link' => 'Sie haben :count inaktives (archiviertes) Konto, das Sie auf dieser separaten Seite sehen können.|Sie haben :count inaktive (archivierte) Konten, die Sie auf dieser separaten Seite anzeigen können.',
|
||||
'all_accounts_inactive' => 'Dies sind Ihre inaktiven Konten.',
|
||||
'active_account_link' => 'Diese Verknüpfung führt zurück zu Ihren aktiven Konten.',
|
||||
'account_missing_transaction' => 'Konto #:id („:name”) kann nicht direkt angezeigt werden, da Firefly III Weiterleitungsinformationen fehlen.',
|
||||
|
@ -453,7 +453,7 @@ return [
|
||||
'rule_trigger_foreign_currency_is_choice' => 'La transacción en moneda extranjera es..',
|
||||
'rule_trigger_foreign_currency_is' => 'La transacción en moneda extranjera es ":trigger_value"',
|
||||
'rule_trigger_has_attachments_choice' => 'Tiene al menos tantos archivos adjuntos',
|
||||
'rule_trigger_has_attachments' => 'Has at least :trigger_value attachment(s)',
|
||||
'rule_trigger_has_attachments' => 'Tiene al menos :trigger_value anexo(s)',
|
||||
'rule_trigger_store_journal' => 'Cuando la transacción es creada',
|
||||
'rule_trigger_update_journal' => 'Cuando la transacción es actualizada',
|
||||
'rule_trigger_has_no_category_choice' => 'No tiene categoría',
|
||||
@ -555,7 +555,7 @@ return [
|
||||
'select_tags_to_delete' => 'No olvide seleccionar algunas etiquetas.',
|
||||
'deleted_x_tags' => 'Eliminado :count etiqueta.|Eliminado :count etiquetas.',
|
||||
'create_rule_from_transaction' => 'Crear regla basada en la transacción',
|
||||
'create_recurring_from_transaction' => 'Create recurring transaction based on transaction',
|
||||
'create_recurring_from_transaction' => 'Crear una transacción recurrente basada en la transacción',
|
||||
|
||||
|
||||
// preferences
|
||||
@ -735,10 +735,10 @@ return [
|
||||
'profile_something_wrong' => '¡Algo salió mal!',
|
||||
'profile_try_again' => 'Algo salió mal. Por favor, vuelva a intentarlo.',
|
||||
'amounts' => 'Importes',
|
||||
'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.',
|
||||
'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.',
|
||||
'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_unknown' => 'Dependiendo del tipo de transacción que cree, la cuenta de origen y/o destino de divisiones posteriores puede ser anulada por lo que se define en la primera división de la transacción.',
|
||||
'multi_account_warning_withdrawal' => 'Tenga en cuenta que la cuenta de origen de las divisiones posteriores será anulada por lo que se defina en la primera división del retiro.',
|
||||
'multi_account_warning_deposit' => 'Tenga en cuenta que la cuenta de destino de las divisiones posteriores será anulada por lo que se defina en la primera división del retiro.',
|
||||
'multi_account_warning_transfer' => 'Tenga en cuenta que la cuenta de origen + destino de divisiones posteriores será anulada por lo que se defina en la primera división de la transferencia.',
|
||||
|
||||
// export data:
|
||||
'export_data_title' => 'Exportar datos de Firefly III',
|
||||
@ -981,11 +981,11 @@ return [
|
||||
'expense_accounts' => 'Cuentas de gastos',
|
||||
'expense_accounts_inactive' => 'Cuentas de gastos (inactivas)',
|
||||
'revenue_accounts' => 'Cuentas de ingresos',
|
||||
'revenue_accounts_inactive' => 'Revenue accounts (inactive)',
|
||||
'revenue_accounts_inactive' => 'Cuentas de ingresos (inactivas)',
|
||||
'cash_accounts' => 'Cuentas de efectivo',
|
||||
'Cash account' => 'Cuenta de efectivo',
|
||||
'liabilities_accounts' => 'Pasivos',
|
||||
'liabilities_accounts_inactive' => 'Liabilities (inactive)',
|
||||
'liabilities_accounts_inactive' => 'Pasivos (inactivos)',
|
||||
'reconcile_account' => 'Reconciliar cuenta ":account"',
|
||||
'overview_of_reconcile_modal' => 'Resumen de reconciliación',
|
||||
'delete_reconciliation' => 'Eliminar reconciliacion',
|
||||
|
Loading…
Reference in New Issue
Block a user