@phoenix-plugin-registry/wthreec_schools
Version:
Add links (MDN, W3 School Tutorial, Brackets-Dev, Brackets Themes, Trello, Waffle, Brackets Wiki) into menu.
26 lines • 973 B
JavaScript
/*
* strings.js
* Author: Denisov21
* Github: https://github.com/Denisov21
*
* Made available under a MIT License:
* http://www.opensource.org/licenses/mit-license.php
*
* strings.js Copyright Denisov21 2014.
*/
/*jslint vars: true, plusplus: true, devel: true, nomen: true, indent: 4, maxerr: 50 */
/*global define */
define(function (require, exports, module) {
'use strict';
// 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.
// TODO: dynamically populate the local prefix list below?
module.exports = {
root: true,
"it": true
};
});