xref: /plugin/struct/lang/en/lang.php (revision d486d6d7d6c607c391a45aa431842e8fbc9d74c3)
1<?php
2/**
3 * English language file for struct plugin
4 *
5 * @author Andreas Gohr, Michael Große <dokuwiki@cosmocode.de>
6 */
7
8
9$lang['menu'] = 'Struct Schema Editor';
10$lang['menu_assignments'] = 'Struct Schema Assignments';
11
12$lang['headline'] = 'Structured Data';
13
14$lang['edithl'] = 'Editing Schema <i>%s</i>';
15$lang['create'] = 'Create new Schema';
16$lang['schemaname'] = 'Schema Name:';
17$lang['save'] = 'Save';
18$lang['createhint'] = 'Please note: schemas can not be renamed later';
19$lang['pagelabel'] = 'Page';
20$lang['summary'] = 'Struct data changed';
21$lang['export'] = 'Export Schema as JSON';
22
23$lang['editor_sort'] = 'Sort';
24$lang['editor_label'] = 'Field Name';
25$lang['editor_multi'] = 'Multi-Input?';
26$lang['editor_conf'] = 'Configuration';
27$lang['editor_type'] = 'Type';
28$lang['editor_enabled'] = 'Enabled';
29
30$lang['assign_add'] = 'Add';
31$lang['assign_del'] = 'Delete';
32$lang['assign_assign'] = 'Page/Namespace';
33$lang['assign_tbl'] = 'Schema';
34
35$lang['multi'] = 'Enter multiple values separated by commas.';
36$lang['multidropdown'] = 'Hold CTRL or CMD to select multiple values.';
37$lang['duplicate_label'] = "Label <code>%s</code> already exists in schema, second occurance was renamed it to <code>%s</code>.";
38
39$lang['emptypage'] = 'Struct data has not been saved for an empty page';
40
41$lang['validation_prefix'] = "Field [%s]: ";
42
43$lang['Validation Exception Integer needed'] = 'only integers are allowed';
44$lang['Validation Exception Integer min'] = 'has to be equal or greater than %d';
45$lang['Validation Exception Integer max'] = 'has to be equal or less than %d';
46$lang['Validation Exception User not found'] = 'has to be an existing user. User \'%s\' was not found.';
47$lang['Validation Exception Media mime type'] = 'MIME type %s has to match the allowed set of %s';
48$lang['Validation Exception Url invalid'] = '%s is not a valid URL';
49$lang['Validation Exception Mail invalid'] = '%s is not a valid email address';
50$lang['Validation Exception invalid date format'] = 'must be of format YYYY-MM-DD';
51
52$lang['Exception noschemas'] = 'There have been no schemas given to load columns from';
53$lang['Exception nocolname'] = 'No column name given';
54
55$lang['sort']      = 'Sort by this column';
56$lang['next']      = 'Next page';
57$lang['prev']      = 'Previous page';
58
59$lang['none']      = 'Nothing found';
60
61$lang['tablefilteredby'] = 'Filtered by %s';
62$lang['tableresetfilter'] = 'Show all (remove filter/sort)';
63
64//Setup VIM: ex: et ts=4 :
65