Index: trunk/extensions/PageSchemas/PS_Tabs.php |
— | — | @@ -19,7 +19,7 @@ |
20 | 20 | global $wgRequest; |
21 | 21 | |
22 | 22 | $content_actions['editschema'] = array( |
23 | | - 'text' => wfMsg( 'ps-editschema' ), |
| 23 | + 'text' => wfMsg( 'editschema' ), |
24 | 24 | 'class' => $wgRequest->getVal( 'action' ) == 'editschema' ? 'selected' : '', |
25 | 25 | 'href' => $title->getLocalURL( 'action=editschema' ) |
26 | 26 | ); |
— | — | @@ -28,7 +28,7 @@ |
29 | 29 | $pageSchemaObj = new PSSchema( $category ); |
30 | 30 | if ( $pageSchemaObj->isPSDefined() ) { |
31 | 31 | $content_actions['generatepages'] = array( |
32 | | - 'text' => wfMsg( 'ps-generatepages' ), |
| 32 | + 'text' => wfMsg( 'generatepages' ), |
33 | 33 | 'class' => $wgRequest->getVal( 'action' ) == 'generatepages' ? 'selected' : '', |
34 | 34 | 'href' => $title->getLocalURL( 'action=generatepages' ) |
35 | 35 | ); |
Index: trunk/extensions/PageSchemas/PageSchemas.i18n.php |
— | — | @@ -22,7 +22,7 @@ |
23 | 23 | |
24 | 24 | 'ps-property-isproperty' => 'This is a property of type $1.', |
25 | 25 | 'ps-property-allowedvals' => 'The allowed {{PLURAL:$1|value for this property is|values for this property are}}:', |
26 | | - 'ps-generatepages' => 'Generate pages', |
| 26 | + 'generatepages' => 'Generate pages', |
27 | 27 | 'ps-generatepages-desc' => 'Generate the following pages, based on this category\'s schema:', |
28 | 28 | 'ps-page-desc-cat-not-exist' => 'This category does not exist yet. Create this category and its page schema: ', |
29 | 29 | 'ps-page-desc-ps-not-exist' => 'This category exists, but does not have a page schema. Create schema:', |
— | — | @@ -39,7 +39,7 @@ |
40 | 40 | 'ps-remove-field' => 'Remove field', |
41 | 41 | 'ps-add-xml-label' => 'Additional XML:', |
42 | 42 | 'ps-schema-name-label' => 'Name of schema:', |
43 | | - 'ps-editschema' => 'Edit schema', |
| 43 | + 'editschema' => 'Edit schema', |
44 | 44 | ); |
45 | 45 | |
46 | 46 | /** Message documentation (Message documentation) |