1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-22 10:57:56 +01:00

[ticket/11032] fix language of error displayed

Language of the error displayed is modified.

PHPBB3-11032
This commit is contained in:
Dhruv 2012-08-15 22:57:02 +05:30
parent 17b8719144
commit d4f1e71d5e
2 changed files with 3 additions and 3 deletions

View File

@ -510,7 +510,7 @@ class phpbb_search_fulltext_sphinx
}
else
{
trigger_error($this->user->lang('SPHINX_SEARCH_FAILED', $this->user->lang('SPHINX_SEARCH_ERROR_LOG')));
trigger_error($this->user->lang('SPHINX_SEARCH_FAILED_LOG'));
}
}

View File

@ -105,8 +105,8 @@ $lang = array_merge($lang, array(
'SORT_FORUM' => 'Forum',
'SORT_POST_SUBJECT' => 'Post subject',
'SORT_TIME' => 'Post time',
'SPHINX_SEARCH_FAILED' => 'Search failed. %s',
'SPHINX_SEARCH_ERROR_LOG' => 'The error information has been logged.',
'SPHINX_SEARCH_FAILED' => 'Search failed: %s',
'SPHINX_SEARCH_FAILED_LOG' => 'Sorry, search could not be performed. More information about this failure has been logged in the error log.',
'TOO_FEW_AUTHOR_CHARS' => array(
1 => 'You must specify at least %d character of the authors name.',