Skip to content

Legacy operator locales

The two subpath exports are label dictionaries for the deprecated legacy Condition operators. They are not exported by the package root and do not change request serialization, server behavior or Viewer UI language. Each dictionary maps every Operator member to a string; there is no fallback language resolver or provider.

en_US

ts
import { en_US } from '@ahoo-wang/fetcher-wow/query/locale/en_US';
console.log(en_US.EQ); // Equals

packages/wow/src/query/locale/en_US.ts:17

zh_CN

ts
import { zh_CN } from '@ahoo-wang/fetcher-wow/query/locale/zh_CN';
console.log(zh_CN.EQ);

packages/wow/src/query/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 entry has a default export.

Released under the Apache License 2.0.