don't auto-translate ListMorph items

pull/95/head
jmoenig 2020-09-12 16:30:35 +02:00
rodzic e5f7f20e16
commit d33d4c0162
3 zmienionych plików z 9 dodań i 3 usunięć

Wyświetl plik

@ -11,11 +11,15 @@
* **Notable Fixes:**
* changing the type of a custom block from reporter to command in the block editor changes the prototype instead of adding another one
* deleting project notes in the "save" dialog now also deletes them in the saved project
* items in list-boxes such as the project list are no longer auto-translated
* **Translation Updates:**
* Catalan, thanks, Joan!
* Norwegian, thanks, Olav!
* German
### 2020-09-12
* morphic: don't auto-translate ListMorph items
### 2020-09-10
* added input type assertions to Database library

Wyświetl plik

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Snap! 6.2.0 - dev - Build Your Own Blocks</title>
<link rel="icon" href="src/favicon.ico">
<script src="src/morphic.js?version=2020-07-23"></script>
<script src="src/morphic.js?version=2020-09-12"></script>
<script src="src/symbols.js?version=2020-07-21"></script>
<script src="src/widgets.js?version=2020-07-27"></script>
<script src="src/blocks.js?version=2020-09-04"></script>

Wyświetl plik

@ -1280,7 +1280,7 @@
/*global window, HTMLCanvasElement, FileReader, Audio, FileList, Map*/
var morphicVersion = '2020-July-23';
var morphicVersion = '2020-September-12';
var modules = {}; // keep track of additional loaded modules
var useBlurredShadows = true;
@ -10850,7 +10850,9 @@ ListMorph.prototype.buildListContents = function () {
color,
bold,
italic,
this.doubleClickAction
this.doubleClickAction,
null, // shortcut
true // verbatim - don't translate
);
}
});