17 lines
637 B
PHP
17 lines
637 B
PHP
<?php
|
|
/**
|
|
* English language file
|
|
*
|
|
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
|
* @author Babbage <babbage@digitalbrink.com>
|
|
* @date 20140317 Leo Eibler <dokuwiki@sprossenwanne.at> \n
|
|
* replace 'checkboxchange' with 'checkboxchange_on' and 'checkboxchange_off' \n
|
|
*/
|
|
|
|
// custom language strings for the plugin
|
|
$lang['qb_todobutton'] = 'Mark text as ToDo';
|
|
$lang['refreshpage'] = 'A newer version of this page is available, refresh your page before trying again.';
|
|
$lang['checkboxchange_on'] = 'ToDo checked';
|
|
$lang['checkboxchange_off'] = 'ToDo unchecked';
|
|
|
|
//Setup VIM: ex: et ts=2 enc=utf-8 :
|