Index: trunk/phase3/includes/Article.php |
— | — | @@ -918,9 +918,9 @@ |
919 | 919 | if( !$editGroups || !$moveGroups ) { |
920 | 920 | $msg = wfMsg( 'protected-subtitle' ); |
921 | 921 | } else if( $editGroups == $moveGroups ) { |
922 | | - $msg = wfMsg( 'protected-subtitle2', $editGroups, $moveGroups ); |
| 922 | + $msg = wfMsg( 'protected-subtitle-same', $editGroups, $moveGroups ); |
923 | 923 | } else { |
924 | | - $msg = wfMsg( 'protected-subtitle3', $editGroups, $moveGroups ); |
| 924 | + $msg = wfMsg( 'protected-subtitle-diff', $editGroups, $moveGroups ); |
925 | 925 | } |
926 | 926 | |
927 | 927 | $wgOut->setSubtitle( $wgOut->getSubtitle() . $msg ); |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -794,13 +794,13 @@ |
795 | 795 | 'sqlhidden' => '(SQL query hidden)', |
796 | 796 | 'cascadeprotected' => "This page has been protected from editing, because it is included in the following {{PLURAL:$1|page|pages}}, which are protected with the \"cascading\" option turned on: |
797 | 797 | $2", |
798 | | -'namespaceprotected' => "You do not have permission to edit pages in the '''$1''' namespace.", |
799 | | -'customcssjsprotected' => "You do not have permission to edit this page, because it contains another user's personal settings.", |
800 | | -'ns-specialprotected' => "Pages in the {{ns:special}} namespace cannot be edited.", |
801 | | -'protected-subtitle' => "(This page is protected)", |
802 | | -'protected-subtitle2' => "(This page is protected. Some users ($1) can still edit or move it.)", |
803 | | -'protected-subtitle3' => "(This page is protected. Some users ($1) can still edit it and others ($2) can move it.)", |
804 | | -'protected-anyone' => 'anyone', |
| 798 | +'namespaceprotected' => "You do not have permission to edit pages in the '''$1''' namespace.", |
| 799 | +'customcssjsprotected' => "You do not have permission to edit this page, because it contains another user's personal settings.", |
| 800 | +'ns-specialprotected' => "Pages in the {{ns:special}} namespace cannot be edited.", |
| 801 | +'protected-subtitle' => "(This page is protected)", |
| 802 | +'protected-subtitle-same' => "(This page is protected. Some users ($1) can still edit or move it.)", |
| 803 | +'protected-subtitle-diff' => "(This page is protected. Some users ($1) can still edit it while others ($2) can move it.)", |
| 804 | +'protected-anyone' => 'anyone', |
805 | 805 | |
806 | 806 | # Login and logout pages |
807 | 807 | 'logouttitle' => 'User logout', |