1<?php
2/**
3 * English language file for structpublish plugin
4 *
5 * @author Anna Dabrowska <dokuwiki@cosmocode.de>
6 */
7
8// menu entry for admin plugins
9$lang['menu'] = 'Structured publish data';
10
11// banner
12$lang['version'] = 'Version';
13$lang['newversion'] = 'New Version';
14$lang['status'] = 'Publish status of the page you are currently viewing';
15$lang['actions'] = 'Actions';
16$lang['status_draft'] = 'Draft';
17$lang['status_approved'] = 'Approved';
18$lang['status_published'] = 'Published';
19$lang['action_approve'] = 'Approve';
20$lang['action_publish'] = 'Publish';
21
22$lang['diff'] = 'Show differences';
23$lang['banner_status_draft'] = 'This page revision is a <strong>working draft</strong>, created on {revision}.';
24$lang['banner_status_approved'] = 'This page revision has been <strong>approved for publishing</strong> on {datetime} by {user}.';
25$lang['banner_status_published'] = 'This page revision has been <strong>published <span class="plugin-structpublish-version">as version "{version}"</span></strong> on {datetime} by {user}.';
26$lang['banner_latest_publish'] = 'The page was most recently published as version {version} by {user} on {datetime}.';
27$lang['banner_previous_publish'] = 'The page was previously published as version {version} by {user} on {datetime}.';
28$lang['banner_latest_draft'] = 'A newer working draft created on {revision} exists.';
29$lang['compact_banner_status_draft'] = 'Draft';
30$lang['compact_banner_status_approved'] = 'Approved';
31$lang['compact_banner_status_published'] = 'Published as version "{version} on {datetime} by {user}"';
32$lang['compact_banner_latest_publish'] = '';
33$lang['compact_banner_previous_publish'] = '';
34$lang['compact_banner_latest_draft'] = 'Newer draft: {revision}';
35
36// admin
37$lang['assign_pattern'] = 'Pattern';
38$lang['assign_user'] = 'User or @group';
39$lang['assign_status'] = 'Status';
40$lang['assign_add'] = 'Add assignment';
41$lang['assign_del'] = 'Remove assignment';
42
43// email
44$lang['email_subject'] = 'Publish status of a wiki page has changed';
45$lang['email_error_norecipients'] = 'No recipients found to notify!';
46