xref: /plugin/struct/lang/en/lang.php (revision 7923cdacab81de55732b2931695bdc6734571b7e)
1549a0837SAndreas Gohr<?php
2*444e1657SAleksandr Selivanov
3549a0837SAndreas Gohr/**
4*444e1657SAleksandr Selivanov * @license    GPL 2 (https://www.gnu.org/licenses/gpl.html)
5*444e1657SAleksandr Selivanov *
6549a0837SAndreas Gohr * English language file for struct plugin
7549a0837SAndreas Gohr *
8549a0837SAndreas Gohr * @author Andreas Gohr, Michael Große <dokuwiki@cosmocode.de>
9549a0837SAndreas Gohr */
101dbaf557SAndreas Gohr$lang['menu']                  = 'Struct Schema Editor';
1140b81cabSAndreas Gohr$lang['menu_assignments']      = 'Struct Schema Assignments';
125a1eab78SAndreas Gohr$lang['headline']              = 'Structured Data';
137c080d69SAndreas Gohr$lang['page schema']           = 'Page Schema:';
147c080d69SAndreas Gohr$lang['lookup schema']         = 'Lookup Schema:';
150ceefd5cSAnna Dabrowska$lang['edithl']                = 'Editing schema <i>%s</i>';
166c9d1a10SAnna Dabrowska$lang['internal']              = 'This internal schema is not editable.';
171dbaf557SAndreas Gohr$lang['create']                = 'Create new Schema';
181dbaf557SAndreas Gohr$lang['schemaname']            = 'Schema Name:';
191dbaf557SAndreas Gohr$lang['save']                  = 'Save';
201dbaf557SAndreas Gohr$lang['createhint']            = 'Please note: schemas can not be renamed later';
21650e9493SAndreas Gohr$lang['pagelabel']             = 'Page';
22f107f479SAndreas Gohr$lang['rowlabel']              = 'Row #';
23da62ec9cSAnna Dabrowska$lang['publishedlabel']        = 'Published';
24cadfc3ccSAndreas Gohr$lang['revisionlabel']         = 'Last Updated';
252e12ac22SMichael Grosse$lang['userlabel']             = 'Last Editor';
2688b58a21SSzymon Olewniczak$lang['summarylabel']          = 'Last Summary';
2748010be8SAndreas Gohr$lang['summary']               = 'Struct data changed';
28d486d6d7SAndreas Gohr$lang['export']                = 'Export Schema as JSON';
298ddf87afSAndreas Gohr$lang['btn_export']            = 'Export';
308ddf87afSAndreas Gohr$lang['import']                = 'Import a Schema from JSON';
318ddf87afSAndreas Gohr$lang['btn_import']            = 'Import';
328ddf87afSAndreas Gohr$lang['import_warning']        = 'Warning: this will overwrite already defined fields!';
33d5a1a6dcSAndreas Gohr$lang['del_confirm']           = 'Enter schema name to confirm deletion';
34d5a1a6dcSAndreas Gohr$lang['del_fail']              = 'Schema names did not match. Schema not deleted';
35d5a1a6dcSAndreas Gohr$lang['del_ok']                = 'Schema has been deleted';
36d5a1a6dcSAndreas Gohr$lang['btn_delete']            = 'Delete';
3787475c0fSMichael Grosse$lang['js']['confirmAssignmentsDelete'] = 'Do you really want to delete the assignment of schema "{0}" to page/namespace "{1}"?';
38*444e1657SAleksandr Selivanov$lang['js']['actions']         = 'Actions';
39*444e1657SAleksandr Selivanov$lang['js']['lookup_delete']   = 'Delete Entry';
4079c83e06SMichael Große$lang['clear_confirm']         = 'Enter schema name to confirm clearing all data';
4179c83e06SMichael Große$lang['clear_fail']            = 'Schema names did not match. Data not deleted';
4279c83e06SMichael Große$lang['clear_ok']              = 'Data of schema has been deleted';
4379c83e06SMichael Große$lang['btn_clear']             = 'Clear';
448ddf87afSAndreas Gohr$lang['tab_edit']              = 'Edit Schema';
458ddf87afSAndreas Gohr$lang['tab_export']            = 'Import/Export';
4679c83e06SMichael Große$lang['tab_delete']            = 'Delete/Clear';
476af24d3eSAndreas Gohr$lang['editor_sort']           = 'Sort';
486af24d3eSAndreas Gohr$lang['editor_label']          = 'Field Name';
496af24d3eSAndreas Gohr$lang['editor_multi']          = 'Multi-Input?';
506af24d3eSAndreas Gohr$lang['editor_conf']           = 'Configuration';
516af24d3eSAndreas Gohr$lang['editor_type']           = 'Type';
5226147f8cSAndreas Gohr$lang['editor_enabled']        = 'Enabled';
53e2c90eebSAndreas Gohr$lang['editor_editors']        = 'Comma separated list of users and @groups who may edit this schema\'s data (empty for all):';
54ececd523SAndreas Gohr$lang['assign_add']            = 'Add';
55ececd523SAndreas Gohr$lang['assign_del']            = 'Delete';
56ececd523SAndreas Gohr$lang['assign_assign']         = 'Page/Namespace';
57ececd523SAndreas Gohr$lang['assign_tbl']            = 'Schema';
585c36a1f6SAndreas Gohr$lang['multi']                 = 'Enter multiple values separated by commas.';
5969068579SAndreas Gohr$lang['multidropdown']         = 'Hold CTRL or CMD to select multiple values.';
60*444e1657SAleksandr Selivanov$lang['duplicate_label']       = 'Label <code>%s</code> already exists in schema, second occurance was renamed to <code>%s</code>.';
613c2e6844SAndreas Gohr$lang['emptypage']             = 'Struct data has not been saved for an empty page';
627b7a9290SAndreas Gohr$lang['na']                    = 'n/a';
63*444e1657SAleksandr Selivanov$lang['validation_prefix']     = 'Field [%s]: ';
6470d1dea6SAndreas Gohr$lang['Validation Exception Decimal needed'] = 'only decimals are allowed';
6570d1dea6SAndreas Gohr$lang['Validation Exception Decimal min'] = 'has to be equal or greater than %d';
6670d1dea6SAndreas Gohr$lang['Validation Exception Decimal max'] = 'has to be equal or less than %d';
67f0d4d769SAndreas Gohr$lang['Validation Exception User not found'] = 'has to be an existing user. User \'%s\' was not found.';
6851629881SAndreas Gohr$lang['Validation Exception Media mime type'] = 'MIME type %s has to match the allowed set of %s';
697d18b5caSAndreas Gohr$lang['Validation Exception Url invalid'] = '%s is not a valid URL';
70a5cdcc05SAndreas Gohr$lang['Validation Exception Mail invalid'] = '%s is not a valid email address';
71d2b31c9bSMichael Große$lang['Validation Exception invalid date format'] = 'must be of format YYYY-MM-DD';
72b80ca5e1SMichael Große$lang['Validation Exception invalid datetime format'] = 'must be of format YYYY-MM-DD HH:MM';
73d8bfcd03SAnna Dabrowska$lang['Validation Exception pastonly'] = 'must not lie in the future';
74d8bfcd03SAnna Dabrowska$lang['Validation Exception futureonly'] = 'must not lie in the past';
7595659421SAndreas Gohr$lang['Validation Exception bad color specification'] = 'must be of format #RRGGBB';
76ea5ad12aSMichael Grosse$lang['Exception illegal option'] = 'The option \'<code>%s</code>\' is invalid for this aggregation type.';
775511bd5bSAndreas Gohr$lang['Exception noschemas']   = 'There have been no schemas given to load columns from';
785511bd5bSAndreas Gohr$lang['Exception nocolname']   = 'No column name given';
792be187cdSAndreas Gohr$lang['Exception nolookupmix'] = 'You can not aggregate more than one Lookup or mix it with Page data';
8009dd9c78SAndreas Gohr$lang['Exception No data saved'] = 'No data saved';
817cbcfbdbSAndreas Gohr$lang['Exception no sqlite']   = 'The struct plugin requires the sqlite plugin. Please install and enable it.';
82e87d1e74SMichael Große$lang['Exception column not in table'] = 'There is no column %s in schema %s.';
837f610bd5Ssaggi-dw$lang['Exception datefilter']  = 'The filter: \'<code>$Date(%s)$</code>\' contains an unsupported value.';
8493485d71SMichael Große$lang['sort']                  = 'Sort by this column';
8593485d71SMichael Große$lang['next']                  = 'Next page';
8693485d71SMichael Große$lang['prev']                  = 'Previous page';
87f87e1c10SMichael Große$lang['none']                  = 'Nothing found';
8809dd691aSAndreas Gohr$lang['csvexport']             = 'CSV Export';
896d2df532SAndreas Gohr$lang['admin_csvexport']       = 'Export raw data to a CSV file';
9069d92b7aSAnna Dabrowska$lang['admin_csv_page']        = 'page';
9115601745SAnna Dabrowska$lang['admin_csv_lookup']      = 'global';
9269d92b7aSAnna Dabrowska$lang['admin_csv_serial']      = 'serial';
9369d92b7aSAnna Dabrowska$lang['admin_csvexport_datatype'] = 'Export data of type';
946d2df532SAndreas Gohr$lang['admin_csvimport']       = 'Import raw data from a CSV file';
9569d92b7aSAnna Dabrowska$lang['admin_csvimport_datatype'] = 'Import data of type';
966d2df532SAndreas Gohr$lang['admin_csvdone']         = 'CSV file imported';
976d2df532SAndreas Gohr$lang['admin_csvhelp']         = 'Please refer to the manual on CSV Import for format details.';
9829877279SMichael Große$lang['tablefilteredby']       = 'Filtered by %s';
9929877279SMichael Große$lang['tableresetfilter']      = 'Show all (remove filter/sort)';
1001f075418SAnna Dabrowska$lang['comparator =']          = 'equals';
1011f075418SAnna Dabrowska$lang['comparator <']          = 'is less than';
1021f075418SAnna Dabrowska$lang['comparator >']          = 'is greater than';
1031f075418SAnna Dabrowska$lang['comparator <=']         = 'is less than or euqals';
1041f075418SAnna Dabrowska$lang['comparator >=']         = 'is greater than or equals';
1051f075418SAnna Dabrowska$lang['comparator !=']         = 'does not equal';
1061f075418SAnna Dabrowska$lang['comparator <>']         = 'does not equal';
1071f075418SAnna Dabrowska$lang['comparator !~']         = 'is not like';
1081f075418SAnna Dabrowska$lang['comparator *~']         = 'is like';
109*444e1657SAleksandr Selivanov$lang['Exception schema missing'] = 'Schema %s does not exist!';
1105a4df70dSAndreas Gohr$lang['no_lookup_for_page']    = 'You can\'t use the Lookup Editor on a page schema!';
1116b5e52fdSAndreas Gohr$lang['lookup new entry']      = 'Create new Entry';
112b193f1eeSSzymon Olewniczak$lang['bureaucracy_action_struct_lookup_thanks'] = 'The entry has been stored. <a href="%s">Add another entry</a>.';
1134fc1424aSAnna Dabrowska$lang['filter_title']          = 'Aggregation filters';
1144fc1424aSAnna Dabrowska$lang['filter_button']         = 'Apply filters';
115