-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInvalidateCache.i18n.php
More file actions
44 lines (40 loc) · 1.94 KB
/
InvalidateCache.i18n.php
File metadata and controls
44 lines (40 loc) · 1.94 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
<?php
/**
* Internationalisation file for the InvalidateCache extension
*
* @file
* @ingroup Extensions
*/
$messages = array();
/** English
* @author Kudu
*/
$messages['en'] = array(
'invalidatecache' => 'Invalidate the cache',
'invalidatecache-desc' => 'Invalidate the cache',
'invalidatecache-label-comment' => 'Comment',
'invalidatecache-label-invalidate' => 'Invalidate',
'invalidatecache-label-paths' => 'Paths',
'invalidatecache-error-notprefixed' => 'All paths must begin with the website\'s hostname.',
'invalidatecache-success' => 'The paths were successfully invalidated.',
'log-description-invalidatecache' => 'This is a log of cache invalidations.',
'log-name-invalidatecache' => 'Cache invalidation log',
'logentry-invalidatecache-invalidate' => '$1 invalidated the paths: $4',
);
/** Message documentation (Message documentation)
* @author Kudu
*/
$messages['qqq'] = array(
'invalidatecache' => 'The title of Special:InvalidateCache.',
'invalidatecache-desc' => 'The description of the extension.',
'invalidatecache-label-comment' => 'The label for the Comment field.',
'invalidatecache-label-invalidate' => 'The label for the Invalidate button.',
'invalidatecache-label-paths' => 'The label for the Paths field.'
'invalidatecache-error-notprefixed' => 'The error message displayed when a path does not begin with the website\'s hostname.',
'invalidatecache-success' => 'The message displayed when the paths were successfully invalidated.',
'log-description-invalidatecache' => 'The description of the cache invalidation log.',
'log-name-invalidatecache' => 'The name of the cache invalidation log.',
'logentry-invalidatecache-invalidate' => 'The format of the log entry for cache invalidation. Parameters:
* $1 = user who invalidated the cache
* $4 = invalidated paths',
);