dsh-plugin-subscriptions 0.4.2 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -40,6 +40,13 @@ export declare const en: {
40
40
  generatingVideo: string;
41
41
  videoLoading: string;
42
42
  videoLoadFailed: string;
43
+ speed: string;
44
+ speedStandard: string;
45
+ speedStandardDescription: string;
46
+ speedFast: string;
47
+ speedFastDescription: string;
48
+ commandFast: string;
49
+ commandFastUnavailable: string;
43
50
  };
44
51
  /** zh strings, one per {@link en} key. */
45
52
  export declare const zh: {
@@ -82,6 +89,13 @@ export declare const zh: {
82
89
  generatingVideo: string;
83
90
  videoLoading: string;
84
91
  videoLoadFailed: string;
92
+ speed: string;
93
+ speedStandard: string;
94
+ speedStandardDescription: string;
95
+ speedFast: string;
96
+ speedFastDescription: string;
97
+ commandFast: string;
98
+ commandFastUnavailable: string;
85
99
  };
86
100
  /** The Subscriptions namespace key union (en is the key-set source of truth). */
87
101
  export type SubscriptionsKey = keyof typeof en;
@@ -40,6 +40,13 @@ export const en = {
40
40
  generatingVideo: 'Generating video…',
41
41
  videoLoading: 'Loading video…',
42
42
  videoLoadFailed: 'Video failed to load: {message}',
43
+ speed: 'Speed',
44
+ speedStandard: 'Standard',
45
+ speedStandardDescription: 'Default speed',
46
+ speedFast: 'Fast',
47
+ speedFastDescription: '1.5x speed, more usage',
48
+ commandFast: 'Switch the Codex speed tier (Standard/Fast)',
49
+ commandFastUnavailable: 'The current model has no fast tier; /fast only works on Codex models whose catalog advertises one',
43
50
  };
44
51
  /** zh strings, one per {@link en} key. */
45
52
  export const zh = {
@@ -82,4 +89,11 @@ export const zh = {
82
89
  generatingVideo: '正在生成视频…',
83
90
  videoLoading: '视频加载中…',
84
91
  videoLoadFailed: '视频加载失败:{message}',
92
+ speed: '速度',
93
+ speedStandard: '标准',
94
+ speedStandardDescription: '默认速度',
95
+ speedFast: '快速',
96
+ speedFastDescription: '约 1.5 倍速度,消耗更多用量',
97
+ commandFast: '切换 Codex 速度档(标准/快速)',
98
+ commandFastUnavailable: '当前模型不支持快速档;/fast 仅对目录声明了 fast tier 的 Codex 模型可用',
85
99
  };