diff --git a/core/modules/editor/src/Entity/Editor.php b/core/modules/editor/src/Entity/Editor.php index 0bfd8e4..9a725db 100644 --- a/core/modules/editor/src/Entity/Editor.php +++ b/core/modules/editor/src/Entity/Editor.php @@ -17,8 +17,8 @@ * label_singular = @Translation("Text Editor"), * label_plural = @Translation("Text Editors"), * label_count = @PluralTranslation( - * singular = "@count Text Editor", - * plural = "@count Text Editors", + * singular = "@count text editor", + * plural = "@count text editors", * ), * entity_keys = { * "id" = "format" diff --git a/core/modules/language/src/Entity/ContentLanguageSettings.php b/core/modules/language/src/Entity/ContentLanguageSettings.php index d3fd08a..b20f25a 100644 --- a/core/modules/language/src/Entity/ContentLanguageSettings.php +++ b/core/modules/language/src/Entity/ContentLanguageSettings.php @@ -15,10 +15,10 @@ * id = "language_content_settings", * label = @Translation("Content Language Settings"), * label_singular = @Translation("content language setting"), - * label_plural = @Translation("content language settings"), + * label_plural = @Translation("content languages settings"), * label_count = @PluralTranslation( * singular = "@count content language setting", - * plural = "@count content language settings", + * plural = "@count content languages settings", * ), * admin_permission = "administer languages", * config_prefix = "content_settings", diff --git a/core/modules/views/src/Entity/View.php b/core/modules/views/src/Entity/View.php index 1c9253f..f7ab691 100644 --- a/core/modules/views/src/Entity/View.php +++ b/core/modules/views/src/Entity/View.php @@ -18,11 +18,12 @@ * @ConfigEntityType( * id = "view", * label = @Translation("View", context = "View entity type"), - * label_singular = @Translation("view"), - * label_plural = @Translation("views"), + * label_singular = @Translation("view", context = "View entity type"), + * label_plural = @Translation("views", context = "View entity type"), * label_count = @PluralTranslation( * singular = "@count view", * plural = "@count views", + * context = "View entity type", * ), * handlers = { * "access" = "Drupal\views\ViewAccessControlHandler"