aboutsummaryrefslogtreecommitdiff
path: root/app/i18n/he/gen.php
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <aledeg@users.noreply.github.com> 2022-01-08 08:00:26 -0500
committerGravatar GitHub <noreply@github.com> 2022-01-08 14:00:26 +0100
commit127b7f0a3aad7012055c058e8aba0d27192a8cbc (patch)
tree8ec9a5948672e702c944c202f78294b81104582f /app/i18n/he/gen.php
parented19445f74c30854c60873cd1df1c38e15fc316b (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/he/gen.php')
-rw-r--r--app/i18n/he/gen.php206
1 files changed, 108 insertions, 98 deletions
diff --git a/app/i18n/he/gen.php b/app/i18n/he/gen.php
index 44e708eda..9aa22a48f 100644
--- a/app/i18n/he/gen.php
+++ b/app/i18n/he/gen.php
@@ -1,65 +1,75 @@
<?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' => 'מימוש',
- 'add' => 'Add', // TODO - Translation
- 'back' => '← Go back', // TODO - Translation
+ 'add' => 'Add', // TODO
+ 'back' => '← Go back', // TODO
'back_to_rss_feeds' => '← חזרה להזנות הRSS שלך',
'cancel' => 'ביטול',
'create' => 'יצירה',
- 'demote' => 'Demote', // TODO - Translation
- 'disable' => 'Disable', // TODO - Translation
- 'empty' => 'Empty', // TODO - Translation
- 'enable' => 'Enable', // TODO - Translation
+ 'demote' => 'Demote', // TODO
+ 'disable' => 'Disable', // TODO
+ 'empty' => 'Empty', // TODO
+ 'enable' => 'Enable', // TODO
'export' => 'ייצוא',
'filter' => 'מסנן',
'import' => 'ייבוא',
- 'load_default_shortcuts' => 'Load default shortcuts', // TODO - Translation
+ 'load_default_shortcuts' => 'Load default shortcuts', // TODO
'manage' => 'ניהול',
'mark_read' => 'סימון כנקרא',
- 'promote' => 'Promote', // TODO - Translation
- 'purge' => 'Purge', // TODO - Translation
- 'remove' => 'Remove', // TODO - Translation
- 'rename' => 'Rename', // TODO - Translation
+ 'promote' => 'Promote', // TODO
+ 'purge' => 'Purge', // TODO
+ 'remove' => 'Remove', // TODO
+ 'rename' => 'Rename', // TODO
'see_website' => 'ראו אתר',
'submit' => 'אישור',
'truncate' => 'מחיקת כל המאמרים',
- 'update' => 'Update', // TODO - Translation
+ 'update' => 'Update', // TODO
),
'auth' => array(
- 'accept_tos' => 'I accept the <a href="%s">Terms of Service</a>.', // TODO - Translation
- 'email' => 'Email address', // TODO - Translation
+ 'accept_tos' => 'I accept the <a href="%s">Terms of Service</a>.', // TODO
+ 'email' => 'Email address', // TODO
'keep_logged_in' => 'השאר מחובר <small>חודש</small>',
'login' => 'כניסה לחשבון',
'logout' => 'יציאה מהחשבון',
'password' => array(
'_' => 'סיסמה',
- 'format' => '<small>At least 7 characters</small>', // TODO - Translation
+ 'format' => '<small>At least 7 characters</small>', // TODO
),
'registration' => array(
- '_' => 'New account', // TODO - Translation
- 'ask' => 'Create an account?', // TODO - Translation
- 'title' => 'Account creation', // TODO - Translation
+ '_' => 'New account', // TODO
+ 'ask' => 'Create an account?', // TODO
+ 'title' => 'Account creation', // TODO
),
'username' => array(
'_' => 'שם משתמש',
- 'format' => '<small>Maximum 16 alphanumeric characters</small>', // TODO - Translation
+ 'format' => '<small>Maximum 16 alphanumeric characters</small>', // TODO
),
),
'date' => array(
- 'Apr' => '\\A\\p\\r\\i\\l', // TODO - Translation
- 'Aug' => '\\A\\u\\g\\u\\s\\t', // TODO - Translation
- 'Dec' => '\\D\\e\\c\\e\\m\\b\\e\\r', // TODO - Translation
- 'Feb' => '\\F\\e\\b\\r\\u\\a\\r\\y', // TODO - Translation
- 'Jan' => '\\J\\a\\n\\u\\a\\r\\y', // TODO - Translation
- 'Jul' => '\\J\\u\\l\\y', // TODO - Translation
- 'Jun' => '\\J\\u\\n\\e', // TODO - Translation
- 'Mar' => '\\M\\a\\r\\c\\h', // TODO - Translation
- 'May' => '\\M\\a\\y', // TODO - Translation
- 'Nov' => '\\N\\o\\v\\e\\m\\b\\e\\r', // TODO - Translation
- 'Oct' => '\\O\\c\\t\\o\\b\\e\\r', // TODO - Translation
- 'Sep' => '\\S\\e\\p\\t\\e\\m\\b\\e\\r', // TODO - Translation
+ 'Apr' => '\\A\\p\\r\\i\\l', // TODO
+ 'Aug' => '\\A\\u\\g\\u\\s\\t', // TODO
+ 'Dec' => '\\D\\e\\c\\e\\m\\b\\e\\r', // TODO
+ 'Feb' => '\\F\\e\\b\\r\\u\\a\\r\\y', // TODO
+ 'Jan' => '\\J\\a\\n\\u\\a\\r\\y', // TODO
+ 'Jul' => '\\J\\u\\l\\y', // TODO
+ 'Jun' => '\\J\\u\\n\\e', // TODO
+ 'Mar' => '\\M\\a\\r\\c\\h', // TODO
+ 'May' => '\\M\\a\\y', // TODO
+ 'Nov' => '\\N\\o\\v\\e\\m\\b\\e\\r', // TODO
+ 'Oct' => '\\O\\c\\t\\o\\b\\e\\r', // TODO
+ 'Sep' => '\\S\\e\\p\\t\\e\\m\\b\\e\\r', // TODO
'apr' => 'apr',
'april' => 'Apr',
'aug' => 'aug',
@@ -69,90 +79,90 @@ return array(
'december' => 'Dec',
'feb' => 'feb',
'february' => 'Feb',
- 'format_date' => 'j %s Y',
- 'format_date_hour' => 'j %s Y \\a\\t H\\:i',
- 'fri' => 'Fri', // TODO - Translation
+ 'format_date' => 'j %s Y', // IGNORE
+ 'format_date_hour' => 'j %s Y \\a\\t H\\:i', // IGNORE
+ 'fri' => 'Fri', // TODO
'jan' => 'jan',
'january' => 'Jan',
'jul' => 'jul',
'july' => 'Jul',
'jun' => 'jun',
'june' => 'Jun',
- 'last_2_year' => 'Last two years', // TODO - Translation
+ 'last_2_year' => 'Last two years', // TODO
'last_3_month' => 'בשלושת החודשים האחרונים',
- 'last_3_year' => 'Last three years', // TODO - Translation
- 'last_5_year' => 'Last five years', // TODO - Translation
+ 'last_3_year' => 'Last three years', // TODO
+ 'last_5_year' => 'Last five years', // TODO
'last_6_month' => 'בששת החודשים האחרונים',
'last_month' => 'בחודש שעבר',
'last_week' => 'בשבוע שעבר',
'last_year' => 'בשנה האחרונה',
'mar' => 'mar',
'march' => 'Mar',
- 'may' => 'May', // TODO - Translation
- 'may_' => 'May', // TODO - Translation
- 'mon' => 'Mon', // TODO - Translation
+ 'may' => 'May', // TODO
+ 'may_' => 'May', // TODO
+ 'mon' => 'Mon', // TODO
'month' => 'חודשים',
'nov' => 'nov',
'november' => 'Nov',
'oct' => 'oct',
'october' => 'Oct',
- 'sat' => 'Sat', // TODO - Translation
+ 'sat' => 'Sat', // TODO
'sep' => 'sep',
'september' => 'Sep',
- 'sun' => 'Sun', // TODO - Translation
- 'thu' => 'Thu', // TODO - Translation
+ 'sun' => 'Sun', // TODO
+ 'thu' => 'Thu', // TODO
'today' => 'היום',
- 'tue' => 'Tue', // TODO - Translation
- 'wed' => 'Wed', // TODO - Translation
+ 'tue' => 'Tue', // TODO
+ 'wed' => 'Wed', // TODO
'yesterday' => 'אתמול',
),
'dir' => 'rtl',
'freshrss' => array(
- '_' => 'FreshRSS', // TODO - Translation
+ '_' => 'FreshRSS', // TODO
'about' => 'אודות FreshRSS',
),
'js' => array(
- 'category_empty' => 'Empty category', // TODO - Translation
+ 'category_empty' => 'Empty category', // TODO
'confirm_action' => 'האם אתם בטוחים שברצונכם לבצע פעולה זו? אין אפשרות לבטל אותה!',
'confirm_action_feed_cat' => 'האם אתם בטוחים שברצוניכם לבצע פעולה זו? מועדפים ושאילתות עשויות לאבוד. אין אפשרות לבטל אותה!',
'feedback' => array(
'body_new_articles' => 'ישנם \\d מאמרים חדשים לקרוא ב FreshRSS.',
- 'request_failed' => 'A request has failed, it may have been caused by internet connection problems.', // TODO - Translation
+ 'request_failed' => 'A request has failed, it may have been caused by internet connection problems.', // TODO
'title_new_articles' => 'FreshRSS: מאמרים חדשים!',
),
'new_article' => 'מאמרים חדשים זמינים, לחצו לרענון העמוד.',
'should_be_activated' => 'חובה להפעיל JavaScript',
),
'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' => 'אודות',
- 'account' => 'Account', // TODO - Translation
+ 'account' => 'Account', // TODO
'admin' => 'ניהול',
'archiving' => 'ארכוב',
- 'authentication' => 'Authentication', // TODO - Translation
- 'check_install' => 'Installation check', // TODO - Translation
+ 'authentication' => 'Authentication', // TODO
+ 'check_install' => 'Installation check', // TODO
'configuration' => 'הגדרות',
'display' => 'תצוגה',
- 'extensions' => 'Extensions', // TODO - Translation
+ 'extensions' => 'Extensions', // TODO
'logs' => 'לוגים',
'queries' => 'שאילתות',
'reading' => 'קריאה',
@@ -160,10 +170,10 @@ return array(
'sharing' => 'שיתוף',
'shortcuts' => 'קיצורי דרך',
'stats' => 'סטטיסטיקות',
- 'system' => 'System configuration', // TODO - Translation
+ 'system' => 'System configuration', // TODO
'update' => 'עדכון',
- 'user_management' => 'Manage users', // TODO - Translation
- 'user_profile' => 'Profile', // TODO - Translation
+ 'user_management' => 'Manage users', // TODO
+ 'user_profile' => 'Profile', // TODO
),
'pagination' => array(
'first' => 'הראשון',
@@ -175,33 +185,33 @@ return array(
'previous' => 'הקודם',
),
'period' => array(
- 'days' => 'days', // TODO - Translation
- 'hours' => 'hours', // TODO - Translation
- 'months' => 'months', // TODO - Translation
- 'weeks' => 'weeks', // TODO - Translation
- 'years' => 'years', // TODO - Translation
+ 'days' => 'days', // TODO
+ 'hours' => 'hours', // TODO
+ 'months' => 'months', // TODO
+ 'weeks' => 'weeks', // TODO
+ 'years' => 'years', // TODO
),
'share' => array(
- 'Known' => 'Known based sites', // TODO - Translation
- 'blogotext' => 'Blogotext',
- 'clipboard' => 'Clipboard', // TODO - Translation
- 'diaspora' => 'Diaspora*',
+ 'Known' => 'Known based sites', // TODO
+ 'blogotext' => 'Blogotext', // IGNORE
+ 'clipboard' => 'Clipboard', // TODO
+ 'diaspora' => 'Diaspora*', // IGNORE
'email' => 'דואר אלקטרוני',
- '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' => 'הדפסה',
- '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' => 'זהירות!',
@@ -210,8 +220,8 @@ return array(
'by_default' => 'ברירת מחדל',
'damn' => 'הו לא!',
'default_category' => 'ללא קטגוריה',
- 'no' => 'לא',
- 'not_applicable' => 'Not available', // TODO - Translation
+ 'no' => 'לא', // IGNORE
+ 'not_applicable' => 'Not available', // TODO
'ok' => 'כן!',
'or' => 'או',
'yes' => 'כן',