Remove redundant translations

This commit is contained in:
René Pfeuffer
2020-06-10 10:58:52 +02:00
parent cb37e7b069
commit e28107aded
3 changed files with 15 additions and 23 deletions

View File

@@ -158,7 +158,7 @@ class DiffFile extends React.Component<Props, State> {
<HunkExpandLink <HunkExpandLink
icon={"fa-angle-up"} icon={"fa-angle-up"}
onClick={this.expandHead(expandableHunk, expandableHunk.maxExpandHeadRange)} onClick={this.expandHead(expandableHunk, expandableHunk.maxExpandHeadRange)}
text={this.props.t("diff.expandHeadComplete", { count: expandableHunk.maxExpandHeadRange })} text={this.props.t("diff.expandComplete", { count: expandableHunk.maxExpandHeadRange })}
/> />
</HunkDivider> </HunkDivider>
</Decoration> </Decoration>
@@ -170,12 +170,12 @@ class DiffFile extends React.Component<Props, State> {
<HunkExpandLink <HunkExpandLink
icon={"fa-angle-up"} icon={"fa-angle-up"}
onClick={this.expandHead(expandableHunk, 10)} onClick={this.expandHead(expandableHunk, 10)}
text={this.props.t("diff.expandHeadByLines", { count: 10 })} text={this.props.t("diff.expandByLines", { count: 10 })}
/>{" "} />{" "}
<HunkExpandLink <HunkExpandLink
icon={"fa-angle-double-up"} icon={"fa-angle-double-up"}
onClick={this.expandHead(expandableHunk, expandableHunk.maxExpandHeadRange)} onClick={this.expandHead(expandableHunk, expandableHunk.maxExpandHeadRange)}
text={this.props.t("diff.expandHeadComplete", { count: expandableHunk.maxExpandHeadRange })} text={this.props.t("diff.expandComplete", { count: expandableHunk.maxExpandHeadRange })}
/> />
</HunkDivider> </HunkDivider>
</Decoration> </Decoration>
@@ -195,7 +195,7 @@ class DiffFile extends React.Component<Props, State> {
<HunkExpandLink <HunkExpandLink
icon={"fa-angle-double-down"} icon={"fa-angle-double-down"}
onClick={this.expandBottom(expandableHunk, expandableHunk.maxExpandBottomRange)} onClick={this.expandBottom(expandableHunk, expandableHunk.maxExpandBottomRange)}
text={this.props.t("diff.expandBottomComplete", { count: expandableHunk.maxExpandBottomRange })} text={this.props.t("diff.expandComplete", { count: expandableHunk.maxExpandBottomRange })}
/> />
</HunkDivider> </HunkDivider>
</Decoration> </Decoration>
@@ -207,12 +207,12 @@ class DiffFile extends React.Component<Props, State> {
<HunkExpandLink <HunkExpandLink
icon={"fa-angle-down"} icon={"fa-angle-down"}
onClick={this.expandBottom(expandableHunk, 10)} onClick={this.expandBottom(expandableHunk, 10)}
text={this.props.t("diff.expandBottomByLines", { count: 10 })} text={this.props.t("diff.expandByLines", { count: 10 })}
/>{" "} />{" "}
<HunkExpandLink <HunkExpandLink
icon={"fa-angle-double-down"} icon={"fa-angle-double-down"}
onClick={this.expandBottom(expandableHunk, expandableHunk.maxExpandBottomRange)} onClick={this.expandBottom(expandableHunk, expandableHunk.maxExpandBottomRange)}
text={this.props.t("diff.expandBottomComplete", { count: expandableHunk.maxExpandBottomRange })} text={this.props.t("diff.expandComplete", { count: expandableHunk.maxExpandBottomRange })}
/> />
</HunkDivider> </HunkDivider>
</Decoration> </Decoration>

View File

@@ -192,16 +192,12 @@
"sideBySide": "Zur zweispaltigen Ansicht wechseln", "sideBySide": "Zur zweispaltigen Ansicht wechseln",
"combined": "Zur kombinierten Ansicht wechseln", "combined": "Zur kombinierten Ansicht wechseln",
"noDiffFound": "Kein Diff zwischen den ausgewählten Branches gefunden.", "noDiffFound": "Kein Diff zwischen den ausgewählten Branches gefunden.",
"expandHeadByLines": "{{count}} weitere Zeile laden", "expandByLines": "{{count}} weitere Zeile laden",
"expandHeadByLines_plural": "{{count}} weitere Zeilen laden", "expandByLines_plural": "{{count}} weitere Zeilen laden",
"expandHeadComplete": "{{count}} verbleibende weitere Zeile laden", "expandComplete": "{{count}} verbleibende Zeile laden",
"expandHeadComplete_plural": "Alle {{count}} weiteren Zeilen laden", "expandComplete_plural": "Alle {{count}} verbleibenden Zeilen laden",
"expandBottomByLines": "{{count}} verbleibende weitere Zeile laden",
"expandBottomByLines_plural": "Alle {{count}} weiteren Zeilen laden",
"expandBottomComplete": "{{count}} verbleibende weitere Zeile laden",
"expandBottomComplete_plural": "Alle {{count}} weiteren Zeilen laden",
"expandLastBottomByLines": "Bis zu {{count}} weitere Zeilen laden", "expandLastBottomByLines": "Bis zu {{count}} weitere Zeilen laden",
"expandLastBottomComplete": "Alle weiteren Zeilen laden", "expandLastBottomComplete": "Alle verbleibenden Zeilen laden",
"expanding": "Zeilen werden geladen ...", "expanding": "Zeilen werden geladen ...",
"expansionFailed": "Fehler beim Laden der zusätzlichen Zeilen" "expansionFailed": "Fehler beim Laden der zusätzlichen Zeilen"
}, },

View File

@@ -199,14 +199,10 @@
"sideBySide": "Switch to side-by-side view", "sideBySide": "Switch to side-by-side view",
"combined": "Switch to combined view", "combined": "Switch to combined view",
"noDiffFound": "No Diff between the selected branches found.", "noDiffFound": "No Diff between the selected branches found.",
"expandHeadByLines": "load {{count}} more line", "expandByLines": "load {{count}} more line",
"expandHeadByLines_plural": "load {{count}} more lines", "expandByLines_plural": "load {{count}} more lines",
"expandHeadComplete": "load {{count}} line", "expandComplete": "load {{count}} remaining line",
"expandHeadComplete_plural": "load all {{count}} lines", "expandComplete_plural": "load all {{count}} remaining lines",
"expandBottomByLines": "load {{count}} more line",
"expandBottomByLines_plural": "load {{count}} more lines",
"expandBottomComplete": "load {{count}} line",
"expandBottomComplete_plural": "load all {{count}} lines",
"expandLastBottomByLines": "load up to {{count}} more lines", "expandLastBottomByLines": "load up to {{count}} more lines",
"expandLastBottomComplete": "load all remaining lines", "expandLastBottomComplete": "load all remaining lines",
"expanding": "loading lines ...", "expanding": "loading lines ...",