xref: /plugin/struct/lang/en/lang.php (revision 48010be8c4d592d9599eae9094dfb2e6182fcdf6)
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';
20*48010be8SAndreas Gohr$lang['summary'] = 'Struct data changed';
2115929be2SAndreas Gohr
226af24d3eSAndreas Gohr$lang['editor_sort'] = 'Sort';
236af24d3eSAndreas Gohr$lang['editor_label'] = 'Field Name';
246af24d3eSAndreas Gohr$lang['editor_multi'] = 'Multi-Input?';
256af24d3eSAndreas Gohr$lang['editor_conf'] = 'Configuration';
266af24d3eSAndreas Gohr$lang['editor_type'] = 'Type';
2726147f8cSAndreas Gohr$lang['editor_enabled'] = 'Enabled';
286af24d3eSAndreas Gohr
29ececd523SAndreas Gohr$lang['assign_add'] = 'Add';
30ececd523SAndreas Gohr$lang['assign_del'] = 'Delete';
31ececd523SAndreas Gohr$lang['assign_assign'] = 'Page/Namespace';
32ececd523SAndreas Gohr$lang['assign_tbl'] = 'Schema';
33ececd523SAndreas Gohr
345c36a1f6SAndreas Gohr$lang['multi'] = 'Enter multiple values separated by commas.';
35a1603abdSAndreas Gohr$lang['duplicate_label'] = "Label <code>%s</code> already exists in schema, second occurance was renamed it to <code>%s</code>.";
3615929be2SAndreas Gohr
373c2e6844SAndreas Gohr$lang['emptypage'] = 'Struct data has not been saved for an empty page';
383c2e6844SAndreas Gohr
3917560ecbSAndreas Gohr$lang['validation_prefix'] = "Field [%s]: ";
4015929be2SAndreas Gohr
41daebf1aaSAndreas Gohr$lang['Validation Exception Integer needed'] = 'only integers are allowed';
42bceb7e73SAndreas Gohr$lang['Validation Exception Integer min'] = 'has to be equal or greater than %d';
43bceb7e73SAndreas Gohr$lang['Validation Exception Integer max'] = 'has to be equal or less than %d';
44f0d4d769SAndreas Gohr$lang['Validation Exception User not found'] = 'has to be an existing user. User \'%s\' was not found.';
4551629881SAndreas Gohr$lang['Validation Exception Media mime type'] = 'MIME type %s has to match the allowed set of %s';
467d18b5caSAndreas Gohr$lang['Validation Exception Url invalid'] = '%s is not a valid URL';
47d2b31c9bSMichael Große$lang['Validation Exception invalid date format'] = 'must be of format YYYY-MM-DD';
48daebf1aaSAndreas Gohr
495511bd5bSAndreas Gohr$lang['Exception noschemas'] = 'There have been no schemas given to load columns from';
505511bd5bSAndreas Gohr$lang['Exception nocolname'] = 'No column name given';
51549a0837SAndreas Gohr
5293485d71SMichael Große$lang['sort']      = 'Sort by this column';
5393485d71SMichael Große$lang['next']      = 'Next page';
5493485d71SMichael Große$lang['prev']      = 'Previous page';
5593485d71SMichael Große
56f87e1c10SMichael Große$lang['none']      = 'Nothing found';
57f87e1c10SMichael Große
5829877279SMichael Große$lang['tablefilteredby'] = 'Filtered by %s';
5929877279SMichael Große$lang['tableresetfilter'] = 'Show all (remove filter/sort)';
60549a0837SAndreas Gohr
61549a0837SAndreas Gohr//Setup VIM: ex: et ts=4 :
62