Extension:IPaper/code/v0.5/IPaper.i18n.php
From MediaWiki.org
<?php /** * ***** BEGIN LICENSE BLOCK ***** * This file is part of the IPaper extension. * Copyright (c) 2009 Symbian Foundation - http://www.symbian.org/ * * This is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * * ***** END LICENSE BLOCK ***** * * @see IPaper.php * @version 0.5 * @license GNU General Public Licence 2.0 or later * @author Nick Boultbee (MW User:declension) * @copyright Symbian Foundation 2009 */ $messages = array(); /** English * @author Nick Boultbee */ $messages['en'] = array( 'ipaper_desc' => 'Parser support for <tt><nowiki><ipaper></nowiki></tt> tags to render iPaper documents on wiki pages', 'ipaper_view_on' => 'View $1 on $2', 'ipaper_this_document' => 'this document', 'ipaper_use_key' => 'For faster document loading, include the parameter: <strong><tt>key=$1</tt></strong>', 'ipaper_error_get_list' => "Couldn't get list of documents from Scribd ($1)", 'ipaper_error_get_doc_key' => "Couldn't get key for document ID $1", 'ipaper_error_id_nonnumeric' => 'Document ID must be numeric', 'ipaper_error_connection' => "Couldn't connect to Scribd API ($1)", 'ipaper_error_debug' => 'Unknown value for option $1.', ); /** French (Français) * @author Nick Boultbee */ $messages['fr'] = array( 'ipaper_desc' => "Permet l'utilisation d'une balise <tt><nowiki><ipaper></nowiki></tt> pour restituer des fichiers iPaper sur une page", 'ipaper_this_document' => 'ce fichier', 'ipaper_view_on' => 'Visualisez $1 sur $2', 'ipaper_use_key' => 'Pour accélérer le chargement du fichier, veuillez ajouter le paramètre: <strong><tt>key=$1</tt></strong>', );
