lang: translation of 404 window title

This commit is contained in:
AdrienLSH
2024-02-02 10:15:33 +01:00
parent 043a958dd0
commit e9e370d4f5
3 changed files with 6 additions and 3 deletions

View File

@ -1,8 +1,9 @@
import AbstractView from "./abstracts/AbstractView.js";
import { lang } from '../index.js'
export default class extends AbstractView {
constructor(params) {
super(params, "Not Found");
super(params, lang.get('404WindowTitle', 'Not Found'));
}
async getHtml() {