diff --git a/apps/dokploy/components/dashboard/application/advanced/cluster/modify-swarm-settings.tsx b/apps/dokploy/components/dashboard/application/advanced/cluster/modify-swarm-settings.tsx
index 6750527d..9b71a042 100644
--- a/apps/dokploy/components/dashboard/application/advanced/cluster/modify-swarm-settings.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/cluster/modify-swarm-settings.tsx
@@ -259,7 +259,7 @@ export const AddSwarmSettings = ({ applicationId }: Props) => {
refetch();
})
.catch(() => {
- toast.error("Error to update the swarm settings");
+ toast.error("Error updating the swarm settings");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/application/advanced/cluster/show-cluster-settings.tsx b/apps/dokploy/components/dashboard/application/advanced/cluster/show-cluster-settings.tsx
index d8d32e19..cf7314cf 100644
--- a/apps/dokploy/components/dashboard/application/advanced/cluster/show-cluster-settings.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/cluster/show-cluster-settings.tsx
@@ -94,7 +94,7 @@ export const ShowClusterSettings = ({ applicationId }: Props) => {
});
})
.catch(() => {
- toast.error("Error to update the command");
+ toast.error("Error updating the command");
});
};
diff --git a/apps/dokploy/components/dashboard/application/advanced/general/add-command.tsx b/apps/dokploy/components/dashboard/application/advanced/general/add-command.tsx
index 979660bc..f9e70b42 100644
--- a/apps/dokploy/components/dashboard/application/advanced/general/add-command.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/general/add-command.tsx
@@ -71,7 +71,7 @@ export const AddCommand = ({ applicationId }: Props) => {
});
})
.catch(() => {
- toast.error("Error to update the command");
+ toast.error("Error updating the command");
});
};
diff --git a/apps/dokploy/components/dashboard/application/advanced/ports/add-port.tsx b/apps/dokploy/components/dashboard/application/advanced/ports/add-port.tsx
index 1b613704..1fc34cac 100644
--- a/apps/dokploy/components/dashboard/application/advanced/ports/add-port.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/ports/add-port.tsx
@@ -86,7 +86,7 @@ export const AddPort = ({
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to create the port");
+ toast.error("Error creating the port");
});
};
diff --git a/apps/dokploy/components/dashboard/application/advanced/ports/delete-port.tsx b/apps/dokploy/components/dashboard/application/advanced/ports/delete-port.tsx
index cc2c7776..e1723f6e 100644
--- a/apps/dokploy/components/dashboard/application/advanced/ports/delete-port.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/ports/delete-port.tsx
@@ -47,10 +47,10 @@ export const DeletePort = ({ portId }: Props) => {
applicationId: data?.applicationId,
});
- toast.success("Port delete succesfully");
+ toast.success("Port delete successfully");
})
.catch(() => {
- toast.error("Error to delete the port");
+ toast.error("Error deleting the port");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/application/advanced/ports/update-port.tsx b/apps/dokploy/components/dashboard/application/advanced/ports/update-port.tsx
index a9f7f32d..e37a3c5b 100644
--- a/apps/dokploy/components/dashboard/application/advanced/ports/update-port.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/ports/update-port.tsx
@@ -93,7 +93,7 @@ export const UpdatePort = ({ portId }: Props) => {
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update the port");
+ toast.error("Error updating the port");
});
};
diff --git a/apps/dokploy/components/dashboard/application/advanced/redirects/add-redirect.tsx b/apps/dokploy/components/dashboard/application/advanced/redirects/add-redirect.tsx
index 8ce547a2..abeb2108 100644
--- a/apps/dokploy/components/dashboard/application/advanced/redirects/add-redirect.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/redirects/add-redirect.tsx
@@ -124,7 +124,7 @@ export const AddRedirect = ({
onDialogToggle(false);
})
.catch(() => {
- toast.error("Error to create the redirect");
+ toast.error("Error creating the redirect");
});
};
diff --git a/apps/dokploy/components/dashboard/application/advanced/redirects/delete-redirect.tsx b/apps/dokploy/components/dashboard/application/advanced/redirects/delete-redirect.tsx
index 08d1f3e0..49f289b2 100644
--- a/apps/dokploy/components/dashboard/application/advanced/redirects/delete-redirect.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/redirects/delete-redirect.tsx
@@ -50,10 +50,10 @@ export const DeleteRedirect = ({ redirectId }: Props) => {
utils.application.readTraefikConfig.invalidate({
applicationId: data?.applicationId,
});
- toast.success("Redirect delete succesfully");
+ toast.success("Redirect delete successfully");
})
.catch(() => {
- toast.error("Error to delete the redirect");
+ toast.error("Error deleting the redirect");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/application/advanced/redirects/update-redirect.tsx b/apps/dokploy/components/dashboard/application/advanced/redirects/update-redirect.tsx
index 52ff310d..c4125846 100644
--- a/apps/dokploy/components/dashboard/application/advanced/redirects/update-redirect.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/redirects/update-redirect.tsx
@@ -88,7 +88,7 @@ export const UpdateRedirect = ({ redirectId }: Props) => {
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update the redirect");
+ toast.error("Error updating the redirect");
});
};
diff --git a/apps/dokploy/components/dashboard/application/advanced/security/add-security.tsx b/apps/dokploy/components/dashboard/application/advanced/security/add-security.tsx
index aeaebb92..56a1a6a4 100644
--- a/apps/dokploy/components/dashboard/application/advanced/security/add-security.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/security/add-security.tsx
@@ -75,7 +75,7 @@ export const AddSecurity = ({
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to create the security");
+ toast.error("Error creating security");
});
};
diff --git a/apps/dokploy/components/dashboard/application/advanced/security/delete-security.tsx b/apps/dokploy/components/dashboard/application/advanced/security/delete-security.tsx
index 1a63c234..b44b2ff8 100644
--- a/apps/dokploy/components/dashboard/application/advanced/security/delete-security.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/security/delete-security.tsx
@@ -50,10 +50,10 @@ export const DeleteSecurity = ({ securityId }: Props) => {
utils.application.readTraefikConfig.invalidate({
applicationId: data?.applicationId,
});
- toast.success("Security delete succesfully");
+ toast.success("Security delete successfully");
})
.catch(() => {
- toast.error("Error to delete the security");
+ toast.error("Error deleting the security");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/application/advanced/security/update-security.tsx b/apps/dokploy/components/dashboard/application/advanced/security/update-security.tsx
index 1e5af95f..cec1db0d 100644
--- a/apps/dokploy/components/dashboard/application/advanced/security/update-security.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/security/update-security.tsx
@@ -83,7 +83,7 @@ export const UpdateSecurity = ({ securityId }: Props) => {
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update the security");
+ toast.error("Error updating the security");
});
};
diff --git a/apps/dokploy/components/dashboard/application/advanced/show-application-advanced-settings.tsx b/apps/dokploy/components/dashboard/application/advanced/show-application-advanced-settings.tsx
index e77be2d1..507fb50a 100644
--- a/apps/dokploy/components/dashboard/application/advanced/show-application-advanced-settings.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/show-application-advanced-settings.tsx
@@ -72,7 +72,7 @@ export const ShowApplicationResources = ({ applicationId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to Update the resources");
+ toast.error("Error updating the resources");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/application/advanced/traefik/update-traefik-config.tsx b/apps/dokploy/components/dashboard/application/advanced/traefik/update-traefik-config.tsx
index 2c2437a1..f563f1ab 100644
--- a/apps/dokploy/components/dashboard/application/advanced/traefik/update-traefik-config.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/traefik/update-traefik-config.tsx
@@ -105,7 +105,7 @@ export const UpdateTraefikConfig = ({ applicationId }: Props) => {
form.reset();
})
.catch(() => {
- toast.error("Error to update the traefik config");
+ toast.error("Error updating the Traefik config");
});
};
diff --git a/apps/dokploy/components/dashboard/application/advanced/volumes/add-volumes.tsx b/apps/dokploy/components/dashboard/application/advanced/volumes/add-volumes.tsx
index 5c6b95ca..718f98b7 100644
--- a/apps/dokploy/components/dashboard/application/advanced/volumes/add-volumes.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/volumes/add-volumes.tsx
@@ -107,7 +107,7 @@ export const AddVolumes = ({
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to create the Bind mount");
+ toast.error("Error creating the Bind mount");
});
} else if (data.type === "volume") {
await mutateAsync({
@@ -122,7 +122,7 @@ export const AddVolumes = ({
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to create the Volume mount");
+ toast.error("Error creating the Volume mount");
});
} else if (data.type === "file") {
await mutateAsync({
@@ -138,7 +138,7 @@ export const AddVolumes = ({
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to create the File mount");
+ toast.error("Error creating the File mount");
});
}
diff --git a/apps/dokploy/components/dashboard/application/advanced/volumes/delete-volume.tsx b/apps/dokploy/components/dashboard/application/advanced/volumes/delete-volume.tsx
index 020a6c36..4945bb4b 100644
--- a/apps/dokploy/components/dashboard/application/advanced/volumes/delete-volume.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/volumes/delete-volume.tsx
@@ -45,10 +45,10 @@ export const DeleteVolume = ({ mountId, refetch }: Props) => {
})
.then(() => {
refetch();
- toast.success("Mount deleted succesfully");
+ toast.success("Mount deleted successfully");
})
.catch(() => {
- toast.error("Error to delete the mount");
+ toast.error("Error deleting the mount");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/application/advanced/volumes/update-volume.tsx b/apps/dokploy/components/dashboard/application/advanced/volumes/update-volume.tsx
index 80cc97ad..55ea2120 100644
--- a/apps/dokploy/components/dashboard/application/advanced/volumes/update-volume.tsx
+++ b/apps/dokploy/components/dashboard/application/advanced/volumes/update-volume.tsx
@@ -139,7 +139,7 @@ export const UpdateVolume = ({
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update the Bind mount");
+ toast.error("Error updating the Bind mount");
});
} else if (data.type === "volume") {
await mutateAsync({
@@ -153,7 +153,7 @@ export const UpdateVolume = ({
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update the Volume mount");
+ toast.error("Error updating the Volume mount");
});
} else if (data.type === "file") {
await mutateAsync({
@@ -168,7 +168,7 @@ export const UpdateVolume = ({
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update the File mount");
+ toast.error("Error updating the File mount");
});
}
refetch();
diff --git a/apps/dokploy/components/dashboard/application/build/show.tsx b/apps/dokploy/components/dashboard/application/build/show.tsx
index edfb38ae..ad83f456 100644
--- a/apps/dokploy/components/dashboard/application/build/show.tsx
+++ b/apps/dokploy/components/dashboard/application/build/show.tsx
@@ -126,7 +126,7 @@ export const ShowBuildChooseForm = ({ applicationId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to save the build type");
+ toast.error("Error saving the build type");
});
};
diff --git a/apps/dokploy/components/dashboard/application/deployments/refresh-token.tsx b/apps/dokploy/components/dashboard/application/deployments/refresh-token.tsx
index 88d5beee..c268e6d5 100644
--- a/apps/dokploy/components/dashboard/application/deployments/refresh-token.tsx
+++ b/apps/dokploy/components/dashboard/application/deployments/refresh-token.tsx
@@ -47,7 +47,7 @@ export const RefreshToken = ({ applicationId }: Props) => {
toast.success("Refresh updated");
})
.catch(() => {
- toast.error("Error to update the refresh token");
+ toast.error("Error updating the refresh token");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/application/domains/add-domain.tsx b/apps/dokploy/components/dashboard/application/domains/add-domain.tsx
index 38180114..22eaf1d3 100644
--- a/apps/dokploy/components/dashboard/application/domains/add-domain.tsx
+++ b/apps/dokploy/components/dashboard/application/domains/add-domain.tsx
@@ -105,8 +105,8 @@ export const AddDomain = ({
const dictionary = {
success: domainId ? "Domain Updated" : "Domain Created",
error: domainId
- ? "Error to update the domain"
- : "Error to create the domain",
+ ? "Error updating the domain"
+ : "Error creating the domain",
submit: domainId ? "Update" : "Create",
dialogDescription: domainId
? "In this section you can edit a domain"
diff --git a/apps/dokploy/components/dashboard/application/domains/delete-domain.tsx b/apps/dokploy/components/dashboard/application/domains/delete-domain.tsx
index 5933a99a..3d4425df 100644
--- a/apps/dokploy/components/dashboard/application/domains/delete-domain.tsx
+++ b/apps/dokploy/components/dashboard/application/domains/delete-domain.tsx
@@ -57,10 +57,10 @@ export const DeleteDomain = ({ domainId }: Props) => {
});
}
- toast.success("Domain delete succesfully");
+ toast.success("Domain delete successfully");
})
.catch(() => {
- toast.error("Error to delete Domain");
+ toast.error("Error deleting the Domain");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/application/environment/show.tsx b/apps/dokploy/components/dashboard/application/environment/show.tsx
index c7b8d4bb..ec555804 100644
--- a/apps/dokploy/components/dashboard/application/environment/show.tsx
+++ b/apps/dokploy/components/dashboard/application/environment/show.tsx
@@ -51,7 +51,7 @@ export const ShowEnvironment = ({ applicationId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to add environment");
+ toast.error("Error adding environment");
});
};
diff --git a/apps/dokploy/components/dashboard/application/general/deploy-application.tsx b/apps/dokploy/components/dashboard/application/general/deploy-application.tsx
index 252894dd..c1ab8457 100644
--- a/apps/dokploy/components/dashboard/application/general/deploy-application.tsx
+++ b/apps/dokploy/components/dashboard/application/general/deploy-application.tsx
@@ -51,7 +51,7 @@ export const DeployApplication = ({ applicationId }: Props) => {
applicationId,
})
.then(async () => {
- toast.success("Application deployed succesfully");
+ toast.success("Application deployed successfully");
await refetch();
router.push(
`/dashboard/project/${data?.projectId}/services/application/${applicationId}?tab=deployments`,
@@ -59,7 +59,7 @@ export const DeployApplication = ({ applicationId }: Props) => {
})
.catch(() => {
- toast.error("Error to deploy Application");
+ toast.error("Error deploying the Application");
});
await refetch();
diff --git a/apps/dokploy/components/dashboard/application/general/generic/save-bitbucket-provider.tsx b/apps/dokploy/components/dashboard/application/general/generic/save-bitbucket-provider.tsx
index d6dfa20e..a487452b 100644
--- a/apps/dokploy/components/dashboard/application/general/generic/save-bitbucket-provider.tsx
+++ b/apps/dokploy/components/dashboard/application/general/generic/save-bitbucket-provider.tsx
@@ -137,7 +137,7 @@ export const SaveBitbucketProvider = ({ applicationId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to save the Bitbucket provider");
+ toast.error("Error saving the Bitbucket provider");
});
};
diff --git a/apps/dokploy/components/dashboard/application/general/generic/save-docker-provider.tsx b/apps/dokploy/components/dashboard/application/general/generic/save-docker-provider.tsx
index b4e33719..fcc4f824 100644
--- a/apps/dokploy/components/dashboard/application/general/generic/save-docker-provider.tsx
+++ b/apps/dokploy/components/dashboard/application/general/generic/save-docker-provider.tsx
@@ -68,7 +68,7 @@ export const SaveDockerProvider = ({ applicationId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to save the Docker provider");
+ toast.error("Error saving the Docker provider");
});
};
diff --git a/apps/dokploy/components/dashboard/application/general/generic/save-drag-n-drop.tsx b/apps/dokploy/components/dashboard/application/general/generic/save-drag-n-drop.tsx
index 4ed9df16..3732860d 100644
--- a/apps/dokploy/components/dashboard/application/general/generic/save-drag-n-drop.tsx
+++ b/apps/dokploy/components/dashboard/application/general/generic/save-drag-n-drop.tsx
@@ -56,7 +56,7 @@ export const SaveDragNDrop = ({ applicationId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to save the deployment");
+ toast.error("Error saving the deployment");
});
};
diff --git a/apps/dokploy/components/dashboard/application/general/generic/save-git-provider.tsx b/apps/dokploy/components/dashboard/application/general/generic/save-git-provider.tsx
index 58fd1973..218e004d 100644
--- a/apps/dokploy/components/dashboard/application/general/generic/save-git-provider.tsx
+++ b/apps/dokploy/components/dashboard/application/general/generic/save-git-provider.tsx
@@ -84,7 +84,7 @@ export const SaveGitProvider = ({ applicationId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to save the Git provider");
+ toast.error("Error saving the Git provider");
});
};
diff --git a/apps/dokploy/components/dashboard/application/general/generic/save-github-provider.tsx b/apps/dokploy/components/dashboard/application/general/generic/save-github-provider.tsx
index 5c432e6a..f5da9ceb 100644
--- a/apps/dokploy/components/dashboard/application/general/generic/save-github-provider.tsx
+++ b/apps/dokploy/components/dashboard/application/general/generic/save-github-provider.tsx
@@ -131,7 +131,7 @@ export const SaveGithubProvider = ({ applicationId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to save the github provider");
+ toast.error("Error saving the github provider");
});
};
diff --git a/apps/dokploy/components/dashboard/application/general/generic/save-gitlab-provider.tsx b/apps/dokploy/components/dashboard/application/general/generic/save-gitlab-provider.tsx
index 2d498bfd..d190180e 100644
--- a/apps/dokploy/components/dashboard/application/general/generic/save-gitlab-provider.tsx
+++ b/apps/dokploy/components/dashboard/application/general/generic/save-gitlab-provider.tsx
@@ -144,7 +144,7 @@ export const SaveGitlabProvider = ({ applicationId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to save the gitlab provider");
+ toast.error("Error saving the gitlab provider");
});
};
diff --git a/apps/dokploy/components/dashboard/application/general/reset-application.tsx b/apps/dokploy/components/dashboard/application/general/reset-application.tsx
index cc338658..5be2a185 100644
--- a/apps/dokploy/components/dashboard/application/general/reset-application.tsx
+++ b/apps/dokploy/components/dashboard/application/general/reset-application.tsx
@@ -56,7 +56,7 @@ export const ResetApplication = ({ applicationId, appName }: Props) => {
toast.success("Service Reloaded");
})
.catch(() => {
- toast.error("Error to reload the service");
+ toast.error("Error reloading the service");
});
await refetch();
}}
diff --git a/apps/dokploy/components/dashboard/application/general/show.tsx b/apps/dokploy/components/dashboard/application/general/show.tsx
index 65c99e9b..46f185d5 100644
--- a/apps/dokploy/components/dashboard/application/general/show.tsx
+++ b/apps/dokploy/components/dashboard/application/general/show.tsx
@@ -69,7 +69,7 @@ export const ShowGeneralApplication = ({ applicationId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to update Auto Deploy");
+ toast.error("Error updating Auto Deploy");
});
}}
className="flex flex-row gap-2 items-center"
diff --git a/apps/dokploy/components/dashboard/application/preview-deployments/add-preview-domain.tsx b/apps/dokploy/components/dashboard/application/preview-deployments/add-preview-domain.tsx
index 875a93d4..3a33bbed 100644
--- a/apps/dokploy/components/dashboard/application/preview-deployments/add-preview-domain.tsx
+++ b/apps/dokploy/components/dashboard/application/preview-deployments/add-preview-domain.tsx
@@ -105,8 +105,8 @@ export const AddPreviewDomain = ({
const dictionary = {
success: domainId ? "Domain Updated" : "Domain Created",
error: domainId
- ? "Error to update the domain"
- : "Error to create the domain",
+ ? "Error updating the domain"
+ : "Error creating the domain",
submit: domainId ? "Update" : "Create",
dialogDescription: domainId
? "In this section you can edit a domain"
diff --git a/apps/dokploy/components/dashboard/application/rebuild-application.tsx b/apps/dokploy/components/dashboard/application/rebuild-application.tsx
index 0284ab8f..66ed3397 100644
--- a/apps/dokploy/components/dashboard/application/rebuild-application.tsx
+++ b/apps/dokploy/components/dashboard/application/rebuild-application.tsx
@@ -63,7 +63,7 @@ export const RedbuildApplication = ({ applicationId }: Props) => {
});
})
.catch(() => {
- toast.error("Error to rebuild the application");
+ toast.error("Error rebuilding the application");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/application/start-application.tsx b/apps/dokploy/components/dashboard/application/start-application.tsx
index d65997ed..9a65397b 100644
--- a/apps/dokploy/components/dashboard/application/start-application.tsx
+++ b/apps/dokploy/components/dashboard/application/start-application.tsx
@@ -49,10 +49,10 @@ export const StartApplication = ({ applicationId }: Props) => {
await utils.application.one.invalidate({
applicationId,
});
- toast.success("Application started succesfully");
+ toast.success("Application started successfully");
})
.catch(() => {
- toast.error("Error to start the Application");
+ toast.error("Error starting the Application");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/application/stop-application.tsx b/apps/dokploy/components/dashboard/application/stop-application.tsx
index 5eb873f4..ea052fab 100644
--- a/apps/dokploy/components/dashboard/application/stop-application.tsx
+++ b/apps/dokploy/components/dashboard/application/stop-application.tsx
@@ -49,10 +49,10 @@ export const StopApplication = ({ applicationId }: Props) => {
await utils.application.one.invalidate({
applicationId,
});
- toast.success("Application stopped succesfully");
+ toast.success("Application stopped successfully");
})
.catch(() => {
- toast.error("Error to stop the Application");
+ toast.error("Error stopping the Application");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/application/update-application.tsx b/apps/dokploy/components/dashboard/application/update-application.tsx
index f40a0020..8f8b63fe 100644
--- a/apps/dokploy/components/dashboard/application/update-application.tsx
+++ b/apps/dokploy/components/dashboard/application/update-application.tsx
@@ -76,14 +76,14 @@ export const UpdateApplication = ({ applicationId }: Props) => {
description: formData.description || "",
})
.then(() => {
- toast.success("Application updated succesfully");
+ toast.success("Application updated successfully");
utils.application.one.invalidate({
applicationId: applicationId,
});
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update the application");
+ toast.error("Error updating the Application");
})
.finally(() => {});
};
diff --git a/apps/dokploy/components/dashboard/compose/advanced/add-command.tsx b/apps/dokploy/components/dashboard/compose/advanced/add-command.tsx
index 6d1b455f..1bbd3820 100644
--- a/apps/dokploy/components/dashboard/compose/advanced/add-command.tsx
+++ b/apps/dokploy/components/dashboard/compose/advanced/add-command.tsx
@@ -82,7 +82,7 @@ export const AddCommandCompose = ({ composeId }: Props) => {
});
})
.catch(() => {
- toast.error("Error to update the command");
+ toast.error("Error updating the command");
});
};
diff --git a/apps/dokploy/components/dashboard/compose/deployments/refresh-token-compose.tsx b/apps/dokploy/components/dashboard/compose/deployments/refresh-token-compose.tsx
index 66d690e7..95fafaab 100644
--- a/apps/dokploy/components/dashboard/compose/deployments/refresh-token-compose.tsx
+++ b/apps/dokploy/components/dashboard/compose/deployments/refresh-token-compose.tsx
@@ -47,7 +47,7 @@ export const RefreshTokenCompose = ({ composeId }: Props) => {
toast.success("Refresh Token updated");
})
.catch(() => {
- toast.error("Error to update the refresh token");
+ toast.error("Error updating the refresh token");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/compose/domains/add-domain.tsx b/apps/dokploy/components/dashboard/compose/domains/add-domain.tsx
index 6ea38237..b9ae9a2e 100644
--- a/apps/dokploy/components/dashboard/compose/domains/add-domain.tsx
+++ b/apps/dokploy/components/dashboard/compose/domains/add-domain.tsx
@@ -127,8 +127,8 @@ export const AddDomainCompose = ({
const dictionary = {
success: domainId ? "Domain Updated" : "Domain Created",
error: domainId
- ? "Error to update the domain"
- : "Error to create the domain",
+ ? "Error updating the domain"
+ : "Error creating the domain",
submit: domainId ? "Update" : "Create",
dialogDescription: domainId
? "In this section you can edit a domain"
diff --git a/apps/dokploy/components/dashboard/compose/enviroment/show.tsx b/apps/dokploy/components/dashboard/compose/environment/show.tsx
similarity index 98%
rename from apps/dokploy/components/dashboard/compose/enviroment/show.tsx
rename to apps/dokploy/components/dashboard/compose/environment/show.tsx
index 4e9b2dfd..8fa1f444 100644
--- a/apps/dokploy/components/dashboard/compose/enviroment/show.tsx
+++ b/apps/dokploy/components/dashboard/compose/environment/show.tsx
@@ -70,7 +70,7 @@ export const ShowEnvironmentCompose = ({ composeId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to add environment");
+ toast.error("Error adding environment");
});
};
diff --git a/apps/dokploy/components/dashboard/compose/general/actions.tsx b/apps/dokploy/components/dashboard/compose/general/actions.tsx
index 43966966..215e7e42 100644
--- a/apps/dokploy/components/dashboard/compose/general/actions.tsx
+++ b/apps/dokploy/components/dashboard/compose/general/actions.tsx
@@ -83,7 +83,7 @@ export const ComposeActions = ({ composeId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to update Auto Deploy");
+ toast.error("Error updating Auto Deploy");
});
}}
className="flex flex-row gap-2 items-center"
diff --git a/apps/dokploy/components/dashboard/compose/general/compose-file-editor.tsx b/apps/dokploy/components/dashboard/compose/general/compose-file-editor.tsx
index 90bf6e30..b368aafc 100644
--- a/apps/dokploy/components/dashboard/compose/general/compose-file-editor.tsx
+++ b/apps/dokploy/components/dashboard/compose/general/compose-file-editor.tsx
@@ -77,7 +77,7 @@ export const ComposeFileEditor = ({ composeId }: Props) => {
});
})
.catch((e) => {
- toast.error("Error to update the compose config");
+ toast.error("Error updating the Compose config");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/compose/general/deploy-compose.tsx b/apps/dokploy/components/dashboard/compose/general/deploy-compose.tsx
index 25b59cc7..2c6f13e0 100644
--- a/apps/dokploy/components/dashboard/compose/general/deploy-compose.tsx
+++ b/apps/dokploy/components/dashboard/compose/general/deploy-compose.tsx
@@ -57,7 +57,7 @@ export const DeployCompose = ({ composeId }: Props) => {
);
})
.catch(() => {
- toast.error("Error to deploy Compose");
+ toast.error("Error deploying Compose");
});
await refetch();
diff --git a/apps/dokploy/components/dashboard/compose/general/generic/save-bitbucket-provider-compose.tsx b/apps/dokploy/components/dashboard/compose/general/generic/save-bitbucket-provider-compose.tsx
index cf5a7d5b..2a083666 100644
--- a/apps/dokploy/components/dashboard/compose/general/generic/save-bitbucket-provider-compose.tsx
+++ b/apps/dokploy/components/dashboard/compose/general/generic/save-bitbucket-provider-compose.tsx
@@ -139,7 +139,7 @@ export const SaveBitbucketProviderCompose = ({ composeId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to save the Bitbucket provider");
+ toast.error("Error saving the Bitbucket provider");
});
};
diff --git a/apps/dokploy/components/dashboard/compose/general/generic/save-git-provider-compose.tsx b/apps/dokploy/components/dashboard/compose/general/generic/save-git-provider-compose.tsx
index c05dc7ed..e42f6d55 100644
--- a/apps/dokploy/components/dashboard/compose/general/generic/save-git-provider-compose.tsx
+++ b/apps/dokploy/components/dashboard/compose/general/generic/save-git-provider-compose.tsx
@@ -83,7 +83,7 @@ export const SaveGitProviderCompose = ({ composeId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to save the Git provider");
+ toast.error("Error saving the Git provider");
});
};
diff --git a/apps/dokploy/components/dashboard/compose/general/generic/save-github-provider-compose.tsx b/apps/dokploy/components/dashboard/compose/general/generic/save-github-provider-compose.tsx
index bd5e8874..af1a61d4 100644
--- a/apps/dokploy/components/dashboard/compose/general/generic/save-github-provider-compose.tsx
+++ b/apps/dokploy/components/dashboard/compose/general/generic/save-github-provider-compose.tsx
@@ -133,7 +133,7 @@ export const SaveGithubProviderCompose = ({ composeId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to save the github provider");
+ toast.error("Error saving the Github provider");
});
};
diff --git a/apps/dokploy/components/dashboard/compose/general/generic/save-gitlab-provider-compose.tsx b/apps/dokploy/components/dashboard/compose/general/generic/save-gitlab-provider-compose.tsx
index c0a871c0..5f28b342 100644
--- a/apps/dokploy/components/dashboard/compose/general/generic/save-gitlab-provider-compose.tsx
+++ b/apps/dokploy/components/dashboard/compose/general/generic/save-gitlab-provider-compose.tsx
@@ -146,7 +146,7 @@ export const SaveGitlabProviderCompose = ({ composeId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to save the gitlab provider");
+ toast.error("Error saving the Gitlab provider");
});
};
diff --git a/apps/dokploy/components/dashboard/compose/general/randomize-compose.tsx b/apps/dokploy/components/dashboard/compose/general/randomize-compose.tsx
index 2c6184c8..59233acf 100644
--- a/apps/dokploy/components/dashboard/compose/general/randomize-compose.tsx
+++ b/apps/dokploy/components/dashboard/compose/general/randomize-compose.tsx
@@ -90,7 +90,7 @@ export const RandomizeCompose = ({ composeId }: Props) => {
toast.success("Compose updated");
})
.catch(() => {
- toast.error("Error to randomize the compose");
+ toast.error("Error randomizing the compose");
});
};
@@ -105,7 +105,7 @@ export const RandomizeCompose = ({ composeId }: Props) => {
toast.success("Compose randomized");
})
.catch(() => {
- toast.error("Error to randomize the compose");
+ toast.error("Error randomizing the compose");
});
};
diff --git a/apps/dokploy/components/dashboard/compose/general/rebuild-compose.tsx b/apps/dokploy/components/dashboard/compose/general/rebuild-compose.tsx
index 199d4f93..c2f50414 100644
--- a/apps/dokploy/components/dashboard/compose/general/rebuild-compose.tsx
+++ b/apps/dokploy/components/dashboard/compose/general/rebuild-compose.tsx
@@ -62,7 +62,7 @@ export const RedbuildCompose = ({ composeId }: Props) => {
});
})
.catch(() => {
- toast.error("Error to rebuild the compose");
+ toast.error("Error rebuilding the compose");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/compose/general/show-converted-compose.tsx b/apps/dokploy/components/dashboard/compose/general/show-converted-compose.tsx
index ec441e02..8a2186d9 100644
--- a/apps/dokploy/components/dashboard/compose/general/show-converted-compose.tsx
+++ b/apps/dokploy/components/dashboard/compose/general/show-converted-compose.tsx
@@ -73,7 +73,7 @@ export const ShowConvertedCompose = ({ composeId }: Props) => {
toast.success("Fetched source type");
})
.catch((err) => {
- toast.error("Error to fetch source type", {
+ toast.error("Error fetching source type", {
description: err.message,
});
});
diff --git a/apps/dokploy/components/dashboard/compose/general/stop-compose.tsx b/apps/dokploy/components/dashboard/compose/general/stop-compose.tsx
index 2bb3cdeb..f405481b 100644
--- a/apps/dokploy/components/dashboard/compose/general/stop-compose.tsx
+++ b/apps/dokploy/components/dashboard/compose/general/stop-compose.tsx
@@ -53,10 +53,10 @@ export const StopCompose = ({ composeId }: Props) => {
await utils.compose.one.invalidate({
composeId,
});
- toast.success("Compose stopped succesfully");
+ toast.success("Compose stopped successfully");
})
.catch(() => {
- toast.error("Error to stop the compose");
+ toast.error("Error stopping the compose");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/compose/start-compose.tsx b/apps/dokploy/components/dashboard/compose/start-compose.tsx
index 20f990bb..fae978e2 100644
--- a/apps/dokploy/components/dashboard/compose/start-compose.tsx
+++ b/apps/dokploy/components/dashboard/compose/start-compose.tsx
@@ -49,10 +49,10 @@ export const StartCompose = ({ composeId }: Props) => {
await utils.compose.one.invalidate({
composeId,
});
- toast.success("Compose started succesfully");
+ toast.success("Compose started successfully");
})
.catch(() => {
- toast.error("Error to start the Compose");
+ toast.error("Error starting the Compose");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/compose/stop-compose.tsx b/apps/dokploy/components/dashboard/compose/stop-compose.tsx
index 3080e755..da3e3412 100644
--- a/apps/dokploy/components/dashboard/compose/stop-compose.tsx
+++ b/apps/dokploy/components/dashboard/compose/stop-compose.tsx
@@ -49,10 +49,10 @@ export const StopCompose = ({ composeId }: Props) => {
await utils.compose.one.invalidate({
composeId,
});
- toast.success("Compose stopped succesfully");
+ toast.success("Compose stopped successfully");
})
.catch(() => {
- toast.error("Error to stop the Compose");
+ toast.error("Error stopping the Compose");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/compose/update-compose.tsx b/apps/dokploy/components/dashboard/compose/update-compose.tsx
index 5991c03d..807f5b26 100644
--- a/apps/dokploy/components/dashboard/compose/update-compose.tsx
+++ b/apps/dokploy/components/dashboard/compose/update-compose.tsx
@@ -76,14 +76,14 @@ export const UpdateCompose = ({ composeId }: Props) => {
description: formData.description || "",
})
.then(() => {
- toast.success("Compose updated succesfully");
+ toast.success("Compose updated successfully");
utils.compose.one.invalidate({
composeId: composeId,
});
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update the Compose");
+ toast.error("Error updating the Compose");
})
.finally(() => {});
};
diff --git a/apps/dokploy/components/dashboard/database/backups/add-backup.tsx b/apps/dokploy/components/dashboard/database/backups/add-backup.tsx
index 94f072e7..5f349b24 100644
--- a/apps/dokploy/components/dashboard/database/backups/add-backup.tsx
+++ b/apps/dokploy/components/dashboard/database/backups/add-backup.tsx
@@ -125,7 +125,7 @@ export const AddBackup = ({ databaseId, databaseType, refetch }: Props) => {
refetch();
})
.catch(() => {
- toast.error("Error to create a backup");
+ toast.error("Error creating a backup");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/database/backups/delete-backup.tsx b/apps/dokploy/components/dashboard/database/backups/delete-backup.tsx
index 1a570b54..63c6677d 100644
--- a/apps/dokploy/components/dashboard/database/backups/delete-backup.tsx
+++ b/apps/dokploy/components/dashboard/database/backups/delete-backup.tsx
@@ -46,10 +46,10 @@ export const DeleteBackup = ({ backupId, refetch }: Props) => {
.then(() => {
refetch();
- toast.success("Backup delete succesfully");
+ toast.success("Backup deleted successfully");
})
.catch(() => {
- toast.error("Error to delete the backup");
+ toast.error("Error deleting the backup");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/database/backups/update-backup.tsx b/apps/dokploy/components/dashboard/database/backups/update-backup.tsx
index 4c60a31b..55754e9d 100644
--- a/apps/dokploy/components/dashboard/database/backups/update-backup.tsx
+++ b/apps/dokploy/components/dashboard/database/backups/update-backup.tsx
@@ -109,7 +109,7 @@ export const UpdateBackup = ({ backupId, refetch }: Props) => {
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update the backup");
+ toast.error("Error updating the Backup");
});
};
diff --git a/apps/dokploy/components/dashboard/file-system/show-traefik-file.tsx b/apps/dokploy/components/dashboard/file-system/show-traefik-file.tsx
index 3dfe9875..fb5fe8f5 100644
--- a/apps/dokploy/components/dashboard/file-system/show-traefik-file.tsx
+++ b/apps/dokploy/components/dashboard/file-system/show-traefik-file.tsx
@@ -86,7 +86,7 @@ export const ShowTraefikFile = ({ path, serverId }: Props) => {
refetch();
})
.catch(() => {
- toast.error("Error to update the traefik config");
+ toast.error("Error updating the Traefik config");
});
};
diff --git a/apps/dokploy/components/dashboard/mariadb/advanced/show-mariadb-advanced-settings.tsx b/apps/dokploy/components/dashboard/mariadb/advanced/show-mariadb-advanced-settings.tsx
index 062fffcd..b4c0129d 100644
--- a/apps/dokploy/components/dashboard/mariadb/advanced/show-mariadb-advanced-settings.tsx
+++ b/apps/dokploy/components/dashboard/mariadb/advanced/show-mariadb-advanced-settings.tsx
@@ -65,7 +65,7 @@ export const ShowAdvancedMariadb = ({ mariadbId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to Update the resources");
+ toast.error("Error updating the resources");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/mariadb/advanced/show-mariadb-resources.tsx b/apps/dokploy/components/dashboard/mariadb/advanced/show-mariadb-resources.tsx
index 60cdbda0..4708b123 100644
--- a/apps/dokploy/components/dashboard/mariadb/advanced/show-mariadb-resources.tsx
+++ b/apps/dokploy/components/dashboard/mariadb/advanced/show-mariadb-resources.tsx
@@ -71,7 +71,7 @@ export const ShowMariadbResources = ({ mariadbId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to Update the resources");
+ toast.error("Error updating the resources");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/mariadb/backups/show-backup-mariadb.tsx b/apps/dokploy/components/dashboard/mariadb/backups/show-backup-mariadb.tsx
index f3d214e3..cac2820f 100644
--- a/apps/dokploy/components/dashboard/mariadb/backups/show-backup-mariadb.tsx
+++ b/apps/dokploy/components/dashboard/mariadb/backups/show-backup-mariadb.tsx
@@ -144,7 +144,7 @@ export const ShowBackupMariadb = ({ mariadbId }: Props) => {
})
.catch(() => {
toast.error(
- "Error to Create the manual backup",
+ "Error creating the manual backup",
);
});
}}
diff --git a/apps/dokploy/components/dashboard/mariadb/environment/show-mariadb-environment.tsx b/apps/dokploy/components/dashboard/mariadb/environment/show-mariadb-environment.tsx
index 61f64cd8..418ae001 100644
--- a/apps/dokploy/components/dashboard/mariadb/environment/show-mariadb-environment.tsx
+++ b/apps/dokploy/components/dashboard/mariadb/environment/show-mariadb-environment.tsx
@@ -70,7 +70,7 @@ export const ShowMariadbEnvironment = ({ mariadbId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to add environment");
+ toast.error("Error adding environment");
});
};
diff --git a/apps/dokploy/components/dashboard/mariadb/general/deploy-mariadb.tsx b/apps/dokploy/components/dashboard/mariadb/general/deploy-mariadb.tsx
index e3162f00..50bf5819 100644
--- a/apps/dokploy/components/dashboard/mariadb/general/deploy-mariadb.tsx
+++ b/apps/dokploy/components/dashboard/mariadb/general/deploy-mariadb.tsx
@@ -55,12 +55,12 @@ export const DeployMariadb = ({ mariadbId }: Props) => {
await deploy({
mariadbId,
}).catch(() => {
- toast.error("Error to deploy Database");
+ toast.error("Error deploying Database");
});
await refetch();
})
.catch((e) => {
- toast.error(e.message || "Error to deploy Database");
+ toast.error(e.message || "Error deploying Database");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/mariadb/general/reset-mariadb.tsx b/apps/dokploy/components/dashboard/mariadb/general/reset-mariadb.tsx
index 3adb3b70..bee3d8ba 100644
--- a/apps/dokploy/components/dashboard/mariadb/general/reset-mariadb.tsx
+++ b/apps/dokploy/components/dashboard/mariadb/general/reset-mariadb.tsx
@@ -55,7 +55,7 @@ export const ResetMariadb = ({ mariadbId, appName }: Props) => {
toast.success("Service Reloaded");
})
.catch(() => {
- toast.error("Error to reload the service");
+ toast.error("Error reloading the service");
});
await refetch();
}}
diff --git a/apps/dokploy/components/dashboard/mariadb/general/show-external-mariadb-credentials.tsx b/apps/dokploy/components/dashboard/mariadb/general/show-external-mariadb-credentials.tsx
index c06cacaa..f2044917 100644
--- a/apps/dokploy/components/dashboard/mariadb/general/show-external-mariadb-credentials.tsx
+++ b/apps/dokploy/components/dashboard/mariadb/general/show-external-mariadb-credentials.tsx
@@ -72,7 +72,7 @@ export const ShowExternalMariadbCredentials = ({ mariadbId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to save the external port");
+ toast.error("Error saving the external port");
});
};
diff --git a/apps/dokploy/components/dashboard/mariadb/general/stop-mariadb.tsx b/apps/dokploy/components/dashboard/mariadb/general/stop-mariadb.tsx
index 17eb4bcd..55dc1367 100644
--- a/apps/dokploy/components/dashboard/mariadb/general/stop-mariadb.tsx
+++ b/apps/dokploy/components/dashboard/mariadb/general/stop-mariadb.tsx
@@ -49,10 +49,10 @@ export const StopMariadb = ({ mariadbId }: Props) => {
await utils.mariadb.one.invalidate({
mariadbId,
});
- toast.success("Application stopped succesfully");
+ toast.success("Application stopped successfully");
})
.catch(() => {
- toast.error("Error to stop the Application");
+ toast.error("Error stopping the Application");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/mariadb/start-mariadb.tsx b/apps/dokploy/components/dashboard/mariadb/start-mariadb.tsx
index dff62cec..4c62f0a0 100644
--- a/apps/dokploy/components/dashboard/mariadb/start-mariadb.tsx
+++ b/apps/dokploy/components/dashboard/mariadb/start-mariadb.tsx
@@ -49,10 +49,10 @@ export const StartMariadb = ({ mariadbId }: Props) => {
await utils.mariadb.one.invalidate({
mariadbId,
});
- toast.success("Database started succesfully");
+ toast.success("Database started successfully");
})
.catch(() => {
- toast.error("Error to start the Database");
+ toast.error("Error starting the Database");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/mariadb/update-mariadb.tsx b/apps/dokploy/components/dashboard/mariadb/update-mariadb.tsx
index 55b7e7e6..9b7c258e 100644
--- a/apps/dokploy/components/dashboard/mariadb/update-mariadb.tsx
+++ b/apps/dokploy/components/dashboard/mariadb/update-mariadb.tsx
@@ -75,13 +75,13 @@ export const UpdateMariadb = ({ mariadbId }: Props) => {
description: formData.description || "",
})
.then(() => {
- toast.success("MariaDB updated succesfully");
+ toast.success("MariaDB updated successfully");
utils.mariadb.one.invalidate({
mariadbId: mariadbId,
});
})
.catch(() => {
- toast.error("Error to update the Mariadb");
+ toast.error("Error updating the Mariadb");
})
.finally(() => {});
};
diff --git a/apps/dokploy/components/dashboard/mongo/advanced/show-mongo-advanced-settings.tsx b/apps/dokploy/components/dashboard/mongo/advanced/show-mongo-advanced-settings.tsx
index cbb178f3..d3a308f8 100644
--- a/apps/dokploy/components/dashboard/mongo/advanced/show-mongo-advanced-settings.tsx
+++ b/apps/dokploy/components/dashboard/mongo/advanced/show-mongo-advanced-settings.tsx
@@ -65,7 +65,7 @@ export const ShowAdvancedMongo = ({ mongoId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to Update the resources");
+ toast.error("Error updating the resources");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/mongo/advanced/show-mongo-resources.tsx b/apps/dokploy/components/dashboard/mongo/advanced/show-mongo-resources.tsx
index c18b54a8..f60b87f1 100644
--- a/apps/dokploy/components/dashboard/mongo/advanced/show-mongo-resources.tsx
+++ b/apps/dokploy/components/dashboard/mongo/advanced/show-mongo-resources.tsx
@@ -71,7 +71,7 @@ export const ShowMongoResources = ({ mongoId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to Update the resources");
+ toast.error("Error updating the resources");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/mongo/backups/show-backup-mongo.tsx b/apps/dokploy/components/dashboard/mongo/backups/show-backup-mongo.tsx
index 0f0478c5..bc1b4c61 100644
--- a/apps/dokploy/components/dashboard/mongo/backups/show-backup-mongo.tsx
+++ b/apps/dokploy/components/dashboard/mongo/backups/show-backup-mongo.tsx
@@ -144,7 +144,7 @@ export const ShowBackupMongo = ({ mongoId }: Props) => {
})
.catch(() => {
toast.error(
- "Error to Create the manual backup",
+ "Error creating the manual backup",
);
});
}}
diff --git a/apps/dokploy/components/dashboard/mongo/environment/show-mongo-environment.tsx b/apps/dokploy/components/dashboard/mongo/environment/show-mongo-environment.tsx
index 76796796..0aab9c8d 100644
--- a/apps/dokploy/components/dashboard/mongo/environment/show-mongo-environment.tsx
+++ b/apps/dokploy/components/dashboard/mongo/environment/show-mongo-environment.tsx
@@ -70,7 +70,7 @@ export const ShowMongoEnvironment = ({ mongoId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to add environment");
+ toast.error("Error adding environment");
});
};
diff --git a/apps/dokploy/components/dashboard/mongo/general/deploy-mongo.tsx b/apps/dokploy/components/dashboard/mongo/general/deploy-mongo.tsx
index 0ebda1ca..61f7e5d2 100644
--- a/apps/dokploy/components/dashboard/mongo/general/deploy-mongo.tsx
+++ b/apps/dokploy/components/dashboard/mongo/general/deploy-mongo.tsx
@@ -55,12 +55,12 @@ export const DeployMongo = ({ mongoId }: Props) => {
await deploy({
mongoId,
}).catch(() => {
- toast.error("Error to deploy Database");
+ toast.error("Error deploying Database");
});
await refetch();
})
.catch((e) => {
- toast.error(e.message || "Error to deploy Database");
+ toast.error(e.message || "Error deploying Database");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/mongo/general/reset-mongo.tsx b/apps/dokploy/components/dashboard/mongo/general/reset-mongo.tsx
index 19388bb7..1c297799 100644
--- a/apps/dokploy/components/dashboard/mongo/general/reset-mongo.tsx
+++ b/apps/dokploy/components/dashboard/mongo/general/reset-mongo.tsx
@@ -55,7 +55,7 @@ export const ResetMongo = ({ mongoId, appName }: Props) => {
toast.success("Service Reloaded");
})
.catch(() => {
- toast.error("Error to reload the service");
+ toast.error("Error reloading the service");
});
await refetch();
}}
diff --git a/apps/dokploy/components/dashboard/mongo/general/show-external-mongo-credentials.tsx b/apps/dokploy/components/dashboard/mongo/general/show-external-mongo-credentials.tsx
index 7cfab289..6dd2e919 100644
--- a/apps/dokploy/components/dashboard/mongo/general/show-external-mongo-credentials.tsx
+++ b/apps/dokploy/components/dashboard/mongo/general/show-external-mongo-credentials.tsx
@@ -72,7 +72,7 @@ export const ShowExternalMongoCredentials = ({ mongoId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to save the external port");
+ toast.error("Error saving the external port");
});
};
diff --git a/apps/dokploy/components/dashboard/mongo/general/stop-mongo.tsx b/apps/dokploy/components/dashboard/mongo/general/stop-mongo.tsx
index 09d2c372..f146145f 100644
--- a/apps/dokploy/components/dashboard/mongo/general/stop-mongo.tsx
+++ b/apps/dokploy/components/dashboard/mongo/general/stop-mongo.tsx
@@ -49,10 +49,10 @@ export const StopMongo = ({ mongoId }: Props) => {
await utils.mongo.one.invalidate({
mongoId,
});
- toast.success("Application stopped succesfully");
+ toast.success("Application stopped successfully");
})
.catch(() => {
- toast.error("Error to stop the Application");
+ toast.error("Error stopping the Application");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/mongo/start-mongo.tsx b/apps/dokploy/components/dashboard/mongo/start-mongo.tsx
index 3bc30862..56675cb3 100644
--- a/apps/dokploy/components/dashboard/mongo/start-mongo.tsx
+++ b/apps/dokploy/components/dashboard/mongo/start-mongo.tsx
@@ -49,10 +49,10 @@ export const StartMongo = ({ mongoId }: Props) => {
await utils.mongo.one.invalidate({
mongoId,
});
- toast.success("Database started succesfully");
+ toast.success("Database started successfully");
})
.catch(() => {
- toast.error("Error to start the Database");
+ toast.error("Error starting the Database");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/mongo/update-mongo.tsx b/apps/dokploy/components/dashboard/mongo/update-mongo.tsx
index fdfd2639..95ff9e3e 100644
--- a/apps/dokploy/components/dashboard/mongo/update-mongo.tsx
+++ b/apps/dokploy/components/dashboard/mongo/update-mongo.tsx
@@ -76,14 +76,14 @@ export const UpdateMongo = ({ mongoId }: Props) => {
description: formData.description || "",
})
.then(() => {
- toast.success("Mongo updated succesfully");
+ toast.success("Mongo updated successfully");
utils.mongo.one.invalidate({
mongoId: mongoId,
});
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update mongo database");
+ toast.error("Error updating mongo database");
})
.finally(() => {});
};
diff --git a/apps/dokploy/components/dashboard/mysql/advanced/show-mysql-advanced-settings.tsx b/apps/dokploy/components/dashboard/mysql/advanced/show-mysql-advanced-settings.tsx
index 82198a0c..02256967 100644
--- a/apps/dokploy/components/dashboard/mysql/advanced/show-mysql-advanced-settings.tsx
+++ b/apps/dokploy/components/dashboard/mysql/advanced/show-mysql-advanced-settings.tsx
@@ -65,7 +65,7 @@ export const ShowAdvancedMysql = ({ mysqlId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to Update the resources");
+ toast.error("Error updating the resources");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/mysql/advanced/show-mysql-resources.tsx b/apps/dokploy/components/dashboard/mysql/advanced/show-mysql-resources.tsx
index 07ceeae9..2f5a36b5 100644
--- a/apps/dokploy/components/dashboard/mysql/advanced/show-mysql-resources.tsx
+++ b/apps/dokploy/components/dashboard/mysql/advanced/show-mysql-resources.tsx
@@ -71,7 +71,7 @@ export const ShowMysqlResources = ({ mysqlId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to Update the resources");
+ toast.error("Error updating the resources");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/mysql/backups/show-backup-mysql.tsx b/apps/dokploy/components/dashboard/mysql/backups/show-backup-mysql.tsx
index a760fd92..de443c68 100644
--- a/apps/dokploy/components/dashboard/mysql/backups/show-backup-mysql.tsx
+++ b/apps/dokploy/components/dashboard/mysql/backups/show-backup-mysql.tsx
@@ -144,7 +144,7 @@ export const ShowBackupMySql = ({ mysqlId }: Props) => {
})
.catch(() => {
toast.error(
- "Error to Create the manual backup",
+ "Error creating the manual backup",
);
});
}}
diff --git a/apps/dokploy/components/dashboard/mysql/environment/show-mysql-environment.tsx b/apps/dokploy/components/dashboard/mysql/environment/show-mysql-environment.tsx
index 036a63ab..7dfa6aed 100644
--- a/apps/dokploy/components/dashboard/mysql/environment/show-mysql-environment.tsx
+++ b/apps/dokploy/components/dashboard/mysql/environment/show-mysql-environment.tsx
@@ -70,7 +70,7 @@ export const ShowMysqlEnvironment = ({ mysqlId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to add environment");
+ toast.error("Error adding environment");
});
};
diff --git a/apps/dokploy/components/dashboard/mysql/general/deploy-mysql.tsx b/apps/dokploy/components/dashboard/mysql/general/deploy-mysql.tsx
index a773feff..c56c20d5 100644
--- a/apps/dokploy/components/dashboard/mysql/general/deploy-mysql.tsx
+++ b/apps/dokploy/components/dashboard/mysql/general/deploy-mysql.tsx
@@ -55,12 +55,12 @@ export const DeployMysql = ({ mysqlId }: Props) => {
await deploy({
mysqlId,
}).catch(() => {
- toast.error("Error to deploy Database");
+ toast.error("Error deploying Database");
});
await refetch();
})
.catch((e) => {
- toast.error(e.message || "Error to deploy Database");
+ toast.error(e.message || "Error deploying Database");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/mysql/general/reset-mysql.tsx b/apps/dokploy/components/dashboard/mysql/general/reset-mysql.tsx
index 8b64ca9a..5e989671 100644
--- a/apps/dokploy/components/dashboard/mysql/general/reset-mysql.tsx
+++ b/apps/dokploy/components/dashboard/mysql/general/reset-mysql.tsx
@@ -55,7 +55,7 @@ export const ResetMysql = ({ mysqlId, appName }: Props) => {
toast.success("Service Reloaded");
})
.catch(() => {
- toast.error("Error to reload the service");
+ toast.error("Error reloading the service");
});
await refetch();
}}
diff --git a/apps/dokploy/components/dashboard/mysql/general/show-external-mysql-credentials.tsx b/apps/dokploy/components/dashboard/mysql/general/show-external-mysql-credentials.tsx
index 009c8c3a..dc1ca3a7 100644
--- a/apps/dokploy/components/dashboard/mysql/general/show-external-mysql-credentials.tsx
+++ b/apps/dokploy/components/dashboard/mysql/general/show-external-mysql-credentials.tsx
@@ -72,7 +72,7 @@ export const ShowExternalMysqlCredentials = ({ mysqlId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to save the external port");
+ toast.error("Error saving the external port");
});
};
diff --git a/apps/dokploy/components/dashboard/mysql/general/stop-mysql.tsx b/apps/dokploy/components/dashboard/mysql/general/stop-mysql.tsx
index 3cb0d681..31d4c0f6 100644
--- a/apps/dokploy/components/dashboard/mysql/general/stop-mysql.tsx
+++ b/apps/dokploy/components/dashboard/mysql/general/stop-mysql.tsx
@@ -49,10 +49,10 @@ export const StopMysql = ({ mysqlId }: Props) => {
await utils.mysql.one.invalidate({
mysqlId,
});
- toast.success("Application stopped succesfully");
+ toast.success("MySQL stopped successfully");
})
.catch(() => {
- toast.error("Error to stop the Application");
+ toast.error("Error stopping MySQL");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/mysql/start-mysql.tsx b/apps/dokploy/components/dashboard/mysql/start-mysql.tsx
index 60ebc08b..dcf4db22 100644
--- a/apps/dokploy/components/dashboard/mysql/start-mysql.tsx
+++ b/apps/dokploy/components/dashboard/mysql/start-mysql.tsx
@@ -49,10 +49,10 @@ export const StartMysql = ({ mysqlId }: Props) => {
await utils.mysql.one.invalidate({
mysqlId,
});
- toast.success("Database started succesfully");
+ toast.success("Database started successfully");
})
.catch(() => {
- toast.error("Error to start the Database");
+ toast.error("Error starting the Database");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/mysql/update-mysql.tsx b/apps/dokploy/components/dashboard/mysql/update-mysql.tsx
index 37b71b6c..5c1af50c 100644
--- a/apps/dokploy/components/dashboard/mysql/update-mysql.tsx
+++ b/apps/dokploy/components/dashboard/mysql/update-mysql.tsx
@@ -75,13 +75,13 @@ export const UpdateMysql = ({ mysqlId }: Props) => {
description: formData.description || "",
})
.then(() => {
- toast.success("MySQL updated succesfully");
+ toast.success("MySQL updated successfully");
utils.mysql.one.invalidate({
mysqlId: mysqlId,
});
})
.catch(() => {
- toast.error("Error to update the MySQL");
+ toast.error("Error updating MySQL");
})
.finally(() => {});
};
diff --git a/apps/dokploy/components/dashboard/postgres/advanced/show-postgres-advanced-settings.tsx b/apps/dokploy/components/dashboard/postgres/advanced/show-postgres-advanced-settings.tsx
index c8002fa2..d3ad7213 100644
--- a/apps/dokploy/components/dashboard/postgres/advanced/show-postgres-advanced-settings.tsx
+++ b/apps/dokploy/components/dashboard/postgres/advanced/show-postgres-advanced-settings.tsx
@@ -65,7 +65,7 @@ export const ShowAdvancedPostgres = ({ postgresId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to Update the resources");
+ toast.error("Error updating the resources");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/postgres/advanced/show-postgres-resources.tsx b/apps/dokploy/components/dashboard/postgres/advanced/show-postgres-resources.tsx
index 7f224ee2..4bf14788 100644
--- a/apps/dokploy/components/dashboard/postgres/advanced/show-postgres-resources.tsx
+++ b/apps/dokploy/components/dashboard/postgres/advanced/show-postgres-resources.tsx
@@ -71,7 +71,7 @@ export const ShowPostgresResources = ({ postgresId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to Update the resources");
+ toast.error("Error updating the resources");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/postgres/backups/show-backup-postgres.tsx b/apps/dokploy/components/dashboard/postgres/backups/show-backup-postgres.tsx
index c5a36a6a..dad55d1e 100644
--- a/apps/dokploy/components/dashboard/postgres/backups/show-backup-postgres.tsx
+++ b/apps/dokploy/components/dashboard/postgres/backups/show-backup-postgres.tsx
@@ -145,7 +145,7 @@ export const ShowBackupPostgres = ({ postgresId }: Props) => {
})
.catch(() => {
toast.error(
- "Error to Create the manual backup",
+ "Error creating the manual backup",
);
});
}}
diff --git a/apps/dokploy/components/dashboard/postgres/environment/show-postgres-environment.tsx b/apps/dokploy/components/dashboard/postgres/environment/show-postgres-environment.tsx
index b6677695..c2361831 100644
--- a/apps/dokploy/components/dashboard/postgres/environment/show-postgres-environment.tsx
+++ b/apps/dokploy/components/dashboard/postgres/environment/show-postgres-environment.tsx
@@ -70,7 +70,7 @@ export const ShowPostgresEnvironment = ({ postgresId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to add environment");
+ toast.error("Error adding environment");
});
};
diff --git a/apps/dokploy/components/dashboard/postgres/general/deploy-postgres.tsx b/apps/dokploy/components/dashboard/postgres/general/deploy-postgres.tsx
index e329d9f8..1d78d17e 100644
--- a/apps/dokploy/components/dashboard/postgres/general/deploy-postgres.tsx
+++ b/apps/dokploy/components/dashboard/postgres/general/deploy-postgres.tsx
@@ -55,12 +55,12 @@ export const DeployPostgres = ({ postgresId }: Props) => {
await deploy({
postgresId,
}).catch(() => {
- toast.error("Error to deploy Database");
+ toast.error("Error deploying Database");
});
await refetch();
})
.catch((e) => {
- toast.error(e.message || "Error to deploy Database");
+ toast.error(e.message || "Error deploying Database");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/postgres/general/reset-postgres.tsx b/apps/dokploy/components/dashboard/postgres/general/reset-postgres.tsx
index 359c2b77..51108f93 100644
--- a/apps/dokploy/components/dashboard/postgres/general/reset-postgres.tsx
+++ b/apps/dokploy/components/dashboard/postgres/general/reset-postgres.tsx
@@ -55,7 +55,7 @@ export const ResetPostgres = ({ postgresId, appName }: Props) => {
toast.success("Service Reloaded");
})
.catch(() => {
- toast.error("Error to reload the service");
+ toast.error("Error reloading the service");
});
await refetch();
}}
diff --git a/apps/dokploy/components/dashboard/postgres/general/show-external-postgres-credentials.tsx b/apps/dokploy/components/dashboard/postgres/general/show-external-postgres-credentials.tsx
index e1b4369a..e8fff7dc 100644
--- a/apps/dokploy/components/dashboard/postgres/general/show-external-postgres-credentials.tsx
+++ b/apps/dokploy/components/dashboard/postgres/general/show-external-postgres-credentials.tsx
@@ -74,7 +74,7 @@ export const ShowExternalPostgresCredentials = ({ postgresId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to save the external port");
+ toast.error("Error saving the external port");
});
};
diff --git a/apps/dokploy/components/dashboard/postgres/general/stop-postgres.tsx b/apps/dokploy/components/dashboard/postgres/general/stop-postgres.tsx
index 9bf1738f..6e2b4557 100644
--- a/apps/dokploy/components/dashboard/postgres/general/stop-postgres.tsx
+++ b/apps/dokploy/components/dashboard/postgres/general/stop-postgres.tsx
@@ -49,10 +49,10 @@ export const StopPostgres = ({ postgresId }: Props) => {
await utils.postgres.one.invalidate({
postgresId,
});
- toast.success("Application stopped succesfully");
+ toast.success("Postgres stopped successfully");
})
.catch(() => {
- toast.error("Error to stop the Application");
+ toast.error("Error stopping Postgres");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/postgres/start-postgres.tsx b/apps/dokploy/components/dashboard/postgres/start-postgres.tsx
index 8d945082..4b1c7475 100644
--- a/apps/dokploy/components/dashboard/postgres/start-postgres.tsx
+++ b/apps/dokploy/components/dashboard/postgres/start-postgres.tsx
@@ -49,10 +49,10 @@ export const StartPostgres = ({ postgresId }: Props) => {
await utils.postgres.one.invalidate({
postgresId,
});
- toast.success("Database started succesfully");
+ toast.success("Database started successfully");
})
.catch(() => {
- toast.error("Error to start the Database");
+ toast.error("Error starting the Database");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/postgres/update-postgres.tsx b/apps/dokploy/components/dashboard/postgres/update-postgres.tsx
index dcc3e9b1..566fd1d6 100644
--- a/apps/dokploy/components/dashboard/postgres/update-postgres.tsx
+++ b/apps/dokploy/components/dashboard/postgres/update-postgres.tsx
@@ -76,14 +76,14 @@ export const UpdatePostgres = ({ postgresId }: Props) => {
description: formData.description || "",
})
.then(() => {
- toast.success("Postgres updated succesfully");
+ toast.success("Postgres updated successfully");
utils.postgres.one.invalidate({
postgresId: postgresId,
});
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update the postgres");
+ toast.error("Error updating Postgres");
})
.finally(() => {});
};
diff --git a/apps/dokploy/components/dashboard/project/add-application.tsx b/apps/dokploy/components/dashboard/project/add-application.tsx
index 6d9c5b40..2c30df8d 100644
--- a/apps/dokploy/components/dashboard/project/add-application.tsx
+++ b/apps/dokploy/components/dashboard/project/add-application.tsx
@@ -104,7 +104,7 @@ export const AddApplication = ({ projectId, projectName }: Props) => {
});
})
.catch((e) => {
- toast.error("Error to create the service");
+ toast.error("Error creating the service");
});
};
@@ -176,7 +176,7 @@ export const AddApplication = ({ projectId, projectName }: Props) => {
side="top"
>
- If not server is selected, the application will be
+ If no server is selected, the application will be
deployed on the server where the user is logged in.
@@ -229,7 +229,7 @@ export const AddApplication = ({ projectId, projectName }: Props) => {
Description
diff --git a/apps/dokploy/components/dashboard/project/add-compose.tsx b/apps/dokploy/components/dashboard/project/add-compose.tsx
index 4461f3dc..dc753e94 100644
--- a/apps/dokploy/components/dashboard/project/add-compose.tsx
+++ b/apps/dokploy/components/dashboard/project/add-compose.tsx
@@ -108,7 +108,7 @@ export const AddCompose = ({ projectId, projectName }: Props) => {
});
})
.catch(() => {
- toast.error("Error to create the compose");
+ toast.error("Error creating the compose");
});
};
@@ -183,7 +183,7 @@ export const AddCompose = ({ projectId, projectName }: Props) => {
side="top"
>
- If not server is selected, the application will be
+ If no server is selected, the application will be
deployed on the server where the user is logged in.
@@ -262,7 +262,7 @@ export const AddCompose = ({ projectId, projectName }: Props) => {
Description
diff --git a/apps/dokploy/components/dashboard/project/add-database.tsx b/apps/dokploy/components/dashboard/project/add-database.tsx
index 665bcab5..fc86d253 100644
--- a/apps/dokploy/components/dashboard/project/add-database.tsx
+++ b/apps/dokploy/components/dashboard/project/add-database.tsx
@@ -270,7 +270,7 @@ export const AddDatabase = ({ projectId, projectName }: Props) => {
});
})
.catch(() => {
- toast.error("Error to create a database");
+ toast.error("Error creating a database");
});
}
};
diff --git a/apps/dokploy/components/dashboard/project/add-template.tsx b/apps/dokploy/components/dashboard/project/add-template.tsx
index cc37cad4..ae93069a 100644
--- a/apps/dokploy/components/dashboard/project/add-template.tsx
+++ b/apps/dokploy/components/dashboard/project/add-template.tsx
@@ -304,7 +304,7 @@ export const AddTemplate = ({ projectId }: Props) => {
side="top"
>
- If not server is selected, the
+ If ot server is selected, the
application will be deployed on the
server where the user is logged in.
@@ -355,10 +355,10 @@ export const AddTemplate = ({ projectId }: Props) => {
projectId,
});
setOpen(false);
- return `${template.name} template created succesfully`;
+ return `${template.name} template created successfully`;
},
error: (err) => {
- return `Ocurred an error deploying ${template.name} template`;
+ return `An error ocurred deploying ${template.name} template`;
},
});
}}
diff --git a/apps/dokploy/components/dashboard/projects/add.tsx b/apps/dokploy/components/dashboard/projects/add.tsx
index bd8f268f..d1b8cebd 100644
--- a/apps/dokploy/components/dashboard/projects/add.tsx
+++ b/apps/dokploy/components/dashboard/projects/add.tsx
@@ -70,7 +70,7 @@ export const AddProject = () => {
router.push(`/dashboard/project/${data.projectId}`);
})
.catch(() => {
- toast.error("Error to create a project");
+ toast.error("Error creating a project");
});
};
diff --git a/apps/dokploy/components/dashboard/projects/project-enviroment.tsx b/apps/dokploy/components/dashboard/projects/project-environment.tsx
similarity index 92%
rename from apps/dokploy/components/dashboard/projects/project-enviroment.tsx
rename to apps/dokploy/components/dashboard/projects/project-environment.tsx
index 7dd9737c..493813dc 100644
--- a/apps/dokploy/components/dashboard/projects/project-enviroment.tsx
+++ b/apps/dokploy/components/dashboard/projects/project-environment.tsx
@@ -38,7 +38,7 @@ interface Props {
children?: React.ReactNode;
}
-export const ProjectEnviroment = ({ projectId, children }: Props) => {
+export const ProjectEnvironment = ({ projectId, children }: Props) => {
const [isOpen, setIsOpen] = useState(false);
const utils = api.useUtils();
const { mutateAsync, error, isError, isLoading } =
@@ -72,11 +72,11 @@ export const ProjectEnviroment = ({ projectId, children }: Props) => {
projectId: projectId,
})
.then(() => {
- toast.success("Project env updated succesfully");
+ toast.success("Project env updated successfully");
utils.project.all.invalidate();
})
.catch(() => {
- toast.error("Error to update the env");
+ toast.error("Error updating the env");
})
.finally(() => {});
};
@@ -90,13 +90,13 @@ export const ProjectEnviroment = ({ projectId, children }: Props) => {
onSelect={(e) => e.preventDefault()}
>
- Project Enviroment
+ Project Environment
)}
- Project Enviroment
+ Project Environment
Update the env Environment variables that are accessible to all
services of this project. Use this syntax to reference project-level
@@ -120,7 +120,7 @@ export const ProjectEnviroment = ({ projectId, children }: Props) => {
name="env"
render={({ field }) => (
- Enviroment variables
+ Environment variables
{
@@ -195,7 +195,7 @@ export const ShowProjects = () => {
Actions
@@ -247,12 +247,12 @@ export const ShowProjects = () => {
})
.then(() => {
toast.success(
- "Project delete succesfully",
+ "Project deleted successfully",
);
})
.catch(() => {
toast.error(
- "Error to delete this project",
+ "Error deleting this project",
);
})
.finally(() => {
diff --git a/apps/dokploy/components/dashboard/projects/update.tsx b/apps/dokploy/components/dashboard/projects/update.tsx
index 06a6c200..79665c71 100644
--- a/apps/dokploy/components/dashboard/projects/update.tsx
+++ b/apps/dokploy/components/dashboard/projects/update.tsx
@@ -76,12 +76,12 @@ export const UpdateProject = ({ projectId }: Props) => {
description: formData.description || "",
})
.then(() => {
- toast.success("Project updated succesfully");
+ toast.success("Project updated successfully");
utils.project.all.invalidate();
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update the project");
+ toast.error("Error updating the Project");
})
.finally(() => {});
};
@@ -136,7 +136,7 @@ export const UpdateProject = ({ projectId }: Props) => {
Description
diff --git a/apps/dokploy/components/dashboard/redis/advanced/show-redis-advanced-settings.tsx b/apps/dokploy/components/dashboard/redis/advanced/show-redis-advanced-settings.tsx
index 8b595480..ed6cf002 100644
--- a/apps/dokploy/components/dashboard/redis/advanced/show-redis-advanced-settings.tsx
+++ b/apps/dokploy/components/dashboard/redis/advanced/show-redis-advanced-settings.tsx
@@ -65,7 +65,7 @@ export const ShowAdvancedRedis = ({ redisId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to Update the resources");
+ toast.error("Error updating the resources");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/redis/advanced/show-redis-resources.tsx b/apps/dokploy/components/dashboard/redis/advanced/show-redis-resources.tsx
index 1e719399..bf6c8e7e 100644
--- a/apps/dokploy/components/dashboard/redis/advanced/show-redis-resources.tsx
+++ b/apps/dokploy/components/dashboard/redis/advanced/show-redis-resources.tsx
@@ -71,7 +71,7 @@ export const ShowRedisResources = ({ redisId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to Update the resources");
+ toast.error("Error updating the resources");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/redis/environment/show-redis-environment.tsx b/apps/dokploy/components/dashboard/redis/environment/show-redis-environment.tsx
index 3c35333a..b8e7ab59 100644
--- a/apps/dokploy/components/dashboard/redis/environment/show-redis-environment.tsx
+++ b/apps/dokploy/components/dashboard/redis/environment/show-redis-environment.tsx
@@ -70,7 +70,7 @@ export const ShowRedisEnvironment = ({ redisId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to add environment");
+ toast.error("Error adding environment");
});
};
diff --git a/apps/dokploy/components/dashboard/redis/general/deploy-redis.tsx b/apps/dokploy/components/dashboard/redis/general/deploy-redis.tsx
index 131af030..e82c8035 100644
--- a/apps/dokploy/components/dashboard/redis/general/deploy-redis.tsx
+++ b/apps/dokploy/components/dashboard/redis/general/deploy-redis.tsx
@@ -55,12 +55,12 @@ export const DeployRedis = ({ redisId }: Props) => {
await deploy({
redisId,
}).catch(() => {
- toast.error("Error to deploy Database");
+ toast.error("Error deploying Database");
});
await refetch();
})
.catch((e) => {
- toast.error(e.message || "Error to deploy Database");
+ toast.error(e.message || "Error deploying Database");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/redis/general/reset-redis.tsx b/apps/dokploy/components/dashboard/redis/general/reset-redis.tsx
index 6ec4295e..9f411afb 100644
--- a/apps/dokploy/components/dashboard/redis/general/reset-redis.tsx
+++ b/apps/dokploy/components/dashboard/redis/general/reset-redis.tsx
@@ -55,7 +55,7 @@ export const ResetRedis = ({ redisId, appName }: Props) => {
toast.success("Service Reloaded");
})
.catch(() => {
- toast.error("Error to reload the service");
+ toast.error("Error reloading the service");
});
await refetch();
}}
diff --git a/apps/dokploy/components/dashboard/redis/general/show-external-redis-credentials.tsx b/apps/dokploy/components/dashboard/redis/general/show-external-redis-credentials.tsx
index bcb26267..40ae0574 100644
--- a/apps/dokploy/components/dashboard/redis/general/show-external-redis-credentials.tsx
+++ b/apps/dokploy/components/dashboard/redis/general/show-external-redis-credentials.tsx
@@ -73,7 +73,7 @@ export const ShowExternalRedisCredentials = ({ redisId }: Props) => {
await refetch();
})
.catch(() => {
- toast.error("Error to save the external port");
+ toast.error("Error saving the external port");
});
};
diff --git a/apps/dokploy/components/dashboard/redis/general/stop-redis.tsx b/apps/dokploy/components/dashboard/redis/general/stop-redis.tsx
index 67cc5e35..31ab9992 100644
--- a/apps/dokploy/components/dashboard/redis/general/stop-redis.tsx
+++ b/apps/dokploy/components/dashboard/redis/general/stop-redis.tsx
@@ -49,10 +49,10 @@ export const StopRedis = ({ redisId }: Props) => {
await utils.redis.one.invalidate({
redisId,
});
- toast.success("Application stopped succesfully");
+ toast.success("Redis stopped successfully");
})
.catch(() => {
- toast.error("Error to stop the Application");
+ toast.error("Error stopping Redis");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/redis/start-redis.tsx b/apps/dokploy/components/dashboard/redis/start-redis.tsx
index e0a4aa97..e3735123 100644
--- a/apps/dokploy/components/dashboard/redis/start-redis.tsx
+++ b/apps/dokploy/components/dashboard/redis/start-redis.tsx
@@ -49,10 +49,10 @@ export const StartRedis = ({ redisId }: Props) => {
await utils.redis.one.invalidate({
redisId,
});
- toast.success("Database started succesfully");
+ toast.success("Redis started successfully");
})
.catch(() => {
- toast.error("Error to start the Database");
+ toast.error("Error starting Redis");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/redis/update-redis.tsx b/apps/dokploy/components/dashboard/redis/update-redis.tsx
index fdc08a73..866b2191 100644
--- a/apps/dokploy/components/dashboard/redis/update-redis.tsx
+++ b/apps/dokploy/components/dashboard/redis/update-redis.tsx
@@ -75,13 +75,13 @@ export const UpdateRedis = ({ redisId }: Props) => {
description: formData.description || "",
})
.then(() => {
- toast.success("Redis updated succesfully");
+ toast.success("Redis updated successfully");
utils.redis.one.invalidate({
redisId: redisId,
});
})
.catch(() => {
- toast.error("Error to update the redis");
+ toast.error("Error updating Redis");
})
.finally(() => {});
};
diff --git a/apps/dokploy/components/dashboard/settings/certificates/add-certificate.tsx b/apps/dokploy/components/dashboard/settings/certificates/add-certificate.tsx
index 17314123..e72ea39a 100644
--- a/apps/dokploy/components/dashboard/settings/certificates/add-certificate.tsx
+++ b/apps/dokploy/components/dashboard/settings/certificates/add-certificate.tsx
@@ -91,7 +91,7 @@ export const AddCertificate = () => {
await utils.certificates.all.invalidate();
})
.catch(() => {
- toast.error("Error to create the Certificate");
+ toast.error("Error creating the Certificate");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/settings/certificates/delete-certificate.tsx b/apps/dokploy/components/dashboard/settings/certificates/delete-certificate.tsx
index 907b1dc0..6b2c760a 100644
--- a/apps/dokploy/components/dashboard/settings/certificates/delete-certificate.tsx
+++ b/apps/dokploy/components/dashboard/settings/certificates/delete-certificate.tsx
@@ -46,10 +46,10 @@ export const DeleteCertificate = ({ certificateId }: Props) => {
.then(async () => {
utils.certificates.all.invalidate();
utils.auth.get.invalidate();
- toast.success("Certificate delete succesfully");
+ toast.success("Certificate deleted successfully");
})
.catch(() => {
- toast.error("Error to delete the Certificate");
+ toast.error("Error deleting Certificate");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/cluster/nodes/workers/delete-worker.tsx b/apps/dokploy/components/dashboard/settings/cluster/nodes/workers/delete-worker.tsx
index ab2d4d77..654c10c7 100644
--- a/apps/dokploy/components/dashboard/settings/cluster/nodes/workers/delete-worker.tsx
+++ b/apps/dokploy/components/dashboard/settings/cluster/nodes/workers/delete-worker.tsx
@@ -46,10 +46,10 @@ export const DeleteWorker = ({ nodeId }: Props) => {
})
.then(async () => {
utils.cluster.getNodes.invalidate();
- toast.success("Worker deleted succesfully");
+ toast.success("Worker deleted successfully");
})
.catch(() => {
- toast.error("Error to delete the worker");
+ toast.error("Error deleting Worker");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/cluster/registry/add-docker-registry.tsx b/apps/dokploy/components/dashboard/settings/cluster/registry/add-docker-registry.tsx
index 1ee461d2..149ef33a 100644
--- a/apps/dokploy/components/dashboard/settings/cluster/registry/add-docker-registry.tsx
+++ b/apps/dokploy/components/dashboard/settings/cluster/registry/add-docker-registry.tsx
@@ -103,7 +103,7 @@ export const AddRegistry = () => {
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to add a registry");
+ toast.error("Error adding a registry");
});
};
@@ -290,7 +290,7 @@ export const AddRegistry = () => {
}
})
.catch(() => {
- toast.error("Error to test the registry");
+ toast.error("Error testing the registry");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/cluster/registry/delete-registry.tsx b/apps/dokploy/components/dashboard/settings/cluster/registry/delete-registry.tsx
index 952a1831..38ecb7be 100644
--- a/apps/dokploy/components/dashboard/settings/cluster/registry/delete-registry.tsx
+++ b/apps/dokploy/components/dashboard/settings/cluster/registry/delete-registry.tsx
@@ -48,7 +48,7 @@ export const DeleteRegistry = ({ registryId }: Props) => {
toast.success("Registry deleted");
})
.catch(() => {
- toast.error("Error to delete the registry");
+ toast.error("Error deleting the registry");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/cluster/registry/update-docker-registry.tsx b/apps/dokploy/components/dashboard/settings/cluster/registry/update-docker-registry.tsx
index 9c5f281e..044f1991 100644
--- a/apps/dokploy/components/dashboard/settings/cluster/registry/update-docker-registry.tsx
+++ b/apps/dokploy/components/dashboard/settings/cluster/registry/update-docker-registry.tsx
@@ -122,7 +122,7 @@ export const UpdateDockerRegistry = ({ registryId }: Props) => {
await utils.registry.all.invalidate();
})
.catch(() => {
- toast.error("Error to update the registry");
+ toast.error("Error updating the registry");
});
};
return (
@@ -303,7 +303,7 @@ export const UpdateDockerRegistry = ({ registryId }: Props) => {
}
})
.catch(() => {
- toast.error("Error to test the registry");
+ toast.error("Error testing the registry");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/destination/add-destination.tsx b/apps/dokploy/components/dashboard/settings/destination/add-destination.tsx
index 836bf025..e585bdd1 100644
--- a/apps/dokploy/components/dashboard/settings/destination/add-destination.tsx
+++ b/apps/dokploy/components/dashboard/settings/destination/add-destination.tsx
@@ -89,7 +89,7 @@ export const AddDestination = () => {
await utils.destination.all.invalidate();
})
.catch(() => {
- toast.error("Error to create the Destination");
+ toast.error("Error creating the Destination");
});
};
return (
@@ -306,7 +306,7 @@ export const AddDestination = () => {
toast.success("Connection Success");
})
.catch((e) => {
- toast.error("Error to connect the provider", {
+ toast.error("Error connecting the provider", {
description: e.message,
});
});
@@ -334,7 +334,7 @@ export const AddDestination = () => {
toast.success("Connection Success");
})
.catch(() => {
- toast.error("Error to connect the provider");
+ toast.error("Error connecting the provider");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/destination/delete-destination.tsx b/apps/dokploy/components/dashboard/settings/destination/delete-destination.tsx
index 7069bde7..1380a822 100644
--- a/apps/dokploy/components/dashboard/settings/destination/delete-destination.tsx
+++ b/apps/dokploy/components/dashboard/settings/destination/delete-destination.tsx
@@ -45,10 +45,10 @@ export const DeleteDestination = ({ destinationId }: Props) => {
})
.then(() => {
utils.destination.all.invalidate();
- toast.success("Destination delete succesfully");
+ toast.success("Destination deleted successfully");
})
.catch(() => {
- toast.error("Error to delete destination");
+ toast.error("Error deleting Destination");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/destination/update-destination.tsx b/apps/dokploy/components/dashboard/settings/destination/update-destination.tsx
index aba6accb..3ed26fef 100644
--- a/apps/dokploy/components/dashboard/settings/destination/update-destination.tsx
+++ b/apps/dokploy/components/dashboard/settings/destination/update-destination.tsx
@@ -113,7 +113,7 @@ export const UpdateDestination = ({ destinationId }: Props) => {
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update the Destination");
+ toast.error("Error updating the Destination");
});
};
return (
@@ -335,7 +335,7 @@ export const UpdateDestination = ({ destinationId }: Props) => {
toast.success("Connection Success");
})
.catch(() => {
- toast.error("Error to connect the provider");
+ toast.error("Error connecting the provider");
});
}}
>
@@ -361,7 +361,7 @@ export const UpdateDestination = ({ destinationId }: Props) => {
toast.success("Connection Success");
})
.catch(() => {
- toast.error("Error to connect the provider");
+ toast.error("Error connecting the provider");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/git/bitbucket/edit-bitbucket-provider.tsx b/apps/dokploy/components/dashboard/settings/git/bitbucket/edit-bitbucket-provider.tsx
index e7298de1..94bd8378 100644
--- a/apps/dokploy/components/dashboard/settings/git/bitbucket/edit-bitbucket-provider.tsx
+++ b/apps/dokploy/components/dashboard/settings/git/bitbucket/edit-bitbucket-provider.tsx
@@ -89,7 +89,7 @@ export const EditBitbucketProvider = ({ bitbucketId }: Props) => {
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update Bitbucket");
+ toast.error("Error updating Bitbucket");
});
};
diff --git a/apps/dokploy/components/dashboard/settings/git/github/edit-github-provider.tsx b/apps/dokploy/components/dashboard/settings/git/github/edit-github-provider.tsx
index 455369a2..607fb7b1 100644
--- a/apps/dokploy/components/dashboard/settings/git/github/edit-github-provider.tsx
+++ b/apps/dokploy/components/dashboard/settings/git/github/edit-github-provider.tsx
@@ -77,7 +77,7 @@ export const EditGithubProvider = ({ githubId }: Props) => {
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update Github");
+ toast.error("Error updating Github");
});
};
diff --git a/apps/dokploy/components/dashboard/settings/git/gitlab/edit-gitlab-provider.tsx b/apps/dokploy/components/dashboard/settings/git/gitlab/edit-gitlab-provider.tsx
index 4ed202d8..b9afc2c3 100644
--- a/apps/dokploy/components/dashboard/settings/git/gitlab/edit-gitlab-provider.tsx
+++ b/apps/dokploy/components/dashboard/settings/git/gitlab/edit-gitlab-provider.tsx
@@ -90,7 +90,7 @@ export const EditGitlabProvider = ({ gitlabId }: Props) => {
refetch();
})
.catch(() => {
- toast.error("Error to update Gitlab");
+ toast.error("Error updating Gitlab");
});
};
diff --git a/apps/dokploy/components/dashboard/settings/git/remove-git-provider.tsx b/apps/dokploy/components/dashboard/settings/git/remove-git-provider.tsx
index 26b3b9b2..d5ca4096 100644
--- a/apps/dokploy/components/dashboard/settings/git/remove-git-provider.tsx
+++ b/apps/dokploy/components/dashboard/settings/git/remove-git-provider.tsx
@@ -70,10 +70,10 @@ export const RemoveGitProvider = ({
})
.then(async () => {
utils.gitProvider.getAll.invalidate();
- toast.success("Git Provider deleted succesfully.");
+ toast.success("Git Provider deleted successfully.");
})
.catch(() => {
- toast.error("Error to delete your git provider.");
+ toast.error("Error deleting Git provider.");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/notifications/add-notification.tsx b/apps/dokploy/components/dashboard/settings/notifications/add-notification.tsx
index 639ea6ea..cc015096 100644
--- a/apps/dokploy/components/dashboard/settings/notifications/add-notification.tsx
+++ b/apps/dokploy/components/dashboard/settings/notifications/add-notification.tsx
@@ -229,7 +229,7 @@ export const AddNotification = () => {
await utils.notification.all.invalidate();
})
.catch(() => {
- toast.error("Error to create a notification");
+ toast.error("Error creating a notification");
});
}
};
@@ -748,7 +748,7 @@ export const AddNotification = () => {
}
toast.success("Connection Success");
} catch (err) {
- toast.error("Error to test the provider");
+ toast.error("Error testing the provider");
}
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/notifications/delete-notification.tsx b/apps/dokploy/components/dashboard/settings/notifications/delete-notification.tsx
index 02c95d8b..de4be2a1 100644
--- a/apps/dokploy/components/dashboard/settings/notifications/delete-notification.tsx
+++ b/apps/dokploy/components/dashboard/settings/notifications/delete-notification.tsx
@@ -50,10 +50,10 @@ export const DeleteNotification = ({ notificationId }: Props) => {
})
.then(() => {
utils.notification.all.invalidate();
- toast.success("Notification delete succesfully");
+ toast.success("Notification deleted successfully");
})
.catch(() => {
- toast.error("Error to delete notification");
+ toast.error("Error deleting notification");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/notifications/update-notification.tsx b/apps/dokploy/components/dashboard/settings/notifications/update-notification.tsx
index e9909b2b..3d2ee0c4 100644
--- a/apps/dokploy/components/dashboard/settings/notifications/update-notification.tsx
+++ b/apps/dokploy/components/dashboard/settings/notifications/update-notification.tsx
@@ -213,7 +213,7 @@ export const UpdateNotification = ({ notificationId }: Props) => {
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update a notification");
+ toast.error("Error updating a notification");
});
}
};
@@ -710,7 +710,7 @@ export const UpdateNotification = ({ notificationId }: Props) => {
}
toast.success("Connection Success");
} catch (err) {
- toast.error("Error to test the provider");
+ toast.error("Error testing the provider");
}
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/profile/disable-2fa.tsx b/apps/dokploy/components/dashboard/settings/profile/disable-2fa.tsx
index faa3a6e2..2850332e 100644
--- a/apps/dokploy/components/dashboard/settings/profile/disable-2fa.tsx
+++ b/apps/dokploy/components/dashboard/settings/profile/disable-2fa.tsx
@@ -40,7 +40,7 @@ export const Disable2FA = () => {
toast.success("2FA Disabled");
})
.catch(() => {
- toast.error("Error to disable 2FA");
+ toast.error("Error disabling 2FA");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/profile/enable-2fa.tsx b/apps/dokploy/components/dashboard/settings/profile/enable-2fa.tsx
index 8c2a369f..cf5910b8 100644
--- a/apps/dokploy/components/dashboard/settings/profile/enable-2fa.tsx
+++ b/apps/dokploy/components/dashboard/settings/profile/enable-2fa.tsx
@@ -71,7 +71,7 @@ export const Enable2FA = () => {
utils.auth.get.invalidate();
})
.catch(() => {
- toast.error("Error to verify the 2FA");
+ toast.error("Error verifying the 2FA");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/settings/profile/profile-form.tsx b/apps/dokploy/components/dashboard/settings/profile/profile-form.tsx
index 191c1936..82442900 100644
--- a/apps/dokploy/components/dashboard/settings/profile/profile-form.tsx
+++ b/apps/dokploy/components/dashboard/settings/profile/profile-form.tsx
@@ -107,7 +107,7 @@ export const ProfileForm = () => {
form.reset();
})
.catch(() => {
- toast.error("Error to Update the profile");
+ toast.error("Error updating the profile");
});
};
diff --git a/apps/dokploy/components/dashboard/settings/servers/actions/show-storage-actions.tsx b/apps/dokploy/components/dashboard/settings/servers/actions/show-storage-actions.tsx
index 7163332d..c45c0c8b 100644
--- a/apps/dokploy/components/dashboard/settings/servers/actions/show-storage-actions.tsx
+++ b/apps/dokploy/components/dashboard/settings/servers/actions/show-storage-actions.tsx
@@ -85,7 +85,7 @@ export const ShowStorageActions = ({ serverId }: Props) => {
toast.success("Cleaned images");
})
.catch(() => {
- toast.error("Error to clean images");
+ toast.error("Error cleaning images");
});
}}
>
@@ -103,7 +103,7 @@ export const ShowStorageActions = ({ serverId }: Props) => {
toast.success("Cleaned volumes");
})
.catch(() => {
- toast.error("Error to clean volumes");
+ toast.error("Error cleaning volumes");
});
}}
>
@@ -122,7 +122,7 @@ export const ShowStorageActions = ({ serverId }: Props) => {
toast.success("Stopped containers cleaned");
})
.catch(() => {
- toast.error("Error to clean stopped containers");
+ toast.error("Error cleaning stopped containers");
});
}}
>
@@ -141,7 +141,7 @@ export const ShowStorageActions = ({ serverId }: Props) => {
toast.success("Cleaned Docker Builder");
})
.catch(() => {
- toast.error("Error to clean Docker Builder");
+ toast.error("Error cleaning Docker Builder");
});
}}
>
@@ -158,7 +158,7 @@ export const ShowStorageActions = ({ serverId }: Props) => {
toast.success("Cleaned Monitoring");
})
.catch(() => {
- toast.error("Error to clean Monitoring");
+ toast.error("Error cleaning Monitoring");
});
}}
>
@@ -178,7 +178,7 @@ export const ShowStorageActions = ({ serverId }: Props) => {
toast.success("Cleaned all");
})
.catch(() => {
- toast.error("Error to clean all");
+ toast.error("Error cleaning all");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/servers/actions/show-traefik-actions.tsx b/apps/dokploy/components/dashboard/settings/servers/actions/show-traefik-actions.tsx
index 72854f93..17a6ae75 100644
--- a/apps/dokploy/components/dashboard/settings/servers/actions/show-traefik-actions.tsx
+++ b/apps/dokploy/components/dashboard/settings/servers/actions/show-traefik-actions.tsx
@@ -72,7 +72,7 @@ export const ShowTraefikActions = ({ serverId }: Props) => {
toast.success("Traefik Reloaded");
})
.catch(() => {
- toast.error("Error to reload the traefik");
+ toast.error("Error reloading Traefik");
});
}}
className="cursor-pointer"
diff --git a/apps/dokploy/components/dashboard/settings/servers/add-server.tsx b/apps/dokploy/components/dashboard/settings/servers/add-server.tsx
index b8413303..79c7b209 100644
--- a/apps/dokploy/components/dashboard/settings/servers/add-server.tsx
+++ b/apps/dokploy/components/dashboard/settings/servers/add-server.tsx
@@ -105,7 +105,7 @@ export const AddServer = () => {
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to create a server");
+ toast.error("Error creating a server");
});
};
diff --git a/apps/dokploy/components/dashboard/settings/servers/show-servers.tsx b/apps/dokploy/components/dashboard/settings/servers/show-servers.tsx
index d45a3b77..ef63597c 100644
--- a/apps/dokploy/components/dashboard/settings/servers/show-servers.tsx
+++ b/apps/dokploy/components/dashboard/settings/servers/show-servers.tsx
@@ -233,7 +233,7 @@ export const ShowServers = () => {
.then(() => {
refetch();
toast.success(
- `Server ${server.name} deleted succesfully`,
+ `Server ${server.name} deleted successfully`,
);
})
.catch((err) => {
diff --git a/apps/dokploy/components/dashboard/settings/servers/update-server.tsx b/apps/dokploy/components/dashboard/settings/servers/update-server.tsx
index 16eb5ba7..7de7a0e2 100644
--- a/apps/dokploy/components/dashboard/settings/servers/update-server.tsx
+++ b/apps/dokploy/components/dashboard/settings/servers/update-server.tsx
@@ -111,7 +111,7 @@ export const UpdateServer = ({ serverId }: Props) => {
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update a server");
+ toast.error("Error updating a server");
});
};
diff --git a/apps/dokploy/components/dashboard/settings/servers/welcome-stripe/create-server.tsx b/apps/dokploy/components/dashboard/settings/servers/welcome-stripe/create-server.tsx
index 39edad71..c8f2fe6b 100644
--- a/apps/dokploy/components/dashboard/settings/servers/welcome-stripe/create-server.tsx
+++ b/apps/dokploy/components/dashboard/settings/servers/welcome-stripe/create-server.tsx
@@ -103,7 +103,7 @@ export const CreateServer = ({ stepper }: Props) => {
stepper.next();
})
.catch(() => {
- toast.error("Error to create a server");
+ toast.error("Error creating a server");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/settings/ssh-keys/add-ssh-key.tsx b/apps/dokploy/components/dashboard/settings/ssh-keys/add-ssh-key.tsx
index 2d7e3d15..973a2004 100644
--- a/apps/dokploy/components/dashboard/settings/ssh-keys/add-ssh-key.tsx
+++ b/apps/dokploy/components/dashboard/settings/ssh-keys/add-ssh-key.tsx
@@ -61,7 +61,7 @@ export const AddSSHKey = ({ children }: Props) => {
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to create the SSH key");
+ toast.error("Error creating the SSH key");
});
};
@@ -74,7 +74,7 @@ export const AddSSHKey = ({ children }: Props) => {
form.setValue("publicKey", data.publicKey);
})
.catch(() => {
- toast.error("Error to generate the SSH Key");
+ toast.error("Error generating the SSH Key");
});
return (
diff --git a/apps/dokploy/components/dashboard/settings/ssh-keys/delete-ssh-key.tsx b/apps/dokploy/components/dashboard/settings/ssh-keys/delete-ssh-key.tsx
index 698bae94..eb6c32ae 100644
--- a/apps/dokploy/components/dashboard/settings/ssh-keys/delete-ssh-key.tsx
+++ b/apps/dokploy/components/dashboard/settings/ssh-keys/delete-ssh-key.tsx
@@ -48,7 +48,7 @@ export const DeleteSSHKey = ({ sshKeyId }: Props) => {
toast.success("SSH Key delete successfully");
})
.catch(() => {
- toast.error("Error to delete SSH key");
+ toast.error("Error deleting SSH key");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/ssh-keys/update-ssh-key.tsx b/apps/dokploy/components/dashboard/settings/ssh-keys/update-ssh-key.tsx
index e763ee92..36cf4ef2 100644
--- a/apps/dokploy/components/dashboard/settings/ssh-keys/update-ssh-key.tsx
+++ b/apps/dokploy/components/dashboard/settings/ssh-keys/update-ssh-key.tsx
@@ -73,7 +73,7 @@ export const UpdateSSHKey = ({ children, sshKeyId = "" }: Props) => {
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update the SSH key");
+ toast.error("Error updating the SSH key");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/settings/users/add-permissions.tsx b/apps/dokploy/components/dashboard/settings/users/add-permissions.tsx
index 3684c814..bb82c982 100644
--- a/apps/dokploy/components/dashboard/settings/users/add-permissions.tsx
+++ b/apps/dokploy/components/dashboard/settings/users/add-permissions.tsx
@@ -110,7 +110,7 @@ export const AddUserPermissions = ({ userId }: Props) => {
refetch();
})
.catch(() => {
- toast.error("Error to update the permissions");
+ toast.error("Error updating the permissions");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/settings/users/add-user.tsx b/apps/dokploy/components/dashboard/settings/users/add-user.tsx
index 1643f37f..6a7b4fac 100644
--- a/apps/dokploy/components/dashboard/settings/users/add-user.tsx
+++ b/apps/dokploy/components/dashboard/settings/users/add-user.tsx
@@ -61,7 +61,7 @@ export const AddUser = () => {
await utils.user.all.invalidate();
})
.catch(() => {
- toast.error("Error to create the invitation");
+ toast.error("Error creating the invitation");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/settings/users/delete-user.tsx b/apps/dokploy/components/dashboard/settings/users/delete-user.tsx
index e8f708da..795f0b85 100644
--- a/apps/dokploy/components/dashboard/settings/users/delete-user.tsx
+++ b/apps/dokploy/components/dashboard/settings/users/delete-user.tsx
@@ -48,10 +48,10 @@ export const DeleteUser = ({ authId }: Props) => {
})
.then(async () => {
utils.user.all.invalidate();
- toast.success("User delete succesfully");
+ toast.success("User deleted successfully");
})
.catch(() => {
- toast.error("Error to delete the user");
+ toast.error("Error deleting User");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/web-domain.tsx b/apps/dokploy/components/dashboard/settings/web-domain.tsx
index 00f54904..ebdec5dc 100644
--- a/apps/dokploy/components/dashboard/settings/web-domain.tsx
+++ b/apps/dokploy/components/dashboard/settings/web-domain.tsx
@@ -84,7 +84,7 @@ export const WebDomain = () => {
toast.success("Domain Assigned");
})
.catch(() => {
- toast.error("Error to assign the domain");
+ toast.error("Error assigning the domain");
});
};
return (
diff --git a/apps/dokploy/components/dashboard/settings/web-server/edit-traefik-env.tsx b/apps/dokploy/components/dashboard/settings/web-server/edit-traefik-env.tsx
index 838ee849..07dc2407 100644
--- a/apps/dokploy/components/dashboard/settings/web-server/edit-traefik-env.tsx
+++ b/apps/dokploy/components/dashboard/settings/web-server/edit-traefik-env.tsx
@@ -71,7 +71,7 @@ export const EditTraefikEnv = ({ children, serverId }: Props) => {
toast.success("Traefik Env Updated");
})
.catch(() => {
- toast.error("Error to update the traefik env");
+ toast.error("Error updating the Traefik env");
});
};
diff --git a/apps/dokploy/components/dashboard/settings/web-server/remove-ssh-private-key.tsx b/apps/dokploy/components/dashboard/settings/web-server/remove-ssh-private-key.tsx
index 8f10537a..31784fde 100644
--- a/apps/dokploy/components/dashboard/settings/web-server/remove-ssh-private-key.tsx
+++ b/apps/dokploy/components/dashboard/settings/web-server/remove-ssh-private-key.tsx
@@ -38,11 +38,11 @@ export const RemoveSSHPrivateKey = () => {
onClick={async () => {
await mutateAsync()
.then(() => {
- toast.success("SSH private key deleted succesfully");
+ toast.success("SSH private key deleted successfully");
utils.auth.get.invalidate();
})
.catch(() => {
- toast.error("Error to delete the ssh private key");
+ toast.error("Error deleting the SSH private key");
});
}}
>
diff --git a/apps/dokploy/components/dashboard/settings/web-server/update-server-ip.tsx b/apps/dokploy/components/dashboard/settings/web-server/update-server-ip.tsx
index 264b10ac..dd3f81fd 100644
--- a/apps/dokploy/components/dashboard/settings/web-server/update-server-ip.tsx
+++ b/apps/dokploy/components/dashboard/settings/web-server/update-server-ip.tsx
@@ -85,7 +85,7 @@ export const UpdateServerIp = ({ children, serverId }: Props) => {
setIsOpen(false);
})
.catch(() => {
- toast.error("Error to update the IP of the server");
+ toast.error("Error updating the IP of the server");
});
};
diff --git a/apps/dokploy/pages/api/deploy/[refreshToken].ts b/apps/dokploy/pages/api/deploy/[refreshToken].ts
index bcedc370..b5fb2197 100644
--- a/apps/dokploy/pages/api/deploy/[refreshToken].ts
+++ b/apps/dokploy/pages/api/deploy/[refreshToken].ts
@@ -106,14 +106,14 @@ export default async function handler(
},
);
} catch (error) {
- res.status(400).json({ message: "Error To Deploy Application", error });
+ res.status(400).json({ message: "Error deploying Application", error });
return;
}
- res.status(200).json({ message: "App Deployed Succesfully" });
+ res.status(200).json({ message: "Application deployed successfully" });
} catch (error) {
console.log(error);
- res.status(400).json({ message: "Error To Deploy Application", error });
+ res.status(400).json({ message: "Error deploying Application", error });
}
}
diff --git a/apps/dokploy/pages/api/deploy/compose/[refreshToken].ts b/apps/dokploy/pages/api/deploy/compose/[refreshToken].ts
index 14a010f2..2f4caecd 100644
--- a/apps/dokploy/pages/api/deploy/compose/[refreshToken].ts
+++ b/apps/dokploy/pages/api/deploy/compose/[refreshToken].ts
@@ -82,13 +82,13 @@ export default async function handler(
},
);
} catch (error) {
- res.status(400).json({ message: "Error To Deploy Compose", error });
+ res.status(400).json({ message: "Error deploying Compose", error });
return;
}
- res.status(200).json({ message: "Compose Deployed Succesfully" });
+ res.status(200).json({ message: "Compose deployed successfully" });
} catch (error) {
console.log(error);
- res.status(400).json({ message: "Error To Deploy Compose", error });
+ res.status(400).json({ message: "Error deploying Compose", error });
}
}
diff --git a/apps/dokploy/pages/api/deploy/github.ts b/apps/dokploy/pages/api/deploy/github.ts
index 45923762..9cefe4cf 100644
--- a/apps/dokploy/pages/api/deploy/github.ts
+++ b/apps/dokploy/pages/api/deploy/github.ts
@@ -159,7 +159,7 @@ export default async function handler(
}
res.status(200).json({ message: `Deployed ${totalApps} apps` });
} catch (error) {
- res.status(400).json({ message: "Error To Deploy Application", error });
+ res.status(400).json({ message: "Error deploying Application", error });
}
} else if (req.headers["x-github-event"] === "pull_request") {
const prId = githubBody?.pull_request?.id;
diff --git a/apps/dokploy/pages/dashboard/project/[projectId].tsx b/apps/dokploy/pages/dashboard/project/[projectId].tsx
index f39b57e7..3c459679 100644
--- a/apps/dokploy/pages/dashboard/project/[projectId].tsx
+++ b/apps/dokploy/pages/dashboard/project/[projectId].tsx
@@ -2,7 +2,7 @@ import { AddApplication } from "@/components/dashboard/project/add-application";
import { AddCompose } from "@/components/dashboard/project/add-compose";
import { AddDatabase } from "@/components/dashboard/project/add-database";
import { AddTemplate } from "@/components/dashboard/project/add-template";
-import { ProjectEnviroment } from "@/components/dashboard/projects/project-enviroment";
+import { ProjectEnvironment } from "@/components/dashboard/projects/project-environment";
import {
MariadbIcon,
MongodbIcon,
@@ -204,9 +204,9 @@ const Project = (
{(auth?.rol === "admin" || user?.canCreateServices) && (
-
-
-
+
+
+