summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmoenig <jens@moenig.org>2014-11-20 15:53:14 +0100
committerjmoenig <jens@moenig.org>2014-11-20 15:53:14 +0100
commitf2d0c2eba5d6b012fc3fb1167c82b64b2f8ed447 (patch)
tree2ccfc44f072682f2293b95fd305f49da3bc75168
parent10ade6421be72d1385a03e0bcdf8aaed54360130 (diff)
downloadsnap-f2d0c2eba5d6b012fc3fb1167c82b64b2f8ed447.tar.gz
snap-f2d0c2eba5d6b012fc3fb1167c82b64b2f8ed447.zip
integrate translation update
-rwxr-xr-xhistory.txt1
-rw-r--r--threads.js12
2 files changed, 8 insertions, 5 deletions
diff --git a/history.txt b/history.txt
index 110ea89..0faac6b 100755
--- a/history.txt
+++ b/history.txt
@@ -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!
diff --git a/threads.js b/threads.js
index ea563f1..7d656c4 100644
--- a/threads.js
+++ b/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')
);
};