Skip to content

Commit ad0fedc

Browse files
committed
lang: 신규 판단블록 다국어 추가
1 parent 210b688 commit ad0fedc

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

src/renderer/resources/lang/en.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1351,6 +1351,10 @@
13511351
"XBOT_analog": "Analog",
13521352
"XBOT_CDS": "Light Sensor Value",
13531353
"XBOT_MIC": "Mic Sensor Value",
1354+
"yell": "yell",
1355+
"desktop": "desktop",
1356+
"tablet": "tablet",
1357+
"smartphone": "smartphone",
13541358
"XBOT_analog0": "Analog PIN0 Value",
13551359
"XBOT_analog1": "Analog PIN1 Value",
13561360
"XBOT_analog2": "Analog PIN2 Value",
@@ -7185,6 +7189,9 @@
71857189
"boolean_and": "Checks whether both conditions are true.",
71867190
"boolean_or": "Checks whether at least one of the two conditions is true.",
71877191
"boolean_not": "Changes the input conditions to its opposite.\n(If the input condition is true, it returns 'False'. And if the input condition is false, it returns 'True'.)",
7192+
"is_boost_mode": "Checks whether the boost mode is turned on or not.\nIf the boost mode is on, it is judged as 'True'.",
7193+
"is_current_device_type": "If the device that runs the project is the selected device, it is judged as 'true'.",
7194+
"is_touch_supported": "If the device that runs the project is a touch screen, it is judged as 'true'.",
71887195
"calc_basic": "Adds two input numbers.",
71897196
"calc_rand": "Selects a random value between the two input numbers.",
71907197
"get_x_coordinate": "Reports the x-position value of the object.",
@@ -8740,6 +8747,8 @@
87408747
"boolean_or": "%1 %2 %3",
87418748
"boolean_not": "%1 %2 %3",
87428749
"is_boost_mode": "%1",
8750+
"is_current_device_type": "is the project running on %1 ?",
8751+
"is_touch_supported": "touch screen?",
87438752
"true_or_false": "%1",
87448753
"True": "%1 ",
87458754
"False": "%1 ",

src/renderer/resources/lang/ko.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,9 @@
383383
"speak": "말하기",
384384
"think": "생각하기",
385385
"yell": "외치기",
386+
"desktop": "데스크톱",
387+
"tablet": "태블릿",
388+
"smartphone": "스마트폰",
386389
"block_hi": "안녕!",
387390
"LOOKS_change_shape_next": "다음",
388391
"LOOKS_change_shape_prev": "이전",
@@ -2289,6 +2292,8 @@
22892292
"boolean_and_or": "그리고 : 두 판단이 모두 참인 경우 ‘참’으로 판단합니다.\n또는 : 두 판단 중 하나라도 참이 있는 경우 ‘참’으로 판단합니다.",
22902293
"boolean_not": "해당 판단이 참이면 거짓, 거짓이면 참으로 만듭니다.",
22912294
"is_boost_mode": "부스트모드가 켜져 있으면 ‘참’으로 판단합니다.",
2295+
"is_current_device_type": "작품을 실행하는 기기가 선택한 기기라면 '참'으로 판단합니다.",
2296+
"is_touch_supported": "작품을 실행하는 기기에서 화면을 터치할 수 있다면 '참'으로 판단합니다.",
22922297
"calc_basic": "입력한 두 수의 사칙연산 값입니다.\n+ : 입력한 두 수를 더한 값입니다.\n- : 입력한 두 수를 뺀 값입니다.\n* : 입력한 두 수를 곱한 값입니다.\n/ : 입력한 두 수를 나눈 값입니다.",
22932298
"calc_rand": "입력한 두 수 사이에서 선택된 무작위 수 값입니다. (두 수 모두 정수를 입력한 경우 정수가, 두 수 중 하나라도 소수를 입력한 경우 소숫점 둘째 자리의 소수 값이 선택됩니다.)",
22942299
"coordinate_mouse": "마우스 포인터의 x 또는 y 좌푯값입니다.",
@@ -2890,6 +2895,8 @@
28902895
"False": "%1 ",
28912896
"boolean_not": "%1 %2 %3",
28922897
"is_boost_mode": "%1",
2898+
"is_current_device_type": "%1 에서 실행하는가?",
2899+
"is_touch_supported": "화면을 터치할 수 있는가?",
28932900
"calc_basic": "%1 %2 %3",
28942901
"calc_rand": "%1 %2 %3 %4 %5",
28952902
"coordinate_mouse": "%1 %2 %3",

0 commit comments

Comments
 (0)