Update meta data for new release.

This commit is contained in:
James Cole 2023-12-03 08:14:32 +01:00
parent 40083bf2b4
commit 2660dc5bf7
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80
105 changed files with 666 additions and 540 deletions

View File

@ -226,16 +226,16 @@
},
{
"name": "friendsofphp/php-cs-fixer",
"version": "v3.40.0",
"version": "v3.40.1",
"source": {
"type": "git",
"url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
"reference": "27d2b3265b5d550ec411b4319967ae7cfddfb2e0"
"reference": "7002f09c9593f515625a9f9717b10c2ab64dd3d5"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/27d2b3265b5d550ec411b4319967ae7cfddfb2e0",
"reference": "27d2b3265b5d550ec411b4319967ae7cfddfb2e0",
"url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/7002f09c9593f515625a9f9717b10c2ab64dd3d5",
"reference": "7002f09c9593f515625a9f9717b10c2ab64dd3d5",
"shasum": ""
},
"require": {
@ -307,7 +307,7 @@
],
"support": {
"issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
"source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.40.0"
"source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.40.1"
},
"funding": [
{
@ -315,7 +315,7 @@
"type": "github"
}
],
"time": "2023-11-26T09:25:53+00:00"
"time": "2023-12-02T23:18:26+00:00"
},
{
"name": "psr/container",

View File

@ -61,7 +61,7 @@ class DashboardChartRequest extends FormRequest
return [
'start' => 'required|date|after:1900-01-01|before:2099-12-31',
'end' => 'required|date|after_or_equal:start|before:2099-12-31|after:1900-01-01',
'preselected' => sprintf('in:%s', join(',', config('firefly.preselected_accounts'))),
'preselected' => sprintf('in:%s', implode(',', config('firefly.preselected_accounts'))),
'accounts.*' => 'exists:accounts,id',
];
}

View File

