integrate translation update

pull/3/merge
jmoenig 2014-11-20 15:53:14 +01:00
rodzic 10ade6421b
commit f2d0c2eba5
2 zmienionych plików z 8 dodań i 5 usunięć

Wyświetl plik

@ -2332,3 +2332,4 @@ ______
* BYOB: Percent sign fix for block labels, thanks, @natashasandy!
* Threads: fix line option in split block for Windows files, thanks, @brianharvey!
* Morphic: fix slider range 1, thanks, @tonychenr !
* translation update, thanks, Manuel!

Wyświetl plik

@ -859,7 +859,8 @@ Process.prototype.evaluate = function (
} else if (context.emptySlots !== 1) {
throw new Error(
localize('expecting') + ' ' + context.emptySlots + ' '
+ localize('input(s), but getting') + ' ' + parms.length
+ localize('input(s), but getting') + ' '
+ parms.length
);
}
}
@ -938,7 +939,8 @@ Process.prototype.fork = function (context, args) {
} else if (context.emptySlots !== 1) {
throw new Error(
localize('expecting') + ' ' + context.emptySlots + ' '
+ localize('input(s), but getting') + ' ' + parms.length
+ localize('input(s), but getting') + ' '
+ parms.length
);
}
}