Index: trunk/extensions/MoodBar/MoodBar.i18n.php |
— | — | @@ -47,7 +47,9 @@ |
48 | 48 | 'moodbar-loading-title' => 'Sharing...', |
49 | 49 | 'moodbar-success-title' => 'Thanks!', |
50 | 50 | 'moodbar-error-title' => 'Oops!', |
51 | | - 'moodbar-success-subtitle' => '@todo', |
| 51 | + 'moodbar-loading-subtitle' => '@todo', |
| 52 | + 'moodbar-success-subtitle' => 'Sharing your mood helps us make Wikipedia better.', |
| 53 | + 'moodbar-error-subtitle' => 'Something went wrong! Please try sharing your mood again later.', |
52 | 54 | // Special:MoodBar |
53 | 55 | 'right-moodbar-view' => 'View and export MoodBar feedback', |
54 | 56 | 'moodbar-admin-title' => 'MoodBar feedback', |
Index: trunk/extensions/MoodBar/modules/ext.moodBar/ext.moodBar.core.js |
— | — | @@ -42,6 +42,7 @@ |
43 | 43 | loading: '\ |
44 | 44 | <div class="mw-moodBar-state mw-moodBar-state-loading">\ |
45 | 45 | <div class="mw-moodBar-state-title"><html:msg key="moodbar-loading-title" /></div>\ |
| 46 | + <div class="mw-moodBar-state-subtitle"><html:msg key="moodbar-loading-subtitle" /></div>\ |
46 | 47 | </div>', |
47 | 48 | success: '\ |
48 | 49 | <div class="mw-moodBar-state mw-moodBar-state-success">\ |
— | — | @@ -51,6 +52,7 @@ |
52 | 53 | error: '\ |
53 | 54 | <div class="mw-moodBar-state mw-moodBar-state-error">\ |
54 | 55 | <div class="mw-moodBar-state-title"><html:msg key="moodbar-error-title" /></div>\ |
| 56 | + <div class="mw-moodBar-state-subtitle"><html:msg key="moodbar-error-subtitle" /></div>\ |
55 | 57 | </div>' |
56 | 58 | }, |
57 | 59 | |
Index: trunk/extensions/MoodBar/MoodBar.php |
— | — | @@ -90,6 +90,8 @@ |
91 | 91 | 'moodbar-loading-title', |
92 | 92 | 'moodbar-error-title', |
93 | 93 | 'moodbar-success-title', |
| 94 | + 'moodbar-loading-subtitle', |
| 95 | + 'moodbar-error-subtitle', |
94 | 96 | 'moodbar-success-subtitle', |
95 | 97 | ), |
96 | 98 | 'dependencies' => array( |