kopia lustrzana https://github.com/backface/turtlestitch
integrate translation update
rodzic
10ade6421b
commit
f2d0c2eba5
|
@ -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!
|
||||
|
|
12
threads.js
12
threads.js
|
@ -858,8 +858,9 @@ Process.prototype.evaluate = function (
|
|||
|
||||
} else if (context.emptySlots !== 1) {
|
||||
throw new Error(
|
||||
localize('expecting') + ' ' + context.emptySlots + ' '
|
||||
+ localize('input(s), but getting') + ' ' + parms.length
|
||||
localize('expecting') + ' ' + context.emptySlots + ' '
|
||||
+ localize('input(s), but getting') + ' '
|
||||
+ parms.length
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -937,8 +938,9 @@ 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('expecting') + ' ' + context.emptySlots + ' '
|
||||
+ localize('input(s), but getting') + ' '
|
||||
+ parms.length
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -2986,7 +2988,7 @@ VariableFrame.prototype.find = function (name) {
|
|||
throw new Error(
|
||||
localize('a variable of name \'')
|
||||
+ name
|
||||
+ localize('\'\ndoes not exist in this context')
|
||||
+ localize('\'\ndoes not exist in this context')
|
||||
);
|
||||
};
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue