xref: /plugin/struct/lang/en/lang.php (revision 04346cd26da431190fc1ab19eb1e20e69d34bab4)
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['page schema'] = 'Page Schema:';
15$lang['lookup schema'] = 'Lookup Schema:';
16$lang['edithl page'] = 'Editing Page Schema <i>%s</i>';
17$lang['edithl lookup'] = 'Editing Lookup Schema <i>%s</i>';
18$lang['create'] = 'Create new Schema';
19$lang['schemaname'] = 'Schema Name:';
20$lang['save'] = 'Save';
21$lang['createhint'] = 'Please note: schemas can not be renamed later';
22$lang['pagelabel'] = 'Page';
23$lang['revisionlabel'] = 'Last Updated';
24$lang['summary'] = 'Struct data changed';
25$lang['export'] = 'Export Schema as JSON';
26$lang['btn_export'] = 'Export';
27$lang['import'] = 'Import a Schema from JSON';
28$lang['btn_import'] = 'Import';
29$lang['import_warning'] = 'Warning: this will overwrite already defined fields!';
30
31$lang['del_confirm'] = 'Enter schema name to confirm deletion';
32$lang['del_fail'] = 'Schema names did not match. Schema not deleted';
33$lang['del_ok'] = 'Schema has been deleted';
34$lang['btn_delete'] = 'Delete';
35$lang['js']['confirmAssignmentsDelete'] = 'Do you really want to delete the assignment of schema "{0}" to page/namespace "{1}"?';
36
37$lang['tab_edit'] = 'Edit Schema';
38$lang['tab_export'] = 'Import/Export';
39$lang['tab_delete'] = 'Delete';
40
41$lang['editor_sort'] = 'Sort';
42$lang['editor_label'] = 'Field Name';
43$lang['editor_multi'] = 'Multi-Input?';
44$lang['editor_conf'] = 'Configuration';
45$lang['editor_type'] = 'Type';
46$lang['editor_enabled'] = 'Enabled';
47
48$lang['assign_add'] = 'Add';
49$lang['assign_del'] = 'Delete';
50$lang['assign_assign'] = 'Page/Namespace';
51$lang['assign_tbl'] = 'Schema';
52
53$lang['multi'] = 'Enter multiple values separated by commas.';
54$lang['multidropdown'] = 'Hold CTRL or CMD to select multiple values.';
55$lang['duplicate_label'] = "Label <code>%s</code> already exists in schema, second occurance was renamed it to <code>%s</code>.";
56
57$lang['emptypage'] = 'Struct data has not been saved for an empty page';
58
59$lang['validation_prefix'] = "Field [%s]: ";
60
61$lang['Validation Exception Integer needed'] = 'only integers are allowed';
62$lang['Validation Exception Integer min'] = 'has to be equal or greater than %d';
63$lang['Validation Exception Integer max'] = 'has to be equal or less than %d';
64$lang['Validation Exception User not found'] = 'has to be an existing user. User \'%s\' was not found.';
65$lang['Validation Exception Media mime type'] = 'MIME type %s has to match the allowed set of %s';
66$lang['Validation Exception Url invalid'] = '%s is not a valid URL';
67$lang['Validation Exception Mail invalid'] = '%s is not a valid email address';
68$lang['Validation Exception invalid date format'] = 'must be of format YYYY-MM-DD';
69$lang['Validation Exception invalid datetime format'] = 'must be of format YYYY-MM-DD HH:MM:SS';
70
71$lang['Exception noschemas'] = 'There have been no schemas given to load columns from';
72$lang['Exception nocolname'] = 'No column name given';
73
74$lang['sort']      = 'Sort by this column';
75$lang['next']      = 'Next page';
76$lang['prev']      = 'Previous page';
77
78$lang['none']      = 'Nothing found';
79
80$lang['tablefilteredby'] = 'Filtered by %s';
81$lang['tableresetfilter'] = 'Show all (remove filter/sort)';
82
83$lang['Exception schema missing'] = "Schema %s does not exist!";
84
85
86$lang['lookup new entry'] = 'Create new Entry';
87$lang['js']['lookup_delete'] = 'Delete Entry';
88
89//Setup VIM: ex: et ts=4 :
90