When you introduce a new UI string or modify an existing one that will be displayed to the users, or remove a string that is localized, follow these steps so that it can be localized.
Table of Contents
Before proceeding, make sure you know the different localization APIs and know which one you should use.
Code example:
// at the top of example.js file, after import statements const UIStrings = { /** * @description A string that is already added */ alreadyAddedString: 'Someone already created a "UIStrings = {}" and added this string', /** * @description This is an example description for my new string */ addThisString: 'The new string I want to add', /** * @description This is an example description for my new string with placeholder * @example {example for placeholder} PH1 */ addAnotherString: 'Another new string I want to add, with {PH1}', }; const str_ = Common.i18n.registerUIStrings('example.js', UIStrings);
// in example.js file, where you want to call the string const message1 = Common.i18n.getLocalizedString(str_, UIStrings.addThisString); console.log(message1); // The new string I want to add const message2 = Common.i18n.getLocalizedString(str_, UIStrings.addAnotherString, {PH1: 'a placeholder'}); console.log(message2); // Another new string I want to add, with a placeholder
If there is already UIStrings = {}
declared in the file, add your string to it. If there isn't UIStrings = {}
in the file, create one and add your string, also add the line const str_ = Common.i18n.registerUIStrings({the current fileName.js, relative to front_end}, UIStrings);
so the new UIStrings can be registered into en-US.json
.
Add description and examples for placeholder(if any):
@description …
@description This is an example description for my new string
@example {…} …
@example {example for placeholder} PH1
Make sure your string is localizable:
Do not assume word order by using concatenation. Use the whole string. ❌
`Add` + `breakpoint`
✔️
`Add breakpoint`
or ❌
let description = `first part` if (condition) description += ` second part`
✔️
let description if (condition) description = `first part second part` else description = `first part`
Use placeholder over concatenation. This is so that the translators can adjust variable order based on what works in another language. For example: ❌
`Check ` + title + ` for more information.`
✔️
`Check {PH1} for more information.`, {PH1: title}
If your string contains leading or trailing white space, it‘s usually an indication that it’s half of a sentence. This decreases localizability as it‘s essentially concatenating. Modify it so that it doesn’t contain leading or trailing white space anymore if you can.
Check if there are something should not be localized (see locked_terms) for more details.
❌
✔️
The following commands would add the new strings to en-US.json
:
git cl presubmit --upload
, ornode third_party/i18n/collect-strings.js
under the DevTools src folderUIStrings
UIStrings