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
This commit is contained in:
Jonathan Desrosiers 2018-12-13 20:50:52 +00:00
parent 08cc6047d1
commit afa6771c23
1 changed files with 6 additions and 6 deletions

View File

@ -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' ),
),
);