1<?php 2/** 3 * English language file for styling plugin 4 * 5 * @author Andreas Gohr <andi@splitbrain.org> 6 */ 7 8// menu entry for admin plugins 9$lang['js']['menu'] = 'Template Style Settings'; 10$lang['js']['popup'] = 'Open as Popup'; 11 12// custom language strings for the plugin 13$lang['error'] = 'Sorry, this template does not support this functionality.'; 14 15$lang['btn_preview'] = 'Preview your changes'; 16$lang['btn_save'] = 'Save your changes'; 17$lang['btn_reset'] = 'Reset your current changes'; 18$lang['btn_revert'] = 'Revert all styles back to the template\'s default'; 19 20// default guaranteed placeholders 21$lang['__text__'] = 'Main text color'; 22$lang['__background__'] = 'Main background color'; 23$lang['__text_alt__'] = 'Alternative text color'; 24$lang['__background_alt__'] = 'Alternative background color'; 25$lang['__text_neu__'] = 'Neutral text color'; 26$lang['__background_neu__'] = 'Neutral background color'; 27$lang['__border__'] = 'Border color'; 28$lang['__highlight__'] = 'Highlight color (for search results mainly)'; 29 30 31 32 33//Setup VIM: ex: et ts=4 : 34