iobroker.javascript 7.0.5 → 7.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -8
- package/admin/asset-manifest.json +5 -5
- package/admin/google-blockly/blockly_compressed.js +1469 -1704
- package/admin/google-blockly/blocks_compressed.js +164 -218
- package/admin/google-blockly/javascript_compressed.js +100 -328
- package/admin/google-blockly/msg/js/de.js +64 -70
- package/admin/google-blockly/msg/js/en.js +14 -20
- package/admin/google-blockly/msg/js/es.js +39 -45
- package/admin/google-blockly/msg/js/fr.js +59 -65
- package/admin/google-blockly/msg/js/it.js +19 -25
- package/admin/google-blockly/msg/js/nl.js +55 -61
- package/admin/google-blockly/msg/js/pl.js +46 -52
- package/admin/google-blockly/msg/js/pt.js +30 -36
- package/admin/google-blockly/msg/js/ru.js +41 -47
- package/admin/google-blockly/msg/js/uk.js +13 -17
- package/admin/google-blockly/msg/js/zh-cn.js +86 -92
- package/admin/google-blockly/own/blocks_action.js +4 -4
- package/admin/google-blockly/own/blocks_other.js +103 -0
- package/admin/google-blockly/own/blocks_procedures.js +63 -62
- package/admin/google-blockly/own/blocks_sendto.js +62 -60
- package/admin/google-blockly/own/blocks_switch.js +40 -29
- package/admin/google-blockly/own/blocks_system.js +113 -170
- package/admin/google-blockly/own/blocks_time.js +35 -35
- package/admin/google-blockly/own/blocks_timeout.js +42 -42
- package/admin/google-blockly/own/blocks_trigger.js +47 -62
- package/admin/google-blockly/own/blocks_words.js +8 -9
- package/admin/google-blockly/own/field_cron.js +189 -139
- package/admin/google-blockly/own/field_oid.js +250 -170
- package/admin/google-blockly/own/field_script.js +16 -16
- package/admin/static/js/759.7f25ba6c.chunk.js.map +1 -1
- package/admin/static/js/98.bf3dfa2b.chunk.js +2 -0
- package/admin/static/js/98.bf3dfa2b.chunk.js.map +1 -0
- package/admin/static/js/{main.eee05982.js → main.d9e7d255.js} +2 -2
- package/admin/static/js/{main.eee05982.js.map → main.d9e7d255.js.map} +1 -1
- package/admin/tab.html +1 -1
- package/admin/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/admin-config/vsFont/codicon.json +1 -1
- package/io-package.json +40 -40
- package/lib/typescriptTools.js +29 -30
- package/main.js +4 -4
- package/package.json +3 -3
- package/admin/google-blockly/own/blocks_logic.js +0 -64
- package/admin/google-blockly/own/blocks_number.js +0 -25
- package/admin/google-blockly/own/blocks_text.js +0 -23
- package/admin/static/js/98.3bc0a67c.chunk.js +0 -2
- package/admin/static/js/98.3bc0a67c.chunk.js.map +0 -1
|
@@ -1,22 +1,7 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
;(function(root, factory) {
|
|
3
|
-
if (typeof define === 'function' && define.amd) { // AMD
|
|
4
|
-
define([], factory);
|
|
5
|
-
} else if (typeof exports === 'object') { // Node.js
|
|
6
|
-
module.exports = factory();
|
|
7
|
-
} else { // Browser
|
|
8
|
-
var messages = factory();
|
|
9
|
-
for (var key in messages) {
|
|
10
|
-
root.Blockly.Msg[key] = messages[key];
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
}(this, function() {
|
|
14
1
|
// This file was automatically generated. Do not modify.
|
|
15
2
|
|
|
16
3
|
'use strict';
|
|
17
4
|
|
|
18
|
-
var Blockly = Blockly || { Msg: Object.create(null) };
|
|
19
|
-
|
|
20
5
|
Blockly.Msg["ADD_COMMENT"] = "Aggiungi commento";
|
|
21
6
|
Blockly.Msg["CANNOT_DELETE_VARIABLE_PROCEDURE"] = "Non si può cancellare la variabile '%1' perché è parte della definizione della funzione '%2'";
|
|
22
7
|
Blockly.Msg["CHANGE_VALUE_TITLE"] = "Modifica valore:";
|
|
@@ -78,8 +63,6 @@ Blockly.Msg["DELETE_BLOCK"] = "Cancella blocco";
|
|
|
78
63
|
Blockly.Msg["DELETE_VARIABLE"] = "Cancella la variabile '%1'";
|
|
79
64
|
Blockly.Msg["DELETE_VARIABLE_CONFIRMATION"] = "Cancella %1 usi della variabile '%2'?";
|
|
80
65
|
Blockly.Msg["DELETE_X_BLOCKS"] = "Cancella %1 blocchi";
|
|
81
|
-
Blockly.Msg["DIALOG_CANCEL"] = "Annulla";
|
|
82
|
-
Blockly.Msg["DIALOG_OK"] = "OK";
|
|
83
66
|
Blockly.Msg["DISABLE_BLOCK"] = "Disattiva blocco";
|
|
84
67
|
Blockly.Msg["DUPLICATE_BLOCK"] = "Duplica";
|
|
85
68
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Duplica commento";
|
|
@@ -89,6 +72,19 @@ Blockly.Msg["EXPAND_BLOCK"] = "Espandi blocco";
|
|
|
89
72
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Ingressi esterni";
|
|
90
73
|
Blockly.Msg["HELP"] = "Aiuto";
|
|
91
74
|
Blockly.Msg["INLINE_INPUTS"] = "Ingressi in linea";
|
|
75
|
+
Blockly.Msg["IOS_CANCEL"] = "Annulla";
|
|
76
|
+
Blockly.Msg["IOS_ERROR"] = "Errore";
|
|
77
|
+
Blockly.Msg["IOS_OK"] = "OK";
|
|
78
|
+
Blockly.Msg["IOS_PROCEDURES_ADD_INPUT"] = "+ Aggiungi input";
|
|
79
|
+
Blockly.Msg["IOS_PROCEDURES_ALLOW_STATEMENTS"] = "Consenti dichiarazioni";
|
|
80
|
+
Blockly.Msg["IOS_PROCEDURES_DUPLICATE_INPUTS_ERROR"] = "Questa funzione ha entrate duplicate.";
|
|
81
|
+
Blockly.Msg["IOS_PROCEDURES_INPUTS"] = "INPUTS";
|
|
82
|
+
Blockly.Msg["IOS_VARIABLES_ADD_BUTTON"] = "Aggiungi";
|
|
83
|
+
Blockly.Msg["IOS_VARIABLES_ADD_VARIABLE"] = "+ Aggiungi variabile";
|
|
84
|
+
Blockly.Msg["IOS_VARIABLES_DELETE_BUTTON"] = "Cancella";
|
|
85
|
+
Blockly.Msg["IOS_VARIABLES_EMPTY_NAME_ERROR"] = "Non puoi utilizzare un nome di variabile vuoto.";
|
|
86
|
+
Blockly.Msg["IOS_VARIABLES_RENAME_BUTTON"] = "Rinomina";
|
|
87
|
+
Blockly.Msg["IOS_VARIABLES_VARIABLE_NAME"] = "Nome variabile";
|
|
92
88
|
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-empty-list"; // untranslated
|
|
93
89
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "crea lista vuota";
|
|
94
90
|
Blockly.Msg["LISTS_CREATE_EMPTY_TOOLTIP"] = "Restituisce una lista, di lunghezza 0, contenente nessun record di dati";
|
|
@@ -159,7 +155,7 @@ Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FIRST"] = "Imposta il primo elemento in
|
|
|
159
155
|
Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FROM"] = "Imposta l'elemento nella posizione indicata di una lista.";
|
|
160
156
|
Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_LAST"] = "Imposta l'ultimo elemento in una lista.";
|
|
161
157
|
Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_RANDOM"] = "Imposta un elemento casuale in una lista.";
|
|
162
|
-
Blockly.Msg["LISTS_SORT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#sorting-a-list";
|
|
158
|
+
Blockly.Msg["LISTS_SORT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#sorting-a-list";
|
|
163
159
|
Blockly.Msg["LISTS_SORT_ORDER_ASCENDING"] = "crescente";
|
|
164
160
|
Blockly.Msg["LISTS_SORT_ORDER_DESCENDING"] = "decrescente";
|
|
165
161
|
Blockly.Msg["LISTS_SORT_TITLE"] = "ordinamento %1 %2 %3";
|
|
@@ -312,7 +308,7 @@ Blockly.Msg["PROCEDURES_DEFRETURN_RETURN"] = "ritorna";
|
|
|
312
308
|
Blockly.Msg["PROCEDURES_DEFRETURN_TOOLTIP"] = "Crea una funzione con un output.";
|
|
313
309
|
Blockly.Msg["PROCEDURES_DEF_DUPLICATE_WARNING"] = "Attenzioneː Questa funzione ha parametri duplicati.";
|
|
314
310
|
Blockly.Msg["PROCEDURES_HIGHLIGHT_DEF"] = "Evidenzia definizione di funzione";
|
|
315
|
-
Blockly.Msg["PROCEDURES_IFRETURN_HELPURL"] = "http://c2.com/cgi/wiki?GuardClause";
|
|
311
|
+
Blockly.Msg["PROCEDURES_IFRETURN_HELPURL"] = "http://c2.com/cgi/wiki?GuardClause";
|
|
316
312
|
Blockly.Msg["PROCEDURES_IFRETURN_TOOLTIP"] = "Se un valore è vero allora restituisce un secondo valore.";
|
|
317
313
|
Blockly.Msg["PROCEDURES_IFRETURN_WARNING"] = "Attenzioneː Questo blocco può essere usato solo all'interno di una definizione di funzione.";
|
|
318
314
|
Blockly.Msg["PROCEDURES_MUTATORARG_TITLE"] = "nome inputː";
|
|
@@ -340,7 +336,7 @@ Blockly.Msg["TEXT_CHARAT_RANDOM"] = "prendi lettera casuale";
|
|
|
340
336
|
Blockly.Msg["TEXT_CHARAT_TAIL"] = ""; // untranslated
|
|
341
337
|
Blockly.Msg["TEXT_CHARAT_TITLE"] = "nel testo %1 %2";
|
|
342
338
|
Blockly.Msg["TEXT_CHARAT_TOOLTIP"] = "Restituisce la lettera nella posizione indicata.";
|
|
343
|
-
Blockly.Msg["TEXT_COUNT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#counting-substrings";
|
|
339
|
+
Blockly.Msg["TEXT_COUNT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#counting-substrings";
|
|
344
340
|
Blockly.Msg["TEXT_COUNT_MESSAGE0"] = "conta %1 in %2";
|
|
345
341
|
Blockly.Msg["TEXT_COUNT_TOOLTIP"] = "Contare quante volte una parte di testo si ripete all'interno di qualche altro testo.";
|
|
346
342
|
Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TOOLTIP"] = "Aggiungi un elemento al testo.";
|
|
@@ -378,7 +374,7 @@ Blockly.Msg["TEXT_PROMPT_TOOLTIP_NUMBER"] = "Richiedi un numero all'utente.";
|
|
|
378
374
|
Blockly.Msg["TEXT_PROMPT_TOOLTIP_TEXT"] = "Richiede del testo da parte dell'utente.";
|
|
379
375
|
Blockly.Msg["TEXT_PROMPT_TYPE_NUMBER"] = "richiedi numero con messaggio";
|
|
380
376
|
Blockly.Msg["TEXT_PROMPT_TYPE_TEXT"] = "richiedi testo con messaggio";
|
|
381
|
-
Blockly.Msg["TEXT_REPLACE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#replacing-substrings";
|
|
377
|
+
Blockly.Msg["TEXT_REPLACE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#replacing-substrings";
|
|
382
378
|
Blockly.Msg["TEXT_REPLACE_MESSAGE0"] = "sostituisci %1 con %2 in %3";
|
|
383
379
|
Blockly.Msg["TEXT_REPLACE_TOOLTIP"] = "sostituisci tutte le occorrenze di un certo testo con qualche altro testo.";
|
|
384
380
|
Blockly.Msg["TEXT_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#reversing-text"; // untranslated
|
|
@@ -403,7 +399,7 @@ Blockly.Msg["VARIABLES_SET_CREATE_GET"] = "Crea 'prendi %1'";
|
|
|
403
399
|
Blockly.Msg["VARIABLES_SET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#set"; // untranslated
|
|
404
400
|
Blockly.Msg["VARIABLES_SET_TOOLTIP"] = "Imposta questa variabile ad essere pari all'input.";
|
|
405
401
|
Blockly.Msg["VARIABLE_ALREADY_EXISTS"] = "Una variabile denominata '%1' esiste già.";
|
|
406
|
-
Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_ANOTHER_TYPE"] = "Una variabile nominata '%1' esiste già per un
|
|
402
|
+
Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_ANOTHER_TYPE"] = "Una variabile nominata '%1' esiste già per un'altro tipo: '%2'.";
|
|
407
403
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Area di lavoro di Blockly";
|
|
408
404
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Scrivi qualcosa...";
|
|
409
405
|
Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
@@ -435,6 +431,4 @@ Blockly.Msg["VARIABLES_HUE"] = "330";
|
|
|
435
431
|
Blockly.Msg["TEXTS_HUE"] = "160";
|
|
436
432
|
Blockly.Msg["PROCEDURES_HUE"] = "290";
|
|
437
433
|
Blockly.Msg["COLOUR_HUE"] = "20";
|
|
438
|
-
Blockly.Msg["VARIABLES_DYNAMIC_HUE"] = "310";
|
|
439
|
-
return Blockly.Msg;
|
|
440
|
-
}));
|
|
434
|
+
Blockly.Msg["VARIABLES_DYNAMIC_HUE"] = "310";
|
|
@@ -1,22 +1,7 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
;(function(root, factory) {
|
|
3
|
-
if (typeof define === 'function' && define.amd) { // AMD
|
|
4
|
-
define([], factory);
|
|
5
|
-
} else if (typeof exports === 'object') { // Node.js
|
|
6
|
-
module.exports = factory();
|
|
7
|
-
} else { // Browser
|
|
8
|
-
var messages = factory();
|
|
9
|
-
for (var key in messages) {
|
|
10
|
-
root.Blockly.Msg[key] = messages[key];
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
}(this, function() {
|
|
14
1
|
// This file was automatically generated. Do not modify.
|
|
15
2
|
|
|
16
3
|
'use strict';
|
|
17
4
|
|
|
18
|
-
var Blockly = Blockly || { Msg: Object.create(null) };
|
|
19
|
-
|
|
20
5
|
Blockly.Msg["ADD_COMMENT"] = "Opmerking toevoegen";
|
|
21
6
|
Blockly.Msg["CANNOT_DELETE_VARIABLE_PROCEDURE"] = "De variabele \"%1\" kan niet verwijderd worden omdat die onderdeel uitmaakt van de definitie van de functie \"%2\"";
|
|
22
7
|
Blockly.Msg["CHANGE_VALUE_TITLE"] = "Waarde wijzigen:";
|
|
@@ -26,7 +11,7 @@ Blockly.Msg["COLLAPSE_ALL"] = "Blokken samenvouwen";
|
|
|
26
11
|
Blockly.Msg["COLLAPSE_BLOCK"] = "Blok samenvouwen";
|
|
27
12
|
Blockly.Msg["COLOUR_BLEND_COLOUR1"] = "kleur 1";
|
|
28
13
|
Blockly.Msg["COLOUR_BLEND_COLOUR2"] = "kleur 2";
|
|
29
|
-
Blockly.Msg["COLOUR_BLEND_HELPURL"] = "
|
|
14
|
+
Blockly.Msg["COLOUR_BLEND_HELPURL"] = "http://meyerweb.com/eric/tools/color-blend/";
|
|
30
15
|
Blockly.Msg["COLOUR_BLEND_RATIO"] = "verhouding";
|
|
31
16
|
Blockly.Msg["COLOUR_BLEND_TITLE"] = "mengen";
|
|
32
17
|
Blockly.Msg["COLOUR_BLEND_TOOLTIP"] = "Mengt twee kleuren samen met een bepaalde verhouding (0.0 - 1.0).";
|
|
@@ -37,25 +22,25 @@ Blockly.Msg["COLOUR_RANDOM_TITLE"] = "willekeurige kleur";
|
|
|
37
22
|
Blockly.Msg["COLOUR_RANDOM_TOOLTIP"] = "Kies een willekeurige kleur.";
|
|
38
23
|
Blockly.Msg["COLOUR_RGB_BLUE"] = "blauw";
|
|
39
24
|
Blockly.Msg["COLOUR_RGB_GREEN"] = "groen";
|
|
40
|
-
Blockly.Msg["COLOUR_RGB_HELPURL"] = "
|
|
25
|
+
Blockly.Msg["COLOUR_RGB_HELPURL"] = "http://www.december.com/html/spec/colorper.html";
|
|
41
26
|
Blockly.Msg["COLOUR_RGB_RED"] = "rood";
|
|
42
27
|
Blockly.Msg["COLOUR_RGB_TITLE"] = "kleuren met";
|
|
43
28
|
Blockly.Msg["COLOUR_RGB_TOOLTIP"] = "Maak een kleur met de opgegeven hoeveelheid rood, groen en blauw. Alle waarden moeten tussen 0 en 100 liggen.";
|
|
44
|
-
Blockly.Msg["CONTROLS_FLOW_STATEMENTS_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#loop-termination-blocks";
|
|
29
|
+
Blockly.Msg["CONTROLS_FLOW_STATEMENTS_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#loop-termination-blocks";
|
|
45
30
|
Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_BREAK"] = "uit lus breken";
|
|
46
31
|
Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_CONTINUE"] = "doorgaan met de volgende iteratie van de lus";
|
|
47
|
-
Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK"] = "
|
|
32
|
+
Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK"] = "uit de bovenliggende lus breken";
|
|
48
33
|
Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_CONTINUE"] = "De rest van deze lus overslaan en doorgaan met de volgende herhaling.";
|
|
49
34
|
Blockly.Msg["CONTROLS_FLOW_STATEMENTS_WARNING"] = "Waarschuwing: dit blok mag alleen gebruikt worden in een lus.";
|
|
50
35
|
Blockly.Msg["CONTROLS_FOREACH_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#for-each"; // untranslated
|
|
51
36
|
Blockly.Msg["CONTROLS_FOREACH_TITLE"] = "voor ieder item %1 in lijst %2";
|
|
52
37
|
Blockly.Msg["CONTROLS_FOREACH_TOOLTIP"] = "Voor ieder item in een lijst, stel de variabele \"%1\" in op het item en voer daarna opdrachten uit.";
|
|
53
|
-
Blockly.Msg["CONTROLS_FOR_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#count-with";
|
|
38
|
+
Blockly.Msg["CONTROLS_FOR_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#count-with";
|
|
54
39
|
Blockly.Msg["CONTROLS_FOR_TITLE"] = "rekenen met %1 van %2 tot %3 in stappen van %4";
|
|
55
40
|
Blockly.Msg["CONTROLS_FOR_TOOLTIP"] = "Laat de variabele \"%1\" de waarden aannemen van het beginnummer tot het laatste nummer, tellende met het opgegeven interval, en met uitvoering van de opgegeven blokken.";
|
|
56
41
|
Blockly.Msg["CONTROLS_IF_ELSEIF_TOOLTIP"] = "Voeg een voorwaarde toe aan het als-blok.";
|
|
57
42
|
Blockly.Msg["CONTROLS_IF_ELSE_TOOLTIP"] = "Voeg een laatste, vang-alles conditie toe aan het als-statement.";
|
|
58
|
-
Blockly.Msg["CONTROLS_IF_HELPURL"] = "https://github.com/google/blockly/wiki/IfElse";
|
|
43
|
+
Blockly.Msg["CONTROLS_IF_HELPURL"] = "https://github.com/google/blockly/wiki/IfElse";
|
|
59
44
|
Blockly.Msg["CONTROLS_IF_IF_TOOLTIP"] = "Voeg stukken toe, verwijder of wijzig de volgorde om dit \"als\"-blok te wijzigen.";
|
|
60
45
|
Blockly.Msg["CONTROLS_IF_MSG_ELSE"] = "anders";
|
|
61
46
|
Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"] = "anders als";
|
|
@@ -68,7 +53,7 @@ Blockly.Msg["CONTROLS_REPEAT_HELPURL"] = "https://nl.wikipedia.org/wiki/Repetiti
|
|
|
68
53
|
Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"] = "voer uit";
|
|
69
54
|
Blockly.Msg["CONTROLS_REPEAT_TITLE"] = "%1 keer herhalen";
|
|
70
55
|
Blockly.Msg["CONTROLS_REPEAT_TOOLTIP"] = "Voer een aantal opdrachten meerdere keren uit.";
|
|
71
|
-
Blockly.Msg["CONTROLS_WHILEUNTIL_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#repeat";
|
|
56
|
+
Blockly.Msg["CONTROLS_WHILEUNTIL_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#repeat";
|
|
72
57
|
Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_UNTIL"] = "herhalen totdat";
|
|
73
58
|
Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_WHILE"] = "herhalen zolang";
|
|
74
59
|
Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_UNTIL"] = "Terwijl een waarde onwaar is de volgende opdrachten uitvoeren.";
|
|
@@ -78,10 +63,8 @@ Blockly.Msg["DELETE_BLOCK"] = "Blok verwijderen";
|
|
|
78
63
|
Blockly.Msg["DELETE_VARIABLE"] = "Verwijder de variabele \"%1\"";
|
|
79
64
|
Blockly.Msg["DELETE_VARIABLE_CONFIRMATION"] = "%1 gebruiken van de variabele \"%2\" verwijderen?";
|
|
80
65
|
Blockly.Msg["DELETE_X_BLOCKS"] = "%1 blokken verwijderen";
|
|
81
|
-
Blockly.Msg["DIALOG_CANCEL"] = "Annuleren";
|
|
82
|
-
Blockly.Msg["DIALOG_OK"] = "OK";
|
|
83
66
|
Blockly.Msg["DISABLE_BLOCK"] = "Blok uitschakelen";
|
|
84
|
-
Blockly.Msg["DUPLICATE_BLOCK"] = "
|
|
67
|
+
Blockly.Msg["DUPLICATE_BLOCK"] = "Duplicaat";
|
|
85
68
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Opmerking dupliceren";
|
|
86
69
|
Blockly.Msg["ENABLE_BLOCK"] = "Blok inschakelen";
|
|
87
70
|
Blockly.Msg["EXPAND_ALL"] = "Blokken uitvouwen";
|
|
@@ -89,7 +72,20 @@ Blockly.Msg["EXPAND_BLOCK"] = "Blok uitvouwen";
|
|
|
89
72
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Externe invoer";
|
|
90
73
|
Blockly.Msg["HELP"] = "Hulp";
|
|
91
74
|
Blockly.Msg["INLINE_INPUTS"] = "Inline invoer";
|
|
92
|
-
Blockly.Msg["
|
|
75
|
+
Blockly.Msg["IOS_CANCEL"] = "Annuleren";
|
|
76
|
+
Blockly.Msg["IOS_ERROR"] = "Fout";
|
|
77
|
+
Blockly.Msg["IOS_OK"] = "OK";
|
|
78
|
+
Blockly.Msg["IOS_PROCEDURES_ADD_INPUT"] = "+ Invoer toevoegen";
|
|
79
|
+
Blockly.Msg["IOS_PROCEDURES_ALLOW_STATEMENTS"] = "Statements toestaan";
|
|
80
|
+
Blockly.Msg["IOS_PROCEDURES_DUPLICATE_INPUTS_ERROR"] = "Deze functie heeft dubbele invoeren.";
|
|
81
|
+
Blockly.Msg["IOS_PROCEDURES_INPUTS"] = "INVOER";
|
|
82
|
+
Blockly.Msg["IOS_VARIABLES_ADD_BUTTON"] = "Toevoegen";
|
|
83
|
+
Blockly.Msg["IOS_VARIABLES_ADD_VARIABLE"] = "+ Variabele toevoegen";
|
|
84
|
+
Blockly.Msg["IOS_VARIABLES_DELETE_BUTTON"] = "Verwijderen";
|
|
85
|
+
Blockly.Msg["IOS_VARIABLES_EMPTY_NAME_ERROR"] = "U kunt geen lege variabelenaam gebruiken.";
|
|
86
|
+
Blockly.Msg["IOS_VARIABLES_RENAME_BUTTON"] = "Hernoemen";
|
|
87
|
+
Blockly.Msg["IOS_VARIABLES_VARIABLE_NAME"] = "Variabelenaam";
|
|
88
|
+
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-empty-list";
|
|
93
89
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "maak een lege lijst";
|
|
94
90
|
Blockly.Msg["LISTS_CREATE_EMPTY_TOOLTIP"] = "Geeft een lijst terug met lengte 0, zonder items";
|
|
95
91
|
Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TITLE_ADD"] = "lijst";
|
|
@@ -122,7 +118,7 @@ Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_RANDOM"] = "Verwijdert een willekeur
|
|
|
122
118
|
Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_END"] = "naar # vanaf einde";
|
|
123
119
|
Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_START"] = "naar item";
|
|
124
120
|
Blockly.Msg["LISTS_GET_SUBLIST_END_LAST"] = "naar laatste";
|
|
125
|
-
Blockly.Msg["LISTS_GET_SUBLIST_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist";
|
|
121
|
+
Blockly.Msg["LISTS_GET_SUBLIST_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist";
|
|
126
122
|
Blockly.Msg["LISTS_GET_SUBLIST_START_FIRST"] = "haal sublijst op vanaf eerste";
|
|
127
123
|
Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_END"] = "haal sublijst op van positie vanaf einde";
|
|
128
124
|
Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_START"] = "haal sublijst op vanaf positie";
|
|
@@ -131,23 +127,23 @@ Blockly.Msg["LISTS_GET_SUBLIST_TOOLTIP"] = "Maakt een kopie van het opgegeven de
|
|
|
131
127
|
Blockly.Msg["LISTS_INDEX_FROM_END_TOOLTIP"] = "Item %1 is het laatste item.";
|
|
132
128
|
Blockly.Msg["LISTS_INDEX_FROM_START_TOOLTIP"] = "Item %1 is het eerste item.";
|
|
133
129
|
Blockly.Msg["LISTS_INDEX_OF_FIRST"] = "zoek eerste voorkomen van item";
|
|
134
|
-
Blockly.Msg["LISTS_INDEX_OF_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-items-from-a-list";
|
|
130
|
+
Blockly.Msg["LISTS_INDEX_OF_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-items-from-a-list";
|
|
135
131
|
Blockly.Msg["LISTS_INDEX_OF_LAST"] = "zoek laatste voorkomen van item";
|
|
136
132
|
Blockly.Msg["LISTS_INDEX_OF_TOOLTIP"] = "Geeft de index terug van het eerste of laatste voorkomen van een item in de lijst. Geeft %1 terug als het item niet is gevonden.";
|
|
137
133
|
Blockly.Msg["LISTS_INLIST"] = "in lijst";
|
|
138
134
|
Blockly.Msg["LISTS_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#is-empty"; // untranslated
|
|
139
135
|
Blockly.Msg["LISTS_ISEMPTY_TITLE"] = "%1 is leeg";
|
|
140
136
|
Blockly.Msg["LISTS_ISEMPTY_TOOLTIP"] = "Geeft waar terug als de lijst leeg is.";
|
|
141
|
-
Blockly.Msg["LISTS_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#length-of";
|
|
137
|
+
Blockly.Msg["LISTS_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#length-of";
|
|
142
138
|
Blockly.Msg["LISTS_LENGTH_TITLE"] = "lengte van %1";
|
|
143
139
|
Blockly.Msg["LISTS_LENGTH_TOOLTIP"] = "Geeft de lengte van een lijst terug.";
|
|
144
|
-
Blockly.Msg["LISTS_REPEAT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with";
|
|
140
|
+
Blockly.Msg["LISTS_REPEAT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with";
|
|
145
141
|
Blockly.Msg["LISTS_REPEAT_TITLE"] = "Maak lijst met item %1, %2 keer herhaald";
|
|
146
142
|
Blockly.Msg["LISTS_REPEAT_TOOLTIP"] = "Maakt een lijst die bestaat uit de opgegeven waarde, het opgegeven aantal keer herhaald.";
|
|
147
143
|
Blockly.Msg["LISTS_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#reversing-a-list"; // untranslated
|
|
148
144
|
Blockly.Msg["LISTS_REVERSE_MESSAGE0"] = "%1 omkeren";
|
|
149
145
|
Blockly.Msg["LISTS_REVERSE_TOOLTIP"] = "Keert een kopie van een lijst om.";
|
|
150
|
-
Blockly.Msg["LISTS_SET_INDEX_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#in-list--set";
|
|
146
|
+
Blockly.Msg["LISTS_SET_INDEX_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#in-list--set";
|
|
151
147
|
Blockly.Msg["LISTS_SET_INDEX_INPUT_TO"] = "als";
|
|
152
148
|
Blockly.Msg["LISTS_SET_INDEX_INSERT"] = "tussenvoegen op";
|
|
153
149
|
Blockly.Msg["LISTS_SET_INDEX_SET"] = "stel in";
|
|
@@ -159,7 +155,7 @@ Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FIRST"] = "Stelt het eerste item in een
|
|
|
159
155
|
Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FROM"] = "Zet het item op de opgegeven positie in de lijst.";
|
|
160
156
|
Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_LAST"] = "Stelt het laatste item van een lijst in.";
|
|
161
157
|
Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_RANDOM"] = "Stelt een willekeurig item uit de lijst in.";
|
|
162
|
-
Blockly.Msg["LISTS_SORT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#sorting-a-list";
|
|
158
|
+
Blockly.Msg["LISTS_SORT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#sorting-a-list";
|
|
163
159
|
Blockly.Msg["LISTS_SORT_ORDER_ASCENDING"] = "oplopend";
|
|
164
160
|
Blockly.Msg["LISTS_SORT_ORDER_DESCENDING"] = "aflopend";
|
|
165
161
|
Blockly.Msg["LISTS_SORT_TITLE"] = "sorteer %1 %2 %3";
|
|
@@ -174,7 +170,7 @@ Blockly.Msg["LISTS_SPLIT_TOOLTIP_JOIN"] = "Lijst van tekstdelen samenvoegen in
|
|
|
174
170
|
Blockly.Msg["LISTS_SPLIT_TOOLTIP_SPLIT"] = "Tekst splitsen in een lijst van teksten op basis van een scheidingsteken.";
|
|
175
171
|
Blockly.Msg["LISTS_SPLIT_WITH_DELIMITER"] = "met scheidingsteken";
|
|
176
172
|
Blockly.Msg["LOGIC_BOOLEAN_FALSE"] = "onwaar";
|
|
177
|
-
Blockly.Msg["LOGIC_BOOLEAN_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#values";
|
|
173
|
+
Blockly.Msg["LOGIC_BOOLEAN_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#values";
|
|
178
174
|
Blockly.Msg["LOGIC_BOOLEAN_TOOLTIP"] = "Geeft \"waar\" of \"onwaar\" terug.";
|
|
179
175
|
Blockly.Msg["LOGIC_BOOLEAN_TRUE"] = "waar";
|
|
180
176
|
Blockly.Msg["LOGIC_COMPARE_HELPURL"] = "https://nl.wikipedia.org/wiki/Ongelijkheid_(wiskunde)";
|
|
@@ -184,33 +180,33 @@ Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GTE"] = "Geeft \"waar\" terug als de eerste i
|
|
|
184
180
|
Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LT"] = "Geeft \"waar\" als de eerste invoer kleiner is dan de tweede invoer.";
|
|
185
181
|
Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LTE"] = "Geeft \"waar\" terug als de eerste invoer kleiner of gelijk is aan de tweede invoer.";
|
|
186
182
|
Blockly.Msg["LOGIC_COMPARE_TOOLTIP_NEQ"] = "Geeft \"waar\" terug als de waarden niet gelijk zijn aan elkaar.";
|
|
187
|
-
Blockly.Msg["LOGIC_NEGATE_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#not";
|
|
183
|
+
Blockly.Msg["LOGIC_NEGATE_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#not";
|
|
188
184
|
Blockly.Msg["LOGIC_NEGATE_TITLE"] = "niet %1";
|
|
189
185
|
Blockly.Msg["LOGIC_NEGATE_TOOLTIP"] = "Geeft \"waar\" terug als de invoer \"onwaar\" is. Geeft \"onwaar\" als de invoer \"waar\" is.";
|
|
190
186
|
Blockly.Msg["LOGIC_NULL"] = "niets";
|
|
191
|
-
Blockly.Msg["LOGIC_NULL_HELPURL"] = "https://en.wikipedia.org/wiki/Nullable_type";
|
|
187
|
+
Blockly.Msg["LOGIC_NULL_HELPURL"] = "https://en.wikipedia.org/wiki/Nullable_type";
|
|
192
188
|
Blockly.Msg["LOGIC_NULL_TOOLTIP"] = "Geeft niets terug.";
|
|
193
189
|
Blockly.Msg["LOGIC_OPERATION_AND"] = "en";
|
|
194
|
-
Blockly.Msg["LOGIC_OPERATION_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#logical-operations";
|
|
190
|
+
Blockly.Msg["LOGIC_OPERATION_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#logical-operations";
|
|
195
191
|
Blockly.Msg["LOGIC_OPERATION_OR"] = "of";
|
|
196
192
|
Blockly.Msg["LOGIC_OPERATION_TOOLTIP_AND"] = "Geeft waar als beide waarden waar zijn.";
|
|
197
193
|
Blockly.Msg["LOGIC_OPERATION_TOOLTIP_OR"] = "Geeft \"waar\" terug als in ieder geval één van de waarden waar is.";
|
|
198
194
|
Blockly.Msg["LOGIC_TERNARY_CONDITION"] = "test";
|
|
199
|
-
Blockly.Msg["LOGIC_TERNARY_HELPURL"] = "https://en.wikipedia.org/wiki/%3F:";
|
|
195
|
+
Blockly.Msg["LOGIC_TERNARY_HELPURL"] = "https://en.wikipedia.org/wiki/%3F:";
|
|
200
196
|
Blockly.Msg["LOGIC_TERNARY_IF_FALSE"] = "als onwaar";
|
|
201
197
|
Blockly.Msg["LOGIC_TERNARY_IF_TRUE"] = "als waar";
|
|
202
198
|
Blockly.Msg["LOGIC_TERNARY_TOOLTIP"] = "Test de voorwaarde in \"test\". Als de voorwaarde \"waar\" is, geef de waarde van \"als waar\" terug; geef anders de waarde van \"als onwaar\" terug.";
|
|
203
|
-
Blockly.Msg["MATH_ADDITION_SYMBOL"] = "+";
|
|
199
|
+
Blockly.Msg["MATH_ADDITION_SYMBOL"] = "+";
|
|
204
200
|
Blockly.Msg["MATH_ARITHMETIC_HELPURL"] = "https://nl.wikipedia.org/wiki/Rekenen";
|
|
205
201
|
Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_ADD"] = "Geeft de som van 2 getallen.";
|
|
206
202
|
Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_DIVIDE"] = "Geeft de gedeelde waarde van twee getallen.";
|
|
207
203
|
Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MINUS"] = "Geeft het verschil van de twee getallen.";
|
|
208
204
|
Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MULTIPLY"] = "Geeft het product terug van de twee getallen.";
|
|
209
205
|
Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_POWER"] = "Geeft het eerste getal tot de macht van het tweede getal.";
|
|
210
|
-
Blockly.Msg["MATH_ATAN2_HELPURL"] = "https://en.wikipedia.org/wiki/Atan2";
|
|
206
|
+
Blockly.Msg["MATH_ATAN2_HELPURL"] = "https://en.wikipedia.org/wiki/Atan2";
|
|
211
207
|
Blockly.Msg["MATH_ATAN2_TITLE"] = "atan2 van X:%1 Y:%2";
|
|
212
208
|
Blockly.Msg["MATH_ATAN2_TOOLTIP"] = "Geef de boogtangens van punt (X, Y) terug in graden tussen -180 naar 180.";
|
|
213
|
-
Blockly.Msg["MATH_CHANGE_HELPURL"] = "https://en.wikipedia.org/wiki/Programming_idiom#Incrementing_a_counter";
|
|
209
|
+
Blockly.Msg["MATH_CHANGE_HELPURL"] = "https://en.wikipedia.org/wiki/Programming_idiom#Incrementing_a_counter";
|
|
214
210
|
Blockly.Msg["MATH_CHANGE_TITLE"] = "%1 wijzigen met %2";
|
|
215
211
|
Blockly.Msg["MATH_CHANGE_TOOLTIP"] = "Voegt een getal toe aan variabele \"%1\".";
|
|
216
212
|
Blockly.Msg["MATH_CONSTANT_HELPURL"] = "https://nl.wikipedia.org/wiki/Wiskundige_constante";
|
|
@@ -218,7 +214,7 @@ Blockly.Msg["MATH_CONSTANT_TOOLTIP"] = "Geeft een van de vaak voorkomende consta
|
|
|
218
214
|
Blockly.Msg["MATH_CONSTRAIN_HELPURL"] = "https://en.wikipedia.org/wiki/Clamping_(graphics)"; // untranslated
|
|
219
215
|
Blockly.Msg["MATH_CONSTRAIN_TITLE"] = "beperk %1 van minimaal %2 tot maximaal %3";
|
|
220
216
|
Blockly.Msg["MATH_CONSTRAIN_TOOLTIP"] = "Beperk een getal tussen de twee opgegeven limieten (inclusief).";
|
|
221
|
-
Blockly.Msg["MATH_DIVISION_SYMBOL"] = "÷";
|
|
217
|
+
Blockly.Msg["MATH_DIVISION_SYMBOL"] = "÷";
|
|
222
218
|
Blockly.Msg["MATH_IS_DIVISIBLE_BY"] = "is deelbaar door";
|
|
223
219
|
Blockly.Msg["MATH_IS_EVEN"] = "is even";
|
|
224
220
|
Blockly.Msg["MATH_IS_NEGATIVE"] = "is negatief";
|
|
@@ -230,7 +226,7 @@ Blockly.Msg["MATH_IS_WHOLE"] = "is geheel getal";
|
|
|
230
226
|
Blockly.Msg["MATH_MODULO_HELPURL"] = "https://nl.wikipedia.org/wiki/Modulair_rekenen";
|
|
231
227
|
Blockly.Msg["MATH_MODULO_TITLE"] = "restgetal van %1 ÷ %2";
|
|
232
228
|
Blockly.Msg["MATH_MODULO_TOOLTIP"] = "Geeft het restgetal van het resultaat van de deling van de twee getallen.";
|
|
233
|
-
Blockly.Msg["MATH_MULTIPLICATION_SYMBOL"] = "×";
|
|
229
|
+
Blockly.Msg["MATH_MULTIPLICATION_SYMBOL"] = "×";
|
|
234
230
|
Blockly.Msg["MATH_NUMBER_HELPURL"] = "https://nl.wikipedia.org/wiki/Getal_%28wiskunde%29";
|
|
235
231
|
Blockly.Msg["MATH_NUMBER_TOOLTIP"] = "Een getal.";
|
|
236
232
|
Blockly.Msg["MATH_ONLIST_HELPURL"] = ""; // untranslated
|
|
@@ -250,7 +246,7 @@ Blockly.Msg["MATH_ONLIST_TOOLTIP_MODE"] = "Geeft een lijst van de meest voorkome
|
|
|
250
246
|
Blockly.Msg["MATH_ONLIST_TOOLTIP_RANDOM"] = "Geeft een willekeurig item uit de lijst terug.";
|
|
251
247
|
Blockly.Msg["MATH_ONLIST_TOOLTIP_STD_DEV"] = "Geeft de standaardafwijking van de lijst.";
|
|
252
248
|
Blockly.Msg["MATH_ONLIST_TOOLTIP_SUM"] = "Geeft de som van alle getallen in de lijst.";
|
|
253
|
-
Blockly.Msg["MATH_POWER_SYMBOL"] = "^";
|
|
249
|
+
Blockly.Msg["MATH_POWER_SYMBOL"] = "^";
|
|
254
250
|
Blockly.Msg["MATH_RANDOM_FLOAT_HELPURL"] = "https://nl.wikipedia.org/wiki/Toevalsgenerator";
|
|
255
251
|
Blockly.Msg["MATH_RANDOM_FLOAT_TITLE_RANDOM"] = "willekeurige fractie";
|
|
256
252
|
Blockly.Msg["MATH_RANDOM_FLOAT_TOOLTIP"] = "Geeft een willekeurige fractie tussen 0.0 (inclusief) en 1.0 (exclusief).";
|
|
@@ -272,7 +268,7 @@ Blockly.Msg["MATH_SINGLE_TOOLTIP_LOG10"] = "Geeft het logaritme basis 10 van een
|
|
|
272
268
|
Blockly.Msg["MATH_SINGLE_TOOLTIP_NEG"] = "Geeft de negatief van een getal.";
|
|
273
269
|
Blockly.Msg["MATH_SINGLE_TOOLTIP_POW10"] = "Geeft 10 tot de macht van een getal.";
|
|
274
270
|
Blockly.Msg["MATH_SINGLE_TOOLTIP_ROOT"] = "Geeft de wortel van een getal.";
|
|
275
|
-
Blockly.Msg["MATH_SUBTRACTION_SYMBOL"] = "-";
|
|
271
|
+
Blockly.Msg["MATH_SUBTRACTION_SYMBOL"] = "-";
|
|
276
272
|
Blockly.Msg["MATH_TRIG_ACOS"] = "acos";
|
|
277
273
|
Blockly.Msg["MATH_TRIG_ASIN"] = "asin";
|
|
278
274
|
Blockly.Msg["MATH_TRIG_ATAN"] = "arctan";
|
|
@@ -312,7 +308,7 @@ Blockly.Msg["PROCEDURES_DEFRETURN_RETURN"] = "uitvoeren";
|
|
|
312
308
|
Blockly.Msg["PROCEDURES_DEFRETURN_TOOLTIP"] = "Maakt een functie met een uitvoer.";
|
|
313
309
|
Blockly.Msg["PROCEDURES_DEF_DUPLICATE_WARNING"] = "Waarschuwing: deze functie heeft parameters met dezelfde naam.";
|
|
314
310
|
Blockly.Msg["PROCEDURES_HIGHLIGHT_DEF"] = "Accentueer functiedefinitie";
|
|
315
|
-
Blockly.Msg["PROCEDURES_IFRETURN_HELPURL"] = "http://c2.com/cgi/wiki?GuardClause";
|
|
311
|
+
Blockly.Msg["PROCEDURES_IFRETURN_HELPURL"] = "http://c2.com/cgi/wiki?GuardClause";
|
|
316
312
|
Blockly.Msg["PROCEDURES_IFRETURN_TOOLTIP"] = "Als de eerste waarde \"waar\" is, geef dan de tweede waarde terug.";
|
|
317
313
|
Blockly.Msg["PROCEDURES_IFRETURN_WARNING"] = "Waarschuwing: dit blok mag alleen gebruikt worden binnen de definitie van een functie.";
|
|
318
314
|
Blockly.Msg["PROCEDURES_MUTATORARG_TITLE"] = "invoernaam:";
|
|
@@ -323,10 +319,10 @@ Blockly.Msg["REDO"] = "Opnieuw";
|
|
|
323
319
|
Blockly.Msg["REMOVE_COMMENT"] = "Opmerking verwijderen";
|
|
324
320
|
Blockly.Msg["RENAME_VARIABLE"] = "Variabele hernoemen...";
|
|
325
321
|
Blockly.Msg["RENAME_VARIABLE_TITLE"] = "Alle variabelen \"%1\" hernoemen naar:";
|
|
326
|
-
Blockly.Msg["TEXT_APPEND_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification";
|
|
322
|
+
Blockly.Msg["TEXT_APPEND_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification";
|
|
327
323
|
Blockly.Msg["TEXT_APPEND_TITLE"] = "voor%1 voeg tekst toe van %2";
|
|
328
324
|
Blockly.Msg["TEXT_APPEND_TOOLTIP"] = "Voeg tekst toe aan de variabele \"%1\".";
|
|
329
|
-
Blockly.Msg["TEXT_CHANGECASE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#adjusting-text-case";
|
|
325
|
+
Blockly.Msg["TEXT_CHANGECASE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#adjusting-text-case";
|
|
330
326
|
Blockly.Msg["TEXT_CHANGECASE_OPERATOR_LOWERCASE"] = "naar kleine letters";
|
|
331
327
|
Blockly.Msg["TEXT_CHANGECASE_OPERATOR_TITLECASE"] = "naar Hoofdletter Per Woord";
|
|
332
328
|
Blockly.Msg["TEXT_CHANGECASE_OPERATOR_UPPERCASE"] = "naar HOOFDLETTERS";
|
|
@@ -334,7 +330,7 @@ Blockly.Msg["TEXT_CHANGECASE_TOOLTIP"] = "Geef een kopie van de tekst met verand
|
|
|
334
330
|
Blockly.Msg["TEXT_CHARAT_FIRST"] = "haal eerste letter op";
|
|
335
331
|
Blockly.Msg["TEXT_CHARAT_FROM_END"] = "haal letter # op vanaf einde";
|
|
336
332
|
Blockly.Msg["TEXT_CHARAT_FROM_START"] = "haal letter # op";
|
|
337
|
-
Blockly.Msg["TEXT_CHARAT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-text";
|
|
333
|
+
Blockly.Msg["TEXT_CHARAT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-text";
|
|
338
334
|
Blockly.Msg["TEXT_CHARAT_LAST"] = "haal laatste letter op";
|
|
339
335
|
Blockly.Msg["TEXT_CHARAT_RANDOM"] = "haal willekeurige letter op";
|
|
340
336
|
Blockly.Msg["TEXT_CHARAT_TAIL"] = ""; // untranslated
|
|
@@ -349,31 +345,31 @@ Blockly.Msg["TEXT_CREATE_JOIN_TOOLTIP"] = "Toevoegen, verwijderen of volgorde wi
|
|
|
349
345
|
Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_END"] = "van letter # tot einde";
|
|
350
346
|
Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_START"] = "naar letter #";
|
|
351
347
|
Blockly.Msg["TEXT_GET_SUBSTRING_END_LAST"] = "naar laatste letter";
|
|
352
|
-
Blockly.Msg["TEXT_GET_SUBSTRING_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-a-region-of-text";
|
|
348
|
+
Blockly.Msg["TEXT_GET_SUBSTRING_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-a-region-of-text";
|
|
353
349
|
Blockly.Msg["TEXT_GET_SUBSTRING_INPUT_IN_TEXT"] = "in tekst";
|
|
354
350
|
Blockly.Msg["TEXT_GET_SUBSTRING_START_FIRST"] = "haal subtekst op van eerste letter";
|
|
355
351
|
Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_END"] = "haal subtekst op vanaf letter # vanaf einde";
|
|
356
352
|
Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_START"] = "haal subtekst op vanaf letter #";
|
|
357
353
|
Blockly.Msg["TEXT_GET_SUBSTRING_TAIL"] = ""; // untranslated
|
|
358
354
|
Blockly.Msg["TEXT_GET_SUBSTRING_TOOLTIP"] = "Geeft het opgegeven onderdeel van de tekst terug.";
|
|
359
|
-
Blockly.Msg["TEXT_INDEXOF_HELPURL"] = "https://github.com/google/blockly/wiki/Text#finding-text";
|
|
355
|
+
Blockly.Msg["TEXT_INDEXOF_HELPURL"] = "https://github.com/google/blockly/wiki/Text#finding-text";
|
|
360
356
|
Blockly.Msg["TEXT_INDEXOF_OPERATOR_FIRST"] = "zoek eerste voorkomen van tekst";
|
|
361
357
|
Blockly.Msg["TEXT_INDEXOF_OPERATOR_LAST"] = "zoek het laatste voorkomen van tekst";
|
|
362
358
|
Blockly.Msg["TEXT_INDEXOF_TITLE"] = "in tekst %1 %2 %3";
|
|
363
359
|
Blockly.Msg["TEXT_INDEXOF_TOOLTIP"] = "Geeft de index terug van het eerste of laatste voorkomen van de eerste tekst in de tweede tekst. Geeft %1 terug als de tekst niet gevonden is.";
|
|
364
|
-
Blockly.Msg["TEXT_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Text#checking-for-empty-text";
|
|
360
|
+
Blockly.Msg["TEXT_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Text#checking-for-empty-text";
|
|
365
361
|
Blockly.Msg["TEXT_ISEMPTY_TITLE"] = "%1 is leeg";
|
|
366
362
|
Blockly.Msg["TEXT_ISEMPTY_TOOLTIP"] = "Geeft \"waar\" terug, als de opgegeven tekst leeg is.";
|
|
367
|
-
Blockly.Msg["TEXT_JOIN_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-creation";
|
|
363
|
+
Blockly.Msg["TEXT_JOIN_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-creation";
|
|
368
364
|
Blockly.Msg["TEXT_JOIN_TITLE_CREATEWITH"] = "maak tekst met";
|
|
369
365
|
Blockly.Msg["TEXT_JOIN_TOOLTIP"] = "Maakt een stuk tekst door één of meer items samen te voegen.";
|
|
370
|
-
Blockly.Msg["TEXT_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification";
|
|
366
|
+
Blockly.Msg["TEXT_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification";
|
|
371
367
|
Blockly.Msg["TEXT_LENGTH_TITLE"] = "lengte van %1";
|
|
372
368
|
Blockly.Msg["TEXT_LENGTH_TOOLTIP"] = "Geeft het aantal tekens terug (inclusief spaties) in de opgegeven tekst.";
|
|
373
|
-
Blockly.Msg["TEXT_PRINT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#printing-text";
|
|
369
|
+
Blockly.Msg["TEXT_PRINT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#printing-text";
|
|
374
370
|
Blockly.Msg["TEXT_PRINT_TITLE"] = "tekst weergeven: %1";
|
|
375
371
|
Blockly.Msg["TEXT_PRINT_TOOLTIP"] = "Drukt de opgegeven tekst, getal of een andere waarde af.";
|
|
376
|
-
Blockly.Msg["TEXT_PROMPT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#getting-input-from-the-user";
|
|
372
|
+
Blockly.Msg["TEXT_PROMPT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#getting-input-from-the-user";
|
|
377
373
|
Blockly.Msg["TEXT_PROMPT_TOOLTIP_NUMBER"] = "Vraagt de gebruiker om een getal in te voeren.";
|
|
378
374
|
Blockly.Msg["TEXT_PROMPT_TOOLTIP_TEXT"] = "Vraagt de gebruiker om invoer.";
|
|
379
375
|
Blockly.Msg["TEXT_PROMPT_TYPE_NUMBER"] = "vraagt de gebruiker om een getal met de tekst";
|
|
@@ -386,7 +382,7 @@ Blockly.Msg["TEXT_REVERSE_MESSAGE0"] = "%1 omkeren";
|
|
|
386
382
|
Blockly.Msg["TEXT_REVERSE_TOOLTIP"] = "Keert de volgorde van de tekens in de tekst om.";
|
|
387
383
|
Blockly.Msg["TEXT_TEXT_HELPURL"] = "https://nl.wikipedia.org/wiki/String_%28informatica%29";
|
|
388
384
|
Blockly.Msg["TEXT_TEXT_TOOLTIP"] = "Een letter, woord of een regel tekst.";
|
|
389
|
-
Blockly.Msg["TEXT_TRIM_HELPURL"] = "https://github.com/google/blockly/wiki/Text#trimming-removing-spaces";
|
|
385
|
+
Blockly.Msg["TEXT_TRIM_HELPURL"] = "https://github.com/google/blockly/wiki/Text#trimming-removing-spaces";
|
|
390
386
|
Blockly.Msg["TEXT_TRIM_OPERATOR_BOTH"] = "spaties van beide kanten afhalen van";
|
|
391
387
|
Blockly.Msg["TEXT_TRIM_OPERATOR_LEFT"] = "spaties van de linkerkant verwijderen van";
|
|
392
388
|
Blockly.Msg["TEXT_TRIM_OPERATOR_RIGHT"] = "spaties van de rechterkant verwijderen van";
|
|
@@ -396,11 +392,11 @@ Blockly.Msg["UNDO"] = "Ongedaan maken";
|
|
|
396
392
|
Blockly.Msg["UNNAMED_KEY"] = "zonder naam";
|
|
397
393
|
Blockly.Msg["VARIABLES_DEFAULT_NAME"] = "item";
|
|
398
394
|
Blockly.Msg["VARIABLES_GET_CREATE_SET"] = "Maak \"verander %1\"";
|
|
399
|
-
Blockly.Msg["VARIABLES_GET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#get";
|
|
395
|
+
Blockly.Msg["VARIABLES_GET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#get";
|
|
400
396
|
Blockly.Msg["VARIABLES_GET_TOOLTIP"] = "Geeft de waarde van deze variabele.";
|
|
401
397
|
Blockly.Msg["VARIABLES_SET"] = "stel %1 in op %2";
|
|
402
398
|
Blockly.Msg["VARIABLES_SET_CREATE_GET"] = "Maak 'opvragen van %1'";
|
|
403
|
-
Blockly.Msg["VARIABLES_SET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#set";
|
|
399
|
+
Blockly.Msg["VARIABLES_SET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#set";
|
|
404
400
|
Blockly.Msg["VARIABLES_SET_TOOLTIP"] = "Verandert de waarde van de variabele naar de waarde van de invoer.";
|
|
405
401
|
Blockly.Msg["VARIABLE_ALREADY_EXISTS"] = "Er bestaat al een variabele met de naam \"%1\".";
|
|
406
402
|
Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_ANOTHER_TYPE"] = "Een variabele met de naam '%1' bestaat al voor een ander soort variabele: '%2'.";
|
|
@@ -435,6 +431,4 @@ Blockly.Msg["VARIABLES_HUE"] = "330";
|
|
|
435
431
|
Blockly.Msg["TEXTS_HUE"] = "160";
|
|
436
432
|
Blockly.Msg["PROCEDURES_HUE"] = "290";
|
|
437
433
|
Blockly.Msg["COLOUR_HUE"] = "20";
|
|
438
|
-
Blockly.Msg["VARIABLES_DYNAMIC_HUE"] = "310";
|
|
439
|
-
return Blockly.Msg;
|
|
440
|
-
}));
|
|
434
|
+
Blockly.Msg["VARIABLES_DYNAMIC_HUE"] = "310";
|