* Mm added functions to this one too
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Fri, 23 Jun 2006 22:39:26 +0000 (22:39 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Fri, 23 Jun 2006 22:39:26 +0000 (22:39 +0000)
languages/LanguagePms.php

index 4bfed2e..dc90c58 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/** Piedmontese
+/** Piedmontese (Piemontèis)
   * Users are bilingual in Piedmontese and Italian, using Italian as template.
   *
   * @package MediaWiki
   * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
   */
 
-/**
- *
- */
 require_once 'LanguageIt.php';
 
-/**
- *
- */
-class LanguagePms extends LanguageIt {}
+class LanguagePms extends LanguageIt {
+
+       function getFallbackLanguage() {
+               return 'it';
+       }
+
+       function getAllMessages() {
+               return null;
+       }
+
+}
 
 ?>