1<?php 2/** 3 * English language file 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Esther Brunner <wikidesign@gmail.com> 7 */ 8 9// custom language strings for the plugin 10$lang['blog'] = 'Blog'; 11$lang['older'] = 'Older entries'; 12$lang['newer'] = 'Newer entries'; 13$lang['newentry'] = 'New blog entry:'; 14 15$lang['missing_includeplugin'] = 'The Include Plugin must be installed for the blog to work.'; 16$lang['missing_pagelistplugin'] = 'The Pagelist Plugin must be installed for archive lists to work.'; 17$lang['missing_tagplugin'] = 'The Tag Plugin must be installed to use tag refinements.'; 18 19$lang['autoarchive'] = '%1$d Post(s) for %2$s %3$s'; 20$lang['month_01'] = 'January'; 21$lang['month_02'] = 'February'; 22$lang['month_03'] = 'March'; 23$lang['month_04'] = 'April'; 24$lang['month_05'] = 'May'; 25$lang['month_06'] = 'June'; 26$lang['month_07'] = 'July'; 27$lang['month_08'] = 'August'; 28$lang['month_09'] = 'September'; 29$lang['month_10'] = 'October'; 30$lang['month_11'] = 'November'; 31$lang['month_12'] = 'December'; 32 33$lang['entries'] = 'entries'; 34$lang['entry'] = 'entry'; 35$lang['archive_title'] = 'Blog History'; 36//Setup VIM: ex: et ts=2 enc=utf-8 : 37