Index: trunk/extensions/gis/GeoParam.php |
— | — | @@ -132,7 +132,7 @@ |
133 | 133 | */ |
134 | 134 | function get_coor() { |
135 | 135 | if ($i = strpos($this->pieces[0],';')) { |
136 | | - /* two values seperated by a semicolon */ |
| 136 | + /* two values separated by a semicolon */ |
137 | 137 | $this->coor = array( |
138 | 138 | 'latdeg' => substr($this->pieces[0],0,$i), |
139 | 139 | 'londeg' => substr($this->pieces[0],$i+1), |
Index: trunk/extensions/SmoothGallery/SmoothGalleryParser.php |
— | — | @@ -87,7 +87,7 @@ |
88 | 88 | #$this->galleriesArray["gallery_set_name"] = "MediaWikiSGallerySet" . mt_rand(); |
89 | 89 | $this->galleriesArray["gallery_set_name"] = "MediaWikiSGallerySet"; |
90 | 90 | |
91 | | - //parse set into seperate galleries |
| 91 | + //parse set into separate galleries |
92 | 92 | preg_match_all( "/<sgallery([\w]+)?[^>]*>(.*)<\/sgallery>/smU", $input, $galleries, PREG_SET_ORDER ); |
93 | 93 | |
94 | 94 | //iterate through galleries, call renderGallery on each, and |
Index: trunk/extensions/RightFunctions/RightFunctions.i18n.php |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | 'rightfunctions-rest1' => '$1 $2', # do not translate this message |
16 | 16 | 'rightfunctions-rest2' => '$1 $2$5 $3 $4', # do not translate this message |
17 | 17 | 'rightfunctions-rest3' => '$1 $2$7 $3 $4$7 $5 $6', # do not translate this message |
18 | | - 'rightfunctions-sep' => ',', # the seperator used in the above two messages, $5 and $7 respectively |
| 18 | + 'rightfunctions-sep' => ',', # the separator used in the above two messages, $5 and $7 respectively |
19 | 19 | 'rightfunctions-casc' => '(from cascading sources)', |
20 | 20 | 'rightfunctions-local' => '(from local page)', |
21 | 21 | 'rightfunctions-ns' => '(from namespace protection)', |
Index: trunk/extensions/SemanticMediaWiki/includes/storage/SMW_SQLStore.php |
— | — | @@ -2009,7 +2009,7 @@ |
2010 | 2010 | foreach ($description->getDescriptions() as $subdesc) { |
2011 | 2011 | /// TODO: this is not optimal -- we drop more table aliases than needed, but its hard to find out what is feasible in recursive calls ... |
2012 | 2012 | $nexttables = array(); |
2013 | | - // pull in page to prevent every child description pulling it seperately! |
| 2013 | + // pull in page to prevent every child description pulling it separately! |
2014 | 2014 | if ( array_key_exists('PAGE', $curtables) ) { |
2015 | 2015 | $nexttables['PAGE'] = $curtables['PAGE']; |
2016 | 2016 | } |
Index: trunk/extensions/Babel/Babel.class.php |
— | — | @@ -332,7 +332,7 @@ |
333 | 333 | */ |
334 | 334 | private function _parseParameter( $parameter ) { |
335 | 335 | |
336 | | - // Break up the parameter on - (which seperates it's two parts). |
| 336 | + // Break up the parameter on - (which separates it's two parts). |
337 | 337 | $chunks = explode( '-', $parameter ); |
338 | 338 | |
339 | 339 | // Initialise the return array. |
Index: trunk/extensions/SubPageList3/SubPageList3.php |
— | — | @@ -232,7 +232,7 @@ |
233 | 233 | |
234 | 234 | /** |
235 | 235 | * returns all errors as a string |
236 | | - * @return string all errors seperated by a newline |
| 236 | + * @return string all errors separated by a newline |
237 | 237 | * @private |
238 | 238 | */ |
239 | 239 | function geterrors() { |
Index: trunk/extensions/LdapAuthentication/LdapAuthentication.php |
— | — | @@ -163,7 +163,7 @@ |
164 | 164 | $serverpre = "ldap://"; |
165 | 165 | } |
166 | 166 | |
167 | | - //Make a space seperated list of server strings with the ldap:// or ldaps:// |
| 167 | + //Make a space separated list of server strings with the ldap:// or ldaps:// |
168 | 168 | //string added. |
169 | 169 | $servers = ""; |
170 | 170 | $tmpservers = $wgLDAPServerNames[$_SESSION['wsDomain']]; |
Index: trunk/extensions/EmailPage/phpMailer_v2.1.0beta2/class.smtp.php |
— | — | @@ -266,7 +266,7 @@ |
267 | 267 | * finializing the mail transaction. $msg_data is the message |
268 | 268 | * that is to be send with the headers. Each header needs to be |
269 | 269 | * on a single line followed by a <CRLF> with the message headers |
270 | | - * and the message body being seperated by and additional <CRLF>. |
| 270 | + * and the message body being separated by and additional <CRLF>. |
271 | 271 | * |
272 | 272 | * Implements rfc 821: DATA <CRLF> |
273 | 273 | * |
Index: trunk/extensions/Cite/Cite_body.php |
— | — | @@ -64,7 +64,7 @@ |
65 | 65 | var $mGroupCnt = array(); |
66 | 66 | |
67 | 67 | /** |
68 | | - * Internal counter for anonymous references, seperate from |
| 68 | + * Internal counter for anonymous references, separate from |
69 | 69 | * $mOutCnt because anonymous references won't increment it, |
70 | 70 | * but will incremement $mOutCnt |
71 | 71 | * |
— | — | @@ -539,7 +539,7 @@ |
540 | 540 | * This does approximately the same thing as |
541 | 541 | * Language::listToText() but due to this being used for a |
542 | 542 | * slightly different purpose (people might not want , as the |
543 | | - * first seperator and not 'and' as the second, and this has to |
| 543 | + * first separator and not 'and' as the second, and this has to |
544 | 544 | * use messages from the content language) I'm rolling my own. |
545 | 545 | * |
546 | 546 | * @static |
— | — | @@ -619,7 +619,7 @@ |
620 | 620 | /** |
621 | 621 | * Generate the labels to pass to the |
622 | 622 | * 'cite_references_link_many_format' message, the format is an |
623 | | - * arbitary number of tokens seperated by [\t\n ] |
| 623 | + * arbitary number of tokens separated by [\t\n ] |
624 | 624 | */ |
625 | 625 | function genBacklinkLabels() { |
626 | 626 | wfProfileIn( __METHOD__ ); |
Index: trunk/extensions/MetavidWiki/maintenance/maintenance_util.inc.php |
— | — | @@ -122,7 +122,7 @@ |
123 | 123 | print "remove article"; |
124 | 124 | $wgArticle->doDeleteArticle( 'bad title' ); |
125 | 125 | } |
126 | | - //some how mvdIndex and mvd pages got out of sync do a seperate check for the mvd: |
| 126 | + //some how mvdIndex and mvd pages got out of sync do a separate check for the mvd: |
127 | 127 | if(MV_Index::getMVDbyTitle($wgArticle->mTitle->getDBkey())!=null){ |
128 | 128 | print ', rm mvd'; |
129 | 129 | MV_Index::remove_by_wiki_title($wgArticle->mTitle->getDBkey()); |
Index: trunk/extensions/MetavidWiki/includes/MV_MetavidInterface/MV_Overlay.php |
— | — | @@ -267,7 +267,7 @@ |
268 | 268 | //use the cache by default: |
269 | 269 | //$usepCache = (isset($mvd_page->usePcache))?$mvd_page->usePcache:true; |
270 | 270 | |
271 | | - /*try to pull from cache: seperate out cache for internal links vs external links cache*/ |
| 271 | + /*try to pull from cache: separate out cache for internal links vs external links cache*/ |
272 | 272 | $MvParserCache = & MV_ParserCache::singleton(); |
273 | 273 | $add_opt = ($absolute_links)?'a':''; |
274 | 274 | //add the dbKey since I don't know how to easy purge the cache and we are getting cache missmatch |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/example_usage/sample_page.php |
— | — | @@ -118,7 +118,7 @@ |
119 | 119 | <pre> <?= htmlentities($aval['tag'])?></pre> |
120 | 120 | </td> |
121 | 121 | </tr> |
122 | | - <? //oput a seperator between video and playlist |
| 122 | + <? //oput a separator between video and playlist |
123 | 123 | if ($key==5){ |
124 | 124 | echo '<tr><td colspan="2"><b>Sample Playlists:</b></td></tr>'; |
125 | 125 | } |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/example_usage/sample_playlists.php |
— | — | @@ -88,7 +88,7 @@ |
89 | 89 | <pre> <?= htmlentities($aval['tag'])?></pre> |
90 | 90 | </td> |
91 | 91 | </tr> |
92 | | - <? //oput a seperator between video and playlist |
| 92 | + <? //oput a separator between video and playlist |
93 | 93 | if ($key==5){ |
94 | 94 | echo '<tr><td colspan="2"><b>Sample Playlists:</b></td></tr>'; |
95 | 95 | } |
Index: trunk/extensions/FlaggedRevs/svggraph/svgGraph.php |
— | — | @@ -369,8 +369,8 @@ |
370 | 370 | function svgGraph() { |
371 | 371 | if( !defined("DECIMAL_POINT") ) |
372 | 372 | define("DECIMAL_POINT", "."); |
373 | | - if( !defined("THOUSANDS_SEPERATOR") ) |
374 | | - define("THOUSANDS_SEPERATOR", ","); |
| 373 | + if( !defined("THOUSANDS_SEPARATOR") ) |
| 374 | + define("THOUSANDS_SEPARATOR", ","); |
375 | 375 | } |
376 | 376 | |
377 | 377 | /** |
— | — | @@ -416,7 +416,7 @@ |
417 | 417 | //$factorTagsY = $this->dataMaxY / ($this->dataMaxY - $this->dataMinY); |
418 | 418 | for ($i=0; $i<$this->numGridlinesY; $i++) { |
419 | 419 | $text = $this->dataMinY + $deltaTagsY * ($i + $this->offsetGridlinesY); |
420 | | - $this->tagsY[$i] = number_format($text, $this->decimalPlacesY, DECIMAL_POINT, THOUSANDS_SEPERATOR); |
| 420 | + $this->tagsY[$i] = number_format($text, $this->decimalPlacesY, DECIMAL_POINT, THOUSANDS_SEPARATOR); |
421 | 421 | } |
422 | 422 | $this->tagsY = array_reverse($this->tagsY); |
423 | 423 | if (empty($this->tagsY)) { |
Index: trunk/extensions/ConfigureWMF/ConfigureWMF.i18n.php |
— | — | @@ -76,7 +76,7 @@ |
77 | 77 | * If you want to enable import from English Wikibooks on Polish Wikibooks, you have to add "en" to the list |
78 | 78 | * If you want to enable import from English Wikipedia on Polish Wikibooks, you have to add "w:en" to the list |
79 | 79 | * If you want to enable import from Incubator on Polish Wikibooks, you have to add "incubator" to the list |
80 | | -Each import source should be placed on a seperate line.', |
| 80 | +Each import source should be placed on a separate line.', |
81 | 81 | 'configurewmf-help-enotif' => 'Here you can enable or disable email notification. Note that it may serioursly affect performance |
82 | 82 | and therefore must not be enabled on large wikis.', |
83 | 83 | 'configurewmf-help-blockcfg' => 'Here you can enable or disable user talk editing for blocked users.', |
Index: trunk/extensions/Translate/Translate.i18n.php |
— | — | @@ -77,7 +77,7 @@ |
78 | 78 | 'translate-magic-help' => 'You can translate special pages aliases, magic words, skin names and namespace names. |
79 | 79 | |
80 | 80 | Special page aliases and magic words can have multiple translations. |
81 | | -Translations are seperated by a comma (,). |
| 81 | +Translations are separated by a comma (,). |
82 | 82 | Skin names and namespaces can have only one translation. |
83 | 83 | |
84 | 84 | In namespace translations <tt>$1 talk</tt> is special. <tt>$1</tt> is replaced with sitename (for example <tt>{{SITENAME}} talk</tt>). |
— | — | @@ -146,8 +146,8 @@ |
147 | 147 | 'translate-statsf-count' => 'Measure', |
148 | 148 | 'translate-statsf-count-edits' => 'Number of edits', |
149 | 149 | 'translate-statsf-count-users' => 'Active translators', |
150 | | - 'translate-statsf-language' => 'Comma seperated list of language codes', |
151 | | - 'translate-statsf-group' => 'Comma separated list of group codes', |
| 150 | + 'translate-statsf-language' => 'Comma-separated list of language codes', |
| 151 | + 'translate-statsf-group' => 'Comma-separated list of group codes', |
152 | 152 | 'translate-statsf-submit' => 'Preview', |
153 | 153 | |
154 | 154 | 'translate-tag-category' => 'Translatable pages', |