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['edithl'] = 'Editing Schema <i>%s</i>'; 13$lang['create'] = 'Create new Schema'; 14$lang['schemaname'] = 'Schema Name:'; 15$lang['save'] = 'Save'; 16$lang['createhint'] = 'Please note: schemas can not be renamed later'; 17 18$lang['editor_sort'] = 'Sort'; 19$lang['editor_label'] = 'Field Name'; 20$lang['editor_multi'] = 'Multi-Input?'; 21$lang['editor_conf'] = 'Configuration'; 22$lang['editor_type'] = 'Type'; 23 24 25$lang['duplicate_label'] = "Label <code>%s</code> already exists in schema, second occurance was renamed it to <code>%s</code>."; 26 27$lang['emptypage'] = 'Struct data has not been saved for an empty page'; 28 29$lang['validation_prefix'] = "Field [%s]: "; 30 31$lang['Validation Exception Integer needed'] = 'only integers are allowed'; 32$lang['Validation Exception Integer min'] = 'has to be equal or greater than %d'; 33$lang['Validation Exception Integer max'] = 'has to be equal or less than %d'; 34$lang['Validation Exception invalid date format'] = 'must be of format YYYY-MM-DD'; 35 36$lang['Exception noschemas'] = 'There have been no schemas given to load columns from'; 37$lang['Exception nocolname'] = 'No column name given'; 38 39$lang['sort'] = 'Sort by this column'; 40$lang['next'] = 'Next page'; 41$lang['prev'] = 'Previous page'; 42 43$lang['none'] = 'Nothing found'; 44 45$lang['tablefilteredby'] = 'Filtered by %s'; 46$lang['tableresetfilter'] = 'Show all (remove filter/sort)'; 47 48//Setup VIM: ex: et ts=4 : 49