From 4a603fe534f6abc7c739b9ed8dea0c24ada5f004 Mon Sep 17 00:00:00 2001 From: Paul Holden Date: Thu, 30 Mar 2023 09:50:51 +0100 Subject: [PATCH] MDL-77794 contentbank: fix plugin type language strings. AMOS BEGIN CPY [type_contentbank,core_plugin],[type_contenttype,core_plugin] CPY [type_contentbank_plural,core_plugin],[type_contenttype_plural,core_plugin] AMOS END --- lang/en/plugin.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lang/en/plugin.php b/lang/en/plugin.php index 92c88fae60255..3ffae9137e853 100644 --- a/lang/en/plugin.php +++ b/lang/en/plugin.php @@ -126,6 +126,8 @@ $string['type_calendartype_plural'] = 'Calendar types'; $string['type_contentbank'] = 'Content bank'; $string['type_contentbank_plural'] = 'Content bank plugins'; +$string['type_contenttype'] = 'Content bank'; +$string['type_contenttype_plural'] = 'Content bank plugins'; $string['type_customfield'] = 'Custom field'; $string['type_customfield_plural'] = 'Custom fields'; $string['type_coursereport'] = 'Course report';