Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -260,7 +260,7 @@ |
261 | 261 | 'newmessageslink', |
262 | 262 | 'newmessagesdifflink', |
263 | 263 | 'youhavenewmessagesmulti', |
264 | | - 'newtalkseperator', |
| 264 | + 'newtalkseparator', |
265 | 265 | 'editsection', |
266 | 266 | 'editsection-brackets', |
267 | 267 | 'editold', |
Index: trunk/phase3/maintenance/language/messageTypes.inc |
— | — | @@ -84,7 +84,7 @@ |
85 | 85 | 'markaspatrolledlink', |
86 | 86 | 'newarticletextanon', |
87 | 87 | 'newsectionheaderdefaultlevel', |
88 | | - 'newtalkseperator', |
| 88 | + 'newtalkseparator', |
89 | 89 | 'noarticletextanon', |
90 | 90 | 'number_of_watching_users_RCview', |
91 | 91 | 'pagecategorieslink', |
Index: trunk/phase3/skins/disabled/MonoBookCBT.php |
— | — | @@ -443,7 +443,7 @@ |
444 | 444 | $this->mOut->setSquidMaxage(0); |
445 | 445 | } |
446 | 446 | } else if (count($newtalks)) { |
447 | | - $sep = str_replace("_", " ", wfMsgHtml("newtalkseperator")); |
| 447 | + $sep = str_replace("_", " ", wfMsgHtml("newtalkseparator")); |
448 | 448 | $msgs = array(); |
449 | 449 | foreach ($newtalks as $newtalk) { |
450 | 450 | $msgs[] = wfElement("a", |
Index: trunk/phase3/includes/Exif.php |
— | — | @@ -48,7 +48,7 @@ |
49 | 49 | /** |
50 | 50 | * Exif tags grouped by category, the tagname itself is the key and the type |
51 | 51 | * is the value, in the case of more than one possible value type they are |
52 | | - * seperated by commas. |
| 52 | + * separated by commas. |
53 | 53 | */ |
54 | 54 | var $mExifTags; |
55 | 55 | |
Index: trunk/phase3/includes/SkinTemplate.php |
— | — | @@ -308,7 +308,7 @@ |
309 | 309 | $out->setSquidMaxage(0); |
310 | 310 | } |
311 | 311 | } else if (count($newtalks)) { |
312 | | - $sep = str_replace("_", " ", wfMsgHtml("newtalkseperator")); |
| 312 | + $sep = str_replace("_", " ", wfMsgHtml("newtalkseparator")); |
313 | 313 | $msgs = array(); |
314 | 314 | foreach ($newtalks as $newtalk) { |
315 | 315 | $msgs[] = wfElement("a", |
Index: trunk/phase3/includes/IP.php |
— | — | @@ -141,7 +141,7 @@ |
142 | 142 | public static function toOctet( $ip_int ) { |
143 | 143 | // Convert to padded uppercase hex |
144 | 144 | $ip_hex = wfBaseConvert($ip_int, 10, 16, 32, false); |
145 | | - // Seperate into 8 octets |
| 145 | + // Separate into 8 octets |
146 | 146 | $ip_oct = substr( $ip_hex, 0, 4 ); |
147 | 147 | for ($n=1; $n < 8; $n++) { |
148 | 148 | $ip_oct .= ':' . substr($ip_hex, 4*$n, 4); |
— | — | @@ -159,7 +159,7 @@ |
160 | 160 | public static function HextoOctet( $ip_hex ) { |
161 | 161 | // Convert to padded uppercase hex |
162 | 162 | $ip_hex = str_pad( strtoupper($ip_hex), 32, '0'); |
163 | | - // Seperate into 8 octets |
| 163 | + // Separate into 8 octets |
164 | 164 | $ip_oct = substr( $ip_hex, 0, 4 ); |
165 | 165 | for ($n=1; $n < 8; $n++) { |
166 | 166 | $ip_oct .= ':' . substr($ip_hex, 4*$n, 4); |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -740,7 +740,7 @@ |
741 | 741 | 'newmessageslink' => 'new messages', |
742 | 742 | 'newmessagesdifflink' => 'last change', |
743 | 743 | 'youhavenewmessagesmulti' => 'You have new messages on $1', |
744 | | -'newtalkseperator' => ',_', # do not translate or duplicate this message to other languages |
| 744 | +'newtalkseparator' => ',_', # do not translate or duplicate this message to other languages |
745 | 745 | 'editsection' => 'edit', |
746 | 746 | 'editsection-brackets' => '[$1]', # only translate this message to other languages if you have to change it |
747 | 747 | 'editold' => 'edit', |
Index: trunk/phase3/languages/Language.php |
— | — | @@ -1824,7 +1824,7 @@ |
1825 | 1825 | * LanguageIs.php for the , => . and . => , implementation. |
1826 | 1826 | * |
1827 | 1827 | * @todo check if it's viable to use localeconv() for the decimal |
1828 | | - * seperator thing. |
| 1828 | + * separator thing. |
1829 | 1829 | * @param $number Mixed: the string to be formatted, should be an integer |
1830 | 1830 | * or a floating point number. |
1831 | 1831 | * @param $nocommafy Bool: set to true for special numbers like dates |