1168f9feeSAndreas Gohr<?php 2168f9feeSAndreas Gohr/** 3168f9feeSAndreas Gohr * english language file 4168f9feeSAndreas Gohr */ 5168f9feeSAndreas Gohr 6168f9feeSAndreas Gohr// settings must be present and set appropriately for the language 7168f9feeSAndreas Gohr$lang['encoding'] = 'utf-8'; 8168f9feeSAndreas Gohr$lang['direction'] = 'ltr'; 9168f9feeSAndreas Gohr 10168f9feeSAndreas Gohr// for admin plugins, the menu prompt to be displayed in the admin menu 11168f9feeSAndreas Gohr// if set here, the plugin doesn't need to override the getMenuText() method 12168f9feeSAndreas Gohr$lang['menu'] = 'Revert Manager'; 13168f9feeSAndreas Gohr 14168f9feeSAndreas Gohr// custom language strings for the plugin 15168f9feeSAndreas Gohr 16122b469fSAndreas Gohr$lang['filter'] = 'Search spammy pages'; 17*90f99567SAndreas Gohr$lang['revert'] = 'Revert selected pages'; 18122b469fSAndreas Gohr$lang['reverted'] = '%s reverted to revision %s'; 19122b469fSAndreas Gohr$lang['removed'] = '%s removed'; 20122b469fSAndreas Gohr$lang['revstart'] = 'Reversion process started. This can take a long time. If the 21122b469fSAndreas Gohr script times out before finishing, you need to revert in smaller 22122b469fSAndreas Gohr chunks.'; 238358adfaSGrzegorz Zur$lang['revstop'] = 'Reversion process finished successfully.'; 24*90f99567SAndreas Gohr$lang['note1'] = 'Note: this search is case sensitive'; 25*90f99567SAndreas Gohr$lang['note2'] = 'Note: the page will be reverted to the last version not containing the given spam term <i>%s</i>.'; 26122b469fSAndreas Gohr 27168f9feeSAndreas Gohr//Setup VIM: ex: et ts=4 enc=utf-8 : 28