mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-04-15 10:12:07 -04:00
feat: add setting to change and hotreload locale (#1817)
* feat: add setting to change and hotreload locale * fix: typo in component id * feat: add persistent locale setting * feat: wrap useLocale in a settings set hook, enable locale hotreload when editing settings file * chore: update translation and settings file * feat: enable fuzzy search in locale setting * fix: regenerate translations with official plugins cloned * fix: revert back to system's locale for displaying certain time formats
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
import re
|
||||
import json
|
||||
import re
|
||||
from collections import Counter
|
||||
from pathlib import Path
|
||||
|
||||
@@ -82,7 +82,15 @@ CATEGORY_KEYWORDS = {
|
||||
"Displays": ["monitor", "screen", "resolution"],
|
||||
"Desktop Widgets": ["conky", "desktop clock"],
|
||||
"Audio": ["sound", "volume", "speaker", "microphone", "headphones", "pipewire"],
|
||||
"Window Rules": ["window", "rules", "matching", "floating", "fullscreen", "opacity"],
|
||||
"Window Rules": [
|
||||
"window",
|
||||
"rules",
|
||||
"matching",
|
||||
"floating",
|
||||
"fullscreen",
|
||||
"opacity",
|
||||
],
|
||||
"Locale": ["locale", "language", "country"],
|
||||
}
|
||||
|
||||
TAB_INDEX_MAP = {
|
||||
@@ -115,6 +123,7 @@ TAB_INDEX_MAP = {
|
||||
"DesktopWidgetsTab.qml": 27,
|
||||
"WindowRulesTab.qml": 28,
|
||||
"AudioTab.qml": 29,
|
||||
"LocaleTab.qml": 30,
|
||||
}
|
||||
|
||||
TAB_CATEGORY_MAP = {
|
||||
@@ -147,6 +156,7 @@ TAB_CATEGORY_MAP = {
|
||||
27: "Desktop Widgets",
|
||||
28: "Window Rules",
|
||||
29: "Audio",
|
||||
30: "Locale",
|
||||
}
|
||||
|
||||
SEARCHABLE_COMPONENTS = [
|
||||
|
||||
Reference in New Issue
Block a user