From afa6771c235d9366107374728abfba83a0ea0af3 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Thu, 13 Dec 2018 20:50:52 +0000 Subject: [PATCH] i18n: Remove some translation domains accidentally included in [43762], [44122]. Moves [43764] to trunk. Fixes #45110. git-svn-id: https://develop.svn.wordpress.org/trunk@44124 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/post.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/wp-admin/includes/post.php b/src/wp-admin/includes/post.php index 039f223270..7f49482ba3 100644 --- a/src/wp-admin/includes/post.php +++ b/src/wp-admin/includes/post.php @@ -2100,27 +2100,27 @@ function get_block_categories( $post ) { $default_categories = array( array( 'slug' => 'common', - 'title' => __( 'Common Blocks', 'gutenberg' ), + 'title' => __( 'Common Blocks' ), ), array( 'slug' => 'formatting', - 'title' => __( 'Formatting', 'gutenberg' ), + 'title' => __( 'Formatting' ), ), array( 'slug' => 'layout', - 'title' => __( 'Layout Elements', 'gutenberg' ), + 'title' => __( 'Layout Elements' ), ), array( 'slug' => 'widgets', - 'title' => __( 'Widgets', 'gutenberg' ), + 'title' => __( 'Widgets' ), ), array( 'slug' => 'embed', - 'title' => __( 'Embeds', 'gutenberg' ), + 'title' => __( 'Embeds' ), ), array( 'slug' => 'reusable', - 'title' => __( 'Reusable Blocks', 'gutenberg' ), + 'title' => __( 'Reusable Blocks' ), ), );