forked from brackets-userland/brackets-git
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrings.js
More file actions
19 lines (19 loc) · 766 Bytes
/
strings.js
File metadata and controls
19 lines (19 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
* @see: https://github.com/adobe/brackets/tree/master/src/extensions/samples/LocalizationExample
*/
define(function (require, exports, module) {
// Code that needs to display user strings should call require("strings") to load
// strings.js. This file will dynamically load strings.js for the specified by bracketes.locale.
//
// Translations for other locales should be placed in nls/<locale<optional country code>>/strings.js
// Localization is provided via the i18n plugin.
// All other bundles for languages need to add a prefix to the exports below so i18n can find them.
module.exports = {
root: true,
"de": true,
"pt-br": true,
"zh-cn": true,
"it": true,
"fr": true
};
});