From 6b76c5222d8cbc7ac919669c19b1a03609cd0119 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 9 Nov 2020 11:15:06 +0000 Subject: [PATCH] I18N: Merge duplicate "Column" strings, remove unnecessary context. Props ramiy, justinahinon, garrett-eclipse, audrasjb. Fixes #47259. git-svn-id: https://develop.svn.wordpress.org/trunk@49541 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-editor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/class-wp-editor.php b/src/wp-includes/class-wp-editor.php index e0bf9de4b1..75f27d8041 100644 --- a/src/wp-includes/class-wp-editor.php +++ b/src/wp-includes/class-wp-editor.php @@ -1300,8 +1300,8 @@ final class _WP_Editors { 'Row' => __( 'Row' ), 'Rows' => __( 'Rows' ), - 'Column' => _x( 'Column', 'table column' ), - 'Cols' => _x( 'Cols', 'table columns' ), + 'Column' => __( 'Column' ), + 'Cols' => __( 'Columns' ), 'Cell' => _x( 'Cell', 'table cell' ), 'Header cell' => __( 'Header cell' ), 'Header' => _x( 'Header', 'table header' ),