Changeset 41152
- Timestamp:
- 07/25/2017 10:57:16 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r41151 r41152 180 180 181 181 $buttons .= '<button type="button" id="' . $editor_id_attr . '-tmce" class="wp-switch-editor switch-tmce"' . 182 ' data-wp-editor-id="' . $editor_id_attr . '">' . _ _('Visual') . "</button>\n";182 ' data-wp-editor-id="' . $editor_id_attr . '">' . _x( 'Visual', 'Name for the Visual editor tab' ) . "</button>\n"; 183 183 $buttons .= '<button type="button" id="' . $editor_id_attr . '-html" class="wp-switch-editor switch-html"' . 184 184 ' data-wp-editor-id="' . $editor_id_attr . '">' . _x( 'Text', 'Name for the Text editor tab (formerly HTML)' ) . "</button>\n"; … … 1258 1258 'Apply' => __( 'Apply' ), // Tooltip for the 'apply' button in the inline link dialog 1259 1259 'Link options' => __( 'Link options' ), // Tooltip for the 'link options' button in the inline link dialog 1260 'Visual' => _ _( 'Visual' ), // Editor switch tab label1261 'Text' => _ _( 'Text' ), // Editor switch tab label1260 'Visual' => _x( 'Visual', 'Name for the Visual editor tab' ), // Editor switch tab label 1261 'Text' => _x( 'Text', 'Name for the Text editor tab (formerly HTML)' ), // Editor switch tab label 1262 1262 1263 1263 // Shortcuts help modal
Note: See TracChangeset
for help on using the changeset viewer.