lang file anpassen + refactoring

This commit is contained in:
Florian Scholdei
2019-01-23 11:14:30 +01:00
parent cb5e74e791
commit ff3044c365
22 changed files with 326 additions and 357 deletions

View File

@@ -25,7 +25,7 @@ class ChangesetDiff extends React.Component<Props> {
render() {
const { changeset, t } = this.props;
if (!this.isDiffSupported(changeset)) {
return <Notification type="danger">{t("changesets.diff.not-supported")}</Notification>;
return <Notification type="danger">{t("changesets.changeset.diffNotSupported")}</Notification>;
} else {
const url = this.createUrl(changeset);
return <LoadingDiff url={url} />;