Fix translation

This commit is contained in:
René Pfeuffer
2020-12-03 13:19:40 +01:00
parent a562de7174
commit 19edb3e869
3 changed files with 5 additions and 3 deletions

View File

@@ -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": {

View File

@@ -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": {

View File

@@ -62,7 +62,7 @@ class BranchDetail extends React.Component<Props> {
<FlexRow className="media-content subtitle">
<Label>{t("branch.name")}</Label> {branch.name} <DefaultBranchTag defaultBranch={branch.defaultBranch} />
<Created className="is-ellipsis-overflow">
{t("tags.overview.created")} <Date date={branch.lastCommitDate} className="has-text-grey" />
{t("branches.overview.lastCommit")} <Date date={branch.lastCommitDate} className="has-text-grey" />
</Created>
</FlexRow>
<div className="media-right">