From 19edb3e86915c8faccd58730721a7866f55044a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Pfeuffer?= Date: Thu, 3 Dec 2020 13:19:40 +0100 Subject: [PATCH] Fix translation --- scm-ui/ui-webapp/public/locales/de/repos.json | 3 ++- scm-ui/ui-webapp/public/locales/en/repos.json | 3 ++- .../ui-webapp/src/repos/branches/components/BranchDetail.tsx | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/scm-ui/ui-webapp/public/locales/de/repos.json b/scm-ui/ui-webapp/public/locales/de/repos.json index 4ea48d7ba0..50631133a4 100644 --- a/scm-ui/ui-webapp/public/locales/de/repos.json +++ b/scm-ui/ui-webapp/public/locales/de/repos.json @@ -82,7 +82,8 @@ "overview": { "title": "Übersicht aller verfügbaren Branches", "noBranches": "Keine Branches gefunden.", - "createButton": "Branch erstellen" + "createButton": "Branch erstellen", + "lastCommit": "Letzter Commit" }, "table": { "branches": { diff --git a/scm-ui/ui-webapp/public/locales/en/repos.json b/scm-ui/ui-webapp/public/locales/en/repos.json index 5019f15bb7..b44214b8e9 100644 --- a/scm-ui/ui-webapp/public/locales/en/repos.json +++ b/scm-ui/ui-webapp/public/locales/en/repos.json @@ -83,7 +83,8 @@ "overview": { "title": "Overview of all branches", "noBranches": "No branches found.", - "createButton": "Create Branch" + "createButton": "Create Branch", + "lastCommit": "Last commit" }, "table": { "branches": { diff --git a/scm-ui/ui-webapp/src/repos/branches/components/BranchDetail.tsx b/scm-ui/ui-webapp/src/repos/branches/components/BranchDetail.tsx index 224187401f..de7bd28c81 100644 --- a/scm-ui/ui-webapp/src/repos/branches/components/BranchDetail.tsx +++ b/scm-ui/ui-webapp/src/repos/branches/components/BranchDetail.tsx @@ -62,7 +62,7 @@ class BranchDetail extends React.Component { {branch.name} - {t("tags.overview.created")} + {t("branches.overview.lastCommit")}