diff --git a/scripts/langindex.json b/scripts/langindex.json index 339c56c5a..05d2a4ce3 100644 --- a/scripts/langindex.json +++ b/scripts/langindex.json @@ -1483,7 +1483,20 @@ "core.downloading": "local_moodlemobileapp", "core.edit": "moodle", "core.editor.autosavesucceeded": "editor_atto", + "core.editor.bold": "atto_bold/pluginname", + "core.editor.clear": "atto_clear/pluginname", + "core.editor.h3": "atto_title", + "core.editor.h4": "atto_title", + "core.editor.h5": "atto_title", + "core.editor.hidetoolbar": "local_moodlemobileapp", + "core.editor.italic": "atto_italic/pluginname", + "core.editor.orderedlist": "atto_orderedlist/pluginname", + "core.editor.p": "atto_title", + "core.editor.strike": "atto_strike/pluginname", "core.editor.textrecovered": "editor_atto", + "core.editor.toggle": "local_moodlemobileapp", + "core.editor.underline": "atto_underline/pluginname", + "core.editor.unorderedlist": "atto_unorderedlist/pluginname", "core.emptysplit": "local_moodlemobileapp", "core.error": "moodle", "core.errorchangecompletion": "local_moodlemobileapp", diff --git a/src/assets/lang/en.json b/src/assets/lang/en.json index d3f4ff056..19344901e 100644 --- a/src/assets/lang/en.json +++ b/src/assets/lang/en.json @@ -1483,7 +1483,20 @@ "core.downloading": "Downloading", "core.edit": "Edit", "core.editor.autosavesucceeded": "Draft saved.", + "core.editor.bold": "Bold", + "core.editor.clear": "Clear formatting", + "core.editor.h3": "Heading (large)", + "core.editor.h4": "Heading (medium)", + "core.editor.h5": "Heading (small)", + "core.editor.hidetoolbar": "Hide toolbar", + "core.editor.italic": "Italic", + "core.editor.orderedlist": "Ordered list", + "core.editor.p": "Paragraph", + "core.editor.strike": "Strike through", "core.editor.textrecovered": "A draft version of this text was automatically restored.", + "core.editor.toggle": "Toggle editor", + "core.editor.underline": "Underline", + "core.editor.unorderedlist": "Unordered list", "core.emptysplit": "This page will appear blank if the left panel is empty or is loading.", "core.error": "Error", "core.errorchangecompletion": "An error occurred while changing the completion status. Please try again.", diff --git a/src/core/editor/components/rich-text-editor/core-editor-rich-text-editor.html b/src/core/editor/components/rich-text-editor/core-editor-rich-text-editor.html index ca6e67bf3..15783e47b 100644 --- a/src/core/editor/components/rich-text-editor/core-editor-rich-text-editor.html +++ b/src/core/editor/components/rich-text-editor/core-editor-rich-text-editor.html @@ -17,67 +17,67 @@ - - - - - - - - - - - - - diff --git a/src/core/editor/lang/en.json b/src/core/editor/lang/en.json index 4e91f633c..508c6ddb0 100644 --- a/src/core/editor/lang/en.json +++ b/src/core/editor/lang/en.json @@ -1,4 +1,17 @@ { "autosavesucceeded": "Draft saved.", - "textrecovered": "A draft version of this text was automatically restored." + "bold": "Bold", + "clear": "Clear formatting", + "h3": "Heading (large)", + "h4": "Heading (medium)", + "h5": "Heading (small)", + "hidetoolbar": "Hide toolbar", + "italic": "Italic", + "orderedlist": "Ordered list", + "p": "Paragraph", + "strike": "Strike through", + "textrecovered": "A draft version of this text was automatically restored.", + "toggle": "Toggle editor", + "underline": "Underline", + "unorderedlist": "Unordered list" } \ No newline at end of file