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": { "overview": {
"title": "Übersicht aller verfügbaren Branches", "title": "Übersicht aller verfügbaren Branches",
"noBranches": "Keine Branches gefunden.", "noBranches": "Keine Branches gefunden.",
"createButton": "Branch erstellen" "createButton": "Branch erstellen",
"lastCommit": "Letzter Commit"
}, },
"table": { "table": {
"branches": { "branches": {

View File

@@ -83,7 +83,8 @@
"overview": { "overview": {
"title": "Overview of all branches", "title": "Overview of all branches",
"noBranches": "No branches found.", "noBranches": "No branches found.",
"createButton": "Create Branch" "createButton": "Create Branch",
"lastCommit": "Last commit"
}, },
"table": { "table": {
"branches": { "branches": {

View File

@@ -62,7 +62,7 @@ class BranchDetail extends React.Component<Props> {
<FlexRow className="media-content subtitle"> <FlexRow className="media-content subtitle">
<Label>{t("branch.name")}</Label> {branch.name} <DefaultBranchTag defaultBranch={branch.defaultBranch} /> <Label>{t("branch.name")}</Label> {branch.name} <DefaultBranchTag defaultBranch={branch.defaultBranch} />
<Created className="is-ellipsis-overflow"> <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> </Created>
</FlexRow> </FlexRow>
<div className="media-right"> <div className="media-right">