mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
190 lines
14 KiB
PHP
190 lines
14 KiB
PHP
<?php
|
||
|
||
/**
|
||
* email.php
|
||
* Copyright (c) 2019 james@firefly-iii.org
|
||
*
|
||
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||
*
|
||
* This program is free software: you can redistribute it and/or modify
|
||
* it under the terms of the GNU Affero General Public License as
|
||
* published by the Free Software Foundation, either version 3 of the
|
||
* License, or (at your option) any later version.
|
||
*
|
||
* This program is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU Affero General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU Affero General Public License
|
||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||
*/
|
||
|
||
/*
|
||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
||
*
|
||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
||
*
|
||
* https://crowdin.com/project/firefly-iii
|
||
*
|
||
*/
|
||
|
||
|
||
declare(strict_types=1);
|
||
|
||
return [
|
||
// common items
|
||
'greeting' => 'Здравейте,',
|
||
'closing' => 'Beep boop,',
|
||
'signature' => 'Пощенският робот на Firefly III',
|
||
'footer_ps' => 'PS: Това съобщение беше изпратено, защото заявка от IP :ipAddress го задейства.',
|
||
|
||
// admin test
|
||
'admin_test_subject' => 'Тестово съобщение от вашата инсталация на Firefly III',
|
||
'admin_test_body' => 'Това е тестово съобщение от вашата Firefly III инстанция. То беше изпратено на :email.',
|
||
|
||
/*
|
||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
||
*
|
||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
||
*
|
||
* https://crowdin.com/project/firefly-iii
|
||
*
|
||
*/
|
||
|
||
|
||
// invite
|
||
'invitation_created_subject' => 'An invitation has been created',
|
||
'invitation_created_body' => 'Admin user ":email" created a user invitation which can be used by whoever is behind email address ":invitee". The invite will be valid for 48hrs.',
|
||
'invite_user_subject' => 'You\'ve been invited to create a Firefly III account.',
|
||
'invitation_introduction' => 'You\'ve been invited to create a Firefly III account on **:host**. Firefly III is a personal, self-hosted, private personal finance manager. All the cool kids are using it.',
|
||
'invitation_invited_by' => 'You\'ve been invited by ":admin" and this invitation was sent to ":invitee". That\'s you, right?',
|
||
'invitation_url' => 'The invitation is valid for 48 hours and can be redeemed by surfing to [Firefly III](:url). Enjoy!',
|
||
|
||
// new IP
|
||
'login_from_new_ip' => 'Ново влизане в Firefly III',
|
||
'slack_login_from_new_ip' => 'New Firefly III login from IP :ip (:host)',
|
||
'new_ip_body' => 'Firefly III откри нов вход за вашия акаунт от неизвестен IP адрес. Ако никога не сте влизали от IP адреса по-долу или е било преди повече от шест месеца, Firefly III ще ви предупреди.',
|
||
'new_ip_warning' => 'Ако разпознаете този IP адрес или данните за вход, можете да игнорирате това съобщение. Ако не сте влезли вие или ако нямате представа за какво става въпрос, проверете защитата на паролата си, променете я и излезте от всички останали сесии. За да направите това, отидете на страницата на вашия профил. Разбира се, че вече сте активирали 2FA, нали? Пазете се!',
|
||
'ip_address' => 'IP адрес',
|
||
'host_name' => 'Сървър',
|
||
'date_time' => 'Дата + час',
|
||
|
||
// access token created
|
||
'access_token_created_subject' => 'Създаден е нов маркер за достъп (токен)',
|
||
'access_token_created_body' => 'Някой (дано да сте вие) току-що създаде нов Firefly III API Token за вашия потребителски акаунт.',
|
||
'access_token_created_explanation' => 'With this token, they can access **all** of your financial records through the Firefly III API.',
|
||
'access_token_created_revoke' => 'If this wasn\'t you, please revoke this token as soon as possible at :url',
|
||
|
||
// registered
|
||
'registered_subject' => 'Добре дошли в Firefly III!',
|
||
'registered_subject_admin' => 'A new user has registered',
|
||
'admin_new_user_registered' => 'A new user has registered. User **:email** was given user ID #:id.',
|
||
'registered_welcome' => 'Welcome to [Firefly III](:address). Your registration has made it, and this email is here to confirm it. Yay!',
|
||
'registered_pw' => 'If you have forgotten your password already, please reset it using [the password reset tool](:address/password/reset).',
|
||
'registered_help' => 'В горния десен ъгъл на всяка страница има икона за помощ. Ако имате нужда от помощ, щракнете върху нея!',
|
||
'registered_doc_html' => 'If you haven\'t already, please read the [grand theory](https://docs.firefly-iii.org/about-firefly-iii/personal-finances).',
|
||
'registered_doc_text' => 'If you haven\'t already, please also read the first use guide and the full description.',
|
||
'registered_closing' => 'Наслаждавайте се!',
|
||
'registered_firefly_iii_link' => 'Firefly III:',
|
||
'registered_pw_reset_link' => 'Смяна на парола:',
|
||
'registered_doc_link' => 'Документация:',
|
||
|
||
/*
|
||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
||
*
|
||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
||
*
|
||
* https://crowdin.com/project/firefly-iii
|
||
*
|
||
*/
|
||
|
||
|
||
// new version
|
||
'new_version_email_subject' => 'A new Firefly III version is available',
|
||
|
||
// email change
|
||
'email_change_subject' => 'Вашият имейл адрес за Firefly III е променен',
|
||
'email_change_body_to_new' => 'Вие или някой с достъп до вашия акаунт в Firefly III е променили имейл адреса ви. Ако не очаквате това съобщение, моля игнорирайте го и го изтрийте.',
|
||
'email_change_body_to_old' => 'You or somebody with access to your Firefly III account has changed your email address. If you did not expect this to happen, you **must** follow the "undo"-link below to protect your account!',
|
||
'email_change_ignore' => 'Ако сте инициирали тази промяна, можете безопасно да игнорирате това съобщение.',
|
||
'email_change_old' => 'Старият имейл адрес беше: :email',
|
||
'email_change_old_strong' => 'The old email address was: **:email**',
|
||
'email_change_new' => 'Новият имейл адрес е: :email',
|
||
'email_change_new_strong' => 'The new email address is: **:email**',
|
||
'email_change_instructions' => 'Не можете да използвате Firefly III докато не потвърдите тази промяна. Моля, следвайте линка по-долу, за да го направите.',
|
||
'email_change_undo_link' => 'За да отмените промяната последвайте тази връзка:',
|
||
|
||
// OAuth token created
|
||
'oauth_created_subject' => 'Създаден е нов клиент на OAuth',
|
||
'oauth_created_body' => 'Somebody (hopefully you) just created a new Firefly III API OAuth Client for your user account. It\'s labeled ":name" and has callback URL `:url`.',
|
||
'oauth_created_explanation' => 'With this client, they can access **all** of your financial records through the Firefly III API.',
|
||
'oauth_created_undo' => 'If this wasn\'t you, please revoke this client as soon as possible at `:url`',
|
||
|
||
// reset password
|
||
'reset_pw_subject' => 'Вашето искане за смяна на парола',
|
||
'reset_pw_instructions' => 'Някой се опита да смени паролата ви. Ако сте вие, моля последвайте линка по-долу, за да го направите.',
|
||
'reset_pw_warning' => '**PLEASE** verify that the link actually goes to the Firefly III you expect it to go!',
|
||
|
||
// error
|
||
'error_subject' => 'Уловена е грешка в Firefly III',
|
||
'error_intro' => 'Firefly III v:version попадна в грешка: <span style="font-family: monospace;">:errorMessage</span>.',
|
||
'error_type' => 'Грешката беше от вид:":class".',
|
||
'error_timestamp' => 'Грешката се случи на/в: :time.',
|
||
'error_location' => 'Тази грешка се появи във файл "<span style="font-family: monospace;">:file</span>" на ред: :line с код: :code.',
|
||
'error_user' => 'На грешката попадна потребител #:id,<a href="mailto::email">:email</a>.',
|
||
'error_no_user' => 'Нямаше регистриран потребител при тази грешка или не бе открит потребителя.',
|
||
'error_ip' => 'IP адресът, свързан с тази грешка, е: :ip',
|
||
'error_url' => 'URL адресът е: :url',
|
||
'error_user_agent' => 'Брaузър агент: :userAgent',
|
||
'error_stacktrace' => 'Пълният стак на грешката е отдолу. Ако смятате, че това е грешка в Firefly III, можете да препратите това съобщение до <a href="mailto:james@firefly-iii.org?subject=BUG!">james@firefly-iii.org</a>. Това може да помогне за отстраняване на грешката, която току-що срещнахте.',
|
||
'error_github_html' => 'Ако предпочитате, можете също да отворите нов проблем на <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a>.',
|
||
'error_github_text' => 'Ако предпочитате, можете също да отворите нов проблем на https://github.com/firefly-iii/firefly-iii/issues.',
|
||
'error_stacktrace_below' => 'Пълният stacktrace е отдолу:',
|
||
'error_headers' => 'The following headers may also be relevant:',
|
||
|
||
/*
|
||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
||
*
|
||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
||
*
|
||
* https://crowdin.com/project/firefly-iii
|
||
*
|
||
*/
|
||
|
||
|
||
// report new journals
|
||
'new_journals_subject' => 'Firefly III създаде нова транзакция | Firefly III създаде :count нови транзакции',
|
||
'new_journals_header' => 'Firefly III създаде транзакция за вас. Можете да я намерите във вашата инсталация на Firefly III: | Firefly III създаде :count транзакции за вас. Можете да ги намерите във вашата инсталация на Firefly III:',
|
||
|
||
// bill warning
|
||
'bill_warning_subject_end_date' => 'Your bill ":name" is due to end in :diff days',
|
||
'bill_warning_subject_now_end_date' => 'Your bill ":name" is due to end TODAY',
|
||
'bill_warning_subject_extension_date' => 'Your bill ":name" is due to be extended or cancelled in :diff days',
|
||
'bill_warning_subject_now_extension_date' => 'Your bill ":name" is due to be extended or cancelled TODAY',
|
||
'bill_warning_end_date' => 'Your bill **":name"** is due to end on :date. This moment will pass in about **:diff days**.',
|
||
'bill_warning_extension_date' => 'Your bill **":name"** is due to be extended or cancelled on :date. This moment will pass in about **:diff days**.',
|
||
'bill_warning_end_date_zero' => 'Your bill **":name"** is due to end on :date. This moment will pass **TODAY!**',
|
||
'bill_warning_extension_date_zero' => 'Your bill **":name"** is due to be extended or cancelled on :date. This moment will pass **TODAY!**',
|
||
'bill_warning_please_action' => 'Please take the appropriate action.',
|
||
|
||
];
|
||
/*
|
||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||
* YOUR CHANGES WILL BE OVERWRITTEN!
|
||
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
||
*
|
||
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
||
*
|
||
* https://crowdin.com/project/firefly-iii
|
||
*
|
||
*/
|