feat: Implement basic general folder support (#2051)

- Related: #1748
This commit is contained in:
Dermot Duffy
2025-05-21 19:59:21 -07:00
committed by GitHub
parent 2eb0d9e35e
commit c6a4c8aea2
350 changed files with 12837 additions and 4509 deletions
+2 -1
View File
@@ -86,7 +86,8 @@ export function localize(string: string, search = '', replace = ''): string {
translated = string
.split('.')
.reduce((o, i) => o[i], languages[advancedCameraCardLanguage ?? DEFAULT_LANG]);
} catch (_) {}
// eslint-disable-next-line @typescript-eslint/no-unused-vars
} catch (_e) {}
if (!translated) {
translated = string.split('.').reduce((o, i) => o[i], languages[DEFAULT_LANG]);