3.1: גרסה RC3 יצאה לאור

דיון כללי על המערכת החדשה. ספרו לנו איך אתם מסתדרים איתה, הציעו הצעות, הביעו דיעות וכו'. שימו לב שזהו אינו פורום תמיכה.

מנהל: צוות האתר

ttttt
משתמש מתקדם
משתמש מתקדם
הודעות: 1435
הצטרף: 08/01/2006 ב-21:29:11

3.1: גרסה RC3 יצאה לאור

הודעה שלא נקראהעל ידי ttttt » 12/08/2014 ב-17:51:03

https://www.phpbb.com/community/viewtop ... ead#unread

ההבדלים בקבצי השפה הם קטנים, פרט לעובדה שנוסף קובץ שפה חדש בשם cli. להבנתי, הקובץ הזה מיועד להרצת כלים משורת הפקודה על השרת, ולא יקרה שום אסון אם הקובץ הזה ישאר באנגלית - מי שמריץ סקריפטים על השרת משורת הפקודה ממילא יחוש נוח יותר בלי תרגומים שרק יכולים לבלבל.

להלן ריכוז כל השינויים בקובצי השפה מאז RC2. אפשר גם כאן: https://gist.github.com/nickvergessen/c ... 427bc83768.

קוד: בחר הכל

