mirror of
https://wget.la/https://github.com/leookun/cursor-byok
synced 2026-08-17 03:27:02 +08:00
11 lines
437 B
JavaScript
11 lines
437 B
JavaScript
export const LOCALE_STORAGE_KEY = "cursor-client:locale:v1";
|
|
export const LOCALE_STORAGE_SOURCE_KEY = "cursor-client:locale-source:v1";
|
|
export const SOURCE_LOCALE = "zh-CN";
|
|
export const DEFAULT_LOCALE = "en-US";
|
|
export const SUPPORTED_LOCALES = ["zh-CN", "en-US", "ja-JP"];
|
|
export const LOCALE_OPTIONS = [
|
|
{ label: "简体中文", value: "zh-CN" },
|
|
{ label: "English", value: "en-US" },
|
|
{ label: "日本語", value: "ja-JP" },
|
|
];
|