Index: trunk/extensions/VisualEditor/modules/es/es.Surface.css |
— | — | @@ -227,7 +227,7 @@ |
228 | 228 | } |
229 | 229 | |
230 | 230 | .es-contentView-format-textStyle-italic, |
231 | | -.es-contentView-format-textStyle-emphasis { |
| 231 | +.es-contentView-format-textStyle-emphasize { |
232 | 232 | font-style: italic; |
233 | 233 | } |
234 | 234 | |
Index: trunk/extensions/VisualEditor/modules/es/serializers/es.HtmlSerializer.js |
— | — | @@ -232,7 +232,7 @@ |
233 | 233 | 'textStyle/bold': 'b', |
234 | 234 | 'textStyle/italic': 'i', |
235 | 235 | 'textStyle/strong': 'strong', |
236 | | - 'textStyle/emphasis': 'em', |
| 236 | + 'textStyle/emphasize': 'em', |
237 | 237 | 'textStyle/big': 'big', |
238 | 238 | 'textStyle/small': 'small', |
239 | 239 | 'textStyle/superScript': 'sup', |
Index: trunk/extensions/VisualEditor/modules/es/serializers/es.WikitextSerializer.js |
— | — | @@ -162,7 +162,7 @@ |
163 | 163 | var annotationSerializer = new es.AnnotationSerializer(), |
164 | 164 | tagTable = { |
165 | 165 | 'textStyle/strong': 'strong', |
166 | | - 'textStyle/emphasis': 'em', |
| 166 | + 'textStyle/emphasize': 'em', |
167 | 167 | 'textStyle/big': 'big', |
168 | 168 | 'textStyle/small': 'small', |
169 | 169 | 'textStyle/superScript': 'sup', |
Index: trunk/extensions/VisualEditor/modules/es/views/es.ContentView.js |
— | — | @@ -94,8 +94,8 @@ |
95 | 95 | 'open': '<span class="es-contentView-format-textStyle-strong">', |
96 | 96 | 'close': '</span>' |
97 | 97 | }, |
98 | | - 'textStyle/emphasis': { |
99 | | - 'open': '<span class="es-contentView-format-textStyle-emphasis">', |
| 98 | + 'textStyle/emphasize': { |
| 99 | + 'open': '<span class="es-contentView-format-textStyle-emphasize">', |
100 | 100 | 'close': '</span>' |
101 | 101 | }, |
102 | 102 | 'textStyle/big': { |