lang: search window title

This commit is contained in:
AdrienLSH 2024-02-02 11:02:23 +01:00
parent b44e3bac6f
commit 4cff5eed37
3 changed files with 6 additions and 4 deletions

View File

@ -28,5 +28,6 @@
"registerFormButton": "Register",
"registerAlreadyAccount": "Already have an account?",
"registerLogin": "Login",
"404WindowTitle": "Not Found"
"404WindowTitle": "Not Found",
"SearchWindowTitle": "Search"
}

View File

@ -28,5 +28,6 @@
"registerFormButton": "S'inscrire",
"registerAlreadyAccount": "Déjà un compte?",
"registerLogin": "Connexion",
"404WindowTitle": "Pas trouvé"
"404WindowTitle": "Pas trouvé",
"SearchWindowTitle": "Recherche"
}

View File

@ -1,10 +1,10 @@
import AbstractView from "./abstracts/AbstractView.js";
import {client} from "../index.js";
import { client, lang } from "../index.js";
import {Message} from "../api/chat/message.js"
export default class extends AbstractView {
constructor(params) {
super(params, "Search");
super(params, lang.get('SearchWindowTitle', 'Search'));
}
async wait_get_online_users() {