xref: /plugin/struct/lang/en/lang.php (revision bb348952b33dec6acfc8eba6238b61f0ee413a94)
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['rowlabel'] = 'Row #';
24$lang['revisionlabel'] = 'Last Updated';
25$lang['userlabel'] = 'Last Editor';
26$lang['summary'] = 'Struct data changed';
27$lang['export'] = 'Export Schema as JSON';
28$lang['btn_export'] = 'Export';
29$lang['import'] = 'Import a Schema from JSON';
30$lang['btn_import'] = 'Import';
31$lang['import_warning'] = 'Warning: this will overwrite already defined fields!';
32
33$lang['del_confirm'] = 'Enter schema name to confirm deletion';
34$lang['del_fail'] = 'Schema names did not match. Schema not deleted';
35$lang['del_ok'] = 'Schema has been deleted';
36$lang['btn_delete'] = 'Delete';
37$lang['js']['confirmAssignmentsDelete'] = 'Do you really want to delete the assignment of schema "{0}" to page/namespace "{1}"?';
38
39$lang['tab_edit'] = 'Edit Schema';
40$lang['tab_export'] = 'Import/Export';
41$lang['tab_delete'] = 'Delete';
42
43$lang['editor_sort'] = 'Sort';
44$lang['editor_label'] = 'Field Name';
45$lang['editor_multi'] = 'Multi-Input?';
46$lang['editor_conf'] = 'Configuration';
47$lang['editor_type'] = 'Type';
48$lang['editor_enabled'] = 'Enabled';
49$lang['editor_editors'] = 'Comma separated list of users and @groups who may edit this schema\'s data (empty for all):';
50
51$lang['assign_add'] = 'Add';
52$lang['assign_del'] = 'Delete';
53$lang['assign_assign'] = 'Page/Namespace';
54$lang['assign_tbl'] = 'Schema';
55
56$lang['multi'] = 'Enter multiple values separated by commas.';
57$lang['multidropdown'] = 'Hold CTRL or CMD to select multiple values.';
58$lang['duplicate_label'] = "Label <code>%s</code> already exists in schema, second occurance was renamed to <code>%s</code>.";
59
60$lang['emptypage'] = 'Struct data has not been saved for an empty page';
61
62$lang['validation_prefix'] = "Field [%s]: ";
63
64$lang['Validation Exception Decimal needed'] = 'only decimals are allowed';
65$lang['Validation Exception Decimal min'] = 'has to be equal or greater than %d';
66$lang['Validation Exception Decimal max'] = 'has to be equal or less than %d';
67$lang['Validation Exception User not found'] = 'has to be an existing user. User \'%s\' was not found.';
68$lang['Validation Exception Media mime type'] = 'MIME type %s has to match the allowed set of %s';
69$lang['Validation Exception Url invalid'] = '%s is not a valid URL';
70$lang['Validation Exception Mail invalid'] = '%s is not a valid email address';
71$lang['Validation Exception invalid date format'] = 'must be of format YYYY-MM-DD';
72$lang['Validation Exception invalid datetime format'] = 'must be of format YYYY-MM-DD HH:MM:SS';
73$lang['Validation Exception bad color specification'] = 'must be of format #RRGGBB';
74
75$lang['Exception noschemas'] = 'There have been no schemas given to load columns from';
76$lang['Exception nocolname'] = 'No column name given';
77$lang['Exception nolookupmix'] = 'You can not aggregate more than one Lookup or mix it with Page data';
78$lang['Exception nolookupassign'] = 'You can not assign Lookup schemas to pages';
79$lang['Exception No data saved'] = 'No data saved';
80$lang['Exception no sqlite'] = 'The struct plugin requires the sqlite plugin. Please install and enable it.';
81
82$lang['Warning: no filters for cloud'] = 'Filters are not supported for struct clouds.';
83
84$lang['sort']      = 'Sort by this column';
85$lang['next']      = 'Next page';
86$lang['prev']      = 'Previous page';
87
88$lang['none']      = 'Nothing found';
89$lang['csvexport'] = 'CSV Export';
90
91$lang['tablefilteredby'] = 'Filtered by %s';
92$lang['tableresetfilter'] = 'Show all (remove filter/sort)';
93
94$lang['Exception schema missing'] = "Schema %s does not exist!";
95
96$lang['no_lookup_for_page'] = 'You can\'t use the Lookup Editor on a page schema!';
97$lang['lookup new entry'] = 'Create new Entry';
98$lang['js']['lookup_delete'] = 'Delete Entry';
99
100//Setup VIM: ex: et ts=4 :
101