mirror of
https://github.com/google/blockly.git
synced 2026-01-06 00:20:37 +01:00
* chore: add and configure prettier * chore: remove clang-format * chore: remove clang-format config * chore: lint additional ts files * chore: fix lint errors in blocks * chore: add prettier-ignore where needed * chore: ignore js blocks when formatting * chore: fix playground html syntax * chore: fix yaml spacing from merge * chore: convert text blocks to use arrow functions * chore: format everything with prettier * chore: fix lint unused imports in blocks
29 lines
893 B
TypeScript
29 lines
893 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2013 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import * as goog from '../closure/goog/goog.js';
|
|
goog.declareModuleId('Blockly.Msg');
|
|
|
|
/** A dictionary of localised messages. */
|
|
export const Msg: {[key: string]: string} = Object.create(null);
|
|
|
|
/**
|
|
* Sets the locale (i.e. the localized messages/block-text/etc) to the given
|
|
* locale.
|
|
*
|
|
* This is not useful/necessary when loading from a script tag, because the
|
|
* messages are automatically cluged into the Blockly.Msg object. But we provide
|
|
* it in both the script-tag and non-script-tag contexts so that the tscompiler
|
|
* can properly create our type definition files.
|
|
*
|
|
* @param locale An object defining the messages for a given language.
|
|
*/
|
|
export const setLocale = function (locale: {[key: string]: string}) {
|
|
Object.keys(locale).forEach(function (k) {
|
|
Msg[k] = locale[k];
|
|
});
|
|
};
|