xref: /dokuwiki/lib/plugins/styling/lang/en/lang.php (revision 86c97e91e4aa9ed17ed75df279181e4b61353c7c)
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';
10*86c97e91SAndreas Gohr$lang['js']['popup'] = 'Open as Popup';
11123bc813SAndreas Gohr
12123bc813SAndreas Gohr// custom language strings for the plugin
13123bc813SAndreas Gohr$lang['error'] = 'Sorry, this template does not support this functionality.';
14123bc813SAndreas Gohr
15123bc813SAndreas Gohr$lang['btn_preview'] = 'Preview your changes';
16123bc813SAndreas Gohr$lang['btn_save']    = 'Save your changes';
17123bc813SAndreas Gohr$lang['btn_reset']   = 'Reset your current changes';
18123bc813SAndreas Gohr$lang['btn_revert']  = 'Revert all styles back to the template\'s default';
19123bc813SAndreas Gohr
20123bc813SAndreas Gohr// default guaranteed placeholders
21123bc813SAndreas Gohr$lang['__text__']           = 'Main text color';
2223a5593cSAnika Henke$lang['__background__']     = 'Main background color';
23123bc813SAndreas Gohr$lang['__text_alt__']       = 'Alternative text color';
2423a5593cSAnika Henke$lang['__background_alt__'] = 'Alternative background color';
25123bc813SAndreas Gohr$lang['__text_neu__']       = 'Neutral text color';
2623a5593cSAnika Henke$lang['__background_neu__'] = 'Neutral background color';
27123bc813SAndreas Gohr$lang['__border__']         = 'Border color';
28123bc813SAndreas Gohr$lang['__highlight__']      = 'Highlight color (for search results mainly)';
29123bc813SAndreas Gohr
30123bc813SAndreas Gohr
31123bc813SAndreas Gohr
32123bc813SAndreas Gohr
33123bc813SAndreas Gohr//Setup VIM: ex: et ts=4 :
34