forked from le717/brackets-html-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrings.js
More file actions
23 lines (20 loc) · 756 Bytes
/
strings.js
File metadata and controls
23 lines (20 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
* HTML Skeleton
* Created 2014-2015 Triangle717
* <http://le717.github.io/>
*
* Licensed under The MIT License
* <http://opensource.org/licenses/MIT/>
*/
/*jslint vars: true, plusplus: true, devel: true, nomen: true, indent: 4, maxerr: 50 */
/*global define */
/**
* This file provides the interface to user visible strings in Brackets. Code that needs
* to display strings should should load this module by calling var Strings = require("strings").
* The i18n plugin will dynamically load the strings for the right locale and populate
* the exports variable. See src\nls\strings.js for the master file of English strings.
*/
define(function (require, exports, module) {
"use strict";
module.exports = require("i18n!nls/strings");
});