Renames danish to english

This commit is contained in:
Janus C. H. Knudsen 2026-01-11 21:42:24 +01:00
parent 754681059d
commit 5e0bd9db74
29 changed files with 405 additions and 438 deletions

View file

@ -9,7 +9,7 @@ import { DrawerController } from './modules/drawers';
import { ThemeController } from './modules/theme';
import { SearchController } from './modules/search';
import { LockScreenController } from './modules/lockscreen';
import { KasseController } from './modules/kasse';
import { CashController } from './modules/cash';
/**
* Main application class
@ -20,7 +20,7 @@ export class App {
readonly theme: ThemeController;
readonly search: SearchController;
readonly lockScreen: LockScreenController;
readonly kasse: KasseController;
readonly cash: CashController;
constructor() {
// Initialize controllers
@ -29,7 +29,7 @@ export class App {
this.theme = new ThemeController();
this.search = new SearchController();
this.lockScreen = new LockScreenController(this.drawers);
this.kasse = new KasseController();
this.cash = new CashController();
}
}