summaryrefslogtreecommitdiffstats
path: root/apps/accessibility
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-07-17 15:13:04 +0200
committerGitHub <noreply@github.com>2018-07-17 15:13:04 +0200
commitee11fee93b212497dea1a2af927e984f2db8bf65 (patch)
tree16afe77a1c28ceadcc115c5f308aa155b2bde9aa /apps/accessibility
parent3148e9b1710a5a0885677bc792e9850d2590b898 (diff)
parent82047f2d430b99d5d554ee4a4df5db2871fc434d (diff)
downloadnextcloud-server-ee11fee93b212497dea1a2af927e984f2db8bf65.tar.gz
nextcloud-server-ee11fee93b212497dea1a2af927e984f2db8bf65.zip
Merge pull request #10269 from nextcloud/darktheme-beta
Clarify beta state of dark theme
Diffstat (limited to 'apps/accessibility')
-rw-r--r--apps/accessibility/lib/AccessibilityProvider.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/accessibility/lib/AccessibilityProvider.php b/apps/accessibility/lib/AccessibilityProvider.php
index 17d01360edb..c1a69b55f4d 100644
--- a/apps/accessibility/lib/AccessibilityProvider.php
+++ b/apps/accessibility/lib/AccessibilityProvider.php
@@ -58,13 +58,13 @@ class AccessibilityProvider {
[
'id' => 'themehighcontrast',
'img' => $this->urlGenerator->imagePath($this->appName, 'theme-highcontrast.jpg'),
- 'title' => $this->l->t('High Contrast theme'),
+ 'title' => $this->l->t('High contrast theme'),
'text' => $this->l->t('A high contrast theme to ease your navigation. Visual quality will be reduced but clarity will be increased.')
], [
'id' => 'themedark',
'img' => $this->urlGenerator->imagePath($this->appName, 'theme-dark.jpg'),
- 'title' => $this->l->t('Dark theme'),
- 'text' => $this->l->t('A dark theme to ease your eyes by reducing the overall luminosity and brightness of your navigation. This is suitable for people who use computes a lot or in low luminosity spaces.')
+ 'title' => $this->l->t('Dark theme (beta)'),
+ 'text' => $this->l->t('A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.')
]
);
}
@@ -80,4 +80,4 @@ class AccessibilityProvider {
);
}
-} \ No newline at end of file
+}