fix language switching close #51

This commit is contained in:
Adrian Zürcher
2026-02-13 20:16:17 +01:00
parent 9b2b1d3ef7
commit ce654bbb6a
6 changed files with 134 additions and 17 deletions

View File

@@ -0,0 +1,9 @@
export interface QDateLocale {
days: string[];
daysShort: string[];
months: string[];
monthsShort: string[];
firstDayOfWeek: number;
format24h: boolean;
pluralDay: string;
}