Changeset 1065 for trunk/wp-includes/languages/english.php
- Timestamp:
- 04/13/2004 06:56:38 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/languages/english.php
r1064 r1065 1 <?php 2 3 // english language file 4 5 $lang = new language('WordPress' 6 ,'http://wordpress.org/' 7 ,'ISO-8859-I' 8 ,'English' 9 ); 10 11 $lang->strings = array( 12 13 "wordpress" => "WordPress" 14 15 // Blog template strings 16 17 ,"archives" => "Archives:" 18 ,"categories" => "Categories:" 19 ,"comments_rss_2" => 'Comments <abbr title="Really Simple Syndication">RSS</abbr> 2.0' 20 ,"comments_rss_2_title" => "The latest comments to all posts in RSS" 21 ,"filed_under" => "Filed under:" 22 ,"login" => "Login" 23 ,"meta" => "Meta:" 24 ,"no_posts_matched" => "Sorry, no posts matched your criteria." 25 ,"other" => "Other:" 26 ,"powered_by" => "Powered by " 27 ,"powered_by_title" => "Powered by WordPress, state-of-the-art semantic personal publishing platform" 28 ,"register" => "Register" 29 ,"rss_2" => '<abbr title="Really Simple Syndication">RSS</abbr> 2.0' 30 ,"rss_2_title" => "Syndicate this site using RSS" 31 ,"search" => "Search:" 32 ,"search_buttom" => "search" 33 ,"valid_xhtml" => 'Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>' 34 ,"valid_xhtml_title" => "This page validates as XHTML 1.0 Transitional" 35 36 // Admin strings 37 38 ); 39 40 // the weekdays and the months.. translate them if necessary 41 $weekday[0]='Sunday'; 42 $weekday[1]='Monday'; 43 $weekday[2]='Tuesday'; 44 $weekday[3]='Wednesday'; 45 $weekday[4]='Thursday'; 46 $weekday[5]='Friday'; 47 $weekday[6]='Saturday'; 48 49 // the months, translate them if necessary - note: this isn't active everywhere yet 50 $month['01']='January'; 51 $month['02']='February'; 52 $month['03']='March'; 53 $month['04']='April'; 54 $month['05']='May'; 55 $month['06']='June'; 56 $month['07']='July'; 57 $month['08']='August'; 58 $month['09']='September'; 59 $month['10']='October'; 60 $month['11']='November'; 61 $month['12']='December'; 62 63 ?>
Note: See TracChangeset
for help on using the changeset viewer.