Update meta files for new release.

This commit is contained in:
James Cole
2021-09-17 09:23:49 +02:00
parent 46f2494dfd
commit 0ab9db23d1
32 changed files with 124 additions and 68 deletions

View File

@@ -21,25 +21,6 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
/*
* GroupMembership.php
* Copyright (c) 2021 james@firefly-iii.org
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
namespace FireflyIII\Models; namespace FireflyIII\Models;

View File

@@ -2,38 +2,55 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## 5.6.0 - 2021-xx-xx ## 5.6.0 - 2021-09-17
⚠️ This release features new LDAP libraries. Your mileage may vary. Make sure you back up everything. Firefly III may accidentally create a new account for you instead of reusing the old one. There is no option for LDAP filters yet. ⚠️ This release features new LDAP libraries. Your mileage may vary. Make sure you back up everything. Firefly III may accidentally create a new account for you instead of reusing the old one. There is no option for LDAP filters yet.
Please refer to the [documentation](https://docs.firefly-iii.org/firefly-iii/) and support channels if you run into problems:
- [Gitter.im](https://gitter.im/firefly-iii/firefly-iii)
- [Twitter](https://twitter.com/Firefly_III/)
- [GitHub Issues](https://github.com/firefly-iii/firefly-iii/issues)
- [GitHub Discussions](https://github.com/firefly-iii/firefly-iii/discussions)
### Added ### Added
- A few new pages for the new v2 layout. Thanks @alex6480! - A few new pages for the new v2 layout. Thanks @alex6480!
- Added a new currency yay! - Added a new currency, thanks @kasperkls02!
- You can now manage loans and debts a little better. - You can now manage loans and debts a little better, see also the documentation for help.
- Some screenshots are now in the GitHub repository for better management, thanks @Flightkick!
- @LBreda has added a service worker and updated icons, thanks!
### Changed ### Changed
- @hoshsadiq has added all PHP requirements to the composer file, thanks!
- A better cache routine for layout v2 pages. - A better cache routine for layout v2 pages.
- All LDAP libraries have been upgrade. - All LDAP libraries have been upgraded.
- New issue templates and help text for easier GitHub support.
### Deprecated - First preparations for multi-administration and group membership options.
- Initial release. - The search will return nothing if you submit invalid values, instead of everything.
### Removed ### Removed
- All telemetry options have been removed. - All telemetry options have been removed.
### Fixed ### Fixed
- [Issue 4894](https://github.com/firefly-iii/firefly-iii/issues/4894) Bad number comparison - [Issue 4894](https://github.com/firefly-iii/firefly-iii/issues/4894) Bad number comparison
- [Issue 4987](https://github.com/firefly-iii/firefly-iii/issues/4987) Budgeted amount includes inactive budgets
- [Issue 4988](https://github.com/firefly-iii/firefly-iii/issues/4988) Can't select liability account from imported transactions
- #5042 HTTP 500 when creating Personal Access Token or OAuth Client
- Various Sonarqube issues, thanks @hazma-fadil! - Various Sonarqube issues, thanks @hazma-fadil!
- Correct menu display, thanks @vonsogt! - Correct menu display, thanks @vonsogt!
- The IBAN validator will filter special characters.
- In some cases, piggy banks would report being full or empty while this was not actually the case.
- Various other bugs and minor issues.
### Security ### Security
- Feature to be able to rebuild Docker images and show security warnings in new builds. - Feature to be able to rebuild Docker images and show security warnings in new builds.
- [CVE-2021-3663](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3663) A missing rate limiter makes brute-forcing the login easy.
- It also fixes [CVE-2021-3728](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3728), [CVE-2021-3729](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3729) and [CVE-2021-3730](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3730), all variations of the same security vulnerability: some actions in Firefly III were vulnerable to CSRF.
### API ### API
- You can disable webhooks with an extra field in API submissions. - You can disable webhooks with an extra field in API submissions.
- There is a static cron token (see `.env.example`) which is useful for Docker. - There is a static cron token (see `.env.example`) which is useful for Docker.
- A better endpoint to move transactions around, see [api-docs.firefly-iii.org](https://api-docs.firefly-iii.org).
## 5.5.13 - 2021-07-25 ## 5.5.13 - 2021-07-25

View File

@@ -101,7 +101,7 @@ return [
'webhooks' => true, 'webhooks' => true,
'handle_debts' => true, 'handle_debts' => true,
], ],
'version' => '5.6.0-alpha.2', 'version' => '5.6.0',
'api_version' => '1.5.3', 'api_version' => '1.5.3',
'db_version' => 18, 'db_version' => 18,

View File

@@ -21,25 +21,6 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
/*
* user_roles.php
* Copyright (c) 2021 james@firefly-iii.org
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
use FireflyIII\Models\UserRole; use FireflyIII\Models\UserRole;

View File

@@ -16,11 +16,11 @@ The different alpha and beta builds will be compiled from their corresponding ta
### Minor Release Support Matrix ### Minor Release Support Matrix
| Version | Supported | | Version | Supported |
| ------- | ------------------ | | ------- | ------------------ |
| Firefly III v5.5.x | :white_check_mark: | | Firefly III v5.6.x | :white_check_mark: |
| Firefly III v5.5.x | :x: |
| Firefly III v5.4.x | :x: | | Firefly III v5.4.x | :x: |
| Firefly III v5.3.x | :x: | | Firefly III v5.3.x | :x: |
| Firefly III v5.2.x | :x: | | Firefly III v5.2.x (and earlier) | :x: |
| Firefly III v5.1.x (and earlier) | :x: |
### Upgrade path and support policy ### Upgrade path and support policy
The upgrade path for Firefly III is: The upgrade path for Firefly III is:

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Разкажете ни повече от „казва Опаааа!“', 'tell_more' => 'Разкажете ни повече от „казва Опаааа!“',
'include_logs' => 'Включете регистрационни файлове за грешки (вижте по-горе).', 'include_logs' => 'Включете регистрационни файлове за грешки (вижте по-горе).',
'what_did_you_do' => 'Кажете ни какво правихте.', 'what_did_you_do' => 'Кажете ни какво правихте.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Řekněte nám více než "se objevilo Hups!"', 'tell_more' => 'Řekněte nám více než "se objevilo Hups!"',
'include_logs' => 'Zahrnout protokoly chyb (viz výše).', 'include_logs' => 'Zahrnout protokoly chyb (viz výše).',
'what_did_you_do' => 'Řekněte nám, co jste dělali.', 'what_did_you_do' => 'Řekněte nám, co jste dělali.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Sagen Sie uns mehr als "Da steht Hoppla!"', 'tell_more' => 'Sagen Sie uns mehr als "Da steht Hoppla!"',
'include_logs' => 'Fehlerprotokolle einschließen (siehe oben).', 'include_logs' => 'Fehlerprotokolle einschließen (siehe oben).',
'what_did_you_do' => 'Teilen Sie uns mit, was Sie getan haben.', 'what_did_you_do' => 'Teilen Sie uns mit, was Sie getan haben.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Πείτε μας λίγα περισσότερα από το "μου λέει Ουπς!"', 'tell_more' => 'Πείτε μας λίγα περισσότερα από το "μου λέει Ουπς!"',
'include_logs' => 'Συμπεριλάβετε αρχεία καταγραφής σφαλμάτων (δείτε παραπάνω).', 'include_logs' => 'Συμπεριλάβετε αρχεία καταγραφής σφαλμάτων (δείτε παραπάνω).',
'what_did_you_do' => 'Πείτε μας τι κάνατε.', 'what_did_you_do' => 'Πείτε μας τι κάνατε.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,4 +47,8 @@ return [
'tell_more' => 'Tell us more than "it says Whoops!"', 'tell_more' => 'Tell us more than "it says Whoops!"',
'include_logs' => 'Include error logs (see above).', 'include_logs' => 'Include error logs (see above).',
'what_did_you_do' => 'Tell us what you were doing.', 'what_did_you_do' => 'Tell us what you were doing.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Cuéntenos más que "Dice: Ups"', 'tell_more' => 'Cuéntenos más que "Dice: Ups"',
'include_logs' => 'Incluye registros de errores (ver arriba).', 'include_logs' => 'Incluye registros de errores (ver arriba).',
'what_did_you_do' => 'Cuéntenos lo que estaba haciendo.', 'what_did_you_do' => 'Cuéntenos lo que estaba haciendo.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Kerro meille enemmän kuin "se sanoo Whoops!"', 'tell_more' => 'Kerro meille enemmän kuin "se sanoo Whoops!"',
'include_logs' => 'Sisällytä virhelokit (katso yllä).', 'include_logs' => 'Sisällytä virhelokit (katso yllä).',
'what_did_you_do' => 'Kerro meille mitä olit tekemässä.', 'what_did_you_do' => 'Kerro meille mitä olit tekemässä.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Dites-nous plus que "ça dit Oups !"', 'tell_more' => 'Dites-nous plus que "ça dit Oups !"',
'include_logs' => 'Incluez les logs d\'erreur (voir plus bas).', 'include_logs' => 'Incluez les logs d\'erreur (voir plus bas).',
'what_did_you_do' => 'Dites-nous ce que vous faisiez.', 'what_did_you_do' => 'Dites-nous ce que vous faisiez.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Részletesebben írd le, mint hogy "azt írja hoppá, hiba történt!"', 'tell_more' => 'Részletesebben írd le, mint hogy "azt írja hoppá, hiba történt!"',
'include_logs' => 'Hiba naplók hozzáadása (lásd fentebb).', 'include_logs' => 'Hiba naplók hozzáadása (lásd fentebb).',
'what_did_you_do' => 'Meséld el mit csináltál.', 'what_did_you_do' => 'Meséld el mit csináltál.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Beri tahu kami selain "kata Whoops!"', 'tell_more' => 'Beri tahu kami selain "kata Whoops!"',
'include_logs' => 'Sertakan log kesalahan (lihat di atas).', 'include_logs' => 'Sertakan log kesalahan (lihat di atas).',
'what_did_you_do' => 'Beritahu kami apa yang anda lakukan.', 'what_did_you_do' => 'Beritahu kami apa yang anda lakukan.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,4 +47,8 @@ return [
'tell_more' => 'Dicci di più di "dice Oops!"', 'tell_more' => 'Dicci di più di "dice Oops!"',
'include_logs' => 'Includi i log degli errori (vedi sopra).', 'include_logs' => 'Includi i log degli errori (vedi sopra).',
'what_did_you_do' => 'Dicci cosa stavi facendo.', 'what_did_you_do' => 'Dicci cosa stavi facendo.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => '「おっと!」以上のことを教えてください。', 'tell_more' => '「おっと!」以上のことを教えてください。',
'include_logs' => 'エラーログを含めます (上記参照)。', 'include_logs' => 'エラーログを含めます (上記参照)。',
'what_did_you_do' => '何をしていたか教えてください。', 'what_did_you_do' => '何をしていたか教えてください。',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Tell us more than "it says Whoops!"', 'tell_more' => 'Tell us more than "it says Whoops!"',
'include_logs' => 'Include error logs (see above).', 'include_logs' => 'Include error logs (see above).',
'what_did_you_do' => 'Tell us what you were doing.', 'what_did_you_do' => 'Tell us what you were doing.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Meer info dan "hij is stuk" gaarne', 'tell_more' => 'Meer info dan "hij is stuk" gaarne',
'include_logs' => 'Inclusief foutlogs (zie hierboven).', 'include_logs' => 'Inclusief foutlogs (zie hierboven).',
'what_did_you_do' => 'Zet er bij wat je deed.', 'what_did_you_do' => 'Zet er bij wat je deed.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Powiedz nam więcej niż "Nie działa!"', 'tell_more' => 'Powiedz nam więcej niż "Nie działa!"',
'include_logs' => 'Dołącz dzienniki błędów (patrz powyżej).', 'include_logs' => 'Dołącz dzienniki błędów (patrz powyżej).',
'what_did_you_do' => 'Powiedz nam, co robisz.', 'what_did_you_do' => 'Powiedz nam, co robisz.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Nos diga mais do que "ele retorna Ops!"', 'tell_more' => 'Nos diga mais do que "ele retorna Ops!"',
'include_logs' => 'Inclua os logs de erro (veja acima).', 'include_logs' => 'Inclua os logs de erro (veja acima).',
'what_did_you_do' => 'Nos diga o que você estava fazendo.', 'what_did_you_do' => 'Nos diga o que você estava fazendo.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Diga-nos mais que "diz Whoops! no ecrã"', 'tell_more' => 'Diga-nos mais que "diz Whoops! no ecrã"',
'include_logs' => 'Incluir relatório de erros (ver acima).', 'include_logs' => 'Incluir relatório de erros (ver acima).',
'what_did_you_do' => 'Diga-nos o que estava a fazer.', 'what_did_you_do' => 'Diga-nos o que estava a fazer.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Spune-ne mai mult decât „spune Whoops!”', 'tell_more' => 'Spune-ne mai mult decât „spune Whoops!”',
'include_logs' => 'Include jurnalele de erori (a se vedea mai sus).', 'include_logs' => 'Include jurnalele de erori (a se vedea mai sus).',
'what_did_you_do' => 'Spune-ne ce făceai.', 'what_did_you_do' => 'Spune-ne ce făceai.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Я хочу знать больше, чем просто "Упс!"', 'tell_more' => 'Я хочу знать больше, чем просто "Упс!"',
'include_logs' => 'Прикрепить журналы ошибок (см. выше).', 'include_logs' => 'Прикрепить журналы ошибок (см. выше).',
'what_did_you_do' => 'Расскажите нам, что именно вы делали.', 'what_did_you_do' => 'Расскажите нам, что именно вы делали.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Povedzte nám viac, než "napísalo mi to Ups!"', 'tell_more' => 'Povedzte nám viac, než "napísalo mi to Ups!"',
'include_logs' => 'Priložiť chybové záznamy (viď vyššie).', 'include_logs' => 'Priložiť chybové záznamy (viď vyššie).',
'what_did_you_do' => 'Napíšte nám, čo ste robili, keď sa chyba vyskytla.', 'what_did_you_do' => 'Napíšte nám, čo ste robili, keď sa chyba vyskytla.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Berätta mer än "det står Hoppsan!"', 'tell_more' => 'Berätta mer än "det står Hoppsan!"',
'include_logs' => 'Inkludera felloggar (se ovan).', 'include_logs' => 'Inkludera felloggar (se ovan).',
'what_did_you_do' => 'Berätta vad du gjorde.', 'what_did_you_do' => 'Berätta vad du gjorde.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Tell us more than "it says Whoops!"', 'tell_more' => 'Tell us more than "it says Whoops!"',
'include_logs' => 'Include error logs (see above).', 'include_logs' => 'Include error logs (see above).',
'what_did_you_do' => 'Tell us what you were doing.', 'what_did_you_do' => 'Tell us what you were doing.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Hãy nói với chúng tôi nhiều hơn "nó nói Rất tiếc!"', 'tell_more' => 'Hãy nói với chúng tôi nhiều hơn "nó nói Rất tiếc!"',
'include_logs' => 'Bao gồm các bản ghi lỗi (xem ở trên).', 'include_logs' => 'Bao gồm các bản ghi lỗi (xem ở trên).',
'what_did_you_do' => 'Hãy cho chúng tôi biết những gì bạn đã làm.', 'what_did_you_do' => 'Hãy cho chúng tôi biết những gì bạn đã làm.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => '请提交给我们更多信息,而不仅仅是“网页提示说很抱歉”。', 'tell_more' => '请提交给我们更多信息,而不仅仅是“网页提示说很抱歉”。',
'include_logs' => '请包含错误日志(见上文)。', 'include_logs' => '请包含错误日志(见上文)。',
'what_did_you_do' => '告诉我们您进行了哪些操作。', 'what_did_you_do' => '告诉我们您进行了哪些操作。',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -47,5 +47,8 @@ return [
'tell_more' => 'Tell us more than "it says Whoops!"', 'tell_more' => 'Tell us more than "it says Whoops!"',
'include_logs' => 'Include error logs (see above).', 'include_logs' => 'Include error logs (see above).',
'what_did_you_do' => 'Tell us what you were doing.', 'what_did_you_do' => 'Tell us what you were doing.',
'offline_header' => 'You are probably offline',
'offline_unreachable' => 'Firefly III is unreachable. Your device is currently offline or the server is not working.',
'offline_github' => 'If you are sure both your device and the server are online, please open a ticket on <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
]; ];

View File

@@ -1,5 +1,5 @@
sonar.projectKey=firefly-iii sonar.projectKey=firefly-iii
sonar.projectVersion=5.6.0-alpha.2 sonar.projectVersion=5.6.0
sonar.sources=app,bootstrap,database,resources/assets,resources/views,routes,tests,frontend/src/components,frontend/src/pages sonar.sources=app,bootstrap,database,resources/assets,resources/views,routes,tests,frontend/src/components,frontend/src/pages
sonar.login=2859ca0fb90d8419e211190a8892b3e1721244cb sonar.login=2859ca0fb90d8419e211190a8892b3e1721244cb
sonar.sourceEncoding=UTF-8 sonar.sourceEncoding=UTF-8

View File

@@ -1047,9 +1047,9 @@
integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==
"@types/node@*": "@types/node@*":
version "16.9.1" version "16.9.2"
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.9.1.tgz#0611b37db4246c937feef529ddcc018cf8e35708" resolved "https://registry.yarnpkg.com/@types/node/-/node-16.9.2.tgz#81f5a039d6ed1941f8cc57506c74e7c2b8fc64b9"
integrity sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g== integrity sha512-ZHty/hKoOLZvSz6BtP1g7tc7nUeJhoCf3flLjh8ZEv1vFKBWHXcnMbJMyN/pftSljNyy0kNW/UqI3DccnBnZ8w==
"@types/parse-json@^4.0.0": "@types/parse-json@^4.0.0":
version "4.0.0" version "4.0.0"
@@ -1728,9 +1728,9 @@ caniuse-api@^3.0.0:
lodash.uniq "^4.5.0" lodash.uniq "^4.5.0"
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001252, caniuse-lite@^1.0.30001254: caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001252, caniuse-lite@^1.0.30001254:
version "1.0.30001257" version "1.0.30001258"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001257.tgz#150aaf649a48bee531104cfeda57f92ce587f6e5" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001258.tgz#b604eed80cc54a578e4bf5a02ae3ed49f869d252"
integrity sha512-JN49KplOgHSXpIsVSF+LUyhD8PUp6xPpAXeRrrcBh4KBeP7W864jHn6RvzJgDlrReyeVjMFJL3PLpPvKIxlIHA== integrity sha512-RBByOG6xWXUp0CR2/WU2amXz3stjKpSl5J1xU49F1n2OxD//uBZO4wCKUiG+QMGf7CHGfDDcqoKriomoGVxTeA==
chalk@^2.0.0, chalk@^2.4.2: chalk@^2.0.0, chalk@^2.4.2:
version "2.4.2" version "2.4.2"
@@ -1835,9 +1835,9 @@ clone-deep@^4.0.1:
shallow-clone "^3.0.0" shallow-clone "^3.0.0"
collect.js@^4.28.5: collect.js@^4.28.5:
version "4.28.6" version "4.29.0"
resolved "https://registry.yarnpkg.com/collect.js/-/collect.js-4.28.6.tgz#7fb75ae93b8198f7bb88461e263ea09744d0c56b" resolved "https://registry.yarnpkg.com/collect.js/-/collect.js-4.29.0.tgz#2fecc535b5e5712a5c7eeaa2c2d510f3113ec423"
integrity sha512-NAyuk1DnCotRaDZIS5kJ4sptgkwOeYqElird10yziN5JBuwYOGkOTguhNcPn5g344IfylZecxNYZAVXgv19p5Q== integrity sha512-yhgGYEsLEcqnLT1NmRlN1+1euoz9SDhxQ4QyDhWYsKoWsg7252PKA5++dWaDs8mdFxbkmXDXQUaHXI9J2eTPkQ==
color-convert@^1.9.0: color-convert@^1.9.0:
version "1.9.3" version "1.9.3"
@@ -2396,9 +2396,9 @@ ee-first@1.1.1:
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
electron-to-chromium@^1.3.830: electron-to-chromium@^1.3.830:
version "1.3.840" version "1.3.842"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.840.tgz#3f2a1df97015d9b1db5d86a4c6bd4cdb920adcbb" resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.842.tgz#641e414012dded277468892c0156cb01984f4f6f"
integrity sha512-yRoUmTLDJnkIJx23xLY7GbSvnmDCq++NSuxHDQ0jiyDJ9YZBUGJcrdUqm+ZwZFzMbCciVzfem2N2AWiHJcWlbw== integrity sha512-P/nDMPIYdb2PyqCQwhTXNi5JFjX1AsDVR0y6FrHw752izJIAJ+Pn5lugqyBq4tXeRSZBMBb2ZGvRGB1djtELEQ==
elliptic@^6.5.3: elliptic@^6.5.3:
version "6.5.4" version "6.5.4"
@@ -5424,9 +5424,9 @@ webpack-sources@^3.2.0:
integrity sha512-t6BMVLQ0AkjBOoRTZgqrWm7xbXMBzD+XDq2EZ96+vMfn3qKgsvdXZhbPZ4ElUOpdv4u+iiGe+w3+J75iy/bYGA== integrity sha512-t6BMVLQ0AkjBOoRTZgqrWm7xbXMBzD+XDq2EZ96+vMfn3qKgsvdXZhbPZ4ElUOpdv4u+iiGe+w3+J75iy/bYGA==
webpack@^5.38.1: webpack@^5.38.1:
version "5.52.1" version "5.53.0"
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.52.1.tgz#2dc1d9029ecb7acfb80da7bf67baab67baa517a7" resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.53.0.tgz#f463cd9c6fc1356ae4b9b7ac911fd1f5b2df86af"
integrity sha512-wkGb0hLfrS7ML3n2xIKfUIwHbjB6gxwQHyLmVHoAqEQBw+nWo+G6LoHL098FEXqahqximsntjBLuewStrnJk0g== integrity sha512-RZ1Z3z3ni44snoWjfWeHFyzvd9HMVYDYC5VXmlYUT6NWgEOWdCNpad5Fve2CzzHoRED7WtsKe+FCyP5Vk4pWiQ==
dependencies: dependencies:
"@types/eslint-scope" "^3.7.0" "@types/eslint-scope" "^3.7.0"
"@types/estree" "^0.0.50" "@types/estree" "^0.0.50"