From 41494045a9673c02e5b9b0cc6bebe55c2ee9cbe7 Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Sun, 30 Nov 2014 22:27:24 +0000 Subject: [PATCH] TinyMCE: update translatable strings, see #30560. Built from https://develop.svn.wordpress.org/trunk@30670 git-svn-id: http://core.svn.wordpress.org/trunk@30660 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-editor.php | 12 ++++++++++++ wp-includes/version.php | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/wp-includes/class-wp-editor.php b/wp-includes/class-wp-editor.php index 78de4ad000..2bd701329a 100644 --- a/wp-includes/class-wp-editor.php +++ b/wp-includes/class-wp-editor.php @@ -877,6 +877,11 @@ final class _WP_Editors { 'Insert/edit link' => __( 'Insert/edit link' ), 'Remove link' => __( 'Remove link' ), + 'Color' => __( 'Color' ), + 'Custom color' => __( 'Custom color' ), + 'Custom...' => _x( 'Custom...', 'label for custom color' ), + 'No color' => __( 'No color' ), + // Spelling, search/replace plugins 'Could not find the specified string.' => __( 'Could not find the specified string.' ), 'Replace' => _x( 'Replace', 'find/replace' ), @@ -893,6 +898,7 @@ final class _WP_Editors { 'Finish' => _x( 'Finish', 'spellcheck' ), 'Ignore all' => _x( 'Ignore all', 'spellcheck' ), 'Ignore' => _x( 'Ignore', 'spellcheck' ), + 'Add to Dictionary' => __( 'Add to Dictionary' ), // TinyMCE tables 'Insert table' => __( 'Insert table' ), @@ -900,6 +906,7 @@ final class _WP_Editors { 'Table properties' => __( 'Table properties' ), 'Row properties' => __( 'Table row properties' ), 'Cell properties' => __( 'Table cell properties' ), + 'Border color' => __( 'Border color' ), 'Row' => __( 'Row' ), 'Rows' => __( 'Rows' ), @@ -928,10 +935,15 @@ final class _WP_Editors { 'Width' => __( 'Width' ), 'Caption' => __( 'Caption' ), 'Alignment' => __( 'Alignment' ), + 'H Align' => _x( 'H Align', 'horizontal table cell alignment' ), 'Left' => __( 'Left' ), 'Center' => __( 'Center' ), 'Right' => __( 'Right' ), 'None' => _x( 'None', 'table cell alignment attribute' ), + 'V Align' => _x( 'V Align', 'vertical table cell alignment' ), + 'Top' => __( 'Top' ), + 'Middle' => __( 'Middle' ), + 'Bottom' => __( 'Bottom' ), 'Row group' => __( 'Row group' ), 'Column group' => __( 'Column group' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 2ee9c1a8fb..a059e14fde 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-beta2-30669'; +$wp_version = '4.1-beta2-30670'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.