added locale backup + en support

This commit is contained in:
_Bastler
2021-03-26 10:17:28 +01:00
parent a9fd56efc6
commit 34755be840
16 changed files with 2724 additions and 1039 deletions
@@ -1,4 +1,5 @@
import { Component, OnInit } from '@angular/core';
import {Component, OnInit} from '@angular/core';
import { Location } from '@angular/common'
@Component({
selector: 'app-unavailable',
@@ -7,9 +8,14 @@ import { Component, OnInit } from '@angular/core';
})
export class UnavailableComponent implements OnInit {
constructor() { }
constructor(
private location: Location) {}
ngOnInit(): void {
}
retry() {
this.location.back();
}
}