Index: trunk/extensions/SemanticGlossary/SemanticGlossary.i18n.php |
— | — | @@ -29,8 +29,8 @@ |
30 | 30 | 'semanticglossary-brokensession' => 'Action not allowed. Broken session data.', |
31 | 31 | 'semanticglossary-norights' => 'Action not allowed. Insufficient rights.', |
32 | 32 | |
33 | | - '___glt' => 'Glossary-Term', |
34 | | - '___gld' => 'Glossary-Definition', |
| 33 | + 'semanticglossary-prop-glt' => 'Glossary-Term', |
| 34 | + 'semanticglossary-prop-gld' => 'Glossary-Definition', |
35 | 35 | |
36 | 36 | ); |
37 | 37 | |
— | — | @@ -57,6 +57,6 @@ |
58 | 58 | |
59 | 59 | 'semanticglossary-messageheader' => 'Meldungen:', |
60 | 60 | |
61 | | - '___glt' => 'Glossar-Term', |
62 | | - '___gld' => 'Glossar-Definition', |
| 61 | + 'semanticglossary-prop-glt' => 'Glossar-Term', |
| 62 | + 'semanticglossary-prop-gld' => 'Glossar-Definition', |
63 | 63 | ); |
Index: trunk/extensions/SemanticGlossary/SemanticGlossary.php |
— | — | @@ -118,7 +118,7 @@ |
119 | 119 | } |
120 | 120 | |
121 | 121 | function SemanticGlossaryRegisterPropertyAliases () { |
122 | | - SMWPropertyValue::registerPropertyAlias( '___glt', wfMsg( '___glt' ) ); |
123 | | - SMWPropertyValue::registerPropertyAlias( '___gld', wfMsg( '___gld' ) ); |
| 122 | + SMWPropertyValue::registerPropertyAlias( '___glt', wfMsg( 'semanticglossary-prop-glt' ) ); |
| 123 | + SMWPropertyValue::registerPropertyAlias( '___gld', wfMsg( 'semanticglossary-prop-gld' ) ); |
124 | 124 | return true; |
125 | 125 | } |