xref: /plugin/struct/lang/en/lang.php (revision 4a2883e0eebc2f861000d0f0f5ebd1b16e25a258)
1549a0837SAndreas Gohr<?php
2549a0837SAndreas Gohr/**
3549a0837SAndreas Gohr * English language file for struct plugin
4549a0837SAndreas Gohr *
5549a0837SAndreas Gohr * @author Andreas Gohr, Michael Große <dokuwiki@cosmocode.de>
6549a0837SAndreas Gohr */
7549a0837SAndreas Gohr
8549a0837SAndreas Gohr
91dbaf557SAndreas Gohr$lang['menu'] = 'Struct Schema Editor';
1040b81cabSAndreas Gohr$lang['menu_assignments'] = 'Struct Schema Assignments';
1140b81cabSAndreas Gohr
125a1eab78SAndreas Gohr$lang['headline'] = 'Structured Data';
135a1eab78SAndreas Gohr
141dbaf557SAndreas Gohr$lang['edithl'] = 'Editing Schema <i>%s</i>';
151dbaf557SAndreas Gohr$lang['create'] = 'Create new Schema';
161dbaf557SAndreas Gohr$lang['schemaname'] = 'Schema Name:';
171dbaf557SAndreas Gohr$lang['save'] = 'Save';
181dbaf557SAndreas Gohr$lang['createhint'] = 'Please note: schemas can not be renamed later';
19650e9493SAndreas Gohr$lang['pagelabel'] = 'Page';
2048010be8SAndreas Gohr$lang['summary'] = 'Struct data changed';
21d486d6d7SAndreas Gohr$lang['export'] = 'Export Schema as JSON';
228ddf87afSAndreas Gohr$lang['btn_export'] = 'Export';
238ddf87afSAndreas Gohr$lang['import'] = 'Import a Schema from JSON';
248ddf87afSAndreas Gohr$lang['btn_import'] = 'Import';
258ddf87afSAndreas Gohr$lang['import_warning'] = 'Warning: this will overwrite already defined fields!';
268ddf87afSAndreas Gohr
27d5a1a6dcSAndreas Gohr$lang['del_confirm'] = 'Enter schema name to confirm deletion';
28d5a1a6dcSAndreas Gohr$lang['del_fail'] = 'Schema names did not match. Schema not deleted';
29d5a1a6dcSAndreas Gohr$lang['del_ok'] = 'Schema has been deleted';
30d5a1a6dcSAndreas Gohr$lang['btn_delete'] = 'Delete';
3187475c0fSMichael Grosse$lang['js']['confirmAssignmentsDelete'] = 'Do you really want to delete the assignment of schema "{0}" to page/namespace "{1}"?';
32d5a1a6dcSAndreas Gohr
338ddf87afSAndreas Gohr$lang['tab_edit'] = 'Edit Schema';
348ddf87afSAndreas Gohr$lang['tab_export'] = 'Import/Export';
35d5a1a6dcSAndreas Gohr$lang['tab_delete'] = 'Delete';
3615929be2SAndreas Gohr
376af24d3eSAndreas Gohr$lang['editor_sort'] = 'Sort';
386af24d3eSAndreas Gohr$lang['editor_label'] = 'Field Name';
396af24d3eSAndreas Gohr$lang['editor_multi'] = 'Multi-Input?';
406af24d3eSAndreas Gohr$lang['editor_conf'] = 'Configuration';
416af24d3eSAndreas Gohr$lang['editor_type'] = 'Type';
4226147f8cSAndreas Gohr$lang['editor_enabled'] = 'Enabled';
436af24d3eSAndreas Gohr
44ececd523SAndreas Gohr$lang['assign_add'] = 'Add';
45ececd523SAndreas Gohr$lang['assign_del'] = 'Delete';
46ececd523SAndreas Gohr$lang['assign_assign'] = 'Page/Namespace';
47ececd523SAndreas Gohr$lang['assign_tbl'] = 'Schema';
48ececd523SAndreas Gohr
495c36a1f6SAndreas Gohr$lang['multi'] = 'Enter multiple values separated by commas.';
5069068579SAndreas Gohr$lang['multidropdown'] = 'Hold CTRL or CMD to select multiple values.';
51a1603abdSAndreas Gohr$lang['duplicate_label'] = "Label <code>%s</code> already exists in schema, second occurance was renamed it to <code>%s</code>.";
5215929be2SAndreas Gohr
533c2e6844SAndreas Gohr$lang['emptypage'] = 'Struct data has not been saved for an empty page';
543c2e6844SAndreas Gohr
5517560ecbSAndreas Gohr$lang['validation_prefix'] = "Field [%s]: ";
5615929be2SAndreas Gohr
57daebf1aaSAndreas Gohr$lang['Validation Exception Integer needed'] = 'only integers are allowed';
58bceb7e73SAndreas Gohr$lang['Validation Exception Integer min'] = 'has to be equal or greater than %d';
59bceb7e73SAndreas Gohr$lang['Validation Exception Integer max'] = 'has to be equal or less than %d';
60f0d4d769SAndreas Gohr$lang['Validation Exception User not found'] = 'has to be an existing user. User \'%s\' was not found.';
6151629881SAndreas Gohr$lang['Validation Exception Media mime type'] = 'MIME type %s has to match the allowed set of %s';
627d18b5caSAndreas Gohr$lang['Validation Exception Url invalid'] = '%s is not a valid URL';
63a5cdcc05SAndreas Gohr$lang['Validation Exception Mail invalid'] = '%s is not a valid email address';
64d2b31c9bSMichael Große$lang['Validation Exception invalid date format'] = 'must be of format YYYY-MM-DD';
65*4a2883e0SAndreas Gohr$lang['Validation Exception invalid datetime format'] = 'must be of format YYYY-MM-DD HH:MM:SS';
66daebf1aaSAndreas Gohr
675511bd5bSAndreas Gohr$lang['Exception noschemas'] = 'There have been no schemas given to load columns from';
685511bd5bSAndreas Gohr$lang['Exception nocolname'] = 'No column name given';
69549a0837SAndreas Gohr
7093485d71SMichael Große$lang['sort']      = 'Sort by this column';
7193485d71SMichael Große$lang['next']      = 'Next page';
7293485d71SMichael Große$lang['prev']      = 'Previous page';
7393485d71SMichael Große
74f87e1c10SMichael Große$lang['none']      = 'Nothing found';
75f87e1c10SMichael Große
7629877279SMichael Große$lang['tablefilteredby'] = 'Filtered by %s';
7729877279SMichael Große$lang['tableresetfilter'] = 'Show all (remove filter/sort)';
78549a0837SAndreas Gohr
79f25d10fdSMichael Grosse$lang['Exception schema missing'] = "Schema %s does not exist!";
8099966bd6SMichael Grosse
81549a0837SAndreas Gohr//Setup VIM: ex: et ts=4 :
82