forked from adobe/brackets
-
Notifications
You must be signed in to change notification settings - Fork 0
Localization
jason-sanjose edited this page Aug 28, 2012
·
5 revisions
The snippets below show how to use localized strings in core Brackets code.
In JavaScript
var Strings = require("strings"); // load the Strings module
...
$("<span/>").text(Strings.CMD_ABOUT); // insert a localized string
In an HTML template
<!-- templateContent.html -->
<span>{{CMD_ABOUT}}</span>
/* JavaScript */
var Strings = require("strings"),
templateContent = require("text!templateContent.html"); // load text content of template file
var html = Mustache.render(templateContent, Strings); // use Mustache to insert translated strings
Brackets uses the i18n plugin for RequireJS to load translations. The locale is determined by brackets.app.language
(navigator.language
isn't used due to a CEF3 bug). Our main strings
module re-exports the root bundle (i.e. require("i18n!nls/strings.js")
). Client code should only use the main strings module (i.e. require("strings")
).
As of Sprint 13, brackets-shell hardcodes strings for both English and French, primarily for the limited set of native menus. Once native menus are implemented, there will be no translated strings in brackets-shell.