Skip to content
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

CB-5355 change panels naming #2813

Open
wants to merge 3 commits into
base: devel
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* you may not use this file except in compliance with the License.
*/
export default [
['plugin_data_viewer_result_trace_details', 'Result details'],
['plugin_data_viewer_result_trace_details', 'Details'],
['plugin_data_viewer_result_trace_details_tooltip', 'Open Result details'],
['plugin_data_viewer_result_trace_no_data_placeholder', 'No trace details were found'],
];
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* you may not use this file except in compliance with the License.
*/
export default [
['plugin_data_viewer_result_trace_details', 'Result details'],
['plugin_data_viewer_result_trace_details', 'Details'],
['plugin_data_viewer_result_trace_details_tooltip', 'Open Result details'],
['plugin_data_viewer_result_trace_no_data_placeholder', 'No trace details were found'],
];
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* you may not use this file except in compliance with the License.
*/
export default [
['plugin_data_viewer_result_trace_details', 'Result details'],
['plugin_data_viewer_result_trace_details', 'Details'],
['plugin_data_viewer_result_trace_details_tooltip', 'Open Result details'],
['plugin_data_viewer_result_trace_no_data_placeholder', 'No trace details were found'],
];
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* you may not use this file except in compliance with the License.
*/
export default [
['plugin_data_viewer_result_trace_details', 'Детализация результата'],
['plugin_data_viewer_result_trace_details', 'Детали'],
['plugin_data_viewer_result_trace_details_tooltip', 'Открыть детали результата'],
['plugin_data_viewer_result_trace_no_data_placeholder', 'Детали результата не найдены'],
];
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* you may not use this file except in compliance with the License.
*/
export default [
['plugin_data_viewer_result_trace_details', 'Result details'],
['plugin_data_viewer_result_trace_details', 'Details'],
['plugin_data_viewer_result_trace_details_tooltip', 'Open Result details'],
['plugin_data_viewer_result_trace_no_data_placeholder', 'No trace details were found'],
];
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export class SQLCodeEditorPanelService {
key: 'sql-editor',
icon: '/icons/sql_script_sm.svg',
name: 'sql_editor_script_editor',
title: 'sql_editor_script_editor_tooltip',
isHidden: (_, props) => props?.data.dataSource?.hasFeature(ESqlDataSourceFeatures.script) !== true,
panel: () => SQLCodeEditorPanel,
});
Expand Down
3 changes: 2 additions & 1 deletion webapp/packages/plugin-sql-editor/src/locales/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ export default [
['sql_editor_settings_insert_table_aliases_name', 'Insert table aliases (in FROM clause)'],
['sql_editor_settings_insert_table_aliases_desc', 'Automatically inserts table aliases'],
['sql_editor_menu', 'SQL Editor'],
['sql_editor_script_editor', 'SQL Editor'],
['sql_editor_script_editor', 'SQL'],
['sql_editor_script_editor_tooltip', 'Open SQL Editor'],
['sql_editor_alias_loading_error', 'Error occurred while loading node alias'],
['sql_editor_restore_message', 'Do you want to restore the connection?'],
['sql_editor_restore', 'Restore'],
Expand Down
3 changes: 2 additions & 1 deletion webapp/packages/plugin-sql-editor/src/locales/it.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ export default [
['sql_editor_settings_insert_table_aliases_name', 'Insert table aliases (in FROM clause)'],
['sql_editor_settings_insert_table_aliases_desc', 'Automatically inserts table aliases'],
['sql_editor_menu', 'SQL Editor'],
['sql_editor_script_editor', 'SQL Editor'],
['sql_editor_script_editor', 'SQL'],
['sql_editor_script_editor_tooltip', 'Open SQL Editor'],
['sql_editor_alias_loading_error', 'Error occurred while loading node alias'],
['sql_editor_restore_message', 'Do you want to restore the connection?'],
['sql_editor_restore', 'Restore'],
Expand Down
3 changes: 2 additions & 1 deletion webapp/packages/plugin-sql-editor/src/locales/ru.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ export default [
['sql_editor_settings_insert_table_aliases_name', 'Вставлять алиасы таблиц (в FROM условии)'],
['sql_editor_settings_insert_table_aliases_desc', 'Автоматически вставляет алиасы для таблиц'],
['sql_editor_menu', 'SQL Редактор'],
['sql_editor_script_editor', 'Редактор SQL'],
['sql_editor_script_editor', 'SQL'],
['sql_editor_script_editor_tooltip', 'Открыть редактор SQL'],
['sql_editor_alias_loading_error', 'Возникла ошибка при загрузке псевдонима'],
['sql_editor_restore_message', 'Вы хотите восстановить подключение?'],
['sql_editor_restore', 'Восстановить'],
Expand Down
3 changes: 2 additions & 1 deletion webapp/packages/plugin-sql-editor/src/locales/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ export default [
['sql_editor_settings_insert_table_aliases_name', 'Insert table aliases (in FROM clause)'],
['sql_editor_settings_insert_table_aliases_desc', 'Automatically inserts table aliases'],
['sql_editor_menu', 'SQL编辑器'],
['sql_editor_script_editor', 'SQL Editor'],
['sql_editor_script_editor', 'SQL'],
['sql_editor_script_editor_tooltip', 'Open SQL Editor'],
['sql_editor_alias_loading_error', 'Error occurred while loading node alias'],
['sql_editor_restore_message', 'Do you want to restore the connection?'],
['sql_editor_restore', 'Restore'],
Expand Down
Loading