1123bc813SAndreas Gohr<?php 2123bc813SAndreas Gohr/** 3123bc813SAndreas Gohr * English language file for styling plugin 4123bc813SAndreas Gohr * 5123bc813SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 6123bc813SAndreas Gohr */ 7123bc813SAndreas Gohr 8123bc813SAndreas Gohr// menu entry for admin plugins 9123bc813SAndreas Gohr$lang['js']['menu'] = 'Template Style Settings'; 10123bc813SAndreas Gohr 11123bc813SAndreas Gohr// custom language strings for the plugin 12123bc813SAndreas Gohr$lang['error'] = 'Sorry, this template does not support this functionality.'; 13123bc813SAndreas Gohr 14123bc813SAndreas Gohr$lang['btn_preview'] = 'Preview your changes'; 15123bc813SAndreas Gohr$lang['btn_save'] = 'Save your changes'; 16123bc813SAndreas Gohr$lang['btn_reset'] = 'Reset your current changes'; 17123bc813SAndreas Gohr$lang['btn_revert'] = 'Revert all styles back to the template\'s default'; 18123bc813SAndreas Gohr 19123bc813SAndreas Gohr// default guaranteed placeholders 20123bc813SAndreas Gohr$lang['__text__'] = 'Main text color'; 21*23a5593cSAnika Henke$lang['__background__'] = 'Main background color'; 22123bc813SAndreas Gohr$lang['__text_alt__'] = 'Alternative text color'; 23*23a5593cSAnika Henke$lang['__background_alt__'] = 'Alternative background color'; 24123bc813SAndreas Gohr$lang['__text_neu__'] = 'Neutral text color'; 25*23a5593cSAnika Henke$lang['__background_neu__'] = 'Neutral background color'; 26123bc813SAndreas Gohr$lang['__border__'] = 'Border color'; 27123bc813SAndreas Gohr$lang['__highlight__'] = 'Highlight color (for search results mainly)'; 28123bc813SAndreas Gohr 29123bc813SAndreas Gohr 30123bc813SAndreas Gohr 31123bc813SAndreas Gohr 32123bc813SAndreas Gohr//Setup VIM: ex: et ts=4 : 33