Index: trunk/extensions/SemanticTitle/SemanticTitle.i18n.php |
— | — | @@ -1,4 +1,4 @@ |
2 | | -<?php // SemanticTitle.i18n.php // |
| 2 | +<?php |
3 | 3 | |
4 | 4 | /* |
5 | 5 | ------------------------------------------------------------------------------------------------ |
— | — | @@ -19,27 +19,19 @@ |
20 | 20 | ------------------------------------------------------------------------------------------------ |
21 | 21 | */ |
22 | 22 | |
23 | | -$aliases = array(); |
24 | 23 | $messages = array(); |
25 | 24 | |
26 | | -/* |
27 | | - ------------------------------------------------------------------------------------------------ |
28 | | - English |
29 | | - ------------------------------------------------------------------------------------------------ |
30 | | -*/ |
| 25 | +/** English |
| 26 | + * @author Van de Bugger |
| 27 | + */ |
31 | 28 | $messages[ 'en' ] = array( |
32 | | - 'semantic-title-description' |
33 | | - => 'Sets visible page title to value of a semantic property.', |
| 29 | + 'semantictitle-desc' => 'Sets visible page title to value of a semantic property', |
34 | 30 | ); |
35 | 31 | |
36 | | -/* |
37 | | - ------------------------------------------------------------------------------------------------ |
38 | | - Russian |
39 | | - ------------------------------------------------------------------------------------------------ |
40 | | -*/ |
| 32 | +/** Russian (Русский) |
| 33 | + * @author Van de Bugger |
| 34 | + */ |
41 | 35 | $messages[ 'ru' ] = array( |
42 | | - 'semantic-title-description' |
43 | | - => 'Изменяет видимое имя страницы на значение семантического свойства.', |
| 36 | + 'semantictitle-desc' => 'Изменяет видимое имя страницы на значение семантического свойства.', |
44 | 37 | ); |
45 | 38 | |
46 | | -// end of file // |
Index: trunk/extensions/SemanticTitle/SemanticTitle.php |
— | — | @@ -46,7 +46,7 @@ |
47 | 47 | 'version' => '0.0.1', |
48 | 48 | 'author' => array( '[https://www.mediawiki.org/wiki/User:Van_de_Bugger Van de Bugger]' ), |
49 | 49 | 'url' => 'https://www.mediawiki.org/wiki/Extension:SemanticTitle', |
50 | | - 'descriptionmsg' => 'semantic-title-description', |
| 50 | + 'descriptionmsg' => 'semantictitle-desc', |
51 | 51 | ); |
52 | 52 | |
53 | 53 | // end of file // |