From ae91951754a0fcb881674f7beda0f98df810fc4c Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Mon, 19 Nov 2001 14:48:58 +0000 Subject: Yet More language updates git-svn-id: file:///svn/phpbb/trunk@1369 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/language/lang_english/lang_main.php | 14 ++++++++++++-- phpBB/search.php | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/phpBB/language/lang_english/lang_main.php b/phpBB/language/lang_english/lang_main.php index 006f60f773..e580170c27 100644 --- a/phpBB/language/lang_english/lang_main.php +++ b/phpBB/language/lang_english/lang_main.php @@ -649,11 +649,21 @@ $lang['Search_author_explain'] = "Use * as a wildcard for partial matches"; $lang['Search_for_any'] = "Search for any terms or use query as entered"; $lang['Search_for_all'] = "Search for all terms"; + $lang['Search_author'] = "Search for Author"; -$lang['Return_first'] = "Return first"; // followed by xxx characters + +$lang['Return_first'] = "Return first"; // followed by xxx characters in a select box $lang['characters_posts'] = "characters of posts"; -$lang['Search_previous'] = "Search previous"; // followed by days, weeks, months, year, all + +$lang['Search_previous'] = "Search previous"; // followed by days, weeks, months, year, all in a select box + $lang['Sort_by'] = "Sort by"; +$lang['Sort_Time'] = "Post Time"; +$lang['Sort_Post_Subject'] = "Post Subject"; +$lang['Sort_Topic_Title'] = "Topic Title"; +$lang['Sort_Author'] = "Author"; +$lang['Sort_Forum'] = "Forum"; + $lang['Display_results'] = "Display results as"; $lang['All'] = "All"; diff --git a/phpBB/search.php b/phpBB/search.php index 1205c9704e..43edc166ed 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -218,7 +218,7 @@ $start = ( isset($HTTP_GET_VARS['start']) ) ? $HTTP_GET_VARS['start'] : 0; // // Define some globally used data // -$sortby_types = array("Post Time", "Post Subject", "Topic Title", "Author Name", "Forum"); +$sortby_types = array($lang['Sort_Time'], $lang['Sort_Post_Subject'], $lang['Sort_Topic_Title'], $lang['Sort_Author'], $lang['Sort_Forum']); $sortby_sql = array("p.post_time", "pt.post_subject", "t.topic_title", "u.username", "f.forum_id"); // -- cgit v1.2.1