1<?php
2/**
3 * English language file for watchcycle plugin
4 *
5 * @author Szymon Olewniczak <dokuwiki@cosmocode.de>
6 */
7
8// menu entry for admin plugins
9$lang['menu'] = 'Watchcycle Managment';
10
11// custom language strings for the plugin
12$lang['maintained by'] = 'Maintained by: %s';
13$lang['last check'] = 'Last check %d days ago.';
14$lang['check needed'] = 'Check needed!';
15$lang['since last check'] = '%s since last check.';
16$lang['never checked'] = 'Never checked.';
17
18$lang['change singular'] = 'change';
19$lang['change plural'] = 'changes';
20
21$lang['cb only maintained pages'] = 'Only maintained pages';
22
23// admin
24$lang['search page'] = 'search page';
25$lang['btn filter'] = 'Filter';
26$lang['show outdated only'] = 'show outdated only';
27$lang['h page'] = 'page';
28$lang['h maintainer'] = 'maintainer';
29$lang['h cycle'] = 'cycle';
30$lang['h current'] = 'current';
31$lang['h uptodate'] = 'up-to-date?';
32
33// mail
34$lang['mail subject'] = 'Page maintenance needed';
35$lang['mail body'] = '%s has exceeded maintenance cycle and needs checking.';
36
37// error
38$lang['error mail'] = 'Cannot send mail to maintainer.';
39$lang['error sqlite missing'] = 'The watchcycle plugin requires the <a href="https://www.dokuwiki.org/plugin:sqlite">sqlite plugin</a> to work.';
40$lang['error invalid maintainers'] = 'watchcycle: maintainer must be a Dokuwiki user or an existing group';
41
42$lang['title toolbar button'] = 'Add new maintenance syntax';
43
44$lang['js']['label_username'] = 'username';
45$lang['js']['label_cycle_length'] = 'cycle length';
46$lang['js']['button_insert'] = 'Insert';
47$lang['js']['button_cancel'] = 'Cancel';
48$lang['js']['invalid_maintainers'] = 'Invalid maintainers!';
49
50//Setup VIM: ex: et ts=4 :
51