Skip to content
Merged
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
3 changes: 1 addition & 2 deletions src/frontend/src/lib/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
"changelog": "Changelog",
"controllers": "Access Keys",
"settings": "Settings",
"setup": "Configuration",
"service": "Service",
"setup": "Setup",
"continue": "Continue",
"not_logged_in": "Developer not logged in.",
"ready": "Ready",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/src/lib/i18n/zh-cn.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"changelog": "版本日志",
"controllers": "访问密钥",
"settings": "系统设置",
"setup": "配置",
"setup": "设置",
"service": "服务",
"continue": "继续",
"not_logged_in": "开发者未登录",
Expand Down
1 change: 0 additions & 1 deletion src/frontend/src/lib/types/i18n.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ interface I18nCore {
controllers: string;
settings: string;
setup: string;
service: string;
continue: string;
not_logged_in: string;
ready: string;
Expand Down
4 changes: 2 additions & 2 deletions src/frontend/src/routes/(split)/analytics/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@
? [
{
id: Symbol('2'),
labelKey: 'core.setup'
labelKey: 'core.config'
},
{
id: Symbol('3'),
labelKey: 'core.service'
labelKey: 'analytics.orbiter'
}
]
: [])
Expand Down
4 changes: 2 additions & 2 deletions src/frontend/src/routes/(split)/monitoring/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@
? [
{
id: Symbol('2'),
labelKey: 'core.setup'
labelKey: 'core.config'
}
]
: []),
{
id: Symbol('3'),
labelKey: 'core.service'
labelKey: 'mission_control.title'
}
]);

Expand Down
8 changes: 6 additions & 2 deletions src/frontend/src/routes/(split)/satellite/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@
const tabs: Tab[] = [
{
id: Symbol('1'),
labelKey: 'core.service'
labelKey: 'satellites.satellite'
},
{
id: Symbol('2'),
labelKey: 'core.setup'
}
];

Expand All @@ -48,7 +52,7 @@
{#if nonNullish($satelliteStore)}
{#if $store.tabId === $store.tabs[0].id}
<SatelliteOverview satellite={$satelliteStore} />

{:else if $store.tabId === $store.tabs[1].id}
<SatelliteSettings satellite={$satelliteStore} />
{/if}
{/if}
Expand Down