diff options
| author | 2022-01-08 08:00:26 -0500 | |
|---|---|---|
| committer | 2022-01-08 14:00:26 +0100 | |
| commit | 127b7f0a3aad7012055c058e8aba0d27192a8cbc (patch) | |
| tree | 8ec9a5948672e702c944c202f78294b81104582f /app/i18n/pl | |
| parent | ed19445f74c30854c60873cd1df1c38e15fc316b (diff) | |
Change i18n process (#4131)
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.
Diffstat (limited to 'app/i18n/pl')
| -rw-r--r-- | app/i18n/pl/admin.php | 100 | ||||
| -rw-r--r-- | app/i18n/pl/conf.php | 24 | ||||
| -rw-r--r-- | app/i18n/pl/feedback.php | 10 | ||||
| -rw-r--r-- | app/i18n/pl/gen.php | 88 | ||||
| -rw-r--r-- | app/i18n/pl/index.php | 12 | ||||
| -rw-r--r-- | app/i18n/pl/install.php | 146 | ||||
| -rw-r--r-- | app/i18n/pl/sub.php | 14 | ||||
| -rw-r--r-- | app/i18n/pl/user.php | 10 |
8 files changed, 242 insertions, 162 deletions
diff --git a/app/i18n/pl/admin.php b/app/i18n/pl/admin.php index c37064a9f..f7fac8c9e 100644 --- a/app/i18n/pl/admin.php +++ b/app/i18n/pl/admin.php @@ -1,5 +1,15 @@ <?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( 'auth' => array( 'allow_anonymous' => 'Pozwól na anonimowy odczyt wiadomości domyślnego użytkownika (%s)', @@ -16,88 +26,88 @@ return array( ), 'check_install' => array( 'cache' => array( - 'nok' => 'Check permissions on <em>./data/cache</em> directory. HTTP server must have write permission.', // TODO - Translation - 'ok' => 'Permissions on the cache directory are good.', // TODO - Translation + 'nok' => 'Check permissions on <em>./data/cache</em> directory. HTTP server must have write permission.', // TODO + 'ok' => 'Permissions on the cache directory are good.', // TODO ), 'categories' => array( - 'nok' => 'Category table is improperly configured.', // TODO - Translation - 'ok' => 'Category table is okay.', // TODO - Translation + 'nok' => 'Category table is improperly configured.', // TODO + 'ok' => 'Category table is okay.', // TODO ), 'connection' => array( - 'nok' => 'Connection to the database cannot be established.', // TODO - Translation - 'ok' => 'Connection to the database is okay.', // TODO - Translation + 'nok' => 'Connection to the database cannot be established.', // TODO + 'ok' => 'Connection to the database is okay.', // TODO ), 'ctype' => array( - 'nok' => 'Cannot find a required library for character type checking (php-ctype).', // TODO - Translation - 'ok' => 'You have the required library for character type checking (ctype).', // TODO - Translation + 'nok' => 'Cannot find a required library for character type checking (php-ctype).', // TODO + 'ok' => 'You have the required library for character type checking (ctype).', // TODO ), 'curl' => array( - 'nok' => 'Cannot find the cURL library (php-curl package).', // TODO - Translation - 'ok' => 'You have the cURL library.', // TODO - Translation + 'nok' => 'Cannot find the cURL library (php-curl package).', // TODO + 'ok' => 'You have the cURL library.', // TODO ), 'data' => array( - 'nok' => 'Check permissions on <em>./data</em> directory. HTTP server must have write permission.', // TODO - Translation - 'ok' => 'Permissions on the data directory are good.', // TODO - Translation + 'nok' => 'Check permissions on <em>./data</em> directory. HTTP server must have write permission.', // TODO + 'ok' => 'Permissions on the data directory are good.', // TODO ), - 'database' => 'Database installation', // TODO - Translation + 'database' => 'Database installation', // TODO 'dom' => array( - 'nok' => 'Cannot find a required library to browse the DOM (php-xml package).', // TODO - Translation - 'ok' => 'You have the required library to browse the DOM.', // TODO - Translation + 'nok' => 'Cannot find a required library to browse the DOM (php-xml package).', // TODO + 'ok' => 'You have the required library to browse the DOM.', // TODO ), 'entries' => array( - 'nok' => 'Entry table is improperly configured.', // TODO - Translation - 'ok' => 'Entry table is okay.', // TODO - Translation + 'nok' => 'Entry table is improperly configured.', // TODO + 'ok' => 'Entry table is okay.', // TODO ), 'favicons' => array( - 'nok' => 'Check permissions on <em>./data/favicons</em> directory. HTTP server must have write permission.', // TODO - Translation - 'ok' => 'Permissions on the favicons directory are good.', // TODO - Translation + 'nok' => 'Check permissions on <em>./data/favicons</em> directory. HTTP server must have write permission.', // TODO + 'ok' => 'Permissions on the favicons directory are good.', // TODO ), 'feeds' => array( - 'nok' => 'Feed table is improperly configured.', // TODO - Translation - 'ok' => 'Feed table is okay.', // TODO - Translation + 'nok' => 'Feed table is improperly configured.', // TODO + 'ok' => 'Feed table is okay.', // TODO ), 'fileinfo' => array( - 'nok' => 'Cannot find the PHP fileinfo library (fileinfo package).', // TODO - Translation - 'ok' => 'You have the fileinfo library.', // TODO - Translation + 'nok' => 'Cannot find the PHP fileinfo library (fileinfo package).', // TODO + 'ok' => 'You have the fileinfo library.', // TODO ), - 'files' => 'File installation', // TODO - Translation + 'files' => 'File installation', // TODO 'json' => array( - 'nok' => 'Cannot find JSON (php-json package).', // TODO - Translation - 'ok' => 'You have the JSON extension.', // TODO - Translation + 'nok' => 'Cannot find JSON (php-json package).', // TODO + 'ok' => 'You have the JSON extension.', // TODO ), 'mbstring' => array( - 'nok' => 'Cannot find the recommended mbstring library for Unicode.', // TODO - Translation - 'ok' => 'You have the recommended mbstring library for Unicode.', // TODO - Translation + 'nok' => 'Cannot find the recommended mbstring library for Unicode.', // TODO + 'ok' => 'You have the recommended mbstring library for Unicode.', // TODO ), 'pcre' => array( - 'nok' => 'Cannot find a required library for regular expressions (php-pcre).', // TODO - Translation - 'ok' => 'You have the required library for regular expressions (PCRE).', // TODO - Translation + 'nok' => 'Cannot find a required library for regular expressions (php-pcre).', // TODO + 'ok' => 'You have the required library for regular expressions (PCRE).', // TODO ), 'pdo' => array( - 'nok' => 'Cannot find PDO or one of the supported drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).', // TODO - Translation - 'ok' => 'You have PDO and at least one of the supported drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).', // TODO - Translation + 'nok' => 'Cannot find PDO or one of the supported drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).', // TODO + 'ok' => 'You have PDO and at least one of the supported drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).', // TODO ), 'php' => array( - '_' => 'PHP installation', // TODO - Translation - 'nok' => 'Your PHP version is %s but FreshRSS requires at least version %s.', // TODO - Translation - 'ok' => 'Your PHP version (%s) is compatible with FreshRSS.', // TODO - Translation + '_' => 'PHP installation', // TODO + 'nok' => 'Your PHP version is %s but FreshRSS requires at least version %s.', // TODO + 'ok' => 'Your PHP version (%s) is compatible with FreshRSS.', // TODO ), 'tables' => array( - 'nok' => 'There are one or more missing tables in the database.', // TODO - Translation - 'ok' => 'The appropriate tables exist in the database.', // TODO - Translation + 'nok' => 'There are one or more missing tables in the database.', // TODO + 'ok' => 'The appropriate tables exist in the database.', // TODO ), - 'title' => 'Installation check', // TODO - Translation + 'title' => 'Installation check', // TODO 'tokens' => array( - 'nok' => 'Check permissions on <em>./data/tokens</em> directory. HTTP server must have write permission', // TODO - Translation - 'ok' => 'Permissions on the tokens directory are good.', // TODO - Translation + 'nok' => 'Check permissions on <em>./data/tokens</em> directory. HTTP server must have write permission', // TODO + 'ok' => 'Permissions on the tokens directory are good.', // TODO ), 'users' => array( - 'nok' => 'Check permissions on <em>./data/users</em> directory. HTTP server must have write permission', // TODO - Translation - 'ok' => 'Permissions on the users directory are good.', // TODO - Translation + 'nok' => 'Check permissions on <em>./data/users</em> directory. HTTP server must have write permission', // TODO + 'ok' => 'Permissions on the users directory are good.', // TODO ), 'zip' => array( - 'nok' => 'Cannot find the ZIP extension (php-zip package).', // TODO - Translation - 'ok' => 'You have the ZIP extension.', // TODO - Translation + 'nok' => 'Cannot find the ZIP extension (php-zip package).', // TODO + 'ok' => 'You have the ZIP extension.', // TODO ), ), 'extensions' => array( @@ -172,7 +182,7 @@ return array( 'title' => 'Aktualizacja', ), 'user' => array( - 'admin' => 'Administrator', + 'admin' => 'Administrator', // IGNORE 'article_count' => 'Liczba wiadomości', 'back_to_manage' => '← Powrót do listy użytkowników', 'create' => 'Dodaj nowego użytkownika', diff --git a/app/i18n/pl/conf.php b/app/i18n/pl/conf.php index 328e486d2..edbf2ac32 100644 --- a/app/i18n/pl/conf.php +++ b/app/i18n/pl/conf.php @@ -1,5 +1,15 @@ <?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( 'archiving' => array( '_' => 'Archiwizacja', @@ -163,20 +173,20 @@ return array( 'sharing' => array( '_' => 'Podawanie dalej', 'add' => 'Dodaj sposób na podanie dalej wiadomości', - 'blogotext' => 'Blogotext', - 'diaspora' => 'Diaspora*', + 'blogotext' => 'Blogotext', // IGNORE + 'diaspora' => 'Diaspora*', // IGNORE 'email' => 'E-mail', - 'facebook' => 'Facebook', + 'facebook' => 'Facebook', // IGNORE 'more_information' => 'Więcej informacji', 'print' => 'Wydruk', - 'raindrop' => 'Raindrop.io', + 'raindrop' => 'Raindrop.io', // IGNORE 'remove' => 'Usuń sposób na podanie dalej wiadomości', - 'shaarli' => 'Shaarli', + 'shaarli' => 'Shaarli', // IGNORE 'share_name' => 'Wyświetlana nazwa serwisu', 'share_url' => 'Adres API serwisu', 'title' => 'Podawanie dalej', - 'twitter' => 'Twitter', - 'wallabag' => 'wallabag', + 'twitter' => 'Twitter', // IGNORE + 'wallabag' => 'wallabag', // IGNORE ), 'shortcut' => array( '_' => 'Skróty klawiszowe', diff --git a/app/i18n/pl/feedback.php b/app/i18n/pl/feedback.php index c354d6d98..ddf3d80a1 100644 --- a/app/i18n/pl/feedback.php +++ b/app/i18n/pl/feedback.php @@ -1,5 +1,15 @@ <?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( 'access' => array( 'denied' => 'Nie masz uprawnień dostępu do tej strony', diff --git a/app/i18n/pl/gen.php b/app/i18n/pl/gen.php index c9464c4f5..ef6c772ea 100644 --- a/app/i18n/pl/gen.php +++ b/app/i18n/pl/gen.php @@ -1,5 +1,15 @@ <?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( 'action' => array( 'actualize' => 'Aktualizuj kanałów', @@ -69,8 +79,8 @@ return array( 'december' => 'Grudzień', 'feb' => 'Lut', 'february' => 'Luty', - 'format_date' => 'j %s Y', - 'format_date_hour' => 'j %s Y\\, H\\:i', + 'format_date' => 'j %s Y', // IGNORE + 'format_date_hour' => 'j %s Y\\, H\\:i', // IGNORE 'fri' => 'Pt.', 'jan' => 'Sty.', 'january' => 'Styczeń', @@ -106,9 +116,9 @@ return array( 'wed' => 'Śr.', 'yesterday' => 'Wczorajsze', ), - 'dir' => 'ltr', // TODO - Translation + 'dir' => 'ltr', // TODO 'freshrss' => array( - '_' => 'FreshRSS', + '_' => 'FreshRSS', // IGNORE 'about' => 'O serwisie FreshRSS', ), 'js' => array( @@ -124,24 +134,24 @@ return array( 'should_be_activated' => 'JavaScript musi być włączony', ), 'lang' => array( - 'cz' => 'Čeština', - 'de' => 'Deutsch', - 'en' => 'English', - 'en-us' => 'English (United States)', - 'es' => 'Español', - 'fr' => 'Français', - 'he' => 'עברית', - 'it' => 'Italiano', - 'ja' => '日本語', - 'ko' => '한국어', - 'nl' => 'Nederlands', - 'oc' => 'Occitan', - 'pl' => 'Polski', - 'pt-br' => 'Português (Brasil)', - 'ru' => 'Русский', - 'sk' => 'Slovenčina', - 'tr' => 'Türkçe', - 'zh-cn' => '简体中文', + 'cz' => 'Čeština', // IGNORE + 'de' => 'Deutsch', // IGNORE + 'en' => 'English', // IGNORE + 'en-us' => 'English (United States)', // IGNORE + 'es' => 'Español', // IGNORE + 'fr' => 'Français', // IGNORE + 'he' => 'עברית', // IGNORE + 'it' => 'Italiano', // IGNORE + 'ja' => '日本語', // IGNORE + 'ko' => '한국어', // IGNORE + 'nl' => 'Nederlands', // IGNORE + 'oc' => 'Occitan', // IGNORE + 'pl' => 'Polski', // IGNORE + 'pt-br' => 'Português (Brasil)', // IGNORE + 'ru' => 'Русский', // IGNORE + 'sk' => 'Slovenčina', // IGNORE + 'tr' => 'Türkçe', // IGNORE + 'zh-cn' => '简体中文', // IGNORE ), 'menu' => array( 'about' => 'O serwisie', @@ -183,25 +193,25 @@ return array( ), 'share' => array( 'Known' => 'Strony bazujące na usłudze Known', - 'blogotext' => 'Blogotext', + 'blogotext' => 'Blogotext', // IGNORE 'clipboard' => 'Schowek', - 'diaspora' => 'Diaspora*', + 'diaspora' => 'Diaspora*', // IGNORE 'email' => 'E-mail', - 'facebook' => 'Facebook', - 'gnusocial' => 'GNU social', - 'jdh' => 'Journal du hacker', - 'lemmy' => 'Lemmy', - 'linkedin' => 'LinkedIn', - 'mastodon' => 'Mastodon', - 'movim' => 'Movim', - 'pinboard' => 'Pinboard', - 'pocket' => 'Pocket', + 'facebook' => 'Facebook', // IGNORE + 'gnusocial' => 'GNU social', // IGNORE + 'jdh' => 'Journal du hacker', // IGNORE + 'lemmy' => 'Lemmy', // IGNORE + 'linkedin' => 'LinkedIn', // IGNORE + 'mastodon' => 'Mastodon', // IGNORE + 'movim' => 'Movim', // IGNORE + 'pinboard' => 'Pinboard', // IGNORE + 'pocket' => 'Pocket', // IGNORE 'print' => 'Wydruk', - 'raindrop' => 'Raindrop.io', - 'shaarli' => 'Shaarli', - 'twitter' => 'Twitter', - 'wallabag' => 'wallabag v1', - 'wallabagv2' => 'wallabag v2', + 'raindrop' => 'Raindrop.io', // IGNORE + 'shaarli' => 'Shaarli', // IGNORE + 'twitter' => 'Twitter', // IGNORE + 'wallabag' => 'wallabag v1', // IGNORE + 'wallabagv2' => 'wallabag v2', // IGNORE ), 'short' => array( 'attention' => 'Uwaga!', @@ -212,7 +222,7 @@ return array( 'default_category' => 'Brak kategorii', 'no' => 'Nie', 'not_applicable' => 'Niedostępne', - 'ok' => 'Okay!', + 'ok' => 'Okay!', // IGNORE 'or' => 'lub', 'yes' => 'Tak', ), diff --git a/app/i18n/pl/index.php b/app/i18n/pl/index.php index 0562c8627..d11d187ed 100644 --- a/app/i18n/pl/index.php +++ b/app/i18n/pl/index.php @@ -1,9 +1,19 @@ <?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( 'about' => array( '_' => 'O serwisie', - 'agpl3' => '<a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL 3</a>', + 'agpl3' => '<a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL 3</a>', // IGNORE 'bugs_reports' => 'Zgłaszanie problemów', 'credits' => 'Uznanie autorstwa', 'credits_content' => 'Niektóre elementy designu pochodzą z <a href="http://twitter.github.io/bootstrap/">Bootstrapa</a>, przy czym FreshRSS nie używa tego frameworku. <a href="https://git.gnome.org/browse/gnome-icon-theme-symbolic">Ikony</a> zostały pierwotnie stworzone dla <a href="https://www.gnome.org/">projektu GNOME</a>. Font <em>Open Sans</em> jest autorstwa <a href="https://fonts.google.com/specimen/Open+Sans">Steve\'a Mattesona</a>. FreshRSS opiera się na <a href="https://github.com/marienfressinaud/MINZ">Minz</a>, frameworku PHP.', diff --git a/app/i18n/pl/install.php b/app/i18n/pl/install.php index 746347b54..bc6ad1778 100644 --- a/app/i18n/pl/install.php +++ b/app/i18n/pl/install.php @@ -1,123 +1,133 @@ <?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( 'action' => array( - 'finish' => 'Complete installation', // TODO - Translation - 'fix_errors_before' => 'Please all fix errors before continuing to the next step.', // TODO - Translation - 'keep_install' => 'Keep previous configuration', // TODO - Translation - 'next_step' => 'Go to the next step', // TODO - Translation - 'reinstall' => 'Reinstall FreshRSS', // TODO - Translation + 'finish' => 'Complete installation', // TODO + 'fix_errors_before' => 'Please all fix errors before continuing to the next step.', // TODO + 'keep_install' => 'Keep previous configuration', // TODO + 'next_step' => 'Go to the next step', // TODO + 'reinstall' => 'Reinstall FreshRSS', // TODO ), 'auth' => array( - 'form' => 'Web form (traditional, requires JavaScript)', // TODO - Translation - 'http' => 'HTTP (for advanced users with HTTPS)', // TODO - Translation - 'none' => 'None (dangerous)', // TODO - Translation - 'password_form' => 'Password<br /><small>(for the Web-form login method)</small>', // TODO - Translation - 'password_format' => 'At least 7 characters', // TODO - Translation - 'type' => 'Authentication method', // TODO - Translation + 'form' => 'Web form (traditional, requires JavaScript)', // TODO + 'http' => 'HTTP (for advanced users with HTTPS)', // TODO + 'none' => 'None (dangerous)', // TODO + 'password_form' => 'Password<br /><small>(for the Web-form login method)</small>', // TODO + 'password_format' => 'At least 7 characters', // TODO + 'type' => 'Authentication method', // TODO ), 'bdd' => array( - '_' => 'Database', // TODO - Translation + '_' => 'Database', // TODO 'conf' => array( - '_' => 'Database configuration', // TODO - Translation - 'ko' => 'Verify your database configuration.', // TODO - Translation - 'ok' => 'Database configuration has been saved.', // TODO - Translation - ), - 'host' => 'Host', // TODO - Translation - 'password' => 'Database password', // TODO - Translation - 'prefix' => 'Table prefix', // TODO - Translation - 'type' => 'Type of database', // TODO - Translation - 'username' => 'Database username', // TODO - Translation + '_' => 'Database configuration', // TODO + 'ko' => 'Verify your database configuration.', // TODO + 'ok' => 'Database configuration has been saved.', // TODO + ), + 'host' => 'Host', // TODO + 'password' => 'Database password', // TODO + 'prefix' => 'Table prefix', // TODO + 'type' => 'Type of database', // TODO + 'username' => 'Database username', // TODO ), 'check' => array( - '_' => 'Checks', // TODO - Translation - 'already_installed' => 'We have detected that FreshRSS is already installed!', // TODO - Translation + '_' => 'Checks', // TODO + 'already_installed' => 'We have detected that FreshRSS is already installed!', // TODO 'cache' => array( 'nok' => 'Check permissions on the <em>%1$s</em> directory for <em>%2$s</em> user. The HTTP server must have write permissions.', - 'ok' => 'Permissions on the cache directory are good.', // TODO - Translation + 'ok' => 'Permissions on the cache directory are good.', // TODO ), 'ctype' => array( - 'nok' => 'Cannot find the required library for character type checking (php-ctype).', // TODO - Translation - 'ok' => 'You have the required library for character type checking (ctype).', // TODO - Translation + 'nok' => 'Cannot find the required library for character type checking (php-ctype).', // TODO + 'ok' => 'You have the required library for character type checking (ctype).', // TODO ), 'curl' => array( - 'nok' => 'Cannot find the cURL library (php-curl package).', // TODO - Translation - 'ok' => 'You have the cURL library.', // TODO - Translation + 'nok' => 'Cannot find the cURL library (php-curl package).', // TODO + 'ok' => 'You have the cURL library.', // TODO ), 'data' => array( 'nok' => 'Check permissions on the <em>%1$s</em> directory for <em>%2$s</em> user. The HTTP server must have write permissions.', - 'ok' => 'Permissions on the data directory are good.', // TODO - Translation + 'ok' => 'Permissions on the data directory are good.', // TODO ), 'dom' => array( - 'nok' => 'Cannot find the required library to browse the DOM.', // TODO - Translation - 'ok' => 'You have the required library to browse the DOM.', // TODO - Translation + 'nok' => 'Cannot find the required library to browse the DOM.', // TODO + 'ok' => 'You have the required library to browse the DOM.', // TODO ), 'favicons' => array( 'nok' => 'Check permissions on the <em>%1$s</em> directory for <em>%2$s</em> user. The HTTP server must have write permissions.', - 'ok' => 'Permissions on the favicons directory are good.', // TODO - Translation + 'ok' => 'Permissions on the favicons directory are good.', // TODO ), 'fileinfo' => array( - 'nok' => 'Cannot find the PHP fileinfo library (fileinfo package).', // TODO - Translation - 'ok' => 'You have the fileinfo library.', // TODO - Translation + 'nok' => 'Cannot find the PHP fileinfo library (fileinfo package).', // TODO + 'ok' => 'You have the fileinfo library.', // TODO ), 'json' => array( - 'nok' => 'Cannot find the recommended library to parse JSON.', // TODO - Translation - 'ok' => 'You have the recommended library to parse JSON.', // TODO - Translation + 'nok' => 'Cannot find the recommended library to parse JSON.', // TODO + 'ok' => 'You have the recommended library to parse JSON.', // TODO ), 'mbstring' => array( - 'nok' => 'Cannot find the recommended library mbstring for Unicode.', // TODO - Translation - 'ok' => 'You have the recommended library mbstring for Unicode.', // TODO - Translation + 'nok' => 'Cannot find the recommended library mbstring for Unicode.', // TODO + 'ok' => 'You have the recommended library mbstring for Unicode.', // TODO ), 'pcre' => array( - 'nok' => 'Cannot find the required library for regular expressions (php-pcre).', // TODO - Translation - 'ok' => 'You have the required library for regular expressions (PCRE).', // TODO - Translation + 'nok' => 'Cannot find the required library for regular expressions (php-pcre).', // TODO + 'ok' => 'You have the required library for regular expressions (PCRE).', // TODO ), 'pdo' => array( - 'nok' => 'Cannot find PDO or one of the supported drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).', // TODO - Translation - 'ok' => 'You have PDO and at least one of the supported drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).', // TODO - Translation + 'nok' => 'Cannot find PDO or one of the supported drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).', // TODO + 'ok' => 'You have PDO and at least one of the supported drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).', // TODO ), 'php' => array( - 'nok' => 'Your PHP version is %s, but FreshRSS requires at least version %s.', // TODO - Translation - 'ok' => 'Your PHP version, %s, is compatible with FreshRSS.', // TODO - Translation + 'nok' => 'Your PHP version is %s, but FreshRSS requires at least version %s.', // TODO + 'ok' => 'Your PHP version, %s, is compatible with FreshRSS.', // TODO ), 'reload' => 'Sprawdź ponownie', 'tmp' => array( - 'nok' => 'Check permissions on the <em>%1$s</em> directory for <em>%2$s</em> user. The HTTP server must have write permissions.', // TODO - Translation - 'ok' => 'Permissions on the temp directory are good.', // TODO - Translation + 'nok' => 'Check permissions on the <em>%1$s</em> directory for <em>%2$s</em> user. The HTTP server must have write permissions.', // TODO + 'ok' => 'Permissions on the temp directory are good.', // TODO ), - 'unknown_process_username' => 'unknown', // TODO - Translation + 'unknown_process_username' => 'unknown', // TODO 'users' => array( - 'nok' => 'Check permissions on the <em>%1$s</em> directory for <em>%2$s</em> user. The HTTP server must have write permissions.', // TODO - Translation - 'ok' => 'Permissions on the users directory are good.', // TODO - Translation + 'nok' => 'Check permissions on the <em>%1$s</em> directory for <em>%2$s</em> user. The HTTP server must have write permissions.', // TODO + 'ok' => 'Permissions on the users directory are good.', // TODO ), 'xml' => array( - 'nok' => 'Cannot find the required library to parse XML.', // TODO - Translation - 'ok' => 'You have the required library to parse XML.', // TODO - Translation + 'nok' => 'Cannot find the required library to parse XML.', // TODO + 'ok' => 'You have the required library to parse XML.', // TODO ), ), 'conf' => array( - '_' => 'General configuration', // TODO - Translation - 'ok' => 'General configuration has been saved.', // TODO - Translation + '_' => 'General configuration', // TODO + 'ok' => 'General configuration has been saved.', // TODO ), - 'congratulations' => 'Congratulations!', // TODO - Translation - 'default_user' => 'Username of the default user <small>(maximum 16 alphanumeric characters)</small>', // TODO - Translation - 'fix_errors_before' => 'Please fix errors before continuing to the next step.', // TODO - Translation - 'javascript_is_better' => 'FreshRSS is more pleasant with JavaScript enabled', // TODO - Translation + 'congratulations' => 'Congratulations!', // TODO + 'default_user' => 'Username of the default user <small>(maximum 16 alphanumeric characters)</small>', // TODO + 'fix_errors_before' => 'Please fix errors before continuing to the next step.', // TODO + 'javascript_is_better' => 'FreshRSS is more pleasant with JavaScript enabled', // TODO 'js' => array( - 'confirm_reinstall' => 'You will lose your previous configuration by reinstalling FreshRSS. Are you sure you want to continue?', // TODO - Translation + 'confirm_reinstall' => 'You will lose your previous configuration by reinstalling FreshRSS. Are you sure you want to continue?', // TODO ), 'language' => array( - '_' => 'Language', // TODO - Translation - 'choose' => 'Choose a language for FreshRSS', // TODO - Translation - 'defined' => 'Language has been defined.', // TODO - Translation + '_' => 'Language', // TODO + 'choose' => 'Choose a language for FreshRSS', // TODO + 'defined' => 'Language has been defined.', // TODO ), - 'missing_applied_migrations' => 'Something went wrong; you should create an empty file <em>%s</em> manually.', // TODO - Translation - 'ok' => 'The installation process was successful.', // TODO - Translation + 'missing_applied_migrations' => 'Something went wrong; you should create an empty file <em>%s</em> manually.', // TODO + 'ok' => 'The installation process was successful.', // TODO 'session' => array( - 'nok' => 'The web server seems to be incorrectly configured for cookies required for PHP sessions!', // TODO - Translation + 'nok' => 'The web server seems to be incorrectly configured for cookies required for PHP sessions!', // TODO ), - 'step' => 'step %d', // TODO - Translation - 'steps' => 'Steps', // TODO - Translation - 'this_is_the_end' => 'This is the end', // TODO - Translation - 'title' => 'Installation · FreshRSS', // TODO - Translation + 'step' => 'step %d', // TODO + 'steps' => 'Steps', // TODO + 'this_is_the_end' => 'This is the end', // TODO + 'title' => 'Installation · FreshRSS', // TODO ); diff --git a/app/i18n/pl/sub.php b/app/i18n/pl/sub.php index 2683499e2..3c2f7b815 100644 --- a/app/i18n/pl/sub.php +++ b/app/i18n/pl/sub.php @@ -1,9 +1,19 @@ <?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( 'api' => array( 'documentation' => 'Skopiuj następujący URL, by wykorzystać go w zewnętrznym narzędziu.', - 'title' => 'API', + 'title' => 'API', // IGNORE ), 'bookmarklet' => array( 'documentation' => 'Przeciągnij ten guzik na pasek zakładek, albo kliknij go prawym przyciskiem myszy i wybierz opcję dodania odnośnika do listy zakładek. Dzięki temu będziesz mógł kliknąć w guzik „Subskrybuj” na dowolnej stronie, którą będziesz chciał zasubskrybować.', @@ -103,7 +113,7 @@ return array( 'feed_list' => 'Lista wiadomości z kanału %s', 'file_to_import' => 'Plik do zaimportowania<br />(formaty OPML, JSON lub ZIP)', 'file_to_import_no_zip' => 'Plik do zaimportowania<br />(OPML lub JSON)', - 'import' => 'Import', + 'import' => 'Import', // IGNORE 'starred_list' => 'Lista ulubionych wiadomości', 'title' => 'Import / eksport', ), diff --git a/app/i18n/pl/user.php b/app/i18n/pl/user.php index dfda5570b..8069d58c6 100644 --- a/app/i18n/pl/user.php +++ b/app/i18n/pl/user.php @@ -1,5 +1,15 @@ <?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( |
