xref: /plugin/struct/lang/en/lang.php (revision 4fc1424af829d05c69a00a0c2ae33facc7342115)
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
147c080d69SAndreas Gohr$lang['page schema'] = 'Page Schema:';
157c080d69SAndreas Gohr$lang['lookup schema'] = 'Lookup Schema:';
160ceefd5cSAnna Dabrowska$lang['edithl'] = 'Editing schema <i>%s</i>';
176c9d1a10SAnna Dabrowska$lang['internal'] = 'This internal schema is not editable.';
181dbaf557SAndreas Gohr$lang['create'] = 'Create new Schema';
191dbaf557SAndreas Gohr$lang['schemaname'] = 'Schema Name:';
201dbaf557SAndreas Gohr$lang['save'] = 'Save';
211dbaf557SAndreas Gohr$lang['createhint'] = 'Please note: schemas can not be renamed later';
22650e9493SAndreas Gohr$lang['pagelabel'] = 'Page';
23f107f479SAndreas Gohr$lang['rowlabel'] = 'Row #';
24da62ec9cSAnna Dabrowska$lang['publishedlabel'] = 'Published';
25cadfc3ccSAndreas Gohr$lang['revisionlabel'] = 'Last Updated';
262e12ac22SMichael Grosse$lang['userlabel'] = 'Last Editor';
2788b58a21SSzymon Olewniczak$lang['summarylabel'] = 'Last Summary';
2848010be8SAndreas Gohr$lang['summary'] = 'Struct data changed';
29d486d6d7SAndreas Gohr$lang['export'] = 'Export Schema as JSON';
308ddf87afSAndreas Gohr$lang['btn_export'] = 'Export';
318ddf87afSAndreas Gohr$lang['import'] = 'Import a Schema from JSON';
328ddf87afSAndreas Gohr$lang['btn_import'] = 'Import';
338ddf87afSAndreas Gohr$lang['import_warning'] = 'Warning: this will overwrite already defined fields!';
348ddf87afSAndreas Gohr
35d5a1a6dcSAndreas Gohr$lang['del_confirm'] = 'Enter schema name to confirm deletion';
36d5a1a6dcSAndreas Gohr$lang['del_fail'] = 'Schema names did not match. Schema not deleted';
37d5a1a6dcSAndreas Gohr$lang['del_ok'] = 'Schema has been deleted';
38d5a1a6dcSAndreas Gohr$lang['btn_delete'] = 'Delete';
3987475c0fSMichael Grosse$lang['js']['confirmAssignmentsDelete'] = 'Do you really want to delete the assignment of schema "{0}" to page/namespace "{1}"?';
40d5a1a6dcSAndreas Gohr
4179c83e06SMichael Große$lang['clear_confirm'] = 'Enter schema name to confirm clearing all data';
4279c83e06SMichael Große$lang['clear_fail'] = 'Schema names did not match. Data not deleted';
4379c83e06SMichael Große$lang['clear_ok'] = 'Data of schema has been deleted';
4479c83e06SMichael Große$lang['btn_clear'] = 'Clear';
4579c83e06SMichael Große
468ddf87afSAndreas Gohr$lang['tab_edit'] = 'Edit Schema';
478ddf87afSAndreas Gohr$lang['tab_export'] = 'Import/Export';
4879c83e06SMichael Große$lang['tab_delete'] = 'Delete/Clear';
4915929be2SAndreas Gohr
506af24d3eSAndreas Gohr$lang['editor_sort'] = 'Sort';
516af24d3eSAndreas Gohr$lang['editor_label'] = 'Field Name';
526af24d3eSAndreas Gohr$lang['editor_multi'] = 'Multi-Input?';
536af24d3eSAndreas Gohr$lang['editor_conf'] = 'Configuration';
546af24d3eSAndreas Gohr$lang['editor_type'] = 'Type';
5526147f8cSAndreas Gohr$lang['editor_enabled'] = 'Enabled';
56e2c90eebSAndreas Gohr$lang['editor_editors'] = 'Comma separated list of users and @groups who may edit this schema\'s data (empty for all):';
576af24d3eSAndreas Gohr
58ececd523SAndreas Gohr$lang['assign_add'] = 'Add';
59ececd523SAndreas Gohr$lang['assign_del'] = 'Delete';
60ececd523SAndreas Gohr$lang['assign_assign'] = 'Page/Namespace';
61ececd523SAndreas Gohr$lang['assign_tbl'] = 'Schema';
62ececd523SAndreas Gohr
635c36a1f6SAndreas Gohr$lang['multi'] = 'Enter multiple values separated by commas.';
6469068579SAndreas Gohr$lang['multidropdown'] = 'Hold CTRL or CMD to select multiple values.';
65e2c90eebSAndreas Gohr$lang['duplicate_label'] = "Label <code>%s</code> already exists in schema, second occurance was renamed to <code>%s</code>.";
6615929be2SAndreas Gohr
673c2e6844SAndreas Gohr$lang['emptypage'] = 'Struct data has not been saved for an empty page';
687b7a9290SAndreas Gohr$lang['na'] = 'n/a';
693c2e6844SAndreas Gohr
7017560ecbSAndreas Gohr$lang['validation_prefix'] = "Field [%s]: ";
7115929be2SAndreas Gohr
7270d1dea6SAndreas Gohr$lang['Validation Exception Decimal needed'] = 'only decimals are allowed';
7370d1dea6SAndreas Gohr$lang['Validation Exception Decimal min'] = 'has to be equal or greater than %d';
7470d1dea6SAndreas Gohr$lang['Validation Exception Decimal max'] = 'has to be equal or less than %d';
75f0d4d769SAndreas Gohr$lang['Validation Exception User not found'] = 'has to be an existing user. User \'%s\' was not found.';
7651629881SAndreas Gohr$lang['Validation Exception Media mime type'] = 'MIME type %s has to match the allowed set of %s';
777d18b5caSAndreas Gohr$lang['Validation Exception Url invalid'] = '%s is not a valid URL';
78a5cdcc05SAndreas Gohr$lang['Validation Exception Mail invalid'] = '%s is not a valid email address';
79d2b31c9bSMichael Große$lang['Validation Exception invalid date format'] = 'must be of format YYYY-MM-DD';
80b80ca5e1SMichael Große$lang['Validation Exception invalid datetime format'] = 'must be of format YYYY-MM-DD HH:MM';
81d8bfcd03SAnna Dabrowska$lang['Validation Exception pastonly'] = 'must not lie in the future';
82d8bfcd03SAnna Dabrowska$lang['Validation Exception futureonly'] = 'must not lie in the past';
8395659421SAndreas Gohr$lang['Validation Exception bad color specification'] = 'must be of format #RRGGBB';
84daebf1aaSAndreas Gohr
85ea5ad12aSMichael Grosse$lang['Exception illegal option'] = 'The option \'<code>%s</code>\' is invalid for this aggregation type.';
865511bd5bSAndreas Gohr$lang['Exception noschemas'] = 'There have been no schemas given to load columns from';
875511bd5bSAndreas Gohr$lang['Exception nocolname'] = 'No column name given';
882be187cdSAndreas Gohr$lang['Exception nolookupmix'] = 'You can not aggregate more than one Lookup or mix it with Page data';
8909dd9c78SAndreas Gohr$lang['Exception No data saved'] = 'No data saved';
907cbcfbdbSAndreas Gohr$lang['Exception no sqlite'] = 'The struct plugin requires the sqlite plugin. Please install and enable it.';
91e87d1e74SMichael Große$lang['Exception column not in table'] = 'There is no column %s in schema %s.';
92549a0837SAndreas Gohr
93bb348952SAndreas Gohr$lang['Warning: no filters for cloud'] = 'Filters are not supported for struct clouds.';
94b3e6d4a4SMichael Grosse
9593485d71SMichael Große$lang['sort'] = 'Sort by this column';
9693485d71SMichael Große$lang['next'] = 'Next page';
9793485d71SMichael Große$lang['prev'] = 'Previous page';
9893485d71SMichael Große
99f87e1c10SMichael Große$lang['none'] = 'Nothing found';
10009dd691aSAndreas Gohr$lang['csvexport'] = 'CSV Export';
101f87e1c10SMichael Große
1026d2df532SAndreas Gohr$lang['admin_csvexport'] = 'Export raw data to a CSV file';
10369d92b7aSAnna Dabrowska$lang['admin_csv_page'] = 'page';
10415601745SAnna Dabrowska$lang['admin_csv_lookup'] = 'global';
10569d92b7aSAnna Dabrowska$lang['admin_csv_serial'] = 'serial';
10669d92b7aSAnna Dabrowska$lang['admin_csvexport_datatype'] = 'Export data of type';
1076d2df532SAndreas Gohr$lang['admin_csvimport'] = 'Import raw data from a CSV file';
10869d92b7aSAnna Dabrowska$lang['admin_csvimport_datatype'] = 'Import data of type';
1096d2df532SAndreas Gohr$lang['admin_csvdone'] = 'CSV file imported';
1106d2df532SAndreas Gohr$lang['admin_csvhelp'] = 'Please refer to the manual on CSV Import for format details.';
111a0b3799eSAndreas Gohr
11229877279SMichael Große$lang['tablefilteredby'] = 'Filtered by %s';
11329877279SMichael Große$lang['tableresetfilter'] = 'Show all (remove filter/sort)';
1141f075418SAnna Dabrowska$lang['comparator ='] = 'equals';
1151f075418SAnna Dabrowska$lang['comparator <'] = 'is less than';
1161f075418SAnna Dabrowska$lang['comparator >'] = 'is greater than';
1171f075418SAnna Dabrowska$lang['comparator <='] = 'is less than or euqals';
1181f075418SAnna Dabrowska$lang['comparator >='] = 'is greater than or equals';
1191f075418SAnna Dabrowska$lang['comparator !='] = 'does not equal';
1201f075418SAnna Dabrowska$lang['comparator <>'] = 'does not equal';
1211f075418SAnna Dabrowska$lang['comparator !~'] = 'is not like';
1221f075418SAnna Dabrowska$lang['comparator *~'] = 'is like';
123549a0837SAndreas Gohr
124f25d10fdSMichael Grosse$lang['Exception schema missing'] = "Schema %s does not exist!";
12599966bd6SMichael Grosse
1265a4df70dSAndreas Gohr$lang['no_lookup_for_page'] = 'You can\'t use the Lookup Editor on a page schema!';
1276b5e52fdSAndreas Gohr$lang['lookup new entry'] = 'Create new Entry';
128709d7a58SAnna Dabrowska$lang['js']['actions'] = 'Actions';
12904346cd2SAndreas Gohr$lang['js']['lookup_delete'] = 'Delete Entry';
1306b5e52fdSAndreas Gohr
131b193f1eeSSzymon Olewniczak$lang['bureaucracy_action_struct_lookup_thanks'] = 'The entry has been stored. <a href="%s">Add another entry</a>.';
132b193f1eeSSzymon Olewniczak
133*4fc1424aSAnna Dabrowska$lang['filter_title'] = 'Aggregation filters';
134*4fc1424aSAnna Dabrowska$lang['filter_intro'] = 'Narrow down aggregation results based on available values. Deselect some options if the result is too narrow.';
135*4fc1424aSAnna Dabrowska$lang['filter_button'] = 'Apply filters';
136*4fc1424aSAnna Dabrowska
137549a0837SAndreas Gohr//Setup VIM: ex: et ts=4 :
138