From 249b47efd2c082dadf924d4d09c939df0a5baf8f Mon Sep 17 00:00:00 2001 From: DianaXWiki Date: Wed, 24 Sep 2025 12:23:58 +0300 Subject: [PATCH] Update admin note --- customize.dist/messages.js | 2 +- www/admin/inner.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/customize.dist/messages.js b/customize.dist/messages.js index a0bc65d50..3ca597669 100755 --- a/customize.dist/messages.js +++ b/customize.dist/messages.js @@ -140,7 +140,7 @@ define(req, function(AppConfig, Default, Language) { Messages.password_note3 = "Your password is the secret key that encrypts all of your documents and administrator privileges on this instance."; Messages.computer_note = 'If you are using a shared computer, {0}remember to log out{1} when you are done. Only closing the browser window leaves your account exposed.'; Messages.import_note = 'To keep the documents you created and/or stored without being logged in, tick "Import documents from your guest session".'; - Messages.admin_note = "Create your first administrator account on this page. Administrators manage instance settings including storage quotas, and have access to moderation tools."; + Messages.admin_creation_note = "Create your first administrator account on this page. Administrators manage instance settings including storage quotas, and have access to moderation tools."; return Messages; diff --git a/www/admin/inner.js b/www/admin/inner.js index 7b1bbf493..2d9128092 100644 --- a/www/admin/inner.js +++ b/www/admin/inner.js @@ -573,7 +573,7 @@ define([ row(Messages.admin_planName, data.plan || Messages.ui_none); // plan note - row(Messages.admin_note, data.note || Messages.ui_none); + row(Messages.admin_creation_note, data.note || Messages.ui_none); // storage limit if (data.limit) { row(Messages.admin_planlimit, getPrettySize(data.limit)); }