🌐 Add proper translation for container actions

This commit is contained in:
Thomas Camlong
2022-10-11 11:11:21 +09:00
parent e93343b06b
commit 56a277e47e
2 changed files with 19 additions and 7 deletions

View File

@@ -31,7 +31,7 @@ function sendDockerCommand(
showNotification({
id: containerId,
loading: true,
title: `${action}ing container ${containerName}`,
title: `${t(`actions.${action}.start`)} ${containerName}`,
message: undefined,
autoClose: false,
disallowClose: true,
@@ -41,8 +41,8 @@ function sendDockerCommand(
.then((res) => {
updateNotification({
id: containerId,
title: t('messages.successfullyExecuted.message', { containerName, action }),
message: t('messages.successfullyExecuted.message', { action }),
title: containerName,
message: `${t(`actions.${action}.end`)} ${containerName}`,
icon: <IconCheck />,
autoClose: 2000,
});