WordPress/wp-includes/languages/english.php

63 lines
1.7 KiB
PHP

<?php
// english language file
$lang = new language('WordPress'
,'http://wordpress.org/'
,'ISO-8859-I'
,'English'
);
$lang->strings = array(
"wordpress" => "WordPress"
// Blog template strings
,"archives" => "Archives:"
,"categories" => "Categories:"
,"comments_rss_2" => 'Comments <abbr title="Really Simple Syndication">RSS</abbr> 2.0'
,"comments_rss_2_title" => "The latest comments to all posts in RSS"
,"filed_under" => "Filed under:"
,"login" => "Login"
,"meta" => "Meta:"
,"no_posts_matched" => "Sorry, no posts matched your criteria."
,"other" => "Other:"
,"powered_by" => "Powered by "
,"powered_by_title" => "Powered by WordPress, state-of-the-art semantic personal publishing platform"
,"register" => "Register"
,"rss_2" => '<abbr title="Really Simple Syndication">RSS</abbr> 2.0'
,"rss_2_title" => "Syndicate this site using RSS"
,"search" => "Search:"
,"search_buttom" => "search"
,"valid_xhtml" => 'Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>'
,"valid_xhtml_title" => "This page validates as XHTML 1.0 Transitional"
// Admin strings
);
// the weekdays and the months.. translate them if necessary
$weekday[0]='Sunday';
$weekday[1]='Monday';
$weekday[2]='Tuesday';
$weekday[3]='Wednesday';
$weekday[4]='Thursday';
$weekday[5]='Friday';
$weekday[6]='Saturday';
// the months, translate them if necessary - note: this isn't active everywhere yet
$month['01']='January';
$month['02']='February';
$month['03']='March';
$month['04']='April';
$month['05']='May';
$month['06']='June';
$month['07']='July';
$month['08']='August';
$month['09']='September';
$month['10']='October';
$month['11']='November';
$month['12']='December';
?>