diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2022-07-06 14:02:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-06 14:02:58 +0200 |
commit | 6a49fc2fabc1dbed9ab40718b961baad8b34c536 (patch) | |
tree | 2c1ddffa9763f2f3c825949079c15bbcd9f8f20d | |
parent | e97044312fd8859af8f570912a6cccababc6f732 (diff) | |
parent | 5db5b3c6d1eca8ff5bc34af2322dd1250cf48c92 (diff) | |
download | nextcloud-server-6a49fc2fabc1dbed9ab40718b961baad8b34c536.tar.gz nextcloud-server-6a49fc2fabc1dbed9ab40718b961baad8b34c536.zip |
Merge pull request #33120 from nextcloud/backport/33109/stable23
[stable23] Fix translation of home breadcrumb
-rw-r--r-- | apps/files/js/breadcrumb.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/breadcrumb.js b/apps/files/js/breadcrumb.js index f0a4da2d6d9..b6e31a9e6d4 100644 --- a/apps/files/js/breadcrumb.js +++ b/apps/files/js/breadcrumb.js @@ -220,7 +220,7 @@ }); // root part crumbs.push({ - name: t('core', 'Home'), + name: t('files', 'Home'), dir: '/', class: 'crumbhome', linkclass: rootIcon || 'icon-home' |