1<?php
2/**
3 * English language file for json plugin
4 *
5 * @author Janez Paternoster <janez.paternoster@siol.net>
6 */
7
8// json tabs
9$lang['save'] = 'Save';
10
11$lang['json_original'] = 'JSON original';
12$lang['json_inline'] = 'JSON inline';
13$lang['json_combined'] = 'JSON combined';
14$lang['log'] = 'Log';
15$lang['error'] = 'Errors';
16
17// Ajax save inline or archive or remote
18$lang['permision_denied_read'] = 'Permission Denied for read from %s.';
19$lang['permision_denied_write'] = 'Permission Denied for write into %s.';
20$lang['wrong_pageId'] = 'Argument %s is not ID of a wiki page.';
21$lang['missing_id'] = 'Json missing id or other error in file %s.';
22$lang['json_error'] = 'Argument \'data\' is not valid Json nor empty string.';
23$lang['file_locked'] = 'File %s is currently locked for editing.';
24$lang['file_not_found'] = 'File not found: %s.';
25$lang['file_exists'] = 'File already exists: %s.';
26$lang['element_not_found'] = 'Json element id=\'%s\' not found.';
27$lang['duplicated_id'] = 'Non unique id=\'%s\' attribute on json elements.';
28$lang['not_empty'] = 'Writing inside json id=\'%s\' element is not allowed as it already contains data.';
29$lang['not_array'] = 'Json element id=\'%s\' is not an array.';
30$lang['not_array_file'] = 'File %s is not a Json array.';
31$lang['hash_not_equal'] = 'Writing into json id=\'%s\' element is not allowed. Someone else changed the data since last page reload.';
32$lang['json_updated_ajax'] = 'Json id=\'%s\' changed by ajax call.';
33$lang['json_updated_remote'] = 'Json id=\'%s\' changed by remote command.';
34$lang['internal_error'] = 'Internal error in module %s.';
35
36// Ajax archive
37$lang['archived'] = 'JSON database is archived into page.';
38$lang['file_changed'] = 'File %s has changed since last page load. Please reload the file first.';
39
40// JavaScript
41$lang['js']['archive_button'] = 'Archive JSON database';
42$lang['js']['archive_move'] = 'Move wiki page to sub-directory (leave empty for no):';
43