Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -2203,7 +2203,7 @@ |
2204 | 2204 | 'separators' => array( |
2205 | 2205 | 'catseparator', |
2206 | 2206 | 'semicolon-separator', |
2207 | | - 'filetype-separator', |
| 2207 | + 'comma-separator', |
2208 | 2208 | ), |
2209 | 2209 | 'imgmulti' => array( |
2210 | 2210 | 'imgmultipageprev', |
Index: trunk/phase3/maintenance/language/messageTypes.inc |
— | — | @@ -265,7 +265,7 @@ |
266 | 266 | 'hebrew-calendar-m11-gen', |
267 | 267 | 'hebrew-calendar-m12-gen', |
268 | 268 | 'semicolon-separator', |
269 | | - 'filetype-separator', |
| 269 | + 'comma-separator', |
270 | 270 | ); |
271 | 271 | |
272 | 272 | /** EXIF messages, which may be set as optional in several checks, but are generally mandatory */ |
Index: trunk/phase3/includes/SpecialUpload.php |
— | — | @@ -326,7 +326,7 @@ |
327 | 327 | array( 'parseinline' ), |
328 | 328 | htmlspecialchars( $finalExt ), |
329 | 329 | implode( |
330 | | - wfMsgExt( 'filetype-separator', array( 'escapenoentities' ) ), |
| 330 | + wfMsgExt( 'comma-separator', array( 'escapenoentities' ) ), |
331 | 331 | $wgFileExtensions |
332 | 332 | ) |
333 | 333 | ) |
— | — | @@ -508,7 +508,7 @@ |
509 | 509 | array( 'parseinline' ), |
510 | 510 | htmlspecialchars( $finalExt ), |
511 | 511 | implode( |
512 | | - wfMsgExt( 'filetype-separator', array( 'escapenoentities' ) ), |
| 512 | + wfMsgExt( 'comma-separator', array( 'escapenoentities' ) ), |
513 | 513 | $wgFileExtensions |
514 | 514 | ) |
515 | 515 | ) . '</li>'; |
— | — | @@ -970,7 +970,7 @@ |
971 | 971 | global $wgCheckFileExtensions, $wgStrictFileExtensions, |
972 | 972 | $wgFileExtensions, $wgFileBlacklist; |
973 | 973 | if( $wgCheckFileExtensions ) { |
974 | | - $delim = wfMsgExt( 'filetype-separator', array( 'escapenoentities' ) ); |
| 974 | + $delim = wfMsgExt( 'comma-separator', array( 'escapenoentities' ) ); |
975 | 975 | if( $wgStrictFileExtensions ) { |
976 | 976 | # Everything not permitted is banned |
977 | 977 | $wgOut->addHTML( |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2970,7 +2970,7 @@ |
2971 | 2971 | # Separators for various lists |
2972 | 2972 | 'catseparator' => '|', # don't translate or duplicate this message to other languages |
2973 | 2973 | 'semicolon-separator' => ';', # only translate this message to other languages if you have to change it |
2974 | | -'filetype-separator' => ', ', # only translate this message to other languages if you have to change it |
| 2974 | +'comma-separator' => ', ', # only translate this message to other languages if you have to change it |
2975 | 2975 | |
2976 | 2976 | # Multipage image navigation |
2977 | 2977 | 'imgmultipageprev' => '← previous page', |
Index: trunk/phase3/languages/messages/MessagesAr.php |
— | — | @@ -2522,7 +2522,7 @@ |
2523 | 2523 | |
2524 | 2524 | # Separators for various lists |
2525 | 2525 | 'semicolon-separator' => '؛', |
2526 | | -'filetype-separator' => '،', |
| 2526 | +'comma-separator' => '،', |
2527 | 2527 | |
2528 | 2528 | # Multipage image navigation |
2529 | 2529 | 'imgmultipageprev' => '← الصفحة السابقة', |
Index: trunk/phase3/languages/messages/MessagesEl.php |
— | — | @@ -2359,9 +2359,6 @@ |
2360 | 2360 | 'articletitles' => "Άρθρα που αρχίζουν από ''$1''", |
2361 | 2361 | 'hideresults' => 'Απόκρυψη αποτελεσμάτων', |
2362 | 2362 | |
2363 | | -# Separators for various lists |
2364 | | -'filetype-separator' => ',', |
2365 | | - |
2366 | 2363 | # Multipage image navigation |
2367 | 2364 | 'imgmultipageprev' => '← προηγούμενη σελίδα', |
2368 | 2365 | 'imgmultipagenext' => 'επόμενη σελίδα →', |