-
Notifications
You must be signed in to change notification settings - Fork 37.2k
tooltip text of close button is internationalized #245190
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| const actionBarContainer = append(this.element, $('div.action-container')); | ||
| this.actionBar = this._register(new ActionBar(actionBarContainer)); | ||
| const label = item.closeLabel ?? 'Close Banner'; | ||
| const label = localize('closeBanner', "Close Banner"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's keep the previous logic. Just wrap the Close Banner in the localize call.
| const label = localize('closeBanner', "Close Banner"); | |
| const label = item.closeLabel ?? localize('closeBanner', "Close Banner"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you. I rewrote it.
|
I could check this PR. |
|
Thank you for contributing! This will be in version 1.100. The insider build of that will go out Thursday and the stable version of that will go out early next month. You may not see the translation in insiders right away because translations do lag a bit, but I would say by end of next week it should be there. |
|
Will they be translated? |
|
It'll take some time. Likely in the next stable release of VS Code 1.100 projected for early May |

The tooltip text of the close button ("Close Banner") is not localized (#245194).


First, it is internationalized in this PR.
I can not check this PR fully because the language pack can not be used in the code-oss (#245119).Fixes #245194