Improve admin settings texts (#331)

* chore: Add enable git.alwaysSignOff

Comply with Nextcloud policy

Signed-off-by: Jérémie Tarot (@silopolis) <silopolis@gmail.com>

* fix(text): Improve admin settings texts

Use direct present tense
Consistency
Hopefully make behaviour more clear

Signed-off-by: Jérémie Tarot (@silopolis) <silopolis@gmail.com>

---------

Signed-off-by: Jérémie Tarot (@silopolis) <silopolis@gmail.com>
This commit is contained in:
Jérémie Tarot 2023-03-21 13:33:46 +01:00 committed by GitHub
parent 435ad1cff7
commit 54991a8940
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
{
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.insertSpaces": true
"git.alwaysSignOff": true
}

View File

@ -31,17 +31,17 @@ script('breezedark', 'settings-admin');
<h2><?php p($l->t("Breeze Dark")); ?></h2>
<p><?php p($l->t("A Dark theme based on Breeze Dark by the KDE project. Please refresh the page for changes to take effect.")); ?></p>
<p><?php p($l->t("This setting will enforce the usage of this theme. Please note, this will prevent users from disabling or choosing a different theme.")); ?></p>
<p><?php p($l->t("This setting enforces the usage of this theme for all users. Please note, this prevents users from disabling it or choosing a different theme.")); ?></p>
<input type="checkbox" class="checkbox" id="breezedark-theme-enabled" <?php p($themeEnforced ? "checked" : ""); ?>>
<label for="breezedark-theme-enabled"><?php p($l->t("Enforce use of the Breeze Dark theme")); ?></label>
<label for="breezedark-theme-enabled"><?php p($l->t("Enforce Breeze Dark theme use globally")); ?></label>
<p><?php p($l->t("This setting will enable the automated activation by the clients system settings by default, for any unauthenticated users and users who have not set a preference.")); ?></p>
<p><?php p($l->t("This setting enables the automated activation by the clients' system settings by default, for unauthenticated users and users who have not set a preference.")); ?></p>
<input type="checkbox" class="checkbox" id="breezedark-automatic-activation-enabled" <?php p($themeEnforced ? "" : "disabled");?> <?php p($themeAutomaticActivation ? "checked" : ""); ?>>
<label for="breezedark-automatic-activation-enabled"><?php p($l->t("Enable Breeze Dark automated activation by the clients system settings by default")); ?></label>
<label for="breezedark-automatic-activation-enabled"><?php p($l->t("Enable Breeze Dark theme automated activation by the clients' system settings by default")); ?></label>
<p><?php p($l->t("This setting will allow you to choose if the login page should be themed. This only has an effect if the theme is enforced or during the login process for a user that has the theme enabled.")); ?></p>
<p><?php p($l->t("This setting enables use of the theme for the login page. This only takes effect on the login page itself if the theme is globally enforced, or during login for a user who has the theme enabled.")); ?></p>
<input type="checkbox" class="checkbox" id="breezedark-theme-login-page" <?php p($themeLoginPage ? "checked" : ""); ?>>
<label for="breezedark-theme-login-page"><?php p($l->t("Theme the login page")); ?></label>
<label for="breezedark-theme-login-page"><?php p($l->t("Enable Breeze Dark theme for the login page")); ?></label>
<h3><?php p($l->t("Custom Styling")); ?></h3>
<textarea id="breezedark-theme-custom-styling" style="width: 100%; height: 200px; font-family: monospace;" placeholder="<?php p($l->t("Insert custom styling here ")); ?>"><?php p($themeCustomStyling); ?></textarea>