Skip to content

Translations #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
0af8051
Possible update
Pthomas2 May 20, 2020
4a135fb
Merge pull request #1 from Pthomas2/Pthomas2-patch-1
Pthomas2 May 20, 2020
f6602db
update
Pthomas2 May 21, 2020
03637ce
fixed lines 28-41
Pthomas2 May 22, 2020
40ce976
added language changes 102 - 105
Pthomas2 May 23, 2020
64d4e85
fixed language change
Pthomas2 May 23, 2020
243df2c
changed run code language change spot
Pthomas2 May 26, 2020
4095bed
Phrases changed
Pthomas2 May 28, 2020
f062801
Fixed Phrases
Pthomas2 May 28, 2020
976b0ed
removed update toolbox recursive call
Pthomas2 May 28, 2020
4a20bbc
added the update toolbox function back
Pthomas2 May 28, 2020
72f1293
completed language change
Pthomas2 May 28, 2020
c02e99a
Added some translations
Pthomas2 May 28, 2020
ae15bcb
Added More Translations
Pthomas2 May 28, 2020
2707dae
added id's and names
Pthomas2 May 28, 2020
ec95c63
Merge branch 'master' into master
Pthomas2 May 28, 2020
c003472
Delete and replace Confirmation message variable name change
Pthomas2 May 29, 2020
1384b4c
Confirm message change
Pthomas2 May 29, 2020
f790820
Confirm Message Change
Pthomas2 May 29, 2020
a6be759
Word change
Pthomas2 May 29, 2020
3dbd78b
Rewritten to initial HTML words
Pthomas2 May 29, 2020
f26bf6b
Added back sentence endings
Pthomas2 Jun 1, 2020
32ba82a
textual changes
Pthomas2 Jun 1, 2020
f1b22f9
confirm delete replace message change
Pthomas2 Jun 1, 2020
adabf24
SudoJS to JS button text change
Pthomas2 Jun 1, 2020
8ad4168
confirm message variable name change
Pthomas2 Jun 1, 2020
dfe80a0
added length text
Pthomas2 Jun 1, 2020
f4dc18e
added length text
Pthomas2 Jun 1, 2020
70e51a3
added t2c length block
Pthomas2 Jun 1, 2020
057d376
added t2c length blockj
Pthomas2 Jun 1, 2020
07af915
added length code
Pthomas2 Jun 1, 2020
b2fcaa3
added length code
Pthomas2 Jun 1, 2020
66f0394
Update text-exact.js
Pthomas2 Jun 1, 2020
2657f2f
Update text.js
Pthomas2 Jun 1, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update text-exact.js
added convert to pure js block for t2c length block
  • Loading branch information
Pthomas2 committed Jun 1, 2020
commit 66f03941cd86c7c9527c24a6b2007bbb45e42cd4
1 change: 1 addition & 0 deletions block-converters/javascript/text-exact.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ function convertTextBlocksToJSBlocks(block) {
else if(block.type === "t2c_text_indexof") replaceWithBlock(block, workspace.newBlock("js_text_indexof"), true);
else if(block.type === "t2c_text_charat") replaceWithBlock(block, workspace.newBlock("js_text_charat"), true);
else if(block.type === "t2c_text_getsubstring") replaceWithBlock(block, workspace.newBlock("js_text_getsubstring"), true);
else if(block.type === "t2c_text_length") replaceWithBlock(block, workspace.newBlock("text_length"), true);

else if(block.type === "t2c_text_before") {
var needleBlock = block.getInputTargetBlock("SUB");
Expand Down