mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/10345] Remove some unused 0 cases
PHPBB3-10345
This commit is contained in:
parent
c4aa8d8401
commit
7da6826a67
5 changed files with 0 additions and 16 deletions
|
@ -678,19 +678,13 @@ $lang = array_merge($lang, array(
|
||||||
),
|
),
|
||||||
'TOTAL_POSTS' => 'Total posts',
|
'TOTAL_POSTS' => 'Total posts',
|
||||||
'TOTAL_POSTS_COUNT' => array(
|
'TOTAL_POSTS_COUNT' => array(
|
||||||
0 => 'Total posts <strong>0</strong>',
|
|
||||||
1 => 'Total posts <strong>%d</strong>',
|
|
||||||
2 => 'Total posts <strong>%d</strong>',
|
2 => 'Total posts <strong>%d</strong>',
|
||||||
),
|
),
|
||||||
'TOPIC_REPORTED' => 'This topic has been reported',
|
'TOPIC_REPORTED' => 'This topic has been reported',
|
||||||
'TOTAL_TOPICS' => array(
|
'TOTAL_TOPICS' => array(
|
||||||
0 => 'Total topics <strong>0</strong>',
|
|
||||||
1 => 'Total topics <strong>%d</strong>',
|
|
||||||
2 => 'Total topics <strong>%d</strong>',
|
2 => 'Total topics <strong>%d</strong>',
|
||||||
),
|
),
|
||||||
'TOTAL_USERS' => array(
|
'TOTAL_USERS' => array(
|
||||||
0 => 'Total members <strong>0</strong>',
|
|
||||||
1 => 'Total members <strong>%d</strong>',
|
|
||||||
2 => 'Total members <strong>%d</strong>',
|
2 => 'Total members <strong>%d</strong>',
|
||||||
),
|
),
|
||||||
'TRACKED_PHP_ERROR' => 'Tracked PHP errors: %s',
|
'TRACKED_PHP_ERROR' => 'Tracked PHP errors: %s',
|
||||||
|
|
|
@ -42,12 +42,10 @@ $lang = array_merge($lang, array(
|
||||||
'DISPLAY_RESULTS' => 'Display results as',
|
'DISPLAY_RESULTS' => 'Display results as',
|
||||||
|
|
||||||
'FOUND_SEARCH_MATCHES' => array(
|
'FOUND_SEARCH_MATCHES' => array(
|
||||||
0 => 'Search found %d matches',
|
|
||||||
1 => 'Search found %d match',
|
1 => 'Search found %d match',
|
||||||
2 => 'Search found %d matches',
|
2 => 'Search found %d matches',
|
||||||
),
|
),
|
||||||
'FOUND_MORE_SEARCH_MATCHES' => array(
|
'FOUND_MORE_SEARCH_MATCHES' => array(
|
||||||
0 => 'Search found more than %d matches',
|
|
||||||
1 => 'Search found more than %d match',
|
1 => 'Search found more than %d match',
|
||||||
2 => 'Search found more than %d matches',
|
2 => 'Search found more than %d matches',
|
||||||
),
|
),
|
||||||
|
@ -108,7 +106,6 @@ $lang = array_merge($lang, array(
|
||||||
'SORT_TIME' => 'Post time',
|
'SORT_TIME' => 'Post time',
|
||||||
|
|
||||||
'TOO_FEW_AUTHOR_CHARS' => array(
|
'TOO_FEW_AUTHOR_CHARS' => array(
|
||||||
0 => 'You must specify at least %d characters of the authors name.',
|
|
||||||
1 => 'You must specify at least %d character of the authors name.',
|
1 => 'You must specify at least %d character of the authors name.',
|
||||||
2 => 'You must specify at least %d characters of the authors name.',
|
2 => 'You must specify at least %d characters of the authors name.',
|
||||||
),
|
),
|
||||||
|
|
|
@ -309,7 +309,6 @@ $lang = array_merge($lang, array(
|
||||||
'NOT_AGREE' => 'I do not agree to these terms',
|
'NOT_AGREE' => 'I do not agree to these terms',
|
||||||
'NOT_ENOUGH_SPACE_FOLDER' => 'The destination folder “%s” seems to be full. The requested action has not been taken.',
|
'NOT_ENOUGH_SPACE_FOLDER' => 'The destination folder “%s” seems to be full. The requested action has not been taken.',
|
||||||
'NOT_MOVED_MESSAGES' => array(
|
'NOT_MOVED_MESSAGES' => array(
|
||||||
0 => 'You have %d private messages currently on hold because of full folder.',
|
|
||||||
1 => 'You have %d private message currently on hold because of full folder.',
|
1 => 'You have %d private message currently on hold because of full folder.',
|
||||||
2 => 'You have %d private messages currently on hold because of full folder.',
|
2 => 'You have %d private messages currently on hold because of full folder.',
|
||||||
),
|
),
|
||||||
|
@ -408,7 +407,6 @@ $lang = array_merge($lang, array(
|
||||||
'RULE_DELETED' => 'Rule successfully removed.',
|
'RULE_DELETED' => 'Rule successfully removed.',
|
||||||
'RULE_NOT_DEFINED' => 'Rule not correctly specified.',
|
'RULE_NOT_DEFINED' => 'Rule not correctly specified.',
|
||||||
'RULE_REMOVED_MESSAGES' => array(
|
'RULE_REMOVED_MESSAGES' => array(
|
||||||
0 => '%d private messages were removed due to private message filters.',
|
|
||||||
1 => '%d private message was removed due to private message filters.',
|
1 => '%d private message was removed due to private message filters.',
|
||||||
2 => '%d private messages were removed due to private message filters.',
|
2 => '%d private messages were removed due to private message filters.',
|
||||||
),
|
),
|
||||||
|
@ -512,7 +510,6 @@ $lang = array_merge($lang, array(
|
||||||
'VIEW_PM' => 'View message',
|
'VIEW_PM' => 'View message',
|
||||||
'VIEW_PM_INFO' => 'Message details',
|
'VIEW_PM_INFO' => 'Message details',
|
||||||
'VIEW_PM_MESSAGES' => array(
|
'VIEW_PM_MESSAGES' => array(
|
||||||
0 => '%d messages',
|
|
||||||
1 => '%d message',
|
1 => '%d message',
|
||||||
2 => '%d messages',
|
2 => '%d messages',
|
||||||
),
|
),
|
||||||
|
|
|
@ -65,7 +65,6 @@ $lang = array_merge($lang, array(
|
||||||
|
|
||||||
'VIEW_FORUM' => 'View forum',
|
'VIEW_FORUM' => 'View forum',
|
||||||
'VIEW_FORUM_TOPICS' => array(
|
'VIEW_FORUM_TOPICS' => array(
|
||||||
0 => '%d topics',
|
|
||||||
1 => '%d topic',
|
1 => '%d topic',
|
||||||
2 => '%d topics',
|
2 => '%d topics',
|
||||||
),
|
),
|
||||||
|
|
|
@ -54,7 +54,6 @@ $lang = array_merge($lang, array(
|
||||||
'DOWNLOAD_NOTICE' => 'You do not have the required permissions to view the files attached to this post.',
|
'DOWNLOAD_NOTICE' => 'You do not have the required permissions to view the files attached to this post.',
|
||||||
|
|
||||||
'EDITED_TIMES_TOTAL' => array(
|
'EDITED_TIMES_TOTAL' => array(
|
||||||
0 => 'Last edited by %2$s on %3$s, edited %1$d times in total.',
|
|
||||||
1 => 'Last edited by %2$s on %3$s, edited %1$d time in total.',
|
1 => 'Last edited by %2$s on %3$s, edited %1$d time in total.',
|
||||||
2 => 'Last edited by %2$s on %3$s, edited %1$d times in total.',
|
2 => 'Last edited by %2$s on %3$s, edited %1$d times in total.',
|
||||||
)
|
)
|
||||||
|
@ -74,7 +73,6 @@ $lang = array_merge($lang, array(
|
||||||
'MAKE_NORMAL' => 'Change to “Standard Topic”',
|
'MAKE_NORMAL' => 'Change to “Standard Topic”',
|
||||||
'MAKE_STICKY' => 'Change to “Sticky”',
|
'MAKE_STICKY' => 'Change to “Sticky”',
|
||||||
'MAX_OPTIONS_SELECT' => array(
|
'MAX_OPTIONS_SELECT' => array(
|
||||||
0 => 'You may select up to <strong>%d</strong> options',
|
|
||||||
1 => 'You may select <strong>%d</strong> option',
|
1 => 'You may select <strong>%d</strong> option',
|
||||||
2 => 'You may select up to <strong>%d</strong> options',
|
2 => 'You may select up to <strong>%d</strong> options',
|
||||||
),
|
),
|
||||||
|
@ -112,7 +110,6 @@ $lang = array_merge($lang, array(
|
||||||
'VIEW_PREVIOUS_TOPIC' => 'Previous topic',
|
'VIEW_PREVIOUS_TOPIC' => 'Previous topic',
|
||||||
'VIEW_RESULTS' => 'View results',
|
'VIEW_RESULTS' => 'View results',
|
||||||
'VIEW_TOPIC_POSTS' => array(
|
'VIEW_TOPIC_POSTS' => array(
|
||||||
0 => '%d posts',
|
|
||||||
1 => '%d post',
|
1 => '%d post',
|
||||||
2 => '%d posts',
|
2 => '%d posts',
|
||||||
),
|
),
|
||||||
|
|
Loading…
Add table
Reference in a new issue