aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language/en/search.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2004-02-28 21:16:15 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2004-02-28 21:16:15 +0000
commit52cc21864c570170067e8d81d1af1f8d1a2a0291 (patch)
treeefcfe680c390b4f581a1758292a639b2f3da74f0 /phpBB/language/en/search.php
parent77dedf68a070197bdc4ace8809ab49b2df945847 (diff)
downloadforums-52cc21864c570170067e8d81d1af1f8d1a2a0291.tar
forums-52cc21864c570170067e8d81d1af1f8d1a2a0291.tar.gz
forums-52cc21864c570170067e8d81d1af1f8d1a2a0291.tar.bz2
forums-52cc21864c570170067e8d81d1af1f8d1a2a0291.tar.xz
forums-52cc21864c570170067e8d81d1af1f8d1a2a0291.zip
splitted language files
git-svn-id: file:///svn/phpbb/trunk@4844 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language/en/search.php')
-rw-r--r--phpBB/language/en/search.php78
1 files changed, 78 insertions, 0 deletions
diff --git a/phpBB/language/en/search.php b/phpBB/language/en/search.php
new file mode 100644
index 0000000000..8af62635d3
--- /dev/null
+++ b/phpBB/language/en/search.php
@@ -0,0 +1,78 @@
+<?php
+// -------------------------------------------------------------
+//
+// $Id$
+//
+// FILENAME : search.php [ English ]
+// STARTED : Sat Dec 16, 2000
+// COPYRIGHT : © 2001, 2003 phpBB Group
+// WWW : http://www.phpbb.com/
+// LICENCE : GPL vs2.0 [ see /docs/COPYING ]
+//
+// -------------------------------------------------------------
+
+// DO NOT CHANGE
+if (empty($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(
+ 'ALL_AVAILABLE' => 'All available',
+ 'ALL_RESULTS' => 'All results',
+
+ 'DISPLAY_RESULTS' => 'Display results as',
+
+ 'FOUND_SEARCH_MATCH' => 'Search found %d match',
+ 'FOUND_SEARCH_MATCHES' => 'Search found %d matches',
+
+ 'IGNORED_TERMS' => 'ignored',
+
+ 'NO_RECENT_SEARCHES' => 'No searches have been carried out recently',
+ 'NO_SEARCH' => 'Sorry but you are not permitted to use the search system.',
+ 'NO_SEARCH_RESULTS' => 'No suitable matches were found.',
+ 'NO_SEARCH_TIME' => 'Sorry but you cannot use search at this time. Please try again in a few minutes.',
+
+ 'POST_CHARACTERS' => 'characters of posts',
+
+ 'RECENT_SEARCHES' => 'Recent searches',
+ 'RESULT_DAYS' => 'Limit results to previous',
+ 'RESULT_SORT' => 'Sort results by',
+ 'RETURN_FIRST' => 'Return first',
+
+ 'SEARCHED_FOR' => 'Search term used',
+ 'SEARCH_ALL_TERMS' => 'Search for all terms or use query as entered',
+ 'SEARCH_ANY_TERMS' => 'Search for any terms',
+ 'SEARCH_AUTHOR' => 'Search for Author',
+ 'SEARCH_AUTHOR_EXPLAIN' => 'Use * as a wildcard for partial matches',
+ 'SEARCH_FORUMS' => 'Search in forums',
+ 'SEARCH_FORUMS_EXPLAIN' => 'Select the forum or forums you wish to search in. For speed all subforums can be searched by selecting the parent and setting enable search subforums below.',
+ 'SEARCH_IN_RESULTS' => 'Search these results',
+ 'SEARCH_KEYWORDS' => 'Search for Keywords',
+ 'SEARCH_KEYWORDS_EXPLAIN' => 'Use <b>+</b> for words which must be found, <b>-</b> for words which must not be found and <b>|</b> for words which may or may not be found. Use * as a wildcard for partial matches',
+ 'SEARCH_MSG_ONLY' => 'Message text only',
+ 'SEARCH_OPTIONS' => 'Search Options',
+ 'SEARCH_QUERY' => 'Search Query',
+ 'SEARCH_SUBFORUMS' => 'Search subforums',
+ 'SEARCH_TITLE_MSG' => 'Topic titles and message text',
+ 'SEARCH_TITLE_ONLY' => 'Topic titles only',
+ 'SEARCH_WITHIN' => 'Search within',
+ 'SORT_ASCENDING' => 'Ascending',
+ 'SORT_AUTHOR' => 'Author',
+ 'SORT_DESCENDING' => 'Descending',
+ 'SORT_FORUM' => 'Forum',
+ 'SORT_POST_SUBJECT' => 'Post Subject',
+ 'SORT_TIME' => 'Post Time',
+);
+
+?> \ No newline at end of file