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'; 22*8ddf87afSAndreas Gohr$lang['btn_export'] = 'Export'; 23*8ddf87afSAndreas Gohr$lang['import'] = 'Import a Schema from JSON'; 24*8ddf87afSAndreas Gohr$lang['btn_import'] = 'Import'; 25*8ddf87afSAndreas Gohr$lang['import_warning'] = 'Warning: this will overwrite already defined fields!'; 26*8ddf87afSAndreas Gohr 27*8ddf87afSAndreas Gohr$lang['tab_edit'] = 'Edit Schema'; 28*8ddf87afSAndreas Gohr$lang['tab_export'] = 'Import/Export'; 2915929be2SAndreas Gohr 306af24d3eSAndreas Gohr$lang['editor_sort'] = 'Sort'; 316af24d3eSAndreas Gohr$lang['editor_label'] = 'Field Name'; 326af24d3eSAndreas Gohr$lang['editor_multi'] = 'Multi-Input?'; 336af24d3eSAndreas Gohr$lang['editor_conf'] = 'Configuration'; 346af24d3eSAndreas Gohr$lang['editor_type'] = 'Type'; 3526147f8cSAndreas Gohr$lang['editor_enabled'] = 'Enabled'; 366af24d3eSAndreas Gohr 37ececd523SAndreas Gohr$lang['assign_add'] = 'Add'; 38ececd523SAndreas Gohr$lang['assign_del'] = 'Delete'; 39ececd523SAndreas Gohr$lang['assign_assign'] = 'Page/Namespace'; 40ececd523SAndreas Gohr$lang['assign_tbl'] = 'Schema'; 41ececd523SAndreas Gohr 425c36a1f6SAndreas Gohr$lang['multi'] = 'Enter multiple values separated by commas.'; 4369068579SAndreas Gohr$lang['multidropdown'] = 'Hold CTRL or CMD to select multiple values.'; 44a1603abdSAndreas Gohr$lang['duplicate_label'] = "Label <code>%s</code> already exists in schema, second occurance was renamed it to <code>%s</code>."; 4515929be2SAndreas Gohr 463c2e6844SAndreas Gohr$lang['emptypage'] = 'Struct data has not been saved for an empty page'; 473c2e6844SAndreas Gohr 4817560ecbSAndreas Gohr$lang['validation_prefix'] = "Field [%s]: "; 4915929be2SAndreas Gohr 50daebf1aaSAndreas Gohr$lang['Validation Exception Integer needed'] = 'only integers are allowed'; 51bceb7e73SAndreas Gohr$lang['Validation Exception Integer min'] = 'has to be equal or greater than %d'; 52bceb7e73SAndreas Gohr$lang['Validation Exception Integer max'] = 'has to be equal or less than %d'; 53f0d4d769SAndreas Gohr$lang['Validation Exception User not found'] = 'has to be an existing user. User \'%s\' was not found.'; 5451629881SAndreas Gohr$lang['Validation Exception Media mime type'] = 'MIME type %s has to match the allowed set of %s'; 557d18b5caSAndreas Gohr$lang['Validation Exception Url invalid'] = '%s is not a valid URL'; 56a5cdcc05SAndreas Gohr$lang['Validation Exception Mail invalid'] = '%s is not a valid email address'; 57d2b31c9bSMichael Große$lang['Validation Exception invalid date format'] = 'must be of format YYYY-MM-DD'; 58daebf1aaSAndreas Gohr 595511bd5bSAndreas Gohr$lang['Exception noschemas'] = 'There have been no schemas given to load columns from'; 605511bd5bSAndreas Gohr$lang['Exception nocolname'] = 'No column name given'; 61549a0837SAndreas Gohr 6293485d71SMichael Große$lang['sort'] = 'Sort by this column'; 6393485d71SMichael Große$lang['next'] = 'Next page'; 6493485d71SMichael Große$lang['prev'] = 'Previous page'; 6593485d71SMichael Große 66f87e1c10SMichael Große$lang['none'] = 'Nothing found'; 67f87e1c10SMichael Große 6829877279SMichael Große$lang['tablefilteredby'] = 'Filtered by %s'; 6929877279SMichael Große$lang['tableresetfilter'] = 'Show all (remove filter/sort)'; 70549a0837SAndreas Gohr 71549a0837SAndreas Gohr//Setup VIM: ex: et ts=4 : 72