@ -3,6 +3,40 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## 6.1.0 - 2023-12-05
> This release required **PHP 8.3.0** and will not work on earlier releases of PHP
### Added
- [Issue 7571](https://github.com/firefly-iii/firefly-iii/issues/7571) More tag search options
- [Issue 7781](https://github.com/firefly-iii/firefly-iii/issues/7781) Nice wrapper script for artisan commands
- UI also supports time for transactions
### Changed
- Requires PHP8.3
- [Issue 8148](https://github.com/firefly-iii/firefly-iii/issues/8148) Slovenian language updates
- [Issue 8023](https://github.com/firefly-iii/firefly-iii/issues/8023) Top bar is now fixed in place
### Deprecated
- Support for PHP 8.2
### Fixed
- [Issue 8106](https://github.com/firefly-iii/firefly-iii/issues/8106) [issue 8195](https://github.com/firefly-iii/firefly-iii/issues/8195) [issue 8163](https://github.com/firefly-iii/firefly-iii/issues/8163) Various changes and fixes to bill date calculation
- [Issue 8137](https://github.com/firefly-iii/firefly-iii/issues/8137) Fix uneven amount error from cron job
- [Issue 8192](https://github.com/firefly-iii/firefly-iii/issues/8192) No matching transactions found.Rule with trigger NOT Transaction is reconciled returns
- [Issue 8207](https://github.com/firefly-iii/firefly-iii/issues/8207) Broken links, thanks @Maxco10!
- [Issue 8138](https://github.com/firefly-iii/firefly-iii/issues/8138) Reconciled transactions can't be "store(d) as new"
- [Issue 7716](https://github.com/firefly-iii/firefly-iii/issues/7716) Removed bar in budget overview
### API
- [Issue 8022](https://github.com/firefly-iii/firefly-iii/issues/8022) API chart expansions
- [Issue 8106](https://github.com/firefly-iii/firefly-iii/issues/8106) API reports empty string instead of NULL
## 6.0.30 - 2023-10-29
### Fixed

View File

@ -114,9 +114,9 @@ return [
'handle_debts' => true,
// see cer.php for exchange rates feature flag.
],
'version' => '6.0.30',
'api_version' => '2.0.11',
'db_version' => 21,
'version' => '6.1.0',
'api_version' => '2.0.12',
'db_version' => 22,
// generic settings
'maxUploadSize' => 1073741824, // 1 GB

View File

@ -35,6 +35,7 @@ return [
'4.8.0' => 'This is a huge upgrade for Firefly III. Please expect bugs and errors, and bear with me as I fix them. I tested a lot of things but pretty sure I missed some. Thanks for understanding.',
'4.8.1' => 'This version of Firefly III requires PHP7.3.',
'5.3.0' => 'This version of Firefly III requires PHP7.4.',
'6.1' => 'This version of Firefly III requires PHP8.3.',
],
'install' => [
'4.3' => 'Welcome to Firefly! Make sure you follow the installation guide. If you need more help, please check Github or the Firefly III website. The installation guide has a FAQ which you should check out as well.',
@ -48,6 +49,7 @@ return [
'4.8.0' => 'This is a huge upgrade for Firefly III. Please expect bugs and errors, and bear with me as I fix them. I tested a lot of things but pretty sure I missed some. Thanks for understanding.',
'4.8.1' => 'This version of Firefly III requires PHP7.3.',
'5.3.0' => 'This version of Firefly III requires PHP7.4.',
'6.1' => 'This version of Firefly III requires PHP8.3.',
],
],
];

404
package-lock.json generated
View File

@ -21,14 +21,14 @@
"axios": "^1.6.1",
"laravel-vite-plugin": "^0.8.1",
"sass": "^1.69.4",
"vite": "^5.0.2",
"vite": "^4.0.0",
"vite-plugin-manifest-sri": "^0.2.0"
}
},
"node_modules/@babel/runtime": {
"version": "7.23.2",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz",
"integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==",
"version": "7.23.5",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.5.tgz",
"integrity": "sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
@ -37,9 +37,9 @@
}
},
"node_modules/@esbuild/android-arm": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.6.tgz",
"integrity": "sha512-muPzBqXJKCbMYoNbb1JpZh/ynl0xS6/+pLjrofcR3Nad82SbsCogYzUE6Aq9QT3cLP0jR/IVK/NHC9b90mSHtg==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz",
"integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==",
"cpu": [
"arm"
],
@ -53,9 +53,9 @@
}
},
"node_modules/@esbuild/android-arm64": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.6.tgz",
"integrity": "sha512-KQ/hbe9SJvIJ4sR+2PcZ41IBV+LPJyYp6V1K1P1xcMRup9iYsBoQn4MzE3mhMLOld27Au2eDcLlIREeKGUXpHQ==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz",
"integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==",
"cpu": [
"arm64"
],
@ -69,9 +69,9 @@
}
},
"node_modules/@esbuild/android-x64": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.6.tgz",
"integrity": "sha512-VVJVZQ7p5BBOKoNxd0Ly3xUM78Y4DyOoFKdkdAe2m11jbh0LEU4bPles4e/72EMl4tapko8o915UalN/5zhspg==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz",
"integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==",
"cpu": [
"x64"
],
@ -85,9 +85,9 @@
}
},
"node_modules/@esbuild/darwin-arm64": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.6.tgz",
"integrity": "sha512-91LoRp/uZAKx6ESNspL3I46ypwzdqyDLXZH7x2QYCLgtnaU08+AXEbabY2yExIz03/am0DivsTtbdxzGejfXpA==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz",
"integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==",
"cpu": [
"arm64"
],
@ -101,9 +101,9 @@
}
},
"node_modules/@esbuild/darwin-x64": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.6.tgz",
"integrity": "sha512-QCGHw770ubjBU1J3ZkFJh671MFajGTYMZumPs9E/rqU52md6lIil97BR0CbPq6U+vTh3xnTNDHKRdR8ggHnmxQ==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz",
"integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==",
"cpu": [
"x64"
],
@ -117,9 +117,9 @@
}
},
"node_modules/@esbuild/freebsd-arm64": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.6.tgz",
"integrity": "sha512-J53d0jGsDcLzWk9d9SPmlyF+wzVxjXpOH7jVW5ae7PvrDst4kiAz6sX+E8btz0GB6oH12zC+aHRD945jdjF2Vg==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz",
"integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==",
"cpu": [
"arm64"
],
@ -133,9 +133,9 @@
}
},
"node_modules/@esbuild/freebsd-x64": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.6.tgz",
"integrity": "sha512-hn9qvkjHSIB5Z9JgCCjED6YYVGCNpqB7dEGavBdG6EjBD8S/UcNUIlGcB35NCkMETkdYwfZSvD9VoDJX6VeUVA==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz",
"integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==",
"cpu": [
"x64"
],
@ -149,9 +149,9 @@
}
},
"node_modules/@esbuild/linux-arm": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.6.tgz",
"integrity": "sha512-G8IR5zFgpXad/Zp7gr7ZyTKyqZuThU6z1JjmRyN1vSF8j0bOlGzUwFSMTbctLAdd7QHpeyu0cRiuKrqK1ZTwvQ==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz",
"integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==",
"cpu": [
"arm"
],
@ -165,9 +165,9 @@
}
},
"node_modules/@esbuild/linux-arm64": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.6.tgz",
"integrity": "sha512-HQCOrk9XlH3KngASLaBfHpcoYEGUt829A9MyxaI8RMkfRA8SakG6YQEITAuwmtzFdEu5GU4eyhKcpv27dFaOBg==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz",
"integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==",
"cpu": [
"arm64"
],
@ -181,9 +181,9 @@
}
},
"node_modules/@esbuild/linux-ia32": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.6.tgz",
"integrity": "sha512-22eOR08zL/OXkmEhxOfshfOGo8P69k8oKHkwkDrUlcB12S/sw/+COM4PhAPT0cAYW/gpqY2uXp3TpjQVJitz7w==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz",
"integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==",
"cpu": [
"ia32"
],
@ -197,9 +197,9 @@
}
},
"node_modules/@esbuild/linux-loong64": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.6.tgz",
"integrity": "sha512-82RvaYAh/SUJyjWA8jDpyZCHQjmEggL//sC7F3VKYcBMumQjUL3C5WDl/tJpEiKtt7XrWmgjaLkrk205zfvwTA==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz",
"integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==",
"cpu": [
"loong64"
],
@ -213,9 +213,9 @@
}
},
"node_modules/@esbuild/linux-mips64el": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.6.tgz",
"integrity": "sha512-8tvnwyYJpR618vboIv2l8tK2SuK/RqUIGMfMENkeDGo3hsEIrpGldMGYFcWxWeEILe5Fi72zoXLmhZ7PR23oQA==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz",
"integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==",
"cpu": [
"mips64el"
],
@ -229,9 +229,9 @@
}
},
"node_modules/@esbuild/linux-ppc64": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.6.tgz",
"integrity": "sha512-Qt+D7xiPajxVNk5tQiEJwhmarNnLPdjXAoA5uWMpbfStZB0+YU6a3CtbWYSy+sgAsnyx4IGZjWsTzBzrvg/fMA==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz",
"integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==",
"cpu": [
"ppc64"
],
@ -245,9 +245,9 @@
}
},
"node_modules/@esbuild/linux-riscv64": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.6.tgz",
"integrity": "sha512-lxRdk0iJ9CWYDH1Wpnnnc640ajF4RmQ+w6oHFZmAIYu577meE9Ka/DCtpOrwr9McMY11ocbp4jirgGgCi7Ls/g==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz",
"integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==",
"cpu": [
"riscv64"
],
@ -261,9 +261,9 @@
}
},
"node_modules/@esbuild/linux-s390x": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.6.tgz",
"integrity": "sha512-MopyYV39vnfuykHanRWHGRcRC3AwU7b0QY4TI8ISLfAGfK+tMkXyFuyT1epw/lM0pflQlS53JoD22yN83DHZgA==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz",
"integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==",
"cpu": [
"s390x"
],
@ -277,9 +277,9 @@
}
},
"node_modules/@esbuild/linux-x64": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.6.tgz",
"integrity": "sha512-UWcieaBzsN8WYbzFF5Jq7QULETPcQvlX7KL4xWGIB54OknXJjBO37sPqk7N82WU13JGWvmDzFBi1weVBajPovg==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz",
"integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==",
"cpu": [
"x64"
],
@ -293,9 +293,9 @@
}
},
"node_modules/@esbuild/netbsd-x64": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.6.tgz",
"integrity": "sha512-EpWiLX0fzvZn1wxtLxZrEW+oQED9Pwpnh+w4Ffv8ZLuMhUoqR9q9rL4+qHW8F4Mg5oQEKxAoT0G+8JYNqCiR6g==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz",
"integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==",
"cpu": [
"x64"
],
@ -309,9 +309,9 @@
}
},
"node_modules/@esbuild/openbsd-x64": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.6.tgz",
"integrity": "sha512-fFqTVEktM1PGs2sLKH4M5mhAVEzGpeZJuasAMRnvDZNCV0Cjvm1Hu35moL2vC0DOrAQjNTvj4zWrol/lwQ8Deg==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz",
"integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==",
"cpu": [
"x64"
],
@ -325,9 +325,9 @@
}
},
"node_modules/@esbuild/sunos-x64": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.6.tgz",
"integrity": "sha512-M+XIAnBpaNvaVAhbe3uBXtgWyWynSdlww/JNZws0FlMPSBy+EpatPXNIlKAdtbFVII9OpX91ZfMb17TU3JKTBA==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz",
"integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==",
"cpu": [
"x64"
],
@ -341,9 +341,9 @@
}
},
"node_modules/@esbuild/win32-arm64": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.6.tgz",
"integrity": "sha512-2DchFXn7vp/B6Tc2eKdTsLzE0ygqKkNUhUBCNtMx2Llk4POIVMUq5rUYjdcedFlGLeRe1uLCpVvCmE+G8XYybA==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz",
"integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==",
"cpu": [
"arm64"
],
@ -357,9 +357,9 @@
}
},
"node_modules/@esbuild/win32-ia32": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.6.tgz",
"integrity": "sha512-PBo/HPDQllyWdjwAVX+Gl2hH0dfBydL97BAH/grHKC8fubqp02aL4S63otZ25q3sBdINtOBbz1qTZQfXbP4VBg==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz",
"integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==",
"cpu": [
"ia32"
],
@ -373,9 +373,9 @@
}
},
"node_modules/@esbuild/win32-x64": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.6.tgz",
"integrity": "sha512-OE7yIdbDif2kKfrGa+V0vx/B3FJv2L4KnIiLlvtibPyO9UkgO3rzYE0HhpREo2vmJ1Ixq1zwm9/0er+3VOSZJA==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz",
"integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==",
"cpu": [
"x64"
],
@ -389,9 +389,9 @@
}
},
"node_modules/@fortawesome/fontawesome-free": {
"version": "6.4.2",
"resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-6.4.2.tgz",
"integrity": "sha512-m5cPn3e2+FDCOgi1mz0RexTUvvQibBebOUlUlW0+YrMjDTPkiJ6VTKukA1GRsvRw+12KyJndNjj0O4AgTxm2Pg==",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-6.5.1.tgz",
"integrity": "sha512-CNy5vSwN3fsUStPRLX7fUYojyuzoEMSXPl7zSLJ8TgtRfjv24LOnOWKT2zYwaHZCJGkdyRnTmstR0P+Ah503Gw==",
"hasInstallScript": true,
"engines": {
"node": ">=6"
@ -411,162 +411,6 @@
"url": "https://opencollective.com/popperjs"
}
},
"node_modules/@rollup/rollup-android-arm-eabi": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.5.0.tgz",
"integrity": "sha512-OINaBGY+Wc++U0rdr7BLuFClxcoWaVW3vQYqmQq6B3bqQ/2olkaoz+K8+af/Mmka/C2yN5j+L9scBkv4BtKsDA==",
"cpu": [
"arm"
],
"dev": true,
"optional": true,
"os": [
"android"
]
},
"node_modules/@rollup/rollup-android-arm64": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.5.0.tgz",
"integrity": "sha512-UdMf1pOQc4ZmUA/NTmKhgJTBimbSKnhPS2zJqucqFyBRFPnPDtwA8MzrGNTjDeQbIAWfpJVAlxejw+/lQyBK/w==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"android"
]
},
"node_modules/@rollup/rollup-darwin-arm64": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.5.0.tgz",
"integrity": "sha512-L0/CA5p/idVKI+c9PcAPGorH6CwXn6+J0Ys7Gg1axCbTPgI8MeMlhA6fLM9fK+ssFhqogMHFC8HDvZuetOii7w==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"darwin"
]
},
"node_modules/@rollup/rollup-darwin-x64": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.5.0.tgz",
"integrity": "sha512-QZCbVqU26mNlLn8zi/XDDquNmvcr4ON5FYAHQQsyhrHx8q+sQi/6xduoznYXwk/KmKIXG5dLfR0CvY+NAWpFYQ==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"darwin"
]
},
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.5.0.tgz",
"integrity": "sha512-VpSQ+xm93AeV33QbYslgf44wc5eJGYfYitlQzAi3OObu9iwrGXEnmu5S3ilkqE3Pr/FkgOiJKV/2p0ewf4Hrtg==",
"cpu": [
"arm"
],
"dev": true,
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-arm64-gnu": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.5.0.tgz",
"integrity": "sha512-OrEyIfpxSsMal44JpEVx9AEcGpdBQG1ZuWISAanaQTSMeStBW+oHWwOkoqR54bw3x8heP8gBOyoJiGg+fLY8qQ==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-arm64-musl": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.5.0.tgz",
"integrity": "sha512-1H7wBbQuE6igQdxMSTjtFfD+DGAudcYWhp106z/9zBA8OQhsJRnemO4XGavdzHpGhRtRxbgmUGdO3YQgrWf2RA==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-x64-gnu": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.5.0.tgz",
"integrity": "sha512-FVyFI13tXw5aE65sZdBpNjPVIi4Q5mARnL/39UIkxvSgRAIqCo5sCpCELk0JtXHGee2owZz5aNLbWNfBHzr71Q==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-x64-musl": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.5.0.tgz",
"integrity": "sha512-eBPYl2sLpH/o8qbSz6vPwWlDyThnQjJfcDOGFbNjmjb44XKC1F5dQfakOsADRVrXCNzM6ZsSIPDG5dc6HHLNFg==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-win32-arm64-msvc": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.5.0.tgz",
"integrity": "sha512-xaOHIfLOZypoQ5U2I6rEaugS4IYtTgP030xzvrBf5js7p9WI9wik07iHmsKaej8Z83ZDxN5GyypfoyKV5O5TJA==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"win32"
]
},
"node_modules/@rollup/rollup-win32-ia32-msvc": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.5.0.tgz",
"integrity": "sha512-Al6quztQUrHwcOoU2TuFblUQ5L+/AmPBXFR6dUvyo4nRj2yQRK0WIUaGMF/uwKulvRcXkpHe3k9A8Vf93VDktA==",
"cpu": [
"ia32"
],
"dev": true,
"optional": true,
"os": [
"win32"
]
},
"node_modules/@rollup/rollup-win32-x64-msvc": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.5.0.tgz",
"integrity": "sha512-8kdW+brNhI/NzJ4fxDufuJUjepzINqJKLGHuxyAtpPG9bMbn8P5mtaCcbOm0EzLJ+atg+kF9dwg8jpclkVqx5w==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"win32"
]
},
"node_modules/@vue/reactivity": {
"version": "3.1.5",
"resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.1.5.tgz",
@ -654,9 +498,9 @@
}
},
"node_modules/bootstrap5-autocomplete": {
"version": "1.1.23",
"resolved": "https://registry.npmjs.org/bootstrap5-autocomplete/-/bootstrap5-autocomplete-1.1.23.tgz",
"integrity": "sha512-jmqk7muFampKGPNzp6ABCAZWB38rfRpUyqx1vqn4Wssj88X1xODQGI+hnPAPGfePIjMLEK0Xhd1Is4kva1PUrg=="
"version": "1.1.25",
"resolved": "https://registry.npmjs.org/bootstrap5-autocomplete/-/bootstrap5-autocomplete-1.1.25.tgz",
"integrity": "sha512-6Z7vzlVBJduPUi7U1MPRBzoXmJf8ob9tGcUNxxos6qU1bbjPX7Li30r1Dhtk55hSBfPmVuN7p6zahF7G38xtWA=="
},
"node_modules/braces": {
"version": "3.0.2",
@ -762,9 +606,9 @@
}
},
"node_modules/esbuild": {
"version": "0.19.6",
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.6.tgz",
"integrity": "sha512-Xl7dntjA2OEIvpr9j0DVxxnog2fyTGnyVoQXAMQI6eR3mf9zCQds7VIKUDCotDgE/p4ncTgeRqgX8t5d6oP4Gw==",
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz",
"integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==",
"dev": true,
"hasInstallScript": true,
"bin": {
@ -774,28 +618,28 @@
"node": ">=12"
},
"optionalDependencies": {
"@esbuild/android-arm": "0.19.6",
"@esbuild/android-arm64": "0.19.6",
"@esbuild/android-x64": "0.19.6",
"@esbuild/darwin-arm64": "0.19.6",
"@esbuild/darwin-x64": "0.19.6",
"@esbuild/freebsd-arm64": "0.19.6",
"@esbuild/freebsd-x64": "0.19.6",
"@esbuild/linux-arm": "0.19.6",
"@esbuild/linux-arm64": "0.19.6",
"@esbuild/linux-ia32": "0.19.6",
"@esbuild/linux-loong64": "0.19.6",
"@esbuild/linux-mips64el": "0.19.6",
"@esbuild/linux-ppc64": "0.19.6",
"@esbuild/linux-riscv64": "0.19.6",
"@esbuild/linux-s390x": "0.19.6",
"@esbuild/linux-x64": "0.19.6",
"@esbuild/netbsd-x64": "0.19.6",
"@esbuild/openbsd-x64": "0.19.6",
"@esbuild/sunos-x64": "0.19.6",
"@esbuild/win32-arm64": "0.19.6",
"@esbuild/win32-ia32": "0.19.6",
"@esbuild/win32-x64": "0.19.6"
"@esbuild/android-arm": "0.18.20",
"@esbuild/android-arm64": "0.18.20",
"@esbuild/android-x64": "0.18.20",
"@esbuild/darwin-arm64": "0.18.20",
"@esbuild/darwin-x64": "0.18.20",
"@esbuild/freebsd-arm64": "0.18.20",
"@esbuild/freebsd-x64": "0.18.20",
"@esbuild/linux-arm": "0.18.20",
"@esbuild/linux-arm64": "0.18.20",
"@esbuild/linux-ia32": "0.18.20",
"@esbuild/linux-loong64": "0.18.20",
"@esbuild/linux-mips64el": "0.18.20",
"@esbuild/linux-ppc64": "0.18.20",
"@esbuild/linux-riscv64": "0.18.20",
"@esbuild/linux-s390x": "0.18.20",
"@esbuild/linux-x64": "0.18.20",
"@esbuild/netbsd-x64": "0.18.20",
"@esbuild/openbsd-x64": "0.18.20",
"@esbuild/sunos-x64": "0.18.20",
"@esbuild/win32-arm64": "0.18.20",
"@esbuild/win32-ia32": "0.18.20",
"@esbuild/win32-x64": "0.18.20"
}
},
"node_modules/fill-range": {
@ -1021,9 +865,9 @@
}
},
"node_modules/postcss": {
"version": "8.4.31",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
"integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
"version": "8.4.32",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.32.tgz",
"integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==",
"dev": true,
"funding": [
{
@ -1040,7 +884,7 @@
}
],
"dependencies": {
"nanoid": "^3.3.6",
"nanoid": "^3.3.7",
"picocolors": "^1.0.0",
"source-map-js": "^1.0.2"
},
@ -1072,30 +916,18 @@
"integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="
},
"node_modules/rollup": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.5.0.tgz",
"integrity": "sha512-41xsWhzxqjMDASCxH5ibw1mXk+3c4TNI2UjKbLxe6iEzrSQnqOzmmK8/3mufCPbzHNJ2e04Fc1ddI35hHy+8zg==",
"version": "3.29.4",
"resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz",
"integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==",
"dev": true,
"bin": {
"rollup": "dist/bin/rollup"
},
"engines": {
"node": ">=18.0.0",
"node": ">=14.18.0",
"npm": ">=8.0.0"
},
"optionalDependencies": {
"@rollup/rollup-android-arm-eabi": "4.5.0",
"@rollup/rollup-android-arm64": "4.5.0",
"@rollup/rollup-darwin-arm64": "4.5.0",
"@rollup/rollup-darwin-x64": "4.5.0",
"@rollup/rollup-linux-arm-gnueabihf": "4.5.0",
"@rollup/rollup-linux-arm64-gnu": "4.5.0",
"@rollup/rollup-linux-arm64-musl": "4.5.0",
"@rollup/rollup-linux-x64-gnu": "4.5.0",
"@rollup/rollup-linux-x64-musl": "4.5.0",
"@rollup/rollup-win32-arm64-msvc": "4.5.0",
"@rollup/rollup-win32-ia32-msvc": "4.5.0",
"@rollup/rollup-win32-x64-msvc": "4.5.0",
"fsevents": "~2.3.2"
}
},
@ -1146,29 +978,29 @@
}
},
"node_modules/vite": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/vite/-/vite-5.0.2.tgz",
"integrity": "sha512-6CCq1CAJCNM1ya2ZZA7+jS2KgnhbzvxakmlIjN24cF/PXhRMzpM/z8QgsVJA/Dm5fWUWnVEsmtBoMhmerPxT0g==",
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/vite/-/vite-4.5.0.tgz",
"integrity": "sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==",
"dev": true,
"dependencies": {
"esbuild": "^0.19.3",
"postcss": "^8.4.31",
"rollup": "^4.2.0"
"esbuild": "^0.18.10",
"postcss": "^8.4.27",
"rollup": "^3.27.1"
},
"bin": {
"vite": "bin/vite.js"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
"node": "^14.18.0 || >=16.0.0"
},
"funding": {
"url": "https://github.com/vitejs/vite?sponsor=1"
},
"optionalDependencies": {
"fsevents": "~2.3.3"
"fsevents": "~2.3.2"
},
"peerDependencies": {
"@types/node": "^18.0.0 || >=20.0.0",
"@types/node": ">= 14",
"less": "*",
"lightningcss": "^1.21.0",
"sass": "*",

View File

@ -9,7 +9,7 @@
"axios": "^1.6.1",
"laravel-vite-plugin": "^0.8.1",
"sass": "^1.69.4",
"vite": "^5.0.2",
"vite": "^4.0.0",
"vite-plugin-manifest-sri": "^0.2.0"
},
"dependencies": {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,60 +1,60 @@
{
"_load-translations-66c1b55b.js": {
"file": "assets/load-translations-66c1b55b.js",
"integrity": "sha384-LghrXNcZpJUs4cfzvWnfc5IFBY8L7Mq/j+DxTZ0xlXqnY10TsIeMj+VvXy1yl74w"
"_load-translations-85b093de.js": {
"file": "assets/load-translations-85b093de.js",
"integrity": "sha384-AQsbwlyfi+JD0G6ymSMcfR9FfVJIdqMf/btUvbHkKcRLKTnIN0orw0xpEAajOEWs"
},
"node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf": {
"file": "assets/fa-brands-400-003f1154.ttf",
"file": "assets/fa-brands-400-5656d596.ttf",
"src": "node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf",
"integrity": "sha384-4EQH+PmKesDrfu4je7V8FqFBmki3WyM5kRanRrc8h0mBNO4t1nDOTN6DIxfmm4pE"
"integrity": "sha384-z6ErMQpm9VO+PSzFwaRYqupTfPdf/8FqehfXiAegd1OsCVEwyxGfXRitsOAlSwL8"
},
"node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2": {
"file": "assets/fa-brands-400-faae6fc0.woff2",
"file": "assets/fa-brands-400-3a8924cd.woff2",
"src": "node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2",
"integrity": "sha384-nWRwAM374M2/Kes6S6O2dGHU0rqnWmg0z0XxZiW15DCy3XRY0/oTfALEnWzGDaRL"
"integrity": "sha384-bkcB7e1rvHdmNnhkhQO4nuNk9I0RiTPMW8QUEuAB43yV0a+pj+4wcq0TqdEjkAG0"
},
"node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf": {
"file": "assets/fa-regular-400-7d81a1a7.ttf",
"file": "assets/fa-regular-400-5d02dc9b.ttf",
"src": "node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf",
"integrity": "sha384-YdQktu6FPOgaFQYYBvOWlPWMbMusTav1NsefBpQssPEe9CLJ8tgsV71lV23spHCc"
"integrity": "sha384-U8lQh2H28bJCCd0UDMYkUilXo/MkC+X4bagXkhsKG7nSiMTjR7PXEol7FOqOfiRv"
},
"node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2": {
"file": "assets/fa-regular-400-9169d8be.woff2",
"file": "assets/fa-regular-400-2bccecf0.woff2",
"src": "node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2",
"integrity": "sha384-d4XYctR/QCX2hwpVKFf2jRVpNbX/lvW/SBtmseI5R0DqUkh6IIgJL6gqOQcVG9AI"
"integrity": "sha384-2hgsGQjjgVclDGAvWslIa+GwYh3Bn/ztuvakT4ICpV95tadfxcw0WMPHsEKjsPVT"
},
"node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf": {
"file": "assets/fa-solid-900-cea79b34.ttf",
"file": "assets/fa-solid-900-fbbf06d7.ttf",
"src": "node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf",
"integrity": "sha384-5v9qe32KjexA3nf6mGKT6kA39om1v84xVOd9s2bGSEislD6ovRaHRIMnd2GOlI+L"
"integrity": "sha384-2VoAADNdfW/EPlkrhW8xHXpt8CCvqmFA3HH12T2EfU1VBBJfvTPNbKLxMk84zc5O"
},
"node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2": {
"file": "assets/fa-solid-900-886c8611.woff2",
"file": "assets/fa-solid-900-9fc85f3a.woff2",
"src": "node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2",
"integrity": "sha384-B73JAwYNSgI4rwb14zwxigHgAkg1Ms+j6+9sJoDpiL11+VW5RjQCLfIh0RVoi0h6"
"integrity": "sha384-YxWlWCDksuL6Ljn1HkJNPH8l+jSRIWPpMpPw3pFa0QnmLXjwV/uPwpDm/b9vn/o1"
},
"resources/assets/v2/pages/dashboard/dashboard.js": {
"file": "assets/dashboard-76bd62a6.js",
"file": "assets/dashboard-bbfa9fdd.js",
"imports": [
"_load-translations-66c1b55b.js"
"_load-translations-85b093de.js"
],
"isEntry": true,
"src": "resources/assets/v2/pages/dashboard/dashboard.js",
"integrity": "sha384-tVjrqqIZdSa7BsDhlA4KQ+ZxpHEQaITbe4pki4J6UNPU5NizgWDcBIjErr9MAerf"
"integrity": "sha384-D9wIrG50TM969uTxbreMoPpYTclflCeTXoB0Ca5slHzHoHsXkoeEPB4XGdck6zEE"
},
"resources/assets/v2/pages/transactions/create.js": {
"file": "assets/create-9a14f86d.js",
"file": "assets/create-46a6e026.js",
"imports": [
"_load-translations-66c1b55b.js"
"_load-translations-85b093de.js"
],
"isEntry": true,
"src": "resources/assets/v2/pages/transactions/create.js",
"integrity": "sha384-4+3VLwOR+cJJEMlWGWXmCoLKWObIUkNTRqvRWQ5FWX/jNRYo1uvEvkNd0QqHfrGM"
"integrity": "sha384-QZuBYZlNZHnJZmm/a/XSDVXIz8uRSjsItfumwo+Mcf2wqwxb3DLScIic5vy3V7TF"
},
"resources/assets/v2/sass/app.scss": {
"file": "assets/app-28a195fd.css",
"file": "assets/app-fb7b26ec.css",
"isEntry": true,
"src": "resources/assets/v2/sass/app.scss",
"integrity": "sha384-E/ojpHNuLxPbdew8iDiIKVYDJU4S+J/CFOSq9N57hch8mzgzLk4J4YCAyuCdj//E"
"integrity": "sha384-asG3EmbviAZntc1AzgJpoF+jBChn+oq/7eQfYWrCdJ1Ku/c7rJ82sstr6Eptxqgd"
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -122,7 +122,7 @@
"attempt_content_title": "Webhook attempts",
"attempt_content_help": "These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.",
"no_attempts": "There are no unsuccessful attempts. That's a good thing!",
"webhook_attempt_at": "Attempt at {moment}",
"webhook_attempt_at": "\u041f\u043e\u043f\u044b\u0442\u043a\u0430 \u0432 {moment}",
"logs": "\u041b\u043e\u0433\u0438",
"response": "\u041e\u0442\u0432\u0435\u0442",
"visit_webhook_url": "\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u044c URL \u0432\u0435\u0431\u0445\u0443\u043a\u0430",

View File

@ -10,15 +10,15 @@
"split": "Chia ra",
"single_split": "Chia ra",
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Giao d\u1ecbch #{ID} (\"{title}\")<\/a> \u0111\u00e3 \u0111\u01b0\u1ee3c l\u01b0u tr\u1eef.",
"webhook_stored_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID} (\"{title}\")<\/a> has been stored.",
"webhook_updated_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID}<\/a> (\"{title}\") has been updated.",
"webhook_stored_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID} (\"{title}\")<\/a> \u0111\u00e3 \u0111\u01b0\u1ee3c l\u01b0u tr\u1eef.",
"webhook_updated_link": "<a href=\"webhooks\/show\/{ID}\">Webhook #{ID}<\/a> (\"{title}\") \u0111\u00e3 \u0111\u01b0\u1ee3c c\u1eadp nh\u1eadt.",
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> (\"{title}\") has been updated.",
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\"> Giao d\u1ecbch #{ID}<\/a> \u0111\u00e3 \u0111\u01b0\u1ee3c l\u01b0u tr\u1eef.",
"transaction_journal_information": "Th\u00f4ng tin giao d\u1ecbch",
"submission_options": "Submission options",
"apply_rules_checkbox": "Apply rules",
"fire_webhooks_checkbox": "Fire webhooks",
"no_budget_pointer": "You seem to have no budgets yet. You should create some on the <a href=\"budgets\">budgets<\/a>-page. Budgets can help you keep track of expenses.",
"no_budget_pointer": "D\u01b0\u1eddng nh\u01b0 b\u1ea1n ch\u01b0a c\u00f3 ng\u00e2n s\u00e1ch. B\u1ea1n n\u00ean t\u1ea1o v\u00e0i c\u00e1i t\u1ea1i trang <a href=\"budgets\">ng\u00e2n s\u00e1ch<\/a>-. Ng\u00e2n s\u00e1ch c\u00f3 th\u1ec3 gi\u00fap b\u1ea1n theo d\u00f5i chi ti\u00eau.",
"no_bill_pointer": "You seem to have no bills yet. You should create some on the <a href=\"bills\">bills<\/a>-page. Bills can help you keep track of expenses.",
"source_account": "Ngu\u1ed3n t\u00e0i kho\u1ea3n",
"hidden_fields_preferences": "You can enable more transaction options in your <a href=\"preferences\">preferences<\/a>.",
@ -94,12 +94,12 @@
"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.",
"webhook_trigger_STORE_TRANSACTION": "After transaction creation",
"webhook_trigger_UPDATE_TRANSACTION": "After transaction update",
"webhook_trigger_DESTROY_TRANSACTION": "After transaction delete",
"webhook_response_TRANSACTIONS": "Transaction details",
"webhook_response_ACCOUNTS": "Account details",
"webhook_response_none_NONE": "No details",
"webhook_trigger_STORE_TRANSACTION": "Sau khi t\u1ea1o giao d\u1ecbch",
"webhook_trigger_UPDATE_TRANSACTION": "Sau khi c\u1eadp nh\u1eadt giao d\u1ecbch",
"webhook_trigger_DESTROY_TRANSACTION": "Sau khi x\u00f3a giao d\u1ecbch",
"webhook_response_TRANSACTIONS": "Chi ti\u1ebft giao d\u1ecbch",
"webhook_response_ACCOUNTS": "Chi ti\u1ebft t\u00e0i kho\u1ea3n",
"webhook_response_none_NONE": "Kh\u00f4ng c\u00f3 chi ti\u1ebft",
"webhook_delivery_JSON": "JSON",
"actions": "H\u00e0nh \u0111\u1ed9ng",
"meta_data": "Meta data",
@ -107,7 +107,7 @@
"inactive": "Kh\u00f4ng ho\u1ea1t \u0111\u1ed9ng",
"no_webhook_messages": "There are no webhook messages",
"inspect": "Inspect",
"create_new_webhook": "Create new webhook",
"create_new_webhook": "T\u1ea1o webhook m\u1edbi",
"webhooks": "Webhooks",
"webhook_trigger_form_help": "Indicate on what event the webhook will trigger",
"webhook_response_form_help": "Indicate what the webhook must submit to the URL.",
@ -126,7 +126,7 @@
"logs": "Logs",
"response": "Response",
"visit_webhook_url": "Visit webhook URL",
"reset_webhook_secret": "Reset webhook secret"
"reset_webhook_secret": "C\u00e0i l\u1ea1i kh\u00f3a webhook"
},
"form": {
"url": "URL",
@ -146,14 +146,14 @@
},
"list": {
"active": "\u0110ang ho\u1ea1t \u0111\u1ed9ng?",
"trigger": "Trigger",
"response": "Response",
"delivery": "Delivery",
"trigger": "K\u00edch ho\u1ea1t",
"response": "\u0110\u00e1p l\u1ea1i",
"delivery": "Ph\u00e2n ph\u1ed1i",
"url": "URL",
"secret": "Secret"
"secret": "M\u00e3 b\u00ed m\u1eadt"
},
"config": {
"html_language": "vi",
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
"date_time_fns": "d MMMM yyyy @ HH:mm:ss"
}
}

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Видът на транзакцията е ":value"',
'search_modifier_not_transaction_type' => 'Transaction type is not ":value"',
'search_modifier_tag_is' => 'Етикетът е ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'No tag is ":value"',
'search_modifier_date_on_year' => 'Transaction is in year ":value"',
'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Append notes to description',
'rule_action_move_descr_to_notes' => 'Replace notes with description',
'rule_action_move_notes_to_descr' => 'Replace description with notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Група правила за сметки',
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'El tipus de transacció és ":value"',
'search_modifier_not_transaction_type' => 'El tipus de transacció no és ":value"',
'search_modifier_tag_is' => 'L\'etiqueta és ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'Cap etiqueta és ":value"',
'search_modifier_date_on_year' => 'L\'any de la transacció és ":value"',
'search_modifier_not_date_on_year' => 'L\'any de la transacció no és ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Afegir notes a la descripció',
'rule_action_move_descr_to_notes' => 'Substituir les notes per la descripció',
'rule_action_move_notes_to_descr' => 'Substituir la descripció per les notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Grup de regles per factures',
'rulegroup_for_bills_description' => 'Un grup de regles especial per totes les regles que involucren factures.',
'rule_for_bill_title' => 'Regla autogenerada per la factura ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III no pot trobar la subscripció ":name"',
'no_notes_to_move' => 'La transacció no té cap nota que moure al camp de descripció',
'no_tags_to_remove' => 'La transacció no té etiquetes que eliminar',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III no ha pogut trobar l\'etiqueta ":tag"',
'cannot_find_asset' => 'Firefly III no ha pogut trobar el compte d\'actius ":name"',
'cannot_find_accounts' => 'Firefly III no ha pogut trobar el compte destí o font',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Transaction type is ":value"',
'search_modifier_not_transaction_type' => 'Transaction type is not ":value"',
'search_modifier_tag_is' => 'Tag is ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'No tag is ":value"',
'search_modifier_date_on_year' => 'Transaction is in year ":value"',
'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Append notes to description',
'rule_action_move_descr_to_notes' => 'Replace notes with description',
'rule_action_move_notes_to_descr' => 'Replace description with notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Rule group for bills',
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Transaktionstype er ":value"',
'search_modifier_not_transaction_type' => 'Transaktionstype er ikke ":value"',
'search_modifier_tag_is' => 'Tag er ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'Intet tag er ":value"',
'search_modifier_date_on_year' => 'Transaktionen er i år ":value"',
'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Append notes to description',
'rule_action_move_descr_to_notes' => 'Replace notes with description',
'rule_action_move_notes_to_descr' => 'Replace description with notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Regelgruppe for regninger',
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Buchungstyp ist „:value”',
'search_modifier_not_transaction_type' => 'Buchungstyp ist nicht „:value”',
'search_modifier_tag_is' => 'Schlagwort ist „:value”',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'Kein Schlagwort lautet ":value"',
'search_modifier_date_on_year' => 'Buchung im Jahr „:value”',
'search_modifier_not_date_on_year' => 'Buchung ist nicht im Jahr ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Notizen an die Beschreibung anhängen',
'rule_action_move_descr_to_notes' => 'Notizen durch die Beschreibung ersetzen',
'rule_action_move_notes_to_descr' => 'Beschreibung durch die Notizen ersetzen',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Regelgruppe für Rechnungen',
'rulegroup_for_bills_description' => 'Eine spezielle Regelgruppe für alle Regeln, die Rechnungen betreffen.',
'rule_for_bill_title' => 'Automatisch generierte Regel für die Rechnung ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III kann das Abonnement ":name" nicht finden',
'no_notes_to_move' => 'Diese Transaktion hat keine Notizen für das Beschreibungsfeld',
'no_tags_to_remove' => 'Die Buchung hat keine Schlagworte zum Entfernen',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III kann Schlagwort ":tag" nicht finden',
'cannot_find_asset' => 'Firefly III kann kein Girokonto ":name" finden',
'cannot_find_accounts' => 'Firefly III kann das Quell- oder Zielkonto nicht finden',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Ο τύπος συναλλαγής είναι ":value"',
'search_modifier_not_transaction_type' => 'Transaction type is not ":value"',
'search_modifier_tag_is' => 'Η ετικέτα είναι ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'No tag is ":value"',
'search_modifier_date_on_year' => 'Η συναλλαγή είναι στο έτος ":value"',
'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Append notes to description',
'rule_action_move_descr_to_notes' => 'Replace notes with description',
'rule_action_move_notes_to_descr' => 'Replace description with notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Ομάδα κανόνων για πάγια έξοδα',
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Transaction type is ":value"',
'search_modifier_not_transaction_type' => 'Transaction type is not ":value"',
'search_modifier_tag_is' => 'Tag is ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'No tag is ":value"',
'search_modifier_date_on_year' => 'Transaction is in year ":value"',
'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Append notes to description',
'rule_action_move_descr_to_notes' => 'Replace notes with description',
'rule_action_move_notes_to_descr' => 'Replace description with notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Rule group for bills',
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'El tipo de transacción es ":value"',
'search_modifier_not_transaction_type' => 'El tipo de transacción no es ":value"',
'search_modifier_tag_is' => 'La etiqueta es ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'Ninguna etiqueta es ":value"',
'search_modifier_date_on_year' => 'El año de la transacción es ":value"',
'search_modifier_not_date_on_year' => 'El año de la transacción no es ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Añadir las notas a la descripción',
'rule_action_move_descr_to_notes' => 'Reemplazar las notas con la descripción',
'rule_action_move_notes_to_descr' => 'Reemplazar la descripción con notas',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Regla de grupo para facturas',
'rulegroup_for_bills_description' => 'Un grupo de reglas especiales para todas las reglas que involucren facturas.',
'rule_for_bill_title' => 'Regla autogenerada para la factura ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III no puede encontrar la suscripción ":name"',
'no_notes_to_move' => 'La transacción no tiene notas para mover al campo de descripción',
'no_tags_to_remove' => 'La transacción no tiene etiquetas que eliminar',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III no puede encontrar la etiqueta ":tag"',
'cannot_find_asset' => 'Firefly III no puede encontrar la cuenta de activo ":name"',
'cannot_find_accounts' => 'Firefly III no puede encontrar la cuenta de origen o destino',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Tapahtuman tyyppi on ":value"',
'search_modifier_not_transaction_type' => 'Transaction type is not ":value"',
'search_modifier_tag_is' => 'Tägi on ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'No tag is ":value"',
'search_modifier_date_on_year' => 'Tapahtuma on vuonna ":value"',
'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Append notes to description',
'rule_action_move_descr_to_notes' => 'Replace notes with description',
'rule_action_move_notes_to_descr' => 'Replace description with notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Sääntöryhmä laskuille',
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Le type de transaction est ":value"',
'search_modifier_not_transaction_type' => 'Le type de l\'opération n\'est pas :value',
'search_modifier_tag_is' => 'Le tag est ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'Aucun tag n\'est ":value"',
'search_modifier_date_on_year' => 'L\'opération est dans l\'année ":value"',
'search_modifier_not_date_on_year' => 'L\'opération n\'est pas dans l\'année ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Ajouter les notes à la description',
'rule_action_move_descr_to_notes' => 'Remplacer les notes par la description',
'rule_action_move_notes_to_descr' => 'Remplacer la description par les notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Groupe de règles pour les factures',
'rulegroup_for_bills_description' => 'Un groupe de règles spécial pour toutes les règles impliquant des factures.',
'rule_for_bill_title' => 'Règle générée automatiquement pour la facture ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III ne trouve pas l\'abonnement ":name"',
'no_notes_to_move' => 'L\'opération n\'a pas de notes à déplacer dans le champ description',
'no_tags_to_remove' => 'L\'opération n\'a pas de tags à supprimer',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III ne trouve pas le tag ":tag"',
'cannot_find_asset' => 'Firefly III ne trouve pas le compte d\'actif ":name"',
'cannot_find_accounts' => 'Firefly III ne trouve pas le compte source ou le compte de destination',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Tranzakció típusa: :value',
'search_modifier_not_transaction_type' => 'Transaction type is not ":value"',
'search_modifier_tag_is' => 'A címke ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'No tag is ":value"',
'search_modifier_date_on_year' => 'Transaction is in year ":value"',
'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Append notes to description',
'rule_action_move_descr_to_notes' => 'Replace notes with description',
'rule_action_move_notes_to_descr' => 'Replace description with notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Szabálycsoport a számlákhoz',
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Tipe transaksi adalah ":value"',
'search_modifier_not_transaction_type' => 'Transaction type is not ":value"',
'search_modifier_tag_is' => 'Tag is ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'No tag is ":value"',
'search_modifier_date_on_year' => 'Transaction is in year ":value"',
'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Append notes to description',
'rule_action_move_descr_to_notes' => 'Replace notes with description',
'rule_action_move_notes_to_descr' => 'Replace description with notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Rule group for bills',
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Il tipo di transazione è ":value"',
'search_modifier_not_transaction_type' => 'Il tipo della transizione non è ":value"',
'search_modifier_tag_is' => 'L\'etichetta è ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'Nessuna etichetta è ":value"',
'search_modifier_date_on_year' => 'La transazione è dell\'anno ":value"',
'search_modifier_not_date_on_year' => 'La transazione non è dell\'anno ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Append notes to description',
'rule_action_move_descr_to_notes' => 'Replace notes with description',
'rule_action_move_notes_to_descr' => 'Replace description with notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Gruppo di regole per le bollette',
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III non riesce a trovare l\'abbonamento ":name"',
'no_notes_to_move' => 'La transazione non ha note da spostare nel campo descrizione',
'no_tags_to_remove' => 'La transazione non ha etichette da rimuovere',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III non riesce a trovare l\'etichetta ":tag"',
'cannot_find_asset' => 'Firefly III non riesce a trovare il conto attività ":name"',
'cannot_find_accounts' => 'Firefly III non riesce a trovare il conto di origine o destinazione',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => '取引種別が「:value」',
'search_modifier_not_transaction_type' => '取引種別が「:value」ではない',
'search_modifier_tag_is' => 'タグが「:value」',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'タグ「:value」がない',
'search_modifier_date_on_year' => '「:value」年の取引',
'search_modifier_not_date_on_year' => '「:value」年の取引ではない',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => '概要の終わりにメモを追加',
'rule_action_move_descr_to_notes' => 'メモを概要で置き換え',
'rule_action_move_notes_to_descr' => '概要をメモで置き換え',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => '請求のルールグループ',
'rulegroup_for_bills_description' => '請求に関するすべてのルールのための特別なグループです。',
'rule_for_bill_title' => '請求「:name」用に自動作成されたルール',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly IIIはサブスクリプション「":name"」を見つけられませんでした',
'no_notes_to_move' => '取引には概要に設定できるメモがありません',
'no_tags_to_remove' => '取引には削除できるタグがありません',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly IIIはタグ「:tag」を見つけられませんでした',
'cannot_find_asset' => 'Firefly IIIは資産口座「:name」を見つけられませんでした',
'cannot_find_accounts' => 'Firefly IIIは引き出し元または預け入れ先口座を見つけられませんでした',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => '거래 유형은 ":value" 입니다',
'search_modifier_not_transaction_type' => '거래 유형은 ":value"가 아닙니다',
'search_modifier_tag_is' => '태그는 ":value" 입니다',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => '":value" 태그가 없습니다.',
'search_modifier_date_on_year' => '거래는 ":value" 연도에 있습니다',
'search_modifier_not_date_on_year' => '거래는 ":value" 연도에 있지 않습니다',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => '설명에 메모 추가',
'rule_action_move_descr_to_notes' => '노트를 설명으로 바꾸기',
'rule_action_move_notes_to_descr' => '설명을 노트로 바꾸기',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => '청구서에 대한 규칙 그룹',
'rulegroup_for_bills_description' => '청구서와 관련된 모든 규칙을 위한 특별 규칙 그룹입니다.',
'rule_for_bill_title' => '청구서 ":name"에 대한 자동 생성 규칙',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Transaksjonstype er ":value"',
'search_modifier_not_transaction_type' => 'Transaksjonstype er ikke ":value"',
'search_modifier_tag_is' => 'Taggen er ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'Ingen tagg er ":value"',
'search_modifier_date_on_year' => 'Transaksjonen er i år ":value"',
'search_modifier_not_date_on_year' => 'Transaksjonen er ikke i året ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Legg notater til beskrivelsen',
'rule_action_move_descr_to_notes' => 'Erstatt notater med beskrivelse',
'rule_action_move_notes_to_descr' => 'Erstatt beskrivelse med notater',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Regelgruppe for regninger',
'rulegroup_for_bills_description' => 'En spesiell regelgruppe for alle reglene som involverer regninger.',
'rule_for_bill_title' => 'Automatisk generert regel for regning ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III kan ikke finne abonnementet ":name"',
'no_notes_to_move' => 'Transaksjonen har ingen notater å flytte til beskrivelsesfeltet',
'no_tags_to_remove' => 'Transaksjonen har ingen merker å fjerne',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III kan ikke finne merket ":tag"',
'cannot_find_asset' => 'Firefly III kan ikke finne eiendelskontoen ":name"',
'cannot_find_accounts' => 'Firefly III kan ikke finne kilde- eller destinasjonskontoen',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Transactietype is ":value"',
'search_modifier_not_transaction_type' => 'Transactietype is niet ":value"',
'search_modifier_tag_is' => 'Tag is ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'Geen tag is ":value"',
'search_modifier_date_on_year' => 'Transactie is in jaar ":value"',
'search_modifier_not_date_on_year' => 'Transactie is niet in jaar ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Voeg notitie toe aan beschrijving',
'rule_action_move_descr_to_notes' => 'Notitie vervangen door beschrijving',
'rule_action_move_notes_to_descr' => 'Beschrijving vervangen door notitie',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Regelgroep voor contracten',
'rulegroup_for_bills_description' => 'Een speciale regelgroep voor alle regels die betrekking hebben op contracten.',
'rule_for_bill_title' => 'Automatisch gegenereerde regel voor contract ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III kan geen abonnement met naam ":name" vinden',
'no_notes_to_move' => 'De transactie heeft geen notities om te verplaatsen naar het omschrijvingsveld',
'no_tags_to_remove' => 'De transactie heeft geen tags om te verwijderen',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III kan tag ":tag" niet vinden',
'cannot_find_asset' => 'Firefly III kan geen betaalrekening met naam ":name" vinden',
'cannot_find_accounts' => 'Firefly III kan de bron- of doelrekening niet vinden',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Transaksjonstype er ":value"',
'search_modifier_not_transaction_type' => 'Transaksjonstype er ikkje ":value"',
'search_modifier_tag_is' => 'Nøkkelordet er «:value»',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'Ingen nøkkelord er «:value»',
'search_modifier_date_on_year' => 'Transaksjonen er i år ":value"',
'search_modifier_not_date_on_year' => 'Transaksjonen er ikkje i året ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Legg notat til beskrivinga',
'rule_action_move_descr_to_notes' => 'Erstatt notat med beskriving',
'rule_action_move_notes_to_descr' => 'Erstatt beskriving med notat',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Regelgruppe for rekningar',
'rulegroup_for_bills_description' => 'Ein spesiell regelgruppe for alle reglane som involverer rekningar.',
'rule_for_bill_title' => 'Automatisk generert regel for rekning ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III finn ikkje abonnementet «:name»',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'Transaksjonen har ingen nøkkelord å fjerna',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III finn ikkje nøkkelordet «:tag»',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Transakcja jest typu ":value"',
'search_modifier_not_transaction_type' => 'Typ transakcji to nie ":value"',
'search_modifier_tag_is' => 'Tag to ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'Tag nie jest ustawiony na ":value"',
'search_modifier_date_on_year' => 'Transakcja jest w roku ":value"',
'search_modifier_not_date_on_year' => 'Transakcja nie jest w roku ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Dołącz notatki do opisu',
'rule_action_move_descr_to_notes' => 'Zastąp notatki opisem',
'rule_action_move_notes_to_descr' => 'Zastąp opis notatkami',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Grupa reguł dla rachunków',
'rulegroup_for_bills_description' => 'Specjalna grupa reguł dla wszystkich reguł dotyczących rachunków.',
'rule_for_bill_title' => 'Automatycznie wygenerowana reguła dla rachunku ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III nie może znaleźć rachunku ":name"',
'no_notes_to_move' => 'Transakcja nie ma notatek do przeniesienia do pola opisu',
'no_tags_to_remove' => 'Transakcja nie ma tagów do usunięcia',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III nie może znaleźć tagu ":tag"',
'cannot_find_asset' => 'Firefly III nie może znaleźć konta aktywów ":name"',
'cannot_find_accounts' => 'Firefly III nie może znaleźć konta źródłowego lub docelowego',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'O tipo da transação é ":value"',
'search_modifier_not_transaction_type' => 'Tipo de transação não é ":value"',
'search_modifier_tag_is' => 'A tag é ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'Nenhuma tag é ":value"',
'search_modifier_date_on_year' => 'Transação é no ano de ":value"',
'search_modifier_not_date_on_year' => 'Transação não está no ano ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Adicionar notas à descrição',
'rule_action_move_descr_to_notes' => 'Substituir notas por descrição',
'rule_action_move_notes_to_descr' => 'Substituir descrição por notas',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Grupo de regras para faturas',
'rulegroup_for_bills_description' => 'Um grupo especial de regras para todas as regras que envolvem faturas.',
'rule_for_bill_title' => 'Regra gerada automaticamente para a fatura ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'O Firefly III não pode encontrar a assinatura ":name"',
'no_notes_to_move' => 'A transação não tem notas para mover para o campo descrição',
'no_tags_to_remove' => 'A transação não tem tags para remover',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'O Firefly III não pode encontrar a tag ":tag"',
'cannot_find_asset' => 'O Firefly III não pode encontrar a conta de ativos ":name"',
'cannot_find_accounts' => 'O Firefly III não pode encontrar a conta destino ou origem',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Tipo de transacção é ":value"',
'search_modifier_not_transaction_type' => 'O tipo de transação não é ":value"',
'search_modifier_tag_is' => 'A etiqueta é ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'Nenhuma etiqueta é ":value"',
'search_modifier_date_on_year' => 'A transação é do ano ":value"',
'search_modifier_not_date_on_year' => 'A transação não é no ano ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Acrescentar notas à descrição',
'rule_action_move_descr_to_notes' => 'Substituir notas por descrição',
'rule_action_move_notes_to_descr' => 'Substituir descrição por notas',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Grupo de regras para encargos',
'rulegroup_for_bills_description' => 'Um grupo especial de regras para todas as regras que envolvem encargos.',
'rule_for_bill_title' => 'Regra gerada automaticamente para o encargo ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Tipul tranzacției este ":value"',
'search_modifier_not_transaction_type' => 'Transaction type is not ":value"',
'search_modifier_tag_is' => 'Eticheta este ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'No tag is ":value"',
'search_modifier_date_on_year' => 'Transaction is in year ":value"',
'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Append notes to description',
'rule_action_move_descr_to_notes' => 'Replace notes with description',
'rule_action_move_notes_to_descr' => 'Replace description with notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Grup de reguli pentru facturi',
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -275,7 +275,7 @@ return [
'attempt_content_title' => 'Webhook attempts',
'attempt_content_help' => 'These are all the unsuccessful attempts of this webhook message to submit to the configured URL. After some time, Firefly III will stop trying.',
'no_attempts' => 'There are no unsuccessful attempts. That\'s a good thing!',
'webhook_attempt_at' => 'Attempt at {moment}',
'webhook_attempt_at' => 'Попытка в {moment}',
'logs' => 'Логи',
'response' => 'Ответ',
'visit_webhook_url' => 'Посетить URL вебхука',
@ -364,7 +364,7 @@ return [
'search_modifier_no_external_url' => 'У транзакции нет внешнего URL',
'search_modifier_no_external_id' => 'У транзакции нет внешнего URL',
'search_modifier_not_any_external_url' => 'У транзакции нет внешнего URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_not_any_external_id' => 'У транзакции нет внешнего ID',
'search_modifier_any_external_url' => 'Транзакция должна иметь (любой) внешний URL',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'Транзакция должна иметь (любой) внешний URL',
@ -378,7 +378,7 @@ return [
'search_modifier_description_contains' => 'Описание содержит ":value"',
'search_modifier_not_description_contains' => 'Описание не содержит ":value"',
'search_modifier_description_is' => 'Описание точно соответствует ":value"',
'search_modifier_not_description_is' => 'Description is exactly not ":value"',
'search_modifier_not_description_is' => 'Описание не является ":value"',
'search_modifier_currency_is' => '(Иностранная) валюта транзакции - ":value"',
'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"',
'search_modifier_foreign_currency_is' => 'Иностранная валюта транзакции - ":value"',
@ -427,7 +427,7 @@ return [
'search_modifier_source_account_ends' => 'Название счёта-источника заканчивается на ":value"',
'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"',
'search_modifier_source_account_id' => 'ID счёта-источника = :value',
'search_modifier_not_source_account_id' => 'Source account ID is not :value',
'search_modifier_not_source_account_id' => 'Идентификатор исходного аккаунта не :value',
'search_modifier_source_account_nr_is' => 'Номер счёта-источника (IBAN) - ":value"',
'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"',
'search_modifier_source_account_nr_contains' => 'Номер счёта-источника (IBAN) содержит ":value"',
@ -437,21 +437,21 @@ return [
'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"',
'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"',
'search_modifier_destination_account_is' => 'Название счёта назначения точно соответствует ":value"',
'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"',
'search_modifier_not_destination_account_is' => 'Название счёта-назначения не ":value"',
'search_modifier_destination_account_contains' => 'Название счёта назначения содержит ":value"',
'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"',
'search_modifier_not_destination_account_contains' => 'Название счёта-назначения не содержит ":value"',
'search_modifier_destination_account_starts' => 'Название счёта назначения начинается с ":value"',
'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"',
'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"',
'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"',
'search_modifier_not_destination_account_starts' => 'Название счёта-назначения не начинается с ":value"',
'search_modifier_destination_account_ends' => 'Название счёта-назначения заканчивается на ":value"',
'search_modifier_not_destination_account_ends' => 'Название счёта-назначения не заканчивается на ":value"',
'search_modifier_destination_account_id' => 'ID счёта назначения = :value',
'search_modifier_not_destination_account_id' => 'Destination account ID is not :value',
'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account',
'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account',
'search_modifier_source_is_cash' => 'Source account is the "(cash)" account',
'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account',
'search_modifier_not_destination_account_id' => 'ID счёта-назначения не ":value"',
'search_modifier_destination_is_cash' => 'Целевой счет - это аккаунт "(наличные)"',
'search_modifier_not_destination_is_cash' => 'Целевой счет - это аккаунт не "(наличные)"',
'search_modifier_source_is_cash' => 'Исходный счет - это "(наличные)"',
'search_modifier_not_source_is_cash' => 'Исходный счет не является "(наличные)"',
'search_modifier_destination_account_nr_is' => 'Номер счета назначения (IBAN) - ":value"',
'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"',
'search_modifier_not_destination_account_nr_is' => 'Номер счета назначения (IBAN) - ":value"',
'search_modifier_destination_account_nr_contains' => 'Номер счета назначения (IBAN) содержит ":value"',
'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"',
'search_modifier_destination_account_nr_starts' => 'Номер счета назначения (IBAN) начинается с ":value"',
@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Тип транзакции - ":value"',
'search_modifier_not_transaction_type' => 'Тип транзакции не ":value"',
'search_modifier_tag_is' => 'Тег - ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'Нет тега ":value"',
'search_modifier_date_on_year' => 'Транзакция в году ":value"',
'search_modifier_not_date_on_year' => 'Транзакция не в году ":value"',
@ -543,21 +547,21 @@ return [
'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"',
'search_modifier_has_no_attachments' => 'Транзакция не содержит вложений',
'search_modifier_not_has_no_attachments' => 'Transaction has attachments',
'search_modifier_not_has_attachments' => 'Transaction has no attachments',
'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.',
'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.',
'search_modifier_not_has_attachments' => 'Транзакции не содержит вложений',
'search_modifier_account_is_cash' => 'Любой счет является «(наличными)».',
'search_modifier_not_account_is_cash' => 'Ни один из этих счетов не является "(наличные)".',
'search_modifier_journal_id' => 'ID журнала ":value"',
'search_modifier_not_journal_id' => 'The journal ID is not ":value"',
'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"',
'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"',
'search_modifier_not_journal_id' => 'ID журнала не является ":value"',
'search_modifier_recurrence_id' => 'ID повторяющейся транзакции является ":value"',
'search_modifier_not_recurrence_id' => 'ID повторяющейся транзакции не является ":value"',
'search_modifier_foreign_amount_is' => 'Сумма иностранного платежа: ":value"',
'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"',
'search_modifier_foreign_amount_less' => 'Сумма в иностранной валюте меньше ":value"',
'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"',
'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"',
'search_modifier_foreign_amount_more' => 'Иначе сумма больше чем ":value"',
'search_modifier_exists' => 'Transaction exists (any transaction)',
'search_modifier_not_exists' => 'Transaction does not exist (no transaction)',
'search_modifier_exists' => 'Транзакция существует (любая транзакция)',
'search_modifier_not_exists' => 'Транзакция не существует (нет транзакции)',
// date fields
'search_modifier_interest_date_on' => 'Transaction interest date is ":value"',
@ -1022,12 +1026,12 @@ return [
'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"',
'rule_trigger_book_date_after_choice' => 'Book date is after..',
'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"',
'rule_trigger_process_date_on_choice' => 'Process date is on..',
'rule_trigger_process_date_on' => 'Process date is ":trigger_value"',
'rule_trigger_process_date_before_choice' => 'Process date is before..',
'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"',
'rule_trigger_process_date_after_choice' => 'Process date is after..',
'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"',
'rule_trigger_process_date_on_choice' => 'Дата оплаты..',
'rule_trigger_process_date_on' => 'Дата оплаты ":trigger_value"',
'rule_trigger_process_date_before_choice' => 'Дата оплаты до..',
'rule_trigger_process_date_before' => 'Дата оплаты до ":trigger_value"',
'rule_trigger_process_date_after_choice' => 'Дата оплаты после..',
'rule_trigger_process_date_after' => 'Дата счета после ":trigger_value"',
'rule_trigger_due_date_on_choice' => 'Дата выполнения..',
'rule_trigger_due_date_on' => 'Дата выполнения ":trigger_value"',
'rule_trigger_due_date_before_choice' => 'Дата выполнения до..',
@ -1068,39 +1072,39 @@ return [
'rule_trigger_attachment_name_starts' => 'Имя любого вложения начинается с ":trigger_value"',
'rule_trigger_attachment_name_ends_choice' => 'Имя любого вложений заканчивается на..',
'rule_trigger_attachment_name_ends' => 'Имя любого вложений заканчивается на ":trigger_value"',
'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..',
'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"',
'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..',
'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"',
'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..',
'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"',
'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..',
'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"',
'rule_trigger_attachment_notes_are_choice' => 'Имя любого вложения..',
'rule_trigger_attachment_notes_are' => 'Любое имя вложения: ":trigger_value"',
'rule_trigger_attachment_notes_contains_choice' => 'Имя любых вложений содержит..',
'rule_trigger_attachment_notes_contains' => 'Имя любых вложений содержит ":trigger_value"',
'rule_trigger_attachment_notes_starts_choice' => 'Имя любого вложения начинается с..',
'rule_trigger_attachment_notes_starts' => 'Имя любого вложения начинается с ":trigger_value"',
'rule_trigger_attachment_notes_ends_choice' => 'Имя любого вложений заканчивается на..',
'rule_trigger_attachment_notes_ends' => 'Имя любого вложений заканчивается на ":trigger_value"',
'rule_trigger_reconciled_choice' => 'Транзакция сверена',
'rule_trigger_reconciled' => 'Транзакция сверена',
'rule_trigger_exists_choice' => 'Any transaction matches(!)',
'rule_trigger_exists' => 'Any transaction matches',
'rule_trigger_exists_choice' => 'Любые транзакции совпадают(!)',
'rule_trigger_exists' => 'Любые транзакции совпадают',
// more values for new types:
'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"',
'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"',
'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"',
'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"',
'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"',
'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"',
'rule_trigger_not_description_is' => 'Description is not ":trigger_value"',
'rule_trigger_not_description_contains' => 'Description does not contain',
'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"',
'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"',
'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"',
'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"',
'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"',
'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"',
'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"',
'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"',
'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"',
'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"',
'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"',
'rule_trigger_not_account_id' => 'ID аккаунта не ":trigger_value"',
'rule_trigger_not_source_account_id' => 'ID счёта-источника не ":trigger_value"',
'rule_trigger_not_destination_account_id' => 'ID счёта-назначения не ":trigger_value"',
'rule_trigger_not_transaction_type' => 'Тип транзакции не ":trigger_value"',
'rule_trigger_not_tag_is' => 'Метка не ":trigger_value"',
'rule_trigger_not_tag_is_not' => 'Метка = ":trigger_value"',
'rule_trigger_not_description_is' => 'Описание не ":trigger_value"',
'rule_trigger_not_description_contains' => 'Описание не содержит',
'rule_trigger_not_description_ends' => 'Описание не заканчивается на ":trigger_value"',
'rule_trigger_not_description_starts' => 'Описание не начинается с ":trigger_value"',
'rule_trigger_not_notes_is' => 'Заметки не ":trigger_value"',
'rule_trigger_not_notes_contains' => 'Заметки не содержат ":trigger_value"',
'rule_trigger_not_notes_ends' => 'Заметки не заканчиваются на ":trigger_value"',
'rule_trigger_not_notes_starts' => 'Заметки не начинаются с ":trigger_value"',
'rule_trigger_not_source_account_is' => 'Счёт-источник не ":trigger_value"',
'rule_trigger_not_source_account_contains' => 'Счёт-источник не содержит ":trigger_value"',
'rule_trigger_not_source_account_ends' => 'Счёт-источник не заканчивается на ":trigger_value"',
'rule_trigger_not_source_account_starts' => 'Счёт-источник не начинается с ":trigger_value"',
'rule_trigger_not_source_account_nr_is' => 'Номер счёта-источника / IBAN не ":trigger_value"',
'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"',
'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"',
'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"',
@ -1144,14 +1148,14 @@ return [
'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"',
'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"',
'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"',
'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"',
'rule_trigger_not_currency_is' => 'Валюта не ":trigger_value"',
'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"',
'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"',
'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"',
'rule_trigger_not_id' => 'ID транзакции не является ":trigger_value"',
'rule_trigger_not_journal_id' => 'ID журнала транзакций не является ":trigger_value"',
'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"',
'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"',
'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"',
'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"',
'rule_trigger_not_date_on' => 'Дата не ":trigger_value"',
'rule_trigger_not_date_before' => 'Дата не до ":trigger_value"',
'rule_trigger_not_date_after' => 'Дата не после ":trigger_value"',
'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"',
'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"',
'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"',
@ -1167,10 +1171,10 @@ return [
'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"',
'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"',
'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"',
'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"',
'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"',
'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"',
'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"',
'rule_trigger_not_invoice_date_on' => 'Дата выставления счета не ":trigger_value"',
'rule_trigger_not_invoice_date_before' => 'Дата счета не до ":trigger_value"',
'rule_trigger_not_invoice_date_after' => 'Дата счета не после ":trigger_value"',
'rule_trigger_not_created_at_on' => 'Транзакция не создана в ":trigger_value"',
'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"',
'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"',
'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"',
@ -1190,10 +1194,10 @@ return [
'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"',
'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"',
'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"',
'rule_trigger_not_reconciled' => 'Transaction is not reconciled',
'rule_trigger_not_exists' => 'Transaction does not exist',
'rule_trigger_not_has_attachments' => 'Transaction has no attachments',
'rule_trigger_not_has_any_category' => 'Transaction has no category',
'rule_trigger_not_reconciled' => 'Транзакция не сверена',
'rule_trigger_not_exists' => 'Транзакция не существует',
'rule_trigger_not_has_attachments' => 'У транзакции нет вложений',
'rule_trigger_not_has_any_category' => 'У транзакции нет категории',
'rule_trigger_not_has_any_budget' => 'Transaction has no category',
'rule_trigger_not_has_any_bill' => 'Transaction has no bill',
'rule_trigger_not_has_any_tag' => 'Transaction has no tags',
@ -1208,7 +1212,7 @@ return [
'rule_trigger_not_no_external_url' => 'Transaction has an external URL',
'rule_trigger_not_source_is_cash' => 'Source account is not a cash account',
'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account',
'rule_trigger_not_account_is_cash' => 'Neither account is a cash account',
'rule_trigger_not_account_is_cash' => 'Ни один счет не является наличным',
/*
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
@ -1224,8 +1228,8 @@ return [
// actions
// set, clear, add, remove, append/prepend
'rule_action_delete_transaction_choice' => 'DELETE transaction(!)',
'rule_action_delete_transaction' => 'DELETE transaction(!)',
'rule_action_delete_transaction_choice' => 'УДАЛИТЬ транзакцию(!)',
'rule_action_delete_transaction' => 'УДАЛИТЬ транзакцию(!)',
'rule_action_set_category' => 'Назначить категорию ":action_value"',
'rule_action_clear_category' => 'Очистить поле "Категория"',
'rule_action_set_budget' => 'Назначить бюджет ":action_value"',
@ -1236,33 +1240,33 @@ return [
'rule_action_set_description' => 'Назначить описание ":action_value"',
'rule_action_append_description' => 'Добавить в конце описание с ":action_value"',
'rule_action_prepend_description' => 'Добавить в начале описание с ":action_value"',
'rule_action_set_category_choice' => 'Set category to ..',
'rule_action_set_category_choice' => 'Установить категорию в ..',
'rule_action_clear_category_choice' => 'Удалить любую категорию',
'rule_action_set_budget_choice' => 'Set budget to ..',
'rule_action_set_budget_choice' => 'Установить бюджет в ..',
'rule_action_clear_budget_choice' => 'Удалить любой бюджет',
'rule_action_add_tag_choice' => 'Add tag ..',
'rule_action_remove_tag_choice' => 'Remove tag ..',
'rule_action_add_tag_choice' => 'Добавить метку ..',
'rule_action_remove_tag_choice' => 'Удалить метку ..',
'rule_action_remove_all_tags_choice' => 'Удалить все метки...',
'rule_action_set_description_choice' => 'Set description to ..',
'rule_action_set_description_choice' => 'Задать описание ..',
'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..',
'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"',
'rule_action_append_description_choice' => 'Append description with ..',
'rule_action_prepend_description_choice' => 'Prepend description with ..',
'rule_action_set_source_account_choice' => 'Set source account to ..',
'rule_action_append_description_choice' => 'Добавить описание с ..',
'rule_action_prepend_description_choice' => 'Добавить в начале описания ..',
'rule_action_set_source_account_choice' => 'Назначить счёт-источник ..',
'rule_action_set_source_account' => 'Назначить счёт-источник :action_value',
'rule_action_set_destination_account_choice' => 'Set destination account to ..',
'rule_action_set_destination_account_choice' => 'Установить счет назначения на ..',
'rule_action_set_destination_account' => 'Назначить целевой счёт :action_value',
'rule_action_append_notes_choice' => 'Append notes with ..',
'rule_action_append_notes_choice' => 'Добавить в конце заметки ..',
'rule_action_append_notes' => 'Добавить в конце заметки с ":action_value"',
'rule_action_prepend_notes_choice' => 'Prepend notes with ..',
'rule_action_prepend_notes_choice' => 'Добавить в начале заметки ..',
'rule_action_prepend_notes' => 'Добавить в начале заметки с ":action_value"',
'rule_action_clear_notes_choice' => 'Удалить любые заметки',
'rule_action_clear_notes' => 'Удалить любые заметки',
'rule_action_set_notes_choice' => 'Set notes to ..',
'rule_action_link_to_bill_choice' => 'Link to a bill ..',
'rule_action_set_notes_choice' => 'Добавить заметку ..',
'rule_action_link_to_bill_choice' => 'Ссылка на счет ..',
'rule_action_link_to_bill' => 'Ссылка на счёт к оплате ":action_value"',
'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)',
'rule_action_switch_accounts' => 'Switch source and destination',
'rule_action_switch_accounts_choice' => 'Поменять счета источника и назначения (только для переводов!)',
'rule_action_switch_accounts' => 'Поменять источник и назначение',
'rule_action_set_notes' => 'Назначить примечания ":action_value"',
'rule_action_convert_deposit_choice' => 'Преобразовать транзакцию в доход',
'rule_action_convert_deposit' => 'Преобразовать транзакцию в доход с помощью ":action_value"',
@ -1274,10 +1278,12 @@ return [
'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description',
'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description',
'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes',
'rule_action_append_descr_to_notes' => 'Append description to notes',
'rule_action_append_notes_to_descr' => 'Append notes to description',
'rule_action_move_descr_to_notes' => 'Replace notes with description',
'rule_action_move_notes_to_descr' => 'Replace description with notes',
'rule_action_append_descr_to_notes' => 'Добавить описание к заметкам',
'rule_action_append_notes_to_descr' => 'Добавить заметки к описанию',
'rule_action_move_descr_to_notes' => 'Заменить заметки описанием',
'rule_action_move_notes_to_descr' => 'Заменить описание заметками',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Группа правил для счетов к оплате',
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -44,7 +44,7 @@ return [
'invalid_query_currency' => 'Ваш запрос содержит счета с разными валютами, что недопустимо.',
'iban' => 'Это некорректный IBAN.',
'zero_or_more' => 'Это значение не может быть отрицательным.',
'no_asset_account' => 'This is not an asset account.',
'no_asset_account' => 'Это не счет активов.',
'date_or_time' => 'Значение должно быть корректной датой или временем (ISO 8601).',
'source_equals_destination' => 'Счёт источник и счёт назначения совпадают.',
'unique_account_number_for_user' => 'Этот номер счёта уже используется.',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Typ transakcie je ":value"',
'search_modifier_not_transaction_type' => 'Transaction type is not ":value"',
'search_modifier_tag_is' => 'Štítok je ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'No tag is ":value"',
'search_modifier_date_on_year' => 'Transaction is in year ":value"',
'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Append notes to description',
'rule_action_move_descr_to_notes' => 'Replace notes with description',
'rule_action_move_notes_to_descr' => 'Replace description with notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Skupina pravidiel pre účty',
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -71,7 +71,7 @@ return [
'asset_account_role_help' => 'Dodatne možnosti se lahko nastavljajo tudi kasneje.',
'Opening balance' => 'Začetno stanje',
'create_new_stuff' => 'Ustvari novo stvar',
'new_withdrawal' => 'Nov odhodek',
'new_withdrawal' => 'Nov dvig',
'create_new_transaction' => 'Ustvari novo transakcijo',
'sidebar_frontpage_create' => 'Ustvari',
'new_transaction' => 'Nova transakcija',
@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Vrsta transakcije je ":value"',
'search_modifier_not_transaction_type' => 'Vrsta transakcije ni ":value"',
'search_modifier_tag_is' => 'Oznaka je ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'Nobena oznaka ni ":value"',
'search_modifier_date_on_year' => 'Transakcija je v letu ":value"',
'search_modifier_not_date_on_year' => 'Transakcija ni v letu ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Dodaj opombe k opisu',
'rule_action_move_descr_to_notes' => 'Opombe zamenjajte z opisom',
'rule_action_move_notes_to_descr' => 'Zamenjajte opis z opombami',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Skupina pravil za račune',
'rulegroup_for_bills_description' => 'Posebna skupina pravil za vsa pravila, ki vključujejo račune.',
'rule_for_bill_title' => 'Samodejno ustvarjeno pravilo za račun ":name"',
@ -1484,7 +1490,7 @@ return [
'explain_command_line_token' => 'Ta žeton potrebujete za izvajanje možnosti ukazne vrstice, kot je izvoz podatkov. Brez tega ta občutljiv ukaz ne bo deloval. Ne delite svojega žetona ukazne vrstice. Nihče vas ne bo prosil za ta žeton, tudi jaz ne. Če se bojite, da ste to izgubili, ali ko ste paranoični, znova ustvarite ta žeton z gumbom.',
'regenerate_command_line_token' => 'Ponovno ustvari žeton za ukazno vrstico',
'token_regenerated' => 'Nov žeton ukazne vrstice je bil ustvarjen',
'change_your_email' => 'Spremenite elektronski naslov',
'change_your_email' => 'Spremeni elektronski naslov',
'email_verification' => 'E-poštno sporočilo bo poslano na vaš stari IN novi e-poštni naslov. Iz varnostnih razlogov se ne boste mogli prijaviti, dokler ne potrdite svojega novega e-poštnega naslova. Če niste prepričani, ali vaša namestitev Firefly III omogoča pošiljanje e-pošte, prosimo, ne uporabljajte te funkcije. Če ste skrbnik, lahko to preizkusite v <a href="admin">Administracija</a>.',
'email_changed_logout' => 'Dokler ne potrdite svojega elektronskega naslova, se ne morete prijaviti.',
'login_with_new_email' => 'Zdaj se lahko prijavite z novim e-poštnim naslovom.',
@ -1561,7 +1567,7 @@ return [
'delete_attachment' => 'Izbriši prilogo ":name"',
'attachment_deleted' => 'Priloga ":name" izbrisana',
'liabilities_deleted' => 'Izbrisana odgovornost ":name"',
'attachment_updated' => 'Priloga ":name" posodobljena',
'attachment_updated' => 'Priloga ":name" je posodobljenaj',
'upload_max_file_size' => 'Največja velikost datoteke: :size',
'list_all_attachments' => 'Seznam vseh prilog',
@ -1578,24 +1584,24 @@ return [
'fire_webhooks_checkbox' => 'Sprožite Webhooke',
// convert stuff:
'convert_is_already_type_Withdrawal' => 'Ta transakcija je že odliv',
'convert_is_already_type_Withdrawal' => 'Ta transakcija je že dvig',
'convert_is_already_type_Deposit' => 'Ta transakcija je že polog',
'convert_is_already_type_Transfer' => 'Ta transakcija je že prenos',
'convert_to_Withdrawal' => 'Pretvori ":description" v odliv',
'convert_to_Withdrawal' => 'Pretvori ":description" v dvig',
'convert_to_Deposit' => 'Pretvori ":description" v polog',
'convert_to_Transfer' => 'Pretvori ":description" v prenos',
'convert_options_WithdrawalDeposit' => 'Pretvori odliv v polog',
'convert_options_WithdrawalTransfer' => 'Pretvori odliv v prenos',
'convert_options_WithdrawalDeposit' => 'Pretvori dvig v polog',
'convert_options_WithdrawalTransfer' => 'Pretvori dvig v prenos',
'convert_options_DepositTransfer' => 'Pretvori polog v prenos',
'convert_options_DepositWithdrawal' => 'Pretvori polog v odliv',
'convert_options_TransferWithdrawal' => 'Pretvori prenos v odliv',
'convert_options_DepositWithdrawal' => 'Pretvori polog v dvig',
'convert_options_TransferWithdrawal' => 'Pretvori prenos v dvig',
'convert_options_TransferDeposit' => 'Pretvori prenos v polog',
'convert_Withdrawal_to_deposit' => 'Pretvori ta odliv v polog',
'convert_Withdrawal_to_transfer' => 'Pretvori ta odliv v prenos',
'convert_Deposit_to_withdrawal' => 'Pretvori ta polog v odliv',
'convert_Withdrawal_to_deposit' => 'Pretvori ta dvig v polog',
'convert_Withdrawal_to_transfer' => 'Pretvori ta dvig v prenos',
'convert_Deposit_to_withdrawal' => 'Pretvori ta polog v dvig',
'convert_Deposit_to_transfer' => 'Pretvori ta polog v prenos',
'convert_Transfer_to_deposit' => 'Pretvori ta prenos v polog',
'convert_Transfer_to_withdrawal' => 'Pretvori ta prenos v odliv',
'convert_Transfer_to_withdrawal' => 'Pretvori ta prenos v dvig',
'convert_please_set_revenue_source' => 'Izberite račun prihodkov iz katerega boste prenesli denar.',
'convert_please_set_asset_destination' => 'Izberite račun sredstev na katerega boste prenesli denar.',
'convert_please_set_expense_destination' => 'Izberite na kateri račun stroškov bo šel denar.',
@ -1608,17 +1614,17 @@ return [
'convert_expl_t_d' => 'Ko pretvorite nakazilo v polog, bo denar položen na ciljni račun, ki ga vidite tukaj, namesto da bi bil nakazan vanj.|Ko pretvorite nakazilo v polog, bo denar položen na ciljne račune, ki jih vidite tukaj, namesto da bi bil prenesen vanje.',
'convert_select_sources' => 'Če želite dokončati pretvorbo, nastavite nov izvorni račun spodaj.|Za dokončanje pretvorbe nastavite nove izvorne račune spodaj.',
'convert_select_destinations' => 'Za dokončanje konverzije spodaj izberite nov ciljni račun.|Za dokončanje konverzije spodaj izberite nove ciljne račune.',
'converted_to_Withdrawal' => 'Transakcija je bila pretvorjena v odliv',
'converted_to_Withdrawal' => 'Transakcija je bila pretvorjena v dvig',
'converted_to_Deposit' => 'Transakcija je bila pretvorjena v polog',
'converted_to_Transfer' => 'Transakcija je bila pretvorjena v prenos',
'invalid_convert_selection' => 'Račun, ki ste ga izbrali, je v tej transakciji že uporabljen ali pa ne obstaja.',
'source_or_dest_invalid' => 'Ne najdem pravilnih podrobnosti o transakciji. Pretvorba ni mogoča.',
'convert_to_withdrawal' => 'Pretvori v odliv',
'convert_to_withdrawal' => 'Pretvori v dvig',
'convert_to_deposit' => 'Pretvori v polog',
'convert_to_transfer' => 'Pretvori v prenos',
// create new stuff:
'create_new_withdrawal' => 'Ustvari nov odliv',
'create_new_withdrawal' => 'Ustvari nov dvig',
'create_new_deposit' => 'Ustvari nov polog',
'create_new_transfer' => 'Ustvari nov prenos',
'create_new_asset' => 'Ustvari nov račun sredstev',
@ -1924,7 +1930,7 @@ return [
'create_new_category' => 'Ustvari novo kategorijo',
'without_category' => 'Brez kategorije',
'update_category' => 'Posodobi kategorije',
'updated_category' => 'Kategorija ":name" posodobljena',
'updated_category' => 'Kategorija ":name" je posodobljena',
'categories' => 'Kategorije',
'edit_category' => 'Uredi kategorijo ":name"',
'no_category' => '(brez kategorije)',
@ -1950,20 +1956,20 @@ return [
// transactions:
'unreconcile' => 'Razveljavi uskladitev',
'update_withdrawal' => 'Posodobi odliv',
'update_withdrawal' => 'Posodobi dvig',
'update_deposit' => 'Posodobi polog',
'update_transaction' => 'Posodobi transakcije',
'update_transfer' => 'Posodobi prenos',
'updated_withdrawal' => 'Odliv ":description" je posodobljen',
'updated_withdrawal' => 'Dvig ":description" je posodobljen',
'updated_deposit' => 'Polog ":description" je posodobljen',
'updated_transfer' => 'Prenos ":description" je posodobljen',
'no_changes_withdrawal' => 'Dvig ":description" ni bil spremenjen.',
'no_changes_deposit' => 'Depozit ":description" ni bil spremenjen.',
'no_changes_transfer' => 'Prenos ":description" ni bil spremenjen.',
'delete_withdrawal' => 'Odliv ":description" je izbrisan',
'delete_withdrawal' => 'Dvig ":description" je izbrisan',
'delete_deposit' => 'Izbriši polog ":description"',
'delete_transfer' => 'Izbriši prenos ":description"',
'deleted_withdrawal' => 'Odliv ":description" je uspešno izbrisan',
'deleted_withdrawal' => 'Dvig ":description" je uspešno izbrisan',
'deleted_deposit' => 'Polog ":description" je uspešno izbrisan',
'deleted_transfer' => 'Prenos ":description" je uspešno izbrisan',
'deleted_reconciliation' => 'Transakcija usklajevanja ":description" je bila uspešno izbrisana',
@ -2146,12 +2152,12 @@ return [
'piggy_banks' => 'Hranilniki',
'amount_x_of_y' => '{current} od {total}',
'bills' => 'Računi',
'withdrawal' => 'Odliv',
'withdrawal' => 'Dvig',
'opening_balance' => 'Začetno stanje',
'deposit' => 'Polog',
'account' => 'Račun',
'transfer' => 'Prenos',
'Withdrawal' => 'Odliv',
'Withdrawal' => 'Dvig',
'Deposit' => 'Polog',
'Transfer' => 'Prenos',
'bill' => 'Račun',
@ -2235,7 +2241,7 @@ return [
'more_info_help' => 'Več informacij o teh vrstah poročil lahko najdete na straneh s pomočjo. Pritisnite ikono (?) v zgornjem desnem kotu.',
'report_included_accounts' => 'Vključeni računi',
'report_date_range' => 'Datumski obseg',
'report_preset_ranges' => 'Prednadnastavljeni obsegi',
'report_preset_ranges' => 'Prednastavljeni obsegi',
'shared' => 'Skupni',
'fiscal_year' => 'Fiskalno leto',
'income_entry' => 'Prihodki na računi ":name" med :start in :end',
@ -2505,7 +2511,7 @@ return [
'journals_error_linked' => 'Te transakcije so že povezane.',
'journals_link_to_self' => 'Transakcije ni mogoče povezati samo nase',
'journal_links' => 'Povezave transakcije',
'this_withdrawal' => 'Ta odliv',
'this_withdrawal' => 'Ta dvig',
'this_deposit' => 'Ta polog',
'this_transfer' => 'Ta prenos',
'overview_for_link' => 'Pregled vrste povezav ":name"',
@ -2633,10 +2639,10 @@ return [
'overview_for_recurrence' => 'Pregled ponavljajočih se transakcij ":title"',
'warning_duplicates_repetitions' => 'V redkih primerih se datumi na tem seznamu pojavijo dvakrat. To se lahko zgodi, če pride do večkratnih ponovitev. Firefly III bo vedno ustvaril eno transakcijo na dan.',
'created_transactions' => 'Sorodne transakcije',
'expected_withdrawals' => 'Pričakovani odlivi',
'expected_withdrawals' => 'Pričakovani dvigi',
'expected_deposits' => 'Pričakovani pologi',
'expected_transfers' => 'Pričakovani prenosi',
'created_withdrawals' => 'Ustvarjeni odlivi',
'created_withdrawals' => 'Ustvarjeni dvigi',
'created_deposits' => 'Ustvarjeni pologi',
'created_transfers' => 'Ustvarjeno prenosi',
'recurring_info' => 'Ponavljajoča se transakcija :count / :total',
@ -2667,7 +2673,7 @@ return [
'recurring_repeats_forever' => 'Ponavlja se v nedogled',
'recurring_repeats_x_times' => 'Ponavlja se :count časa|Ponavlja se :count krat',
'update_recurrence' => 'Uredi ponavljajočo se transakcijo',
'updated_recurrence' => 'Uredi ponavljajočo se transakcijo ":title"',
'updated_recurrence' => 'Ponavljajoča se transakcija ":title" je bila urejena',
'recurrence_is_inactive' => 'Ta ponavljajoča se transakcija ni aktivna in ne bo ustvarila novih transakcij.',
'delete_recurring' => 'Izbriši ponavljajočo se transakcijo ":title"',
'new_recurring_transaction' => 'Nova ponavljajoča se transakcija',

View File

@ -94,7 +94,7 @@ return [
'cc_monthly_payment_date' => 'Datum mesečnega plačila s kreditno kartico',
'piggy_bank_id' => 'Hranilnik',
'returnHere' => 'Vrni se sem',
'returnHereExplanation' => 'Po shranjevanju se vrni sem in ustvari še eno.',
'returnHereExplanation' => 'Po shranjevanju se vrni sem in ustvari še enega.',
'returnHereUpdateExplanation' => 'Po shranjevanju se vrni sem.',
'description' => 'Opis',
'expense_account' => 'Račun stroškov',
@ -111,7 +111,7 @@ return [
'interest_period' => 'Obdobje obresti',
'extension_date' => 'Datum razširitve',
'type' => 'Vrsta',
'convert_Withdrawal' => 'Pretvori odliv',
'convert_Withdrawal' => 'Pretvori dvig',
'convert_Deposit' => 'Pretvori polog',
'convert_Transfer' => 'Pretvori prenos',
'amount' => 'Znesek',

View File

@ -133,7 +133,7 @@ return [
// show piggy
'piggy-banks_show_piggyChart' => 'Ta grafikon bo prikazal zgodovino tega hranilnika.',
'piggy-banks_show_piggyDetails' => 'Nekaj podrobnosti o vašem hranilniku',
'piggy-banks_show_piggyEvents' => 'Tukaj so navedeni tudi vsa dodajanja ali odstranitve.',
'piggy-banks_show_piggyEvents' => 'Tukaj so navedena tudi vsa dodajanja ali odstranitve.',
// bill index
'bills_index_rules' => 'Tukaj vidite, katera pravila bodo preverila, ali je to željen račun',

View File

@ -99,7 +99,7 @@ return [
'budget' => 'Proračun',
'category' => 'Kategorija',
'bill' => 'Račun',
'withdrawal' => 'Odhodek',
'withdrawal' => 'Dvig',
'deposit' => 'Prihodek',
'transfer' => 'Prenos',
'type' => 'Vrsta',
@ -130,7 +130,7 @@ return [
'total_amount' => 'Skupni znesek',
'sum' => 'Vsota',
'sum_excluding_transfers' => 'Vsota (brez prenosov)',
'sum_withdrawals' => 'Vsota odlivov',
'sum_withdrawals' => 'Vsota dvigov',
'sum_deposits' => 'Vsota prilivov',
'sum_transfers' => 'Vsota prenosov',
'sum_reconciliations' => 'Vsota uskladitev',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III ne najde naročnine ":name"',
'no_notes_to_move' => 'Transakcija nima nobenih opomb, ki bi jih bilo treba premakniti v polje opisa',
'no_tags_to_remove' => 'Transakcija nima oznak za odstranitev',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III ne najde oznake ":tag"',
'cannot_find_asset' => 'Firefly III ne najde računa sredstev ":name"',
'cannot_find_accounts' => 'Firefly III ne najde izvornega ali ciljnega računa',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Transaktionstypen är ":value"',
'search_modifier_not_transaction_type' => 'Transaction type is not ":value"',
'search_modifier_tag_is' => 'Taggen är ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'No tag is ":value"',
'search_modifier_date_on_year' => 'Transaction is in year ":value"',
'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Append notes to description',
'rule_action_move_descr_to_notes' => 'Replace notes with description',
'rule_action_move_notes_to_descr' => 'Replace description with notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Regelgrupp för räkningar',
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Transaction type is ":value"',
'search_modifier_not_transaction_type' => 'Transaction type is not ":value"',
'search_modifier_tag_is' => 'Tag is ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'No tag is ":value"',
'search_modifier_date_on_year' => 'Transaction is in year ":value"',
'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Append notes to description',
'rule_action_move_descr_to_notes' => 'Replace notes with description',
'rule_action_move_notes_to_descr' => 'Replace description with notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Rule group for bills',
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -470,6 +470,10 @@ return [
'search_modifier_transaction_type' => 'İşlem türü ":value"',
'search_modifier_not_transaction_type' => 'Transaction type is not ":value"',
'search_modifier_tag_is' => 'Etiket şu şekildedir:value',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'No tag is ":value"',
'search_modifier_date_on_year' => 'Transaction is in year ":value"',
'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"',
@ -1279,6 +1283,8 @@ return [
'rule_action_append_notes_to_descr' => 'Append notes to description',
'rule_action_move_descr_to_notes' => 'Replace notes with description',
'rule_action_move_notes_to_descr' => 'Replace description with notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Fatura kuralı grubu',
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Тип транзакції дорівнює ":value"',
'search_modifier_not_transaction_type' => 'Тип операції не ":value"',
'search_modifier_tag_is' => 'Мітка дорівнює ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'Жодної мітки зі значенням ":value"',
'search_modifier_date_on_year' => 'Рік операції ":value"',
'search_modifier_not_date_on_year' => 'Операція не в ":value" році',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Додайте примітки до опису',
'rule_action_move_descr_to_notes' => 'Замініть примітки в описі',
'rule_action_move_notes_to_descr' => 'Замініть примітки в описі',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Група правил для рахунків до сплати',
'rulegroup_for_bills_description' => 'Спеціальна група правил для всіх правил, які стосуються рахунків до сплати.',
'rule_for_bill_title' => 'Автоматично створене правило для рахунку до сплати ":name"',

View File

@ -56,6 +56,8 @@ return [
'cannot_find_subscription' => 'Firefly III can\'t find subscription ":name"',
'no_notes_to_move' => 'The transaction has no notes to move to the description field',
'no_tags_to_remove' => 'The transaction has no tags to remove',
'not_withdrawal' => 'The transaction is not a withdrawal',
'not_deposit' => 'The transaction is not a deposit',
'cannot_find_tag' => 'Firefly III can\'t find tag ":tag"',
'cannot_find_asset' => 'Firefly III can\'t find asset account ":name"',
'cannot_find_accounts' => 'Firefly III can\'t find the source or destination account',

View File

@ -43,13 +43,13 @@ return [
//'month_and_day' => '%B %e, %Y',
'month_and_day_moment_js' => 'MMM YYYY',
'month_and_day_fns' => 'MMMM d, y',
'month_and_day_js' => 'MMMM Do, YYYY',
'month_and_day_js' => 'D MMMM YYYY',
//'month_and_date_day' => '%A %B %e, %Y',
'month_and_date_day_js' => 'dddd MMMM Do, YYYY',
'month_and_date_day_js' => 'dddd D MMMM YYYY',
//'month_and_day_no_year' => '%B %e',
'month_and_day_no_year_js' => 'MMMM Do',
'month_and_day_no_year_js' => 'D MMMM',
/*
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
@ -64,8 +64,8 @@ return [
//'date_time' => '%B %e, %Y, @ %T',
'date_time_js' => 'MMMM Do, YYYY, @ HH:mm:ss',
'date_time_fns' => 'MMMM do, yyyy @ HH:mm:ss',
'date_time_js' => 'D MMMM YYYY, @ HH:mm:ss',
'date_time_fns' => 'd MMMM yyyy @ HH:mm:ss',
//'specific_day' => '%e %B %Y',
'specific_day_js' => 'D MMMM YYYY',

View File

@ -45,7 +45,7 @@ return [
'be_right_back' => 'Sẽ quay lại ngay!',
'check_back' => 'Firefly III ngừng hoạt động để bảo trì. Vui lòng kiểm tra lại sau một giây.',
'error_occurred' => 'Rất tiếc! Lỗi xảy ra.',
'db_error_occurred' => 'Whoops! A database error occurred.',
'db_error_occurred' => 'Ây dà! Có lỗi trong cơ sở dữ liệu.',
'error_not_recoverable' => 'Thật không may, lỗi này không thể phục hồi :(. Firefly III đã bị hỏng. Lỗi là:',
'error' => 'Lỗi',
'error_location' => 'Lỗi này xảy ra trong tập tin <span style="font-family: monospace;">:file</span> dòng :line code :code.',

View File

@ -43,8 +43,8 @@ return [
'split' => 'Chia ra',
'single_split' => 'Chia ra',
'clone' => 'Nhân ra',
'clone_and_edit' => 'Clone and edit',
'confirm_action' => 'Confirm action',
'clone_and_edit' => 'Nhân bản và sửa',
'confirm_action' => 'Xác nhận thao tác',
'last_seven_days' => 'Bảy ngày gần đây',
'last_thirty_days' => 'Ba mươi ngày gần đây',
'last_180_days' => '180 ngày qua',
@ -104,7 +104,7 @@ return [
'flash_error_multiple' => 'Có lỗi :lỗi',
'net_worth' => 'Tài sản thực',
'help_for_this_page' => 'Trợ giúp cho trang này',
'help_for_this_page_body' => 'You can find more information about this page <a href="https://docs.firefly-iii.org/">in the documentation</a>.',
'help_for_this_page_body' => 'Bạn có thể tìm thêm thông tin về trang này trong <a href="https://docs.firefly-iii.org/">liên kết này</a>.',
'two_factor_welcome' => 'Xin chào!',
'two_factor_enter_code' => 'Để tiếp tục, vui lòng nhập mã xác thực hai yếu tố của bạn. Ứng dụng của bạn có thể tạo ra nó cho bạn.',
'two_factor_code_here' => 'Nhập mã vào đây',
@ -123,7 +123,7 @@ return [
'warning_much_data' => ': ngày ngày dữ liệu có thể mất một lúc để tải.',
'registered' => 'Bạn đã đăng ký thành công!',
'Default asset account' => 'Mặc định tài khoản',
'no_budget_pointer' => 'You seem to have no budgets yet. You should create some on the <a href="budgets">budgets</a>-page. Budgets can help you keep track of expenses.',
'no_budget_pointer' => 'Dường như bạn chưa có ngân sách. Bạn nên tạo vài cái tại trang <a href="budgets">ngân sách</a>-. Ngân sách có thể giúp bạn theo dõi chi tiêu.',
'no_bill_pointer' => 'You seem to have no bills yet. You should create some on the <a href="bills">bills</a>-page. Bills can help you keep track of expenses.',
'Savings account' => 'Tài khoản tiết kiệm',
'Credit card' => 'Thẻ tín dụng',
@ -245,16 +245,16 @@ return [
'webhooks' => 'Webhooks',
'webhooks_breadcrumb' => 'Webhooks',
'no_webhook_messages' => 'There are no webhook messages',
'webhook_trigger_STORE_TRANSACTION' => 'After transaction creation',
'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update',
'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete',
'webhook_response_TRANSACTIONS' => 'Transaction details',
'webhook_response_ACCOUNTS' => 'Account details',
'webhook_response_none_NONE' => 'No details',
'webhook_trigger_STORE_TRANSACTION' => 'Sau khi tạo giao dịch',
'webhook_trigger_UPDATE_TRANSACTION' => 'Sau khi cập nhật giao dịch',
'webhook_trigger_DESTROY_TRANSACTION' => 'Sau khi xóa giao dịch',
'webhook_response_TRANSACTIONS' => 'Chi tiết giao dịch',
'webhook_response_ACCOUNTS' => 'Chi tiết tài khoản',
'webhook_response_none_NONE' => 'Không có chi tiết',
'webhook_delivery_JSON' => 'JSON',
'inspect' => 'Inspect',
'create_new_webhook' => 'Create new webhook',
'webhooks_create_breadcrumb' => 'Create new webhook',
'create_new_webhook' => 'Tạo webhook mới',
'webhooks_create_breadcrumb' => 'Tạo webhook mới',
'webhook_trigger_form_help' => 'Indicate on what event the webhook will trigger',
'webhook_response_form_help' => 'Indicate what the webhook must submit to the URL.',
'webhook_delivery_form_help' => 'Which format the webhook must deliver data in.',
@ -279,13 +279,13 @@ return [
'logs' => 'Logs',
'response' => 'Response',
'visit_webhook_url' => 'Visit webhook URL',
'reset_webhook_secret' => 'Reset webhook secret',
'webhook_stored_link' => '<a href="webhooks/show/{ID}">Webhook #{ID} ("{title}")</a> has been stored.',
'webhook_updated_link' => '<a href="webhooks/show/{ID}">Webhook #{ID}</a> ("{title}") has been updated.',
'reset_webhook_secret' => 'Cài lại khóa webhook',
'webhook_stored_link' => '<a href="webhooks/show/{ID}">Webhook #{ID} ("{title}")</a> đã được lưu trữ.',
'webhook_updated_link' => '<a href="webhooks/show/{ID}">Webhook #{ID}</a> ("{title}") đã được cập nhật.',
// API access
'authorization_request' => 'Firefly III v: phiên bản Yêu cầu ủy quyền',
'authorization_request_intro' => 'Application "<strong>:client</strong>" is requesting permission to access your financial administration. Would you like to authorize <strong>:client</strong> to access these records?',
'authorization_request_intro' => 'Ứng dụng <strong>:client</strong> đang yêu cầu sự cho phép truy cập quản trị tài chính của bạn. Bạn có muốn ủy quyền <strong>:client</strong> để truy cập những hồ sơ này?',
'authorization_request_site' => 'You will be redirected to <code>:url</code> which will then be able to access your Firefly III data.',
'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.',
'scopes_will_be_able' => 'Ứng dụng này sẽ có thể:',
@ -366,53 +366,53 @@ return [
'search_modifier_not_any_external_url' => 'The transaction has no external URL',
'search_modifier_not_any_external_id' => 'The transaction has no external ID',
'search_modifier_any_external_url' => 'Giao dịch phải có 1 (hoặc nhiều) URL bên ngoài',
'search_modifier_any_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_not_no_external_url' => 'The transaction must have a (any) external URL',
'search_modifier_any_external_id' => 'Giao dịch phải có 1 (hoặc nhiều) ID ngoài',
'search_modifier_not_no_external_url' => 'Giao dịch phải có 1 (hoặc nhiều) URL bên ngoài',
'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID',
'search_modifier_internal_reference_is' => 'Internal reference is ":value"',
'search_modifier_not_internal_reference_is' => 'Internal reference is not ":value"',
'search_modifier_description_starts' => 'Description starts with ":value"',
'search_modifier_not_description_starts' => 'Description does not start with ":value"',
'search_modifier_description_ends' => 'Description ends on ":value"',
'search_modifier_not_description_ends' => 'Description does not end on ":value"',
'search_modifier_not_internal_reference_is' => 'Tham chiếu nội bộ không phải ":value"',
'search_modifier_description_starts' => 'Mô tả bắt đầu bằng ":value"',
'search_modifier_not_description_starts' => 'Mô tả không bắt đầu bằng ":value"',
'search_modifier_description_ends' => 'Mô tả kết thúc bằng ":value"',
'search_modifier_not_description_ends' => 'Mô tả không kết thúc bằng ":value"',
'search_modifier_description_contains' => 'Mô tả có chứa ":value"',
'search_modifier_not_description_contains' => 'Description does not contain ":value"',
'search_modifier_not_description_contains' => 'Mô tả không có chứa ":value"',
'search_modifier_description_is' => 'Mô tả chính xác ":value"',
'search_modifier_not_description_is' => 'Description is exactly not ":value"',
'search_modifier_not_description_is' => 'Mô tả chắc chắn không phải ":value"',
'search_modifier_currency_is' => 'Đơn vị tiền tệ của giao dịch (nước ngoài) là ":value"',
'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"',
'search_modifier_not_currency_is' => 'Tiền (ngoại tệ) giao dịch không phải là ":value"',
'search_modifier_foreign_currency_is' => 'Ngoại tệ giao dịch là ":value"',
'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"',
'search_modifier_not_foreign_currency_is' => 'Ngoại tệ của giao dịch không phải là ":value"',
'search_modifier_has_attachments' => 'Giao dịch phải có tệp đính kèm',
'search_modifier_has_no_category' => 'Giao dịch phải không có danh mục',
'search_modifier_not_has_no_category' => 'The transaction must have a (any) category',
'search_modifier_not_has_any_category' => 'The transaction must have no category',
'search_modifier_not_has_no_category' => 'Giao dịch phải có 1 (bất kì) danh mục',
'search_modifier_not_has_any_category' => 'Giao dịch phải không có danh mục',
'search_modifier_has_any_category' => 'Giao dịch phải có danh mục',
'search_modifier_has_no_budget' => 'Giao dịch phải không có ngân sách',
'search_modifier_not_has_any_budget' => 'The transaction must have no budget',
'search_modifier_not_has_any_budget' => 'Giao dịch phải không có ngân sách',
'search_modifier_has_any_budget' => 'Giao dịch có ngân sách (bất kỳ)',
'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget',
'search_modifier_not_has_no_budget' => 'Giao dịch có 1 (bất kỳ) ngân sách',
'search_modifier_has_no_bill' => 'Giao dịch phải không có hóa đơn',
'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill',
'search_modifier_not_has_no_bill' => 'Giao dịch phải có 1 (bất kì) hóa đơn',
'search_modifier_has_any_bill' => 'Giao dịch phải có 1 (hoặc nhiều) hóa đơn',
'search_modifier_not_has_any_bill' => 'The transaction must have no bill',
'search_modifier_not_has_any_bill' => 'Giao dịch phải không có hóa đơn',
'search_modifier_has_no_tag' => 'Giao dịch phải không có thẻ',
'search_modifier_not_has_any_tag' => 'The transaction must have no tags',
'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag',
'search_modifier_not_has_any_tag' => 'Giao dịch phải không có thẻ',
'search_modifier_not_has_no_tag' => 'Giao dịch phải có 1 (bất kì) thẻ',
'search_modifier_has_any_tag' => 'Giao dịch phải có thẻ',
'search_modifier_notes_contains' => 'The transaction notes contain ":value"',
'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"',
'search_modifier_notes_starts' => 'The transaction notes start with ":value"',
'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"',
'search_modifier_notes_ends' => 'The transaction notes end with ":value"',
'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"',
'search_modifier_notes_is' => 'The transaction notes are exactly ":value"',
'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"',
'search_modifier_notes_contains' => 'Các ghi chú giao dịch chứa ":value"',
'search_modifier_not_notes_contains' => 'Các ghi chú giao dịch không chứa ":value"',
'search_modifier_notes_starts' => 'Các ghi chú giao dịch bắt đầu bằng ":value"',
'search_modifier_not_notes_starts' => 'Các ghi chú giao dịch không bắt đầu bằng ":value"',
'search_modifier_notes_ends' => 'Các ghi chú giao dịch kết thúc bằng ":value"',
'search_modifier_not_notes_ends' => 'Các ghi chú giao dịch không kết thúc bằng ":value"',
'search_modifier_notes_is' => 'Các ghi chú giao dịch chính xác là ":value"',
'search_modifier_not_notes_is' => 'Các ghi chú giao dịch không chính xác là ":value"',
'search_modifier_no_notes' => 'Giao dịch không có ghi chú',
'search_modifier_not_no_notes' => 'The transaction must have notes',
'search_modifier_not_no_notes' => 'Giao dịch phải có ghi chú',
'search_modifier_any_notes' => 'Giao dịch phải có ghi chú',
'search_modifier_not_any_notes' => 'The transaction has no notes',
'search_modifier_amount_is' => 'Amount is exactly :value',
'search_modifier_not_any_notes' => 'Giao dịch không có ghi chú',
'search_modifier_amount_is' => 'Số lượng chính xác là :value',
'search_modifier_not_amount_is' => 'Amount is not :value',
'search_modifier_amount_less' => 'Số tiền phải nhỏ hơn hoặc bằng :value',
'search_modifier_not_amount_more' => 'Amount is less than or equal to :value',
@ -469,6 +469,10 @@ return [
'search_modifier_transaction_type' => 'Transaction type is ":value"',
'search_modifier_not_transaction_type' => 'Transaction type is not ":value"',
'search_modifier_tag_is' => 'Nhãn là ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
'search_modifier_not_tag_is' => 'No tag is ":value"',
'search_modifier_date_on_year' => 'Transaction is in year ":value"',
'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"',
@ -1278,6 +1282,8 @@ return [
'rule_action_append_notes_to_descr' => 'Append notes to description',
'rule_action_move_descr_to_notes' => 'Replace notes with description',
'rule_action_move_notes_to_descr' => 'Replace description with notes',
'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)',
'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)',
'rulegroup_for_bills_title' => 'Nhóm quy tắc cho hóa đơn',
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',

View File

@ -55,10 +55,10 @@ return [
'lastActivity' => 'Hoạt động cuối cùng',
'balanceDiff' => 'Số dư chênh lệch',
'other_meta_data' => 'Dữ liệu khác',
'invited_at' => 'Invited at',
'expires' => 'Invitation expires',
'invited_by' => 'Invited by',
'invite_link' => 'Invite link',
'invited_at' => 'Được mời lúc',
'expires' => 'Lời mời đã quá hạn',
'invited_by' => 'Được mời bởi',
'invite_link' => 'Link mời',
'account_type' => 'Loại tài khoản',
'created_at' => 'Được tạo tại',
'account' => 'Tài khoản',
@ -105,7 +105,7 @@ return [
'type' => 'Loại',
'completed' => 'Đã hoàn thành',
'iban' => 'IBAN',
'account_number' => 'Account number',
'account_number' => 'Số tài khoản',
'paid_current_period' => 'Được trả ở thời gian này',
'email' => 'Thư điện tử',
'registered_at' => 'Đã đăng ký tại',
@ -180,11 +180,11 @@ return [
'payment_info' => 'Thông tin thanh toán',
'expected_info' => 'Giao dịch dự kiến tiếp theo',
'start_date' => 'Ngày bắt đầu',
'trigger' => 'Trigger',
'response' => 'Response',
'delivery' => 'Delivery',
'trigger' => 'Kích hoạt',
'response' => 'Đáp lại',
'delivery' => 'Phân phối',
'url' => 'URL',
'secret' => 'Secret',
'secret' => 'Mã bí mật',
];
/*

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