mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-03-12 07:17:53 +00:00
Compare commits
16 Commits
develop-20
...
develop-20
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c44e48a793 | ||
|
|
322f70bcca | ||
|
|
35559c077b | ||
|
|
590ffe7c76 | ||
|
|
8a2d8f148e | ||
|
|
4f0e15e07d | ||
|
|
7463861e0c | ||
|
|
1e70fa28be | ||
|
|
26c6ca470b | ||
|
|
5e54034e0e | ||
|
|
25873ef734 | ||
|
|
1092b04b22 | ||
|
|
01ce74dd72 | ||
|
|
41430d8386 | ||
|
|
01eb19169c | ||
|
|
cfaa7d7c68 |
16
.ci/php-cs-fixer/composer.lock
generated
16
.ci/php-cs-fixer/composer.lock
generated
@@ -160,16 +160,16 @@
|
||||
},
|
||||
{
|
||||
"name": "composer/xdebug-handler",
|
||||
"version": "3.0.3",
|
||||
"version": "3.0.4",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/composer/xdebug-handler.git",
|
||||
"reference": "ced299686f41dce890debac69273b47ffe98a40c"
|
||||
"reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
|
||||
"reference": "ced299686f41dce890debac69273b47ffe98a40c",
|
||||
"url": "https://api.github.com/repos/composer/xdebug-handler/zipball/4f988f8fdf580d53bdb2d1278fe93d1ed5462255",
|
||||
"reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -180,7 +180,7 @@
|
||||
"require-dev": {
|
||||
"phpstan/phpstan": "^1.0",
|
||||
"phpstan/phpstan-strict-rules": "^1.1",
|
||||
"symfony/phpunit-bridge": "^6.0"
|
||||
"phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
@@ -204,9 +204,9 @@
|
||||
"performance"
|
||||
],
|
||||
"support": {
|
||||
"irc": "irc://irc.freenode.org/composer",
|
||||
"irc": "ircs://irc.libera.chat:6697/composer",
|
||||
"issues": "https://github.com/composer/xdebug-handler/issues",
|
||||
"source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
|
||||
"source": "https://github.com/composer/xdebug-handler/tree/3.0.4"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -222,7 +222,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2022-02-25T21:32:43+00:00"
|
||||
"time": "2024-03-26T18:29:49+00:00"
|
||||
},
|
||||
{
|
||||
"name": "friendsofphp/php-cs-fixer",
|
||||
|
||||
@@ -111,7 +111,10 @@ PGSQL_SSL_CERT=null
|
||||
PGSQL_SSL_KEY=null
|
||||
PGSQL_SSL_CRL_FILE=null
|
||||
|
||||
# more PostgreSQL settings
|
||||
# For postgresql 15 and up, setting this to public will no longer work as expected, becasuse the
|
||||
# 'public' schema is without grants. This can be worked around by having a super user grant those
|
||||
# necessary privileges, but in security conscious setups that's not viable.
|
||||
# You will need to set this to the schema you want to use.
|
||||
PGSQL_SCHEMA=public
|
||||
|
||||
# If you're looking for performance improvements, you could install memcached or redis
|
||||
|
||||
34
.github/workflows/release.yml
vendored
34
.github/workflows/release.yml
vendored
@@ -115,8 +115,8 @@ jobs:
|
||||
GH_TOKEN: ''
|
||||
- name: Build new JS
|
||||
run: |
|
||||
npm update
|
||||
npm install
|
||||
npm update
|
||||
npm run build
|
||||
- name: Build old JS
|
||||
id: old-js
|
||||
@@ -160,26 +160,56 @@ jobs:
|
||||
# zip everything
|
||||
zip -rq $zipName . -x "*.git*" "*.ci*" "*.github*" "*node_modules*" "*output.txt*"
|
||||
|
||||
# add sha256 sum
|
||||
sha256sum -b $zipName > $zipName.sha256
|
||||
|
||||
if [[ "develop" == "$version" ]]; then
|
||||
# add text to output.txt (instructions)
|
||||
rm output.txt
|
||||
echo "Bi-weekly development release of Firefly III with the latest fixes, translations and features. Docker users can find this release under the \`develop\` tag." >> output.txt
|
||||
echo "" >> output.txt
|
||||
echo "This release was created on **$(date +'%Y-%m-%d')** and may contain unexpected bugs. Data loss is rare but is not impossible." >> output.txt
|
||||
echo "" >> output.txt
|
||||
echo "* Please read the installation instructions for [Docker](https://docs.firefly-iii.org/how-to/firefly-iii/installation/docker/), [Portainer](https://docs.firefly-iii.org/how-to/firefly-iii/installation/portainer/), [Kubernetes](https://docs.firefly-iii.org/how-to/firefly-iii/installation/kubernetes/) or [self-managed servers](https://docs.firefly-iii.org/how-to/firefly-iii/installation/self-managed/)" >> output.txt
|
||||
echo "* Or read the upgrade instructions for [Docker](https://docs.firefly-iii.org/how-to/firefly-iii/upgrade/docker/), [Kubernetes](https://docs.firefly-iii.org/how-to/firefly-iii/upgrade/kubernetes/) or [self-managed servers](https://docs.firefly-iii.org/how-to/firefly-iii/upgrade/self-managed/)" >> output.txt
|
||||
echo "" >> output.txt
|
||||
echo ":warning: Please be careful with this pre-release, as is may not work as expected." >> output.txt
|
||||
|
||||
# create the release:
|
||||
echo "Create nightly release."
|
||||
git tag -a $releaseName -m "Nightly development release '$version' on $(date +'%Y-%m-%d')"
|
||||
git push origin $releaseName
|
||||
gh release create $releaseName -p --verify-tag \
|
||||
-t "Development release for $(date +'%Y-%m-%d')" \
|
||||
-n "Bi-weekly development release of Firefly III with the latest fixes, translations and features. This release was created on **$(date +'%Y-%m-%d')** and may contain bugs. Use at your own risk. Docker users can find this release under the \`develop\` tag."
|
||||
-F output.txt
|
||||
|
||||
# add zip file to release.
|
||||
gh release upload $releaseName $zipName
|
||||
|
||||
# add sha256 sum to release
|
||||
gh release upload $releaseName $zipName.sha256
|
||||
|
||||
# rm output.txt again
|
||||
rm output.txt
|
||||
else
|
||||
# add text to output.txt (more instructions)
|
||||
echo '' >> output.txt
|
||||
echo '### Instructions' >> output.txt
|
||||
echo '' >> output.txt
|
||||
echo "* Installation instructions for [Docker](https://docs.firefly-iii.org/how-to/firefly-iii/installation/docker/), [Portainer](https://docs.firefly-iii.org/how-to/firefly-iii/installation/portainer/), [Kubernetes](https://docs.firefly-iii.org/how-to/firefly-iii/installation/kubernetes/) or [self-managed servers](https://docs.firefly-iii.org/how-to/firefly-iii/installation/self-managed/)" >> output.txt
|
||||
echo "* Or read the upgrade instructions for [Docker](https://docs.firefly-iii.org/how-to/firefly-iii/upgrade/docker/), [Kubernetes](https://docs.firefly-iii.org/how-to/firefly-iii/upgrade/kubernetes/) or [self-managed servers](https://docs.firefly-iii.org/how-to/firefly-iii/upgrade/self-managed/)" >> output.txt
|
||||
|
||||
echo "Create default release."
|
||||
git tag -a $releaseName -m "Here be changelog"
|
||||
git push origin $releaseName
|
||||
gh release create $releaseName -F output.txt -t "$releaseName" --verify-tag
|
||||
# add zip file to release.
|
||||
gh release upload $releaseName $zipName
|
||||
# add sha256 sum to release
|
||||
gh release upload $releaseName $zipName.sha256
|
||||
rm output.txt
|
||||
rm $zipName
|
||||
rm $zipName.sha256
|
||||
git checkout develop
|
||||
git merge main
|
||||
git push
|
||||
|
||||
99
composer.lock
generated
99
composer.lock
generated
@@ -1670,16 +1670,16 @@
|
||||
},
|
||||
{
|
||||
"name": "laravel/framework",
|
||||
"version": "v11.0.8",
|
||||
"version": "v11.1.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laravel/framework.git",
|
||||
"reference": "0379a7ccb77e2029c43ce508fa76e251a0d68fce"
|
||||
"reference": "4a9195f68b529b20fe01e24864f99991459c48d4"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laravel/framework/zipball/0379a7ccb77e2029c43ce508fa76e251a0d68fce",
|
||||
"reference": "0379a7ccb77e2029c43ce508fa76e251a0d68fce",
|
||||
"url": "https://api.github.com/repos/laravel/framework/zipball/4a9195f68b529b20fe01e24864f99991459c48d4",
|
||||
"reference": "4a9195f68b529b20fe01e24864f99991459c48d4",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1871,20 +1871,20 @@
|
||||
"issues": "https://github.com/laravel/framework/issues",
|
||||
"source": "https://github.com/laravel/framework"
|
||||
},
|
||||
"time": "2024-03-21T14:15:49+00:00"
|
||||
"time": "2024-03-26T15:17:39+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravel/passport",
|
||||
"version": "v12.0.1",
|
||||
"version": "v12.0.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laravel/passport.git",
|
||||
"reference": "37a5b5fbcae25dbb7c6a973957c2ce490e76946e"
|
||||
"reference": "21099f1aff81706781578a19335d8a4c7c96422a"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laravel/passport/zipball/37a5b5fbcae25dbb7c6a973957c2ce490e76946e",
|
||||
"reference": "37a5b5fbcae25dbb7c6a973957c2ce490e76946e",
|
||||
"url": "https://api.github.com/repos/laravel/passport/zipball/21099f1aff81706781578a19335d8a4c7c96422a",
|
||||
"reference": "21099f1aff81706781578a19335d8a4c7c96422a",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1904,6 +1904,7 @@
|
||||
"nyholm/psr7": "^1.5",
|
||||
"php": "^8.0",
|
||||
"phpseclib/phpseclib": "^2.0|^3.0",
|
||||
"symfony/console": "^6.0|^7.0",
|
||||
"symfony/psr-http-message-bridge": "^2.1|^6.0|^7.0"
|
||||
},
|
||||
"require-dev": {
|
||||
@@ -1946,20 +1947,20 @@
|
||||
"issues": "https://github.com/laravel/passport/issues",
|
||||
"source": "https://github.com/laravel/passport"
|
||||
},
|
||||
"time": "2024-03-14T16:27:37+00:00"
|
||||
"time": "2024-03-21T18:44:57+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravel/prompts",
|
||||
"version": "v0.1.16",
|
||||
"version": "v0.1.17",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laravel/prompts.git",
|
||||
"reference": "ca6872ab6aec3ab61db3a61f83a6caf764ec7781"
|
||||
"reference": "8ee9f87f7f9eadcbe21e9e72cd4176b2f06cd5b5"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laravel/prompts/zipball/ca6872ab6aec3ab61db3a61f83a6caf764ec7781",
|
||||
"reference": "ca6872ab6aec3ab61db3a61f83a6caf764ec7781",
|
||||
"url": "https://api.github.com/repos/laravel/prompts/zipball/8ee9f87f7f9eadcbe21e9e72cd4176b2f06cd5b5",
|
||||
"reference": "8ee9f87f7f9eadcbe21e9e72cd4176b2f06cd5b5",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -2001,22 +2002,22 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/laravel/prompts/issues",
|
||||
"source": "https://github.com/laravel/prompts/tree/v0.1.16"
|
||||
"source": "https://github.com/laravel/prompts/tree/v0.1.17"
|
||||
},
|
||||
"time": "2024-02-21T19:25:27+00:00"
|
||||
"time": "2024-03-13T16:05:43+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravel/sanctum",
|
||||
"version": "v4.0.0",
|
||||
"version": "v4.0.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laravel/sanctum.git",
|
||||
"reference": "9e6e561308cace166de9ceae4ced820309fa8e13"
|
||||
"reference": "d1de99bf8d31199aaf93881561622489ab91ba58"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laravel/sanctum/zipball/9e6e561308cace166de9ceae4ced820309fa8e13",
|
||||
"reference": "9e6e561308cace166de9ceae4ced820309fa8e13",
|
||||
"url": "https://api.github.com/repos/laravel/sanctum/zipball/d1de99bf8d31199aaf93881561622489ab91ba58",
|
||||
"reference": "d1de99bf8d31199aaf93881561622489ab91ba58",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -2025,7 +2026,8 @@
|
||||
"illuminate/contracts": "^11.0",
|
||||
"illuminate/database": "^11.0",
|
||||
"illuminate/support": "^11.0",
|
||||
"php": "^8.2"
|
||||
"php": "^8.2",
|
||||
"symfony/console": "^7.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"mockery/mockery": "^1.6",
|
||||
@@ -2066,7 +2068,7 @@
|
||||
"issues": "https://github.com/laravel/sanctum/issues",
|
||||
"source": "https://github.com/laravel/sanctum"
|
||||
},
|
||||
"time": "2024-03-12T14:07:05+00:00"
|
||||
"time": "2024-03-19T20:09:38+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravel/serializable-closure",
|
||||
@@ -2195,16 +2197,16 @@
|
||||
},
|
||||
{
|
||||
"name": "laravel/ui",
|
||||
"version": "v4.5.0",
|
||||
"version": "v4.5.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laravel/ui.git",
|
||||
"reference": "da3811f409297d13feccd5858ce748e7474b3d11"
|
||||
"reference": "a3562953123946996a503159199d6742d5534e61"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laravel/ui/zipball/da3811f409297d13feccd5858ce748e7474b3d11",
|
||||
"reference": "da3811f409297d13feccd5858ce748e7474b3d11",
|
||||
"url": "https://api.github.com/repos/laravel/ui/zipball/a3562953123946996a503159199d6742d5534e61",
|
||||
"reference": "a3562953123946996a503159199d6742d5534e61",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -2212,7 +2214,8 @@
|
||||
"illuminate/filesystem": "^9.21|^10.0|^11.0",
|
||||
"illuminate/support": "^9.21|^10.0|^11.0",
|
||||
"illuminate/validation": "^9.21|^10.0|^11.0",
|
||||
"php": "^8.0"
|
||||
"php": "^8.0",
|
||||
"symfony/console": "^6.0|^7.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"orchestra/testbench": "^7.35|^8.15|^9.0",
|
||||
@@ -2251,9 +2254,9 @@
|
||||
"ui"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/laravel/ui/tree/v4.5.0"
|
||||
"source": "https://github.com/laravel/ui/tree/v4.5.1"
|
||||
},
|
||||
"time": "2024-03-04T13:58:27+00:00"
|
||||
"time": "2024-03-21T18:12:29+00:00"
|
||||
},
|
||||
{
|
||||
"name": "lcobucci/clock",
|
||||
@@ -2725,16 +2728,16 @@
|
||||
},
|
||||
{
|
||||
"name": "league/flysystem",
|
||||
"version": "3.25.1",
|
||||
"version": "3.26.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/thephpleague/flysystem.git",
|
||||
"reference": "abbd664eb4381102c559d358420989f835208f18"
|
||||
"reference": "072735c56cc0da00e10716dd90d5a7f7b40b36be"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/abbd664eb4381102c559d358420989f835208f18",
|
||||
"reference": "abbd664eb4381102c559d358420989f835208f18",
|
||||
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/072735c56cc0da00e10716dd90d5a7f7b40b36be",
|
||||
"reference": "072735c56cc0da00e10716dd90d5a7f7b40b36be",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -2799,7 +2802,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/thephpleague/flysystem/issues",
|
||||
"source": "https://github.com/thephpleague/flysystem/tree/3.25.1"
|
||||
"source": "https://github.com/thephpleague/flysystem/tree/3.26.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -2811,7 +2814,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2024-03-16T12:53:19+00:00"
|
||||
"time": "2024-03-25T11:49:53+00:00"
|
||||
},
|
||||
{
|
||||
"name": "league/flysystem-local",
|
||||
@@ -3363,16 +3366,16 @@
|
||||
},
|
||||
{
|
||||
"name": "nesbot/carbon",
|
||||
"version": "3.1.1",
|
||||
"version": "3.2.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/briannesbitt/Carbon.git",
|
||||
"reference": "34ccf6f6b49c915421c7886c88c0cb77f3ebbfd2"
|
||||
"reference": "b4272c2e78d30f9085b079aedb692b2da879b313"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/34ccf6f6b49c915421c7886c88c0cb77f3ebbfd2",
|
||||
"reference": "34ccf6f6b49c915421c7886c88c0cb77f3ebbfd2",
|
||||
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/b4272c2e78d30f9085b079aedb692b2da879b313",
|
||||
"reference": "b4272c2e78d30f9085b079aedb692b2da879b313",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -3390,14 +3393,14 @@
|
||||
"require-dev": {
|
||||
"doctrine/dbal": "^3.6.3 || ^4.0",
|
||||
"doctrine/orm": "^2.15.2 || ^3.0",
|
||||
"friendsofphp/php-cs-fixer": "^3.18.0",
|
||||
"kylekatarnls/multi-tester": "^2.2.0",
|
||||
"ondrejmirtes/better-reflection": "^6.11.0.0",
|
||||
"phpmd/phpmd": "^2.13.0",
|
||||
"phpstan/extension-installer": "^1.3.0",
|
||||
"phpstan/phpstan": "^1.10.20",
|
||||
"phpunit/phpunit": "^10.2.2",
|
||||
"squizlabs/php_codesniffer": "^3.7.2"
|
||||
"friendsofphp/php-cs-fixer": "^3.52.1",
|
||||
"kylekatarnls/multi-tester": "^2.5.3",
|
||||
"ondrejmirtes/better-reflection": "^6.25.0.4",
|
||||
"phpmd/phpmd": "^2.15.0",
|
||||
"phpstan/extension-installer": "^1.3.1",
|
||||
"phpstan/phpstan": "^1.10.65",
|
||||
"phpunit/phpunit": "^10.5.15",
|
||||
"squizlabs/php_codesniffer": "^3.9.0"
|
||||
},
|
||||
"bin": [
|
||||
"bin/carbon"
|
||||
@@ -3465,7 +3468,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-03-13T12:42:37+00:00"
|
||||
"time": "2024-03-27T21:37:24+00:00"
|
||||
},
|
||||
{
|
||||
"name": "nette/schema",
|
||||
|
||||
@@ -117,7 +117,7 @@ return [
|
||||
'expression_engine' => false,
|
||||
// see cer.php for exchange rates feature flag.
|
||||
],
|
||||
'version' => 'develop/2024-03-25',
|
||||
'version' => 'develop/2024-03-28',
|
||||
'api_version' => '2.0.12',
|
||||
'db_version' => 23,
|
||||
|
||||
|
||||
8
package-lock.json
generated
8
package-lock.json
generated
@@ -33,7 +33,7 @@
|
||||
"laravel-vite-plugin": "^0.8.1",
|
||||
"patch-package": "^8.0.0",
|
||||
"sass": "^1.72.0",
|
||||
"vite": "^4.5.2",
|
||||
"vite": "^4.5.3",
|
||||
"vite-plugin-manifest-sri": "^0.1.0"
|
||||
}
|
||||
},
|
||||
@@ -1757,9 +1757,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/vite": {
|
||||
"version": "4.5.2",
|
||||
"resolved": "https://registry.npmjs.org/vite/-/vite-4.5.2.tgz",
|
||||
"integrity": "sha512-tBCZBNSBbHQkaGyhGCDUGqeo2ph8Fstyp6FMSvTtsXeZSPpSMGlviAOav2hxVTqFcx8Hj/twtWKsMJXNY0xI8w==",
|
||||
"version": "4.5.3",
|
||||
"resolved": "https://registry.npmjs.org/vite/-/vite-4.5.3.tgz",
|
||||
"integrity": "sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"esbuild": "^0.18.10",
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
"laravel-vite-plugin": "^0.8.1",
|
||||
"patch-package": "^8.0.0",
|
||||
"sass": "^1.72.0",
|
||||
"vite": "^4.5.2",
|
||||
"vite": "^4.5.3",
|
||||
"vite-plugin-manifest-sri": "^0.1.0"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"spent": "Gastat",
|
||||
"left": "Queda",
|
||||
"paid": "Pagat",
|
||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||
"errors_submission_v2": "Hi ha hagut un error amb el teu enviament. Per favor, comprova els seg\u00fcents errors: {{errorMessage}}",
|
||||
"unpaid": "Pendent de pagament",
|
||||
"default_group_title_name_plain": "no agrupades",
|
||||
"subscriptions_in_group": "Subscripcions al grup \"%{title}\"",
|
||||
@@ -23,7 +23,7 @@
|
||||
"unknown_dest_plain": "Compte de dest\u00ed desconegut",
|
||||
"unknown_any_plain": "Compte desconegut",
|
||||
"unknown_budget_plain": "Cap pressupost",
|
||||
"stored_journal_js": "Successfully created new transaction \"{{description}}\"",
|
||||
"stored_journal_js": "S'ha creat la transacci\u00f3 \"{{description}}\" correctament",
|
||||
"wait_loading_transaction": "Per favor, espera que carregui el formulari",
|
||||
"nothing_found": "(no s'ha trobat res)",
|
||||
"wait_loading_data": "Per favor, espera que carregui la teva informaci\u00f3...",
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"spent": "Gastat",
|
||||
"left": "Queda",
|
||||
"paid": "Pagat",
|
||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||
"errors_submission_v2": "Hi ha hagut un error amb el teu enviament. Per favor, comprova els seg\u00fcents errors: {{errorMessage}}",
|
||||
"unpaid": "Pendent de pagament",
|
||||
"default_group_title_name_plain": "no agrupades",
|
||||
"subscriptions_in_group": "Subscripcions al grup \"%{title}\"",
|
||||
@@ -23,7 +23,7 @@
|
||||
"unknown_dest_plain": "Compte de dest\u00ed desconegut",
|
||||
"unknown_any_plain": "Compte desconegut",
|
||||
"unknown_budget_plain": "Cap pressupost",
|
||||
"stored_journal_js": "Successfully created new transaction \"{{description}}\"",
|
||||
"stored_journal_js": "S'ha creat la transacci\u00f3 \"{{description}}\" correctament",
|
||||
"wait_loading_transaction": "Per favor, espera que carregui el formulari",
|
||||
"nothing_found": "(no s'ha trobat res)",
|
||||
"wait_loading_data": "Per favor, espera que carregui la teva informaci\u00f3...",
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"spent": "Ausgegeben",
|
||||
"left": "\u00dcbrig",
|
||||
"paid": "Bezahlt",
|
||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||
"errors_submission_v2": "Bei Ihrer \u00dcbermittlung ist ein Fehler aufgetreten. Bitte \u00fcberpr\u00fcfen Sie die unten stehenden Fehler: {{errorMessage}}",
|
||||
"unpaid": "Unbezahlt",
|
||||
"default_group_title_name_plain": "ungruppiert",
|
||||
"subscriptions_in_group": "Abonnements in Gruppe \"%{title}\"",
|
||||
@@ -23,7 +23,7 @@
|
||||
"unknown_dest_plain": "Unbekanntes Zielkonto",
|
||||
"unknown_any_plain": "Unbekanntes Konto",
|
||||
"unknown_budget_plain": "Kein Budget",
|
||||
"stored_journal_js": "Successfully created new transaction \"{{description}}\"",
|
||||
"stored_journal_js": "Neue Buchung \u201e{{description}}\u201d erfolgreich erstellt",
|
||||
"wait_loading_transaction": "Bitte warten Sie, bis das Formular geladen wurde",
|
||||
"nothing_found": "(nichts gefunden)",
|
||||
"wait_loading_data": "Bitte warten Sie, bis Ihre Informationen geladen wurden \u2026",
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"spent": "Ausgegeben",
|
||||
"left": "\u00dcbrig",
|
||||
"paid": "Bezahlt",
|
||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||
"errors_submission_v2": "Bei Ihrer \u00dcbermittlung ist ein Fehler aufgetreten. Bitte \u00fcberpr\u00fcfen Sie die unten stehenden Fehler: {{errorMessage}}",
|
||||
"unpaid": "Unbezahlt",
|
||||
"default_group_title_name_plain": "ungruppiert",
|
||||
"subscriptions_in_group": "Abonnements in Gruppe \"%{title}\"",
|
||||
@@ -23,7 +23,7 @@
|
||||
"unknown_dest_plain": "Unbekanntes Zielkonto",
|
||||
"unknown_any_plain": "Unbekanntes Konto",
|
||||
"unknown_budget_plain": "Kein Budget",
|
||||
"stored_journal_js": "Successfully created new transaction \"{{description}}\"",
|
||||
"stored_journal_js": "Neue Buchung \u201e{{description}}\u201d erfolgreich erstellt",
|
||||
"wait_loading_transaction": "Bitte warten Sie, bis das Formular geladen wurde",
|
||||
"nothing_found": "(nichts gefunden)",
|
||||
"wait_loading_data": "Bitte warten Sie, bis Ihre Informationen geladen wurden \u2026",
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"spent": "D\u00e9pens\u00e9",
|
||||
"left": "Reste",
|
||||
"paid": "Pay\u00e9",
|
||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||
"errors_submission_v2": "Certaines informations ne sont pas correctes dans votre formulaire. Veuillez v\u00e9rifier les erreurs ci-dessous : {{errorMessage}}",
|
||||
"unpaid": "Impay\u00e9",
|
||||
"default_group_title_name_plain": "non group\u00e9",
|
||||
"subscriptions_in_group": "Abonnements dans le groupe \"%{title}\"",
|
||||
@@ -23,7 +23,7 @@
|
||||
"unknown_dest_plain": "Compte de destination inconnu",
|
||||
"unknown_any_plain": "Compte inconnu",
|
||||
"unknown_budget_plain": "Pas de budget",
|
||||
"stored_journal_js": "Successfully created new transaction \"{{description}}\"",
|
||||
"stored_journal_js": "Op\u00e9ration \"{{description}}\" cr\u00e9\u00e9e avec succ\u00e8s",
|
||||
"wait_loading_transaction": "Veuillez patienter pendant le chargement du formulaire",
|
||||
"nothing_found": "(aucun r\u00e9sultat)",
|
||||
"wait_loading_data": "Veuillez attendre que vos informations soient charg\u00e9es...",
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"spent": "D\u00e9pens\u00e9",
|
||||
"left": "Reste",
|
||||
"paid": "Pay\u00e9",
|
||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||
"errors_submission_v2": "Certaines informations ne sont pas correctes dans votre formulaire. Veuillez v\u00e9rifier les erreurs ci-dessous : {{errorMessage}}",
|
||||
"unpaid": "Impay\u00e9",
|
||||
"default_group_title_name_plain": "non group\u00e9",
|
||||
"subscriptions_in_group": "Abonnements dans le groupe \"%{title}\"",
|
||||
@@ -23,7 +23,7 @@
|
||||
"unknown_dest_plain": "Compte de destination inconnu",
|
||||
"unknown_any_plain": "Compte inconnu",
|
||||
"unknown_budget_plain": "Pas de budget",
|
||||
"stored_journal_js": "Successfully created new transaction \"{{description}}\"",
|
||||
"stored_journal_js": "Op\u00e9ration \"{{description}}\" cr\u00e9\u00e9e avec succ\u00e8s",
|
||||
"wait_loading_transaction": "Veuillez patienter pendant le chargement du formulaire",
|
||||
"nothing_found": "(aucun r\u00e9sultat)",
|
||||
"wait_loading_data": "Veuillez attendre que vos informations soient charg\u00e9es...",
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
"unknown_dest_plain": "Unknown destination account",
|
||||
"unknown_any_plain": "Unknown account",
|
||||
"unknown_budget_plain": "No budget",
|
||||
"stored_journal_js": "Successfully created new transaction \"{{description}}\"",
|
||||
"stored_journal_js": "\"{{description}}\" \u00faj tranzakci\u00f3 sikeresen l\u00e9trehozva",
|
||||
"wait_loading_transaction": "K\u00e9rlek v\u00e1rj az \u0171rlap bet\u00f6lt\u00e9s\u00e9ig",
|
||||
"nothing_found": "(nincs tal\u00e1lat)",
|
||||
"wait_loading_data": "K\u00e9rlek v\u00e1rj am\u00edg bet\u00f6ltj\u00fck az adatokat...",
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
"unknown_dest_plain": "Unknown destination account",
|
||||
"unknown_any_plain": "Unknown account",
|
||||
"unknown_budget_plain": "No budget",
|
||||
"stored_journal_js": "Successfully created new transaction \"{{description}}\"",
|
||||
"stored_journal_js": "\"{{description}}\" \u00faj tranzakci\u00f3 sikeresen l\u00e9trehozva",
|
||||
"wait_loading_transaction": "K\u00e9rlek v\u00e1rj az \u0171rlap bet\u00f6lt\u00e9s\u00e9ig",
|
||||
"nothing_found": "(nincs tal\u00e1lat)",
|
||||
"wait_loading_data": "K\u00e9rlek v\u00e1rj am\u00edg bet\u00f6ltj\u00fck az adatokat...",
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"spent": "\u0420\u0430\u0441\u0445\u043e\u0434",
|
||||
"left": "\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c",
|
||||
"paid": "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043e",
|
||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||
"errors_submission_v2": "\u0421 \u0432\u0430\u0448\u0435\u0439 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0435\u0439 \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u043e\u0448\u0438\u0431\u043a\u0438: {{errorMessage}}",
|
||||
"unpaid": "\u041d\u0435 \u043e\u043f\u043b\u0430\u0447\u0435\u043d\u043e",
|
||||
"default_group_title_name_plain": "\u0431\u0435\u0437 \u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u043a\u0438",
|
||||
"subscriptions_in_group": "\u041f\u043e\u0434\u043f\u0438\u0441\u043a\u0438 \u0432 \u0433\u0440\u0443\u043f\u043f\u0435 \"%{title}\"",
|
||||
@@ -23,7 +23,7 @@
|
||||
"unknown_dest_plain": "\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u0441\u0447\u0435\u0442 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f",
|
||||
"unknown_any_plain": "\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u0441\u0447\u0435\u0442",
|
||||
"unknown_budget_plain": "\u0411\u0435\u0437 \u0431\u044e\u0434\u0436\u0435\u0442\u0430",
|
||||
"stored_journal_js": "Successfully created new transaction \"{{description}}\"",
|
||||
"stored_journal_js": "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0430 \u043d\u043e\u0432\u0430\u044f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \"{{description}}\"",
|
||||
"wait_loading_transaction": "\u0414\u043e\u0436\u0434\u0438\u0442\u0435\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0444\u043e\u0440\u043c\u044b",
|
||||
"nothing_found": "(\u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e)",
|
||||
"wait_loading_data": "\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0434\u043e\u0436\u0434\u0438\u0442\u0435\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0432\u0430\u0448\u0435\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438...",
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"spent": "\u0420\u0430\u0441\u0445\u043e\u0434",
|
||||
"left": "\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c",
|
||||
"paid": "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043e",
|
||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||
"errors_submission_v2": "\u0421 \u0432\u0430\u0448\u0435\u0439 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0435\u0439 \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u043e\u0448\u0438\u0431\u043a\u0438: {{errorMessage}}",
|
||||
"unpaid": "\u041d\u0435 \u043e\u043f\u043b\u0430\u0447\u0435\u043d\u043e",
|
||||
"default_group_title_name_plain": "\u0431\u0435\u0437 \u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u043a\u0438",
|
||||
"subscriptions_in_group": "\u041f\u043e\u0434\u043f\u0438\u0441\u043a\u0438 \u0432 \u0433\u0440\u0443\u043f\u043f\u0435 \"%{title}\"",
|
||||
@@ -23,7 +23,7 @@
|
||||
"unknown_dest_plain": "\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u0441\u0447\u0435\u0442 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f",
|
||||
"unknown_any_plain": "\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u0441\u0447\u0435\u0442",
|
||||
"unknown_budget_plain": "\u0411\u0435\u0437 \u0431\u044e\u0434\u0436\u0435\u0442\u0430",
|
||||
"stored_journal_js": "Successfully created new transaction \"{{description}}\"",
|
||||
"stored_journal_js": "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0430 \u043d\u043e\u0432\u0430\u044f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \"{{description}}\"",
|
||||
"wait_loading_transaction": "\u0414\u043e\u0436\u0434\u0438\u0442\u0435\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0444\u043e\u0440\u043c\u044b",
|
||||
"nothing_found": "(\u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e)",
|
||||
"wait_loading_data": "\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0434\u043e\u0436\u0434\u0438\u0442\u0435\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0432\u0430\u0448\u0435\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438...",
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"spent": "Porabljeno",
|
||||
"left": "Preostalo",
|
||||
"paid": "Pla\u010dano",
|
||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||
"errors_submission_v2": "Nekaj je bilo narobe z va\u0161o oddajo. Preverite spodnje napake: {{errorMessage}}",
|
||||
"unpaid": "Nepla\u010dano",
|
||||
"default_group_title_name_plain": "nezdru\u017eeno",
|
||||
"subscriptions_in_group": "Naro\u010dnine v skupini \"%{title}\"",
|
||||
@@ -23,7 +23,7 @@
|
||||
"unknown_dest_plain": "Neznan ciljni ra\u010dun",
|
||||
"unknown_any_plain": "Neznan ra\u010dun",
|
||||
"unknown_budget_plain": "Ni prora\u010duna",
|
||||
"stored_journal_js": "Successfully created new transaction \"{{description}}\"",
|
||||
"stored_journal_js": "Nova transakcija \"{{description}}\" je uspe\u0161no ustvarjena",
|
||||
"wait_loading_transaction": "Po\u010dakajte, da se obrazec nalo\u017ei",
|
||||
"nothing_found": "(ni\u010d najdenega)",
|
||||
"wait_loading_data": "Po\u010dakajte, da se va\u0161i podatki nalo\u017eijo...",
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"spent": "Porabljeno",
|
||||
"left": "Preostalo",
|
||||
"paid": "Pla\u010dano",
|
||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||
"errors_submission_v2": "Nekaj je bilo narobe z va\u0161o oddajo. Preverite spodnje napake: {{errorMessage}}",
|
||||
"unpaid": "Nepla\u010dano",
|
||||
"default_group_title_name_plain": "nezdru\u017eeno",
|
||||
"subscriptions_in_group": "Naro\u010dnine v skupini \"%{title}\"",
|
||||
@@ -23,7 +23,7 @@
|
||||
"unknown_dest_plain": "Neznan ciljni ra\u010dun",
|
||||
"unknown_any_plain": "Neznan ra\u010dun",
|
||||
"unknown_budget_plain": "Ni prora\u010duna",
|
||||
"stored_journal_js": "Successfully created new transaction \"{{description}}\"",
|
||||
"stored_journal_js": "Nova transakcija \"{{description}}\" je uspe\u0161no ustvarjena",
|
||||
"wait_loading_transaction": "Po\u010dakajte, da se obrazec nalo\u017ei",
|
||||
"nothing_found": "(ni\u010d najdenega)",
|
||||
"wait_loading_data": "Po\u010dakajte, da se va\u0161i podatki nalo\u017eijo...",
|
||||
|
||||
@@ -2,13 +2,13 @@
|
||||
"config": {
|
||||
"html_language": "zh-cn",
|
||||
"date_time_fns": "YYYY\u5e74M\u6708D\u65e5 HH:mm:ss",
|
||||
"date_time_fns_short": "MMMM do, yyyy @ HH:mm"
|
||||
"date_time_fns_short": "MMMM \u6267\u884c, yyyy @ HH:mm"
|
||||
},
|
||||
"firefly": {
|
||||
"spent": "\u652f\u51fa",
|
||||
"left": "\u5269\u4f59",
|
||||
"paid": "\u5df2\u4ed8\u6b3e",
|
||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||
"errors_submission_v2": "\u60a8\u63d0\u4ea4\u7684\u5185\u5bb9\u6709\u8bef\uff0c\u8bf7\u68c0\u67e5\u9519\u8bef\u4fe1\u606f: {{errorMessage}}",
|
||||
"unpaid": "\u672a\u4ed8\u6b3e",
|
||||
"default_group_title_name_plain": "\u672a\u5206\u7ec4",
|
||||
"subscriptions_in_group": "\u5206\u7ec4\u201c%{title}\u201d\u8ba2\u9605",
|
||||
@@ -23,7 +23,7 @@
|
||||
"unknown_dest_plain": "\u672a\u77e5\u76ee\u6807\u8d26\u6237",
|
||||
"unknown_any_plain": "\u672a\u77e5\u8d26\u6237",
|
||||
"unknown_budget_plain": "\u65e0\u9884\u7b97",
|
||||
"stored_journal_js": "Successfully created new transaction \"{{description}}\"",
|
||||
"stored_journal_js": "\u6210\u529f\u521b\u5efa\u65b0\u4ea4\u6613 \"{{description}}\"",
|
||||
"wait_loading_transaction": "\u8bf7\u7b49\u5f85\u8868\u5355\u52a0\u8f7d",
|
||||
"nothing_found": "(\u6ca1\u6709\u627e\u5230)",
|
||||
"wait_loading_data": "\u8bf7\u7b49\u5f85\u60a8\u7684\u4fe1\u606f\u52a0\u8f7d...",
|
||||
|
||||
@@ -2,13 +2,13 @@
|
||||
"config": {
|
||||
"html_language": "zh-cn",
|
||||
"date_time_fns": "YYYY\u5e74M\u6708D\u65e5 HH:mm:ss",
|
||||
"date_time_fns_short": "MMMM do, yyyy @ HH:mm"
|
||||
"date_time_fns_short": "MMMM \u6267\u884c, yyyy @ HH:mm"
|
||||
},
|
||||
"firefly": {
|
||||
"spent": "\u652f\u51fa",
|
||||
"left": "\u5269\u4f59",
|
||||
"paid": "\u5df2\u4ed8\u6b3e",
|
||||
"errors_submission_v2": "There was something wrong with your submission. Please check out the errors below: {{errorMessage}}",
|
||||
"errors_submission_v2": "\u60a8\u63d0\u4ea4\u7684\u5185\u5bb9\u6709\u8bef\uff0c\u8bf7\u68c0\u67e5\u9519\u8bef\u4fe1\u606f: {{errorMessage}}",
|
||||
"unpaid": "\u672a\u4ed8\u6b3e",
|
||||
"default_group_title_name_plain": "\u672a\u5206\u7ec4",
|
||||
"subscriptions_in_group": "\u5206\u7ec4\u201c%{title}\u201d\u8ba2\u9605",
|
||||
@@ -23,7 +23,7 @@
|
||||
"unknown_dest_plain": "\u672a\u77e5\u76ee\u6807\u8d26\u6237",
|
||||
"unknown_any_plain": "\u672a\u77e5\u8d26\u6237",
|
||||
"unknown_budget_plain": "\u65e0\u9884\u7b97",
|
||||
"stored_journal_js": "Successfully created new transaction \"{{description}}\"",
|
||||
"stored_journal_js": "\u6210\u529f\u521b\u5efa\u65b0\u4ea4\u6613 \"{{description}}\"",
|
||||
"wait_loading_transaction": "\u8bf7\u7b49\u5f85\u8868\u5355\u52a0\u8f7d",
|
||||
"nothing_found": "(\u6ca1\u6709\u627e\u5230)",
|
||||
"wait_loading_data": "\u8bf7\u7b49\u5f85\u60a8\u7684\u4fe1\u606f\u52a0\u8f7d...",
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
"flash_warning": "Opozorilo!",
|
||||
"flash_success": "Uspelo je!",
|
||||
"close": "Zapri",
|
||||
"select_dest_account": "Please select or type a valid destination account name",
|
||||
"select_source_account": "Please select or type a valid source account name",
|
||||
"select_dest_account": "Izberite ali vnesite veljavno ime ciljnega ra\u010duna",
|
||||
"select_source_account": "Izberite ali vnesite veljavno ime izvornega ra\u010duna",
|
||||
"split_transaction_title": "Opis razdeljene transakcije",
|
||||
"errors_submission": "Nekaj je bilo narobe z va\u0161o oddajo. Preverite spodnje napake.",
|
||||
"split": "Razdeli",
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
"flash_warning": "\u8b66\u544a\uff01",
|
||||
"flash_success": "\u6210\u529f\uff01",
|
||||
"close": "\u5173\u95ed",
|
||||
"select_dest_account": "Please select or type a valid destination account name",
|
||||
"select_source_account": "Please select or type a valid source account name",
|
||||
"select_dest_account": "\u8bf7\u9009\u62e9\u6216\u8f93\u5165\u4e00\u4e2a\u6709\u6548\u7684\u76ee\u6807\u5e10\u6237\u540d\u79f0",
|
||||
"select_source_account": "\u8bf7\u9009\u62e9\u6216\u8f93\u5165\u4e00\u4e2a\u6709\u6548\u7684\u6e90\u5e10\u6237\u540d\u79f0",
|
||||
"split_transaction_title": "\u62c6\u5206\u4ea4\u6613\u7684\u63cf\u8ff0",
|
||||
"errors_submission": "\u60a8\u7684\u63d0\u4ea4\u6709\u8bef\uff0c\u8bf7\u67e5\u770b\u4e0b\u9762\u8f93\u51fa\u7684\u9519\u8bef\u4fe1\u606f\u3002",
|
||||
"split": "\u62c6\u5206",
|
||||
|
||||
@@ -43,7 +43,7 @@ h3.hover-expand {
|
||||
text-overflow: ellipsis
|
||||
}
|
||||
h3.hover-expand:hover {
|
||||
overflow-x: scroll;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
|
||||
@@ -1989,7 +1989,7 @@ return [
|
||||
'deleted_transfer' => 'S\'ha eliminat la transferència ":description" satisfactòriament',
|
||||
'deleted_reconciliation' => 'S\'ha eliminat la transacció de consolidació ":description" satisfactòriament',
|
||||
'stored_journal' => 'S\'ha creat la retirada ":description" satisfactòriament',
|
||||
'stored_journal_js' => 'Successfully created new transaction "{{description}}"',
|
||||
'stored_journal_js' => 'S\'ha creat la transacció "{{description}}" correctament',
|
||||
'stored_journal_no_descr' => 'S\'ha creat la teua nova transacció satisfactòriament',
|
||||
'updated_journal_no_descr' => 'S\'ha actualitzat la teua transacció satisfactòriament',
|
||||
'select_transactions' => 'Selecciona transaccions',
|
||||
@@ -2297,7 +2297,7 @@ return [
|
||||
'description' => 'Descripció',
|
||||
'sum_of_period' => 'Suma del període',
|
||||
'average_in_period' => 'Mitjana al període',
|
||||
'no_account_role' => '(no role)',
|
||||
'no_account_role' => '(sense rol)',
|
||||
'account_role_defaultAsset' => 'Compte d\'actius per defecte',
|
||||
'account_role_sharedAsset' => 'Compte d\'actius compartit',
|
||||
'account_role_savingAsset' => 'Compte d\'estalvis',
|
||||
@@ -2570,9 +2570,9 @@ return [
|
||||
'store_as_new' => 'Desa com a una nova transacció, en comptes d\'actualitzar.',
|
||||
'reset_after' => 'Reiniciar el formulari després d\'enviar',
|
||||
'errors_submission' => 'Hi ha hagut un error amb el teu enviament. Per favor, revisa els errors de sota.',
|
||||
'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}',
|
||||
'errors_submission_v2' => 'Hi ha hagut un error amb el teu enviament. Per favor, comprova els següents errors: {{errorMessage}}',
|
||||
'transaction_expand_split' => 'Expandeix la divisió',
|
||||
'transaction_remove_split' => 'Remove split',
|
||||
'transaction_remove_split' => 'Eliminar partició',
|
||||
'transaction_collapse_split' => 'Contrau la divisió',
|
||||
|
||||
// object groups
|
||||
|
||||
@@ -1989,7 +1989,7 @@ return [
|
||||
'deleted_transfer' => 'Umbuchung ":description" erfolgreich gelöscht',
|
||||
'deleted_reconciliation' => 'Ausgleichsbuchung „:description” erfolgreich gelöscht',
|
||||
'stored_journal' => 'Neue Überweisung ":description" erfolgreich erstellt',
|
||||
'stored_journal_js' => 'Successfully created new transaction "{{description}}"',
|
||||
'stored_journal_js' => 'Neue Buchung „{{description}}” erfolgreich erstellt',
|
||||
'stored_journal_no_descr' => 'Ihre neue Buchung wurde erfolgreich erstellt',
|
||||
'updated_journal_no_descr' => 'Ihre Buchung wurde erfolgreich aktualisiert',
|
||||
'select_transactions' => 'Buchungen auswählen',
|
||||
@@ -2297,7 +2297,7 @@ return [
|
||||
'description' => 'Beschreibung',
|
||||
'sum_of_period' => 'Summe des Zeitraums',
|
||||
'average_in_period' => 'Durchschnitt im Zeitraum',
|
||||
'no_account_role' => '(no role)',
|
||||
'no_account_role' => '(keine Rolle)',
|
||||
'account_role_defaultAsset' => 'Standard-Bestandskonto',
|
||||
'account_role_sharedAsset' => 'Gemeinsames Bestandskonto',
|
||||
'account_role_savingAsset' => 'Sparkonto',
|
||||
@@ -2570,9 +2570,9 @@ return [
|
||||
'store_as_new' => 'Als neue Buchung speichern statt zu aktualisieren.',
|
||||
'reset_after' => 'Formular nach der Übermittlung zurücksetzen',
|
||||
'errors_submission' => 'Bei Ihren Eingaben stimmt etwas nicht. Bitte überprüfen Sie die unten stehenden Fehler.',
|
||||
'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}',
|
||||
'errors_submission_v2' => 'Bei Ihrer Übermittlung ist ein Fehler aufgetreten. Bitte überprüfen Sie die unten stehenden Fehler: {{errorMessage}}',
|
||||
'transaction_expand_split' => 'Aufteilung erweitern',
|
||||
'transaction_remove_split' => 'Remove split',
|
||||
'transaction_remove_split' => 'Teilung entfernen',
|
||||
'transaction_collapse_split' => 'Aufteilung reduzieren',
|
||||
|
||||
// object groups
|
||||
|
||||
@@ -1989,7 +1989,7 @@ return [
|
||||
'deleted_transfer' => 'Opération ":description" correctement supprimée',
|
||||
'deleted_reconciliation' => 'Opération ":description" supprimée avec succès',
|
||||
'stored_journal' => 'Opération ":description" créée avec succès',
|
||||
'stored_journal_js' => 'Successfully created new transaction "{{description}}"',
|
||||
'stored_journal_js' => 'Opération "{{description}}" créée avec succès',
|
||||
'stored_journal_no_descr' => 'Nouvelle opération créée avec succès',
|
||||
'updated_journal_no_descr' => 'Votre opération a été mise à jour avec succès',
|
||||
'select_transactions' => 'Sélectionner des opérations',
|
||||
@@ -2297,7 +2297,7 @@ return [
|
||||
'description' => 'Description',
|
||||
'sum_of_period' => 'Somme pour la période',
|
||||
'average_in_period' => 'Moyenne pour la période',
|
||||
'no_account_role' => '(no role)',
|
||||
'no_account_role' => '(aucun rôle)',
|
||||
'account_role_defaultAsset' => 'Compte d\'actif par défaut',
|
||||
'account_role_sharedAsset' => 'Compte d\'actif partagé',
|
||||
'account_role_savingAsset' => 'Compte d’épargne',
|
||||
@@ -2570,9 +2570,9 @@ return [
|
||||
'store_as_new' => 'Enregistrer comme une nouvelle opération au lieu de mettre à jour.',
|
||||
'reset_after' => 'Réinitialiser le formulaire après soumission',
|
||||
'errors_submission' => 'Certaines informations ne sont pas correctes dans votre formulaire. Veuillez vérifier les erreurs ci-dessous.',
|
||||
'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}',
|
||||
'errors_submission_v2' => 'Certaines informations ne sont pas correctes dans votre formulaire. Veuillez vérifier les erreurs ci-dessous : {{errorMessage}}',
|
||||
'transaction_expand_split' => 'Développer la séparation',
|
||||
'transaction_remove_split' => 'Remove split',
|
||||
'transaction_remove_split' => 'Supprimer la division',
|
||||
'transaction_collapse_split' => 'Réduire la séparation',
|
||||
|
||||
// object groups
|
||||
|
||||
@@ -1989,7 +1989,7 @@ return [
|
||||
'deleted_transfer' => '":description" átvezetés sikeresen törölve',
|
||||
'deleted_reconciliation' => '":description" egyeztető tranzakció sikeresen törölve',
|
||||
'stored_journal' => '":description" új tranzakció sikeresen létrehozva',
|
||||
'stored_journal_js' => 'Successfully created new transaction "{{description}}"',
|
||||
'stored_journal_js' => '"{{description}}" új tranzakció sikeresen létrehozva',
|
||||
'stored_journal_no_descr' => 'Új tranzakció sikeresen létrehozva',
|
||||
'updated_journal_no_descr' => 'Tranzakció sikeresen frissítve',
|
||||
'select_transactions' => 'Tranzakciók kiválasztása',
|
||||
|
||||
@@ -1989,7 +1989,7 @@ return [
|
||||
'deleted_transfer' => 'Перевод ":description" успешно удалён',
|
||||
'deleted_reconciliation' => 'Сверенная транзакция ":description" успешно удалена',
|
||||
'stored_journal' => 'Новая транзакция ":description" успешно создана',
|
||||
'stored_journal_js' => 'Successfully created new transaction "{{description}}"',
|
||||
'stored_journal_js' => 'Успешно создана новая транзакция "{{description}}"',
|
||||
'stored_journal_no_descr' => 'Ваша новая транзакция успешно создана',
|
||||
'updated_journal_no_descr' => 'Ваша транзакция успешно обновлена',
|
||||
'select_transactions' => 'Выбрать транзакции',
|
||||
@@ -2297,7 +2297,7 @@ return [
|
||||
'description' => 'Описание',
|
||||
'sum_of_period' => 'Сумма за период',
|
||||
'average_in_period' => 'В среднем за период',
|
||||
'no_account_role' => '(no role)',
|
||||
'no_account_role' => '(нет роли)',
|
||||
'account_role_defaultAsset' => 'Счёт по умолчанию',
|
||||
'account_role_sharedAsset' => 'Общий основной счёт',
|
||||
'account_role_savingAsset' => 'Сберегательный счет',
|
||||
@@ -2570,9 +2570,9 @@ return [
|
||||
'store_as_new' => 'Сохранить как новую транзакцию вместо обновления.',
|
||||
'reset_after' => 'Сбросить форму после отправки',
|
||||
'errors_submission' => 'С вашей публикацией произошла ошибка. Пожалуйста, проверьте ошибки ниже.',
|
||||
'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}',
|
||||
'errors_submission_v2' => 'С вашей публикацией произошла ошибка. Пожалуйста, проверьте следующие ошибки: {{errorMessage}}',
|
||||
'transaction_expand_split' => 'Развернуть разделение',
|
||||
'transaction_remove_split' => 'Remove split',
|
||||
'transaction_remove_split' => 'Удалить разделение',
|
||||
'transaction_collapse_split' => 'Свернуть разделение',
|
||||
|
||||
// object groups
|
||||
|
||||
@@ -42,7 +42,7 @@ return [
|
||||
'fatal_error' => 'Prišlo je do usodne napake. Preverite dnevniške datoteke v "storage/logs" ali uporabite "docker logs -f [container]", da vidite, kaj se dogaja.',
|
||||
'maintenance_mode' => 'Firefly III je v vzdrževalnem načinu.',
|
||||
'be_right_back' => 'Takoj se vrnem!',
|
||||
'check_back' => 'Firefly III is down for some necessary maintenance. Please check back in a second. If you happen to see this message on the demo site, just wait a few minutes. The database is reset every few hours.',
|
||||
'check_back' => 'Firefly III ne deluje zaradi potrebnega vzdrževanja. Preverite znova čez sekundo. Če slučajno vidite to sporočilo na demo strani, počakajte nekaj minut. Baza podatkov se ponastavi vsakih nekaj ur.',
|
||||
'error_occurred' => 'Ups! Zgodila se je napaka.',
|
||||
'db_error_occurred' => 'Ups! Prišlo je do napake v podatkovni bazi.',
|
||||
'error_not_recoverable' => 'Na žalost te napake ni bilo mogoče obnoviti :(. Firefly III se je pokvaril. Napaka je:',
|
||||
|
||||
@@ -113,7 +113,7 @@ return [
|
||||
'two_factor_forgot' => 'Pozabil sem svojo reč za dva koraka.',
|
||||
'two_factor_lost_header' => 'Nimate dostopa do dvofaktorske avtentikacije?',
|
||||
'two_factor_lost_intro' => 'Če ste izgubili tudi varnostne kode imate res smolo. Tega ne morete popraviti preko spletnega vmesnika. Imate dve možnosti.',
|
||||
'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read <a href="https://docs.firefly-iii.org/references/faq/firefly-iii/using/#i-lost-my-2fa-token-generator-or-2fa-has-stopped-working">this entry in the FAQ</a> for instructions.',
|
||||
'two_factor_lost_fix_self' => 'Če poganjate lastno namestitev Firefly III, preberite <a href="https://docs.firefly-iii.org/references/faq/firefly-iii/using/#i-lost-my-2fa-token-generator -or-2fa-has-stopped-working">ta vnos v pogostih vprašanjih</a> za navodila.',
|
||||
'two_factor_lost_fix_owner' => 'V nasprotnem primeru pišite po e-pošti lastniku spletnega mesta <a href="mailto::site_owner">:site_owner</a> in ga prosite, da ponastavi vaše preverjanje pristnosti v dveh korakih.',
|
||||
'mfa_backup_code' => 'V Firefly III si se prijavil z rezervno kodo. Te kode ne moreš več uporabiti zato jo na seznamu prečrtaj.',
|
||||
'pref_two_factor_new_backup_codes' => 'Pridobi nove varnostne kode',
|
||||
@@ -317,8 +317,8 @@ return [
|
||||
'update_new_version_alert' => 'Na voljo je nova različica Firefly III. Trenutno uporabljate :your_version, najnovejša različica pa je :new_version, izdana :date.',
|
||||
'update_version_beta' => 'To je BETA verzija. Lahko naletite na težave.',
|
||||
'update_version_alpha' => 'To je ALFA verzija. Lahko naletite na težave.',
|
||||
'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!',
|
||||
'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.',
|
||||
'update_current_dev_older' => 'Poganjate razvojno izdajo ":version", ki je starejša od zadnje izdaje :new_version. Posodobite prosim!',
|
||||
'update_current_dev_newer' => 'Poganjate razvojno izdajo ":version", ki je novejša od zadnje izdaje :new_version.',
|
||||
'update_current_version_alert' => 'Uporabljate :version, ki je zadnja razpoložljiva izdaja.',
|
||||
'update_newer_version_alert' => 'Uporabljate :your_version, ki je novejša od zadnje izdaje, :new_version.',
|
||||
'update_check_error' => 'Pri preverjanju posodobitev smo naleteli na težavo: :error',
|
||||
@@ -896,12 +896,12 @@ return [
|
||||
'rule_trigger_budget_is' => 'Proračun je ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => 'Vsaka oznaka je ...',
|
||||
'rule_trigger_tag_is' => 'Katera koli oznaka je ":trigger_value"',
|
||||
'rule_trigger_tag_contains_choice' => 'Any tag contains..',
|
||||
'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"',
|
||||
'rule_trigger_tag_ends_choice' => 'Any tag ends with..',
|
||||
'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"',
|
||||
'rule_trigger_tag_starts_choice' => 'Any tag starts with..',
|
||||
'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"',
|
||||
'rule_trigger_tag_contains_choice' => 'Katera koli oznaka vsebuje..',
|
||||
'rule_trigger_tag_contains' => 'Katera koli oznaka vsebuje ":trigger_value"',
|
||||
'rule_trigger_tag_ends_choice' => 'Katera koli oznaka se konča s..',
|
||||
'rule_trigger_tag_ends' => 'Katera koli oznaka se konča s ":trigger_value"',
|
||||
'rule_trigger_tag_starts_choice' => 'Katera koli oznaka se začne s..',
|
||||
'rule_trigger_tag_starts' => 'Katera koli oznaka se začne s ":trigger_value"',
|
||||
'rule_trigger_currency_is_choice' => 'Valuta transakcije je..',
|
||||
'rule_trigger_currency_is' => 'Valuta transakcije je ":trigger_value"',
|
||||
'rule_trigger_foreign_currency_is_choice' => 'Tuja valuta transakcije je ...',
|
||||
@@ -1203,7 +1203,7 @@ return [
|
||||
'rule_trigger_not_exists' => 'Transakcija ne obstaja',
|
||||
'rule_trigger_not_has_attachments' => 'Transakcija nima prilog',
|
||||
'rule_trigger_not_has_any_category' => 'Transakcija nima kategorije',
|
||||
'rule_trigger_not_has_any_budget' => 'Transaction has no budget',
|
||||
'rule_trigger_not_has_any_budget' => 'Transakcija nima proračuna',
|
||||
'rule_trigger_not_has_any_bill' => 'Transakcija nima računa',
|
||||
'rule_trigger_not_has_any_tag' => 'Transakcija nima oznak',
|
||||
'rule_trigger_not_any_notes' => 'Transakcija nima opomb',
|
||||
@@ -1286,8 +1286,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_amount_choice' => 'Set amount to ..',
|
||||
'rule_action_set_amount' => 'Set amount to ":action_value"',
|
||||
'rule_action_set_amount_choice' => 'Nastavi znesek na ..',
|
||||
'rule_action_set_amount' => 'Nastavi znesek na ":action_value"',
|
||||
'rule_action_set_destination_to_cash_choice' => 'Nastavi ciljni račun na (gotovina)',
|
||||
'rule_action_set_source_to_cash_choice' => 'Nastavi izvorni račun na (gotovina)',
|
||||
'rulegroup_for_bills_title' => 'Skupina pravil za račune',
|
||||
@@ -1588,8 +1588,8 @@ return [
|
||||
'submission_options' => 'Možnosti oddaje',
|
||||
'apply_rules_checkbox' => 'Uporabite pravila',
|
||||
'fire_webhooks_checkbox' => 'Sprožite Webhooke',
|
||||
'select_source_account' => 'Please select or type a valid source account name',
|
||||
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||
'select_source_account' => 'Izberite ali vnesite veljavno ime izvornega računa',
|
||||
'select_dest_account' => 'Izberite ali vnesite veljavno ime ciljnega računa',
|
||||
|
||||
// convert stuff:
|
||||
'convert_is_already_type_Withdrawal' => 'Ta transakcija je že odliv',
|
||||
@@ -1989,7 +1989,7 @@ return [
|
||||
'deleted_transfer' => 'Prenos ":description" je uspešno izbrisan',
|
||||
'deleted_reconciliation' => 'Transakcija usklajevanja ":description" je bila uspešno izbrisana',
|
||||
'stored_journal' => 'Nova transakcija ":description" je uspešno ustvarjena',
|
||||
'stored_journal_js' => 'Successfully created new transaction "{{description}}"',
|
||||
'stored_journal_js' => 'Nova transakcija "{{description}}" je uspešno ustvarjena',
|
||||
'stored_journal_no_descr' => 'Vaša nova transakcija je uspešno ustvarjena',
|
||||
'updated_journal_no_descr' => 'Vaša transakcija je bila uspešno posodobljena',
|
||||
'select_transactions' => 'Izberi transakcije',
|
||||
@@ -2297,7 +2297,7 @@ return [
|
||||
'description' => 'Opis',
|
||||
'sum_of_period' => 'Seštevek obdobja',
|
||||
'average_in_period' => 'Povprečno v obdobju',
|
||||
'no_account_role' => '(no role)',
|
||||
'no_account_role' => '(brez pravil)',
|
||||
'account_role_defaultAsset' => 'Privzeti račun sredstev',
|
||||
'account_role_sharedAsset' => 'Skupni račun sredstev',
|
||||
'account_role_savingAsset' => 'Varčevalni račun',
|
||||
@@ -2462,7 +2462,7 @@ return [
|
||||
'block_code_bounced' => 'Elektronsko sporočilo je bilo zavrnjeno',
|
||||
'block_code_expired' => 'Demo račun je potekel',
|
||||
'no_block_code' => 'Brez razloga za blokiranje ali pa uporabnik ni blokiran',
|
||||
'demo_user_export' => 'The demo user cannot export data',
|
||||
'demo_user_export' => 'Demo uporabnik ne more izvoziti podatkov',
|
||||
'block_code_email_changed' => 'Uporabnik še ni potrdil novega elektronskega naslova',
|
||||
'admin_update_email' => 'V nasprotju s stranjo profila, uporabnik NE bo obveščen o spremembi svojega elektronskega naslova!',
|
||||
'update_user' => 'Posodobi uporabnika',
|
||||
@@ -2570,9 +2570,9 @@ return [
|
||||
'store_as_new' => 'Shranite kot novo transakcijo namesto posodabljanja.',
|
||||
'reset_after' => 'Po predložitvi ponastavite obrazec',
|
||||
'errors_submission' => 'Nekaj je bilo narobe z vašo oddajo. Preverite spodnje napake.',
|
||||
'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}',
|
||||
'errors_submission_v2' => 'Nekaj je bilo narobe z vašo oddajo. Preverite spodnje napake: {{errorMessage}}',
|
||||
'transaction_expand_split' => 'Razširi razdelitev',
|
||||
'transaction_remove_split' => 'Remove split',
|
||||
'transaction_remove_split' => 'Odstrani delitev',
|
||||
'transaction_collapse_split' => 'Skrči razdelitev',
|
||||
|
||||
// object groups
|
||||
@@ -2772,7 +2772,7 @@ return [
|
||||
'ale_action_add_to_piggy' => 'Hranilnik',
|
||||
'ale_action_remove_from_piggy' => 'Hranilnik',
|
||||
'ale_action_add_tag' => 'Dodana oznaka',
|
||||
'ale_action_update_amount' => 'Updated amount',
|
||||
'ale_action_update_amount' => 'Posodobljen znesek',
|
||||
|
||||
// dashboard
|
||||
'enable_auto_convert' => 'Omogoči pretvorbo valut',
|
||||
|
||||
@@ -70,5 +70,5 @@ return [
|
||||
'cannot_find_budget' => 'Firefly III ne najde proračuna ":name"',
|
||||
'cannot_find_category' => 'Firefly III ne najde kategorije ":name"',
|
||||
'cannot_set_budget' => 'Firefly III ne more nastaviti proračuna ":name" na transakcijo tipa ":type"',
|
||||
'journal_invalid_amount' => 'Firefly III can\'t set amount ":amount" because it is not a valid number.',
|
||||
'journal_invalid_amount' => 'Firefly III ne more nastaviti količine ":amount", ker to ni veljavna številka.',
|
||||
];
|
||||
|
||||
@@ -55,11 +55,11 @@ return [
|
||||
'reconciled_forbidden_field' => 'Ta transakcija je že usklajena, ne morete spremeniti ":field"',
|
||||
'deleted_user' => 'Iz varnostnih razlogov ne morete ustvariti uporabnika s takim e-poštnim naslovom.',
|
||||
'rule_trigger_value' => 'Ta vrednost je neveljavna za izbrani sprožilec.',
|
||||
'rule_action_expression' => 'Invalid expression. :error',
|
||||
'rule_action_expression' => 'Neveljaven izraz. :error',
|
||||
'rule_action_value' => 'Ta vrednost ni veljavna za izbrano dejanje.',
|
||||
'file_already_attached' => 'Naložena datoteka ":name" je že priložena temu predmetu.',
|
||||
'file_attached' => 'Datoteka ":name" je bila uspešno naložena.',
|
||||
'file_zero' => 'The file is zero bytes in size.',
|
||||
'file_zero' => 'Datoteka je velika nič bajtov.',
|
||||
'must_exist' => 'ID v polju :attribute ne obstaja v bazi podatkov.',
|
||||
'all_accounts_equal' => 'Vsi računi v tem polju morajo biti enaki.',
|
||||
'group_title_mandatory' => 'Naslov skupine je obvezen, če obstaja več kot ena transakcija.',
|
||||
@@ -197,7 +197,7 @@ return [
|
||||
*
|
||||
*/
|
||||
|
||||
'secure_password' => 'This is not a secure password. Please try again. For more information, visit https://bit.ly/FF3-password',
|
||||
'secure_password' => 'To geslo ni dovolj varno. Prosim poskusite ponovno. Za več informacij obiščite https://bit.ly/FF3-password',
|
||||
'valid_recurrence_rep_type' => 'Neveljavna vrsta ponavljanja za ponavljajoče se transakcije.',
|
||||
'valid_recurrence_rep_moment' => 'Neveljaven trenutek ponovitve za to vrsto ponovitve.',
|
||||
'invalid_account_info' => 'Neveljavni podatki o računu.',
|
||||
|
||||
@@ -64,7 +64,7 @@ return [
|
||||
// 'date_time' => '%B %e, %Y, @ %T',
|
||||
'date_time_js' => 'YYYY年M月D日 HH:mm:ss',
|
||||
'date_time_fns' => 'YYYY年M月D日 HH:mm:ss',
|
||||
'date_time_fns_short' => 'MMMM do, yyyy @ HH:mm',
|
||||
'date_time_fns_short' => 'MMMM 执行, yyyy @ HH:mm',
|
||||
|
||||
// 'specific_day' => '%e %B %Y',
|
||||
'specific_day_js' => 'YYYY年M月D日',
|
||||
|
||||
@@ -42,7 +42,7 @@ return [
|
||||
'fatal_error' => '发生致命错误:请检查位于“storage/logs”目录的日志文件,或使用“docker logs -f [container]”命令查看相关信息。',
|
||||
'maintenance_mode' => 'Firefly III 已启用维护模式',
|
||||
'be_right_back' => '敬请期待!',
|
||||
'check_back' => 'Firefly III is down for some necessary maintenance. Please check back in a second. If you happen to see this message on the demo site, just wait a few minutes. The database is reset every few hours.',
|
||||
'check_back' => 'Firefly III 是为了一些必要的维护。请稍后再试。 如果您正好在演示站点看到此消息,请等待几分钟。数据库将每隔几小时重置。',
|
||||
'error_occurred' => '很抱歉,出现错误',
|
||||
'db_error_occurred' => '哎呀!发生数据库错误。',
|
||||
'error_not_recoverable' => '很遗憾,该错误无法恢复 :( Firefly III 已崩溃。错误信息:',
|
||||
|
||||
@@ -113,7 +113,7 @@ return [
|
||||
'two_factor_forgot' => '我忘记了两步验证码',
|
||||
'two_factor_lost_header' => '遗失了您的两步验证吗?',
|
||||
'two_factor_lost_intro' => '如果您同时遗失了备份代码,很抱歉,您无法通过网页进行恢复。您可以通过下述方式进行操作。',
|
||||
'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read <a href="https://docs.firefly-iii.org/references/faq/firefly-iii/using/#i-lost-my-2fa-token-generator-or-2fa-has-stopped-working">this entry in the FAQ</a> for instructions.',
|
||||
'two_factor_lost_fix_self' => '若您自行运行 Firefly III 服务,查看 <a href="https://docs.firefly-iii.org/references/faq/firefly-iii/using/#i-lost-my-2fa-token-generator-or-2fa-has-stopped-working">常见问题解答</a> 来参考',
|
||||
'two_factor_lost_fix_owner' => '如果这不是您自己的 Firefly III 站点,请邮件联系站点管理员(<a href="mailto::site_owner">:site_owner</a>)协助您重置两步验证。',
|
||||
'mfa_backup_code' => '您已使用备用代码登录到 Firefly III 。 您不能再使用它,因此请将其划掉。',
|
||||
'pref_two_factor_new_backup_codes' => '获取新的备份代码',
|
||||
@@ -317,8 +317,8 @@ return [
|
||||
'update_new_version_alert' => '发现可用的 Firefly III 新版本,您正在运行的版本是 :your_version,最新版本是 :new_version(发布于 :date)。',
|
||||
'update_version_beta' => '此版本是 BETA 版本。您可能会遇到问题。',
|
||||
'update_version_alpha' => '此版本是 ALPHA 版本。您可能会遇到问题。',
|
||||
'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!',
|
||||
'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.',
|
||||
'update_current_dev_older' => '您正在运行开发版本 ":version", 该版本比最新版本的 :new_version旧。请更新!',
|
||||
'update_current_dev_newer' => '您正在运行开发版本 ":version", 它比最新版本 :new_version 更新。',
|
||||
'update_current_version_alert' => '您正在运行 :version,这是最新的可用版本。',
|
||||
'update_newer_version_alert' => '您正在运行 :your_version,它比最新发布的 :new_version 更新。',
|
||||
'update_check_error' => '检查更新时发生错误::error',
|
||||
@@ -896,12 +896,12 @@ return [
|
||||
'rule_trigger_budget_is' => '预算为 ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => '其中一个标签为...',
|
||||
'rule_trigger_tag_is' => '其中一个标签为":trigger_value"',
|
||||
'rule_trigger_tag_contains_choice' => 'Any tag contains..',
|
||||
'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"',
|
||||
'rule_trigger_tag_ends_choice' => 'Any tag ends with..',
|
||||
'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"',
|
||||
'rule_trigger_tag_starts_choice' => 'Any tag starts with..',
|
||||
'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"',
|
||||
'rule_trigger_tag_contains_choice' => '任何标签包含...',
|
||||
'rule_trigger_tag_contains' => '任何标签包含 ":trigger_value"',
|
||||
'rule_trigger_tag_ends_choice' => '任何标签结尾...',
|
||||
'rule_trigger_tag_ends' => '任何标签以 ":trigger_value " 结尾',
|
||||
'rule_trigger_tag_starts_choice' => '任何标签开头...',
|
||||
'rule_trigger_tag_starts' => '任何标签以 ":trigger_value " 开头',
|
||||
'rule_trigger_currency_is_choice' => '交易货币为…',
|
||||
'rule_trigger_currency_is' => '交易货币为“:trigger_value”',
|
||||
'rule_trigger_foreign_currency_is_choice' => '交易外币为...',
|
||||
@@ -1203,7 +1203,7 @@ return [
|
||||
'rule_trigger_not_exists' => '交易不存在',
|
||||
'rule_trigger_not_has_attachments' => '交易不含附件',
|
||||
'rule_trigger_not_has_any_category' => '交易不含分类',
|
||||
'rule_trigger_not_has_any_budget' => 'Transaction has no budget',
|
||||
'rule_trigger_not_has_any_budget' => '交易没有预算',
|
||||
'rule_trigger_not_has_any_bill' => '交易不含账单',
|
||||
'rule_trigger_not_has_any_tag' => '交易不含标签',
|
||||
'rule_trigger_not_any_notes' => '交易不含备注',
|
||||
@@ -1286,8 +1286,8 @@ return [
|
||||
'rule_action_append_notes_to_descr' => '在描述后追加备注',
|
||||
'rule_action_move_descr_to_notes' => '用描述替换备注',
|
||||
'rule_action_move_notes_to_descr' => '用备注替换描述',
|
||||
'rule_action_set_amount_choice' => 'Set amount to ..',
|
||||
'rule_action_set_amount' => 'Set amount to ":action_value"',
|
||||
'rule_action_set_amount_choice' => '设置金额为 ...',
|
||||
'rule_action_set_amount' => '设置金额为 ":action_value"',
|
||||
'rule_action_set_destination_to_cash_choice' => '将目标帐户设置为 (现金)',
|
||||
'rule_action_set_source_to_cash_choice' => '将源账户设置为 (现金)',
|
||||
'rulegroup_for_bills_title' => '账单规则组',
|
||||
@@ -1589,8 +1589,8 @@ return [
|
||||
'submission_options' => '提交选项',
|
||||
'apply_rules_checkbox' => '应用规则',
|
||||
'fire_webhooks_checkbox' => '触发 webhook',
|
||||
'select_source_account' => 'Please select or type a valid source account name',
|
||||
'select_dest_account' => 'Please select or type a valid destination account name',
|
||||
'select_source_account' => '请选择或输入一个有效的源帐户名称',
|
||||
'select_dest_account' => '请选择或输入一个有效的目标帐户名称',
|
||||
|
||||
// convert stuff:
|
||||
'convert_is_already_type_Withdrawal' => '此交易已经为支出',
|
||||
@@ -1990,7 +1990,7 @@ return [
|
||||
'deleted_transfer' => '已成功删除转账“:description”',
|
||||
'deleted_reconciliation' => '成功删除对账交易“:description”',
|
||||
'stored_journal' => '成功创建新交易“:description”',
|
||||
'stored_journal_js' => 'Successfully created new transaction "{{description}}"',
|
||||
'stored_journal_js' => '成功创建新交易 "{{description}}"',
|
||||
'stored_journal_no_descr' => '成功创建您的新交易',
|
||||
'updated_journal_no_descr' => '成功更新您的交易',
|
||||
'select_transactions' => '选择交易',
|
||||
@@ -2298,7 +2298,7 @@ return [
|
||||
'description' => '描述',
|
||||
'sum_of_period' => '区间内的总和',
|
||||
'average_in_period' => '区间平均',
|
||||
'no_account_role' => '(no role)',
|
||||
'no_account_role' => '(无角色)',
|
||||
'account_role_defaultAsset' => '默认资产账户',
|
||||
'account_role_sharedAsset' => '共用资产账户',
|
||||
'account_role_savingAsset' => '储蓄账户',
|
||||
@@ -2463,7 +2463,7 @@ return [
|
||||
'block_code_bounced' => '电子邮件被退回',
|
||||
'block_code_expired' => '演示账户已过期',
|
||||
'no_block_code' => '无封禁理由或用户未被封禁',
|
||||
'demo_user_export' => 'The demo user cannot export data',
|
||||
'demo_user_export' => '演示用户不能导出数据',
|
||||
'block_code_email_changed' => '用户尚未确认新的电子邮件地址',
|
||||
'admin_update_email' => '与个人档案页面相反,用户不会被通知他们的电子邮件地址已变更!',
|
||||
'update_user' => '更新用户',
|
||||
@@ -2571,9 +2571,9 @@ return [
|
||||
'store_as_new' => '保存为新交易而不是更新此交易。',
|
||||
'reset_after' => '提交后重置表单',
|
||||
'errors_submission' => '您的提交有误,请查看下面输出的错误信息。',
|
||||
'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}',
|
||||
'errors_submission_v2' => '您提交的内容有误,请检查错误信息: {{errorMessage}}',
|
||||
'transaction_expand_split' => '展开拆分',
|
||||
'transaction_remove_split' => 'Remove split',
|
||||
'transaction_remove_split' => '移除拆分',
|
||||
'transaction_collapse_split' => '折叠拆分',
|
||||
|
||||
// object groups
|
||||
@@ -2773,7 +2773,7 @@ return [
|
||||
'ale_action_add_to_piggy' => '存钱罐',
|
||||
'ale_action_remove_from_piggy' => '存钱罐',
|
||||
'ale_action_add_tag' => '添加标签',
|
||||
'ale_action_update_amount' => 'Updated amount',
|
||||
'ale_action_update_amount' => '更新金额',
|
||||
|
||||
// dashboard
|
||||
'enable_auto_convert' => '启用货币转换',
|
||||
|
||||
@@ -70,5 +70,5 @@ return [
|
||||
'cannot_find_budget' => 'Firefly III 找不到预算“:name”',
|
||||
'cannot_find_category' => 'Firefly III 找不到分类“:name”',
|
||||
'cannot_set_budget' => 'Firefly III 无法设置预算“:name”为类型“:type”的交易',
|
||||
'journal_invalid_amount' => 'Firefly III can\'t set amount ":amount" because it is not a valid number.',
|
||||
'journal_invalid_amount' => 'Firefly III 无法设置金额 ":amount" 因为它不是一个有效的数字。',
|
||||
];
|
||||
|
||||
@@ -55,11 +55,11 @@ return [
|
||||
'reconciled_forbidden_field' => '这笔交易已经对账,您无法更改“:field”',
|
||||
'deleted_user' => '由于安全限制,您无法使用此电子邮件地址注册',
|
||||
'rule_trigger_value' => '此值不能用于所选触发条件',
|
||||
'rule_action_expression' => 'Invalid expression. :error',
|
||||
'rule_action_expression' => '无效表达式. :error',
|
||||
'rule_action_value' => '此值不能用于所选动作',
|
||||
'file_already_attached' => '上传的文件“:name”已添加到此对象',
|
||||
'file_attached' => '成功上传文件“:name”',
|
||||
'file_zero' => 'The file is zero bytes in size.',
|
||||
'file_zero' => '文件大小为零字节。',
|
||||
'must_exist' => '数据库中不存在字段 :attribute 的 ID',
|
||||
'all_accounts_equal' => '此字段中的所有账户必须相同',
|
||||
'group_title_mandatory' => '在有超过一笔交易时,组标题为必填项',
|
||||
@@ -197,7 +197,7 @@ return [
|
||||
*
|
||||
*/
|
||||
|
||||
'secure_password' => 'This is not a secure password. Please try again. For more information, visit https://bit.ly/FF3-password',
|
||||
'secure_password' => '这不是一个安全的密码。请再试一次。欲了解更多信息,请访问 https://bit.ly/FF3-password',
|
||||
'valid_recurrence_rep_type' => '此重复类型不能用于定期交易',
|
||||
'valid_recurrence_rep_moment' => '此重复时刻不能用于此重复类型',
|
||||
'invalid_account_info' => '无效的账户信息',
|
||||
|
||||
@@ -52,7 +52,6 @@
|
||||
:class="{ 'invisible': (billBox.unpaid.length == index+1) }">, </span>
|
||||
</span>
|
||||
</template>
|
||||
<span x-text="billBox.unpaid.length"></span>
|
||||
</h3>
|
||||
</template>
|
||||
<template x-if="loading">
|
||||
@@ -76,7 +75,6 @@
|
||||
</template>
|
||||
<template x-if="billBox.paid.length > 0">
|
||||
<span>
|
||||
{{ __('firefly.unpaid') }}:
|
||||
{{ __('firefly.paid') }}:
|
||||
<template x-for="(amount, index) in billBox.paid" :key="index">
|
||||
<span>
|
||||
|
||||
Reference in New Issue
Block a user