From 063d61854fd49d10a9307d973be4dec069b1eeeb Mon Sep 17 00:00:00 2001 From: kebhr <42484226+kebhr@users.noreply.github.com> Date: Sun, 17 Oct 2021 14:16:46 +0900 Subject: [PATCH] add russian support --- scratch-vm/src/extensions/scratch3_tello/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scratch-vm/src/extensions/scratch3_tello/index.js b/scratch-vm/src/extensions/scratch3_tello/index.js index e74ba57..4be7618 100644 --- a/scratch-vm/src/extensions/scratch3_tello/index.js +++ b/scratch-vm/src/extensions/scratch3_tello/index.js @@ -186,7 +186,7 @@ class Scratch3Tello { * @returns {object} metadata for this extension and its blocks. */ getInfo () { - if (formatMessage.setup().locale === 'ja' || formatMessage.setup().locale === 'ja-Hira') { + if (formatMessage.setup().locale === 'ja' || formatMessage.setup().locale === 'ja-Hira' || formatMessage.setup().locale === 'ru') { this.locale = formatMessage.setup().locale; } else { this.locale = 'en';