German translation update, tweaks

pull/3/merge
jmoenig 2014-06-04 13:48:43 +02:00
rodzic 81d3657feb
commit ac39877b9c
7 zmienionych plików z 20 dodań i 7 usunięć

1
gui.js
Wyświetl plik

@ -2535,6 +2535,7 @@ IDE_Morph.prototype.aboutSnap = function () {
+ '\n\nNathan Dinsmore: Saving/Loading, Snap-Logo Design, '
+ 'countless bugfixes'
+ '\nKartik Chandra: Paint Editor'
+ '\nYuan Yuan: Graphic Effects'
+ '\nIan Reynolds: UI Design, Event Bindings, '
+ 'Sound primitives'
+ '\nIvan Motyashov: Initial Squeak Porting'

Wyświetl plik

@ -2145,3 +2145,6 @@ ______
* Blocks: refactor “script pics” feature
* BYOB: new scriptsPicture() method for custom block definitions
* GUI: new (hidden) feature: “Export all scripts as pic” (including custom block refs)
* Graphic effects!!! Yay, thanks, Yuan!
* Bug fixes from Nathan, yay, thank, Nathan!!
* German translation update

Wyświetl plik

@ -185,7 +185,7 @@ SnapTranslator.dict.de = {
'translator_e-mail':
'jens@moenig.org', // optional
'last_changed':
'2014-02-13', // this, too, will appear in the Translators tab
'2014-06-04', // this, too, will appear in the Translators tab
// GUI
// control bar:
@ -1122,8 +1122,16 @@ SnapTranslator.dict.de = {
'Leer',
// graphical effects
'brightness':
'Helligeit',
'ghost':
'Durchsichtigkeit',
'negative':
'Farbumkehr',
'comic':
'Moire',
'confetti':
'Farbverschiebung',
// keys
'space':

Wyświetl plik

@ -61,7 +61,7 @@ PushButtonMorph, SyntaxElementMorph, Color, Point, WatcherMorph,
StringMorph, SpriteMorph, ScrollFrameMorph, CellMorph, ArrowMorph,
MenuMorph, snapEquals, Morph, isNil, localize, MorphicPreferences*/
modules.lists = '2014-January-09';
modules.lists = '2014-Jun-04';
var List;
var ListWatcherMorph;

Wyświetl plik

@ -42,7 +42,7 @@
/*global modules, contains*/
modules.locale = '2014-May-26';
modules.locale = '2014-Jun-04';
// Global stuff
@ -149,7 +149,7 @@ SnapTranslator.dict.de = {
'translator_e-mail':
'jens@moenig.org',
'last_changed':
'2014-02-13'
'2014-06-04'
};
SnapTranslator.dict.it = {

Wyświetl plik

@ -61,6 +61,7 @@
sound handling
Achal Dave contributed research and prototyping for creating music
using the Web Audio API
Yuan Yuan contributed graphic effects for costumes
*/
@ -124,7 +125,7 @@ PrototypeHatBlockMorph*/
// Global stuff ////////////////////////////////////////////////////////
modules.objects = '2014-May-26';
modules.objects = '2014-Jun-04';
var SpriteMorph;
var StageMorph;

Wyświetl plik

@ -61,7 +61,7 @@ SyntaxElementMorph*/
// Global stuff ////////////////////////////////////////////////////////
modules.store = '2014-May-02';
modules.store = '2014-Jun-04';
// XML_Serializer ///////////////////////////////////////////////////////
@ -1032,7 +1032,7 @@ SnapSerializer.prototype.loadInput = function (model, input, block) {
input.setColor(this.loadColor(model.contents));
} else {
val = this.loadValue(model);
if (val !== undefined && val !== null && input.setContents) {
if (!isNil(val) && input.setContents) {
input.setContents(this.loadValue(model));
}
}