mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
Spelling and grammar corrections
This commit is contained in:
@@ -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}
|
||||
/>
|
||||
|
||||
@@ -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}
|
||||
/>
|
||||
|
||||
@@ -270,7 +270,7 @@ export const AddDatabase = ({ projectId, projectName }: Props) => {
|
||||
});
|
||||
})
|
||||
.catch(() => {
|
||||
toast.error("Error to create a database");
|
||||
toast.error("Error creating a database");
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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`;
|
||||
},
|
||||
});
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user