r26261 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r26260‎ | r26261 | r26262 >
Date:20:33, 30 September 2007
Author:aaron
Status:old
Tags:
Comment:
*Some fr translations (by Bertrand) (bug 11280, bug 11502)
Modified paths:
  • /trunk/extensions/Nuke/SpecialNuke.php (modified) (history)
  • /trunk/phase3/languages/messages/MessagesFr.php (modified) (history)

Diff [purge]

Index: trunk/phase3/languages/messages/MessagesFr.php
@@ -911,6 +911,9 @@
912912 'destfilename' => 'Nom sous lequel le fichier sera enregistré',
913913 'watchthisupload' => 'Suivre ce fichier',
914914 'filewasdeleted' => 'Un fichier avec ce nom a déjà été copié, puis supprimé. Vous devriez vérifier le $1 avant de procéder à une nouvelle copie.',
 915+'upload-wasdeleted' => "'''Attention : Vous êtes en train d'importer un fichier qui a déjà été supprimé auparavant.'''
 916+
 917+Vous devriez considérer s'il est opportun de continuer l'import de ce fichier. Le journal des suppressions vous donnera les éléments d'information.",
915918 'filename-bad-prefix' => 'Le nom du fichier que vous importez commence par <strong>"$1"</strong> qui est un nom généralement donné par les appareils photo numérique et qui ne décrit pas le fichier. Veuillez choisir un nom de fichier décrivant votre fichier.',
916919
917920 'upload-proto-error' => 'Protocole incorrect',
Index: trunk/extensions/Nuke/SpecialNuke.php
@@ -16,15 +16,10 @@
1717 $wgAvailableRights[] = 'nuke';
1818
1919 function wfSetupNuke() {
20 - global $wgMessageCache;
21 - $wgMessageCache->addMessages(
22 - array(
23 - 'nuke' => 'Mass delete',
24 - 'nuke-nopages' => "No new pages by [[Special:Contributions/$1|$1]] in recent changes.",
25 - 'nuke-list' => "The following pages were recently created by [[Special:Contributions/$1|$1]]; put in a comment and hit the button to delete them.",
26 - 'nuke-defaultreason' => "Mass removal of pages added by $1",
27 - )
28 - );
 20+ global $wgMessageCache, $messages, $lang ;
 21+ require_once( dirname( __FILE__ ) . '/SpecialNuke.i18n.php' );
 22+ foreach( SpecialNukeMessages() as $lang => $messages )
 23+ $GLOBALS['wgMessageCache']->addMessages( $messages, $lang );
2924
3025 $GLOBALS['wgSpecialPages']['Nuke'] = array(
3126 /*class*/ 'SpecialPage',
@@ -73,7 +68,7 @@
7469 $nuke = Title::makeTitle( NS_SPECIAL, 'Nuke' );
7570 $submit = wfElement( 'input', array( 'type' => 'submit' ) );
7671
77 - $wgOut->addWikiText( "This tool allows for mass deletions of pages recently added by a given user or IP. Input the IP to get a list of things to delete:" );
 72+ $wgOut->addWikiText( wfMsgForContent('nuke-tools') );
7873 $wgOut->addHTML( wfElement( 'form', array(
7974 'action' => $nuke->getLocalURL( 'action=submit' ),
8075 'method' => 'post' ),
@@ -168,3 +163,4 @@
169164 }
170165 }
171166
 167+

Follow-up revisions

RevisionCommit summaryAuthorDate
r26280Merged revisions 26248-26279 via svnmerge from...david19:12, 1 October 2007

Status & tagging log