xref: /dokuwiki/lib/plugins/revert/lang/en/lang.php (revision 8f43b35bf1cb81d9aa34062752d60b0b918c1dbc)
1<?php
2/**
3 * english language file
4 */
5
6// settings must be present and set appropriately for the language
7$lang['encoding']   = 'utf-8';
8$lang['direction']  = 'ltr';
9
10// for admin plugins, the menu prompt to be displayed in the admin menu
11// if set here, the plugin doesn't need to override the getMenuText() method
12$lang['menu'] = 'Revert Manager';
13
14// custom language strings for the plugin
15
16$lang['filter']   = 'Search spammy pages';
17$lang['revert']   = 'Revert selected pages';
18$lang['reverted'] = '%s reverted to revision %s';
19$lang['removed']  = '%s removed';
20$lang['revstart'] = 'Reversion process started. This can take a long time. If the
21                     script times out before finishing, you need to revert in smaller
22                     chunks.';
23$lang['revstop']  = 'Reversion process finished successfully.';
24$lang['note1']    = 'Note: this search is case sensitive';
25$lang['note2']    = 'Note: the page will be reverted to the last version not containing the given spam term <i>%s</i>.';
26
27//Setup VIM: ex: et ts=4 enc=utf-8 :
28