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
|
<?php
/**
* @file
* @author Niklas Laxström
* @license GPL-2.0-or-later
*/
/**
* InsertablesSuggester implementation for MediaWiki message translations.
* @since 2013.09
*/
class MediaWikiInsertablesSuggester implements InsertablesSuggester {
public function getInsertables( $text ) {
$insertables = [];
$matches = [];
// MediaWiki apihelp messages often have parameters like $1user, which should
// be unchanged in translation.
preg_match_all( '/\$(1[a-z]+|[0-9]+)/', $text, $matches, PREG_SET_ORDER );
$new = array_map( function ( $match ) {
return new Insertable( $match[0], $match[0] );
}, $matches );
$insertables = array_merge( $insertables, $new );
$matches = [];
preg_match_all(
'/({{((?:PLURAL|GENDER|GRAMMAR):[^|]*)\|).*?(}})/i',
$text,
$matches,
PREG_SET_ORDER
);
$new = array_map( function ( $match ) {
return new Insertable( $match[2], $match[1], $match[3] );
}, $matches );
$insertables = array_merge( $insertables, $new );
$matches = [];
preg_match_all( '/<\/?[a-z]+>/', $text, $matches, PREG_SET_ORDER );
$new = array_map( function ( $match ) {
return new Insertable( $match[0], $match[0] );
}, $matches );
$insertables = array_merge( $insertables, $new );
return $insertables;
}
}
|