Spelling and grammar corrections

This commit is contained in:
Dom
2024-12-29 22:34:57 +10:00
parent ba45b27608
commit 2af8d6f565
208 changed files with 397 additions and 397 deletions

View File

@@ -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"
>
<span>
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.
</span>
</TooltipContent>
@@ -229,7 +229,7 @@ export const AddApplication = ({ projectId, projectName }: Props) => {
<FormLabel>Description</FormLabel>
<FormControl>
<Textarea
placeholder="Description about your service..."
placeholder="Description of your service..."
className="resize-none"
{...field}
/>

View File

@@ -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"
>
<span>
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.
</span>
</TooltipContent>
@@ -262,7 +262,7 @@ export const AddCompose = ({ projectId, projectName }: Props) => {
<FormLabel>Description</FormLabel>
<FormControl>
<Textarea
placeholder="Description about your service..."
placeholder="Description of your service..."
className="resize-none"
{...field}
/>

View File

@@ -270,7 +270,7 @@ export const AddDatabase = ({ projectId, projectName }: Props) => {
});
})
.catch(() => {
toast.error("Error to create a database");
toast.error("Error creating a database");
});
}
};

View File

@@ -304,7 +304,7 @@ export const AddTemplate = ({ projectId }: Props) => {
side="top"
>
<span>
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.
</span>
@@ -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`;
},
});
}}