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