xref: /dokuwiki/lib/plugins/styling/lang/en/lang.php (revision 123bc813fd93ab5d8dab3cc4a66a09e613a10aa2)
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
11// custom language strings for the plugin
12$lang['error'] = 'Sorry, this template does not support this functionality.';
13
14$lang['btn_preview'] = 'Preview your changes';
15$lang['btn_save']    = 'Save your changes';
16$lang['btn_reset']   = 'Reset your current changes';
17$lang['btn_revert']  = 'Revert all styles back to the template\'s default';
18
19// default guaranteed placeholders
20$lang['__text__']           = 'Main text color';
21$lang['__background__']     = 'Main text background color';
22$lang['__text_alt__']       = 'Alternative text color';
23$lang['__background_alt__'] = 'Alternative text background color';
24$lang['__text_neu__']       = 'Neutral text color';
25$lang['__background_neu__'] = 'Neutral text background color';
26$lang['__border__']         = 'Border color';
27$lang['__highlight__']      = 'Highlight color (for search results mainly)';
28
29
30
31
32//Setup VIM: ex: et ts=4 :
33