Index: trunk/extensions/Wikidata/SpecialLanguages.i18n.php |
— | — | @@ -78,7 +78,8 @@ |
79 | 79 | 'transaction' => 'Wikidata: Transaction log', |
80 | 80 | 'ow_transaction_operation' => 'Operation', |
81 | 81 | 'ow_transaction_is_latest' => 'Is latest', |
82 | | - |
| 82 | + 'ow_transaction_class_member' => 'Class member', |
| 83 | + |
83 | 84 | 'conceptmapping' => 'Wikidata: Concept mapping', |
84 | 85 | 'ow_conceptmapping_title' => 'Concept Mapping', |
85 | 86 | 'ow_conceptmapping_help' => '<p>possible actions: <ul> |
Index: trunk/extensions/Wikidata/OmegaWiki/SpecialTransaction.php |
— | — | @@ -185,7 +185,7 @@ |
186 | 186 | |
187 | 187 | $o->updatedRelations = new Attribute('updated-relations', 'Relations', $o->updatedRelationsStructure); |
188 | 188 | |
189 | | - $o->classMember = new Attribute('class-member', 'Class member', $o->definedMeaningReferenceStructure); |
| 189 | + $o->classMember = new Attribute('class-member', wfMsg('ow_transaction_class_member'), $o->definedMeaningReferenceStructure); |
190 | 190 | |
191 | 191 | $o->updatedClassMembershipStructure = new Structure( |
192 | 192 | $o->rollBack, |
— | — | @@ -196,7 +196,7 @@ |
197 | 197 | $o->isLatest |
198 | 198 | ); |
199 | 199 | |
200 | | - $o->updatedClassMembership = new Attribute('updated-class-membership', 'Class membership', $o->updatedClassMembershipStructure); |
| 200 | + $o->updatedClassMembership = new Attribute('updated-class-membership', wfMsg('ow_ClassMembership'), $o->updatedClassMembershipStructure); |
201 | 201 | |
202 | 202 | |
203 | 203 | |
— | — | @@ -213,13 +213,13 @@ |
214 | 214 | $o->operation |
215 | 215 | ); |
216 | 216 | |
217 | | - $o->updatedCollectionMembership = new Attribute('updated-collection-membership', 'Collection membership', $o->updatedCollectionMembershipStructure); |
| 217 | + $o->updatedCollectionMembership = new Attribute('updated-collection-membership', wfMsg('ow_CollectionMembership'), $o->updatedCollectionMembershipStructure); |
218 | 218 | |
219 | 219 | |
220 | 220 | |
221 | 221 | $o->objectId = new Attribute('object-id', 'Object', 'object-id'); |
222 | 222 | $o->valueId = new Attribute('value-id', 'Value identifier', 'object-id'); |
223 | | - $o->attribute = new Attribute('attribute', 'Attribute', $o->definedMeaningReferenceStructure); |
| 223 | + $o->attribute = new Attribute('attribute', wfMsg('ow_ClassAttributeAttribute'), $o->definedMeaningReferenceStructure); |
224 | 224 | |
225 | 225 | |
226 | 226 | |
— | — | @@ -280,8 +280,8 @@ |
281 | 281 | |
282 | 282 | |
283 | 283 | $o->classId = new Attribute('class-attribute-id', 'Class attribute id', 'object-id'); |
284 | | - $o->level = new Attribute('level', 'Level', $o->definedMeaningReferenceStructure); |
285 | | - $o->type = new Attribute('type', 'Type', 'text'); |
| 284 | + $o->level = new Attribute('level', wfMsg('ow_ClassAttributeLevel'), $o->definedMeaningReferenceStructure); |
| 285 | + $o->type = new Attribute('type', wfMsg('ow_ClassAttributeType'), 'text'); |
286 | 286 | |
287 | 287 | $o->updatedClassAttributesStructure = new Structure( |
288 | 288 | $o->rollBack, |