Skip to content

Commit

Permalink
Rebuild locales & fix translation bugs (#325)
Browse files Browse the repository at this point in the history
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
  • Loading branch information
jakolehm authored Apr 30, 2020
1 parent b371e8e commit 28cf828
Show file tree
Hide file tree
Showing 6 changed files with 276 additions and 180 deletions.
2 changes: 1 addition & 1 deletion dashboard/client/components/+nodes/node-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function NodeMenu(props: KubeObjectMenuProps<Node>) {

const shell = () => {
createTerminalTab({
title: _i18n._(t`Node: ${nodeName}`),
title: _i18n._(t`Node`) + `: ${nodeName}`,
node: nodeName,
});
hideDetails();
Expand Down
2 changes: 1 addition & 1 deletion dashboard/client/components/+workloads-pods/pod-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class PodMenu extends React.Component<Props> {
}

const shell = createTerminalTab({
title: _i18n._(t`Pod: ${pod.getName()} (namespace: ${pod.getNs()})`)
title: _i18n._(t`Pod`) + `: ${pod.getName()} (namespace: ${pod.getNs()})`
});

terminalStore.sendCommand(command, {
Expand Down
2 changes: 1 addition & 1 deletion dashboard/locales/en/messages.js

Large diffs are not rendered by default.

Loading

0 comments on commit 28cf828

Please # to comment.