-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOffline.i18n.php
More file actions
52 lines (40 loc) · 2.99 KB
/
Offline.i18n.php
File metadata and controls
52 lines (40 loc) · 2.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
$messages = array();
$messages['en'] = array(
'offline_desc' => 'Read articles offline, from *pedia dump files. See page [[Special:Offline]] for status.',
'offline' => 'Offline configuration helper', // special page title
//'special_page_title' => 'Offline configuration',
'offline_special_desc' => 'Status and diagnostics for the Offline extension.',
'offline_heading_status' => 'Current Status',
'offline_heading_configuration' => 'Configuration',
'offline_reindex_button' => 'Rebuild index now',
'offline_reindex_begin' => 'Beginning offline index rebuild, this could take days...',
'offline_db_path' => 'Dump database found in: <b>$1</b>',
'offline_test_article' => 'Andalusia', // a word likely to be found
'offline_bad_test_article' => 'Internal error: the test_article "$1" was not found, but the index database seems to be good.',
'offline_index_test_pass' => 'Dump index was read successfully.',
'offline_index_test_fail' => 'Dump index cannot be read!',
'offlinewikipath_not_configured' => 'You have not set the $wgOfflineWikiPath variable in LocalSettings.php',
'offlinewikipath_not_found' => 'The directory specified by $wgOfflineWikiPath, <em>$1</em>, does not exist',
'offline_dbdir_not_found' => 'The database directory, <em>$1/db</em>, is missing index data files. These must be downloaded or built.',
'offline_unknown_index_error' => 'The index to your dump could not be read for an unknown reason. Perhaps the database files are damaged.',
'offline_bzload_test_pass' => 'Compressed dump files can be opened.',
'offline_bzload_test_fail' => 'Compressed dump files were not loaded!',
'offline_bz2_ext_needed' => 'Your PHP installation is missing the Bzip2 library.',
'offline_bz2_file_gone' => 'The index pointed to a missing dump file: <em>$1</em>',
'offline_unknown_bz2_error' => 'There was an unknown problem reading dump file <em>$1</em>.',
'offline_article_test_pass' => 'Article data was found where expected.',
'offline_article_test_fail' => 'Indexed page has changed. Perhaps your index was made for another dump?',
'offline_hooks_test_pass' => 'Mediawiki article loader will fetch from dump data.', //, from GRAMMAR(a) %1 encyclopedia called %2.
'offline_hooks_test_fail' => 'Mediawiki article loader is not fetching from dump data. ',
'offline_cache_needed' => 'You need to set up a cache, such as `php-pecl-apc`.',
'offline_all_tests_pass' => 'You are good to go.',
// user preferences
'offline_subdir_status' => 'Index files were found in subdirectory named $1',
'offline_change_subdir' => 'Use the following directory prefix instead:',
'offline_change_language' => 'Dumps of the following languages have been detected. Check all dumps you want to make available.',
'offline_live_data_preferred' => 'Matches from the so-called live database will be preferred over dump text.',
);
$messages['tl'] = array(
'offline_test_article' => 'Myanmar', // a word likely to be found
);