1*14d99ec0SAndreas Gohr<?php 2*14d99ec0SAndreas Gohr/** 3*14d99ec0SAndreas Gohr * english language file 4*14d99ec0SAndreas Gohr */ 5*14d99ec0SAndreas Gohr 6*14d99ec0SAndreas Gohr// settings must be present and set appropriately for the language 7*14d99ec0SAndreas Gohr$lang['encoding'] = 'utf-8'; 8*14d99ec0SAndreas Gohr$lang['direction'] = 'ltr'; 9*14d99ec0SAndreas Gohr 10*14d99ec0SAndreas Gohr// for admin plugins, the menu prompt to be displayed in the admin menu 11*14d99ec0SAndreas Gohr// if set here, the plugin doesn't need to override the getMenuText() method 12*14d99ec0SAndreas Gohr$lang['menu'] = 'Access Statistics'; 13*14d99ec0SAndreas Gohr 14*14d99ec0SAndreas Gohr// custom language strings for the plugin 15*14d99ec0SAndreas Gohr 16*14d99ec0SAndreas Gohr$lang['percent'] = 'Percent'; 17*14d99ec0SAndreas Gohr$lang['count'] = 'Count'; 18*14d99ec0SAndreas Gohr$lang['reason'] = 'Reason'; 19*14d99ec0SAndreas Gohr 20*14d99ec0SAndreas Gohr//Setup VIM: ex: et ts=4 enc=utf-8 : 21