Use American English spelling throughout

This commit is contained in:
2026-09-15 11:45:58 -07:00
parent 6ba89696ee
commit d1731efdb9
169 changed files with 786 additions and 795 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ export function splitLabel(label: string): { categoryKey: string; action: string
const loaded = new Map<string, Promise<PermissionCatalog | null>>();
/** The catalogue for a language, or null for English and for a language without a file. */
/** The catalog for a language, or null for English and for a language without a file. */
export function loadPermissionCatalog(tag: string = currentLanguage()): Promise<PermissionCatalog | null> {
if (tag === DEFAULT_UI_LANGUAGE) return Promise.resolve(null);
let pending = loaded.get(tag);