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'] = 'Acknowledgement Overview'; 10 $lang['menu_assign'] = 'Acknowledgement Assignments'; 11 12// custom language strings for the plugin 13$lang['ackRequired'] = 'You need to acknowledge this page'; 14$lang['ackText'] = 'I confirm that I have read and understood the contents of this page'; 15$lang['ackButton'] = 'Acknowledge'; 16$lang['ackOk'] = 'Page Acknowledged'; 17$lang['ackGranted'] = 'You acknowledged this page on %s'; 18$lang['ackDiff'] = 'Show differences since your last acknowledgement from %s'; 19$lang['ackNotFound'] = 'Nothing found'; 20$lang['reportTitle'] = 'Acknowledgment Report'; 21$lang['reportAcknowledgedTitle'] = 'Users who have acknowledged this page'; 22$lang['reportPendingTitle'] = 'Users who still need to acknowledge this page'; 23$lang['reportNobody'] = '(none yet)'; 24$lang['reportAckedOn'] = 'on'; 25$lang['overviewPage'] = 'Page'; 26$lang['overviewUser'] = 'User'; 27$lang['overviewTime'] = 'Latest acknowledgement'; 28$lang['overviewMod'] = 'Last Change'; 29$lang['overviewCurrent'] = 'Current?'; 30$lang['overviewHistory'] = 'You can access previous acknowledgments by querying the database directly. Ask your administrator for assistance.'; 31$lang['count'] = 'User %s signed %d of %d pages.'; 32$lang['yes'] = 'yes'; 33$lang['home'] = 'Newest Acknowledgements'; 34$lang['status'] = 'Status'; 35$lang['all'] = 'all'; 36$lang['current'] = 'current'; 37$lang['due'] = 'due'; 38 39$lang['toomanyresults'] = 'Too many results to show. Output limited.'; 40 41$lang['pattern'] = 'Page Pattern'; 42$lang['assignees'] = 'Assignees'; 43$lang['save'] = 'Save'; 44 45$lang['error sqlite plugin missing'] = 'The sqlite plugin is missing'; 46 47$lang['notification'] = 'You are required to acknowledge that you have read this page: %s'; 48