Index: trunk/extensions/Translate/groups/mediawiki-defines.txt |
— | — | @@ -619,6 +619,8 @@ |
620 | 620 | Semantic Forms |
621 | 621 | file = SemanticForms/languages/SF_Messages.php |
622 | 622 | |
| 623 | +Semantic Gallery |
| 624 | + |
623 | 625 | Semantic Google Maps |
624 | 626 | |
625 | 627 | Semantic MediaWiki |
Index: trunk/extensions/SemanticGallery/SG_ResultPrinter.php |
— | — | @@ -59,6 +59,3 @@ |
60 | 60 | return array($result, 'noparse' => 'true', 'isHTML' => 'true'); |
61 | 61 | } |
62 | 62 | } |
63 | | - |
64 | | -# vim:set tabstop=4 noexpandtab shiftwidth=4: |
65 | | -?> |
Index: trunk/extensions/SemanticGallery/SemanticGallery.i18n.php |
— | — | @@ -0,0 +1,15 @@ |
| 2 | +<?php |
| 3 | +/** |
| 4 | + * Internationalization file for the Semantic Gallery extension |
| 5 | + * |
| 6 | + * @addtogroup Extensions |
| 7 | +*/ |
| 8 | + |
| 9 | +$messages = array(); |
| 10 | + |
| 11 | +/** English |
| 12 | + * @author Rowan Rodrik van der Molen |
| 13 | + */ |
| 14 | +$messages['en'] = array( |
| 15 | + 'semanticgallery-desc' => 'Adds a gallery output format to SMW inline queries', |
| 16 | +); |
Property changes on: trunk/extensions/SemanticGallery/SemanticGallery.i18n.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 17 | + native |
Index: trunk/extensions/SemanticGallery/SemanticGallery.php |
— | — | @@ -28,7 +28,3 @@ |
29 | 29 | else |
30 | 30 | SMWQueryProcessor::$formats['gallery'] = 'SemanticGallery_ResultPrinter'; |
31 | 31 | } |
32 | | - |
33 | | - |
34 | | -# vim:set tabstop=4 noexpandtab shiftwidth=4: |
35 | | -?> |