feat: manage owner usage history records

This commit is contained in:
Wyndham ARR
2026-08-03 16:43:27 +08:00
parent 393b841023
commit 84443d5dba
17 changed files with 798 additions and 102 deletions

View File

@@ -34,7 +34,7 @@ function placeholderNames(value) {
test("all three locale dictionaries have identical keys", () => {
assert.deepEqual(locales, ["en", "zh", "th"]);
const expected = Object.keys(dictionaries.en).sort();
assert.equal(expected.length, 195);
assert.equal(expected.length, 215);
for (const locale of locales) {
assert.deepEqual(Object.keys(dictionaries[locale]).sort(), expected, `${locale} key parity`);
}