mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
Missing translation key (#4200)
This commit is contained in:
parent
46b300808d
commit
97ed0a96d8
2 changed files with 2 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
||||||
"setupDatabaseEmbeddedMariaDB": "You don't need to set anything. This docker image have embedded and configured a MariaDB for you automatically. Uptime Kuma will connect to this database via unix socket.",
|
"setupDatabaseEmbeddedMariaDB": "You don't need to set anything. This docker image have embedded and configured a MariaDB for you automatically. Uptime Kuma will connect to this database via unix socket.",
|
||||||
"setupDatabaseMariaDB": "Connect to an external MariaDB database. You need to set the database connection information.",
|
"setupDatabaseMariaDB": "Connect to an external MariaDB database. You need to set the database connection information.",
|
||||||
"setupDatabaseSQLite": "A simple database file, recommended for small-scale deployments. Prior to v2.0.0, Uptime Kuma used SQLite as the default database.",
|
"setupDatabaseSQLite": "A simple database file, recommended for small-scale deployments. Prior to v2.0.0, Uptime Kuma used SQLite as the default database.",
|
||||||
|
"settingUpDatabaseMSG": "Setting up the database. It may take a while, please be patient.",
|
||||||
"dbName": "Database Name",
|
"dbName": "Database Name",
|
||||||
"Settings": "Settings",
|
"Settings": "Settings",
|
||||||
"Dashboard": "Dashboard",
|
"Dashboard": "Dashboard",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<div v-if="info.runningSetup" class="mt-5">
|
<div v-if="info.runningSetup" class="mt-5">
|
||||||
<div class="alert alert-success mx-3 px-4" role="alert">
|
<div class="alert alert-success mx-3 px-4" role="alert">
|
||||||
<div class="d-flex align-items-center">
|
<div class="d-flex align-items-center">
|
||||||
<strong>Setting up the database. It may take a while, please be patient.</strong>
|
<strong>{{ $t("settingUpDatabaseMSG") }}</strong>
|
||||||
<div class="ms-3 pt-1">
|
<div class="ms-3 pt-1">
|
||||||
<div class="spinner-border" role="status" aria-hidden="true"></div>
|
<div class="spinner-border" role="status" aria-hidden="true"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue