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['menu'] = 'Template Style Settings';
10 
11 $lang['js']['loader'] = 'Preview is loading...<br />if this does not goes away, your values may be faulty';
12 $lang['js']['popup'] = 'Open as a popup';
13 
14 // custom language strings for the plugin
15 $lang['error'] = 'Sorry, this template does not support this functionality.';
16 
17 $lang['btn_preview'] = 'Preview changes';
18 $lang['btn_save']    = 'Save changes';
19 $lang['btn_reset']   = 'Reset current changes';
20 $lang['btn_revert']  = 'Revert styles back to template\'s default';
21 
22 // default guaranteed placeholders
23 $lang['__text__']           = 'Main text color';
24 $lang['__background__']     = 'Main background color';
25 $lang['__text_alt__']       = 'Alternative text color';
26 $lang['__background_alt__'] = 'Alternative background color';
27 $lang['__text_neu__']       = 'Neutral text color';
28 $lang['__background_neu__'] = 'Neutral background color';
29 $lang['__border__']         = 'Border color';
30 $lang['__highlight__']      = 'Highlight color (for search results mainly)';
31 
32 
33 
34 
35 //Setup VIM: ex: et ts=4 :
36