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