1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-01 14:30:32 +02:00

[ticket/12226] Split language strings to correctly allow multiple plural rules

PHPBB3-12226
This commit is contained in:
Joas Schilling
2014-02-24 09:46:31 +01:00
parent 4b7932e8b3
commit 87dfd76100
4 changed files with 14 additions and 9 deletions

View File

@@ -394,6 +394,10 @@ $lang = array_merge($lang, array(
'MERGE_TOPIC' => 'Merge topic',
'MESSAGE' => 'Message',
'MESSAGES' => 'Messages',
'MESSAGES_COUNT' => array(
1 => '%d message',
2 => '%d messages',
),
'MESSAGE_BODY' => 'Message body',
'MINUTES' => 'Minutes',
'MODERATE' => 'Moderate',

View File

@@ -216,8 +216,8 @@ $lang = array_merge($lang, array(
'FOES_UPDATED' => 'Your foes list has been updated successfully.',
'FOLDER_ADDED' => 'Folder successfully added.',
'FOLDER_MESSAGE_STATUS' => array(
1 => '%2$d from %1$d message stored',
2 => '%2$d from %1$d messages stored',
1 => '%2$d from %1$s stored',
2 => '%2$d from %1$s stored',
),
'FOLDER_NAME_EMPTY' => 'You must enter a name for this folder.',
'FOLDER_NAME_EXIST' => 'Folder <strong>%s</strong> already exists.',
@@ -225,8 +225,8 @@ $lang = array_merge($lang, array(
'FOLDER_RENAMED' => 'Folder successfully renamed.',
'FOLDER_REMOVED' => 'Folder successfully removed.',
'FOLDER_STATUS_MSG' => array(
1 => 'Folder is %3$d%% full (%2$d from %1$d message stored)',
2 => 'Folder is %3$d%% full (%2$d from %1$d messages stored)',
1 => 'Folder is %3$d%% full (%2$d from %1$s stored)',
2 => 'Folder is %3$d%% full (%2$d from %1$s stored)',
),
'FORWARD_PM' => 'Forward PM',
'FORCE_PASSWORD_EXPLAIN' => 'Before you may continue browsing the board you are required to change your password.',
@@ -297,7 +297,8 @@ $lang = array_merge($lang, array(
'MOVE_DOWN' => 'Move down',
'MOVE_MARKED_TO_FOLDER' => 'Move marked to %s',
'MOVE_PM_ERROR' => array(
2 => 'An error occurred while moving the messages to the new folder, only %2d from %1d messages were moved.',
1 => 'An error occurred while moving the messages to the new folder, only %2$d from %1$s was moved.',
2 => 'An error occurred while moving the messages to the new folder, only %2$d from %1$s were moved.',
),
'MOVE_TO_FOLDER' => 'Move to folder',
'MOVE_UP' => 'Move up',