xref: /dokuwiki/lib/plugins/revert/lang/en/lang.php (revision 122b469f774df8026a8a6182d2bc026ae1a06e2b)
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['note']     = 'Note: this search is case sensitive';
18$lang['revert']   = 'Revert selected edits';
19$lang['reverted'] = '%s reverted to revision %s';
20$lang['removed']  = '%s removed';
21$lang['revstart'] = 'Reversion process started. This can take a long time. If the
22                     script times out before finishing, you need to revert in smaller
23                     chunks.';
24$lang['revstop']  = 'Reversion process finished successful.';
25
26//Setup VIM: ex: et ts=4 enc=utf-8 :
27