The buttons on hide/pin dropdowns are not being translated according to their respective resources.
By the way, I read #2517 but it's not working for me as seen on the screenshots. Only the search input is being updated.
igx_grid_hiding_check_all_label: 'Hide All PPP',
igx_grid_hiding_uncheck_all_label: 'Show AllAAA',
igx_grid_pinning_check_all_label: 'Pin All AAAA',
igx_grid_pinning_uncheck_all_label: 'Unpin All QQQQ',
igx_grid_toolbar_actions_filter_prompt: 'Filter columns list QQQ'
igx_grid_toolbar_actions_filter_prompt was translated.Buttons did not translate.
Buttons to translate.


Hi, any news on this one?
@zdrawku @Lipata @DiyanDimitrov @ChronosSF
Seriously? Not even a feedback? It's been over 23 days now!
@eestein Apologize for the delayed response, sounds like there is an issue with the localization resources for the hiding UI of the toolbar. Until we provide a fix for it you can use columnHidingUI property of the toolbar to set the labels of the buttons
ngAfterViewInit() {
this.grid1.toolbar.columnHidingUI.checkAllText = '[Localized]Show All';
this.grid1.toolbar.columnHidingUI.uncheckAllText = '[Localized]Hide All';
}
Most helpful comment
@eestein Apologize for the delayed response, sounds like there is an issue with the localization resources for the hiding UI of the toolbar. Until we provide a fix for it you can use columnHidingUI property of the toolbar to set the labels of the buttons