File tree Expand file tree Collapse file tree 5 files changed +6
-21
lines changed Expand file tree Collapse file tree 5 files changed +6
-21
lines changed Original file line number Diff line number Diff line change 13
13
'cancel ' => 'Cancel ' ,
14
14
'save ' => 'Save ' ,
15
15
'close ' => 'Close ' ,
16
+ 'apply ' => 'Apply ' ,
16
17
'undo ' => 'Undo ' ,
17
18
'redo ' => 'Redo ' ,
18
19
'left ' => 'Left ' ,
147
148
'url ' => 'URL ' ,
148
149
'text_to_display ' => 'Text to display ' ,
149
150
'title ' => 'Title ' ,
151
+ 'browse_links ' => 'Browse links ' ,
150
152
'open_link ' => 'Open link ' ,
151
153
'open_link_in ' => 'Open link in... ' ,
152
154
'open_link_current ' => 'Current window ' ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export const redo: EditorButtonDefinition = {
57
57
58
58
59
59
export const source : EditorButtonDefinition = {
60
- label : 'Source' ,
60
+ label : 'Source code ' ,
61
61
icon : sourceIcon ,
62
62
async action ( context : EditorUiContext ) {
63
63
const modal = context . manager . createModal ( 'source' ) ;
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ export const diagramManager: EditorButtonDefinition = {
165
165
} ;
166
166
167
167
export const media : EditorButtonDefinition = {
168
- label : 'Insert/edit Media ' ,
168
+ label : 'Insert/edit media ' ,
169
169
icon : mediaIcon ,
170
170
action ( context : EditorUiContext ) {
171
171
context . editor . getEditorState ( ) . read ( ( ) => {
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ export class EditorColorPicker extends EditorUiElement {
63
63
const removeButton = el ( 'div' , {
64
64
class : 'editor-color-select-option' ,
65
65
'data-color' : '' ,
66
- title : 'Clear color',
66
+ title : this . getContext ( ) . translate ( 'Remove color') ,
67
67
} , [ ] ) ;
68
68
removeButton . innerHTML = removeIcon ;
69
69
colorOptions . push ( removeButton ) ;
@@ -72,7 +72,7 @@ export class EditorColorPicker extends EditorUiElement {
72
72
class : 'editor-color-select-option' ,
73
73
for : `color-select-${ id } ` ,
74
74
'data-color' : '' ,
75
- title : 'Custom color' ,
75
+ title : this . getContext ( ) . translate ( 'Custom color' ) ,
76
76
} , [ ] ) ;
77
77
selectButton . innerHTML = selectIcon ;
78
78
colorOptions . push ( selectButton ) ;
You can’t perform that action at this time.
0 commit comments