Meta data for new release.

This commit is contained in:
James Cole 2023-12-26 08:42:38 +01:00
parent ffeada037d
commit ef09f88816
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80
93 changed files with 300 additions and 210 deletions

View File

@ -3,6 +3,35 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## 6.1.1 - 2023-12-27
### Changed
- Rule overview is lower in height.
### Removed
- Removed fixed sidebar again
### Fixed
- Nullpointer in rule trigger render code
- [Issue 8272](https://github.com/firefly-iii/firefly-iii/issues/8272) The sum for expected bills in a group includes unexpected bills as well
- [Issue 8273](https://github.com/firefly-iii/firefly-iii/issues/8273) Frontpage preferences indicate all accounts are shown on the frontpage, even when not true
- [Issue 8274](https://github.com/firefly-iii/firefly-iii/issues/8274) Semi specific dates do not work correctly with the "Transaction date is.." rule trigger
- [Issue 8277](https://github.com/firefly-iii/firefly-iii/issues/8277) Expected bill next month, but shown as not expected
- [Issue 8278](https://github.com/firefly-iii/firefly-iii/issues/8278) Net worth is empty in the dashboard due to division by zero
- [Issue 8281](https://github.com/firefly-iii/firefly-iii/issues/8281) Database CPU utilization after v6.1.0 upgrade
- [Issue 8291](https://github.com/firefly-iii/firefly-iii/issues/8291) Multiple "Any tag is" (negated or not) rule triggers don't all apply in strict mode
### Security
- HTML Injection Vulnerability in webhooks code, discovered by @stefan-schiller-sonarsource from Sonar. Thanks!
### API
- [Issue 8282](https://github.com/firefly-iii/firefly-iii/issues/8282) Update transaction via API does not update the "updated_at" parameter
## 6.1.0 - 2023-12-17
> ⚠️⚠️ This release required **PHP 8.3.0** and will not work on earlier releases of PHP ⚠️⚠️

View File

@ -114,7 +114,7 @@ return [
'handle_debts' => true,
// see cer.php for exchange rates feature flag.
],
'version' => '6.1.0',
'version' => '6.1.1',
'api_version' => '2.0.12',
'db_version' => 22,

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{
"_load-translations-85b093de.js": {
"file": "assets/load-translations-85b093de.js",
"integrity": "sha384-AQsbwlyfi+JD0G6ymSMcfR9FfVJIdqMf/btUvbHkKcRLKTnIN0orw0xpEAajOEWs"
"_load-translations-36a0ce82.js": {
"file": "assets/load-translations-36a0ce82.js",
"integrity": "sha384-wTRO7jAxX9xxNgWUuXNrrSBjAyE0lWGOi3yVQ6S03bEYCk04Tc1C4BrVqHlnDSZL"
},
"node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf": {
"file": "assets/fa-brands-400-5656d596.ttf",
@ -34,22 +34,22 @@
"integrity": "sha384-YxWlWCDksuL6Ljn1HkJNPH8l+jSRIWPpMpPw3pFa0QnmLXjwV/uPwpDm/b9vn/o1"
},
"resources/assets/v2/pages/dashboard/dashboard.js": {
"file": "assets/dashboard-8ab291b1.js",
"file": "assets/dashboard-9f02f998.js",
"imports": [
"_load-translations-85b093de.js"
"_load-translations-36a0ce82.js"
],
"isEntry": true,
"src": "resources/assets/v2/pages/dashboard/dashboard.js",
"integrity": "sha384-a7EK1Hlv+X5I367qMl06ETSq3vMG4MAIcUFpnK+6FJJSHPeAoKEkqod4CsBkcAwO"
"integrity": "sha384-mH/cboBLbKf0nKndnDaPzbF4ogflUacPt4Meytovf5d92Z6dytPdAXaUTPhWb89+"
},
"resources/assets/v2/pages/transactions/create.js": {
"file": "assets/create-57cfd98e.js",
"file": "assets/create-8d2b7efc.js",
"imports": [
"_load-translations-85b093de.js"
"_load-translations-36a0ce82.js"
],
"isEntry": true,
"src": "resources/assets/v2/pages/transactions/create.js",
"integrity": "sha384-y6OO3R97PvGAlKYeuGnkEw2wNlbSOMRTIZE2EWiKmFLp0CRFFCDqpHV+xHVjBCNy"
"integrity": "sha384-AoSn0ASKb6wASHs6lp71iR/Siw9t2xU67Aos2Eq/osFPlEyJ58N7gHUoowy56/8z"
},
"resources/assets/v2/sass/app.scss": {
"file": "assets/app-fb7b26ec.css",

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
/*!
* Vue.js v2.7.15
* Vue.js v2.7.16
* (c) 2014-2023 Evan You
* Released under the MIT License.
*/

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -22,7 +22,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",
"expense_account": "Compte de despeses",
"revenue_account": "Compte d'ingressos",
"budget": "Pressupost",

View File

@ -22,7 +22,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",
"expense_account": "Ausgabenkonto",
"revenue_account": "Einnahmekonto",
"budget": "Budget",

View File

@ -22,7 +22,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": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03ce\u03c2 \u03b7 \u03bd\u03ad\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u00ab%{description}\u00bb",
"expense_account": "Expense account",
"revenue_account": "Revenue account",
"budget": "\u03a0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc\u03c2",

View File

@ -22,7 +22,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",
"expense_account": "Compte de d\u00e9penses",
"revenue_account": "Compte de recettes",
"budget": "Budget",

View File

@ -22,7 +22,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": "Transaksjonen \u00ab%{description}\u00bb vart oppretta",
"expense_account": "Expense account",
"revenue_account": "Revenue account",
"budget": "Budsjett",

View File

@ -22,7 +22,7 @@
"unknown_dest_plain": "Nieznane konto docelowe",
"unknown_any_plain": "Nieznane konto",
"unknown_budget_plain": "Brak bud\u017cetu",
"stored_journal_js": "Successfully created new transaction \"%{description}\"",
"stored_journal_js": "Pomy\u015blnie utworzono now\u0105 transakcj\u0119 \"%{description}\"",
"expense_account": "Konto wydatk\u00f3w",
"revenue_account": "Konto przychod\u00f3w",
"budget": "Bud\u017cet",

View File

@ -22,7 +22,7 @@
"unknown_dest_plain": "Conta de destino desconhecida",
"unknown_any_plain": "Conta desconhecida",
"unknown_budget_plain": "Nenhum or\u00e7amento",
"stored_journal_js": "Successfully created new transaction \"%{description}\"",
"stored_journal_js": "Transa\u00e7\u00e3o \"%{description}\" criada com sucesso",
"expense_account": "Conta de despesas",
"revenue_account": "Conta de Receitas",
"budget": "Or\u00e7amento",

View File

@ -22,7 +22,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": "\u041d\u043e\u0432\u0430\u044f \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f \"%{description}\" \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0430",
"expense_account": "\u0421\u0447\u0435\u0442 \u0440\u0430\u0441\u0445\u043e\u0434\u043e\u0432",
"revenue_account": "\u0421\u0447\u0435\u0442 \u0434\u043e\u0445\u043e\u0434\u043e\u0432",
"budget": "\u0411\u044e\u0434\u0436\u0435\u0442",

View File

@ -1,7 +1,7 @@
{
"uk_UA": {
"config": {
"html_language": "\u0443\u043a\u0440"
"html_language": "uk"
},
"firefly": {
"spent": "Spent",

View File

@ -25,6 +25,7 @@
"destination_account": "\u0420\u0430\u0445\u0443\u043d\u043e\u043a \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f",
"add_another_split": "Add another split",
"submission": "Submission",
"stored_journal": "Successfully created new transaction \":description\"",
"create_another": "After storing, return here to create another one.",
"reset_after": "Reset form after submission",
"submit": "\u041f\u0456\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0438",
@ -70,7 +71,7 @@
"profile_oauth_edit_client": "\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043a\u043b\u0456\u0454\u043d\u0442\u0430",
"profile_oauth_name_help": "\u0429\u043e\u0441\u044c, \u0449\u043e \u0432\u0430\u0448\u0456 \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456 \u0432\u043f\u0456\u0437\u043d\u0430\u044e\u0442\u044c \u0456 \u0434\u043e\u0432\u0456\u0440\u044f\u0442\u0438\u043c\u0443\u0442\u044c.",
"profile_oauth_redirect_url": "URL-\u0430\u0434\u0440\u0435\u0441\u0430 \u043f\u0435\u0440\u0435\u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043d\u044f",
"profile_oauth_clients_external_auth": "If you're using an external authentication provider like Authelia, OAuth Clients will not work. You can use Personal Access Tokens only.",
"profile_oauth_clients_external_auth": "\u042f\u043a\u0449\u043e \u0432\u0438 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0454\u0442\u0435 \u0441\u0442\u043e\u0440\u043e\u043d\u043d\u044c\u043e\u0433\u043e \u043f\u043e\u0441\u0442\u0430\u0447\u0430\u043b\u044c\u043d\u0438\u043a\u0430 \u0430\u0432\u0442\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u0457, \u043d\u0430\u043f\u0440\u0438\u043a\u043b\u0430\u0434 Authelia, \u043a\u043b\u0456\u0454\u043d\u0442\u0438 OAuth \u043d\u0435 \u043f\u0440\u0430\u0446\u044e\u0432\u0430\u0442\u0438\u043c\u0443\u0442\u044c. \u0412\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u043b\u0438\u0448\u0435 \u043e\u0441\u043e\u0431\u0438\u0441\u0442\u0456 \u0442\u043e\u043a\u0435\u043d\u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u0443.",
"profile_oauth_redirect_url_help": "\u0417\u043e\u0432\u043d\u0456\u0448\u043d\u0456\u0439 URL \u0434\u043b\u044f \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0456\u0457 \u0434\u043e\u0434\u0430\u0442\u043a\u0430.",
"profile_authorized_apps": "\u0410\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u0456 \u0434\u043e\u0434\u0430\u0442\u043a\u0438",
"profile_authorized_clients": "\u0410\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u0456 \u043a\u043b\u0456\u0454\u043d\u0442\u0438",
@ -90,10 +91,10 @@
"profile_oauth_client_secret_expl": "\u041e\u0441\u044c \u043d\u043e\u0432\u0438\u0439 \u0441\u0435\u043a\u0440\u0435\u0442\u043d\u0438\u0439 \u043a\u043b\u044e\u0447 \u043a\u043b\u0456\u0454\u043d\u0442\u0430. \u0426\u0435 \u0454\u0434\u0438\u043d\u0438\u0439 \u0440\u0430\u0437, \u043a\u043e\u043b\u0438 \u0432\u0456\u043d \u0431\u0443\u0434\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u0438\u0439, \u0442\u043e\u043c\u0443 \u043d\u0435 \u0432\u0442\u0440\u0430\u0447\u0430\u0439\u0442\u0435 \u0439\u043e\u0433\u043e! \u0422\u0435\u043f\u0435\u0440 \u0432\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u0446\u0435\u0439 \u0441\u0435\u043a\u0440\u0435\u0442\u043d\u0438\u0439 \u043a\u043b\u044e\u0447 \u0434\u043b\u044f \u043d\u0430\u0434\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u0437\u0430\u043f\u0438\u0442\u0456\u0432 API.",
"profile_oauth_confidential": "\u041a\u043e\u043d\u0444\u0456\u0434\u0435\u043d\u0446\u0456\u0439\u043d\u043e",
"profile_oauth_confidential_help": "\u0412\u0438\u043c\u0430\u0433\u0430\u0439\u0442\u0435 \u0432\u0456\u0434 \u043a\u043b\u0456\u0454\u043d\u0442\u0430 \u0430\u0432\u0442\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u0457 \u0437\u0430 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u043e\u044e \u0441\u0435\u043a\u0440\u0435\u0442\u043d\u043e\u0433\u043e \u043a\u043b\u044e\u0447\u0430. \u041a\u043e\u043d\u0444\u0456\u0434\u0435\u043d\u0446\u0456\u0439\u043d\u0456 \u043a\u043b\u0456\u0454\u043d\u0442\u0438 \u043c\u043e\u0436\u0443\u0442\u044c \u0431\u0435\u0437\u043f\u0435\u0447\u043d\u043e \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u043e\u0431\u043b\u0456\u043a\u043e\u0432\u0456 \u0434\u0430\u043d\u0456, \u0431\u0435\u0437 \u043d\u0430\u0434\u0430\u043d\u043d\u044f \u0457\u0445 \u043d\u0435\u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u0438\u043c \u043e\u0441\u043e\u0431\u0430\u043c. \u041f\u0443\u0431\u043b\u0456\u0447\u043d\u0456 \u0434\u043e\u0434\u0430\u0442\u043a\u0438, \u0442\u0430\u043a\u0456 \u044f\u043a native desktop \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0438 \u0430\u0431\u043e \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0438 JavaScript SPA, \u043d\u0435 \u043c\u043e\u0436\u0443\u0442\u044c \u043d\u0430\u0434\u0456\u0439\u043d\u043e \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u0441\u0435\u043a\u0440\u0435\u0442\u0438.",
"multi_account_warning_unknown": "Depending on the type of transaction you create, the source and\/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.",
"multi_account_warning_withdrawal": "Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.",
"multi_account_warning_deposit": "Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.",
"multi_account_warning_transfer": "Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.",
"multi_account_warning_unknown": "\u0417\u0430\u043b\u0435\u0436\u043d\u043e \u0432\u0456\u0434 \u0442\u0438\u043f\u0443 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0456\u0457, \u044f\u043a\u0443 \u0432\u0438 \u0441\u0442\u0432\u043e\u0440\u044e\u0454\u0442\u0435, \u0432\u0438\u0445\u0456\u0434\u043d\u0438\u043c \u0456\/\u0430\u0431\u043e \u0446\u0456\u043b\u044c\u043e\u0432\u0438\u043c \u0440\u0430\u0445\u0443\u043d\u043a\u043e\u043c \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u0445 \u043f\u043e\u0434\u0456\u043b\u0456\u0432 \u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u0440\u0430\u0445\u0443\u043d\u043e\u043a, \u0432\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u0443 \u043f\u0435\u0440\u0448\u043e\u043c\u0443 \u043f\u043e\u0434\u0456\u043b\u0456 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0456\u0457.",
"multi_account_warning_withdrawal": "\u0417\u0430\u0443\u0432\u0430\u0436\u0442\u0435, \u0449\u043e \u0432\u0438\u0445\u0456\u0434\u043d\u0438\u043c \u0440\u0430\u0445\u0443\u043d\u043a\u043e\u043c \u0434\u043b\u044f \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u0445 \u0440\u043e\u0437\u043f\u043e\u0434\u0456\u043b\u0456\u0432 \u0431\u0443\u0434\u0435 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e \u0440\u0430\u0445\u0443\u043d\u043e\u043a, \u0432\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u0443 \u043f\u0435\u0440\u0448\u043e\u043c\u0443 \u0440\u043e\u0437\u043f\u043e\u0434\u0456\u043b\u0456 \u0432\u0438\u043f\u043b\u0430\u0442.",
"multi_account_warning_deposit": "\u0417\u0430\u0443\u0432\u0430\u0436\u0442\u0435, \u0449\u043e \u0446\u0456\u043b\u044c\u043e\u0432\u0438\u043c \u0440\u0430\u0445\u0443\u043d\u043a\u043e\u043c \u0434\u043b\u044f \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u0445 \u0440\u043e\u0437\u043f\u043e\u0434\u0456\u043b\u0456\u0432 \u0431\u0443\u0434\u0435 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e \u0440\u0430\u0445\u0443\u043d\u043e\u043a, \u0432\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u0443 \u043f\u0435\u0440\u0448\u043e\u043c\u0443 \u0440\u043e\u0437\u043f\u043e\u0434\u0456\u043b\u0456 \u0434\u0435\u043f\u043e\u0437\u0438\u0442\u0443.",
"multi_account_warning_transfer": "\u0417\u0430\u0443\u0432\u0430\u0436\u0442\u0435, \u0449\u043e \u043e\u0431\u043b\u0456\u043a\u043e\u0432\u0456 \u0437\u0430\u043f\u0438\u0441\u0438 \u0434\u0436\u0435\u0440\u0435\u043b\u0430 \u0442\u0430 \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u0445 \u043f\u043e\u0434\u0456\u043b\u0456\u0432 \u0431\u0443\u0434\u0435 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e \u043d\u0430 \u0440\u0430\u0445\u0443\u043d\u043e\u043a, \u0432\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u0443 \u043f\u0435\u0440\u0448\u043e\u043c\u0443 \u043f\u043e\u0434\u0456\u043b\u0456 \u043f\u0435\u0440\u0435\u043a\u0430\u0437\u0443.",
"webhook_trigger_STORE_TRANSACTION": "\u041f\u0456\u0441\u043b\u044f \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457",
"webhook_trigger_UPDATE_TRANSACTION": "\u041f\u0456\u0441\u043b\u044f \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457",
"webhook_trigger_DESTROY_TRANSACTION": "\u041f\u0456\u0441\u043b\u044f \u0432\u0438\u0434\u0430\u043b\u0435\u043d\u043d\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457",
@ -131,18 +132,18 @@
"form": {
"url": "URL-\u0430\u0434\u0440\u0435\u0441\u0430",
"active": "\u0410\u043a\u0442\u0438\u0432\u043d\u043e",
"interest_date": "\u0414\u0430\u0442\u0430 \u043d\u0430\u0440\u0430\u0445\u0443\u0432\u0430\u043d\u043d\u044f \u0432\u0456\u0434\u0441\u043e\u0442\u043a\u0443",
"interest_date": "\u0414\u0430\u0442\u0430 \u043d\u0430\u0440\u0430\u0445\u0443\u0432\u0430\u043d\u043d\u044f \u0432\u0456\u0434\u0441\u043e\u0442\u043a\u0456\u0432",
"title": "\u041d\u0430\u0437\u0432\u0430",
"book_date": "\u0414\u0430\u0442\u0430 \u043e\u0431\u043b\u0456\u043a\u0443",
"book_date": "\u0414\u0430\u0442\u0430 \u0431\u0440\u043e\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
"process_date": "\u0414\u0430\u0442\u0430 \u043e\u043f\u0440\u0430\u0446\u044e\u0432\u0430\u043d\u043d\u044f",
"due_date": "\u0414\u0430\u0442\u0430 \u0437\u0430\u043a\u0456\u043d\u0447\u0435\u043d\u043d\u044f",
"foreign_amount": "\u0406\u043d\u043e\u0437\u0435\u043c\u043d\u0430 \u0441\u0443\u043c\u0430",
"payment_date": "\u0414\u0430\u0442\u0430 \u043e\u043f\u043b\u0430\u0442\u0438",
"invoice_date": "\u0414\u0430\u0442\u0430 \u0440\u0430\u0445\u0443\u043d\u043a\u0443",
"invoice_date": "\u0414\u0430\u0442\u0430 \u0440\u0430\u0445\u0443\u043d\u043a\u0443-\u0444\u0430\u043a\u0442\u0443\u0440\u0438",
"internal_reference": "\u0412\u043d\u0443\u0442\u0440\u0456\u0448\u043d\u0454 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
"webhook_response": "Response",
"webhook_trigger": "Trigger",
"webhook_delivery": "Delivery"
"webhook_response": "\u0412\u0456\u0434\u043f\u043e\u0432\u0456\u0434\u044c",
"webhook_trigger": "\u0422\u0440\u0438\u0433\u0435\u0440",
"webhook_delivery": "\u0414\u043e\u0441\u0442\u0430\u0432\u043a\u0430"
},
"list": {
"active": "\u0427\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u0438\u0439?",
@ -154,6 +155,6 @@
},
"config": {
"html_language": "uk",
"date_time_fns": "\u041c\u041c\u041c\u041c do, \u0440\u0456\u043a @ \u0413\u0413:\u0445\u0432:\u0441\u0435\u043a"
"date_time_fns": "MMMM do, yyyy @ HH:mm:ss"
}
}

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Моля, съберете повече информация в директорията <code> storage/logs </code>, където ще намерите файловете на дневника. Ако използвате Docker, използвайте <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Можете да прочетете повече за събирането на информация за грешки на <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">the FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Получете помощ на GitHub',
'github_instructions' => 'Добре дошли сте да отворите нов проблем <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">на GitHub</a></strong>.',
'use_search' => 'Използвайте търсенето!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Забравих своето двуфакторно нещо.',
'two_factor_lost_header' => 'Загубихте вашата двуфакторната идентификация?',
'two_factor_lost_intro' => 'Ако сте загубили и резервните си кодове, имате лош късмет. Това не е нещо, което можете да поправите от уеб интерфейса. Имате два варианта.',
'two_factor_lost_fix_self' => 'Ако използвате свой собствен екземпляр на Firefly III, прочетете <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">тази статия в ЧЗВ </a> за инструкции.',
'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_owner' => 'В противен случай изпратете имейл на собственика на сайта,<a href="mailto::site_owner">:site_owner</a> и ги помолете да нулират вашето двуфакторно удостоверяване.',
'mfa_backup_code' => 'Използвали сте резервен код, за да влезете в Firefly III. Не може да се използва отново, затова го зачеркнете от списъка си.',
'pref_two_factor_new_backup_codes' => 'Вземете нови резервни кодове',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Разходната сметка „@source_name“ приема само транзакции в @source_currency. Приходната сметка „@dest_name“ приема само транзакции в @dest_currency. Трябва да предоставите трансферираната сума точно и в двете валути.',
'transaction_data' => 'Данни на транзакцията',
'invalid_server_configuration' => 'Грешна конфигурация на сървъра',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instructions how to do this</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Бърз ключ',
'sign_in_to_start' => 'Влезте, за да започнете сесията си',
'sign_in' => 'Вход',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Not',
'cannot_fire_inactive_rules' => 'Не можете да изпълнявате неактивни правила.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Правила',
'rule_name' => 'Име на правилото',
'rule_triggers' => 'Правилото се задейства, когато',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Si us plau, recopili més informació al directori <code>emmagatzematge/registre</code> on hi ha els fitxers de registre. Si utilitzes Docker, utilitza <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Pots llegir més sobre recol·lectar informació d\'errors a les <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">Preguntes Freqüents</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Obtenir ajuda a GitHub',
'github_instructions' => 'Ets més que benvingut a obrir un nou issue <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">a GitHub</a></strong>.',
'use_search' => 'Utilitza la cerca!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'He oblidat la meva cosa de dos factors.',
'two_factor_lost_header' => 'Has perdut la teva autenticació en dues passes?',
'two_factor_lost_intro' => 'Si també has perdut els teus codis de seguretat, has tingut mala sort. No hi ha res que puguis fer per arreglar-ho des de la interfície web. Tens dues opcions.',
'two_factor_lost_fix_self' => 'Si executes la teva pròpia instància de Firefly III, llegeix <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">aquesta entrada al FAQ</a> per obtenir instruccions.',
'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_owner' => 'Altrament, envia un correu al propietari del lloc, <a href="mailto::site_owner">:site_owner</a> i demana-li que reiniciï la teva autenticació de dues passes.',
'mfa_backup_code' => 'Has fet servir un codi de seguretat per iniciar sessió a Firefly III. No es pot tornar a utilitzar, així que ratlla\'l de la llista.',
'pref_two_factor_new_backup_codes' => 'Obtenir nous codis de seguretat',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'El compte d\'actius d\'origen "@source_name" només accepta transaccions en @source_currency. El compte de destí "@dest_name" només accepta transaccions en @dest_currency. Has d\'indicar la quantitat correcta transferida en ambdues monedes.',
'transaction_data' => 'Dades de transacció',
'invalid_server_configuration' => 'Configuració del servidor invàlida',
'invalid_locale_settings' => 'Firefly III no pot formatar quantitats monetàries perquè el servidor no té els paquets necessaris. Hi ha <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instruccions de com fer-ho</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Canvi ràpid',
'sign_in_to_start' => 'Inicia sessió per començar',
'sign_in' => 'Iniciar sessió',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'No',
'cannot_fire_inactive_rules' => 'No pots executar regles inactives.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Regles',
'rule_name' => 'Nom de la regla',
'rule_triggers' => 'La regla s\'activa quan',
@ -1965,7 +1967,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',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Shromažďujte prosím další informace do adresáře <code>storage/logs</code>, kde najdete chybové záznamy. Pokud používáte Docker, použijte <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Více informací o shromažďování chyb si můžete přečíst v <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Získejte nápovědu na GitHub',
'github_instructions' => 'Jste více než vítáni při otevření nových hlášení <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">na GitHub</a></strong>.',
'use_search' => 'Použijte vyhledávání!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Zapomněl(a) jsem si nástroj pro dvoufázové ověření.',
'two_factor_lost_header' => 'Ztratili jste své dvoufázové ověření?',
'two_factor_lost_intro' => 'Pokud jste ztratili i své záložní kódy, máte smůlu. Toto se pak už nedá napravit z webového rozhraní. Máte dvě možnosti:',
'two_factor_lost_fix_self' => 'Pokud spustíte vlastní instanci Firefly III, přečtěte si <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">tento záznam v FAQ</a> pro pokyny.',
'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_owner' => 'V ostatních případech napište provozovateli, <a href="mailto::site_owner">:site_owner</a> a požádejte ho o resetování svého dvoufázového ověřování.',
'mfa_backup_code' => 'Použitím záložního kódu, umožňujícího přihlášení do Firefly III, platnost kódu zaniká. Takže kód, kterým jste se už přihlásili, už k ničemu není (není možné ho použít opakovaně) proto si ho ze seznamu vyškrtněte.',
'pref_two_factor_new_backup_codes' => 'Získat nové záložní kódy',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Zdrojový účet aktiv "@source_name" přijímá pouze transakce v @source_currency. Cílový účet aktiv „@dest_name“ přijímá pouze transakce v @dest_currency. V obou měnách musíte uvést převedenou částku správně.',
'transaction_data' => 'Data transakce',
'invalid_server_configuration' => 'Neplatné nastavení serveru',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instructions how to do this</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Rychlé přepnutí',
'sign_in_to_start' => 'Pro zahájení vaší relace se přihlaste',
'sign_in' => 'Přihlásit',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Not',
'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Pravidla',
'rule_name' => 'Název pravidla',
'rule_triggers' => 'Pravidlo se uplatní když',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Der findes mere information i mappen <code>storage/logs</code> hvor du vil finde logfilerne. Hvis du kører Docker, brug <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Du kan læse mere om indhentning af fejloplysninger i <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Få hjælp på GitHub',
'github_instructions' => 'Du er mere end velkommen til at oprette en ny fejlmelding <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">på GitHub</a></strong>.',
'use_search' => 'Brug søgefeltet!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Jeg har glemt min tofaktor-ting.',
'two_factor_lost_header' => 'Glemt din totrinsbekræftelse?',
'two_factor_lost_intro' => 'Hvis du også har glemt dine backupkoder, så er det sort uheld. Det er ikke noget, du kan fikse fra webinterfacet. Du har to muligheder.',
'two_factor_lost_fix_self' => 'Hvis du kører din egen instans af Firefly III, læs <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">dette indlæg i FAQ\'en</a> for instruktioner.',
'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_owner' => 'Ellers, send en e-mail til sideejeren, <a href="mailto::site_owner">:site_owner</a> og spørg dem om at nulstille din tofaktorgodkendelse.',
'mfa_backup_code' => 'Du har brugt en backupkode til at logge ind på Firefly III. Den kan ikke bruges igen, så streg den fra din liste.',
'pref_two_factor_new_backup_codes' => 'Få nye backupkoder',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Kildekonto "@source_name" tillader kun transaktioner i @source_currency. Destinationskonto "@dest_name" tillader kun transaktioner i @dest_currency. Du skal rigtigt angive det overførte beløb i begge valutaer.',
'transaction_data' => 'Transaktionsdata',
'invalid_server_configuration' => 'Ugyldig server konfiguration',
'invalid_locale_settings' => 'Firefly III er ude af stand til at formattere pengebeløb, fordi din server mangler de nødvendige softwarepakker. Der findes <a href="https://github.com/firefly-iii/help/wiki/Missing-locale-packages">instruktioner til at gøre dette</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Hurtigskift',
'sign_in_to_start' => 'Log ind for at starte din session',
'sign_in' => 'Log ind',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Not',
'cannot_fire_inactive_rules' => 'Du kan ikke afvikle inaktive regler.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Regler',
'rule_name' => 'Navn på regel',
'rule_triggers' => 'Regel udløsere, ved',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Bitte sammeln Sie weitere Informationen im Verzeichnis <code>storage/logs</code> wo Sie Logdateien finden können. Wenn Sie Docker verwenden, verwenden Sie <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Lesen Sie mehr über das Sammeln von Fehlerinformationen in <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">der FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Hilfe auf GitHub erhalten',
'github_instructions' => 'Sie sind herzlich eingeladen, ein neues Ticket <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">auf GitHub</a></strong> zu öffnen.',
'use_search' => 'Benutzen Sie die Suche!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Ich kann keine 2FA-Codes generieren.',
'two_factor_lost_header' => 'Haben Sie ihre Zwei-Faktor-Authentifizierung verloren?',
'two_factor_lost_intro' => 'Wenn Sie auch Ihre Sicherungsschlüssel verloren haben, haben Sie Pech. Dies ist nichts, was Sie über die Weboberfläche beheben können. Sie haben jedoch zwei Möglichkeiten.',
'two_factor_lost_fix_self' => 'Wenn Sie Ihre eigene Instanz von Firefly III betreiben, lesen Sie <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">diesen Eintrag in den FAQ</a> für Anweisungen.',
'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_owner' => 'Ansonsten, mailen Sie dem Inhaber der Website, <a href="mailto::site_owner">:site_owner</a> und bitten Sie ihn, Ihre Zwei-Faktor Authentifizierung zurückzusetzen.',
'mfa_backup_code' => 'Sie haben sich mit einem Sicherungsschlüssel bei Firefly III angemeldet. Dieser kann nun nicht mehr verwendet werden, also streichen Sie ihn aus Ihrer Liste.',
'pref_two_factor_new_backup_codes' => 'Neue Sicherungsschlüssel abrufen',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Das Quellkonto „@source_name” akzeptiert nur Buchungen in @source_currency. Das Zielkonto "@dest_name" akzeptiert nur Buchungen in @dest_currency. Sie müssen den Betrag in beiden Währungen korrekt angeben.',
'transaction_data' => 'Transaktionsdaten',
'invalid_server_configuration' => 'Ungültige Serverkonfiguration',
'invalid_locale_settings' => 'Firefly III kann keine Geldbeträge formatieren, da Ihrem Server die erforderlichen Pakete fehlen. gibt eine <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">Anleitung</a> wie dies behoben werden kann.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Schnellauswahl',
'sign_in_to_start' => 'Melden Sie sich an, um Ihre Sitzung zu starten',
'sign_in' => 'Anmelden',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Nicht',
'cannot_fire_inactive_rules' => 'Inaktive Regeln können nicht ausgeführt werden.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Regeln',
'rule_name' => 'Name der Regel',
'rule_triggers' => 'Regel wird ausgelöst wenn',
@ -1965,7 +1967,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',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Συλλέξτε περισσότερες πληροφορίες στον κατάλογο <code>storage/logs</code> όπου θα βρείτε αρχεία καταγραφής. Εάν χρησιμοποιείτε το Docker, χρησιμοποιήστε το <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Μπορείτε να διαβάσετε περισσότερα σχετικά με τη συλλογή πληροφοριών σφάλματος <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">στο FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Λάβετε βοήθεια στο GitHub',
'github_instructions' => 'Είστε ευπρόσδεκτοι να ανοίξετε ένα νέο θέμα <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">στο GitHub</a></strong>.',
'use_search' => 'Χρησιμοποιήστε την αναζήτηση!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Ξέχασα τον παράγοντα ταυτοποίησης.',
'two_factor_lost_header' => 'Χάσατε την ταυτότητα δύο παραγόντων;',
'two_factor_lost_intro' => 'Εάν χάσατε τους εφεδρικούς κωδικούς σας επίσης, είστε άτυχοι. Αυτό δε μπορεί να διορθωθεί απευθείας. Έχετε δύο επιλογές.',
'two_factor_lost_fix_self' => 'Εάν εκτελείτε μια δική σας εγκατάσταση του Firefly III, διαβάστε <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">αυτήν την καταχώρηση στις Συχνές Ερωτήσεις</a> για να δείτε τις οδηγίες.',
'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_owner' => 'Ειδάλλως, στείλτε email στον ιδιοκτήτη του ιστότοπου, <a href="mailto::site_owner">:site_owner</a> και ζητήστε να σας επαναφέρει την ταυτότητα δύο παραγόντων.',
'mfa_backup_code' => 'Έχετε χρησιμοποιήσει ένα εφεδρικό κωδικό για να συνδεθείτε στο Firefly III. Δε μπορεί να χρησιμοποιηθεί ξανά, οπότε διαγράψτε το από τη λίστα σας.',
'pref_two_factor_new_backup_codes' => 'Λάβετε νέους εφεδρικούς κωδικούς',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Ο κεφαλαιακός λογαριασμός προέλευσης "@source_name" δέχεται συναλλαγές μόνο σε @source_currency. Ο κεφαλαιακός λογαριασμός προορισμού "@dest_name" δέχεται συναλλαγές μόνο σε @dest_currency. Πρέπει να παρέχετε το σωστό μεταφερόμενο ποσό και στα δύο νομίσματα.',
'transaction_data' => 'Δεδομένα συναλλαγής',
'invalid_server_configuration' => 'Μη έγκυρη παραμετροποίηση εξυπηρετητή',
'invalid_locale_settings' => 'Το Firefly III δεν είναι σε θέση να διαμορφώσει χρηματικά ποσά επειδή ο διακομιστής σας λείπει τα απαιτούμενα πακέτα. Υπάρχουν <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">οδηγίες πώς να το κάνετε αυτό</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Εναλλαγή',
'sign_in_to_start' => 'Συνδεθείτε για να ξεκινήσετε τη συνεδρία σας',
'sign_in' => 'Είσοδος',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Not',
'cannot_fire_inactive_rules' => 'Δεν μπορείτε να εκτελέσετε ανενεργούς κανόνες.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Κανόνες',
'rule_name' => 'Όνομα κανόνα',
'rule_triggers' => 'Ο κανόνας ενεργοποιείται όταν',
@ -1965,7 +1967,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' => 'Επιλέξτε συναλλαγές',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Please collect more information in the <code>storage/logs</code> directory where you will find log files. If you\'re running Docker, use <code>docker logs -f [container]</code>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">the FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Get help on GitHub',
'github_instructions' => 'You\'re more than welcome to open a new issue <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">on GitHub</a></strong>.',
'use_search' => 'Use the search!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'I forgot my two-factor thing.',
'two_factor_lost_header' => 'Lost your two factor authentication?',
'two_factor_lost_intro' => 'If you lost your backup codes as well, you have bad luck. This is not something you can fix from the web interface. You have two choices.',
'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">this entry in the FAQ</a> for instructions.',
'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_owner' => 'Otherwise, email the site owner, <a href="mailto::site_owner">:site_owner</a> and ask them to reset your two factor authentication.',
'mfa_backup_code' => 'You have used a backup code to login to Firefly III. It can\'t be used again, so cross it from your list.',
'pref_two_factor_new_backup_codes' => 'Get new backup codes',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Source asset account "@source_name" only accepts transactions in @source_currency. Destination asset account "@dest_name" only accepts transactions in @dest_currency. You must provide the transferred amount correctly in both currencies.',
'transaction_data' => 'Transaction data',
'invalid_server_configuration' => 'Invalid server configuration',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instructions how to do this</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Quickswitch',
'sign_in_to_start' => 'Sign in to start your session',
'sign_in' => 'Sign in',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Not',
'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Rules',
'rule_name' => 'Name of rule',
'rule_triggers' => 'Rule triggers when',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Por favor, recopile más información en el directorio <code>storage/logs</code> donde encontrará los archivos de registro. Si está ejecutando Docker, use <code>registros docker -f [container]</code>.',
'collect_info_more' => 'Puede leer más sobre la recolección de información de errores en <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">las Preguntas Frecuentes</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Obtener ayuda en GitHub',
'github_instructions' => 'Es bienvenido a abrir un nuevo issue <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">en GitHub</a></strong>.',
'use_search' => '¡Use la búsqueda!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Olvidé mi cosa de dos factores.',
'two_factor_lost_header' => '¿Perdiste tu autenticación de doble factor?',
'two_factor_lost_intro' => 'Si también perdiste tus códigos de copia de seguridad, tienes mala suerte. Esto no es algo que puedas arreglar desde la interfaz web. Tienes dos opciones.',
'two_factor_lost_fix_self' => 'Si ejecutas tu propia instancia de Firefly III, lee <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">esta entrada en el FAQ</a> para obtener instrucciones.',
'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_owner' => 'De lo contrario, comunícate por mail con el dueño del sitio, <a href="mailto::site_owner">:site_owner</a> y pídele que restablezca tu autenticación de dos pasos.',
'mfa_backup_code' => 'Has usado un código de respaldo para iniciar sesión en Firefly III. No se puede usar de nuevo, así que táchalo de tu lista.',
'pref_two_factor_new_backup_codes' => 'Obtener nuevos códigos de copia de seguridad',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'La cuenta de activos "@source_name" solo acepta transacciones en "@source_currency". cuenta de activos de destino "@dest_name" solo acepta transacciones en @dest_currency. Debes indicar la cantidad correcta transferida en ambas monedas.',
'transaction_data' => 'Datos de transacción',
'invalid_server_configuration' => 'Configuración de servidor no válida',
'invalid_locale_settings' => 'Firefly III no puede formatear cantidades monetarias porque a su servidor le faltan los paquetes requeridos. Hay <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instrucciones de cómo hacer esto</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Cambio rápido',
'sign_in_to_start' => 'Iniciar sesión para comenzar',
'sign_in' => 'Iniciar sesión',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'No',
'cannot_fire_inactive_rules' => 'No puedes ejecutar reglas inactivas.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Reglas',
'rule_name' => 'Nombre de la regla',
'rule_triggers' => 'La regla se activa cuando',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Kerää lisätietoja <code>storage/logs</code> hakemistosta, josta löydät lokitiedostoja. Jos käytät Dockeria, käytä komentoa <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Voit lukea lisää virhetietojen keräämisestä <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">FAQ</a>:sta.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Hanki apua GitHubista',
'github_instructions' => 'Olet enemmän kuin tervetullut avaamaan uuden tiketin <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHubissa</a></strong>.',
'use_search' => 'Käytä hakua!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Unohdin kaksivaiheisen tunnistusjuttuni.',
'two_factor_lost_header' => 'Unohdit kaksivaiheisen tunnistuksen koodisi?',
'two_factor_lost_intro' => 'Jos olet hävittänyt myös varakoodisi, onnesi on kääntynyt. Tätä et ikävä kyllä pysty korjaamaan selaimella. Sinulla on nyt kaksi vaihtoehtoa.',
'two_factor_lost_fix_self' => 'Jos ajat omaa Firefly III-instanssiasi, lue <a href = "https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup- koodit ">tämä merkintä UKK:ssa</a>.',
'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_owner' => 'Muussa tapauksessa, ota yhteyttä ylläpitäjään, <a href="mailto::site_owner">:site_owner</a> ja pyydä että kaksivaiheinen tunnistautumisesi nollataan.',
'mfa_backup_code' => 'Olet käyttänyt varakoodin kirjautuessasi Firefly III:een. Varakoodi on kertakäyttöinen, joten muista merkitä se käytetyksi.',
'pref_two_factor_new_backup_codes' => 'Luo uudet varmistuskoodit',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Lähdetili "@source_name" hyväksyy tapahtumia ainoastaan valuutassa @source_currency. Kohdetili "@dest_name" hyväksyy tapahtumia ainoastaan valuutassa @dest_currency. Siirretty summa täytyy syöttää oikein - molemmilla valuutoilla.',
'transaction_data' => 'Tapahtuman tiedot',
'invalid_server_configuration' => 'Serverin asetukset eivät ole kunnossa',
'invalid_locale_settings' => 'Firefly III ei pysty näyttämään rahasummia oikein koska tarvittavat tiedostot puuttuvat serveriltä. <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">Täältä</a> löydät ohjeet asian korjaamiseksi.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Pikakytkin',
'sign_in_to_start' => 'Aloita istunto kirjautumalla sisään',
'sign_in' => 'Kirjaudu sisään',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Not',
'cannot_fire_inactive_rules' => 'Et voi suorittaa aktivoimattomia sääntöjä.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Säännöt',
'rule_name' => 'Säännön nimi',
'rule_triggers' => 'Sääntö toteutuu kun',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Vous pouvez obtenir plus d\'informations dans le répertoire <code>stockage/logs</code> où vous trouverez des fichiers journaux. Si vous utilisez Docker, utilisez <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Vous pouvez en savoir plus sur la récupération des informations d\'erreur dans <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">la FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Obtenir de l\'aide sur GitHub',
'github_instructions' => 'Vous êtes encouragé à ouvrir un nouveau ticket <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">sur GitHub</a> (en anglais)</strong>.',
'use_search' => 'Utilisez la recherche !',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Jai oublié mon code d\'identification à deux facteurs.',
'two_factor_lost_header' => 'Perdu votre authentification à deux facteurs ?',
'two_factor_lost_intro' => 'Si vous avez aussi perdu vos codes de récupération, vous n\'avez pas de chance. Ce n\'est pas quelque chose que vous pouvez corriger depuis l\'interface web. Vous avez deux choix.',
'two_factor_lost_fix_self' => 'Si vous exécutez votre propre instance de Firefly III, lisez <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">cette entrée dans la FAQ</a> pour obtenir des instructions.',
'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_owner' => 'Dans le cas contraire, contactez le propriétaire du site par courriel <a href="mailto::site_owner">:site_owner</a> et demandez-lui de réinitialiser votre authentification à deux facteurs.',
'mfa_backup_code' => 'Vous avez utilisé un code de récupération pour vous connecter à Firefly III. Il ne peut être réutilisé, donc rayez-le de votre liste.',
'pref_two_factor_new_backup_codes' => 'Obtenir de nouveaux codes de récupération',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Compte dactif source "@source_name" naccepte que les opérations en @source_currency. Compte dactif "@dest_name" de destination naccepte que les opérations en @dest_currency. Vous devez fournir le montant transféré correctement dans les deux devises.',
'transaction_data' => 'Données d\'opération',
'invalid_server_configuration' => 'Configuration de serveur invalide',
'invalid_locale_settings' => 'Firefly III ne parvient pas à formater les montants monétaires car il manque des paquets logiciels sur votre serveur. Voici <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">des instructions sur comment procéder</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Changement rapide',
'sign_in_to_start' => 'Identifiez-vous pour commencer votre session',
'sign_in' => 'S\'identifier',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Pas',
'cannot_fire_inactive_rules' => 'Vous ne pouvez pas exécuter des règles inactives.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Règles',
'rule_name' => 'Nom de la règle',
'rule_triggers' => 'La règle se déclenchera lorsque',
@ -1965,7 +1967,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',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'További információk gyűjthetők a <code>storage/logs</code> könyvtárban lévő napló fájlokból. Vagy ha Dockert használ, akkor a <code>docker logs -f [container]</code> paranccsal.',
'collect_info_more' => 'Hiba információk gyűjtéséről tovább olvashatsz az <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">FAQ</a>-ban.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Segítség kérése GitHub-on',
'github_instructions' => 'Örömmel fogadjuk ha <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>-on hibajegyet nyitsz.',
'use_search' => 'Használd a keresőt!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Elfelejtett kétlépcsős azonosítás.',
'two_factor_lost_header' => 'Elvesztett kétlépcsős hitelesítés?',
'two_factor_lost_intro' => 'Ha a biztonsági kódok is elvesztek, akkor bajban vagy. Ezt nem lehet a webes felületről megjavítani, így két lehetőséged van.',
'two_factor_lost_fix_self' => 'Ha a Firefly III saját példányként fut javasolt elolvasni <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">ezt a FAQ bejegyzést</a> további instrukciókért.',
'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_owner' => 'Ellenkező esetben emailt kell küldeni a webhely tulajdonosának a <a href="mailto::site_owner">:site_owner</a> címre, és meg kell kérni, hogy állítsa vissza a kétfaktoros hitelesítést.',
'mfa_backup_code' => 'A biztonsági kód fel lett használva a Firefly III-hoz. Ezt többé nem használhatod fel, így a listáról ez kihúzható.',
'pref_two_factor_new_backup_codes' => 'Új biztonsági kódok igénylése',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'A "@source_name" forrás vagyonszámla csak a @source_currency tranzakciókat fogadja el. A "@dest_name" cél vagyonszámla csak a @dest_currency tranzakciókat fogadja el. Mindkét pénznemben helyesen kell megadnia az átutalt összeget.',
'transaction_data' => 'Tranzakciós adatok',
'invalid_server_configuration' => 'Érvénytelen kiszolgálóbeállítás',
'invalid_locale_settings' => 'A Firefly III nem tudja megfelelően formázva megjeleníteni a pénzösszegeket, mert a kiszolgálóról hiányoznak az ehhez szükséges csomagok. A következő linke találhatók információk a <a href="https://github.com/firefly-iii/help/wiki/Missing-locale-packages"> megoldáshoz</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Gyorsváltó',
'sign_in_to_start' => 'A munkamenet megkezdéséhez be kell jelentkezni',
'sign_in' => 'Bejelentkezés',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Not',
'cannot_fire_inactive_rules' => 'Inaktív szabályokat nem lehet futtatni.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Szabályok',
'rule_name' => 'Szabály neve',
'rule_triggers' => 'A szabály életbe lép amikor',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Silakan ambil informasi lebih lanjut di direktori<code>storage/logs</code> di mana Anda dapat menemukan file log. Jika Anda menggunakan Docker, gunakan <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Anda dapat membaca lebih lanjut dalam mengumpulkan informasi kesalahan di <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">Pertanyaan yang sering diajukan</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Dapatkan bantuan di GitHub',
'github_instructions' => 'Anda sangat diperbolehkan untuk membuka isu baru <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">di GitHub</a></strong>.',
'use_search' => 'Gunakan pencarian!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Saya lupa dua faktor saya.',
'two_factor_lost_header' => 'Kehilangan Pengecekan keamanan dua faktor Anda?',
'two_factor_lost_intro' => 'Jika Anda kehilangan kode cadangan Anda pula, keberuntungan Anda buruk sudah. Ini bukanlah sesuatu yang Anda dapat perbaiki dari antarmuka web. Anda mempunyai dua pilihan.',
'two_factor_lost_fix_self' => 'Jika Anda menjalankan contoh Firefly III Anda sendiri, baca <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">entri ini dalam FAQ</a> untuk intruksi.',
'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_owner' => 'Jika tidak, kirimkan email ke pemilik situs, <a href="mailto::site_owner">:site_owner</a> dan mintalah mereka untuk menyetel ulang Pengecekan keamanan dua faktor Anda.',
'mfa_backup_code' => 'Anda telah menggunakan sebuah kode cadangan untuk masuk ke Firefly III. Kode ini tidak dapat digunakan lagi, jadi coret itu dari daftar Anda.',
'pref_two_factor_new_backup_codes' => 'Hasilkan kode cadangan baru',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Akun aset sumber "@source_name" hanya menerima transaksi di @source_currency. Akun aset tujuan "@dest_name" hanya menerima transaksi di @dest_currency. Anda harus memberikan jumlah yang ditransfer dengan benar pada kedua mata uang tersebut.',
'transaction_data' => 'Data transaksi',
'invalid_server_configuration' => 'Konfigurasi server tidak valid',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instructions how to do this</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Quickswitch',
'sign_in_to_start' => 'Masuk untuk memulai sesi',
'sign_in' => 'Masuk',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Not',
'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Aturan',
'rule_name' => 'Nama aturan',
'rule_triggers' => 'Aturan pemicu kapan',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Raccogli ulteriori informazioni nella cartella <code>storage/log</code> dove troverai i file di log. Se stai eseguendo Docker, usa <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Puoi leggere maggiori informazioni sulla raccolta delle informazioni di errore in <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Ottieni aiuto su GitHub',
'github_instructions' => 'Sei più che benvenuto ad aprire una nuova issue <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">su GitHub</a></strong>.',
'use_search' => 'Usa la ricerca!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Ho dimenticato la mia chiave a due fattori.',
'two_factor_lost_header' => 'Hai perso l\'autenticazione a due fattori?',
'two_factor_lost_intro' => 'Se hai perso anche i codici di recupero, sei sfortunato. Questo non è qualcosa che puoi risolvere tramite l\'interfaccia web. Hai due scelte.',
'two_factor_lost_fix_self' => 'Se esegui la tua istanza di Firefly III, leggi <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">questa voce nelle FAQ</a> per le istruzioni.',
'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_owner' => 'In caso contrario, invia un mail al proprietario del sito, <a href="mailto::site_owner">:site_owner</a>, e chiedi loro di resettare l\'autenticazione a due fattori.',
'mfa_backup_code' => 'Hai usato un codice di recupero per accedere a Firefly III. Questo codice non potrà essere utilizzato di nuovo, quindi cancellalo dalla lista.',
'pref_two_factor_new_backup_codes' => 'Ottieni nuovi codici di recupero',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Il conto attività di origine "@source_name" accetta solo transazioni in @source_currency. Il conto attività di destinazione "@dest_name" accetta solo transazioni in @dest_currency. È necessario fornire l\'importo trasferito correttamente in entrambe le valute.',
'transaction_data' => 'Informazioni transazione',
'invalid_server_configuration' => 'Configurazione del server non corretta',
'invalid_locale_settings' => 'Firefly III non è in grado di formattare gli importi monetari perché al server mancano i pacchetti richiesti. Ci sono <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">istruzioni su come eseguire questa operazione</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Interruttore veloce',
'sign_in_to_start' => 'Accedi per iniziare la sessione',
'sign_in' => 'Accedi',
@ -467,7 +467,7 @@ return [
'search_modifier_transaction_type' => 'Il tipo di transazione è ":value"',
'search_modifier_not_transaction_type' => 'Il tipo della transizione non è ":value"',
'search_modifier_tag_is' => 'L\'etichetta è ":value"',
'search_modifier_tag_contains' => 'Tag contains ":value"',
'search_modifier_tag_contains' => 'La bolletta contiene ":value"',
'search_modifier_not_tag_contains' => 'Tag does not contain ":value"',
'search_modifier_tag_ends' => 'Tag ends with ":value"',
'search_modifier_tag_starts' => 'Tag starts with ":value"',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Non',
'cannot_fire_inactive_rules' => 'Non puoi eseguire regole inattive.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Regole',
'rule_name' => 'Nome regola',
'rule_triggers' => 'La regola si innesca quando',
@ -886,7 +888,7 @@ return [
'rule_trigger_date_after' => 'La data della transazione è successiva al ":trigger_value"',
'rule_trigger_created_at_on_choice' => 'La transazione è avvenuta il..',
'rule_trigger_created_at_on' => 'La transazione è avvenuta il ":trigger_value"',
'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..',
'rule_trigger_updated_at_on_choice' => 'La transazione è stata modificata l\'ultima volta il..',
'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"',
'rule_trigger_budget_is_choice' => 'Il budget è...',
'rule_trigger_budget_is' => 'Il budget è ":trigger_value"',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'ログファイルがある <code>storage/logs</code> ディレクトリにて、より詳細な情報を集めてください。Docker を使っている場合は <code>docker logs -f [container]</code> を使用してください。',
'collect_info_more' => 'エラー情報の収集については、 <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">FAQ</a> をご覧ください。',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'GitHubでヘルプを見る',
'github_instructions' => '<strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong> にて新しい issue を作ることは大歓迎です。',
'use_search' => '検索してください!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => '2要素認証端末を忘れてしまいました。',
'two_factor_lost_header' => '2要素認証を紛失しましたか',
'two_factor_lost_intro' => 'バックアップコードも紛失してしまった場合、Webから修正する方法はありません。つから選ぶことができます。',
'two_factor_lost_fix_self' => 'Firefly IIIインスタンスを自分で運営する場合、説明書として<a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">FAQ内のこの項目</a>をお読みください。',
'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_owner' => 'または、サイト管理者 <a href="mailto::site_owner">:site_owner</a> に連絡して2要素認証をリセットしてもらうよう頼んでください。',
'mfa_backup_code' => 'あなたはバックアップコードを利用してログインしました。もし再び使用することが出来ないなら、リストから削除してください。',
'pref_two_factor_new_backup_codes' => '新しいバックアップコードを取得',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => '引き出し資産口座「@source_name」は @source_currency の取引のみ受け付けます。 宛先資産口座「@dest_name」は @dest_currency でのみ取引を受け付けます。両方の通貨で正しく送金額を入力する必要があります。',
'transaction_data' => '取引データ',
'invalid_server_configuration' => '無効なサーバー構成',
'invalid_locale_settings' => 'Firefly IIIに必要なパッケージがサーバに不足しているため、金額を整形できません。 解決するための<a href="https://github.com/firefly-iii/help/wiki/Missing-locale-packages">説明はここ</a>にあります。',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'クイックスイッチ',
'sign_in_to_start' => 'サインインしてセッションを開始',
'sign_in' => 'サインイン',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => '否定',
'cannot_fire_inactive_rules' => '無効なルールは実行できません。',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'ルール',
'rule_name' => 'ルールの名前',
'rule_triggers' => 'ルールがいつ発動するか',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => '<code>storage/logs</code> 디렉토리의 로그 파일에서 추가정보를 수집하세요. 도커를 실행중이라면 <code>docker logs -f [container]</code>를 사용하세요.',
'collect_info_more' => '<a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">FAQ</a>에서 오류 정보 수집에 대한 더 자세한 정보를 읽을 수 있습니다.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'GitHub에서 도움 얻기',
'github_instructions' => '<strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub에서</a></strong> 새로운 이슈를 여는 것을 환영합니다.',
'use_search' => '검색을 이용하세요!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => '2단계 인증을 잊었습니다.',
'two_factor_lost_header' => '2단계 인증을 분실하셨나요?',
'two_factor_lost_intro' => '백업 코드도 분실하셨다면 운이 나쁘신 것입니다. 이 문제는 웹 인터페이스에서 해결할 수 있는 문제가 아닙니다. 두 가지 선택지가 있습니다.',
'two_factor_lost_fix_self' => 'Firefly III 인스턴스를 직접 실행하는 경우 <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">자주 묻는 질문(FAQ)의 이 항목</a>을 읽고 지침을 확인하세요.',
'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_owner' => '그렇지 않은 경우 사이트 소유자 <a href="mailto::site_owner">:site_owner</a>에게 이메일을 보내 2단계 인증을 재설정해 달라고 요청하세요.',
'mfa_backup_code' => '백업 코드를 사용하여 Firefly III에 로그인했습니다. 코드는 다시 사용할 수 없으므로 목록에서 삭제하세요.',
'pref_two_factor_new_backup_codes' => '새 백업 코드 얻기',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => '소스 자산 계정 "@source_name"은 @source_currency 의 거래만 허용합니다. 대상 자산 계정 "@dest_name"은 @dest_currency 의 거래만 허용합니다. 두 통화로 이체 금액을 정확하게 제공해야 합니다.',
'transaction_data' => '거래 데이터',
'invalid_server_configuration' => '유효하지 않은 서버 설정',
'invalid_locale_settings' => '서버에 필요한 패키지가 없기 때문에 Firefly III에서 금액을 형식화할 수 없습니다. <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">이 작업을 수행하는 방법에 대한 지침</a>이 있습니다.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => '퀵스위치',
'sign_in_to_start' => '세션을 시작하려면 로그인하세요.',
'sign_in' => '로그인',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => '제외',
'cannot_fire_inactive_rules' => '비활성 규칙을 실행할 수 없습니다.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => '규칙',
'rule_name' => '규칙 이름',
'rule_triggers' => '규칙이 트리거되는 경우',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Samle inn mer informasjon i <code>lagring/logger</code> mappen hvor du finner loggfiler. Hvis du kjører Docker, bruk <code>docker logger -f [container]</code>.',
'collect_info_more' => 'Du kan lese mer om innsamling av feilinformasjon i <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Få hjelp på GitHub',
'github_instructions' => 'Du er mer enn velkommen til å åpne et nytt problem <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">på GitHub</a></strong>.',
'use_search' => 'Bruk søket!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Jeg har glemt/mistet min tofaktor-ting.',
'two_factor_lost_header' => 'Mistet tofaktorautentisering?',
'two_factor_lost_intro' => 'Hvis du også har mistet sikkerhetskodene din, har du dårlig hell. Noe du ikke kan fikse fra webgrensesnittet. Du har to valg.',
'two_factor_lost_fix_self' => 'Hvis du kjører din egen instans av Firefly III, les <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">dette innlegget i FAQ</a> for instruksjoner.',
'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_owner' => 'Ellers sender du e-postadressen eieren, <a href="mailto::site_owner">:site_owner</a> og ber vedkommende om å tilbakestille tofaktorautentiseringen din.',
'mfa_backup_code' => 'Du har brukt en sikkerhetskode for å logge inn i Firefly III. Den kan ikke brukes igjen, så kryss den fra listen din.',
'pref_two_factor_new_backup_codes' => 'Få nye sikkerhetskoder',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Kildekonto "@source_name" godtar kun transaksjoner i @source_currency. Destinasjonskonto "@dest_name" aksepterer bare transaksjoner i @dest_currency. Du må angi overført beløp riktig i begge valutaene.',
'transaction_data' => 'Transaksjonsdata',
'invalid_server_configuration' => 'Ugyldig serverkonfigurasjon',
'invalid_locale_settings' => 'Firefly III kan ikke formatere pengebeløp fordi serveren din mangler de nødvendige pakkene. Se følgende <a href="https://github.com/firefly-iii/help/wiki/Missing-locale-packages">instruksjoner for hvordan du setter opp dette</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Hurtigbryter',
'sign_in_to_start' => 'Logg inn for å starte økten',
'sign_in' => 'Logg inn',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Ikke',
'cannot_fire_inactive_rules' => 'Du kan ikke kjøre inaktive regler.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Regler',
'rule_name' => 'Navn på regel',
'rule_triggers' => 'Regel utløses når',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Verzamel meer informatie in de <code>storage/logs</code>-directory waar je de logbestanden kan vinden. Als Docker gebruikt, gebruik dan <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Je kan meer lezen over het verzamelen van foutinformatie in <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">de FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Check voor hulp op GitHub',
'github_instructions' => 'Je bent meer dan welkom om een nieuw issue te openen <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">op GitHub</a></strong>.',
'use_search' => 'Gebruik de search!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Ik kan geen codes meer genereren.',
'two_factor_lost_header' => 'Kan je geen codes meer genereren?',
'two_factor_lost_intro' => 'Als je ook je backupcodes kwijt bent heb je pech gehad. Dit kan je niet via de web-interface fixen. Je kan kiezen.',
'two_factor_lost_fix_self' => 'Als je je eigen installatie van Firefly III draait lees dan <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">dit item in de FAQ</a> voor instructies.',
'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_owner' => 'Zo niet, stuur dan een e-mail naar <a href="mailto::site_owner">:site_owner</a> en vraag of ze je authenticatie in twee stappen willen resetten.',
'mfa_backup_code' => 'Je hebt een backupcode gebruikt om in te loggen op Firefly III. Deze kan je niet meer gebruiken dus streep hem weg.',
'pref_two_factor_new_backup_codes' => 'Nieuwe backupcodes genereren',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Bronbetaalrekening "@source_name" accepteert alleen overschrijvingen in @source_currency. Doelbetaalrekening "@dest_name" accepteert alleen overschrijvingen in @dest_currency. Je moet het juiste bedrag in beide valuta opgeven.',
'transaction_data' => 'Transactiegegevens',
'invalid_server_configuration' => 'Ongeldige serverconfiguratie',
'invalid_locale_settings' => 'Firefly III kan geldbedragen niet goed weergeven omdat je server de vereiste software mist. Er zijn <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instructies hoe dit te doen</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Quickswitch',
'sign_in_to_start' => 'Login om te beginnen',
'sign_in' => 'Inloggen',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Niet',
'cannot_fire_inactive_rules' => 'Inactieve regels doen het niet.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Regels',
'rule_name' => 'Regelnaam',
'rule_triggers' => 'Regel reageert op',
@ -1259,7 +1261,7 @@ return [
'rule_action_set_notes_choice' => 'Stel notities in op ..',
'rule_action_link_to_bill_choice' => 'Link naar een contract ..',
'rule_action_link_to_bill' => 'Link naar contract ":action_value"',
'rule_action_switch_accounts_choice' => 'Wissel bron- en doelrekening (alleen overboekingen!)',
'rule_action_switch_accounts_choice' => 'Wissel bron- en doelrekening (alleen overschrijvingen!)',
'rule_action_switch_accounts' => 'Wissel bron- en doelrekening',
'rule_action_set_notes' => 'Verander notitie in ":action_value"',
'rule_action_convert_deposit_choice' => 'Verander de transactie in inkomsten',
@ -1599,11 +1601,11 @@ return [
'convert_please_set_expense_destination' => 'Kies de crediteur waar het geld heen zal gaan.',
'convert_please_set_asset_source' => 'Kies de betaalrekening waar het geld vandaan zal komen.',
'convert_expl_w_d' => 'Als je de transactie converteert van een uitgave naar inkomsten, wordt het geld gestort in de weergegeven doelrekening, in plaats van dat het er uit gehaald wordt. Kies de nieuwe bronrekening om de conversie af te maken.|Als je de transactie converteert van een uitgave naar inkomsten, wordt het geld gestort in de weergegeven doelrekeningen, in plaats van dat het er uit gehaald wordt.',
'convert_expl_w_t' => 'Als je een uitgave in een overboeking converteert, wordt het geld overgemaakt van de bronrekening naar een andere betaalrekening of passiva in plaats van dat je het uitgeeft.|Als je een uitgave in een overboeking converteert, wordt het geld overgemaakt van de bronrekeningen naar een andere betaalrekening of passiva in plaats van dat je het uitgeeft.',
'convert_expl_w_t' => 'Als je een uitgave in een overschrijving converteert, wordt het geld overgemaakt van de bronrekening naar een andere betaalrekening of passiva in plaats van dat je het uitgeeft.|Als je een uitgave in een overschrijving converteert, wordt het geld overgemaakt van de bronrekeningen naar een andere betaalrekening of passiva in plaats van dat je het uitgeeft.',
'convert_expl_d_w' => 'Als je inkomsten converteert naar een uitgave wordt het geld uitgegeven vanaf de aangegeven bronrekening in plaats van dat het daar wordt gestort.|Als je inkomsten converteert naar een uitgave wordt het geld uitgegeven vanaf de aangegeven bronrekeningen in plaats van dat het daar wordt gestort.',
'convert_expl_d_t' => 'Als je inkomsten converteert naar een overboeking wordt het geld gestort op de hier genoemde doelrekening vanaf een van je betaalrekeningen of passiva.|Als je inkomsten converteert naar een overboeking wordt het geld gestort op de hier genoemde doelrekeningen vanaf een van je betaalrekeningen of passiva.',
'convert_expl_t_w' => 'Als je converteert van een overboeking naar een afschrijving wordt het geld uitgegeven bij de hier genoemde doelrekening in plaats van dat het wordt afgeschreven van de originele bronrekening.|Als je converteert van een overboeking naar een afschrijving wordt het geld uitgegeven bij de hier genoemde doelrekeningen in plaats van dat het wordt afgeschreven van de originele bronrekeningen.',
'convert_expl_t_d' => 'Als je een overboeking converteert naar inkomsten wordt het geld gestort op de doelrekening die je hier ziet, in plaats van dat het als inkomsten binnenkomt. Kies de nieuwe bronrekening om de conversie af te maken.|Als je een overboeking converteert naar inkomsten wordt het geld gestort op de doelrekeningen die je hier ziet, in plaats van dat het als inkomsten binnenkomt.',
'convert_expl_d_t' => 'Wanneer je inkomsten in een overschrijving converteert, wordt het geld overgemaakt van de bronrekening naar een andere betaalrekening of passiva in plaats van dat je het uitgeeft.|Wanneer je inkomsten in een overschrijving converteert, wordt het geld overgemaakt van de bronrekeningen naar een andere betaalrekening of passiva in plaats van dat je het uitgeeft.',
'convert_expl_t_w' => 'Als je converteert van een overschrijving naar een afschrijving wordt het geld uitgegeven bij de hier genoemde doelrekening in plaats van dat het wordt afgeschreven van de originele bronrekening.|Als je converteert van een overschrijving naar een afschrijving wordt het geld uitgegeven bij de hier genoemde doelrekeningen in plaats van dat het wordt afgeschreven van de originele bronrekeningen.',
'convert_expl_t_d' => 'Als je een overschrijving converteert naar inkomsten wordt het geld gestort op de doelrekening die je hier ziet, in plaats van dat het als inkomsten binnenkomt. Kies de nieuwe bronrekening om de conversie af te maken.|Als je een overschrijving converteert naar inkomsten wordt het geld gestort op de doelrekeningen die je hier ziet, in plaats van dat het als inkomsten binnenkomt.',
'convert_select_sources' => 'Kies de nieuwe bronrekening om de conversie af te maken.|Kies de nieuwe bronrekeningen om de conversie af te maken.',
'convert_select_destinations' => 'Kies de nieuwe doelrekening om de conversie af te maken.|Kies de nieuwe doelrekeningen om de conversie af te maken.',
'converted_to_Withdrawal' => 'De transactie is veranderd in een uitgave',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Samle inn meir informasjon i <code>storage/logs</code> mappa kor du finn loggfiler. Om du køyrer Docker, bruk <code>docker logger -f [container]</code>.',
'collect_info_more' => 'Du kan lesa meir om innsamling av feilinformasjon i <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Få hjelp på GitHub',
'github_instructions' => 'Du er meir enn velkomen til å åpne eit nytt problem <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">på GitHub</a></strong>.',
'use_search' => 'Bruk søket!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Jeg har glemt/mistet min tofaktor-ting.',
'two_factor_lost_header' => 'Mista tofaktorautentisering?',
'two_factor_lost_intro' => 'Om du òg har mistet sikkerhetskodane din, har du uflaks. Noko du ikkje kan fiksa frå webgrensesnittet. Du har to val.',
'two_factor_lost_fix_self' => 'Om du køyrer din eigen instans av Firefly III, les <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">dette innlegget i FAQ</a> for instruksjonar.',
'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_owner' => 'Ellers sender ein epost til eigaren av nettsida, <a href="mailto::site_owner">:site_owner</a> og spør vedkommande om å tilbakestille tofaktorautentiseringa din.',
'mfa_backup_code' => 'Du har brukt ein sikkerhetskode for å logge inn i Firefly III. Den kan ikkje brukes igjen, så kryss den frå lista din.',
'pref_two_factor_new_backup_codes' => 'Få nye sikkerhetskoder',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Kjeldekonto "@source_name" godtar kun transaksjonar i @source_currency. Destinasjonskonto "@dest_name" aksepterer berre transaksjonar i @dest_currency. Du må angi overført beløp rett i begge valutaene.',
'transaction_data' => 'Transaksjonsdata',
'invalid_server_configuration' => 'Ugyldig serverkonfigurasjon',
'invalid_locale_settings' => 'Firefly III kan ikkje formatere pengebeløp fordi serveren din manglar dei nødvendige pakkane. Sjå følgande <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instruksjonar for korleis du set opp dette</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Hurtigbryter',
'sign_in_to_start' => 'Logg inn for å starte økten',
'sign_in' => 'Logg inn',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Ikke',
'cannot_fire_inactive_rules' => 'Du kan ikkje køyra inaktive reglar.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Regler',
'rule_name' => 'Namn på regel',
'rule_triggers' => 'Regel utløses når',
@ -1965,7 +1967,7 @@ return [
'deleted_transfer' => 'Sletta overføring ":description"',
'deleted_reconciliation' => 'Sletta avstemmingstransaksjon ":description"',
'stored_journal' => 'Opprettet ny transaksjon ":description"',
'stored_journal_js' => 'Successfully created new transaction "%{description}"',
'stored_journal_js' => 'Transaksjonen «%{description}» vart oppretta',
'stored_journal_no_descr' => 'Vellykket! Ny transaksjon er opprettet',
'updated_journal_no_descr' => 'Transaksjonen din vart oppdatert',
'select_transactions' => 'Vel transaksjonar',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Więcej informacji znajdziesz w katalogu <code>storage/logs</code>, w który zawiera pliki dziennika. Jeśli używasz Docker, użyj <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Więcej informacji o zbieraniu informacji o błędach możesz znaleźć w <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Uzyskaj pomoc na GitHub',
'github_instructions' => 'Możesz otworzyć nowy problem <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">na GitHub</a></strong>.',
'use_search' => 'Użyj wyszukiwania!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Zapomniałem mojego uwierzytelnienia dwuskładnikowego.',
'two_factor_lost_header' => 'Straciłeś uwierzytelnianie dwuskładnikowe?',
'two_factor_lost_intro' => 'Jeżeli także nie masz kodów, to niestety nie masz szczęścia. To nie jest coś, co możemy naprawić z poziomu przeglądarki. Masz dwie opcje.',
'two_factor_lost_fix_self' => 'Jeżeli masz własną instancję Firefly III, przeczytaj <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">ten wpis w FAQ</a> aby uzyskać instrukcje.',
'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_owner' => 'W przeciwnym razie, powiadom właściciela strony, <a href="mailto::site_owner">:site_owner</a> i poproś go o zresetowanie Twojego uwierzytelnienia dwuskładnikowego.',
'mfa_backup_code' => 'Użyłeś kodu zapasowego do zalogowania się do Firefly III. Nie możesz go użyć ponownie, więc wykreśl go z listy.',
'pref_two_factor_new_backup_codes' => 'Wygeneruj nowe kody zapasowe',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Konto źródłowe "@source_name" obsługuje tylko transakcje w walucie @source_currency. Konto docelowe "@dest_name" obsługuje tylko transakcje w walucie @dest_currency. Musisz podać przelewaną kwotę w obu walutach.',
'transaction_data' => 'Dane transakcji',
'invalid_server_configuration' => 'Nieprawidłowa konfiguracja serwera',
'invalid_locale_settings' => 'Firefly III nie może sformatować kwot, ponieważ brakuje wymaganych pakietów na Twoim serwerze. Sprawdź <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instrukcje jak je zainstalować</a> (po angielsku).',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Szybki przełącznik',
'sign_in_to_start' => 'Zaloguj się, aby rozpocząć sesję',
'sign_in' => 'Zaloguj',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Nie',
'cannot_fire_inactive_rules' => 'Nie możesz wykonać nieaktywnych reguł.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Reguły',
'rule_name' => 'Nazwa reguły',
'rule_triggers' => 'Reguły są wyzwalane gdy',
@ -1965,7 +1967,7 @@ return [
'deleted_transfer' => 'Pomyślnie usunięto transfer ":description"',
'deleted_reconciliation' => 'Pomyślnie usunięto transakcję uzgadniania ":description"',
'stored_journal' => 'Pomyślnie utworzono nową transakcję ":description"',
'stored_journal_js' => 'Successfully created new transaction "%{description}"',
'stored_journal_js' => 'Pomyślnie utworzono nową transakcję "%{description}"',
'stored_journal_no_descr' => 'Pomyślnie utworzono nową transakcję',
'updated_journal_no_descr' => 'Pomyślnie zaktualizowano Twoją transakcję',
'select_transactions' => 'Wybierz transakcje',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Por favor, colete mais informações no diretório <code>storage/logs</code>, onde você encontrará os arquivos de log. Se você estiver executando o Docker, use <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Você pode ler mais sobre a coleta de informações de erro em <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">Perguntas Frequentes</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Obtenha ajuda no GitHub',
'github_instructions' => 'Você é mais do que bem-vindo para abrir uma nova issue <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">no GitHub</a>.</strong>.',
'use_search' => 'Use a busca!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Esqueci minha autenticação em duas etapas.',
'two_factor_lost_header' => 'Perdeu sua autenticação em duas etapas?',
'two_factor_lost_intro' => 'Se você perdeu seus códigos de backup também, você tem azar. Isso não é algo que você pode corrigir a partir da interface da web. Você tem duas escolhas.',
'two_factor_lost_fix_self' => 'Caso você execute sua própria instância do Firefly III, leia <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">este item no FAQ</a> para instruções.',
'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_owner' => 'Caso contrário, entre em contato com o proprietário do site, <a href="mailto::site_owner">:site_owner</a>, e peça que redefina sua autenticação de duas etapas.',
'mfa_backup_code' => 'Você usou um código de backup para acessar o Firefly III. Não pode ser usado novamente, então cruze-o na sua lista.',
'pref_two_factor_new_backup_codes' => 'Obter novos códigos de backup',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'A conta ativa de origem "@source_name" aceita apenas transações em @source_currency. A conta ativa de destino "@dest_name" aceita apenas transações em @dest_currency. Você deve fornecer o valor transferido corretamente em ambas as moedas.',
'transaction_data' => 'Dados de transação',
'invalid_server_configuration' => 'Configuração do servidor inválida',
'invalid_locale_settings' => 'O Firefly III não é capaz de formatar quantidades monetárias porque está faltando os pacotes necessários no seu servidor. Existem <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instruções sobre como fazer isso</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Mudança rápida',
'sign_in_to_start' => 'Faça login para iniciar sua sessão',
'sign_in' => 'Entrar',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Não é',
'cannot_fire_inactive_rules' => 'Você não pode executar regras inativas.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Regras',
'rule_name' => 'Nome da regra',
'rule_triggers' => 'Regra dispara quando',
@ -1965,7 +1967,7 @@ return [
'deleted_transfer' => 'Transferência ":description" excluída com sucesso',
'deleted_reconciliation' => 'Transação de reconciliação ":description" excluída com sucesso',
'stored_journal' => 'Transação ":description" incluída com sucesso',
'stored_journal_js' => 'Successfully created new transaction "%{description}"',
'stored_journal_js' => 'Transação "%{description}" criada com sucesso',
'stored_journal_no_descr' => 'Transação criada com sucesso',
'updated_journal_no_descr' => 'Transação atualizada com sucesso',
'select_transactions' => 'Selecione as transações',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Por favor, recolha mais informação na pasta <code>storage/logs</code> que é onde encontra os ficheiros de log. Se estiver a utilizar Docker, utilize <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Pode ler mais sobre a recolha de informação de erros em <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">nas FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Obter ajuda no GitHub',
'github_instructions' => 'Esteja completamente à vontade em abrir uma nova questão <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">no GitHub</a></strong>.',
'use_search' => 'Use a pesquisa!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Esqueci-me da minha cena de 2 passos.',
'two_factor_lost_header' => 'Perdeu a sua autenticação de 2 passos?',
'two_factor_lost_intro' => 'Se também perdeu os códigos de backup, está com azar. Não é algo que se possa resolver pela interface web. Têm duas alternativas.',
'two_factor_lost_fix_self' => 'Se gere a sua própria instância do Firefly III, leia <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">esta linha no FAQ</a> para instruções.',
'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_owner' => 'Caso contrario, envie um email ao dono da plataforma, <a href="mailto::site_owner">:site_owner</a> e peça-lhe para reiniciar a sua autenticação de 2 passos.',
'mfa_backup_code' => 'Utilizou um código de backup para aceder ao Firefly III. Esse código não pode ser utilizado novamente, é melhor riscá-lo da sua lista.',
'pref_two_factor_new_backup_codes' => 'Obter novos códigos de backup',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'A conta de ativos de origem "@source_name" apenas aceita transações em @source_currency. A conta de ativos de destino "@dest_name" apenas aceita transações em @dest_currency. Tem de fornecer o valor transferido corretamente em ambas as moedas.',
'transaction_data' => 'Dados da transação',
'invalid_server_configuration' => 'Configuração de servidor inválida',
'invalid_locale_settings' => 'O Firefly III é incapaz de formatar quantidades monetárias porque o seu servidor tem em falta os pacotes necessários. Existem <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instruções para resolver isto</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Troca rápida',
'sign_in_to_start' => 'Registe-se para iniciar sessão',
'sign_in' => 'Iniciar sessão',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Não',
'cannot_fire_inactive_rules' => 'Não pode executar regras inativas.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Regras',
'rule_name' => 'Nome da regra',
'rule_triggers' => 'Regra dispara quando',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Vă rugăm să colectați mai multe informații în directorul <code>storage/logs</code> unde veți găsi fișiere jurnal. Dacă rulați Docker, folosiți <code>docker logs -f[container]</code>.',
'collect_info_more' => 'Poți citi mai multe despre colectarea informațiilor despre erori în <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Obțineți ajutor pe GitHub',
'github_instructions' => 'Dacă sunteți sigur că această pagină ar trebui să existe, vă rugăm să deschideți un tichet pe <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
'use_search' => 'Folosește căutarea!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Am uitat autentificarea cu doi factori.',
'two_factor_lost_header' => 'Ai uitat autentificarea cu doi factori?',
'two_factor_lost_intro' => 'Dacă ați pierdut și codurile de rezervă, aveți ghinion. Nu este un lucru pe care îl puteți remedia din interfața web. Aveți două opțiuni.',
'two_factor_lost_fix_self' => 'Dacă rulați propria dvs. instanță a Firefly III, citiți <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">această intrare în FAQ</a> pentru instrucțiuni.',
'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_owner' => 'În caz contrar, trimiteți prin e-mail proprietarului site-ului <a href="mailto::site_owner">: proprietarul site-ului </a> și solicitați-i să reseteze autentificarea cu doi factori.',
'mfa_backup_code' => 'You have used a backup code to login to Firefly III. It can\'t be used again, so cross it from your list.',
'pref_two_factor_new_backup_codes' => 'Obțineți noi coduri de rezervă',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Sursa contului de active "@source_name" acceptă numai tranzacțiile în @source_currency. Destinația contului de active "@dest_name" acceptă numai tranzacțiile în @dest_currency. Trebuie să furnizați corect suma transferată în ambele valute.',
'transaction_data' => 'Datele tranzacției',
'invalid_server_configuration' => 'Configurația serverului este nevalidă',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instructions how to do this</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Schimbare rapida',
'sign_in_to_start' => 'Logați-vă pentru a începe sesiunea',
'sign_in' => 'Logare',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Not',
'cannot_fire_inactive_rules' => 'Nu se pot executa reguli inactive.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Reguli',
'rule_name' => 'Denumirea regulii',
'rule_triggers' => 'Regulă se va declanșa când',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Пожалуйста, соберите больше информации в каталоге <code>storage/logs</code>, где вы найдете файлы журнала. Если вы используете Docker, используйте <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Вы можете прочитать больше о сборе информации об ошибке в <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Получить помощь на GitHub',
'github_instructions' => 'Я буду очень признателен, если вы откроете Заявку на <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
'use_search' => 'Используйте поиск!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Я забыл свой ключ для двухфакторной авторизации.',
'two_factor_lost_header' => 'Потеряли вашу двухфакторную аутентификацию?',
'two_factor_lost_intro' => 'Если вы потеряли также и ваши резервные коды, вам не повезло. Эту проблему вы не сможете решить через веб-интерфейс. Теперь у вас есть два варианта.',
'two_factor_lost_fix_self' => 'Если вы запускаете свой собственный экземпляр Firefly III, прочтите <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">эту запись в FAQ</a> для получения инструкций.',
'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_owner' => 'Иначе, свяжитесь по email с владельцем сайта <a href="mailto::site_owner">:site_owner</a> и попросите сбросить вашу двухфакторную аутентификацию.',
'mfa_backup_code' => 'Вы использовали резервный код для входа в Firefly III. Его нельзя использовать второй раз, поэтому вычеркните его из своего списка.',
'pref_two_factor_new_backup_codes' => 'Получить новые коды резервирования',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Исходный счёт "@source_name" может использовать только транзакции в валюте @source_currency. Счёт назначения "@dest_name" может использовать транзакции только в валюте @dest_currency. Вы должны правильно указать сумму перевода в обеих валютах.',
'transaction_data' => 'Данные транзакции',
'invalid_server_configuration' => 'Неправильная конфигурация сервера',
'invalid_locale_settings' => 'Firefly III не может форматировать денежные суммы, потому что на вашем сервере отсутствуют необходимые пакеты. Вот <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">инструкции, как это сделать</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Быстрое переключение',
'sign_in_to_start' => 'Войдите, чтобы начать сессию',
'sign_in' => 'Войти',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'НЕ',
'cannot_fire_inactive_rules' => 'Вы не можете выполнять неактивные правила.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Правила',
'rule_name' => 'Название правила',
'rule_triggers' => 'Правило срабатывает, когда',
@ -1965,7 +1967,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' => 'Выбрать транзакции',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Prosím, získajte viac informácií v zložke <code>storage/logs</code>, kde nájdete chybové záznamy. Ak spúšťate aplikáciu cez Docker, použite <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Viac o získavaní informácií o chybách si môžete prečítať v sekcii <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">často kladených otázok</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Nájdite pomoc na GitHube',
'github_instructions' => 'Budeme viac než radi, ak vytvoríte nové hlásenie na <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHube</a></strong>.',
'use_search' => 'Použite vyhľadávanie!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Zabudol(a) som si nástroj pro dvojfázové overenie.',
'two_factor_lost_header' => 'Ztratili ste svoje dvojfázové overenie?',
'two_factor_lost_intro' => 'Ak ste stratili aj svoje záložné kódy, máte smolu. Nie je to niečo, čo by ste mohli opraviť z webového rozhrania. Máte dve možnosti.',
'two_factor_lost_fix_self' => 'Ak ste si spustili vlastnú inštanciu Firefly III, prečítajte si <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">tento záznam v FAQ</a> pre pokyny.',
'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_owner' => 'V ostatných prípadoch napíšte prevádzkovateľovi, <a href="mailto::site_owner">:site_owner</a> a požiadajte ho o obnovenie vášho dvojfázového overenia.',
'mfa_backup_code' => 'Použitím záložného kódu, umožňujúceho prihlásenie do Firefly III, platnosť kódu zaniká. Takže kód, ktorým ste sa už prihlásili, už vám je k ničomu (nie je možné ho použiť opakovane) - preto si ho zo zoznamu vyškrtnite.',
'pref_two_factor_new_backup_codes' => 'Získať nové záložní kódy',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Účet zdrojového majetku "@source_name" prijíma iba transakcie v @source_currency. Cieľový majetkový účet „@dest_name“ prijíma iba transakcie v @dest_currency. Prevedenú čiastku musíte uviesť správne v oboch menách.',
'transaction_data' => 'Údaje o transakcii',
'invalid_server_configuration' => 'Neplatné nastavenie serveru',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instructions how to do this</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Rýchle prepnutie',
'sign_in_to_start' => 'Pre zahájenie sedenia sa prihláste',
'sign_in' => 'Prihlásiť',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Not',
'cannot_fire_inactive_rules' => 'Neaktívne pravidlá nie je možné spustiť.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Pravidlá',
'rule_name' => 'Názov pravidla',
'rule_triggers' => 'Pravidlo se uplatní, ak',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Zberite več informacij v imeniku <code>storage/logs</code>, kjer boste našli dnevniške datoteke. Če uporabljate Docker, uporabite <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Več o zbiranju informacij o napakah lahko preberete v <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">pogostih vprašanjih</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Pridobite pomoč na GitHub-u',
'github_instructions' => 'Vabimo vas, da odprete novo težavo <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">na GitHub-u</a></strong>.',
'use_search' => 'Uporabite iskanje!',

View File

@ -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' => 'Če uporabljate lastno namestitev Firefly III, si za navodila oglejte <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">ta zapis</a>.',
'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_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',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Izvorni račun sredstev "@source_name" sprejema samo transakcije v @source_currency. Ciljni račun sredstev "@dest_name" pa sprejema samo transakcije v @dest_currency. Podati morate znesek v obeh valutah.',
'transaction_data' => 'Podrobnosti transakcije',
'invalid_server_configuration' => 'Neveljavna nastavitev strežnika',
'invalid_locale_settings' => 'Firefly III ne more oblikovati denarnih zneskov, ker vašemu strežniku manjkajo zahtevani paketi. Obstajajo <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">navodila, kako to narediti</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Hitri preklop',
'sign_in_to_start' => 'Za nadaljevanje se prijavi',
'sign_in' => 'Prijava',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Ni',
'cannot_fire_inactive_rules' => 'Neaktivnih pravil ne morete izvajati.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Pravila',
'rule_name' => 'Naziv pravila',
'rule_triggers' => 'Pravilo se sproži, ko',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Vänligen samla in mer information i katalogen <code>lagring/loggar</code> där du hittar loggfiler. Om du kör Docker, använd <code>dockerloggar -f [container]</code>.',
'collect_info_more' => 'Du kan läsa mer om att samla in felinformation i <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Få hjälp på GitHub',
'github_instructions' => 'Du är mer än välkommen att öppna ett ärende <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">på GitHub</a></strong>.',
'use_search' => 'Använd sökningen!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Jag har glömt min tvåfaktors-pryl.',
'two_factor_lost_header' => 'Förlorad tvåfaktorsautentisering?',
'two_factor_lost_intro' => 'Om du har förlorat även dina backupkoder har du otur. Detta är inte något du kan fixa från webbgränssnittet. Du har två val.',
'two_factor_lost_fix_self' => 'Om du kör din egen instans av Firefly III, läs <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">denna post i FAQ</a> för instruktioner.',
'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_owner' => 'Annars, skicka epost till sajt-ägaren, <a href="mailto::site_owner">:site_owner</a> och be hen att återställa din tvåfaktorsautentisering.',
'mfa_backup_code' => 'Du har använt en engångskod för att logga in i Firefly III. Den kan inte användas igen, så stryk den från din lista.',
'pref_two_factor_new_backup_codes' => 'Generera nya engångskoder',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Källkontot "@source_name" accepterar bara transaktioner i @source_currency. Mottagarkontot "@dest_name" accepterar bara transaktioner i @dest_currencty. Du behöver ange det överförda beloppet korrekt i båda valutorna.',
'transaction_data' => 'Transaktionsdata',
'invalid_server_configuration' => 'Ogiltig serverkonfiguration',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instructions how to do this</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Snabbbyte',
'sign_in_to_start' => 'Logga in för att börja din session',
'sign_in' => 'Logga in',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Not',
'cannot_fire_inactive_rules' => 'Du kan inte köra inaktiva regler.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Regler',
'rule_name' => 'Namn på regel',
'rule_triggers' => 'Regel triggas när',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Please collect more information in the <code>storage/logs</code> directory where you will find log files. If you\'re running Docker, use <code>docker logs -f [container]</code>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">the FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Get help on GitHub',
'github_instructions' => 'You\'re more than welcome to open a new issue <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">on GitHub</a></strong>.',
'use_search' => 'Use the search!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'I forgot my two-factor thing.',
'two_factor_lost_header' => 'Lost your two factor authentication?',
'two_factor_lost_intro' => 'If you lost your backup codes as well, you have bad luck. This is not something you can fix from the web interface. You have two choices.',
'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">this entry in the FAQ</a> for instructions.',
'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_owner' => 'Otherwise, email the site owner, <a href="mailto::site_owner">:site_owner</a> and ask them to reset your two factor authentication.',
'mfa_backup_code' => 'You have used a backup code to login to Firefly III. It can\'t be used again, so cross it from your list.',
'pref_two_factor_new_backup_codes' => 'Get new backup codes',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Source asset account "@source_name" only accepts transactions in @source_currency. Destination asset account "@dest_name" only accepts transactions in @dest_currency. You must provide the transferred amount correctly in both currencies.',
'transaction_data' => 'Transaction data',
'invalid_server_configuration' => 'Invalid server configuration',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instructions how to do this</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Quickswitch',
'sign_in_to_start' => 'Sign in to start your session',
'sign_in' => 'Sign in',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Not',
'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Rules',
'rule_name' => 'Name of rule',
'rule_triggers' => 'Rule triggers when',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Lütfen günlük dosyalarını bulacağınız <code>storage/logs</code> dizininde daha fazla bilgi toplayın. Eğer Docker kullanıyorsanız, <code>docker logs -f [container]</code> komutunu kullanın.',
'collect_info_more' => 'Hata bilgilerini toplama hakkında daha fazla bilgi için <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode ">the FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Github\'dan yardım alın',
'github_instructions' => 'Yeni bir sayı açmaktan memnuniyet duyarız<strong><a href="https://github.com/firefly-iii/firefly-iii/issues">on GitHub</a></strong>.',
'use_search' => 'Aramayı kullan!',

View File

@ -114,7 +114,7 @@ return [
'two_factor_forgot' => 'İki faktörlü kimlik doğrulama cihazını unuttum.',
'two_factor_lost_header' => 'İki faktörlü kimlik doğrulamanızı mı kaybettiniz?',
'two_factor_lost_intro' => 'Eğer yedek kodlarınızı da kayıp ettiyseniz, şansınız kötü. Bu web arayüzünden düzeltebileceğiniz bir şey değil. İki seçeneğiniz var.',
'two_factor_lost_fix_self' => 'Kendi Firefly III örneğinizi çalıştırıyorsanız, <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup- bölümünü okuyun. kodlar">SSS bölümündeki bu giriş</a> talimatlar için.',
'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_owner' => 'Aksi takdirde, site sahibine (<a href="mailto::site_owner">:site_owner</a>) e-posta gönderin ve iki faktörlü kimlik doğrulamasını sıfırlamasını isteyin.',
'mfa_backup_code' => 'Firefly III giriş yapmak için yedek kullandınız. Bu kod tekrar kullanılamaz, o yüzden listenizden çıkartın.',
'pref_two_factor_new_backup_codes' => 'Yeni yedek kodları alın',
@ -204,7 +204,7 @@ return [
'transfer_exchange_rate_instructions' => 'Kaynak varlık hesabı "@source_name" sadece @soruce_currency işlemlerini kabul eder. Hedef varlık hesabı "@dest_name" sadece @dest_currency işlemlerini kabul eder. Aktarılan tutarı her iki para biriminde de doğru olarak girmeniz gerekir.',
'transaction_data' => 'İşlem Verileri',
'invalid_server_configuration' => 'Geçersiz sunucu yapılandırması',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instructions how to do this</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Hızlı anahtar',
'sign_in_to_start' => 'Oturumu başlatmak için giriş yapın',
'sign_in' => 'Oturum aç',
@ -749,6 +749,8 @@ return [
// rules
'is_not_rule_trigger' => 'Not',
'cannot_fire_inactive_rules' => 'Etkin olmayan kuralları yürütemezsiniz.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Kurallar',
'rule_name' => 'Kural adı',
'rule_triggers' => 'Kural ne zaman etkinleşir',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Для отримання додаткової інформації перегляньте каталог <code>storage/logs</code>, який містить файли журналів. Якщо ви використовуєте Docker, скористайтесь <code>docker logs -f [container]</code>.',
'collect_info_more' => 'Дізнатись більше інформації щодо помилок, можна у розділі <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Отримати допомогу на GitHub',
'github_instructions' => 'Запрошуємо відкрити нове звернення через проблему <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">на GitHub</a></strong>.',
'use_search' => 'Скористайтеся пошуком!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Я забув свій двофакторний ключ.',
'two_factor_lost_header' => 'Чи втрачено двофакторну аутентифікацію?',
'two_factor_lost_intro' => 'Якщо ви втратили резервні копії, вам не пощастило. Через вебінтерфейс це неможливо виправити. Ви маєте виходи.',
'two_factor_lost_fix_self' => 'Якщо ви запускаєте власний екземпляр Firefly III, прочитайте <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup- codes">цей запис у розділі поширених запитань</a> для отримання інструкцій.',
'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_owner' => 'В іншому випадку надішліть електронний лист адміністратору сервісу, <a href="mailto::site_owner">:site_owner</a> та попросіть його створити новий ключ двофакторної автентифікації.',
'mfa_backup_code' => 'Ви використали резервний код для входу в Firefly III. Його не можна використати повторно, тому видаліть його зі свого списку.',
'pref_two_factor_new_backup_codes' => 'Отримати нові резервні коди',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Вихідний рахунок "@source_name" приймає транзакції лише в @source_currency. Рахунок призначення "@dest_name" приймає транзакції лише в @dest_currency. Ви повинні вказати перераховану суму правильно в обох валютах.',
'transaction_data' => 'Дані транзакції',
'invalid_server_configuration' => 'Невірна конфігурація сервера',
'invalid_locale_settings' => 'Firefly III не може форматувати грошові суми, оскільки на вашому сервері відсутні необхідні пакети. Існує <a href="https://github.com/firefly-iii/help/wiki/Missing-locale-packages">інструкція як це зробити</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Швидке перемикання',
'sign_in_to_start' => 'Увійдіть щоб розпочати сеанс',
'sign_in' => 'Ввійти',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Не',
'cannot_fire_inactive_rules' => 'Ви не можете виконати неактивні правила.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Правила',
'rule_name' => 'Назва правила',
'rule_triggers' => 'Виконується правило коли',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Vui lòng thu thập thêm thông tin trong <code>storage/logs</code> nơi bạn lưu file log.',
'collect_info_more' => 'Bạn có thể đọc thêm về việc thu thập thông tin lỗi trong <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">the FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Nhận trợ giúp trên GitHub',
'github_instructions' => 'Nếu bạn chắc chắn trang này tồn tại, vui lòng mở một yêu cầu trên <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
'use_search' => 'Sử dụng tìm kiếm!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => 'Tôi quên mất hai yếu tố.',
'two_factor_lost_header' => 'Mất xác thực hai yếu tố của bạn?',
'two_factor_lost_intro' => 'Nếu bạn bị mất mã dự phòng. Bạn có hai lựa chọn.',
'two_factor_lost_fix_self' => 'Nếu bạn chạy phiên bản Firefly III của riêng mình, hãy kiểm tra nhật ký trong <code>storage/logs</code> để được hướng dẫn, hoặc chạy <code>docker logs &lt;container_id&gt;</code> để xem hướng dẫn (làm mới trang này).',
'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_owner' => 'Nếu không, gửi email cho chủ sở hữu trang web, <a href="mailto::site_owner">:site_owner</a> và yêu cầu họ đặt lại xác thực hai yếu tố của bạn.',
'mfa_backup_code' => 'Bạn đã sử dụng mã dự phòng để đăng nhập vào Firefly III. Nó không thể được sử dụng lại, vì vậy hãy gạch chéo nó khỏi danh sách của bạn.',
'pref_two_factor_new_backup_codes' => 'Nhận mã dự phòng mới',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => 'Tài khoản nguồn tài sản "@source_name" chỉ chấp nhận giao dịch bằng tiền tệ nguồn. tài khoản đícht "@dest_name" chỉ chấp nhận giao dịch bằng tiền tệ. Bạn phải cung cấp số tiền được chuyển chính xác bằng cả hai loại tiền tệ.',
'transaction_data' => 'Dữ liệu giao dịch',
'invalid_server_configuration' => 'Cấu hình máy chủ không hợp lệ',
'invalid_locale_settings' => 'Firefly III không thể định dạng số tiền vì máy chủ của bạn thiếu các gói cần thiết. Đây là những<a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">hướng dẫn cách làm điều này</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => 'Chuyển đổi nhanh',
'sign_in_to_start' => 'Đăng nhập để bắt đầu',
'sign_in' => 'Đăng nhập',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Not',
'cannot_fire_inactive_rules' => 'Bạn không thể thực thi các quy tắc không hoạt động.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => 'Quy tắc',
'rule_name' => 'Tên của quy tắc',
'rule_triggers' => 'Quy tắc kích hoạt khi',

View File

@ -48,7 +48,7 @@ return [
'source_equals_destination' => 'Tài khoản nguồn bằng với tài khoản đích.',
'unique_account_number_for_user' => 'Có vẻ như số tài khoản này đã được sử dụng.',
'unique_iban_for_user' => 'Có vẻ như IBAN này đã được sử dụng.',
'reconciled_forbidden_field' => 'This transaction is already reconciled, you cannot change the ":field"',
'reconciled_forbidden_field' => 'Giao dịch này đã được đối chiếu, bạn không thể thay đổi ":field"',
'deleted_user' => 'Do những hạn chế về bảo mật, bạn không thể đăng ký bằng địa chỉ email này.',
'rule_trigger_value' => 'Giá trị này không hợp lệ cho trình kích hoạt được chọn.',
'rule_action_value' => 'Giá trị này không hợp lệ cho hành động đã chọn.',
@ -60,10 +60,10 @@ return [
'transaction_types_equal' => 'Tất cả các phần tách phải cùng loại.',
'invalid_transaction_type' => 'Loại giao dịch không hợp lệ.',
'invalid_selection' => 'Lựa chọn của bạn không hợp lệ.',
'belongs_user' => 'This value is linked to an object that does not seem to exist.',
'belongs_user_or_user_group' => 'This value is linked to an object that does not seem to exist in your current financial administration.',
'belongs_user' => 'Giá trị này liên kết đến thực thể dường như không tồn tại.',
'belongs_user_or_user_group' => 'Giá trị này liên kết đến thực thể dường như không tồn tại trong phần quản trị tài chính hiện thời.',
'at_least_one_transaction' => 'Cần ít nhất một giao dịch.',
'recurring_transaction_id' => 'Need at least one transaction.',
'recurring_transaction_id' => 'Cần ít nhất một giao dịch.',
'need_id_to_match' => 'You need to submit this entry with an ID for the API to be able to match it.',
'too_many_unmatched' => 'Too many submitted transactions cannot be matched to their respective database entries. Make sure existing entries have a valid ID.',
'id_does_not_match' => 'Submitted ID #:id does not match expected ID. Make sure it matches or omit the field.',
@ -234,8 +234,8 @@ return [
// validation of accounts:
'withdrawal_source_need_data' => 'Cần lấy ID tài khoản nguồn hợp lệ và / hoặc tên tài khoản nguồn hợp lệ để tiếp tục.',
'withdrawal_source_bad_data' => '[a] Could not find a valid source account when searching for ID ":id" or name ":name".',
'withdrawal_dest_need_data' => '[a] Need to get a valid destination account ID and/or valid destination account name to continue.',
'withdrawal_source_bad_data' => '[a] Không thể tìm thấy tài khoản nguồn hợp lệ khi tìm kiếm ID ":id" hoặc tên ":name".',
'withdrawal_dest_need_data' => '[a] Cần lấy ID tài khoản đích hợp lệ và / hoặc tên tài khoản đích hợp lệ để tiếp tục.',
'withdrawal_dest_bad_data' => 'Không thể tìm thấy tài khoản đích hợp lệ khi tìm kiếm ID ":id" hoặc tên ":name".',
'withdrawal_dest_iban_exists' => 'This destination account IBAN is already in use by an asset account or a liability and cannot be used as a withdrawal destination.',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => '请在 <code>storage/logs</code> 目录中查找日志文件以获取更多信息。如果您正在使用 Docker请使用 <code>docker logs -f [container]</code>。',
'collect_info_more' => '您可以在<a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">FAQ页面</a>了解更多有关收集错误信息的内容。',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => '在 GitHub 上获取帮助',
'github_instructions' => '欢迎您在 <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong> 创建工单。',
'use_search' => '请善用搜索功能!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => '我忘记了两步验证码',
'two_factor_lost_header' => '遗失了您的两步验证吗?',
'two_factor_lost_intro' => '如果您同时遗失了备份代码,很抱歉,您无法通过网页进行恢复。您可以通过下述方式进行操作。',
'two_factor_lost_fix_self' => '如果这是您自己的 Firefly III 站点,请阅读<a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">FAQ页面中的此条目</a>以获取更多帮助。',
'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_owner' => '如果这不是您自己的 Firefly III 站点,请邮件联系站点管理员(<a href="mailto::site_owner">:site_owner</a>)协助您重置两步验证。',
'mfa_backup_code' => '您已使用备用代码登录到 Firefly III 。 您不能再使用它,因此请将其划掉。',
'pref_two_factor_new_backup_codes' => '获取新的备份代码',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => '来源资产账户“@source_name”仅接受 @source_currency 的交易,目标资产账户“@dest_name”仅接受 @dest_currency 的交易,您必须用两方货币来提供正确的已转账总额。',
'transaction_data' => '交易资料',
'invalid_server_configuration' => '无效服务器设置',
'invalid_locale_settings' => 'Firefly III 无法格式化货币金额,因为您的服务器缺少必要的软件包。查看 <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">说明</a>以解决该问题。',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => '快速切换',
'sign_in_to_start' => '登录即可开始您的理财规划',
'sign_in' => '登录',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => '相反',
'cannot_fire_inactive_rules' => '您不能执行已停用的规则。',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => '规则',
'rule_name' => '规则名称',
'rule_triggers' => '规则触发于',

View File

@ -63,7 +63,7 @@ return [
*/
'collect_info' => 'Please collect more information in the <code>storage/logs</code> directory where you will find log files. If you\'re running Docker, use <code>docker logs -f [container]</code>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">the FAQ</a>.',
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/how-to/general/debug/">the FAQ</a>.',
'github_help' => 'Get help on GitHub',
'github_instructions' => 'You\'re more than welcome to open a new issue <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">on GitHub</a></strong>.',
'use_search' => 'Use the search!',

View File

@ -113,7 +113,7 @@ return [
'two_factor_forgot' => '啥兩步驟我忘了。',
'two_factor_lost_header' => '遺失您的兩步驟驗證嗎?',
'two_factor_lost_intro' => 'If you lost your backup codes as well, you have bad luck. This is not something you can fix from the web interface. You have two choices.',
'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read <a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">this entry in the FAQ</a> for instructions.',
'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_owner' => '否則,請寄送電子郵件至網站擁有者 <a href="mailto::site_owner">:site_owner</a> 要求重設您的兩步驟驗證。',
'mfa_backup_code' => 'You have used a backup code to login to Firefly III. It can\'t be used again, so cross it from your list.',
'pref_two_factor_new_backup_codes' => 'Get new backup codes',
@ -203,7 +203,7 @@ return [
'transfer_exchange_rate_instructions' => '來源資產帳戶「@source_name」僅接受以 @source_currency 交易,目標資產帳戶「@dest_name」僅接受以 @dest_currency 交易,您必須提供對應兩種貨幣的轉帳總額。',
'transaction_data' => '交易資料',
'invalid_server_configuration' => '伺服器組態無效',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/firefly-iii/advanced-installation/locales/">instructions how to do this</a>.',
'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are <a href="https://docs.firefly-iii.org/how-to/firefly-iii/advanced/locales/">instructions how to do this</a>.',
'quickswitch' => '快速切換',
'sign_in_to_start' => '登入以開始您的連線階段',
'sign_in' => '登入',
@ -748,6 +748,8 @@ return [
// rules
'is_not_rule_trigger' => 'Not',
'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.',
'show_triggers' => 'Show triggers',
'show_actions' => 'Show actions',
'rules' => '規則',
'rule_name' => '規則名稱',
'rule_triggers' => '規則觸發於',

View File

@ -240,9 +240,6 @@
Run webhooks on this transaction
</label>
</div>
</div>
<div class="card-footer">
submission options