aboutsummaryrefslogtreecommitdiffstats
path: root/src/wwwroot/scripts/messages.js
blob: a4266774f69714f230bf8fa1092cec57f0e7964f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import {strings} from "./i10n.ts";

export const messages = {
    networkRequestFailed: {
        title: strings.languageSpesific.could_not_reach_server,
        message: strings.languageSpesific.try_again_soon,
    },
    unknownError: {
        title: strings.languageSpesific.an_unknown_error_occured,
        message: strings.languageSpesific.try_again_soon,
    },
};