Legacy operator locales
The two dictionaries are label dictionaries for the deprecated legacy Condition operators, exported by the @ahoo-wang/wow-client/legacy subpath. They are not exported by the package root and do not change request serialization, server behavior or UI language. Each dictionary maps every Operator member to a string; there is no fallback language resolver or provider.
en_US
import { en_US } from '@ahoo-wang/wow-client/legacy';
console.log(en_US.EQ); // Equalstypescript/wow-client/src/legacy/locale/en_US.ts:17
zh_CN
import { zh_CN } from '@ahoo-wang/wow-client/legacy';
console.log(zh_CN.EQ);typescript/wow-client/src/legacy/locale/zh_CN.ts:17
Dictionary type OperatorLocale · Condition builders
Both dictionaries are declared as export const <locale>: OperatorLocale. The full key set is defined by Operator; values are display labels and do not modify condition semantics. Neither has a default export; the former /query/locale/en_US and /query/locale/zh_CN subpaths no longer exist.