Skip to content

Commit

Permalink
Merge pull request #2862 from entrylabs/issue/8810
Browse files Browse the repository at this point in the history
Issue/8810
  • Loading branch information
kimorkim authored Nov 11, 2024
2 parents 23434cc + 8fbf9d1 commit 925dc56
Show file tree
Hide file tree
Showing 6 changed files with 282 additions and 48 deletions.
67 changes: 37 additions & 30 deletions extern/lang/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -6203,22 +6203,32 @@ Lang.Helper = {
'Reports the position value of the selected face area among the faces in the input order. If it is not recognized, it is outputted as 0 unconditionally. (Left eye, Right eye, Nose, Left mouse, Right mouse, Top Lip, Bottom Lip) (IE / iOS Not Supported)',
video_body_part_coord:
'Reports number of human detected on the video screen. (Face, Right shoulder, Right elbow, Right wrist, Left shoulder, Left elbow, Left wrist, Right hip, Right knee, Right ankle, Left hip, Left knee, Left ankle) (IE / iOS Not Supported)',
append_row_to_table: 'Adds a row(col) to the end location of the selected table.',
append_row_to_table:
'Adds a row(column) to the end of the selected table. All cell values ​​in the added row(column) are 0.',
insert_row_to_table:
'Inserts a row(col) to the location of the input value on the selected table.',
delete_row_from_table:
'Deletes the row(col) at the location of input value from the selected table.',
'Adds a row(column) to the entered order of the selected table. All cell values ​​in the added row(column) are 0. The rows(columns) after the added row(column) are pushed back one by one.',
delete_row_from_table: 'Deletes the row(column) in the entered order of the selected table.',
set_value_from_table:
'Replaces value of selected attribute at the location of the input value to the input value.',
get_table_count: 'Reports the number of rows or attribute on the selected table.',
'Replaces the attribute of the entered row with the values ​​entered in the selected table.',
save_current_table:
'Save the table as it is. Even if you stop the project, your changes in the table are maintained.',
get_table_count: 'The number of rows(columns) in the selected table.',
get_value_from_table:
'Reports the value of selected attribute at the location of the input value from the selected table.',
'The selected attribute value of the entered row in the selected table. Instead of an attribute value block, you can also combine a value block (meaning a column).',
get_value_from_last_row:
'The selected attribute value of the last row in the selected table. Instead of an attribute value block, you can also combine a value block (meaning a column).',
calc_values_from_table:
'Reports calculated value of the selected attributes in the selected table. (sum, maximum, minimum, average, standard deviation)',
open_table_chart: 'Open the chart of the selected table.',
'Reports calculated value of the selected attributes in the selected table. (Sum, Maximum, Minimum, Average, Standard deviation, Median)',
open_table: 'Open the window of the selected table.',
open_table_wait: 'Open the window of the selected table for the seconds entered.',
open_table_chart: 'Opens the chart of the selected table.',
close_table_chart: 'Close the table chart.',
get_coefficient:
'Correlation coefficient between two attributes in the selected table. The closer the correlation coefficient is to 1(-1), the stronger the positive (negative) linear correlation.',
'Correlation coefficient between two attributes in the selected table. The closer the correlation coefficient is to 1 (-1), the stronger the positive (negative) linear correlation.',
set_value_from_cell: 'Replaces the cell with the values ​​entered in the selected table.',
get_value_from_cell: 'The cell value in the selected table.',
get_value_v_lookup:
'Searches for a value in selected column of a table and returns a corresponding value from a specified column in the same row.',
change_rgb_to_hex:
'Reports the value of the entered red, green, and blue values converted to HEX value.',
change_hex_to_rgb: 'Reports the HEX value entered converted to either red, green, or blue.',
Expand Down Expand Up @@ -6289,8 +6299,6 @@ Lang.Helper = {
text_change_font: 'Changes the text of the box to the selected font.',
text_change_font_color: 'Changes the text in the box to the selected color.',
text_change_bg_color: 'Changes the text box to the selected background color.',
get_value_from_last_row:
'The selected attribute value of the last row in the selected table. Instead of an attribute value block, you can also combine a value block (meaning a row).',
insert_data_for_test: 'Enter data and recognize it as a trained model.',
video_capture_for_image_test:
'Classifies or stops image data taken through the camera to the model you learned.',
Expand Down Expand Up @@ -6386,10 +6394,6 @@ Lang.Helper = {
target_project: 'Target project',
study_goal: 'Learning objectives',
show_hint: 'Hints',
save_current_table:
'Keep the table as it is. Even if you stop the project, your changes in the table are maintained.',
open_table: 'Open the window of the selected table.',
open_table_wait: 'Open the window of the selected table for the seconds entered.',
};
Lang.AiLearning = {
equation: 'Equation',
Expand Down Expand Up @@ -7215,16 +7219,23 @@ Lang.template = {
text_prepend: 'Add %1 in front of that %2',
text_flush: 'Remove all text %1',
analizyDataAddButton: '%1',
append_row_to_table: 'Add a %2 to the table %1 %3',
insert_row_to_table: 'Insert %3 to %2th row from the %1 %4',
delete_row_from_table: 'Remove %2th %3 from table %1 %4',
set_value_from_table: 'Change %3 in the %1 %2th row to %4 %5',
get_table_count: 'length of %2 in the %1',
get_value_from_table: 'value of the %3 in %2th row of the %1',
calc_values_from_table: '%3 of the %2 in the %1',
open_table_chart: 'Open the chart of the %1 %2',
close_table_chart: 'Close the table chart',
get_coefficient: 'Correlation coefficient between %2and %3 in table %1',
append_row_to_table: 'Add a %2 to table %1 %3',
insert_row_to_table: 'Insert %3 to %2 th row in table %1 %4',
delete_row_from_table: 'Remove %2 th %3 in table %1 %4',
set_value_from_table: 'Change %3 in table %1 %2 th row to %4 %5',
save_current_table: 'Save table %1 as it is %2',
get_table_count: 'number of %2 in table %1',
get_value_from_table: '%3 value of %2 th row in table %1',
get_value_from_last_row: '%2 value of the last row in table %1',
calc_values_from_table: '%3 of %2 in table %1',
open_table: 'Open table %1 window %2',
open_table_wait: 'Open table %1 window for %2 second(s) %3',
open_table_chart: 'Open chart %2 of table %1 %3',
close_table_chart: 'Close table chart %1',
get_coefficient: 'correlation coefficient between %2 and %3 in table %1',
set_value_from_cell: 'Change %2 cell in table %1 to %3 %4',
get_value_from_cell: 'value of %2 cell in table %1',
get_value_v_lookup: '%4 value of the row that %2 is %3 in table %1',
variableAddButton: '%1',
listAddButton: '%1',
change_variable: 'Plus to %1 by %2 %3',
Expand Down Expand Up @@ -7619,10 +7630,6 @@ Lang.template = {
text_change_font: 'Change font to %1 %2',
text_change_font_color: 'Change text color to %1 %2',
text_change_bg_color: 'Change background color to %1 %2',
save_current_table: 'Keep the table %1 as it is %2',
get_value_from_last_row: 'value of the %2 in last row of the %1',
open_table: 'Open table %1 window %2',
open_table_wait: 'Open table %1 window for %2 second(s) %3',
learning_title_image: '%1',
learning_title_speech: '%1',
learning_title_text: '%1',
Expand Down
33 changes: 20 additions & 13 deletions extern/lang/ko.js
Original file line number Diff line number Diff line change
Expand Up @@ -6593,17 +6593,25 @@ Lang.Helper = {
'선택한 테이블의 입력한 순서에 행(열)을 추가합니다. 추가된 행(열)의 모든 셀 값은 0입니다. 추가된 행(열) 뒤에 있는 행(열)들은 순서가 하나씩 밀립니다.',
delete_row_from_table: '선택한 테이블의 입력한 순서에 있는 행(열)을 삭제합니다.',
set_value_from_table: '선택한 테이블에서 입력한 행의 속성을 입력한 값으로 바꿉니다.',
save_current_table:
'테이블을 현재 상태로 남깁니다. 작품을 정지해도 테이블에서 변경된 내용이 유지됩니다.',
get_table_count: '선택한 테이블의 행(열) 개수입니다.',
get_value_from_table:
'선택한 테이블에서 입력한 행의 속성 값입니다. 속성 값 블록 대신 (행을 의미하는) 값 블록을 결합해 사용할 수도 있습니다.',
'선택한 테이블에서 입력한 행의 속성 값입니다.\n속성 값 블록 대신 (열을 의미하는) 값 블록을 결합해 사용할 수도 있습니다.',
get_value_from_last_row:
'선택한 테이블에서 마지막 행의 선택한 속성 값입니다. 속성 값 블록 대신 (행을 의미하는) 값 블록을 결합해 사용할 수도 있습니다.',
'선택한 테이블에서 마지막 행의 선택한 속성 값입니다.\n속성 값 블록 대신 (열을 의미하는) 값 블록을 결합해 사용할 수도 있습니다.',
calc_values_from_table:
'선택한 테이블에서 선택한 속성들에 대한 요약통계량입니다. (합, 최댓값, 최솟값, 평균값, 표준편차)',
open_table_chart: '선택한 테이블의 차트창을 엽니다.',
'선택한 테이블에서 선택한 속성들에 대한 요약통계량입니다. (합, 최댓값, 최솟값, 평균값, 표준편차, 중앙값)',
open_table: '선택한 테이블의 테이블 창을 엽니다.',
open_table_wait: '입력한 시간 동안 선택한 테이블의 테이블 창을 엽니다.',
open_table_chart: '선택한 테이블의 차트 창을 엽니다.',
close_table_chart: '열려있는 테이블 차트 창을 닫습니다.',
get_coefficient:
'선택한 테이블에서 두 속성 사이의 상관계수입니다. 상관계수가 1(-1)에 가까울 수록 강한 양(음)의 선형 상관관계를 갖습니다.',
set_value_from_cell: '테이블에서 선택한 셀을 입력한 값으로 바꿉니다.',
get_value_from_cell: '테이블에서 선택한 셀의 값입니다.',
get_value_v_lookup:
'테이블에서 선택한 열이 특정한 값인 행을 찾고, 그 행의 다른 열 값을 반환합니다.',
insert_data_for_test: '데이터를 입력하고 학습한 모델로 인식합니다.',
insert_text_block_for_test: '데이터를 입력하고 학습한 모델로 인식합니다.',
test_result:
Expand Down Expand Up @@ -6884,10 +6892,6 @@ Lang.Helper = {
target_project: '목표 작품 확인하기',
study_goal: '학습 목표 확인하기',
show_hint: '힌트보기',
save_current_table:
'테이블을 현재 상태로 남깁니다. 작품을 정지해도 테이블에서 변경된 내용이 유지됩니다.',
open_table: '선택한 테이블의 테이블 창을 엽니다.',
open_table_wait: '입력한 시간 동안 선택한 테이블의 테이블 창을 엽니다.',
};
Lang.Category = {
entrybot_friends: '엔트리봇 친구들',
Expand Down Expand Up @@ -7789,13 +7793,19 @@ Lang.template = {
insert_row_to_table: '테이블 %1 %2 번째에 %3 추가하기 %4',
delete_row_from_table: '테이블 %1 %2번째 %3 삭제하기 %4',
set_value_from_table: '테이블 %1 %2번째 행의 %3을(를) %4(으)로 바꾸기 %5',
save_current_table: '테이블 %1 을(를) 현재 상태로 남기기 %2',
get_table_count: '테이블 %1의 %2 개수',
get_value_from_table: '테이블 %1 %2번째 행의 %3 값',
get_value_from_last_row: '테이블 %1 마지막 행의 %2 값',
calc_values_from_table: '테이블 %1 %2의 %3',
open_table_chart: '테이블 %1의 %2 차트 창 열기 %3',
open_table: '테이블 %1 창 열기 %2',
open_table_wait: '테이블 %1 창을 %2 초 동안 열기 %3',
open_table_chart: '테이블 %1 의 %2 차트 창 열기 %3',
close_table_chart: '테이블 차트 창 닫기 %1',
get_coefficient: '테이블 %1 %2과(와) %3의 상관계수',
get_coefficient: '테이블 %1 %2 과(와) %3 의 상관계수',
set_value_from_cell: '테이블 %1 의 %2 셀 값을 %3 (으)로 바꾸기 %4',
get_value_from_cell: '테이블 %1 의 %2 셀 값',
get_value_v_lookup: '테이블 %1 의 %2 이(가) %3 인 행의 %4 값',
variableAddButton: '%1',
listAddButton: '%1',
change_variable: '%1 에 %2 만큼 더하기 %3',
Expand Down Expand Up @@ -8191,9 +8201,6 @@ Lang.template = {
function_create_value: '함수 정의하기 %1 %2 %3 결괏값을 %4 (으)로 정하기',
run: '',
reverse_of_string: '%1 %2 %3',
save_current_table: '테이블 %1 을(를) 현재 상태로 남기기 %2',
open_table: '테이블 %1 창 열기 %2',
open_table_wait: '테이블 %1 창을 %2 초 동안 열기 %3',
video_capture_for_image_test: '비디오 화면을 학습한 모델로 분류 %1 %2',
};
Lang.TextCoding = {
Expand Down
3 changes: 3 additions & 0 deletions extern/util/static.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,9 @@ EntryStatic.getAllBlocks = function () {
'open_table_chart',
'close_table_chart',
'get_coefficient',
'set_value_from_cell',
'get_value_from_cell',
'get_value_v_lookup',
],
},
{
Expand Down
Loading

0 comments on commit 925dc56

Please sign in to comment.