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