diff --git a/phpBB/language/en/acp/common.php b/phpBB/language/en/acp/common.php
index 61c7181..91fc121 100644
--- a/phpBB/language/en/acp/common.php
+++ b/phpBB/language/en/acp/common.php
@@ -225,12 +225,6 @@ $lang = array_merge($lang, array(
 
    'BACK'               => 'Back',
 
-   'CLI_DESCRIPTION_CRON_LIST'            => 'Prints a list of ready and unready cron jobs.',
-   'CLI_DESCRIPTION_CRON_RUN'            => 'Runs all ready cron tasks.',
-   'CLI_DESCRIPTION_CRON_RUN_ARGUMENT_1'   => 'Name of the task to be run',
-
-   'CLI_DESCRIPTION_OPTION_SHELL'         => 'Launch the shell.',
-
    'COLOUR_SWATCH'         => 'Web-safe colour swatch',
    'CONFIG_UPDATED'      => 'Configuration updated successfully.',
    'CRON_LOCK_ERROR'      => 'Could not obtain cron lock.',
diff --git a/phpBB/language/en/acp/extensions.php b/phpBB/language/en/acp/extensions.php
index 6ec722b..28cdc88 100644
--- a/phpBB/language/en/acp/extensions.php
+++ b/phpBB/language/en/acp/extensions.php
@@ -42,6 +42,7 @@ $lang = array_merge($lang, array(
    'EXTENSION_INVALID_LIST'   => 'The “%s” extension is not valid.<br />%s<br /><br />',
    'EXTENSION_NOT_AVAILABLE'   => 'The selected extension is not available for this board, please verify your phpBB and PHP versions are allowed (see the details page).',
    'EXTENSION_DIR_INVALID'      => 'The selected extension has an invalid directory structure and cannot be enabled.',
+   'EXTENSION_NOT_ENABLEABLE'   => 'The selected extension cannot be enabled, please verify the extension’s requirements.',
 
    'DETAILS'            => 'Details',
 
diff --git a/phpBB/language/en/cli.php b/phpBB/language/en/cli.php
new file mode 100644
index 0000000..eb0f5bb
--- /dev/null
+++ b/phpBB/language/en/cli.php
@@ -0,0 +1,78 @@
+<?php
+/**
+*
+* This file is part of the phpBB Forum Software package.
+*
+* @copyright (c) phpBB Limited <https://www.phpbb.com>
+* @license GNU General Public License, version 2 (GPL-2.0)
+*
+* For full copyright and license information, please see
+* the docs/CREDITS.txt file.
+*
+*/
+
+if (!defined('IN_PHPBB'))
+{
+   exit;
+}
+
+/**
+* DO NOT CHANGE
+*/
+if (empty($lang) || !is_array($lang))
+{
+   $lang = array();
+}
+
+// DEVELOPERS PLEASE NOTE
+//
+// Placeholders can now contain order information, e.g. instead of
+// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
+// translators to re-order the output of data while ensuring it remains correct
+//
+// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
+// equally where a string contains only two placeholders which are used to wrap text
+// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
+
+$lang = array_merge($lang, array(
+   'CLI_CONFIG_CANNOT_CACHED'         => 'Set this option if the configuration option changes too frequently to be efficiently cached.',
+   'CLI_CONFIG_CURRENT'            => 'Current configuration value, use 0 and 1 to specify boolean values',
+   'CLI_CONFIG_DELETE_SUCCESS'         => 'Successfully deleted config %s.',
+   'CLI_CONFIG_NEW'               => 'New configuration value, use 0 and 1 to specify boolean values',
+   'CLI_CONFIG_NOT_EXISTS'            => 'Config %s does not exist',
+   'CLI_CONFIG_OPTION_NAME'         => 'The configuration option’s name',
+   'CLI_CONFIG_PRINT_WITHOUT_NEWLINE'   => 'Set this option if the value should be printed without a new line at the end.',
+   'CLI_CONFIG_INCREMENT_BY'         => 'Amount to increment by',
+   'CLI_CONFIG_INCREMENT_SUCCESS'      => 'Successfully incremented config %s',
+   'CLI_CONFIG_SET_FAILURE'         => 'Could not set config %s',
+   'CLI_CONFIG_SET_SUCCESS'         => 'Successfully set config %s',
+
+   'CLI_DESCRIPTION_CRON_LIST'               => 'Prints a list of ready and unready cron jobs.',
+   'CLI_DESCRIPTION_CRON_RUN'               => 'Runs all ready cron tasks.',
+   'CLI_DESCRIPTION_CRON_RUN_ARGUMENT_1'      => 'Name of the task to be run',
+   'CLI_DESCRIPTION_DB_MIGRATE'            => 'Updates the database by applying migrations.',
+   'CLI_DESCRIPTION_DELETE_CONFIG'            => 'Deletes a configuration option',
+   'CLI_DESCRIPTION_DISABLE_EXTENSION'         => 'Disables the specified extension.',
+   'CLI_DESCRIPTION_ENABLE_EXTENSION'         => 'Enables the specified extension.',
+   'CLI_DESCRIPTION_FIND_MIGRATIONS'         => 'Finds migrations that are not depended on.',
+   'CLI_DESCRIPTION_GET_CONFIG'            => 'Gets a configuration option’s value',
+   'CLI_DESCRIPTION_INCREMENT_CONFIG'         => 'Increments a configuration option’s value',
+   'CLI_DESCRIPTION_LIST_EXTENSIONS'         => 'Lists all extensions in the database and on the filesystem.',
+   'CLI_DESCRIPTION_OPTION_SAFE_MODE'         => 'Run in Safe Mode (without extensions).',
+   'CLI_DESCRIPTION_OPTION_SHELL'            => 'Launch the shell.',
+   'CLI_DESCRIPTION_PURGE_EXTENSION'         => 'Purges the specified extension.',
+   'CLI_DESCRIPTION_RECALCULATE_EMAIL_HASH'   => 'Recalculates the user_email_hash column of the users table.',
+   'CLI_DESCRIPTION_SET_ATOMIC_CONFIG'         => 'Sets a configuration option’s value only if the old matches the current value',
+   'CLI_DESCRIPTION_SET_CONFIG'            => 'Sets a configuration option’s value',
+
+   'CLI_EXTENSION_DISABLE_FAILURE'      => 'Could not disable extension %s',
+   'CLI_EXTENSION_DISABLE_SUCCESS'      => 'Successfully disabled extension %s',
+   'CLI_EXTENSION_ENABLE_FAILURE'      => 'Could not enable extension %s',
+   'CLI_EXTENSION_ENABLE_SUCCESS'      => 'Successfully enabled extension %s',
+   'CLI_EXTENSION_NAME'            => 'Name of the extension',
+   'CLI_EXTENSION_PURGE_FAILURE'      => 'Could not purge extension %s',
+   'CLI_EXTENSION_PURGE_SUCCESS'      => 'Successfully purged extension %s',
+   'CLI_EXTENSION_NOT_FOUND'         => 'No extensions were found.',
+
+   'CLI_FIXUP_RECALCULATE_EMAIL_HASH_SUCCESS'   => 'Successfully recalculated all email hashes.',
+));
diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php
index 5af3ad4..783faa8 100644
--- a/phpBB/language/en/common.php
+++ b/phpBB/language/en/common.php
@@ -167,6 +167,7 @@ $lang = array_merge($lang, array(
    'CONFIRM_CODE_EXPLAIN'   => 'Enter the code exactly as it appears. All letters are case insensitive.',
    'CONFIRM_CODE_WRONG'   => 'The confirmation code you entered was incorrect.',
    'CONFIRM_OPERATION'      => 'Are you sure you wish to carry out this operation?',
+   'CONFIRM_AVATAR_DELETE' => 'Are you sure you wish to delete this avatar?',
    'CONGRATULATIONS'      => 'Congratulations to',
    'CONNECTION_FAILED'      => 'Connection failed.',
    'CONNECTION_SUCCESS'   => 'Connection was successful!',
@@ -191,8 +192,6 @@ $lang = array_merge($lang, array(
    'DISPLAY_MESSAGES'      => 'Display messages from previous',
    'DISPLAY_POSTS'         => 'Display posts from previous',
    'DISPLAY_TOPICS'      => 'Display topics from previous',
-   'DOWNLOAD_ALL'         => 'Download all',
-   'DOWNLOAD_ALL_ATTACHMENTS'   => 'Download all attachments',
    'DOWNLOADED'         => 'Downloaded',
    'DOWNLOADING_FILE'      => 'Downloading file',
    'DOWNLOAD_COUNTS'      => array(
@@ -483,7 +482,6 @@ $lang = array_merge($lang, array(
    'NO_AUTH_ADMIN_USER_DIFFER'   => 'You are not able to re-authenticate as a different user.',
    'NO_AUTH_OPERATION'         => 'You do not have the necessary permissions to complete this operation.',
    'NO_AVATARS'            => 'No avatars currently available',
-   'NO_AVATAR_SELECTED'      => 'You have not selected any avatar.',
    'NO_CONNECT_TO_SMTP_HOST'   => 'Could not connect to smtp host : %1$s : %2$s',
    'NO_BIRTHDAYS'            => 'No birthdays today',
    'NO_EMAIL_MESSAGE'         => 'Email message was blank.',
@@ -821,6 +819,7 @@ $lang = array_merge($lang, array(
       1   => 'Viewed %d time',
       2   => 'Viewed %d times',
    ),
+   'VIEWING_CONTACT_ADMIN'      => 'Viewing contact page',
    'VIEWING_FAQ'            => 'Viewing FAQ',
    'VIEWING_MEMBERS'         => 'Viewing member details',
    'VIEWING_ONLINE'         => 'Viewing who is online',
diff --git a/phpBB/language/en/posting.php b/phpBB/language/en/posting.php
index 31d49e8..2cd6ec5 100644
--- a/phpBB/language/en/posting.php
+++ b/phpBB/language/en/posting.php
@@ -60,7 +60,7 @@ $lang = array_merge($lang, array(
    'BBCODE_O_HELP'            => 'Ordered list: e.g. [list=1][*]First point[/list] or [list=a][*]Point a[/list]',
    'BBCODE_P_HELP'            => 'Insert image: [img]http://image_url[/img]',
    'BBCODE_Q_HELP'            => 'Quote text: [quote]text[/quote]',
-   'BBCODE_S_HELP'            => 'Font colour: [color=red]text[/color]  Tip: you can also use color=#FF0000',
+   'BBCODE_S_HELP'            => 'Font colour: [color=red]text[/color] or [color=#FF0000]text[/color]',
    'BBCODE_U_HELP'            => 'Underline text: [u]text[/u]',
    'BBCODE_W_HELP'            => 'Insert URL: [url]http://url[/url] or [url=http://url]URL text[/url]',
    'BBCODE_Y_HELP'            => 'List: Add list element',
diff --git a/phpBB/language/en/ucp.php b/phpBB/language/en/ucp.php
index d464a92..d692828 100644
--- a/phpBB/language/en/ucp.php
+++ b/phpBB/language/en/ucp.php
@@ -40,7 +40,7 @@ if (empty($lang) || !is_array($lang))
 $lang = array_merge($lang, array(
    'TERMS_OF_USE_CONTENT'   => 'By accessing “%1$s” (hereinafter “we”, “us”, “our”, “%1$s”, “%2$s”), you agree to be legally bound by the following terms. If you do not agree to be legally bound by all of the following terms then please do not access and/or use “%1$s”. We may change these at any time and we’ll do our utmost in informing you, though it would be prudent to review this regularly yourself as your continued usage of “%1$s” after changes mean you agree to be legally bound by these terms as they are updated and/or amended.<br />
    <br />
-   Our forums are powered by phpBB (hereinafter “they”, “them”, “their”, “phpBB software”, “www.phpbb.com”, “phpBB Limited”, “phpBB Teams”) which is a bulletin board solution released under the “<a href="http://opensource.org/licenses/gpl-2.0.php">GNU General Public License v2</a>” (hereinafter “GPL”) and can be downloaded from <a href="https://www.phpbb.com/">www.phpbb.com</a>. The phpBB software only facilitates internet based discussions, the phpBB Limited are not responsible for what we allow and/or disallow as permissible content and/or conduct. For further information about phpBB, please see: <a href="https://www.phpbb.com/">https://www.phpbb.com/</a>.<br />
+   Our forums are powered by phpBB (hereinafter “they”, “them”, “their”, “phpBB software”, “www.phpbb.com”, “phpBB Limited”, “phpBB Teams”) which is a bulletin board solution released under the “<a href="http://opensource.org/licenses/gpl-2.0.php">GNU General Public License v2</a>” (hereinafter “GPL”) and can be downloaded from <a href="https://www.phpbb.com/">www.phpbb.com</a>. The phpBB software only facilitates internet based discussions; phpBB Limited is not responsible for what we allow and/or disallow as permissible content and/or conduct. For further information about phpBB, please see: <a href="https://www.phpbb.com/">https://www.phpbb.com/</a>.<br />
    <br />
    You agree not to post any abusive, obscene, vulgar, slanderous, hateful, threatening, sexually-orientated or any other material that may violate any laws be it of your country, the country where “%1$s” is hosted or International Law. Doing so may lead to you being immediately and permanently banned, with notification of your Internet Service Provider if deemed required by us. The IP address of all posts are recorded to aid in enforcing these conditions. You agree that “%1$s” have the right to remove, edit, move or close any topic at any time should we see fit. As a user you agree to any information you have entered to being stored in a database. While this information will not be disclosed to any third party without your consent, neither “%1$s” nor phpBB shall be held responsible for any hacking attempt that may lead to the data being compromised.
    ',
נערך לאחרונה על ידי ttttt ב 12/08/2014 ב-23:02:52, נערך פעם 1 בסך הכל.

spider2com
משתמש חדש
משתמש חדש
הודעות: 18
הצטרף: 12/08/2014 ב-17:59:19

Re: 3.1: גרסה RC3 יצאה לאור

הודעה שלא נקראהעל ידי spider2com » 12/08/2014 ב-18:04:51

נחמד!מחכה כבר לתרגום :D
והתקנתי את הגרסה והיא נראת אחלה וממש טובה יותר מהקודמות
וגם יש שם מוד יצירת קשר מובנה :D


חזור אל “דיון”

מי מחובר

משתמשים הגולשים בפורום זה: אין משתמשים רשומים ו־ 24 אורחים

cron