From e764cef4acaba55ae6ecd285129f4a0fa5030a81 Mon Sep 17 00:00:00 2001 From: lxsang Date: Wed, 31 Mar 2021 23:37:45 +0200 Subject: [PATCH] fix setting save bug --- src/core/settings.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/core/settings.ts b/src/core/settings.ts index c4c785c..2241671 100644 --- a/src/core/settings.ts +++ b/src/core/settings.ts @@ -534,43 +534,43 @@ namespace OS { { setting.applications.categories = [ { - text: __("All"), + text: "__(All)", iconclass: "bi bi-gear-wide" }, { - text: __("Media"), + text: "__(Media)", iconclass: "bi bi-disc" }, { - text: __("Development"), + text: "__(Development)", iconclass: "bi bi-hammer" }, { - text: __("Education"), + text: "__(Education)", iconclass: "fa fa-graduation-cap" }, { - text: __("Game"), + text: "__(Game)", iconclass: "fa fa-gamepad" }, { - text: __("Graphics"), + text: "__(Graphics)", iconclass: "bi bi-palette-fill" }, { - text: __("Internet"), + text: "__(Internet)", iconclass: "fa fa-globe" }, { - text: __("Office"), + text: "__(Office)", iconclass: "bi bi-building" }, { - text: __("System"), + text: "__(System)", iconclass: "fa bi-gear-wide-connected" }, { - text: __("Utility"), + text: "__(Utility)", iconclass: "bi bi-tools" }, ]