Index: trunk/extensions/Wikidata/App.php |
— | — | @@ -118,7 +118,7 @@ |
119 | 119 | 'ow_will_insert'=>"Will insert the following:", |
120 | 120 | 'ow_contents_of_mapping'=>'Contents of mapping', |
121 | 121 | 'ow_available_contexts'=>'Available contexts', |
122 | | - 'add_concept_link'=>'Add link to other concepts', |
| 122 | + 'ow_add_concept_link'=>'Add link to other concepts', |
123 | 123 | 'ow_concept_panel'=>'Concept Panel', |
124 | 124 | 'ow_dm_badtitle'=>'This page does not point to any DefinedMeaning (concept). Please check the web address.', |
125 | 125 | 'ow_dm_missing'=>'This page seems to point to a non-existent DefinedMeaning (concept). Please check the web address.', |
— | — | @@ -170,7 +170,6 @@ |
171 | 171 | "ow_TranslatedTextAttributeValues" => "Text properties", |
172 | 172 | "ow_LinkAttribute" => "Property", |
173 | 173 | "ow_LinkAttributeValues" => "Links" |
174 | | - |
175 | 174 | ) |
176 | 175 | ); |
177 | 176 | |
Index: trunk/extensions/Wikidata/OmegaWiki/DefinedMeaning.php |
— | — | @@ -237,7 +237,7 @@ |
238 | 238 | } |
239 | 239 | |
240 | 240 | $datasets=wdGetDatasets(); |
241 | | - $datasetarray['']=wfMsgSc('ow_none_selected'); |
| 241 | + $datasetarray['']=wfMsgSc('none_selected'); |
242 | 242 | foreach($datasets as $datasetid=>$dataset) { |
243 | 243 | $datasetarray[$datasetid]=$dataset->fetchName(); |
244 | 244 | } |
Index: trunk/extensions/Wikidata/OmegaWiki/Wikidata.php |
— | — | @@ -240,7 +240,7 @@ |
241 | 241 | $title = $this->getTitle(); |
242 | 242 | |
243 | 243 | $wgOut->setPageTitle($title); |
244 | | - $wgOut->setPageTitle(wfMsgSc("editing",$title)); |
| 244 | + $wgOut->setPageTitle(wfMsg("editing",$title)); |
245 | 245 | |
246 | 246 | $wgOut->addHTML( |
247 | 247 | '<form method="post" action="">' . |
— | — | @@ -255,7 +255,7 @@ |
256 | 256 | $wgOut->addHTML( |
257 | 257 | '<div class="option-panel">'. |
258 | 258 | '<table cellpadding="0" cellspacing="0"><tr>' . |
259 | | - '<th>' . wfMsgSc("summary") . ': </th>' . |
| 259 | + '<th>' . wfMsg("summary") . ': </th>' . |
260 | 260 | '<td class="option-field">' . getTextBox("summary") .'</td>' . |
261 | 261 | '</tr></table>' . |
262 | 262 | getSubmitButton("save", wfMsgSc("save")). |