Update admin note

This commit is contained in:
DianaXWiki 2025-09-24 12:23:58 +03:00
parent 395e1e2063
commit 249b47efd2
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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)); }