@@ -31,83 +31,90 @@ import { FluentV9ThemeProvider } from '../../theming/FluentV9ThemeProvider';
31
31
*
32
32
* @beta
33
33
*/
34
- export interface RichTextSendBoxStrings extends SendBoxStrings {
34
+ export interface RichTextSendBoxStrings extends RichTextStrings , SendBoxStrings { }
35
+
36
+ /**
37
+ * Strings of RichText that can be overridden.
38
+ *
39
+ * @beta
40
+ */
41
+ export interface RichTextStrings {
35
42
/**
36
43
* Tooltip text for the bold button.
37
44
*/
38
- boldTooltip : string ;
45
+ richTextBoldTooltip : string ;
39
46
/**
40
47
* Tooltip text for the italic button.
41
48
*/
42
- italicTooltip : string ;
49
+ richTextItalicTooltip : string ;
43
50
/**
44
51
* Tooltip text for the underline button.
45
52
*/
46
- underlineTooltip : string ;
53
+ richTextUnderlineTooltip : string ;
47
54
/**
48
55
* Tooltip text for the bullet list button.
49
56
*/
50
- bulletListTooltip : string ;
57
+ richTextBulletListTooltip : string ;
51
58
/**
52
59
* Tooltip text for the number list button.
53
60
*/
54
- numberListTooltip : string ;
61
+ richTextNumberListTooltip : string ;
55
62
/**
56
63
* Tooltip text for the increase indent button.
57
64
*/
58
- increaseIndentTooltip : string ;
65
+ richTextIncreaseIndentTooltip : string ;
59
66
/**
60
67
* Tooltip text for the decrease indent button.
61
68
*/
62
- decreaseIndentTooltip : string ;
69
+ richTextDecreaseIndentTooltip : string ;
63
70
/**
64
71
* Tooltip text insert table button.
65
72
*/
66
- insertTableTooltip : string ;
73
+ richTextInsertTableTooltip : string ;
67
74
/**
68
75
* Tooltip text for the rich text format button button.
69
76
*/
70
77
richTextFormatButtonTooltip : string ;
71
78
/**
72
79
* Text for the insert menu item.
73
80
*/
74
- insertRowOrColumnMenu : string ;
81
+ richTextInsertRowOrColumnMenu : string ;
75
82
/**
76
83
* Title for the insert table menu.
77
84
*/
78
- insertTableMenuTitle : string ;
85
+ richTextInsertTableMenuTitle : string ;
79
86
/**
80
87
* Text for the insert menu item to insert row above the current selection.
81
88
*/
82
- insertRowAboveMenu : string ;
89
+ richTextInsertRowAboveMenu : string ;
83
90
/**
84
91
* Text for the insert menu item to insert row below the current selection.
85
92
*/
86
- insertRowBelowMenu : string ;
93
+ richTextInsertRowBelowMenu : string ;
87
94
/**
88
95
* Text for the insert menu item to insert column to the left from the current selection.
89
96
*/
90
- insertColumnLeftMenu : string ;
97
+ richTextInsertColumnLeftMenu : string ;
91
98
/**
92
99
* Text for the insert menu item to insert column to the right from the current selection.
93
100
*/
94
- insertColumnRightMenu : string ;
101
+ richTextInsertColumnRightMenu : string ;
95
102
/**
96
103
* Text for the delete row or column menu.
97
104
*/
98
- deleteRowOrColumnMenu : string ;
105
+ richTextDeleteRowOrColumnMenu : string ;
99
106
/**
100
107
* Text for the delete column menu.
101
108
*/
102
- deleteColumnMenu : string ;
109
+ richTextDeleteColumnMenu : string ;
103
110
/**
104
111
* Text for the delete row menu.
105
112
*/
106
- deleteRowMenu : string ;
113
+ richTextDeleteRowMenu : string ;
107
114
/**
108
115
* Text for the delete table menu.
109
116
*/
110
- deleteTableMenu : string ;
117
+ richTextDeleteTableMenu : string ;
111
118
}
112
119
113
120
/**
0 commit comments