mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-30 04:01:33 -04:00
Before, the ignore info were stored in a different file which was a bit cumbersome for new comers. Now, this info is stored directly in the translation file as a comment. Before, there was no way of telling translators that a previously translated string was in need of a new translation. Now, the dirty information is there to convey that info.
55 lines
2.6 KiB
PHP
55 lines
2.6 KiB
PHP
<?php
|
|
|
|
/******************************************************************************/
|
|
/* Each entry of that file can be associated with a comment to indicate its */
|
|
/* state. When there is no comment, it means the entry is fully translated. */
|
|
/* The recognized comments are (comment matching is case-insensitive): */
|
|
/* + TODO: the entry has never been translated. */
|
|
/* + DIRTY: the entry has been translated but needs to be updated. */
|
|
/* + IGNORE: the entry does not need to be translated. */
|
|
/* When a comment is not recognized, it is discarded. */
|
|
/******************************************************************************/
|
|
|
|
return array(
|
|
'email' => array(
|
|
'feedback' => array(
|
|
'invalid' => 'Ten adres e-mailowy jest niepoprawny.',
|
|
'required' => 'Wymagane jest podanie adresu e-mail.',
|
|
),
|
|
'validation' => array(
|
|
'change_email' => 'Możesz zmienić używany adres e-mail w <a href="%s">ustawieniach swojego profilu</a>.',
|
|
'email_sent_to' => 'Na adres e-mail <strong>%s</strong> została wysłana wiadomość zawierająca instrukcję weryfikacji. Prosimy się z nią zapoznać.',
|
|
'feedback' => array(
|
|
'email_failed' => 'Nie udało się wysłać wiadomości e-mail z powodu błędu konfiguracji serwera.',
|
|
'email_sent' => 'Wiadomośc e-mail została wysłana na podany adres.',
|
|
'error' => 'Weryfikacja adresu poczty e-mail nie powiodła się.',
|
|
'ok' => 'Adres poczty e-mail został potwierdzony.',
|
|
'unnecessary' => 'Podany adres poczty e-mail został już wcześniej potwierdzony.',
|
|
'wrong_token' => 'Nie udało się zweryfikować adresu poczty e-mail z powodu niewłaściwego tokena.',
|
|
),
|
|
'need_to' => 'Musisz zweryfikować swój adres e-mail zanim będziesz mógł zacząć używać serwis %s.',
|
|
'resend_email' => 'Wyślij ponownie wiadomość e-mail',
|
|
'title' => 'Potwierdzenie adresu e-mail',
|
|
),
|
|
),
|
|
'mailer' => array(
|
|
'email_need_validation' => array(
|
|
'body' => 'Właśnie zarejestrowałeś się w serwisie %s. Aby uzyskać pełen dostęp musisz jeszcze potwierdzić ważność swojego adresu e-mail. Możesz to zrobić klikając na niniejszy odnośnik:',
|
|
'title' => 'Musisz zweryfikować swoje konto',
|
|
'welcome' => 'Cześć, %s,',
|
|
),
|
|
),
|
|
'password' => array(
|
|
'invalid' => 'Hasło nie jest prawidłowe.',
|
|
),
|
|
'tos' => array(
|
|
'feedback' => array(
|
|
'invalid' => 'Aby się zarejestrować, należy zgodzić się na Warunki użytkowania.',
|
|
),
|
|
),
|
|
'username' => array(
|
|
'invalid' => 'Ta nazwa użytkownika nie jest prawidłowa.',
|
|
'taken' => 'Użytkownik %s już istnieje.',
|
|
),
|
|
);
|