mirror of
https://github.com/google/blockly.git
synced 2026-01-04 15:40:08 +01:00
Adding support for untranslated messages. (#819)
This will be used to define constants accessible in JSON block definitions. Messages with descriptions that include `{{Notranslate}}` will not be included in the translation files sent to TranslateWiki. Instead, they are written to `msg/json/constants.json`, and later merged back into the `.js` files, similar to synonyms.
Template details: https://translatewiki.net/wiki/Template:Notranslate
This commit is contained in:
committed by
GitHub
parent
45be30432a
commit
560d373c93
@@ -48,6 +48,23 @@ goog.require('Blockly.Msg');
|
||||
* them to msg/json/qqq.json, and they show up in the translation console.
|
||||
*/
|
||||
|
||||
/// {{Notranslate}} Hue value for all logic blocks.
|
||||
Blockly.Msg.LOGIC_HUE = '210';
|
||||
/// {{Notranslate}} Hue value for all loop blocks.
|
||||
Blockly.Msg.LOOPS_HUE = '120';
|
||||
/// {{Notranslate}} Hue value for all math blocks.
|
||||
Blockly.Msg.MATH_HUE = '230';
|
||||
/// {{Notranslate}} Hue value for all text blocks.
|
||||
Blockly.Msg.TEXTS_HUE = '160';
|
||||
/// {{Notranslate}} Hue value for all list blocks.
|
||||
Blockly.Msg.LISTS_HUE = '260';
|
||||
/// {{Notranslate}} Hue value for all colour blocks.
|
||||
Blockly.Msg.COLOUR_HUE = '20';
|
||||
/// {{Notranslate}} Hue value for all variable blocks.
|
||||
Blockly.Msg.VARIABLES_HUE = '330';
|
||||
/// {{Notranslate}} Hue value for all procedure blocks.
|
||||
Blockly.Msg.PROCEDURES_HUE = '290';
|
||||
|
||||
/// default name - A simple, general default name for a variable, preferably short.
|
||||
/// For more context, see
|
||||
/// [[Translating:Blockly#infrequent_message_types]].\n{{Identical|Item}}
|
||||
|
||||
Reference in New Issue
Block a user