Index: trunk/extensions/ArticleCreationWorkflow/includes/ArticleCreationTemplates.php |
— | — | @@ -11,11 +11,12 @@ |
12 | 12 | * @return String HTML |
13 | 13 | */ |
14 | 14 | public static function getLandingPage( $page ) { |
15 | | - $action = wfMessage( 'ac-action-indicator' )->escaped(); |
16 | 15 | global $wgUser, $wgArticleCreationButtons; |
17 | 16 | |
18 | 17 | $title = Title::newFromText( $page ); |
19 | 18 | |
| 19 | + $action = wfMessage( 'ac-action-indicator', $title )->parse(); |
| 20 | + |
20 | 21 | $html = ''; |
21 | 22 | $buttons = array(); |
22 | 23 | $variant = self::getLandingVariant( $title ); |
Index: trunk/extensions/ArticleCreationWorkflow/ArticleCreationWorkflow.i18n.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | 'ac-landing-page-title' => 'Create an article about "$1" on {{SITENAME}}', |
19 | 19 | |
20 | 20 | //buttons |
21 | | - 'ac-action-indicator' => 'I want to create an article on {{SITENAME}}...', |
| 21 | + 'ac-action-indicator' => '{{SITENAME}} doesn\'t have an article called <b>"$1"</b>. To create it, I want to...', |
22 | 22 | |
23 | 23 | 'ac-action-login' => 'Log in to {{SITENAME}}', |
24 | 24 | 'ac-action-login-subtitle' => 'I have a {{SITENAME}} account.', |
— | — | @@ -45,11 +45,9 @@ |
46 | 46 | |
47 | 47 | 'ac-action-create' => 'Create this article myself', |
48 | 48 | 'ac-action-create-subtitle' => 'I\'ve done this before.', |
49 | | - 'ac-create-warning-create' => "We value your time and want to make sure your contributions are the kind that will improve Wikipedia. |
50 | | - Articles on Wikipedia should be about notable topics and be written in an unbiased manner.<br/><br/> |
51 | | - Articles may be deleted if: |
52 | | - <ul><li>they copy material from other sources, or</li> |
53 | | - <li>are overly promotional, or</li> |
| 49 | + 'ac-create-warning-create' => "Articles may be deleted <i><b>immediately</b></i> if: |
| 50 | + <ul><li>they copy material from other sources</li> |
| 51 | + <li>are overly promotional</li> |
54 | 52 | <li>do not clearly state why the subject is important.</li></ul> |
55 | 53 | ", |
56 | 54 | 'ac-create-button' => "Let's Go", |
Index: trunk/extensions/ArticleCreationWorkflow/modules/ext.articleCreation.core/ext.articleCreation.core.css |
— | — | @@ -1,9 +1,10 @@ |
2 | 2 | /* Article Creation Text */ |
3 | 3 | .article-creation-heading { |
4 | | - font-size: 2.5em; |
5 | | - font-weight: 590; |
6 | 4 | display: block; |
7 | | - margin: 20px 0; |
| 5 | + font-size: 1.1em; |
| 6 | + margin-left: 80px; |
| 7 | + margin-top: 10px; |
| 8 | + margin-bottom: 10px; |
8 | 9 | } |
9 | 10 | |
10 | 11 | /* Article Creation Panel */ |
— | — | @@ -110,3 +111,9 @@ |
111 | 112 | float: right; |
112 | 113 | font-size: 90%; |
113 | 114 | } |
| 115 | + |
| 116 | +.mw-ac-create-dismiss-skip-control { |
| 117 | + font-size: .5em; |
| 118 | + float: left; |
| 119 | + padding-top: 1em; |
| 120 | +} |
Index: trunk/extensions/ArticleCreationWorkflow/ArticleCreationWorkflow.php |
— | — | @@ -157,14 +157,16 @@ |
158 | 158 | <div class="mw-ac-tooltip-title"><html:msg key="ac-click-tip-title-create" /></div> |
159 | 159 | <div class="mw-ac-tooltip-body"> |
160 | 160 | <div class="mw-ac-create-verbiage"><html:msg raw="1" key="ac-create-warning-create" /></div> |
161 | | - <input |
162 | | - type="checkbox" |
163 | | - id="mw-ac-dismiss-create" |
164 | | - class="ac-dismiss-interstitial" /> |
165 | | - <label for="mw-ac-dismiss-create"> |
166 | | - <html:msg key="ac-create-dismiss" /> |
167 | | - </label> |
168 | 161 | <div class="ac-button-wrap"> |
| 162 | + <div class="mw-ac-create-dismiss-skip-control"> |
| 163 | + <input |
| 164 | + type="checkbox" |
| 165 | + id="mw-ac-dismiss-create" |
| 166 | + class="ac-dismiss-interstitial" /> |
| 167 | + <label for="mw-ac-dismiss-create"> |
| 168 | + <html:msg key="ac-create-dismiss" /> |
| 169 | + </label> |
| 170 | + </div> |
169 | 171 | <a class="ac-button ac-action-button" data-ac-action="create"><html:msg key="ac-create-button" /></a> |
170 | 172 | </div> |
171 | 173 | <div style="clear: both"></div> |