From 546d6b87eae340d3fd7201e9b65d85515b3d88ea Mon Sep 17 00:00:00 2001 From: Dominik Koch Date: Fri, 11 Oct 2024 20:03:20 +0200 Subject: [PATCH 1/2] fix: get rid of typos and fix grammar --- .../advanced/show-application-advanced-settings.tsx | 2 +- .../dashboard/application/domains/show-domains.tsx | 2 +- .../components/dashboard/compose/domains/show-domains.tsx | 2 +- .../dashboard/mariadb/advanced/show-mariadb-resources.tsx | 2 +- .../dashboard/mariadb/backups/show-backup-mariadb.tsx | 4 ++-- .../dashboard/mongo/advanced/show-mongo-resources.tsx | 2 +- .../dashboard/mongo/backups/show-backup-mongo.tsx | 6 +++--- .../components/dashboard/mongo/volumes/show-volumes.tsx | 2 +- .../dokploy/components/dashboard/monitoring/docker/show.tsx | 2 +- .../dashboard/mysql/advanced/show-mysql-resources.tsx | 2 +- .../dashboard/mysql/backups/show-backup-mysql.tsx | 6 +++--- .../dashboard/postgres/advanced/show-postgres-resources.tsx | 2 +- .../dashboard/postgres/backups/show-backup-postgres.tsx | 6 +++--- .../dashboard/redis/advanced/show-redis-resources.tsx | 2 +- .../dashboard/settings/certificates/show-certificates.tsx | 2 +- .../dashboard/settings/cluster/registry/show-registry.tsx | 2 +- .../dashboard/settings/destination/show-destinations.tsx | 2 +- .../dashboard/settings/notifications/show-notifications.tsx | 2 +- .../components/dashboard/settings/profile/profile-form.tsx | 2 +- apps/dokploy/components/dashboard/settings/web-domain.tsx | 2 +- 20 files changed, 27 insertions(+), 27 deletions(-) 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 56513465..e77be2d1 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 @@ -80,7 +80,7 @@ export const ShowApplicationResources = ({ applicationId }: Props) => { Resources - If you want to decrease or increase the resources to a specific + If you want to decrease or increase the resources to a specific. application or database diff --git a/apps/dokploy/components/dashboard/application/domains/show-domains.tsx b/apps/dokploy/components/dashboard/application/domains/show-domains.tsx index 90112e3c..8ca59061 100644 --- a/apps/dokploy/components/dashboard/application/domains/show-domains.tsx +++ b/apps/dokploy/components/dashboard/application/domains/show-domains.tsx @@ -52,7 +52,7 @@ export const ShowDomains = ({ applicationId }: Props) => {
- To access to the application is required to set at least 1 + To access the application it is required to set at least 1 domain
diff --git a/apps/dokploy/components/dashboard/compose/domains/show-domains.tsx b/apps/dokploy/components/dashboard/compose/domains/show-domains.tsx index 01e6f1ab..dc798f80 100644 --- a/apps/dokploy/components/dashboard/compose/domains/show-domains.tsx +++ b/apps/dokploy/components/dashboard/compose/domains/show-domains.tsx @@ -53,7 +53,7 @@ export const ShowDomainsCompose = ({ composeId }: Props) => {
- To access to the application is required to set at least 1 + To access to the application it is required to set at least 1 domain
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 bbc5d2f5..60cdbda0 100644 --- a/apps/dokploy/components/dashboard/mariadb/advanced/show-mariadb-resources.tsx +++ b/apps/dokploy/components/dashboard/mariadb/advanced/show-mariadb-resources.tsx @@ -79,7 +79,7 @@ export const ShowMariadbResources = ({ mariadbId }: Props) => { Resources - If you want to decrease or increase the resources to a specific + If you want to decrease or increase the resources to a specific. application or database 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 85353e8b..0c44aaeb 100644 --- a/apps/dokploy/components/dashboard/mariadb/backups/show-backup-mariadb.tsx +++ b/apps/dokploy/components/dashboard/mariadb/backups/show-backup-mariadb.tsx @@ -44,7 +44,7 @@ export const ShowBackupMariadb = ({ mariadbId }: Props) => {
Backups - Add backup to your database to save the data to a different + Add backups to your database to save the data to a different providers.
@@ -62,7 +62,7 @@ export const ShowBackupMariadb = ({ mariadbId }: Props) => {
- To create a backup is required to set at least 1 provider. Please, + To create a backup it is required to set at least 1 provider. Please, go to{" "} { Resources - If you want to decrease or increase the resources to a specific + If you want to decrease or increase the resources to a specific. application or database 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 e54fe70d..b703946a 100644 --- a/apps/dokploy/components/dashboard/mongo/backups/show-backup-mongo.tsx +++ b/apps/dokploy/components/dashboard/mongo/backups/show-backup-mongo.tsx @@ -44,8 +44,8 @@ export const ShowBackupMongo = ({ mongoId }: Props) => {
Backups - Add backup to your database to save the data to a different - providers. + Add backups to your database to save the data to a different + provider.
@@ -62,7 +62,7 @@ export const ShowBackupMongo = ({ mongoId }: Props) => {
- To create a backup is required to set at least 1 provider. Please, + To create a backup it is required to set at least 1 provider. Please, go to{" "} {
Volumes - If you want to persist data in this mongo use the following config + If you want to persist data in this mongo use the following config. to setup the volumes
diff --git a/apps/dokploy/components/dashboard/monitoring/docker/show.tsx b/apps/dokploy/components/dashboard/monitoring/docker/show.tsx index 365615ce..d9deaa35 100644 --- a/apps/dokploy/components/dashboard/monitoring/docker/show.tsx +++ b/apps/dokploy/components/dashboard/monitoring/docker/show.tsx @@ -191,7 +191,7 @@ export const DockerMonitoring = ({ Monitoring - Watch the usage of your server in the current app + Watch the usage of your server in the current app. 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 7feeb031..07ceeae9 100644 --- a/apps/dokploy/components/dashboard/mysql/advanced/show-mysql-resources.tsx +++ b/apps/dokploy/components/dashboard/mysql/advanced/show-mysql-resources.tsx @@ -79,7 +79,7 @@ export const ShowMysqlResources = ({ mysqlId }: Props) => { Resources - If you want to decrease or increase the resources to a specific + If you want to decrease or increase the resources to a specific. application or database 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 b44d2055..2c99188a 100644 --- a/apps/dokploy/components/dashboard/mysql/backups/show-backup-mysql.tsx +++ b/apps/dokploy/components/dashboard/mysql/backups/show-backup-mysql.tsx @@ -44,8 +44,8 @@ export const ShowBackupMySql = ({ mysqlId }: Props) => {
Backups - Add backup to your database to save the data to a different - providers. + Add backups to your database to save the data to a different + provider.
@@ -62,7 +62,7 @@ export const ShowBackupMySql = ({ mysqlId }: Props) => {
- To create a backup is required to set at least 1 provider. Please, + To create a backup it is required to set at least 1 provider. Please, go to{" "} { Resources - If you want to decrease or increase the resources to a specific + If you want to decrease or increase the resources to a specific. application or database 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 877769b7..a2c31ff0 100644 --- a/apps/dokploy/components/dashboard/postgres/backups/show-backup-postgres.tsx +++ b/apps/dokploy/components/dashboard/postgres/backups/show-backup-postgres.tsx @@ -45,8 +45,8 @@ export const ShowBackupPostgres = ({ postgresId }: Props) => {
Backups - Add backup to your database to save the data to a different - providers. + Add backups to your database to save the data to a different + provider.
@@ -63,7 +63,7 @@ export const ShowBackupPostgres = ({ postgresId }: Props) => {
- To create a backup is required to set at least 1 provider. Please, + To create a backup it is required to set at least 1 provider. Please, go to{" "} { Resources - If you want to decrease or increase the resources to a specific + If you want to decrease or increase the resources to a specific. application or database diff --git a/apps/dokploy/components/dashboard/settings/certificates/show-certificates.tsx b/apps/dokploy/components/dashboard/settings/certificates/show-certificates.tsx index 963bc571..fbf21dbd 100644 --- a/apps/dokploy/components/dashboard/settings/certificates/show-certificates.tsx +++ b/apps/dokploy/components/dashboard/settings/certificates/show-certificates.tsx @@ -27,7 +27,7 @@ export const ShowCertificates = () => {
- To create a certificate is required to upload your certificate + To create a certificate it is required to upload an existing certificate
diff --git a/apps/dokploy/components/dashboard/settings/cluster/registry/show-registry.tsx b/apps/dokploy/components/dashboard/settings/cluster/registry/show-registry.tsx index a754737d..94c82c48 100644 --- a/apps/dokploy/components/dashboard/settings/cluster/registry/show-registry.tsx +++ b/apps/dokploy/components/dashboard/settings/cluster/registry/show-registry.tsx @@ -43,7 +43,7 @@ export const ShowRegistry = () => {
- To create a cluster is required to set a registry. + To create a cluster it is required to set a registry.
diff --git a/apps/dokploy/components/dashboard/settings/destination/show-destinations.tsx b/apps/dokploy/components/dashboard/settings/destination/show-destinations.tsx index d05d824b..d1dabf42 100644 --- a/apps/dokploy/components/dashboard/settings/destination/show-destinations.tsx +++ b/apps/dokploy/components/dashboard/settings/destination/show-destinations.tsx @@ -29,7 +29,7 @@ export const ShowDestinations = () => {
- To create a backup is required to set at least 1 provider. + To create a backup it is required to set at least 1 provider.
diff --git a/apps/dokploy/components/dashboard/settings/notifications/show-notifications.tsx b/apps/dokploy/components/dashboard/settings/notifications/show-notifications.tsx index 46fa5e8b..c22f7b72 100644 --- a/apps/dokploy/components/dashboard/settings/notifications/show-notifications.tsx +++ b/apps/dokploy/components/dashboard/settings/notifications/show-notifications.tsx @@ -34,7 +34,7 @@ export const ShowNotifications = () => {
- To send notifications is required to set at least 1 provider. + To send notifications it is required to set at least 1 provider.
diff --git a/apps/dokploy/components/dashboard/settings/profile/profile-form.tsx b/apps/dokploy/components/dashboard/settings/profile/profile-form.tsx index 2f30d07f..43cd2f0e 100644 --- a/apps/dokploy/components/dashboard/settings/profile/profile-form.tsx +++ b/apps/dokploy/components/dashboard/settings/profile/profile-form.tsx @@ -95,7 +95,7 @@ export const ProfileForm = () => {
Account - Change your details of your profile here. + Change the details of your profile here.
{!data?.is2FAEnabled ? : } diff --git a/apps/dokploy/components/dashboard/settings/web-domain.tsx b/apps/dokploy/components/dashboard/settings/web-domain.tsx index 5157239e..509df40d 100644 --- a/apps/dokploy/components/dashboard/settings/web-domain.tsx +++ b/apps/dokploy/components/dashboard/settings/web-domain.tsx @@ -80,7 +80,7 @@ export const WebDomain = () => { Server Domain - Add your server domain to your application + Add a domain to your server application. From 49b096fef6813df021f9116ba968a09cbc7b41a2 Mon Sep 17 00:00:00 2001 From: Dominik Koch Date: Sat, 12 Oct 2024 21:08:58 +0000 Subject: [PATCH 2/2] style: format code --- .../dashboard/mariadb/backups/show-backup-mariadb.tsx | 4 ++-- .../components/dashboard/mongo/backups/show-backup-mongo.tsx | 4 ++-- .../components/dashboard/mysql/backups/show-backup-mysql.tsx | 4 ++-- .../dashboard/postgres/backups/show-backup-postgres.tsx | 4 ++-- .../dashboard/settings/certificates/show-certificates.tsx | 3 ++- 5 files changed, 10 insertions(+), 9 deletions(-) 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 0c44aaeb..f3d214e3 100644 --- a/apps/dokploy/components/dashboard/mariadb/backups/show-backup-mariadb.tsx +++ b/apps/dokploy/components/dashboard/mariadb/backups/show-backup-mariadb.tsx @@ -62,8 +62,8 @@ export const ShowBackupMariadb = ({ mariadbId }: Props) => {
- To create a backup it is required to set at least 1 provider. Please, - go to{" "} + To create a backup it is required to set at least 1 provider. + Please, go to{" "} {
- To create a backup it is required to set at least 1 provider. Please, - go to{" "} + To create a backup it is required to set at least 1 provider. + Please, go to{" "} {
- To create a backup it is required to set at least 1 provider. Please, - go to{" "} + To create a backup it is required to set at least 1 provider. + Please, go to{" "} {
- To create a backup it is required to set at least 1 provider. Please, - go to{" "} + To create a backup it is required to set at least 1 provider. + Please, go to{" "} {
- To create a certificate it is required to upload an existing certificate + To create a certificate it is required to upload an existing + certificate