@@ -167,32 +167,32 @@ class NotificationListGroupItem extends NotificationListItemBase {
167
167
}
168
168
169
169
get overflowBtnAccessibleName ( ) {
170
- return this . i18nBundle . getText ( NOTIFICATION_LIST_ITEM_OVERLOW_BTN_TITLE ) ;
170
+ return this . i18nFioriBundle . getText ( NOTIFICATION_LIST_ITEM_OVERLOW_BTN_TITLE ) ;
171
171
}
172
172
173
173
get closeBtnAccessibleName ( ) {
174
- return this . i18nBundle . getText ( NOTIFICATION_LIST_GROUP_ITEM_CLOSE_BTN_TITLE ) ;
174
+ return this . i18nFioriBundle . getText ( NOTIFICATION_LIST_GROUP_ITEM_CLOSE_BTN_TITLE ) ;
175
175
}
176
176
177
177
get toggleBtnAccessibleName ( ) {
178
178
if ( this . collapsed ) {
179
- return this . i18nBundle . getText ( NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_EXPAND_TITLE ) ;
179
+ return this . i18nFioriBundle . getText ( NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_EXPAND_TITLE ) ;
180
180
}
181
181
182
- return this . i18nBundle . getText ( NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_COLLAPSE_TITLE ) ;
182
+ return this . i18nFioriBundle . getText ( NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_COLLAPSE_TITLE ) ;
183
183
}
184
184
185
185
get priorityText ( ) {
186
186
if ( this . priority === Priority . High ) {
187
- return this . i18nBundle . getText ( NOTIFICATION_LIST_ITEM_HIGH_PRIORITY_TXT ) ;
187
+ return this . i18nFioriBundle . getText ( NOTIFICATION_LIST_ITEM_HIGH_PRIORITY_TXT ) ;
188
188
}
189
189
190
190
if ( this . priority === Priority . Medium ) {
191
- return this . i18nBundle . getText ( NOTIFICATION_LIST_ITEM_MEDIUM_PRIORITY_TXT ) ;
191
+ return this . i18nFioriBundle . getText ( NOTIFICATION_LIST_ITEM_MEDIUM_PRIORITY_TXT ) ;
192
192
}
193
193
194
194
if ( this . priority === Priority . Low ) {
195
- return this . i18nBundle . getText ( NOTIFICATION_LIST_ITEM_LOW_PRIORITY_TXT ) ;
195
+ return this . i18nFioriBundle . getText ( NOTIFICATION_LIST_ITEM_LOW_PRIORITY_TXT ) ;
196
196
}
197
197
198
198
return "" ;
@@ -204,18 +204,18 @@ class NotificationListGroupItem extends NotificationListItemBase {
204
204
205
205
get readText ( ) {
206
206
if ( this . read ) {
207
- return this . i18nBundle . getText ( NOTIFICATION_LIST_ITEM_READ ) ;
207
+ return this . i18nFioriBundle . getText ( NOTIFICATION_LIST_ITEM_READ ) ;
208
208
}
209
209
210
- return this . i18nBundle . getText ( NOTIFICATION_LIST_ITEM_UNREAD ) ;
210
+ return this . i18nFioriBundle . getText ( NOTIFICATION_LIST_ITEM_UNREAD ) ;
211
211
}
212
212
213
213
get groupText ( ) {
214
- return this . i18nBundle . getText ( NOTIFICATION_LIST_GROUP_ITEM_TXT ) ;
214
+ return this . i18nFioriBundle . getText ( NOTIFICATION_LIST_GROUP_ITEM_TXT ) ;
215
215
}
216
216
217
217
get counterText ( ) {
218
- const text = this . i18nBundle . getText ( NOTIFICATION_LIST_GROUP_ITEM_COUNTER_TXT ) ;
218
+ const text = this . i18nFioriBundle . getText ( NOTIFICATION_LIST_GROUP_ITEM_COUNTER_TXT ) ;
219
219
return this . showCounter ? `${ text } ${ this . itemsCount } ` : "" ;
220
220
}
221
221
0 commit comments