1<?php 2/** 3 * English language file for acknowledge plugin 4 * 5 * @author Andreas Gohr, Anna Dabrowska <dokuwiki@cosmocode.de> 6 */ 7 8// menu entry for admin plugins 9 $lang['menu'] = 'Acknowledgements overview'; 10 11// custom language strings for the plugin 12$lang['ackRequired'] = 'You need to acknowledge this page'; 13$lang['ackText'] = 'I confirm that I have read and understood the contents of this page'; 14$lang['ackButton'] = 'Acknowledge'; 15$lang['ackOk'] = 'Page Acknowledged'; 16$lang['ackGranted'] = 'You acknowledged this page on %s'; 17$lang['ackDiff'] = 'Show differences since your last acknowledgement from %s'; 18$lang['ackNotFound'] = 'Nothing found'; 19$lang['overviewPage'] = 'Page'; 20$lang['overviewUser'] = 'User'; 21$lang['overviewTime'] = 'Latest acknowledgement'; 22$lang['overviewMod'] = 'Last Change'; 23$lang['overviewCurrent'] = 'Current?'; 24$lang['overviewHistory'] = 'You can access previous acknowledgments by querying the database directly. Ask your administrator for assistance.'; 25$lang['count'] = 'User %s signed %d of %d pages.'; 26$lang['yes'] = 'yes'; 27$lang['home'] = 'Newest Acknowledgements'; 28 29$lang['error sqlite plugin missing'] = 'The sqlite plugin is missing'; 30