Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change the wording in the additional tab to not confuse users #36775

Merged
merged 1 commit into from
May 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions changelog/unreleased/36775
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Change: Adjust wording displayed for empty additional settings panel

The wording displayed when the admin personal settings panel is empty has been improved.

https://github.com/owncloud/core/pull/36775
4 changes: 2 additions & 2 deletions settings/templates/settingsPage.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
if ($numPanels === 0 || ($numPanels === 1 && $_['panels'][0]['id'] === $legacyClass && empty(\trim($_['panels'][0]['content'])))) {
?>
<div class="section">
<h2><?php p($l->t('Other')); ?></h2>
<p><?php p($l->t('No panels for this section.')); ?></p>
<h2><?php p($l->t('Currently no settings are available in this category')); ?></h2>
<p><?php p($l->t('The administrators can enable additional apps which add settings sections here.')); ?></p>
</div>
<?php
} ?>
Expand Down