xref: /plugin/struct/lang/en/lang.php (revision ececd523e762fd90560e121e3874c7b7a051aad9)
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
121dbaf557SAndreas Gohr$lang['edithl'] = 'Editing Schema <i>%s</i>';
131dbaf557SAndreas Gohr$lang['create'] = 'Create new Schema';
141dbaf557SAndreas Gohr$lang['schemaname'] = 'Schema Name:';
151dbaf557SAndreas Gohr$lang['save'] = 'Save';
161dbaf557SAndreas Gohr$lang['createhint'] = 'Please note: schemas can not be renamed later';
1715929be2SAndreas Gohr
186af24d3eSAndreas Gohr$lang['editor_sort'] = 'Sort';
196af24d3eSAndreas Gohr$lang['editor_label'] = 'Field Name';
206af24d3eSAndreas Gohr$lang['editor_multi'] = 'Multi-Input?';
216af24d3eSAndreas Gohr$lang['editor_conf'] = 'Configuration';
226af24d3eSAndreas Gohr$lang['editor_type'] = 'Type';
2326147f8cSAndreas Gohr$lang['editor_enabled'] = 'Enabled';
246af24d3eSAndreas Gohr
25*ececd523SAndreas Gohr$lang['assign_add'] = 'Add';
26*ececd523SAndreas Gohr$lang['assign_del'] = 'Delete';
27*ececd523SAndreas Gohr$lang['assign_assign'] = 'Page/Namespace';
28*ececd523SAndreas Gohr$lang['assign_tbl'] = 'Schema';
29*ececd523SAndreas Gohr
306af24d3eSAndreas Gohr
31a1603abdSAndreas Gohr$lang['duplicate_label'] = "Label <code>%s</code> already exists in schema, second occurance was renamed it to <code>%s</code>.";
3215929be2SAndreas Gohr
333c2e6844SAndreas Gohr$lang['emptypage'] = 'Struct data has not been saved for an empty page';
343c2e6844SAndreas Gohr
3517560ecbSAndreas Gohr$lang['validation_prefix'] = "Field [%s]: ";
3615929be2SAndreas Gohr
37daebf1aaSAndreas Gohr$lang['Validation Exception Integer needed'] = 'only integers are allowed';
38bceb7e73SAndreas Gohr$lang['Validation Exception Integer min'] = 'has to be equal or greater than %d';
39bceb7e73SAndreas Gohr$lang['Validation Exception Integer max'] = 'has to be equal or less than %d';
40d2b31c9bSMichael Große$lang['Validation Exception invalid date format'] = 'must be of format YYYY-MM-DD';
41daebf1aaSAndreas Gohr
425511bd5bSAndreas Gohr$lang['Exception noschemas'] = 'There have been no schemas given to load columns from';
435511bd5bSAndreas Gohr$lang['Exception nocolname'] = 'No column name given';
44549a0837SAndreas Gohr
4593485d71SMichael Große$lang['sort']      = 'Sort by this column';
4693485d71SMichael Große$lang['next']      = 'Next page';
4793485d71SMichael Große$lang['prev']      = 'Previous page';
4893485d71SMichael Große
49f87e1c10SMichael Große$lang['none']      = 'Nothing found';
50f87e1c10SMichael Große
5129877279SMichael Große$lang['tablefilteredby'] = 'Filtered by %s';
5229877279SMichael Große$lang['tableresetfilter'] = 'Show all (remove filter/sort)';
53549a0837SAndreas Gohr
54549a0837SAndreas Gohr//Setup VIM: ex: et ts=4 :
55