@qwen-code/qwen-code 0.8.2-preview.0 → 0.8.2-preview.1
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.
- package/cli.js +2166 -456
- package/locales/de.js +18 -10
- package/locales/en.js +16 -8
- package/locales/ja.js +886 -0
- package/locales/pt.js +1390 -0
- package/locales/ru.js +17 -10
- package/locales/zh.js +16 -8
- package/package.json +2 -2
package/cli.js
CHANGED
|
@@ -8531,7 +8531,7 @@ var require_agent = __commonJS({
|
|
|
8531
8531
|
return opts && opts.connections === 1 ? new Client3(origin, opts) : new Pool(origin, opts);
|
|
8532
8532
|
}
|
|
8533
8533
|
__name(defaultFactory, "defaultFactory");
|
|
8534
|
-
var
|
|
8534
|
+
var Agent4 = class extends DispatcherBase {
|
|
8535
8535
|
static {
|
|
8536
8536
|
__name(this, "Agent");
|
|
8537
8537
|
}
|
|
@@ -8606,7 +8606,7 @@ var require_agent = __commonJS({
|
|
|
8606
8606
|
await Promise.all(destroyPromises);
|
|
8607
8607
|
}
|
|
8608
8608
|
};
|
|
8609
|
-
module2.exports =
|
|
8609
|
+
module2.exports = Agent4;
|
|
8610
8610
|
}
|
|
8611
8611
|
});
|
|
8612
8612
|
|
|
@@ -8617,7 +8617,7 @@ var require_proxy_agent = __commonJS({
|
|
|
8617
8617
|
init_esbuild_shims();
|
|
8618
8618
|
var { kProxy, kClose, kDestroy, kDispatch, kInterceptors } = require_symbols();
|
|
8619
8619
|
var { URL: URL5 } = __require("node:url");
|
|
8620
|
-
var
|
|
8620
|
+
var Agent4 = require_agent();
|
|
8621
8621
|
var Pool = require_pool();
|
|
8622
8622
|
var DispatcherBase = require_dispatcher_base();
|
|
8623
8623
|
var { InvalidArgumentError, RequestAbortedError, SecureProxyConnectionError } = require_errors();
|
|
@@ -8695,7 +8695,7 @@ var require_proxy_agent = __commonJS({
|
|
|
8695
8695
|
return this.#client.destroy(err);
|
|
8696
8696
|
}
|
|
8697
8697
|
};
|
|
8698
|
-
var
|
|
8698
|
+
var ProxyAgent6 = class extends DispatcherBase {
|
|
8699
8699
|
static {
|
|
8700
8700
|
__name(this, "ProxyAgent");
|
|
8701
8701
|
}
|
|
@@ -8741,7 +8741,7 @@ var require_proxy_agent = __commonJS({
|
|
|
8741
8741
|
return agentFactory(origin2, options2);
|
|
8742
8742
|
}, "factory");
|
|
8743
8743
|
this[kClient] = clientFactory(url2, { connect });
|
|
8744
|
-
this[kAgent] = new
|
|
8744
|
+
this[kAgent] = new Agent4({
|
|
8745
8745
|
...opts,
|
|
8746
8746
|
factory,
|
|
8747
8747
|
connect: /* @__PURE__ */ __name(async (opts2, callback) => {
|
|
@@ -8841,7 +8841,7 @@ var require_proxy_agent = __commonJS({
|
|
|
8841
8841
|
}
|
|
8842
8842
|
}
|
|
8843
8843
|
__name(throwIfProxyAuthIsSent, "throwIfProxyAuthIsSent");
|
|
8844
|
-
module2.exports =
|
|
8844
|
+
module2.exports = ProxyAgent6;
|
|
8845
8845
|
}
|
|
8846
8846
|
});
|
|
8847
8847
|
|
|
@@ -8852,14 +8852,14 @@ var require_env_http_proxy_agent = __commonJS({
|
|
|
8852
8852
|
init_esbuild_shims();
|
|
8853
8853
|
var DispatcherBase = require_dispatcher_base();
|
|
8854
8854
|
var { kClose, kDestroy, kClosed, kDestroyed, kDispatch, kNoProxyAgent, kHttpProxyAgent, kHttpsProxyAgent } = require_symbols();
|
|
8855
|
-
var
|
|
8856
|
-
var
|
|
8855
|
+
var ProxyAgent6 = require_proxy_agent();
|
|
8856
|
+
var Agent4 = require_agent();
|
|
8857
8857
|
var DEFAULT_PORTS = {
|
|
8858
8858
|
"http:": 80,
|
|
8859
8859
|
"https:": 443
|
|
8860
8860
|
};
|
|
8861
8861
|
var experimentalWarned = false;
|
|
8862
|
-
var
|
|
8862
|
+
var EnvHttpProxyAgent2 = class extends DispatcherBase {
|
|
8863
8863
|
static {
|
|
8864
8864
|
__name(this, "EnvHttpProxyAgent");
|
|
8865
8865
|
}
|
|
@@ -8876,16 +8876,16 @@ var require_env_http_proxy_agent = __commonJS({
|
|
|
8876
8876
|
});
|
|
8877
8877
|
}
|
|
8878
8878
|
const { httpProxy, httpsProxy, noProxy, ...agentOpts } = opts;
|
|
8879
|
-
this[kNoProxyAgent] = new
|
|
8879
|
+
this[kNoProxyAgent] = new Agent4(agentOpts);
|
|
8880
8880
|
const HTTP_PROXY = httpProxy ?? process.env.http_proxy ?? process.env.HTTP_PROXY;
|
|
8881
8881
|
if (HTTP_PROXY) {
|
|
8882
|
-
this[kHttpProxyAgent] = new
|
|
8882
|
+
this[kHttpProxyAgent] = new ProxyAgent6({ ...agentOpts, uri: HTTP_PROXY });
|
|
8883
8883
|
} else {
|
|
8884
8884
|
this[kHttpProxyAgent] = this[kNoProxyAgent];
|
|
8885
8885
|
}
|
|
8886
8886
|
const HTTPS_PROXY = httpsProxy ?? process.env.https_proxy ?? process.env.HTTPS_PROXY;
|
|
8887
8887
|
if (HTTPS_PROXY) {
|
|
8888
|
-
this[kHttpsProxyAgent] = new
|
|
8888
|
+
this[kHttpsProxyAgent] = new ProxyAgent6({ ...agentOpts, uri: HTTPS_PROXY });
|
|
8889
8889
|
} else {
|
|
8890
8890
|
this[kHttpsProxyAgent] = this[kHttpProxyAgent];
|
|
8891
8891
|
}
|
|
@@ -8981,7 +8981,7 @@ var require_env_http_proxy_agent = __commonJS({
|
|
|
8981
8981
|
return process.env.no_proxy ?? process.env.NO_PROXY ?? "";
|
|
8982
8982
|
}
|
|
8983
8983
|
};
|
|
8984
|
-
module2.exports =
|
|
8984
|
+
module2.exports = EnvHttpProxyAgent2;
|
|
8985
8985
|
}
|
|
8986
8986
|
});
|
|
8987
8987
|
|
|
@@ -11282,7 +11282,7 @@ var require_mock_agent = __commonJS({
|
|
|
11282
11282
|
"use strict";
|
|
11283
11283
|
init_esbuild_shims();
|
|
11284
11284
|
var { kClients } = require_symbols();
|
|
11285
|
-
var
|
|
11285
|
+
var Agent4 = require_agent();
|
|
11286
11286
|
var {
|
|
11287
11287
|
kAgent,
|
|
11288
11288
|
kMockAgentSet,
|
|
@@ -11312,7 +11312,7 @@ var require_mock_agent = __commonJS({
|
|
|
11312
11312
|
if (opts?.agent && typeof opts.agent.dispatch !== "function") {
|
|
11313
11313
|
throw new InvalidArgumentError("Argument opts.agent must implement Agent");
|
|
11314
11314
|
}
|
|
11315
|
-
const agent = opts?.agent ? opts.agent : new
|
|
11315
|
+
const agent = opts?.agent ? opts.agent : new Agent4(opts);
|
|
11316
11316
|
this[kAgent] = agent;
|
|
11317
11317
|
this[kClients] = agent[kClients];
|
|
11318
11318
|
this[kOptions] = buildMockOptions(opts);
|
|
@@ -11417,9 +11417,9 @@ var require_global2 = __commonJS({
|
|
|
11417
11417
|
init_esbuild_shims();
|
|
11418
11418
|
var globalDispatcher = Symbol.for("undici.globalDispatcher.1");
|
|
11419
11419
|
var { InvalidArgumentError } = require_errors();
|
|
11420
|
-
var
|
|
11420
|
+
var Agent4 = require_agent();
|
|
11421
11421
|
if (getGlobalDispatcher() === void 0) {
|
|
11422
|
-
setGlobalDispatcher3(new
|
|
11422
|
+
setGlobalDispatcher3(new Agent4());
|
|
11423
11423
|
}
|
|
11424
11424
|
function setGlobalDispatcher3(agent) {
|
|
11425
11425
|
if (!agent || typeof agent.dispatch !== "function") {
|
|
@@ -18884,9 +18884,9 @@ var require_undici = __commonJS({
|
|
|
18884
18884
|
var Dispatcher = require_dispatcher();
|
|
18885
18885
|
var Pool = require_pool();
|
|
18886
18886
|
var BalancedPool = require_balanced_pool();
|
|
18887
|
-
var
|
|
18888
|
-
var
|
|
18889
|
-
var
|
|
18887
|
+
var Agent4 = require_agent();
|
|
18888
|
+
var ProxyAgent6 = require_proxy_agent();
|
|
18889
|
+
var EnvHttpProxyAgent2 = require_env_http_proxy_agent();
|
|
18890
18890
|
var RetryAgent = require_retry_agent();
|
|
18891
18891
|
var errors = require_errors();
|
|
18892
18892
|
var util4 = require_util();
|
|
@@ -18907,9 +18907,9 @@ var require_undici = __commonJS({
|
|
|
18907
18907
|
module2.exports.Client = Client3;
|
|
18908
18908
|
module2.exports.Pool = Pool;
|
|
18909
18909
|
module2.exports.BalancedPool = BalancedPool;
|
|
18910
|
-
module2.exports.Agent =
|
|
18911
|
-
module2.exports.ProxyAgent =
|
|
18912
|
-
module2.exports.EnvHttpProxyAgent =
|
|
18910
|
+
module2.exports.Agent = Agent4;
|
|
18911
|
+
module2.exports.ProxyAgent = ProxyAgent6;
|
|
18912
|
+
module2.exports.EnvHttpProxyAgent = EnvHttpProxyAgent2;
|
|
18913
18913
|
module2.exports.RetryAgent = RetryAgent;
|
|
18914
18914
|
module2.exports.RetryHandler = RetryHandler;
|
|
18915
18915
|
module2.exports.DecoratorHandler = DecoratorHandler;
|
|
@@ -20718,7 +20718,7 @@ var require_dist = __commonJS({
|
|
|
20718
20718
|
var https_1 = __require("https");
|
|
20719
20719
|
__exportStar(require_helpers(), exports2);
|
|
20720
20720
|
var INTERNAL = Symbol("AgentBaseInternalState");
|
|
20721
|
-
var
|
|
20721
|
+
var Agent4 = class extends http7.Agent {
|
|
20722
20722
|
static {
|
|
20723
20723
|
__name(this, "Agent");
|
|
20724
20724
|
}
|
|
@@ -20832,7 +20832,7 @@ var require_dist = __commonJS({
|
|
|
20832
20832
|
}
|
|
20833
20833
|
}
|
|
20834
20834
|
};
|
|
20835
|
-
exports2.Agent =
|
|
20835
|
+
exports2.Agent = Agent4;
|
|
20836
20836
|
}
|
|
20837
20837
|
});
|
|
20838
20838
|
|
|
@@ -104836,8 +104836,8 @@ function readableFromUint8Array(buff) {
|
|
|
104836
104836
|
}
|
|
104837
104837
|
function createHttpAgent(rawUrl, agentOptions) {
|
|
104838
104838
|
const parsedUrl = new URL(rawUrl);
|
|
104839
|
-
const
|
|
104840
|
-
return new
|
|
104839
|
+
const Agent4 = parsedUrl.protocol === "http:" ? http3.Agent : https3.Agent;
|
|
104840
|
+
return new Agent4(agentOptions);
|
|
104841
104841
|
}
|
|
104842
104842
|
var init_http_transport_utils = __esm({
|
|
104843
104843
|
"node_modules/@opentelemetry/otlp-exporter-base/build/esm/transport/http-transport-utils.js"() {
|
|
@@ -129795,30 +129795,6 @@ function isQwenQuotaExceededError(error2) {
|
|
|
129795
129795
|
}
|
|
129796
129796
|
return false;
|
|
129797
129797
|
}
|
|
129798
|
-
function isQwenThrottlingError(error2) {
|
|
129799
|
-
const checkMessage = /* @__PURE__ */ __name((message) => {
|
|
129800
|
-
const lowerMessage = message.toLowerCase();
|
|
129801
|
-
return lowerMessage.includes("throttling") || lowerMessage.includes("requests throttling triggered") || lowerMessage.includes("rate limit") || lowerMessage.includes("too many requests");
|
|
129802
|
-
}, "checkMessage");
|
|
129803
|
-
const getStatusCode = /* @__PURE__ */ __name((error3) => {
|
|
129804
|
-
if (error3 && typeof error3 === "object") {
|
|
129805
|
-
const errorObj = error3;
|
|
129806
|
-
return errorObj.status || errorObj.code;
|
|
129807
|
-
}
|
|
129808
|
-
return void 0;
|
|
129809
|
-
}, "getStatusCode");
|
|
129810
|
-
const statusCode = getStatusCode(error2);
|
|
129811
|
-
if (typeof error2 === "string") {
|
|
129812
|
-
return statusCode === 429 && checkMessage(error2) || error2.includes("throttling");
|
|
129813
|
-
}
|
|
129814
|
-
if (isStructuredError(error2)) {
|
|
129815
|
-
return statusCode === 429 && checkMessage(error2.message);
|
|
129816
|
-
}
|
|
129817
|
-
if (isApiError(error2)) {
|
|
129818
|
-
return error2.error.code === 429 && checkMessage(error2.error.message);
|
|
129819
|
-
}
|
|
129820
|
-
return false;
|
|
129821
|
-
}
|
|
129822
129798
|
var init_quotaErrorDetection = __esm({
|
|
129823
129799
|
"packages/core/dist/src/utils/quotaErrorDetection.js"() {
|
|
129824
129800
|
"use strict";
|
|
@@ -129826,7 +129802,6 @@ var init_quotaErrorDetection = __esm({
|
|
|
129826
129802
|
__name(isApiError, "isApiError");
|
|
129827
129803
|
__name(isStructuredError, "isStructuredError");
|
|
129828
129804
|
__name(isQwenQuotaExceededError, "isQwenQuotaExceededError");
|
|
129829
|
-
__name(isQwenThrottlingError, "isQwenThrottlingError");
|
|
129830
129805
|
}
|
|
129831
129806
|
});
|
|
129832
129807
|
|
|
@@ -140593,7 +140568,7 @@ function detectRuntime() {
|
|
|
140593
140568
|
}
|
|
140594
140569
|
return "unknown";
|
|
140595
140570
|
}
|
|
140596
|
-
function buildRuntimeFetchOptions(sdkType) {
|
|
140571
|
+
function buildRuntimeFetchOptions(sdkType, proxyUrl) {
|
|
140597
140572
|
const runtime = detectRuntime();
|
|
140598
140573
|
switch (runtime) {
|
|
140599
140574
|
case "bun": {
|
|
@@ -140617,17 +140592,14 @@ function buildRuntimeFetchOptions(sdkType) {
|
|
|
140617
140592
|
}
|
|
140618
140593
|
case "node": {
|
|
140619
140594
|
try {
|
|
140620
|
-
const
|
|
140621
|
-
bodyTimeout: 0
|
|
140622
|
-
// Disable to let SDK timeout control total request time
|
|
140623
|
-
});
|
|
140595
|
+
const dispatcher = createDispatcher(proxyUrl);
|
|
140624
140596
|
if (sdkType === "openai") {
|
|
140625
140597
|
return {
|
|
140626
|
-
dispatcher
|
|
140598
|
+
dispatcher
|
|
140627
140599
|
};
|
|
140628
140600
|
} else {
|
|
140629
140601
|
return {
|
|
140630
|
-
httpAgent:
|
|
140602
|
+
httpAgent: dispatcher
|
|
140631
140603
|
};
|
|
140632
140604
|
}
|
|
140633
140605
|
} catch {
|
|
@@ -140640,17 +140612,14 @@ function buildRuntimeFetchOptions(sdkType) {
|
|
|
140640
140612
|
}
|
|
140641
140613
|
default: {
|
|
140642
140614
|
try {
|
|
140643
|
-
const
|
|
140644
|
-
bodyTimeout: 0
|
|
140645
|
-
// Disable to let SDK timeout control total request time
|
|
140646
|
-
});
|
|
140615
|
+
const dispatcher = createDispatcher(proxyUrl);
|
|
140647
140616
|
if (sdkType === "openai") {
|
|
140648
140617
|
return {
|
|
140649
|
-
dispatcher
|
|
140618
|
+
dispatcher
|
|
140650
140619
|
};
|
|
140651
140620
|
} else {
|
|
140652
140621
|
return {
|
|
140653
|
-
httpAgent:
|
|
140622
|
+
httpAgent: dispatcher
|
|
140654
140623
|
};
|
|
140655
140624
|
}
|
|
140656
140625
|
} catch {
|
|
@@ -140663,6 +140632,19 @@ function buildRuntimeFetchOptions(sdkType) {
|
|
|
140663
140632
|
}
|
|
140664
140633
|
}
|
|
140665
140634
|
}
|
|
140635
|
+
function createDispatcher(proxyUrl) {
|
|
140636
|
+
if (proxyUrl) {
|
|
140637
|
+
return new import_undici.ProxyAgent({
|
|
140638
|
+
uri: proxyUrl,
|
|
140639
|
+
headersTimeout: 0,
|
|
140640
|
+
bodyTimeout: 0
|
|
140641
|
+
});
|
|
140642
|
+
}
|
|
140643
|
+
return new import_undici.Agent({
|
|
140644
|
+
headersTimeout: 0,
|
|
140645
|
+
bodyTimeout: 0
|
|
140646
|
+
});
|
|
140647
|
+
}
|
|
140666
140648
|
var import_undici;
|
|
140667
140649
|
var init_runtimeFetchOptions = __esm({
|
|
140668
140650
|
"packages/core/dist/src/utils/runtimeFetchOptions.js"() {
|
|
@@ -140671,6 +140653,7 @@ var init_runtimeFetchOptions = __esm({
|
|
|
140671
140653
|
import_undici = __toESM(require_undici(), 1);
|
|
140672
140654
|
__name(detectRuntime, "detectRuntime");
|
|
140673
140655
|
__name(buildRuntimeFetchOptions, "buildRuntimeFetchOptions");
|
|
140656
|
+
__name(createDispatcher, "createDispatcher");
|
|
140674
140657
|
}
|
|
140675
140658
|
});
|
|
140676
140659
|
|
|
@@ -140705,7 +140688,7 @@ var init_default = __esm({
|
|
|
140705
140688
|
buildClient() {
|
|
140706
140689
|
const { apiKey, baseUrl, timeout: timeout2 = DEFAULT_TIMEOUT, maxRetries = DEFAULT_MAX_RETRIES } = this.contentGeneratorConfig;
|
|
140707
140690
|
const defaultHeaders = this.buildHeaders();
|
|
140708
|
-
const fetchOptions = buildRuntimeFetchOptions("openai");
|
|
140691
|
+
const fetchOptions = buildRuntimeFetchOptions("openai", this.cliConfig.getProxy());
|
|
140709
140692
|
return new OpenAI({
|
|
140710
140693
|
apiKey,
|
|
140711
140694
|
baseURL: baseUrl,
|
|
@@ -140975,7 +140958,7 @@ var init_dashscope = __esm({
|
|
|
140975
140958
|
buildClient() {
|
|
140976
140959
|
const { apiKey, baseUrl = DEFAULT_DASHSCOPE_BASE_URL, timeout: timeout2 = DEFAULT_TIMEOUT, maxRetries = DEFAULT_MAX_RETRIES } = this.contentGeneratorConfig;
|
|
140977
140960
|
const defaultHeaders = this.buildHeaders();
|
|
140978
|
-
const fetchOptions = buildRuntimeFetchOptions("openai");
|
|
140961
|
+
const fetchOptions = buildRuntimeFetchOptions("openai", this.cliConfig.getProxy());
|
|
140979
140962
|
return new OpenAI({
|
|
140980
140963
|
apiKey,
|
|
140981
140964
|
baseURL: baseUrl,
|
|
@@ -150008,7 +149991,7 @@ var require_agent2 = __commonJS({
|
|
|
150008
149991
|
console.log("[agentkeepalive:deprecated] %s", message);
|
|
150009
149992
|
}
|
|
150010
149993
|
__name(deprecate6, "deprecate");
|
|
150011
|
-
var
|
|
149994
|
+
var Agent4 = class extends OriginalAgent {
|
|
150012
149995
|
static {
|
|
150013
149996
|
__name(this, "Agent");
|
|
150014
149997
|
}
|
|
@@ -150308,7 +150291,7 @@ var require_agent2 = __commonJS({
|
|
|
150308
150291
|
socket.on("agentRemove", onRemove);
|
|
150309
150292
|
}
|
|
150310
150293
|
__name(installListeners, "installListeners");
|
|
150311
|
-
module2.exports =
|
|
150294
|
+
module2.exports = Agent4;
|
|
150312
150295
|
function inspect3(obj) {
|
|
150313
150296
|
const res = {};
|
|
150314
150297
|
for (const key in obj) {
|
|
@@ -155222,6 +155205,7 @@ var init_anthropicContentGenerator = __esm({
|
|
|
155222
155205
|
init_safeJsonParse();
|
|
155223
155206
|
init_converter2();
|
|
155224
155207
|
init_runtimeFetchOptions();
|
|
155208
|
+
init_constants2();
|
|
155225
155209
|
AnthropicContentGenerator = class {
|
|
155226
155210
|
static {
|
|
155227
155211
|
__name(this, "AnthropicContentGenerator");
|
|
@@ -155235,11 +155219,11 @@ var init_anthropicContentGenerator = __esm({
|
|
|
155235
155219
|
this.cliConfig = cliConfig;
|
|
155236
155220
|
const defaultHeaders = this.buildHeaders();
|
|
155237
155221
|
const baseURL = contentGeneratorConfig.baseUrl;
|
|
155238
|
-
const runtimeOptions = buildRuntimeFetchOptions("anthropic");
|
|
155222
|
+
const runtimeOptions = buildRuntimeFetchOptions("anthropic", this.cliConfig.getProxy());
|
|
155239
155223
|
this.client = new sdk_default({
|
|
155240
155224
|
apiKey: contentGeneratorConfig.apiKey,
|
|
155241
155225
|
baseURL,
|
|
155242
|
-
timeout: contentGeneratorConfig.timeout,
|
|
155226
|
+
timeout: contentGeneratorConfig.timeout || DEFAULT_TIMEOUT,
|
|
155243
155227
|
maxRetries: contentGeneratorConfig.maxRetries,
|
|
155244
155228
|
defaultHeaders,
|
|
155245
155229
|
...runtimeOptions
|
|
@@ -155656,7 +155640,7 @@ __export(geminiContentGenerator_exports, {
|
|
|
155656
155640
|
createGeminiContentGenerator: () => createGeminiContentGenerator
|
|
155657
155641
|
});
|
|
155658
155642
|
function createGeminiContentGenerator(config2, gcConfig) {
|
|
155659
|
-
const version2 = "0.8.2-preview.
|
|
155643
|
+
const version2 = "0.8.2-preview.1";
|
|
155660
155644
|
const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
|
|
155661
155645
|
const baseHeaders = {
|
|
155662
155646
|
"User-Agent": userAgent2
|
|
@@ -155825,19 +155809,8 @@ var init_contentGenerator = __esm({
|
|
|
155825
155809
|
|
|
155826
155810
|
// packages/core/dist/src/utils/retry.js
|
|
155827
155811
|
function defaultShouldRetry(error2) {
|
|
155828
|
-
|
|
155829
|
-
|
|
155830
|
-
if (status === 429 || status >= 500 && status < 600) {
|
|
155831
|
-
return true;
|
|
155832
|
-
}
|
|
155833
|
-
}
|
|
155834
|
-
if (error2 instanceof Error && error2.message) {
|
|
155835
|
-
if (error2.message.includes("429"))
|
|
155836
|
-
return true;
|
|
155837
|
-
if (error2.message.match(/5\d{2}/))
|
|
155838
|
-
return true;
|
|
155839
|
-
}
|
|
155840
|
-
return false;
|
|
155812
|
+
const status = getErrorStatus(error2);
|
|
155813
|
+
return status === 429 || status !== void 0 && status >= 500 && status < 600;
|
|
155841
155814
|
}
|
|
155842
155815
|
function delay(ms) {
|
|
155843
155816
|
return new Promise((resolve28) => setTimeout(resolve28, ms));
|
|
@@ -155853,7 +155826,6 @@ async function retryWithBackoff(fn, options2) {
|
|
|
155853
155826
|
};
|
|
155854
155827
|
let attempt = 0;
|
|
155855
155828
|
let currentDelay = initialDelayMs;
|
|
155856
|
-
let consecutive429Count = 0;
|
|
155857
155829
|
while (attempt < maxAttempts) {
|
|
155858
155830
|
attempt++;
|
|
155859
155831
|
try {
|
|
@@ -155871,23 +155843,13 @@ async function retryWithBackoff(fn, options2) {
|
|
|
155871
155843
|
if (authType === AuthType2.QWEN_OAUTH && isQwenQuotaExceededError(error2)) {
|
|
155872
155844
|
throw new Error(`Qwen API quota exceeded: Your Qwen API quota has been exhausted. Please wait for your quota to reset.`);
|
|
155873
155845
|
}
|
|
155874
|
-
if (errorStatus === 429) {
|
|
155875
|
-
if (authType === AuthType2.QWEN_OAUTH && isQwenThrottlingError(error2)) {
|
|
155876
|
-
consecutive429Count = 0;
|
|
155877
|
-
} else {
|
|
155878
|
-
consecutive429Count++;
|
|
155879
|
-
}
|
|
155880
|
-
} else {
|
|
155881
|
-
consecutive429Count = 0;
|
|
155882
|
-
}
|
|
155883
|
-
console.debug("consecutive429Count", consecutive429Count);
|
|
155884
155846
|
if (attempt >= maxAttempts || !shouldRetryOnError(error2)) {
|
|
155885
155847
|
throw error2;
|
|
155886
155848
|
}
|
|
155887
|
-
const
|
|
155888
|
-
if (
|
|
155889
|
-
console.warn(`Attempt ${attempt} failed with status ${
|
|
155890
|
-
await delay(
|
|
155849
|
+
const retryAfterMs = errorStatus === 429 ? getRetryAfterDelayMs(error2) : 0;
|
|
155850
|
+
if (retryAfterMs > 0) {
|
|
155851
|
+
console.warn(`Attempt ${attempt} failed with status ${errorStatus ?? "unknown"}. Retrying after explicit delay of ${retryAfterMs}ms...`, error2);
|
|
155852
|
+
await delay(retryAfterMs);
|
|
155891
155853
|
currentDelay = initialDelayMs;
|
|
155892
155854
|
} else {
|
|
155893
155855
|
logRetryAttempt(attempt, error2, errorStatus);
|
|
@@ -155901,18 +155863,12 @@ async function retryWithBackoff(fn, options2) {
|
|
|
155901
155863
|
throw new Error("Retry attempts exhausted");
|
|
155902
155864
|
}
|
|
155903
155865
|
function getErrorStatus(error2) {
|
|
155904
|
-
if (typeof error2
|
|
155905
|
-
|
|
155906
|
-
return error2.status;
|
|
155907
|
-
}
|
|
155908
|
-
if ("response" in error2 && typeof error2.response === "object" && error2.response !== null) {
|
|
155909
|
-
const response = error2.response;
|
|
155910
|
-
if ("status" in response && typeof response.status === "number") {
|
|
155911
|
-
return response.status;
|
|
155912
|
-
}
|
|
155913
|
-
}
|
|
155866
|
+
if (typeof error2 !== "object" || error2 === null) {
|
|
155867
|
+
return void 0;
|
|
155914
155868
|
}
|
|
155915
|
-
|
|
155869
|
+
const err = error2;
|
|
155870
|
+
const value = err.status ?? err.statusCode ?? err.response?.status ?? err.error?.code;
|
|
155871
|
+
return typeof value === "number" && value >= 100 && value <= 599 ? value : void 0;
|
|
155916
155872
|
}
|
|
155917
155873
|
function getRetryAfterDelayMs(error2) {
|
|
155918
155874
|
if (typeof error2 === "object" && error2 !== null) {
|
|
@@ -155936,31 +155892,12 @@ function getRetryAfterDelayMs(error2) {
|
|
|
155936
155892
|
}
|
|
155937
155893
|
return 0;
|
|
155938
155894
|
}
|
|
155939
|
-
function getDelayDurationAndStatus(error2) {
|
|
155940
|
-
const errorStatus = getErrorStatus(error2);
|
|
155941
|
-
let delayDurationMs = 0;
|
|
155942
|
-
if (errorStatus === 429) {
|
|
155943
|
-
delayDurationMs = getRetryAfterDelayMs(error2);
|
|
155944
|
-
}
|
|
155945
|
-
return { delayDurationMs, errorStatus };
|
|
155946
|
-
}
|
|
155947
155895
|
function logRetryAttempt(attempt, error2, errorStatus) {
|
|
155948
|
-
|
|
155949
|
-
if (errorStatus) {
|
|
155950
|
-
message = `Attempt ${attempt} failed with status ${errorStatus}. Retrying with backoff...`;
|
|
155951
|
-
}
|
|
155896
|
+
const message = errorStatus ? `Attempt ${attempt} failed with status ${errorStatus}. Retrying with backoff...` : `Attempt ${attempt} failed. Retrying with backoff...`;
|
|
155952
155897
|
if (errorStatus === 429) {
|
|
155953
155898
|
console.warn(message, error2);
|
|
155954
155899
|
} else if (errorStatus && errorStatus >= 500 && errorStatus < 600) {
|
|
155955
155900
|
console.error(message, error2);
|
|
155956
|
-
} else if (error2 instanceof Error) {
|
|
155957
|
-
if (error2.message.includes("429")) {
|
|
155958
|
-
console.warn(`Attempt ${attempt} failed with 429 error (no Retry-After header). Retrying with backoff...`, error2);
|
|
155959
|
-
} else if (error2.message.match(/5\d{2}/)) {
|
|
155960
|
-
console.error(`Attempt ${attempt} failed with 5xx error. Retrying with backoff...`, error2);
|
|
155961
|
-
} else {
|
|
155962
|
-
console.warn(message, error2);
|
|
155963
|
-
}
|
|
155964
155901
|
} else {
|
|
155965
155902
|
console.warn(message, error2);
|
|
155966
155903
|
}
|
|
@@ -155973,8 +155910,8 @@ var init_retry = __esm({
|
|
|
155973
155910
|
init_contentGenerator();
|
|
155974
155911
|
init_quotaErrorDetection();
|
|
155975
155912
|
DEFAULT_RETRY_OPTIONS = {
|
|
155976
|
-
maxAttempts:
|
|
155977
|
-
initialDelayMs:
|
|
155913
|
+
maxAttempts: 7,
|
|
155914
|
+
initialDelayMs: 1500,
|
|
155978
155915
|
maxDelayMs: 3e4,
|
|
155979
155916
|
// 30 seconds
|
|
155980
155917
|
shouldRetryOnError: defaultShouldRetry
|
|
@@ -155984,7 +155921,6 @@ var init_retry = __esm({
|
|
|
155984
155921
|
__name(retryWithBackoff, "retryWithBackoff");
|
|
155985
155922
|
__name(getErrorStatus, "getErrorStatus");
|
|
155986
155923
|
__name(getRetryAfterDelayMs, "getRetryAfterDelayMs");
|
|
155987
|
-
__name(getDelayDurationAndStatus, "getDelayDurationAndStatus");
|
|
155988
155924
|
__name(logRetryAttempt, "logRetryAttempt");
|
|
155989
155925
|
}
|
|
155990
155926
|
});
|
|
@@ -156088,7 +156024,7 @@ var init_baseLlmClient = __esm({
|
|
|
156088
156024
|
init_errors();
|
|
156089
156025
|
init_retry();
|
|
156090
156026
|
init_generateContentResponseUtilities();
|
|
156091
|
-
DEFAULT_MAX_ATTEMPTS =
|
|
156027
|
+
DEFAULT_MAX_ATTEMPTS = 7;
|
|
156092
156028
|
BaseLlmClient = class {
|
|
156093
156029
|
static {
|
|
156094
156030
|
__name(this, "BaseLlmClient");
|
|
@@ -156528,42 +156464,6 @@ var init_chatRecordingService = __esm({
|
|
|
156528
156464
|
}
|
|
156529
156465
|
});
|
|
156530
156466
|
|
|
156531
|
-
// packages/core/dist/src/fallback/handler.js
|
|
156532
|
-
async function handleFallback(config2, failedModel, authType, error2) {
|
|
156533
|
-
if (authType === AuthType2.QWEN_OAUTH) {
|
|
156534
|
-
return handleQwenOAuthError(error2);
|
|
156535
|
-
}
|
|
156536
|
-
return null;
|
|
156537
|
-
}
|
|
156538
|
-
async function handleQwenOAuthError(error2) {
|
|
156539
|
-
if (!error2) {
|
|
156540
|
-
return null;
|
|
156541
|
-
}
|
|
156542
|
-
const errorMessage = error2 instanceof Error ? error2.message.toLowerCase() : String(error2).toLowerCase();
|
|
156543
|
-
const errorCode = error2?.status || error2?.code;
|
|
156544
|
-
const isAuthError = errorCode === 401 || errorCode === 403 || errorMessage.includes("unauthorized") || errorMessage.includes("forbidden") || errorMessage.includes("invalid api key") || errorMessage.includes("authentication") || errorMessage.includes("access denied") || errorMessage.includes("token") && errorMessage.includes("expired");
|
|
156545
|
-
const isRateLimitError = errorCode === 429 || errorMessage.includes("429") || errorMessage.includes("rate limit") || errorMessage.includes("too many requests");
|
|
156546
|
-
if (isAuthError) {
|
|
156547
|
-
console.warn("Qwen OAuth authentication error detected:", errorMessage);
|
|
156548
|
-
console.log("Note: If this persists, you may need to re-authenticate with Qwen OAuth");
|
|
156549
|
-
return null;
|
|
156550
|
-
}
|
|
156551
|
-
if (isRateLimitError) {
|
|
156552
|
-
console.warn("Qwen API rate limit encountered:", errorMessage);
|
|
156553
|
-
return null;
|
|
156554
|
-
}
|
|
156555
|
-
return null;
|
|
156556
|
-
}
|
|
156557
|
-
var init_handler = __esm({
|
|
156558
|
-
"packages/core/dist/src/fallback/handler.js"() {
|
|
156559
|
-
"use strict";
|
|
156560
|
-
init_esbuild_shims();
|
|
156561
|
-
init_contentGenerator();
|
|
156562
|
-
__name(handleFallback, "handleFallback");
|
|
156563
|
-
__name(handleQwenOAuthError, "handleQwenOAuthError");
|
|
156564
|
-
}
|
|
156565
|
-
});
|
|
156566
|
-
|
|
156567
156467
|
// packages/core/dist/src/core/geminiChat.js
|
|
156568
156468
|
function isValidResponse2(response) {
|
|
156569
156469
|
if (response.usageMetadata) {
|
|
@@ -156653,7 +156553,6 @@ var init_geminiChat = __esm({
|
|
|
156653
156553
|
init_loggers();
|
|
156654
156554
|
init_chatRecordingService();
|
|
156655
156555
|
init_types();
|
|
156656
|
-
init_handler();
|
|
156657
156556
|
init_uiTelemetry();
|
|
156658
156557
|
(function(StreamEventType2) {
|
|
156659
156558
|
StreamEventType2["CHUNK"] = "chunk";
|
|
@@ -156788,22 +156687,23 @@ var init_geminiChat = __esm({
|
|
|
156788
156687
|
contents: requestContents,
|
|
156789
156688
|
config: { ...this.generationConfig, ...params.config }
|
|
156790
156689
|
}, prompt_id), "apiCall");
|
|
156791
|
-
const onPersistent429Callback = /* @__PURE__ */ __name(async (authType, error2) => await handleFallback(this.config, model, authType, error2), "onPersistent429Callback");
|
|
156792
156690
|
const streamResponse2 = await retryWithBackoff(apiCall, {
|
|
156793
156691
|
shouldRetryOnError: /* @__PURE__ */ __name((error2) => {
|
|
156794
|
-
if (error2 instanceof
|
|
156795
|
-
if (error2.status === 400)
|
|
156796
|
-
return false;
|
|
156692
|
+
if (error2 instanceof Error) {
|
|
156797
156693
|
if (isSchemaDepthError(error2.message))
|
|
156798
156694
|
return false;
|
|
156799
|
-
if (error2.
|
|
156800
|
-
return
|
|
156801
|
-
if (error2.status >= 500 && error2.status < 600)
|
|
156802
|
-
return true;
|
|
156695
|
+
if (isInvalidArgumentError(error2.message))
|
|
156696
|
+
return false;
|
|
156803
156697
|
}
|
|
156698
|
+
const status = getErrorStatus(error2);
|
|
156699
|
+
if (status === 400)
|
|
156700
|
+
return false;
|
|
156701
|
+
if (status === 429)
|
|
156702
|
+
return true;
|
|
156703
|
+
if (status && status >= 500 && status < 600)
|
|
156704
|
+
return true;
|
|
156804
156705
|
return false;
|
|
156805
156706
|
}, "shouldRetryOnError"),
|
|
156806
|
-
onPersistent429: onPersistent429Callback,
|
|
156807
156707
|
authType: this.config.getContentGeneratorConfig()?.authType
|
|
156808
156708
|
});
|
|
156809
156709
|
return this.processStreamResponse(model, streamResponse2);
|
|
@@ -171192,12 +171092,11 @@ function isShellCommandReadOnly(command2) {
|
|
|
171192
171092
|
}
|
|
171193
171093
|
const segments = splitCommands(command2);
|
|
171194
171094
|
for (const segment of segments) {
|
|
171195
|
-
|
|
171196
|
-
if (!isAllowed) {
|
|
171095
|
+
if (!evaluateShellSegment(segment)) {
|
|
171197
171096
|
return false;
|
|
171198
171097
|
}
|
|
171199
171098
|
}
|
|
171200
|
-
return
|
|
171099
|
+
return segments.length > 0;
|
|
171201
171100
|
}
|
|
171202
171101
|
var import_shell_quote, READ_ONLY_ROOT_COMMANDS, BLOCKED_FIND_FLAGS, BLOCKED_FIND_PREFIXES, READ_ONLY_GIT_SUBCOMMANDS, BLOCKED_GIT_REMOTE_ACTIONS, BLOCKED_GIT_BRANCH_FLAGS, BLOCKED_SED_PREFIXES, AWK_SIDE_EFFECT_PATTERNS, SED_SIDE_EFFECT_PATTERNS, ENV_ASSIGNMENT_REGEX;
|
|
171203
171102
|
var init_shellReadOnlyChecker = __esm({
|
|
@@ -171395,6 +171294,13 @@ function splitCommands(command2) {
|
|
|
171395
171294
|
} else if (char === ";" || char === "&" || char === "|") {
|
|
171396
171295
|
commands.push(currentCommand.trim());
|
|
171397
171296
|
currentCommand = "";
|
|
171297
|
+
} else if (char === "\r" && nextChar === "\n") {
|
|
171298
|
+
commands.push(currentCommand.trim());
|
|
171299
|
+
currentCommand = "";
|
|
171300
|
+
i3++;
|
|
171301
|
+
} else if (char === "\n") {
|
|
171302
|
+
commands.push(currentCommand.trim());
|
|
171303
|
+
currentCommand = "";
|
|
171398
171304
|
} else {
|
|
171399
171305
|
currentCommand += char;
|
|
171400
171306
|
}
|
|
@@ -179264,7 +179170,6 @@ var init_client2 = __esm({
|
|
|
179264
179170
|
init_retry();
|
|
179265
179171
|
init_ideContext();
|
|
179266
179172
|
init_types7();
|
|
179267
|
-
init_handler();
|
|
179268
179173
|
MAX_TURNS = 100;
|
|
179269
179174
|
GeminiClient = class {
|
|
179270
179175
|
static {
|
|
@@ -179631,12 +179536,7 @@ var init_client2 = __esm({
|
|
|
179631
179536
|
contents
|
|
179632
179537
|
}, this.lastPromptId);
|
|
179633
179538
|
}, "apiCall");
|
|
179634
|
-
const onPersistent429Callback = /* @__PURE__ */ __name(async (authType, error2) => (
|
|
179635
|
-
// Pass the captured model to the centralized handler.
|
|
179636
|
-
await handleFallback(this.config, currentAttemptModel, authType, error2)
|
|
179637
|
-
), "onPersistent429Callback");
|
|
179638
179539
|
const result = await retryWithBackoff(apiCall, {
|
|
179639
|
-
onPersistent429: onPersistent429Callback,
|
|
179640
179540
|
authType: this.config.getContentGeneratorConfig()?.authType
|
|
179641
179541
|
});
|
|
179642
179542
|
return result;
|
|
@@ -218774,7 +218674,7 @@ function createFsWatchInstance(path118, options2, listener, errHandler, emitRaw)
|
|
|
218774
218674
|
}
|
|
218775
218675
|
}
|
|
218776
218676
|
var STR_DATA, STR_END, STR_CLOSE, EMPTY_FN, pl, isWindows2, isMacos, isLinux, isFreeBSD, isIBMi, EVENTS, EV, THROTTLE_MODE_WATCH, statMethods, KEY_LISTENERS, KEY_ERR, KEY_RAW, HANDLER_KEYS, binaryExtensions, isBinaryPath, foreach, addAndConvert, clearItem, delFromSet, isEmptySet, FsWatchInstances, fsWatchBroadcast, setFsWatchListener, FsWatchFileInstances, setFsWatchFileListener, NodeFsHandler;
|
|
218777
|
-
var
|
|
218677
|
+
var init_handler = __esm({
|
|
218778
218678
|
"node_modules/chokidar/esm/handler.js"() {
|
|
218779
218679
|
init_esbuild_shims();
|
|
218780
218680
|
STR_DATA = "data";
|
|
@@ -219596,7 +219496,7 @@ var init_esm21 = __esm({
|
|
|
219596
219496
|
"node_modules/chokidar/esm/index.js"() {
|
|
219597
219497
|
init_esbuild_shims();
|
|
219598
219498
|
init_esm20();
|
|
219599
|
-
|
|
219499
|
+
init_handler();
|
|
219600
219500
|
SLASH = "/";
|
|
219601
219501
|
SLASH_SLASH = "//";
|
|
219602
219502
|
ONE_DOT = ".";
|
|
@@ -231914,18 +231814,24 @@ async function convertClaudePluginPackage(extensionDir, pluginName) {
|
|
|
231914
231814
|
const tmpDir = await ExtensionStorage.createTmpDir();
|
|
231915
231815
|
try {
|
|
231916
231816
|
await copyDirectory(pluginSource, tmpDir);
|
|
231917
|
-
|
|
231918
|
-
|
|
231919
|
-
|
|
231920
|
-
|
|
231921
|
-
|
|
231922
|
-
|
|
231923
|
-
|
|
231817
|
+
const resourceConfigs = [
|
|
231818
|
+
{ name: "commands", config: mergedConfig.commands },
|
|
231819
|
+
{ name: "skills", config: mergedConfig.skills },
|
|
231820
|
+
{ name: "agents", config: mergedConfig.agents }
|
|
231821
|
+
];
|
|
231822
|
+
for (const { name: name3, config: config2 } of resourceConfigs) {
|
|
231823
|
+
const folderPath = path61.join(tmpDir, name3);
|
|
231824
|
+
const sourceFolderPath = path61.join(pluginSource, name3);
|
|
231825
|
+
if (config2) {
|
|
231826
|
+
if (fs59.existsSync(folderPath)) {
|
|
231827
|
+
fs59.rmSync(folderPath, { recursive: true, force: true });
|
|
231828
|
+
}
|
|
231829
|
+
await collectResources(config2, pluginSource, folderPath);
|
|
231830
|
+
} else if (!fs59.existsSync(sourceFolderPath) && fs59.existsSync(folderPath)) {
|
|
231831
|
+
fs59.rmSync(folderPath, { recursive: true, force: true });
|
|
231832
|
+
}
|
|
231924
231833
|
}
|
|
231925
231834
|
const agentsDestDir = path61.join(tmpDir, "agents");
|
|
231926
|
-
if (mergedConfig.agents) {
|
|
231927
|
-
await collectResources(mergedConfig.agents, pluginSource, agentsDestDir);
|
|
231928
|
-
}
|
|
231929
231835
|
await convertAgentFiles(agentsDestDir);
|
|
231930
231836
|
const qwenConfig = convertClaudeToQwenConfig(mergedConfig);
|
|
231931
231837
|
const qwenConfigPath = path61.join(tmpDir, "qwen-extension.json");
|
|
@@ -231962,6 +231868,7 @@ async function collectResources(resourcePaths, pluginRoot, destDir) {
|
|
|
231962
231868
|
console.log(`Skipping ${resolvedPath} as it's already in the correct location`);
|
|
231963
231869
|
continue;
|
|
231964
231870
|
}
|
|
231871
|
+
const finalDestDir = path61.join(destDir, dirName);
|
|
231965
231872
|
const files = await glob("**/*", {
|
|
231966
231873
|
cwd: resolvedPath,
|
|
231967
231874
|
nodir: true,
|
|
@@ -231969,7 +231876,7 @@ async function collectResources(resourcePaths, pluginRoot, destDir) {
|
|
|
231969
231876
|
});
|
|
231970
231877
|
for (const file of files) {
|
|
231971
231878
|
const srcFile = path61.join(resolvedPath, file);
|
|
231972
|
-
const destFile = path61.join(
|
|
231879
|
+
const destFile = path61.join(finalDestDir, file);
|
|
231973
231880
|
const destFileDir = path61.dirname(destFile);
|
|
231974
231881
|
if (!fs59.existsSync(destFileDir)) {
|
|
231975
231882
|
fs59.mkdirSync(destFileDir, { recursive: true });
|
|
@@ -281480,12 +281387,12 @@ var require_backend = __commonJS({
|
|
|
281480
281387
|
(_console = console).log.apply(_console, ["%cAgent %c".concat(methodName), "color: purple; font-weight: bold;", "font-weight: bold;"].concat(args));
|
|
281481
281388
|
}
|
|
281482
281389
|
}, "debug");
|
|
281483
|
-
var
|
|
281484
|
-
agent_inherits(
|
|
281485
|
-
var _super = agent_createSuper(
|
|
281486
|
-
function
|
|
281390
|
+
var Agent4 = /* @__PURE__ */ function(_EventEmitter) {
|
|
281391
|
+
agent_inherits(Agent5, _EventEmitter);
|
|
281392
|
+
var _super = agent_createSuper(Agent5);
|
|
281393
|
+
function Agent5(bridge) {
|
|
281487
281394
|
var _this;
|
|
281488
|
-
agent_classCallCheck(this,
|
|
281395
|
+
agent_classCallCheck(this, Agent5);
|
|
281489
281396
|
_this = _super.call(this);
|
|
281490
281397
|
agent_defineProperty(agent_assertThisInitialized(_this), "_isProfiling", false);
|
|
281491
281398
|
agent_defineProperty(agent_assertThisInitialized(_this), "_recordChangeDescriptions", false);
|
|
@@ -281885,8 +281792,8 @@ var require_backend = __commonJS({
|
|
|
281885
281792
|
TraceUpdates_initialize(agent_assertThisInitialized(_this));
|
|
281886
281793
|
return _this;
|
|
281887
281794
|
}
|
|
281888
|
-
__name(
|
|
281889
|
-
agent_createClass(
|
|
281795
|
+
__name(Agent5, "Agent");
|
|
281796
|
+
agent_createClass(Agent5, [{
|
|
281890
281797
|
key: "getInstanceAndStyle",
|
|
281891
281798
|
value: /* @__PURE__ */ __name(function getInstanceAndStyle(_ref22) {
|
|
281892
281799
|
var id = _ref22.id, rendererID = _ref22.rendererID;
|
|
@@ -281958,7 +281865,7 @@ var require_backend = __commonJS({
|
|
|
281958
281865
|
return this._rendererInterfaces;
|
|
281959
281866
|
}, "get")
|
|
281960
281867
|
}]);
|
|
281961
|
-
return
|
|
281868
|
+
return Agent5;
|
|
281962
281869
|
}(EventEmitter11);
|
|
281963
281870
|
;
|
|
281964
281871
|
function hook_typeof(obj) {
|
|
@@ -283826,7 +283733,7 @@ var require_backend = __commonJS({
|
|
|
283826
283733
|
if (window.__REACT_DEVTOOLS_COMPONENT_FILTERS__ == null) {
|
|
283827
283734
|
bridge.send("overrideComponentFilters", savedComponentFilters);
|
|
283828
283735
|
}
|
|
283829
|
-
var agent2 = new
|
|
283736
|
+
var agent2 = new Agent4(bridge);
|
|
283830
283737
|
agent2.addListener("shutdown", function() {
|
|
283831
283738
|
hook.emit("shutdown");
|
|
283832
283739
|
});
|
|
@@ -293040,6 +292947,17 @@ var init_de = __esm({
|
|
|
293040
292947
|
"Update all extensions.": "Alle Erweiterungen aktualisieren.",
|
|
293041
292948
|
"Either an extension name or --all must be provided": "Entweder ein Erweiterungsname oder --all muss angegeben werden",
|
|
293042
292949
|
"Lists installed extensions.": "Listet installierte Erweiterungen auf.",
|
|
292950
|
+
"Path:": "Pfad:",
|
|
292951
|
+
"Source:": "Quelle:",
|
|
292952
|
+
"Type:": "Typ:",
|
|
292953
|
+
"Ref:": "Ref:",
|
|
292954
|
+
"Release tag:": "Release-Tag:",
|
|
292955
|
+
"Enabled (User):": "Aktiviert (Benutzer):",
|
|
292956
|
+
"Enabled (Workspace):": "Aktiviert (Arbeitsbereich):",
|
|
292957
|
+
"Context files:": "Kontextdateien:",
|
|
292958
|
+
"Skills:": "Skills:",
|
|
292959
|
+
"Agents:": "Agents:",
|
|
292960
|
+
"MCP servers:": "MCP-Server:",
|
|
293043
292961
|
"Link extension failed to install.": "Verkn\xFCpfte Erweiterung konnte nicht installiert werden.",
|
|
293044
292962
|
'Extension "{{name}}" linked successfully and enabled.': 'Erweiterung "{{name}}" erfolgreich verkn\xFCpft und aktiviert.',
|
|
293045
292963
|
"Links an extension from a local path. Updates made to the local path will always be reflected.": "Verkn\xFCpft eine Erweiterung von einem lokalen Pfad. \xC4nderungen am lokalen Pfad werden immer widergespiegelt.",
|
|
@@ -293097,18 +293015,19 @@ var init_de = __esm({
|
|
|
293097
293015
|
// ============================================================================
|
|
293098
293016
|
// Commands - Language
|
|
293099
293017
|
// ============================================================================
|
|
293100
|
-
"Invalid language. Available:
|
|
293018
|
+
"Invalid language. Available: {{options}}": "Ung\xFCltige Sprache. Verf\xFCgbar: {{options}}",
|
|
293101
293019
|
"Language subcommands do not accept additional arguments.": "Sprach-Unterbefehle akzeptieren keine zus\xE4tzlichen Argumente.",
|
|
293102
293020
|
"Current UI language: {{lang}}": "Aktuelle UI-Sprache: {{lang}}",
|
|
293103
293021
|
"Current LLM output language: {{lang}}": "Aktuelle LLM-Ausgabesprache: {{lang}}",
|
|
293104
293022
|
"LLM output language not set": "LLM-Ausgabesprache nicht festgelegt",
|
|
293105
293023
|
"Set UI language": "UI-Sprache festlegen",
|
|
293106
293024
|
"Set LLM output language": "LLM-Ausgabesprache festlegen",
|
|
293107
|
-
"Usage: /language ui [
|
|
293025
|
+
"Usage: /language ui [{{options}}]": "Verwendung: /language ui [{{options}}]",
|
|
293108
293026
|
"Usage: /language output <language>": "Verwendung: /language output <Sprache>",
|
|
293109
293027
|
"Example: /language output \u4E2D\u6587": "Beispiel: /language output Deutsch",
|
|
293110
|
-
"Example: /language output English": "Beispiel: /language output
|
|
293028
|
+
"Example: /language output English": "Beispiel: /language output Englisch",
|
|
293111
293029
|
"Example: /language output \u65E5\u672C\u8A9E": "Beispiel: /language output Japanisch",
|
|
293030
|
+
"Example: /language output Portugu\xEAs": "Beispiel: /language output Portugiesisch",
|
|
293112
293031
|
"UI language changed to {{lang}}": "UI-Sprache ge\xE4ndert zu {{lang}}",
|
|
293113
293032
|
"LLM output language set to {{lang}}": "LLM-Ausgabesprache auf {{lang}} gesetzt",
|
|
293114
293033
|
"LLM output language rule file generated at {{path}}": "LLM-Ausgabesprach-Regeldatei generiert unter {{path}}",
|
|
@@ -293118,10 +293037,7 @@ var init_de = __esm({
|
|
|
293118
293037
|
"Available subcommands:": "Verf\xFCgbare Unterbefehle:",
|
|
293119
293038
|
"To request additional UI language packs, please open an issue on GitHub.": "Um zus\xE4tzliche UI-Sprachpakete anzufordern, \xF6ffnen Sie bitte ein Issue auf GitHub.",
|
|
293120
293039
|
"Available options:": "Verf\xFCgbare Optionen:",
|
|
293121
|
-
"
|
|
293122
|
-
" - en-US: English": " - en-US: Englisch",
|
|
293123
|
-
"Set UI language to Simplified Chinese (zh-CN)": "UI-Sprache auf Vereinfachtes Chinesisch (zh-CN) setzen",
|
|
293124
|
-
"Set UI language to English (en-US)": "UI-Sprache auf Englisch (en-US) setzen",
|
|
293040
|
+
"Set UI language to {{name}}": "UI-Sprache auf {{name}} setzen",
|
|
293125
293041
|
// ============================================================================
|
|
293126
293042
|
// Commands - Approval Mode
|
|
293127
293043
|
// ============================================================================
|
|
@@ -294064,6 +293980,17 @@ var init_en3 = __esm({
|
|
|
294064
293980
|
"Update all extensions.": "Update all extensions.",
|
|
294065
293981
|
"Either an extension name or --all must be provided": "Either an extension name or --all must be provided",
|
|
294066
293982
|
"Lists installed extensions.": "Lists installed extensions.",
|
|
293983
|
+
"Path:": "Path:",
|
|
293984
|
+
"Source:": "Source:",
|
|
293985
|
+
"Type:": "Type:",
|
|
293986
|
+
"Ref:": "Ref:",
|
|
293987
|
+
"Release tag:": "Release tag:",
|
|
293988
|
+
"Enabled (User):": "Enabled (User):",
|
|
293989
|
+
"Enabled (Workspace):": "Enabled (Workspace):",
|
|
293990
|
+
"Context files:": "Context files:",
|
|
293991
|
+
"Skills:": "Skills:",
|
|
293992
|
+
"Agents:": "Agents:",
|
|
293993
|
+
"MCP servers:": "MCP servers:",
|
|
294067
293994
|
"Link extension failed to install.": "Link extension failed to install.",
|
|
294068
293995
|
'Extension "{{name}}" linked successfully and enabled.': 'Extension "{{name}}" linked successfully and enabled.',
|
|
294069
293996
|
"Links an extension from a local path. Updates made to the local path will always be reflected.": "Links an extension from a local path. Updates made to the local path will always be reflected.",
|
|
@@ -294122,18 +294049,19 @@ var init_en3 = __esm({
|
|
|
294122
294049
|
// ============================================================================
|
|
294123
294050
|
// Commands - Language
|
|
294124
294051
|
// ============================================================================
|
|
294125
|
-
"Invalid language. Available:
|
|
294052
|
+
"Invalid language. Available: {{options}}": "Invalid language. Available: {{options}}",
|
|
294126
294053
|
"Language subcommands do not accept additional arguments.": "Language subcommands do not accept additional arguments.",
|
|
294127
294054
|
"Current UI language: {{lang}}": "Current UI language: {{lang}}",
|
|
294128
294055
|
"Current LLM output language: {{lang}}": "Current LLM output language: {{lang}}",
|
|
294129
294056
|
"LLM output language not set": "LLM output language not set",
|
|
294130
294057
|
"Set UI language": "Set UI language",
|
|
294131
294058
|
"Set LLM output language": "Set LLM output language",
|
|
294132
|
-
"Usage: /language ui [
|
|
294059
|
+
"Usage: /language ui [{{options}}]": "Usage: /language ui [{{options}}]",
|
|
294133
294060
|
"Usage: /language output <language>": "Usage: /language output <language>",
|
|
294134
294061
|
"Example: /language output \u4E2D\u6587": "Example: /language output \u4E2D\u6587",
|
|
294135
294062
|
"Example: /language output English": "Example: /language output English",
|
|
294136
294063
|
"Example: /language output \u65E5\u672C\u8A9E": "Example: /language output \u65E5\u672C\u8A9E",
|
|
294064
|
+
"Example: /language output Portugu\xEAs": "Example: /language output Portugu\xEAs",
|
|
294137
294065
|
"UI language changed to {{lang}}": "UI language changed to {{lang}}",
|
|
294138
294066
|
"LLM output language set to {{lang}}": "LLM output language set to {{lang}}",
|
|
294139
294067
|
"LLM output language rule file generated at {{path}}": "LLM output language rule file generated at {{path}}",
|
|
@@ -294143,10 +294071,7 @@ var init_en3 = __esm({
|
|
|
294143
294071
|
"Available subcommands:": "Available subcommands:",
|
|
294144
294072
|
"To request additional UI language packs, please open an issue on GitHub.": "To request additional UI language packs, please open an issue on GitHub.",
|
|
294145
294073
|
"Available options:": "Available options:",
|
|
294146
|
-
"
|
|
294147
|
-
" - en-US: English": " - en-US: English",
|
|
294148
|
-
"Set UI language to Simplified Chinese (zh-CN)": "Set UI language to Simplified Chinese (zh-CN)",
|
|
294149
|
-
"Set UI language to English (en-US)": "Set UI language to English (en-US)",
|
|
294074
|
+
"Set UI language to {{name}}": "Set UI language to {{name}}",
|
|
294150
294075
|
// ============================================================================
|
|
294151
294076
|
// Commands - Approval Mode
|
|
294152
294077
|
// ============================================================================
|
|
@@ -294709,6 +294634,1719 @@ var init_en3 = __esm({
|
|
|
294709
294634
|
}
|
|
294710
294635
|
});
|
|
294711
294636
|
|
|
294637
|
+
// packages/cli/src/i18n/locales/ja.js
|
|
294638
|
+
var ja_exports = {};
|
|
294639
|
+
__export(ja_exports, {
|
|
294640
|
+
default: () => ja_default
|
|
294641
|
+
});
|
|
294642
|
+
var ja_default;
|
|
294643
|
+
var init_ja = __esm({
|
|
294644
|
+
"packages/cli/src/i18n/locales/ja.js"() {
|
|
294645
|
+
"use strict";
|
|
294646
|
+
init_esbuild_shims();
|
|
294647
|
+
ja_default = {
|
|
294648
|
+
// ============================================================================
|
|
294649
|
+
// Help / UI Components
|
|
294650
|
+
// ============================================================================
|
|
294651
|
+
"Basics:": "\u57FA\u672C\u64CD\u4F5C:",
|
|
294652
|
+
"Add context": "\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8\u3092\u8FFD\u52A0",
|
|
294653
|
+
"Use {{symbol}} to specify files for context (e.g., {{example}}) to target specific files or folders.": "{{symbol}} \u3092\u4F7F\u7528\u3057\u3066\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8\u7528\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u6307\u5B9A\u3057\u307E\u3059(\u4F8B: {{example}}) \u307E\u305F\u3001\u7279\u5B9A\u306E\u30D5\u30A1\u30A4\u30EB\u3084\u30D5\u30A9\u30EB\u30C0\u3092\u5BFE\u8C61\u306B\u3067\u304D\u307E\u3059",
|
|
294654
|
+
"@": "@",
|
|
294655
|
+
"@src/myFile.ts": "@src/myFile.ts",
|
|
294656
|
+
"Shell mode": "\u30B7\u30A7\u30EB\u30E2\u30FC\u30C9",
|
|
294657
|
+
"YOLO mode": "YOLO\u30E2\u30FC\u30C9",
|
|
294658
|
+
"plan mode": "\u30D7\u30E9\u30F3\u30E2\u30FC\u30C9",
|
|
294659
|
+
"auto-accept edits": "\u7DE8\u96C6\u3092\u81EA\u52D5\u627F\u8A8D",
|
|
294660
|
+
"Accepting edits": "\u7DE8\u96C6\u3092\u627F\u8A8D\u4E2D",
|
|
294661
|
+
"(shift + tab to cycle)": "(Shift + Tab \u3067\u5207\u308A\u66FF\u3048)",
|
|
294662
|
+
"Execute shell commands via {{symbol}} (e.g., {{example1}}) or use natural language (e.g., {{example2}}).": "{{symbol}} \u3067\u30B7\u30A7\u30EB\u30B3\u30DE\u30F3\u30C9\u3092\u5B9F\u884C(\u4F8B: {{example1}})\u3001\u307E\u305F\u306F\u81EA\u7136\u8A00\u8A9E\u3067\u5165\u529B(\u4F8B: {{example2}})",
|
|
294663
|
+
"!": "!",
|
|
294664
|
+
"!npm run start": "!npm run start",
|
|
294665
|
+
"start server": "\u30B5\u30FC\u30D0\u30FC\u3092\u8D77\u52D5",
|
|
294666
|
+
"Commands:": "\u30B3\u30DE\u30F3\u30C9:",
|
|
294667
|
+
"shell command": "\u30B7\u30A7\u30EB\u30B3\u30DE\u30F3\u30C9",
|
|
294668
|
+
"Model Context Protocol command (from external servers)": "Model Context Protocol \u30B3\u30DE\u30F3\u30C9(\u5916\u90E8\u30B5\u30FC\u30D0\u30FC\u304B\u3089)",
|
|
294669
|
+
"Keyboard Shortcuts:": "\u30AD\u30FC\u30DC\u30FC\u30C9\u30B7\u30E7\u30FC\u30C8\u30AB\u30C3\u30C8:",
|
|
294670
|
+
"Jump through words in the input": "\u5165\u529B\u6B04\u306E\u5358\u8A9E\u9593\u3092\u79FB\u52D5",
|
|
294671
|
+
"Close dialogs, cancel requests, or quit application": "\u30C0\u30A4\u30A2\u30ED\u30B0\u3092\u9589\u3058\u308B\u3001\u30EA\u30AF\u30A8\u30B9\u30C8\u3092\u30AD\u30E3\u30F3\u30BB\u30EB\u3001\u307E\u305F\u306F\u30A2\u30D7\u30EA\u3092\u7D42\u4E86",
|
|
294672
|
+
"New line": "\u6539\u884C",
|
|
294673
|
+
"New line (Alt+Enter works for certain linux distros)": "\u6539\u884C(\u4E00\u90E8\u306ELinux\u30C7\u30A3\u30B9\u30C8\u30EA\u30D3\u30E5\u30FC\u30B7\u30E7\u30F3\u3067\u306FAlt+Enter\u304C\u6709\u52B9)",
|
|
294674
|
+
"Clear the screen": "\u753B\u9762\u3092\u30AF\u30EA\u30A2",
|
|
294675
|
+
"Open input in external editor": "\u5916\u90E8\u30A8\u30C7\u30A3\u30BF\u3067\u5165\u529B\u3092\u958B\u304F",
|
|
294676
|
+
"Send message": "\u30E1\u30C3\u30BB\u30FC\u30B8\u3092\u9001\u4FE1",
|
|
294677
|
+
"Initializing...": "\u521D\u671F\u5316\u4E2D...",
|
|
294678
|
+
"Connecting to MCP servers... ({{connected}}/{{total}})": "MCP\u30B5\u30FC\u30D0\u30FC\u306B\u63A5\u7D9A\u4E2D... ({{connected}}/{{total}})",
|
|
294679
|
+
"Type your message or @path/to/file": "\u30E1\u30C3\u30BB\u30FC\u30B8\u3092\u5165\u529B\u3001@\u30D1\u30B9/\u30D5\u30A1\u30A4\u30EB\u3067\u30D5\u30A1\u30A4\u30EB\u3092\u6DFB\u4ED8(D&D\u5BFE\u5FDC)",
|
|
294680
|
+
"Press 'i' for INSERT mode and 'Esc' for NORMAL mode.": "'i' \u3067INSERT\u30E2\u30FC\u30C9\u3001'Esc' \u3067NORMAL\u30E2\u30FC\u30C9",
|
|
294681
|
+
"Cancel operation / Clear input (double press)": "\u64CD\u4F5C\u3092\u30AD\u30E3\u30F3\u30BB\u30EB / \u5165\u529B\u3092\u30AF\u30EA\u30A2(2\u56DE\u62BC\u3057)",
|
|
294682
|
+
"Cycle approval modes": "\u627F\u8A8D\u30E2\u30FC\u30C9\u3092\u5207\u308A\u66FF\u3048",
|
|
294683
|
+
"Cycle through your prompt history": "\u30D7\u30ED\u30F3\u30D7\u30C8\u5C65\u6B74\u3092\u9806\u306B\u8868\u793A",
|
|
294684
|
+
"For a full list of shortcuts, see {{docPath}}": "\u30B7\u30E7\u30FC\u30C8\u30AB\u30C3\u30C8\u306E\u5B8C\u5168\u306A\u30EA\u30B9\u30C8\u306F {{docPath}} \u3092\u53C2\u7167",
|
|
294685
|
+
"docs/keyboard-shortcuts.md": "docs/keyboard-shortcuts.md",
|
|
294686
|
+
"for help on Qwen Code": "Qwen Code \u306E\u30D8\u30EB\u30D7",
|
|
294687
|
+
"show version info": "\u30D0\u30FC\u30B8\u30E7\u30F3\u60C5\u5831\u3092\u8868\u793A",
|
|
294688
|
+
"submit a bug report": "\u30D0\u30B0\u30EC\u30DD\u30FC\u30C8\u3092\u9001\u4FE1",
|
|
294689
|
+
"About Qwen Code": "Qwen Code \u306B\u3064\u3044\u3066",
|
|
294690
|
+
// ============================================================================
|
|
294691
|
+
// System Information Fields
|
|
294692
|
+
// ============================================================================
|
|
294693
|
+
"CLI Version": "CLI\u30D0\u30FC\u30B8\u30E7\u30F3",
|
|
294694
|
+
"Git Commit": "Git\u30B3\u30DF\u30C3\u30C8",
|
|
294695
|
+
Model: "\u30E2\u30C7\u30EB",
|
|
294696
|
+
Sandbox: "\u30B5\u30F3\u30C9\u30DC\u30C3\u30AF\u30B9",
|
|
294697
|
+
"OS Platform": "OS\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0",
|
|
294698
|
+
"OS Arch": "OS\u30A2\u30FC\u30AD\u30C6\u30AF\u30C1\u30E3",
|
|
294699
|
+
"OS Release": "OS\u30EA\u30EA\u30FC\u30B9",
|
|
294700
|
+
"Node.js Version": "Node.js \u30D0\u30FC\u30B8\u30E7\u30F3",
|
|
294701
|
+
"NPM Version": "NPM \u30D0\u30FC\u30B8\u30E7\u30F3",
|
|
294702
|
+
"Session ID": "\u30BB\u30C3\u30B7\u30E7\u30F3ID",
|
|
294703
|
+
"Auth Method": "\u8A8D\u8A3C\u65B9\u5F0F",
|
|
294704
|
+
"Base URL": "\u30D9\u30FC\u30B9URL",
|
|
294705
|
+
"Memory Usage": "\u30E1\u30E2\u30EA\u4F7F\u7528\u91CF",
|
|
294706
|
+
"IDE Client": "IDE\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8",
|
|
294707
|
+
// ============================================================================
|
|
294708
|
+
// Commands - General
|
|
294709
|
+
// ============================================================================
|
|
294710
|
+
"Analyzes the project and creates a tailored QWEN.md file.": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u3092\u5206\u6790\u3057\u3001\u30AB\u30B9\u30BF\u30DE\u30A4\u30BA\u3055\u308C\u305F QWEN.md \u30D5\u30A1\u30A4\u30EB\u3092\u4F5C\u6210",
|
|
294711
|
+
"list available Qwen Code tools. Usage: /tools [desc]": "\u5229\u7528\u53EF\u80FD\u306A Qwen Code \u30C4\u30FC\u30EB\u3092\u4E00\u89A7\u8868\u793A\u3002\u4F7F\u3044\u65B9: /tools [desc]",
|
|
294712
|
+
"Available Qwen Code CLI tools:": "\u5229\u7528\u53EF\u80FD\u306A Qwen Code CLI \u30C4\u30FC\u30EB:",
|
|
294713
|
+
"No tools available": "\u5229\u7528\u53EF\u80FD\u306A\u30C4\u30FC\u30EB\u306F\u3042\u308A\u307E\u305B\u3093",
|
|
294714
|
+
"View or change the approval mode for tool usage": "\u30C4\u30FC\u30EB\u4F7F\u7528\u306E\u627F\u8A8D\u30E2\u30FC\u30C9\u3092\u8868\u793A\u307E\u305F\u306F\u5909\u66F4",
|
|
294715
|
+
"View or change the language setting": "\u8A00\u8A9E\u8A2D\u5B9A\u3092\u8868\u793A\u307E\u305F\u306F\u5909\u66F4",
|
|
294716
|
+
"change the theme": "\u30C6\u30FC\u30DE\u3092\u5909\u66F4",
|
|
294717
|
+
"Select Theme": "\u30C6\u30FC\u30DE\u3092\u9078\u629E",
|
|
294718
|
+
Preview: "\u30D7\u30EC\u30D3\u30E5\u30FC",
|
|
294719
|
+
"(Use Enter to select, Tab to configure scope)": "(Enter \u3067\u9078\u629E\u3001Tab \u3067\u30B9\u30B3\u30FC\u30D7\u3092\u8A2D\u5B9A)",
|
|
294720
|
+
"(Use Enter to apply scope, Tab to select theme)": "(Enter \u3067\u30B9\u30B3\u30FC\u30D7\u3092\u9069\u7528\u3001Tab \u3067\u30C6\u30FC\u30DE\u3092\u9078\u629E)",
|
|
294721
|
+
"Theme configuration unavailable due to NO_COLOR env variable.": "NO_COLOR \u74B0\u5883\u5909\u6570\u306E\u305F\u3081\u30C6\u30FC\u30DE\u8A2D\u5B9A\u306F\u5229\u7528\u3067\u304D\u307E\u305B\u3093",
|
|
294722
|
+
'Theme "{{themeName}}" not found.': '\u30C6\u30FC\u30DE "{{themeName}}" \u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093',
|
|
294723
|
+
'Theme "{{themeName}}" not found in selected scope.': '\u9078\u629E\u3057\u305F\u30B9\u30B3\u30FC\u30D7\u306B\u30C6\u30FC\u30DE "{{themeName}}" \u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093',
|
|
294724
|
+
"Clear conversation history and free up context": "\u4F1A\u8A71\u5C65\u6B74\u3092\u30AF\u30EA\u30A2\u3057\u3066\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8\u3092\u89E3\u653E",
|
|
294725
|
+
"Compresses the context by replacing it with a summary.": "\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8\u3092\u8981\u7D04\u306B\u7F6E\u304D\u63DB\u3048\u3066\u5727\u7E2E",
|
|
294726
|
+
"open full Qwen Code documentation in your browser": "\u30D6\u30E9\u30A6\u30B6\u3067 Qwen Code \u306E\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8\u3092\u958B\u304F",
|
|
294727
|
+
"Configuration not available.": "\u8A2D\u5B9A\u304C\u5229\u7528\u3067\u304D\u307E\u305B\u3093",
|
|
294728
|
+
"change the auth method": "\u8A8D\u8A3C\u65B9\u5F0F\u3092\u5909\u66F4",
|
|
294729
|
+
"Copy the last result or code snippet to clipboard": "\u6700\u5F8C\u306E\u7D50\u679C\u307E\u305F\u306F\u30B3\u30FC\u30C9\u30B9\u30CB\u30DA\u30C3\u30C8\u3092\u30AF\u30EA\u30C3\u30D7\u30DC\u30FC\u30C9\u306B\u30B3\u30D4\u30FC",
|
|
294730
|
+
// ============================================================================
|
|
294731
|
+
// Commands - Agents
|
|
294732
|
+
// ============================================================================
|
|
294733
|
+
"Manage subagents for specialized task delegation.": "\u5C02\u9580\u30BF\u30B9\u30AF\u3092\u59D4\u4EFB\u3059\u308B\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u7BA1\u7406",
|
|
294734
|
+
"Manage existing subagents (view, edit, delete).": "\u65E2\u5B58\u306E\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u7BA1\u7406(\u8868\u793A\u3001\u7DE8\u96C6\u3001\u524A\u9664)",
|
|
294735
|
+
"Create a new subagent with guided setup.": "\u30AC\u30A4\u30C9\u4ED8\u304D\u30BB\u30C3\u30C8\u30A2\u30C3\u30D7\u3067\u65B0\u3057\u3044\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u4F5C\u6210",
|
|
294736
|
+
// ============================================================================
|
|
294737
|
+
// Agents - Management Dialog
|
|
294738
|
+
// ============================================================================
|
|
294739
|
+
Agents: "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8",
|
|
294740
|
+
"Choose Action": "\u30A2\u30AF\u30B7\u30E7\u30F3\u3092\u9078\u629E",
|
|
294741
|
+
"Edit {{name}}": "{{name}} \u3092\u7DE8\u96C6",
|
|
294742
|
+
"Edit Tools: {{name}}": "\u30C4\u30FC\u30EB\u3092\u7DE8\u96C6: {{name}}",
|
|
294743
|
+
"Edit Color: {{name}}": "\u8272\u3092\u7DE8\u96C6: {{name}}",
|
|
294744
|
+
"Delete {{name}}": "{{name}} \u3092\u524A\u9664",
|
|
294745
|
+
"Unknown Step": "\u4E0D\u660E\u306A\u30B9\u30C6\u30C3\u30D7",
|
|
294746
|
+
"Esc to close": "Esc \u3067\u9589\u3058\u308B",
|
|
294747
|
+
"Enter to select, \u2191\u2193 to navigate, Esc to close": "Enter \u3067\u9078\u629E\u3001\u2191\u2193 \u3067\u79FB\u52D5\u3001Esc \u3067\u9589\u3058\u308B",
|
|
294748
|
+
"Esc to go back": "Esc \u3067\u623B\u308B",
|
|
294749
|
+
"Enter to confirm, Esc to cancel": "Enter \u3067\u78BA\u5B9A\u3001Esc \u3067\u30AD\u30E3\u30F3\u30BB\u30EB",
|
|
294750
|
+
"Enter to select, \u2191\u2193 to navigate, Esc to go back": "Enter \u3067\u9078\u629E\u3001\u2191\u2193 \u3067\u79FB\u52D5\u3001Esc \u3067\u623B\u308B",
|
|
294751
|
+
"Invalid step: {{step}}": "\u7121\u52B9\u306A\u30B9\u30C6\u30C3\u30D7: {{step}}",
|
|
294752
|
+
"No subagents found.": "\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
294753
|
+
"Use '/agents create' to create your first subagent.": "'/agents create' \u3067\u6700\u521D\u306E\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u4F5C\u6210\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
294754
|
+
"(built-in)": "(\u7D44\u307F\u8FBC\u307F)",
|
|
294755
|
+
"(overridden by project level agent)": "(\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30EC\u30D9\u30EB\u306E\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3067\u4E0A\u66F8\u304D)",
|
|
294756
|
+
"Project Level ({{path}})": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30EC\u30D9\u30EB ({{path}})",
|
|
294757
|
+
"User Level ({{path}})": "\u30E6\u30FC\u30B6\u30FC\u30EC\u30D9\u30EB ({{path}})",
|
|
294758
|
+
"Built-in Agents": "\u7D44\u307F\u8FBC\u307F\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8",
|
|
294759
|
+
"Using: {{count}} agents": "\u4F7F\u7528\u4E2D: {{count}} \u30A8\u30FC\u30B8\u30A7\u30F3\u30C8",
|
|
294760
|
+
"View Agent": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u8868\u793A",
|
|
294761
|
+
"Edit Agent": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u7DE8\u96C6",
|
|
294762
|
+
"Delete Agent": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u524A\u9664",
|
|
294763
|
+
Back: "\u623B\u308B",
|
|
294764
|
+
"No agent selected": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u304C\u9078\u629E\u3055\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
294765
|
+
"File Path: ": "\u30D5\u30A1\u30A4\u30EB\u30D1\u30B9: ",
|
|
294766
|
+
"Tools: ": "\u30C4\u30FC\u30EB: ",
|
|
294767
|
+
"Color: ": "\u8272: ",
|
|
294768
|
+
"Description:": "\u8AAC\u660E:",
|
|
294769
|
+
"System Prompt:": "\u30B7\u30B9\u30C6\u30E0\u30D7\u30ED\u30F3\u30D7\u30C8:",
|
|
294770
|
+
"Open in editor": "\u30A8\u30C7\u30A3\u30BF\u3067\u958B\u304F",
|
|
294771
|
+
"Edit tools": "\u30C4\u30FC\u30EB\u3092\u7DE8\u96C6",
|
|
294772
|
+
"Edit color": "\u8272\u3092\u7DE8\u96C6",
|
|
294773
|
+
"\u274C Error:": "\u274C \u30A8\u30E9\u30FC:",
|
|
294774
|
+
'Are you sure you want to delete agent "{{name}}"?': '\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8 "{{name}}" \u3092\u524A\u9664\u3057\u3066\u3082\u3088\u308D\u3057\u3044\u3067\u3059\u304B?',
|
|
294775
|
+
"Project Level (.qwen/agents/)": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30EC\u30D9\u30EB (.qwen/agents/)",
|
|
294776
|
+
"User Level (~/.qwen/agents/)": "\u30E6\u30FC\u30B6\u30FC\u30EC\u30D9\u30EB (~/.qwen/agents/)",
|
|
294777
|
+
"\u2705 Subagent Created Successfully!": "\u2705 \u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306E\u4F5C\u6210\u306B\u6210\u529F\u3057\u307E\u3057\u305F!",
|
|
294778
|
+
'Subagent "{{name}}" has been saved to {{level}} level.': '\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8 "{{name}}" \u3092 {{level}} \u306B\u4FDD\u5B58\u3057\u307E\u3057\u305F',
|
|
294779
|
+
"Name: ": "\u540D\u524D: ",
|
|
294780
|
+
"Location: ": "\u5834\u6240: ",
|
|
294781
|
+
"\u274C Error saving subagent:": "\u274C \u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u4FDD\u5B58\u30A8\u30E9\u30FC:",
|
|
294782
|
+
"Warnings:": "\u8B66\u544A:",
|
|
294783
|
+
"Step {{n}}: Choose Location": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u5834\u6240\u3092\u9078\u629E",
|
|
294784
|
+
"Step {{n}}: Choose Generation Method": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u4F5C\u6210\u65B9\u6CD5\u3092\u9078\u629E",
|
|
294785
|
+
"Generate with Qwen Code (Recommended)": "Qwen Code \u3067\u751F\u6210(\u63A8\u5968)",
|
|
294786
|
+
"Manual Creation": "\u624B\u52D5\u4F5C\u6210",
|
|
294787
|
+
"Generating subagent configuration...": "\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u8A2D\u5B9A\u3092\u751F\u6210\u4E2D...",
|
|
294788
|
+
"Failed to generate subagent: {{error}}": "\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306E\u751F\u6210\u306B\u5931\u6557: {{error}}",
|
|
294789
|
+
"Step {{n}}: Describe Your Subagent": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u8AAC\u660E",
|
|
294790
|
+
"Step {{n}}: Enter Subagent Name": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u540D\u3092\u5165\u529B",
|
|
294791
|
+
"Step {{n}}: Enter System Prompt": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u30B7\u30B9\u30C6\u30E0\u30D7\u30ED\u30F3\u30D7\u30C8\u3092\u5165\u529B",
|
|
294792
|
+
"Step {{n}}: Enter Description": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u8AAC\u660E\u3092\u5165\u529B",
|
|
294793
|
+
"Step {{n}}: Select Tools": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u30C4\u30FC\u30EB\u3092\u9078\u629E",
|
|
294794
|
+
"All Tools (Default)": "\u5168\u30C4\u30FC\u30EB(\u30C7\u30D5\u30A9\u30EB\u30C8)",
|
|
294795
|
+
"All Tools": "\u5168\u30C4\u30FC\u30EB",
|
|
294796
|
+
"Read-only Tools": "\u8AAD\u307F\u53D6\u308A\u5C02\u7528\u30C4\u30FC\u30EB",
|
|
294797
|
+
"Read & Edit Tools": "\u8AAD\u307F\u53D6\u308A\uFF06\u7DE8\u96C6\u30C4\u30FC\u30EB",
|
|
294798
|
+
"Read & Edit & Execution Tools": "\u8AAD\u307F\u53D6\u308A\uFF06\u7DE8\u96C6\uFF06\u5B9F\u884C\u30C4\u30FC\u30EB",
|
|
294799
|
+
"Selected tools:": "\u9078\u629E\u3055\u308C\u305F\u30C4\u30FC\u30EB:",
|
|
294800
|
+
"Step {{n}}: Choose Background Color": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u80CC\u666F\u8272\u3092\u9078\u629E",
|
|
294801
|
+
"Step {{n}}: Confirm and Save": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u78BA\u8A8D\u3057\u3066\u4FDD\u5B58",
|
|
294802
|
+
"Esc to cancel": "Esc \u3067\u30AD\u30E3\u30F3\u30BB\u30EB",
|
|
294803
|
+
cancel: "\u30AD\u30E3\u30F3\u30BB\u30EB",
|
|
294804
|
+
"go back": "\u623B\u308B",
|
|
294805
|
+
"\u2191\u2193 to navigate, ": "\u2191\u2193 \u3067\u79FB\u52D5\u3001",
|
|
294806
|
+
"Name cannot be empty.": "\u540D\u524D\u306F\u7A7A\u306B\u3067\u304D\u307E\u305B\u3093",
|
|
294807
|
+
"System prompt cannot be empty.": "\u30B7\u30B9\u30C6\u30E0\u30D7\u30ED\u30F3\u30D7\u30C8\u306F\u7A7A\u306B\u3067\u304D\u307E\u305B\u3093",
|
|
294808
|
+
"Description cannot be empty.": "\u8AAC\u660E\u306F\u7A7A\u306B\u3067\u304D\u307E\u305B\u3093",
|
|
294809
|
+
"Failed to launch editor: {{error}}": "\u30A8\u30C7\u30A3\u30BF\u306E\u8D77\u52D5\u306B\u5931\u6557: {{error}}",
|
|
294810
|
+
"Failed to save and edit subagent: {{error}}": "\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306E\u4FDD\u5B58\u3068\u7DE8\u96C6\u306B\u5931\u6557: {{error}}",
|
|
294811
|
+
'Name "{{name}}" already exists at {{level}} level - will overwrite existing subagent': '"{{name}}" \u306F {{level}} \u306B\u65E2\u306B\u5B58\u5728\u3057\u307E\u3059 - \u65E2\u5B58\u306E\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u4E0A\u66F8\u304D\u3057\u307E\u3059',
|
|
294812
|
+
'Name "{{name}}" exists at user level - project level will take precedence': '"{{name}}" \u306F\u30E6\u30FC\u30B6\u30FC\u30EC\u30D9\u30EB\u306B\u5B58\u5728\u3057\u307E\u3059 - \u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30EC\u30D9\u30EB\u304C\u512A\u5148\u3055\u308C\u307E\u3059',
|
|
294813
|
+
'Name "{{name}}" exists at project level - existing subagent will take precedence': '"{{name}}" \u306F\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30EC\u30D9\u30EB\u306B\u5B58\u5728\u3057\u307E\u3059 - \u65E2\u5B58\u306E\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u304C\u512A\u5148\u3055\u308C\u307E\u3059',
|
|
294814
|
+
"Description is over {{length}} characters": "\u8AAC\u660E\u304C {{length}} \u6587\u5B57\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",
|
|
294815
|
+
"System prompt is over {{length}} characters": "\u30B7\u30B9\u30C6\u30E0\u30D7\u30ED\u30F3\u30D7\u30C8\u304C {{length}} \u6587\u5B57\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",
|
|
294816
|
+
"Describe what this subagent should do and when it should be used. (Be comprehensive for best results)": "\u3053\u306E\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306E\u5F79\u5272\u3068\u4F7F\u7528\u30BF\u30A4\u30DF\u30F3\u30B0\u3092\u8AAC\u660E\u3057\u3066\u304F\u3060\u3055\u3044(\u8A73\u7D30\u306B\u8A18\u8FF0\u3059\u308B\u307B\u3069\u826F\u3044\u7D50\u679C\u304C\u5F97\u3089\u308C\u307E\u3059)",
|
|
294817
|
+
"e.g., Expert code reviewer that reviews code based on best practices...": "\u4F8B: \u30D9\u30B9\u30C8\u30D7\u30E9\u30AF\u30C6\u30A3\u30B9\u306B\u57FA\u3065\u3044\u3066\u30B3\u30FC\u30C9\u3092\u30EC\u30D3\u30E5\u30FC\u3059\u308B\u30A8\u30AD\u30B9\u30D1\u30FC\u30C8\u30EC\u30D3\u30E5\u30A2\u30FC...",
|
|
294818
|
+
"All tools selected, including MCP tools": "MCP\u30C4\u30FC\u30EB\u3092\u542B\u3080\u3059\u3079\u3066\u306E\u30C4\u30FC\u30EB\u3092\u9078\u629E",
|
|
294819
|
+
"Read-only tools:": "\u8AAD\u307F\u53D6\u308A\u5C02\u7528\u30C4\u30FC\u30EB:",
|
|
294820
|
+
"Edit tools:": "\u7DE8\u96C6\u30C4\u30FC\u30EB:",
|
|
294821
|
+
"Execution tools:": "\u5B9F\u884C\u30C4\u30FC\u30EB:",
|
|
294822
|
+
"Press Enter to save, e to save and edit, Esc to go back": "Enter \u3067\u4FDD\u5B58\u3001e \u3067\u4FDD\u5B58\u3057\u3066\u7DE8\u96C6\u3001Esc \u3067\u623B\u308B",
|
|
294823
|
+
"Press Enter to continue, {{navigation}}Esc to {{action}}": "Enter \u3067\u7D9A\u884C\u3001{{navigation}}Esc \u3067{{action}}",
|
|
294824
|
+
"Enter a clear, unique name for this subagent.": "\u3053\u306E\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306E\u660E\u78BA\u3067\u4E00\u610F\u306A\u540D\u524D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
294825
|
+
"e.g., Code Reviewer": "\u4F8B: \u30B3\u30FC\u30C9\u30EC\u30D3\u30E5\u30A2\u30FC",
|
|
294826
|
+
"Write the system prompt that defines this subagent's behavior. Be comprehensive for best results.": "\u3053\u306E\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306E\u52D5\u4F5C\u3092\u5B9A\u7FA9\u3059\u308B\u30B7\u30B9\u30C6\u30E0\u30D7\u30ED\u30F3\u30D7\u30C8\u3092\u8A18\u8FF0\u3057\u3066\u304F\u3060\u3055\u3044 (\u8A73\u7D30\u306B\u66F8\u304F\u307B\u3069\u826F\u3044\u7D50\u679C\u304C\u5F97\u3089\u308C\u307E\u3059)",
|
|
294827
|
+
"e.g., You are an expert code reviewer...": "\u4F8B: \u3042\u306A\u305F\u306F\u30A8\u30AD\u30B9\u30D1\u30FC\u30C8\u30B3\u30FC\u30C9\u30EC\u30D3\u30E5\u30A2\u30FC\u3067\u3059...",
|
|
294828
|
+
"Describe when and how this subagent should be used.": "\u3053\u306E\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u3044\u3064\u3069\u306E\u3088\u3046\u306B\u4F7F\u7528\u3059\u308B\u304B\u3092\u8AAC\u660E\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
294829
|
+
"e.g., Reviews code for best practices and potential bugs.": "\u4F8B: \u30D9\u30B9\u30C8\u30D7\u30E9\u30AF\u30C6\u30A3\u30B9\u3068\u6F5C\u5728\u7684\u306A\u30D0\u30B0\u306B\u3064\u3044\u3066\u30B3\u30FC\u30C9\u3092\u30EC\u30D3\u30E5\u30FC\u3057\u307E\u3059\u3002",
|
|
294830
|
+
// Commands - General (continued)
|
|
294831
|
+
"(Use Enter to select{{tabText}})": "(Enter \u3067\u9078\u629E{{tabText}})",
|
|
294832
|
+
", Tab to change focus": "\u3001Tab \u3067\u30D5\u30A9\u30FC\u30AB\u30B9\u5909\u66F4",
|
|
294833
|
+
"To see changes, Qwen Code must be restarted. Press r to exit and apply changes now.": "\u5909\u66F4\u3092\u78BA\u8A8D\u3059\u308B\u306B\u306F Qwen Code \u3092\u518D\u8D77\u52D5\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002 r \u3092\u62BC\u3057\u3066\u7D42\u4E86\u3057\u3001\u5909\u66F4\u3092\u9069\u7528\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
294834
|
+
'The command "/{{command}}" is not supported in non-interactive mode.': '\u30B3\u30DE\u30F3\u30C9 "/{{command}}" \u306F\u975E\u5BFE\u8A71\u30E2\u30FC\u30C9\u3067\u306F\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u307E\u305B\u3093',
|
|
294835
|
+
"View and edit Qwen Code settings": "Qwen Code \u306E\u8A2D\u5B9A\u3092\u8868\u793A\u30FB\u7DE8\u96C6",
|
|
294836
|
+
Settings: "\u8A2D\u5B9A",
|
|
294837
|
+
"Vim Mode": "Vim \u30E2\u30FC\u30C9",
|
|
294838
|
+
"Disable Auto Update": "\u81EA\u52D5\u66F4\u65B0\u3092\u7121\u52B9\u5316",
|
|
294839
|
+
Language: "\u8A00\u8A9E",
|
|
294840
|
+
"Output Format": "\u51FA\u529B\u5F62\u5F0F",
|
|
294841
|
+
"Hide Tips": "\u30D2\u30F3\u30C8\u3092\u975E\u8868\u793A",
|
|
294842
|
+
"Hide Banner": "\u30D0\u30CA\u30FC\u3092\u975E\u8868\u793A",
|
|
294843
|
+
"Show Memory Usage": "\u30E1\u30E2\u30EA\u4F7F\u7528\u91CF\u3092\u8868\u793A",
|
|
294844
|
+
"Show Line Numbers": "\u884C\u756A\u53F7\u3092\u8868\u793A",
|
|
294845
|
+
Text: "\u30C6\u30AD\u30B9\u30C8",
|
|
294846
|
+
JSON: "JSON",
|
|
294847
|
+
Plan: "\u30D7\u30E9\u30F3",
|
|
294848
|
+
Default: "\u30C7\u30D5\u30A9\u30EB\u30C8",
|
|
294849
|
+
"Auto Edit": "\u81EA\u52D5\u7DE8\u96C6",
|
|
294850
|
+
YOLO: "YOLO",
|
|
294851
|
+
"toggle vim mode on/off": "Vim \u30E2\u30FC\u30C9\u306E\u30AA\u30F3/\u30AA\u30D5\u3092\u5207\u308A\u66FF\u3048",
|
|
294852
|
+
"exit the cli": "CLI\u3092\u7D42\u4E86",
|
|
294853
|
+
Timeout: "\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8",
|
|
294854
|
+
"Max Retries": "\u6700\u5927\u30EA\u30C8\u30E9\u30A4\u56DE\u6570",
|
|
294855
|
+
"Auto Accept": "\u81EA\u52D5\u627F\u8A8D",
|
|
294856
|
+
"Folder Trust": "\u30D5\u30A9\u30EB\u30C0\u306E\u4FE1\u983C",
|
|
294857
|
+
"Enable Prompt Completion": "\u30D7\u30ED\u30F3\u30D7\u30C8\u88DC\u5B8C\u3092\u6709\u52B9\u5316",
|
|
294858
|
+
"Debug Keystroke Logging": "\u30AD\u30FC\u30B9\u30C8\u30ED\u30FC\u30AF\u306E\u30C7\u30D0\u30C3\u30B0\u30ED\u30B0",
|
|
294859
|
+
"Hide Window Title": "\u30A6\u30A3\u30F3\u30C9\u30A6\u30BF\u30A4\u30C8\u30EB\u3092\u975E\u8868\u793A",
|
|
294860
|
+
"Show Status in Title": "\u30BF\u30A4\u30C8\u30EB\u306B\u30B9\u30C6\u30FC\u30BF\u30B9\u3092\u8868\u793A",
|
|
294861
|
+
"Hide Context Summary": "\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8\u8981\u7D04\u3092\u975E\u8868\u793A",
|
|
294862
|
+
"Hide CWD": "\u4F5C\u696D\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u975E\u8868\u793A",
|
|
294863
|
+
"Hide Sandbox Status": "\u30B5\u30F3\u30C9\u30DC\u30C3\u30AF\u30B9\u72B6\u614B\u3092\u975E\u8868\u793A",
|
|
294864
|
+
"Hide Model Info": "\u30E2\u30C7\u30EB\u60C5\u5831\u3092\u975E\u8868\u793A",
|
|
294865
|
+
"Hide Footer": "\u30D5\u30C3\u30BF\u30FC\u3092\u975E\u8868\u793A",
|
|
294866
|
+
"Show Citations": "\u5F15\u7528\u3092\u8868\u793A",
|
|
294867
|
+
"Custom Witty Phrases": "\u30AB\u30B9\u30BF\u30E0\u30A6\u30A3\u30C3\u30C8\u30D5\u30EC\u30FC\u30BA",
|
|
294868
|
+
"Enable Welcome Back": "\u30A6\u30A7\u30EB\u30AB\u30E0\u30D0\u30C3\u30AF\u6A5F\u80FD\u3092\u6709\u52B9\u5316",
|
|
294869
|
+
"Disable Loading Phrases": "\u30ED\u30FC\u30C7\u30A3\u30F3\u30B0\u30D5\u30EC\u30FC\u30BA\u3092\u7121\u52B9\u5316",
|
|
294870
|
+
"Screen Reader Mode": "\u30B9\u30AF\u30EA\u30FC\u30F3\u30EA\u30FC\u30C0\u30FC\u30E2\u30FC\u30C9",
|
|
294871
|
+
"IDE Mode": "IDE\u30E2\u30FC\u30C9",
|
|
294872
|
+
"Max Session Turns": "\u6700\u5927\u30BB\u30C3\u30B7\u30E7\u30F3\u30BF\u30FC\u30F3\u6570",
|
|
294873
|
+
"Skip Next Speaker Check": "\u6B21\u306E\u767A\u8A00\u8005\u30C1\u30A7\u30C3\u30AF\u3092\u30B9\u30AD\u30C3\u30D7",
|
|
294874
|
+
"Skip Loop Detection": "\u30EB\u30FC\u30D7\u691C\u51FA\u3092\u30B9\u30AD\u30C3\u30D7",
|
|
294875
|
+
"Skip Startup Context": "\u8D77\u52D5\u6642\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8\u3092\u30B9\u30AD\u30C3\u30D7",
|
|
294876
|
+
"Enable OpenAI Logging": "OpenAI \u30ED\u30B0\u3092\u6709\u52B9\u5316",
|
|
294877
|
+
"OpenAI Logging Directory": "OpenAI \u30ED\u30B0\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA",
|
|
294878
|
+
"Disable Cache Control": "\u30AD\u30E3\u30C3\u30B7\u30E5\u5236\u5FA1\u3092\u7121\u52B9\u5316",
|
|
294879
|
+
"Memory Discovery Max Dirs": "\u30E1\u30E2\u30EA\u691C\u51FA\u306E\u6700\u5927\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u6570",
|
|
294880
|
+
"Load Memory From Include Directories": "\u30A4\u30F3\u30AF\u30EB\u30FC\u30C9\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u304B\u3089\u30E1\u30E2\u30EA\u3092\u8AAD\u307F\u8FBC\u307F",
|
|
294881
|
+
"Respect .gitignore": ".gitignore \u3092\u512A\u5148",
|
|
294882
|
+
"Respect .qwenignore": ".qwenignore \u3092\u512A\u5148",
|
|
294883
|
+
"Enable Recursive File Search": "\u518D\u5E30\u7684\u30D5\u30A1\u30A4\u30EB\u691C\u7D22\u3092\u6709\u52B9\u5316",
|
|
294884
|
+
"Disable Fuzzy Search": "\u30D5\u30A1\u30B8\u30FC\u691C\u7D22\u3092\u7121\u52B9\u5316",
|
|
294885
|
+
"Enable Interactive Shell": "\u5BFE\u8A71\u578B\u30B7\u30A7\u30EB\u3092\u6709\u52B9\u5316",
|
|
294886
|
+
"Show Color": "\u8272\u3092\u8868\u793A",
|
|
294887
|
+
"Use Ripgrep": "Ripgrep \u3092\u4F7F\u7528",
|
|
294888
|
+
"Use Builtin Ripgrep": "\u7D44\u307F\u8FBC\u307F Ripgrep \u3092\u4F7F\u7528",
|
|
294889
|
+
"Enable Tool Output Truncation": "\u30C4\u30FC\u30EB\u51FA\u529B\u306E\u5207\u308A\u8A70\u3081\u3092\u6709\u52B9\u5316",
|
|
294890
|
+
"Tool Output Truncation Threshold": "\u30C4\u30FC\u30EB\u51FA\u529B\u5207\u308A\u8A70\u3081\u306E\u3057\u304D\u3044\u5024",
|
|
294891
|
+
"Tool Output Truncation Lines": "\u30C4\u30FC\u30EB\u51FA\u529B\u306E\u5207\u308A\u8A70\u3081\u884C\u6570",
|
|
294892
|
+
"Vision Model Preview": "\u30D3\u30B8\u30E7\u30F3\u30E2\u30C7\u30EB\u30D7\u30EC\u30D3\u30E5\u30FC",
|
|
294893
|
+
"Tool Schema Compliance": "\u30C4\u30FC\u30EB\u30B9\u30AD\u30FC\u30DE\u6E96\u62E0",
|
|
294894
|
+
"Auto (detect from system)": "\u81EA\u52D5(\u30B7\u30B9\u30C6\u30E0\u304B\u3089\u691C\u51FA)",
|
|
294895
|
+
"check session stats. Usage: /stats [model|tools]": "\u30BB\u30C3\u30B7\u30E7\u30F3\u7D71\u8A08\u3092\u78BA\u8A8D\u3002\u4F7F\u3044\u65B9: /stats [model|tools]",
|
|
294896
|
+
"Show model-specific usage statistics.": "\u30E2\u30C7\u30EB\u5225\u306E\u4F7F\u7528\u7D71\u8A08\u3092\u8868\u793A",
|
|
294897
|
+
"Show tool-specific usage statistics.": "\u30C4\u30FC\u30EB\u5225\u306E\u4F7F\u7528\u7D71\u8A08\u3092\u8868\u793A",
|
|
294898
|
+
"list configured MCP servers and tools, or authenticate with OAuth-enabled servers": "\u8A2D\u5B9A\u6E08\u307F\u306EMCP\u30B5\u30FC\u30D0\u30FC\u3068\u30C4\u30FC\u30EB\u3092\u4E00\u89A7\u8868\u793A\u3001\u307E\u305F\u306FOAuth\u5BFE\u5FDC\u30B5\u30FC\u30D0\u30FC\u3067\u8A8D\u8A3C",
|
|
294899
|
+
"Manage workspace directories": "\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u7BA1\u7406",
|
|
294900
|
+
"Add directories to the workspace. Use comma to separate multiple paths": "\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u306B\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u8FFD\u52A0\u3002\u8907\u6570\u30D1\u30B9\u306F\u30AB\u30F3\u30DE\u3067\u533A\u5207\u3063\u3066\u304F\u3060\u3055\u3044",
|
|
294901
|
+
"Show all directories in the workspace": "\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u5185\u306E\u3059\u3079\u3066\u306E\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u8868\u793A",
|
|
294902
|
+
"set external editor preference": "\u5916\u90E8\u30A8\u30C7\u30A3\u30BF\u306E\u8A2D\u5B9A",
|
|
294903
|
+
"Manage extensions": "\u62E1\u5F35\u6A5F\u80FD\u3092\u7BA1\u7406",
|
|
294904
|
+
"List active extensions": "\u6709\u52B9\u306A\u62E1\u5F35\u6A5F\u80FD\u3092\u4E00\u89A7\u8868\u793A",
|
|
294905
|
+
"Update extensions. Usage: update <extension-names>|--all": "\u62E1\u5F35\u6A5F\u80FD\u3092\u66F4\u65B0\u3002\u4F7F\u3044\u65B9: update <\u62E1\u5F35\u6A5F\u80FD\u540D>|--all",
|
|
294906
|
+
"manage IDE integration": "IDE\u9023\u643A\u3092\u7BA1\u7406",
|
|
294907
|
+
"check status of IDE integration": "IDE\u9023\u643A\u306E\u72B6\u614B\u3092\u78BA\u8A8D",
|
|
294908
|
+
"install required IDE companion for {{ideName}}": "{{ideName}} \u7528\u306E\u5FC5\u8981\u306AIDE\u30B3\u30F3\u30D1\u30CB\u30AA\u30F3\u3092\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB",
|
|
294909
|
+
"enable IDE integration": "IDE\u9023\u643A\u3092\u6709\u52B9\u5316",
|
|
294910
|
+
"disable IDE integration": "IDE\u9023\u643A\u3092\u7121\u52B9\u5316",
|
|
294911
|
+
"IDE integration is not supported in your current environment. To use this feature, run Qwen Code in one of these supported IDEs: VS Code or VS Code forks.": "\u73FE\u5728\u306E\u74B0\u5883\u3067\u306FIDE\u9023\u643A\u306F\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002\u3053\u306E\u6A5F\u80FD\u3092\u4F7F\u7528\u3059\u308B\u306B\u306F\u3001VS Code \u307E\u305F\u306F VS Code \u6D3E\u751F\u30A8\u30C7\u30A3\u30BF\u3067 Qwen Code \u3092\u5B9F\u884C\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
294912
|
+
"Set up GitHub Actions": "GitHub Actions \u3092\u8A2D\u5B9A",
|
|
294913
|
+
"Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)": "\u8907\u6570\u884C\u5165\u529B\u7528\u306E\u30BF\u30FC\u30DF\u30CA\u30EB\u30AD\u30FC\u30D0\u30A4\u30F3\u30C9\u3092\u8A2D\u5B9A(VS Code\u3001Cursor\u3001Windsurf\u3001Trae)",
|
|
294914
|
+
"Please restart your terminal for the changes to take effect.": "\u5909\u66F4\u3092\u6709\u52B9\u306B\u3059\u308B\u306B\u306F\u30BF\u30FC\u30DF\u30CA\u30EB\u3092\u518D\u8D77\u52D5\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
294915
|
+
"Failed to configure terminal: {{error}}": "\u30BF\u30FC\u30DF\u30CA\u30EB\u306E\u8A2D\u5B9A\u306B\u5931\u6557: {{error}}",
|
|
294916
|
+
"Could not determine {{terminalName}} config path on Windows: APPDATA environment variable is not set.": "Windows \u3067 {{terminalName}} \u306E\u8A2D\u5B9A\u30D1\u30B9\u3092\u7279\u5B9A\u3067\u304D\u307E\u305B\u3093: APPDATA \u74B0\u5883\u5909\u6570\u304C\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
294917
|
+
"{{terminalName}} keybindings.json exists but is not a valid JSON array. Please fix the file manually or delete it to allow automatic configuration.": "{{terminalName}} \u306E keybindings.json \u306F\u5B58\u5728\u3057\u307E\u3059\u304C\u3001\u6709\u52B9\u306AJSON\u914D\u5217\u3067\u306F\u3042\u308A\u307E\u305B\u3093\u3002\u30D5\u30A1\u30A4\u30EB\u3092\u624B\u52D5\u3067\u4FEE\u6B63\u3059\u308B\u304B\u3001\u524A\u9664\u3057\u3066\u81EA\u52D5\u8A2D\u5B9A\u3092\u8A31\u53EF\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
294918
|
+
"File: {{file}}": "\u30D5\u30A1\u30A4\u30EB: {{file}}",
|
|
294919
|
+
"Failed to parse {{terminalName}} keybindings.json. The file contains invalid JSON. Please fix the file manually or delete it to allow automatic configuration.": "{{terminalName}} \u306E keybindings.json \u306E\u89E3\u6790\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002\u30D5\u30A1\u30A4\u30EB\u306B\u7121\u52B9\u306AJSON\u304C\u542B\u307E\u308C\u3066\u3044\u307E\u3059\u3002\u624B\u52D5\u3067\u4FEE\u6B63\u3059\u308B\u304B\u3001\u524A\u9664\u3057\u3066\u81EA\u52D5\u8A2D\u5B9A\u3092\u8A31\u53EF\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
294920
|
+
"Error: {{error}}": "\u30A8\u30E9\u30FC: {{error}}",
|
|
294921
|
+
"Shift+Enter binding already exists": "Shift+Enter \u30D0\u30A4\u30F3\u30C9\u306F\u65E2\u306B\u5B58\u5728\u3057\u307E\u3059",
|
|
294922
|
+
"Ctrl+Enter binding already exists": "Ctrl+Enter \u30D0\u30A4\u30F3\u30C9\u306F\u65E2\u306B\u5B58\u5728\u3057\u307E\u3059",
|
|
294923
|
+
"Existing keybindings detected. Will not modify to avoid conflicts.": "\u65E2\u5B58\u306E\u30AD\u30FC\u30D0\u30A4\u30F3\u30C9\u304C\u691C\u51FA\u3055\u308C\u307E\u3057\u305F\u3002\u7AF6\u5408\u3092\u907F\u3051\u308B\u305F\u3081\u5909\u66F4\u3092\u3057\u307E\u305B\u3093",
|
|
294924
|
+
"Please check and modify manually if needed: {{file}}": "\u5FC5\u8981\u306B\u5FDC\u3058\u3066\u624B\u52D5\u3067\u78BA\u8A8D\u30FB\u5909\u66F4\u3057\u3066\u304F\u3060\u3055\u3044: {{file}}",
|
|
294925
|
+
"Added Shift+Enter and Ctrl+Enter keybindings to {{terminalName}}.": "{{terminalName}} \u306B Shift+Enter \u3068 Ctrl+Enter \u306E\u30AD\u30FC\u30D0\u30A4\u30F3\u30C9\u3092\u8FFD\u52A0\u3057\u307E\u3057\u305F",
|
|
294926
|
+
"Modified: {{file}}": "\u5909\u66F4\u6E08\u307F: {{file}}",
|
|
294927
|
+
"{{terminalName}} keybindings already configured.": "{{terminalName}} \u306E\u30AD\u30FC\u30D0\u30A4\u30F3\u30C9\u306F\u65E2\u306B\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u3059",
|
|
294928
|
+
"Failed to configure {{terminalName}}.": "{{terminalName}} \u306E\u8A2D\u5B9A\u306B\u5931\u6557\u3057\u307E\u3057\u305F",
|
|
294929
|
+
"Your terminal is already configured for an optimal experience with multiline input (Shift+Enter and Ctrl+Enter).": "\u30BF\u30FC\u30DF\u30CA\u30EB\u306F\u8907\u6570\u884C\u5165\u529B(Shift+Enter \u3068 Ctrl+Enter)\u306B\u6700\u9069\u5316\u3055\u308C\u3066\u3044\u307E\u3059",
|
|
294930
|
+
"Could not detect terminal type. Supported terminals: VS Code, Cursor, Windsurf, and Trae.": "\u30BF\u30FC\u30DF\u30CA\u30EB\u306E\u7A2E\u985E\u3092\u691C\u51FA\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u308B\u30BF\u30FC\u30DF\u30CA\u30EB: VS Code\u3001Cursor\u3001Windsurf\u3001Trae",
|
|
294931
|
+
'Terminal "{{terminal}}" is not supported yet.': '\u30BF\u30FC\u30DF\u30CA\u30EB "{{terminal}}" \u306F\u307E\u3060\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u307E\u305B\u3093',
|
|
294932
|
+
// Commands - Language
|
|
294933
|
+
"Invalid language. Available: {{options}}": "\u7121\u52B9\u306A\u8A00\u8A9E\u3067\u3059\u3002\u4F7F\u7528\u53EF\u80FD: {{options}}",
|
|
294934
|
+
"Language subcommands do not accept additional arguments.": "\u8A00\u8A9E\u30B5\u30D6\u30B3\u30DE\u30F3\u30C9\u306F\u8FFD\u52A0\u306E\u5F15\u6570\u3092\u53D7\u3051\u4ED8\u3051\u307E\u305B\u3093",
|
|
294935
|
+
"Current UI language: {{lang}}": "\u73FE\u5728\u306EUI\u8A00\u8A9E: {{lang}}",
|
|
294936
|
+
"Current LLM output language: {{lang}}": "\u73FE\u5728\u306ELLM\u51FA\u529B\u8A00\u8A9E: {{lang}}",
|
|
294937
|
+
"LLM output language not set": "LLM\u51FA\u529B\u8A00\u8A9E\u304C\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
294938
|
+
"Set UI language": "UI\u8A00\u8A9E\u3092\u8A2D\u5B9A",
|
|
294939
|
+
"Set LLM output language": "LLM\u51FA\u529B\u8A00\u8A9E\u3092\u8A2D\u5B9A",
|
|
294940
|
+
"Usage: /language ui [{{options}}]": "\u4F7F\u3044\u65B9: /language ui [{{options}}]",
|
|
294941
|
+
"Usage: /language output <language>": "\u4F7F\u3044\u65B9: /language output <\u8A00\u8A9E>",
|
|
294942
|
+
"Example: /language output \u4E2D\u6587": "\u4F8B: /language output \u4E2D\u6587",
|
|
294943
|
+
"Example: /language output English": "\u4F8B: /language output English",
|
|
294944
|
+
"Example: /language output \u65E5\u672C\u8A9E": "\u4F8B: /language output \u65E5\u672C\u8A9E",
|
|
294945
|
+
"Example: /language output Portugu\xEAs": "\u4F8B: /language output Portugu\xEAs",
|
|
294946
|
+
"UI language changed to {{lang}}": "UI\u8A00\u8A9E\u3092 {{lang}} \u306B\u5909\u66F4\u3057\u307E\u3057\u305F",
|
|
294947
|
+
"LLM output language rule file generated at {{path}}": "LLM\u51FA\u529B\u8A00\u8A9E\u30EB\u30FC\u30EB\u30D5\u30A1\u30A4\u30EB\u3092 {{path}} \u306B\u751F\u6210\u3057\u307E\u3057\u305F",
|
|
294948
|
+
"Please restart the application for the changes to take effect.": "\u5909\u66F4\u3092\u6709\u52B9\u306B\u3059\u308B\u306B\u306F\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u3092\u518D\u8D77\u52D5\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
294949
|
+
"Failed to generate LLM output language rule file: {{error}}": "LLM\u51FA\u529B\u8A00\u8A9E\u30EB\u30FC\u30EB\u30D5\u30A1\u30A4\u30EB\u306E\u751F\u6210\u306B\u5931\u6557: {{error}}",
|
|
294950
|
+
"Invalid command. Available subcommands:": "\u7121\u52B9\u306A\u30B3\u30DE\u30F3\u30C9\u3067\u3059\u3002\u4F7F\u7528\u53EF\u80FD\u306A\u30B5\u30D6\u30B3\u30DE\u30F3\u30C9:",
|
|
294951
|
+
"Available subcommands:": "\u4F7F\u7528\u53EF\u80FD\u306A\u30B5\u30D6\u30B3\u30DE\u30F3\u30C9:",
|
|
294952
|
+
"To request additional UI language packs, please open an issue on GitHub.": "\u8FFD\u52A0\u306EUI\u8A00\u8A9E\u30D1\u30C3\u30AF\u3092\u30EA\u30AF\u30A8\u30B9\u30C8\u3059\u308B\u306B\u306F\u3001GitHub \u3067 Issue \u3092\u4F5C\u6210\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
294953
|
+
"Available options:": "\u4F7F\u7528\u53EF\u80FD\u306A\u30AA\u30D7\u30B7\u30E7\u30F3:",
|
|
294954
|
+
"Set UI language to {{name}}": "UI\u8A00\u8A9E\u3092 {{name}} \u306B\u8A2D\u5B9A",
|
|
294955
|
+
// Approval Mode
|
|
294956
|
+
"Approval Mode": "\u627F\u8A8D\u30E2\u30FC\u30C9",
|
|
294957
|
+
"Current approval mode: {{mode}}": "\u73FE\u5728\u306E\u627F\u8A8D\u30E2\u30FC\u30C9: {{mode}}",
|
|
294958
|
+
"Available approval modes:": "\u5229\u7528\u53EF\u80FD\u306A\u627F\u8A8D\u30E2\u30FC\u30C9:",
|
|
294959
|
+
"Approval mode changed to: {{mode}}": "\u627F\u8A8D\u30E2\u30FC\u30C9\u3092\u5909\u66F4\u3057\u307E\u3057\u305F: {{mode}}",
|
|
294960
|
+
"Approval mode changed to: {{mode}} (saved to {{scope}} settings{{location}})": "\u627F\u8A8D\u30E2\u30FC\u30C9\u3092 {{mode}} \u306B\u5909\u66F4\u3057\u307E\u3057\u305F({{scope}} \u8A2D\u5B9A{{location}}\u306B\u4FDD\u5B58)",
|
|
294961
|
+
"Usage: /approval-mode <mode> [--session|--user|--project]": "\u4F7F\u3044\u65B9: /approval-mode <\u30E2\u30FC\u30C9> [--session|--user|--project]",
|
|
294962
|
+
"Scope subcommands do not accept additional arguments.": "\u30B9\u30B3\u30FC\u30D7\u30B5\u30D6\u30B3\u30DE\u30F3\u30C9\u306F\u8FFD\u52A0\u306E\u5F15\u6570\u3092\u53D7\u3051\u4ED8\u3051\u307E\u305B\u3093",
|
|
294963
|
+
"Plan mode - Analyze only, do not modify files or execute commands": "\u30D7\u30E9\u30F3\u30E2\u30FC\u30C9 - \u5206\u6790\u306E\u307F\u3001\u30D5\u30A1\u30A4\u30EB\u306E\u5909\u66F4\u3084\u30B3\u30DE\u30F3\u30C9\u306E\u5B9F\u884C\u306F\u3057\u307E\u305B\u3093",
|
|
294964
|
+
"Default mode - Require approval for file edits or shell commands": "\u30C7\u30D5\u30A9\u30EB\u30C8\u30E2\u30FC\u30C9 - \u30D5\u30A1\u30A4\u30EB\u7DE8\u96C6\u3084\u30B7\u30A7\u30EB\u30B3\u30DE\u30F3\u30C9\u306B\u306F\u627F\u8A8D\u304C\u5FC5\u8981",
|
|
294965
|
+
"Auto-edit mode - Automatically approve file edits": "\u81EA\u52D5\u7DE8\u96C6\u30E2\u30FC\u30C9 - \u30D5\u30A1\u30A4\u30EB\u7DE8\u96C6\u3092\u81EA\u52D5\u627F\u8A8D",
|
|
294966
|
+
"YOLO mode - Automatically approve all tools": "YOLO\u30E2\u30FC\u30C9 - \u3059\u3079\u3066\u306E\u30C4\u30FC\u30EB\u3092\u81EA\u52D5\u627F\u8A8D",
|
|
294967
|
+
"{{mode}} mode": "{{mode}}\u30E2\u30FC\u30C9",
|
|
294968
|
+
"Settings service is not available; unable to persist the approval mode.": "\u8A2D\u5B9A\u30B5\u30FC\u30D3\u30B9\u304C\u5229\u7528\u3067\u304D\u307E\u305B\u3093\u3002\u627F\u8A8D\u30E2\u30FC\u30C9\u3092\u4FDD\u5B58\u3067\u304D\u307E\u305B\u3093",
|
|
294969
|
+
"Failed to save approval mode: {{error}}": "\u627F\u8A8D\u30E2\u30FC\u30C9\u306E\u4FDD\u5B58\u306B\u5931\u6557: {{error}}",
|
|
294970
|
+
"Failed to change approval mode: {{error}}": "\u627F\u8A8D\u30E2\u30FC\u30C9\u306E\u5909\u66F4\u306B\u5931\u6557: {{error}}",
|
|
294971
|
+
"Apply to current session only (temporary)": "\u73FE\u5728\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u306E\u307F\u306B\u9069\u7528(\u4E00\u6642\u7684)",
|
|
294972
|
+
"Persist for this project/workspace": "\u3053\u306E\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8/\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u306B\u4FDD\u5B58",
|
|
294973
|
+
"Persist for this user on this machine": "\u3053\u306E\u30DE\u30B7\u30F3\u306E\u3053\u306E\u30E6\u30FC\u30B6\u30FC\u306B\u4FDD\u5B58",
|
|
294974
|
+
"Analyze only, do not modify files or execute commands": "\u5206\u6790\u306E\u307F\u3001\u30D5\u30A1\u30A4\u30EB\u306E\u5909\u66F4\u3084\u30B3\u30DE\u30F3\u30C9\u306E\u5B9F\u884C\u306F\u3057\u307E\u305B\u3093",
|
|
294975
|
+
"Require approval for file edits or shell commands": "\u30D5\u30A1\u30A4\u30EB\u7DE8\u96C6\u3084\u30B7\u30A7\u30EB\u30B3\u30DE\u30F3\u30C9\u306B\u306F\u627F\u8A8D\u304C\u5FC5\u8981",
|
|
294976
|
+
"Automatically approve file edits": "\u30D5\u30A1\u30A4\u30EB\u7DE8\u96C6\u3092\u81EA\u52D5\u627F\u8A8D",
|
|
294977
|
+
"Automatically approve all tools": "\u3059\u3079\u3066\u306E\u30C4\u30FC\u30EB\u3092\u81EA\u52D5\u627F\u8A8D",
|
|
294978
|
+
"Workspace approval mode exists and takes priority. User-level change will have no effect.": "\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u306E\u627F\u8A8D\u30E2\u30FC\u30C9\u304C\u5B58\u5728\u3057\u3001\u512A\u5148\u3055\u308C\u307E\u3059\u3002\u30E6\u30FC\u30B6\u30FC\u30EC\u30D9\u30EB\u306E\u5909\u66F4\u306F\u52B9\u679C\u304C\u3042\u308A\u307E\u305B\u3093",
|
|
294979
|
+
"(Use Enter to select, Tab to change focus)": "(Enter \u3067\u9078\u629E\u3001Tab \u3067\u30D5\u30A9\u30FC\u30AB\u30B9\u5909\u66F4)",
|
|
294980
|
+
"Apply To": "\u9069\u7528\u5148",
|
|
294981
|
+
"User Settings": "\u30E6\u30FC\u30B6\u30FC\u8A2D\u5B9A",
|
|
294982
|
+
"Workspace Settings": "\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u8A2D\u5B9A",
|
|
294983
|
+
// Memory
|
|
294984
|
+
"Commands for interacting with memory.": "\u30E1\u30E2\u30EA\u64CD\u4F5C\u306E\u30B3\u30DE\u30F3\u30C9",
|
|
294985
|
+
"Show the current memory contents.": "\u73FE\u5728\u306E\u30E1\u30E2\u30EA\u5185\u5BB9\u3092\u8868\u793A",
|
|
294986
|
+
"Show project-level memory contents.": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30EC\u30D9\u30EB\u306E\u30E1\u30E2\u30EA\u5185\u5BB9\u3092\u8868\u793A",
|
|
294987
|
+
"Show global memory contents.": "\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u5185\u5BB9\u3092\u8868\u793A",
|
|
294988
|
+
"Add content to project-level memory.": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30EC\u30D9\u30EB\u306E\u30E1\u30E2\u30EA\u306B\u30B3\u30F3\u30C6\u30F3\u30C4\u3092\u8FFD\u52A0",
|
|
294989
|
+
"Add content to global memory.": "\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u306B\u30B3\u30F3\u30C6\u30F3\u30C4\u3092\u8FFD\u52A0",
|
|
294990
|
+
"Refresh the memory from the source.": "\u30BD\u30FC\u30B9\u304B\u3089\u30E1\u30E2\u30EA\u3092\u66F4\u65B0",
|
|
294991
|
+
"Usage: /memory add --project <text to remember>": "\u4F7F\u3044\u65B9: /memory add --project <\u8A18\u61B6\u3059\u308B\u30C6\u30AD\u30B9\u30C8>",
|
|
294992
|
+
"Usage: /memory add --global <text to remember>": "\u4F7F\u3044\u65B9: /memory add --global <\u8A18\u61B6\u3059\u308B\u30C6\u30AD\u30B9\u30C8>",
|
|
294993
|
+
'Attempting to save to project memory: "{{text}}"': '\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30E1\u30E2\u30EA\u3078\u306E\u4FDD\u5B58\u3092\u8A66\u884C\u4E2D: "{{text}}"',
|
|
294994
|
+
'Attempting to save to global memory: "{{text}}"': '\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u3078\u306E\u4FDD\u5B58\u3092\u8A66\u884C\u4E2D: "{{text}}"',
|
|
294995
|
+
"Current memory content from {{count}} file(s):": "{{count}} \u500B\u306E\u30D5\u30A1\u30A4\u30EB\u304B\u3089\u306E\u73FE\u5728\u306E\u30E1\u30E2\u30EA\u5185\u5BB9:",
|
|
294996
|
+
"Memory is currently empty.": "\u30E1\u30E2\u30EA\u306F\u73FE\u5728\u7A7A\u3067\u3059",
|
|
294997
|
+
"Project memory file not found or is currently empty.": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30E1\u30E2\u30EA\u30D5\u30A1\u30A4\u30EB\u304C\u898B\u3064\u304B\u3089\u306A\u3044\u304B\u3001\u73FE\u5728\u7A7A\u3067\u3059",
|
|
294998
|
+
"Global memory file not found or is currently empty.": "\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u30D5\u30A1\u30A4\u30EB\u304C\u898B\u3064\u304B\u3089\u306A\u3044\u304B\u3001\u73FE\u5728\u7A7A\u3067\u3059",
|
|
294999
|
+
"Global memory is currently empty.": "\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u306F\u73FE\u5728\u7A7A\u3067\u3059",
|
|
295000
|
+
"Global memory content:\n\n---\n{{content}}\n---": "\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u5185\u5BB9:\n\n---\n{{content}}\n---",
|
|
295001
|
+
"Project memory content from {{path}}:\n\n---\n{{content}}\n---": "{{path}} \u304B\u3089\u306E\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30E1\u30E2\u30EA\u5185\u5BB9:\n\n---\n{{content}}\n---",
|
|
295002
|
+
"Project memory is currently empty.": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30E1\u30E2\u30EA\u306F\u73FE\u5728\u7A7A\u3067\u3059",
|
|
295003
|
+
"Refreshing memory from source files...": "\u30BD\u30FC\u30B9\u30D5\u30A1\u30A4\u30EB\u304B\u3089\u30E1\u30E2\u30EA\u3092\u66F4\u65B0\u4E2D...",
|
|
295004
|
+
"Add content to the memory. Use --global for global memory or --project for project memory.": "\u30E1\u30E2\u30EA\u306B\u30B3\u30F3\u30C6\u30F3\u30C4\u3092\u8FFD\u52A0\u3002\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u306B\u306F --global\u3001\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30E1\u30E2\u30EA\u306B\u306F --project \u3092\u4F7F\u7528",
|
|
295005
|
+
"Usage: /memory add [--global|--project] <text to remember>": "\u4F7F\u3044\u65B9: /memory add [--global|--project] <\u8A18\u61B6\u3059\u308B\u30C6\u30AD\u30B9\u30C8>",
|
|
295006
|
+
'Attempting to save to memory {{scope}}: "{{fact}}"': '\u30E1\u30E2\u30EA {{scope}} \u3078\u306E\u4FDD\u5B58\u3092\u8A66\u884C\u4E2D: "{{fact}}"',
|
|
295007
|
+
// MCP
|
|
295008
|
+
"Authenticate with an OAuth-enabled MCP server": "OAuth\u5BFE\u5FDC\u306EMCP\u30B5\u30FC\u30D0\u30FC\u3067\u8A8D\u8A3C",
|
|
295009
|
+
"List configured MCP servers and tools": "\u8A2D\u5B9A\u6E08\u307F\u306EMCP\u30B5\u30FC\u30D0\u30FC\u3068\u30C4\u30FC\u30EB\u3092\u4E00\u89A7\u8868\u793A",
|
|
295010
|
+
"No MCP servers configured.": "MCP\u30B5\u30FC\u30D0\u30FC\u304C\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
295011
|
+
"Restarts MCP servers.": "MCP\u30B5\u30FC\u30D0\u30FC\u3092\u518D\u8D77\u52D5\u3057\u307E\u3059",
|
|
295012
|
+
"Config not loaded.": "\u8A2D\u5B9A\u304C\u8AAD\u307F\u8FBC\u307E\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
295013
|
+
"Could not retrieve tool registry.": "\u30C4\u30FC\u30EB\u30EC\u30B8\u30B9\u30C8\u30EA\u3092\u53D6\u5F97\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F",
|
|
295014
|
+
"No MCP servers configured with OAuth authentication.": "OAuth\u8A8D\u8A3C\u304C\u8A2D\u5B9A\u3055\u308C\u305FMCP\u30B5\u30FC\u30D0\u30FC\u306F\u3042\u308A\u307E\u305B\u3093",
|
|
295015
|
+
"MCP servers with OAuth authentication:": "OAuth\u8A8D\u8A3C\u306EMCP\u30B5\u30FC\u30D0\u30FC:",
|
|
295016
|
+
"Use /mcp auth <server-name> to authenticate.": "\u8A8D\u8A3C\u3059\u308B\u306B\u306F /mcp auth <\u30B5\u30FC\u30D0\u30FC\u540D> \u3092\u4F7F\u7528",
|
|
295017
|
+
"MCP server '{{name}}' not found.": "MCP\u30B5\u30FC\u30D0\u30FC '{{name}}' \u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
295018
|
+
"Successfully authenticated and refreshed tools for '{{name}}'.": "'{{name}}' \u306E\u8A8D\u8A3C\u3068\u30C4\u30FC\u30EB\u66F4\u65B0\u306B\u6210\u529F\u3057\u307E\u3057\u305F",
|
|
295019
|
+
"Failed to authenticate with MCP server '{{name}}': {{error}}": "MCP\u30B5\u30FC\u30D0\u30FC '{{name}}' \u3067\u306E\u8A8D\u8A3C\u306B\u5931\u6557: {{error}}",
|
|
295020
|
+
"Re-discovering tools from '{{name}}'...": "'{{name}}' \u304B\u3089\u30C4\u30FC\u30EB\u3092\u518D\u691C\u51FA\u4E2D...",
|
|
295021
|
+
"Configured MCP servers:": "\u8A2D\u5B9A\u6E08\u307FMCP\u30B5\u30FC\u30D0\u30FC:",
|
|
295022
|
+
Ready: "\u6E96\u5099\u5B8C\u4E86",
|
|
295023
|
+
Disconnected: "\u5207\u65AD",
|
|
295024
|
+
"{{count}} tool": "{{count}} \u30C4\u30FC\u30EB",
|
|
295025
|
+
"{{count}} tools": "{{count}} \u30C4\u30FC\u30EB",
|
|
295026
|
+
"Restarting MCP servers...": "MCP\u30B5\u30FC\u30D0\u30FC\u3092\u518D\u8D77\u52D5\u4E2D...",
|
|
295027
|
+
// Chat
|
|
295028
|
+
"Manage conversation history.": "\u4F1A\u8A71\u5C65\u6B74\u3092\u7BA1\u7406\u3057\u307E\u3059",
|
|
295029
|
+
"List saved conversation checkpoints": "\u4FDD\u5B58\u3055\u308C\u305F\u4F1A\u8A71\u30C1\u30A7\u30C3\u30AF\u30DD\u30A4\u30F3\u30C8\u3092\u4E00\u89A7\u8868\u793A",
|
|
295030
|
+
"No saved conversation checkpoints found.": "\u4FDD\u5B58\u3055\u308C\u305F\u4F1A\u8A71\u30C1\u30A7\u30C3\u30AF\u30DD\u30A4\u30F3\u30C8\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
295031
|
+
"List of saved conversations:": "\u4FDD\u5B58\u3055\u308C\u305F\u4F1A\u8A71\u306E\u4E00\u89A7:",
|
|
295032
|
+
"Note: Newest last, oldest first": "\u6CE8: \u6700\u65B0\u306E\u3082\u306E\u304C\u4E0B\u306B\u3042\u308A\u3001\u904E\u53BB\u306E\u3082\u306E\u304C\u4E0A\u306B\u3042\u308A\u307E\u3059",
|
|
295033
|
+
"Save the current conversation as a checkpoint. Usage: /chat save <tag>": "\u73FE\u5728\u306E\u4F1A\u8A71\u3092\u30C1\u30A7\u30C3\u30AF\u30DD\u30A4\u30F3\u30C8\u3068\u3057\u3066\u4FDD\u5B58\u3002\u4F7F\u3044\u65B9: /chat save <\u30BF\u30B0>",
|
|
295034
|
+
"Missing tag. Usage: /chat save <tag>": "\u30BF\u30B0\u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059\u3002\u4F7F\u3044\u65B9: /chat save <\u30BF\u30B0>",
|
|
295035
|
+
"Delete a conversation checkpoint. Usage: /chat delete <tag>": "\u4F1A\u8A71\u30C1\u30A7\u30C3\u30AF\u30DD\u30A4\u30F3\u30C8\u3092\u524A\u9664\u3002\u4F7F\u3044\u65B9: /chat delete <\u30BF\u30B0>",
|
|
295036
|
+
"Missing tag. Usage: /chat delete <tag>": "\u30BF\u30B0\u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059\u3002\u4F7F\u3044\u65B9: /chat delete <\u30BF\u30B0>",
|
|
295037
|
+
"Conversation checkpoint '{{tag}}' has been deleted.": "\u4F1A\u8A71\u30C1\u30A7\u30C3\u30AF\u30DD\u30A4\u30F3\u30C8 '{{tag}}' \u3092\u524A\u9664\u3057\u307E\u3057\u305F",
|
|
295038
|
+
"Error: No checkpoint found with tag '{{tag}}'.": "\u30A8\u30E9\u30FC: \u30BF\u30B0 '{{tag}}' \u306E\u30C1\u30A7\u30C3\u30AF\u30DD\u30A4\u30F3\u30C8\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
295039
|
+
"Resume a conversation from a checkpoint. Usage: /chat resume <tag>": "\u30C1\u30A7\u30C3\u30AF\u30DD\u30A4\u30F3\u30C8\u304B\u3089\u4F1A\u8A71\u3092\u518D\u958B\u3002\u4F7F\u3044\u65B9: /chat resume <\u30BF\u30B0>",
|
|
295040
|
+
"Missing tag. Usage: /chat resume <tag>": "\u30BF\u30B0\u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059\u3002\u4F7F\u3044\u65B9: /chat resume <\u30BF\u30B0>",
|
|
295041
|
+
"No saved checkpoint found with tag: {{tag}}.": "\u30BF\u30B0 {{tag}} \u306E\u30C1\u30A7\u30C3\u30AF\u30DD\u30A4\u30F3\u30C8\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
295042
|
+
"A checkpoint with the tag {{tag}} already exists. Do you want to overwrite it?": "\u30BF\u30B0 {{tag}} \u306E\u30C1\u30A7\u30C3\u30AF\u30DD\u30A4\u30F3\u30C8\u306F\u65E2\u306B\u5B58\u5728\u3057\u307E\u3059\u3002\u4E0A\u66F8\u304D\u3057\u307E\u3059\u304B?",
|
|
295043
|
+
"No chat client available to save conversation.": "\u4F1A\u8A71\u3092\u4FDD\u5B58\u3059\u308B\u305F\u3081\u306E\u30C1\u30E3\u30C3\u30C8\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8\u304C\u3042\u308A\u307E\u305B\u3093",
|
|
295044
|
+
"Conversation checkpoint saved with tag: {{tag}}.": "\u30BF\u30B0 {{tag}} \u3067\u4F1A\u8A71\u30C1\u30A7\u30C3\u30AF\u30DD\u30A4\u30F3\u30C8\u3092\u4FDD\u5B58\u3057\u307E\u3057\u305F",
|
|
295045
|
+
"No conversation found to save.": "\u4FDD\u5B58\u3059\u308B\u4F1A\u8A71\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
295046
|
+
"No chat client available to share conversation.": "\u4F1A\u8A71\u3092\u5171\u6709\u3059\u308B\u305F\u3081\u306E\u30C1\u30E3\u30C3\u30C8\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8\u304C\u3042\u308A\u307E\u305B\u3093",
|
|
295047
|
+
"Invalid file format. Only .md and .json are supported.": "\u7121\u52B9\u306A\u30D5\u30A1\u30A4\u30EB\u5F62\u5F0F\u3067\u3059\u3002.md \u3068 .json \u306E\u307F\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u307E\u3059",
|
|
295048
|
+
"Error sharing conversation: {{error}}": "\u4F1A\u8A71\u306E\u5171\u6709\u4E2D\u306B\u30A8\u30E9\u30FC: {{error}}",
|
|
295049
|
+
"Conversation shared to {{filePath}}": "\u4F1A\u8A71\u3092 {{filePath}} \u306B\u5171\u6709\u3057\u307E\u3057\u305F",
|
|
295050
|
+
"No conversation found to share.": "\u5171\u6709\u3059\u308B\u4F1A\u8A71\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
295051
|
+
"Share the current conversation to a markdown or json file. Usage: /chat share <file>": "\u73FE\u5728\u306E\u4F1A\u8A71\u3092markdown\u307E\u305F\u306Fjson\u30D5\u30A1\u30A4\u30EB\u306B\u5171\u6709\u3002\u4F7F\u3044\u65B9: /chat share <\u30D5\u30A1\u30A4\u30EB>",
|
|
295052
|
+
// Summary
|
|
295053
|
+
"Generate a project summary and save it to .qwen/PROJECT_SUMMARY.md": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30B5\u30DE\u30EA\u30FC\u3092\u751F\u6210\u3057\u3001.qwen/PROJECT_SUMMARY.md \u306B\u4FDD\u5B58",
|
|
295054
|
+
"No chat client available to generate summary.": "\u30B5\u30DE\u30EA\u30FC\u3092\u751F\u6210\u3059\u308B\u305F\u3081\u306E\u30C1\u30E3\u30C3\u30C8\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8\u304C\u3042\u308A\u307E\u305B\u3093",
|
|
295055
|
+
"Already generating summary, wait for previous request to complete": "\u30B5\u30DE\u30EA\u30FC\u751F\u6210\u4E2D\u3067\u3059\u3002\u524D\u306E\u30EA\u30AF\u30A8\u30B9\u30C8\u306E\u5B8C\u4E86\u3092\u304A\u5F85\u3061\u304F\u3060\u3055\u3044",
|
|
295056
|
+
"No conversation found to summarize.": "\u8981\u7D04\u3059\u308B\u4F1A\u8A71\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
295057
|
+
"Failed to generate project context summary: {{error}}": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8\u30B5\u30DE\u30EA\u30FC\u306E\u751F\u6210\u306B\u5931\u6557: {{error}}",
|
|
295058
|
+
"Saved project summary to {{filePathForDisplay}}.": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30B5\u30DE\u30EA\u30FC\u3092 {{filePathForDisplay}} \u306B\u4FDD\u5B58\u3057\u307E\u3057\u305F",
|
|
295059
|
+
"Saving project summary...": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30B5\u30DE\u30EA\u30FC\u3092\u4FDD\u5B58\u4E2D...",
|
|
295060
|
+
"Generating project summary...": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30B5\u30DE\u30EA\u30FC\u3092\u751F\u6210\u4E2D...",
|
|
295061
|
+
"Failed to generate summary - no text content received from LLM response": "\u30B5\u30DE\u30EA\u30FC\u306E\u751F\u6210\u306B\u5931\u6557 - LLM\u30EC\u30B9\u30DD\u30F3\u30B9\u304B\u3089\u30C6\u30AD\u30B9\u30C8\u30B3\u30F3\u30C6\u30F3\u30C4\u3092\u53D7\u4FE1\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F",
|
|
295062
|
+
// Model
|
|
295063
|
+
"Switch the model for this session": "\u3053\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u306E\u30E2\u30C7\u30EB\u3092\u5207\u308A\u66FF\u3048",
|
|
295064
|
+
"Content generator configuration not available.": "\u30B3\u30F3\u30C6\u30F3\u30C4\u30B8\u30A7\u30CD\u30EC\u30FC\u30BF\u30FC\u8A2D\u5B9A\u304C\u5229\u7528\u3067\u304D\u307E\u305B\u3093",
|
|
295065
|
+
"Authentication type not available.": "\u8A8D\u8A3C\u30BF\u30A4\u30D7\u304C\u5229\u7528\u3067\u304D\u307E\u305B\u3093",
|
|
295066
|
+
"No models available for the current authentication type ({{authType}}).": "\u73FE\u5728\u306E\u8A8D\u8A3C\u30BF\u30A4\u30D7({{authType}})\u3067\u5229\u7528\u53EF\u80FD\u306A\u30E2\u30C7\u30EB\u306F\u3042\u308A\u307E\u305B\u3093",
|
|
295067
|
+
// Clear
|
|
295068
|
+
"Starting a new session, resetting chat, and clearing terminal.": "\u65B0\u3057\u3044\u30BB\u30C3\u30B7\u30E7\u30F3\u3092\u958B\u59CB\u3057\u3001\u30C1\u30E3\u30C3\u30C8\u3092\u30EA\u30BB\u30C3\u30C8\u3057\u3001\u30BF\u30FC\u30DF\u30CA\u30EB\u3092\u30AF\u30EA\u30A2\u3057\u3066\u3044\u307E\u3059",
|
|
295069
|
+
"Starting a new session and clearing.": "\u65B0\u3057\u3044\u30BB\u30C3\u30B7\u30E7\u30F3\u3092\u958B\u59CB\u3057\u3066\u30AF\u30EA\u30A2\u3057\u3066\u3044\u307E\u3059",
|
|
295070
|
+
// Compress
|
|
295071
|
+
"Already compressing, wait for previous request to complete": "\u5727\u7E2E\u4E2D\u3067\u3059\u3002\u524D\u306E\u30EA\u30AF\u30A8\u30B9\u30C8\u306E\u5B8C\u4E86\u3092\u304A\u5F85\u3061\u304F\u3060\u3055\u3044",
|
|
295072
|
+
"Failed to compress chat history.": "\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u306E\u5727\u7E2E\u306B\u5931\u6557\u3057\u307E\u3057\u305F",
|
|
295073
|
+
"Failed to compress chat history: {{error}}": "\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u306E\u5727\u7E2E\u306B\u5931\u6557: {{error}}",
|
|
295074
|
+
"Compressing chat history": "\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u3092\u5727\u7E2E\u4E2D",
|
|
295075
|
+
"Chat history compressed from {{originalTokens}} to {{newTokens}} tokens.": "\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u3092 {{originalTokens}} \u30C8\u30FC\u30AF\u30F3\u304B\u3089 {{newTokens}} \u30C8\u30FC\u30AF\u30F3\u306B\u5727\u7E2E\u3057\u307E\u3057\u305F",
|
|
295076
|
+
"Compression was not beneficial for this history size.": "\u3053\u306E\u5C65\u6B74\u30B5\u30A4\u30BA\u306B\u306F\u5727\u7E2E\u306E\u52B9\u679C\u304C\u3042\u308A\u307E\u305B\u3093\u3067\u3057\u305F",
|
|
295077
|
+
"Chat history compression did not reduce size. This may indicate issues with the compression prompt.": "\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u306E\u5727\u7E2E\u3067\u30B5\u30A4\u30BA\u304C\u6E1B\u5C11\u3057\u307E\u305B\u3093\u3067\u3057\u305F\u3002\u5727\u7E2E\u30D7\u30ED\u30F3\u30D7\u30C8\u306B\u554F\u984C\u304C\u3042\u308B\u53EF\u80FD\u6027\u304C\u3042\u308A\u307E\u3059",
|
|
295078
|
+
"Could not compress chat history due to a token counting error.": "\u30C8\u30FC\u30AF\u30F3\u30AB\u30A6\u30F3\u30C8\u30A8\u30E9\u30FC\u306E\u305F\u3081\u3001\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u3092\u5727\u7E2E\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F",
|
|
295079
|
+
"Chat history is already compressed.": "\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u306F\u65E2\u306B\u5727\u7E2E\u3055\u308C\u3066\u3044\u307E\u3059",
|
|
295080
|
+
// Directory
|
|
295081
|
+
"Configuration is not available.": "\u8A2D\u5B9A\u304C\u5229\u7528\u3067\u304D\u307E\u305B\u3093",
|
|
295082
|
+
"Please provide at least one path to add.": "\u8FFD\u52A0\u3059\u308B\u30D1\u30B9\u3092\u5C11\u306A\u304F\u3068\u30821\u3064\u6307\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
295083
|
+
"The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.": "\u5236\u9650\u7684\u306A\u30B5\u30F3\u30C9\u30DC\u30C3\u30AF\u30B9\u30D7\u30ED\u30D5\u30A1\u30A4\u30EB\u3067\u306F /directory add \u30B3\u30DE\u30F3\u30C9\u306F\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002\u4EE3\u308F\u308A\u306B\u30BB\u30C3\u30B7\u30E7\u30F3\u958B\u59CB\u6642\u306B --include-directories \u3092\u4F7F\u7528\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
295084
|
+
"Error adding '{{path}}': {{error}}": "'{{path}}' \u306E\u8FFD\u52A0\u4E2D\u306B\u30A8\u30E9\u30FC: {{error}}",
|
|
295085
|
+
"Successfully added QWEN.md files from the following directories if there are:\n- {{directories}}": "\u4EE5\u4E0B\u306E\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u304B\u3089 QWEN.md \u30D5\u30A1\u30A4\u30EB\u3092\u8FFD\u52A0\u3057\u307E\u3057\u305F(\u5B58\u5728\u3059\u308B\u5834\u5408):\n- {{directories}}",
|
|
295086
|
+
"Error refreshing memory: {{error}}": "\u30E1\u30E2\u30EA\u306E\u66F4\u65B0\u4E2D\u306B\u30A8\u30E9\u30FC: {{error}}",
|
|
295087
|
+
"Successfully added directories:\n- {{directories}}": "\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u6B63\u5E38\u306B\u8FFD\u52A0\u3057\u307E\u3057\u305F:\n- {{directories}}",
|
|
295088
|
+
"Current workspace directories:\n{{directories}}": "\u73FE\u5728\u306E\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA:\n{{directories}}",
|
|
295089
|
+
// Docs
|
|
295090
|
+
"Please open the following URL in your browser to view the documentation:\n{{url}}": "\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8\u3092\u8868\u793A\u3059\u308B\u306B\u306F\u3001\u30D6\u30E9\u30A6\u30B6\u3067\u4EE5\u4E0B\u306EURL\u3092\u958B\u3044\u3066\u304F\u3060\u3055\u3044:\n{{url}}",
|
|
295091
|
+
"Opening documentation in your browser: {{url}}": " \u30D6\u30E9\u30A6\u30B6\u3067\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8\u3092\u958B\u304D\u307E\u3057\u305F: {{url}}",
|
|
295092
|
+
// Dialogs - Tool Confirmation
|
|
295093
|
+
"Do you want to proceed?": "\u7D9A\u884C\u3057\u307E\u3059\u304B?",
|
|
295094
|
+
"Yes, allow once": "\u306F\u3044(\u4ECA\u56DE\u306E\u307F\u8A31\u53EF)",
|
|
295095
|
+
"Allow always": "\u5E38\u306B\u8A31\u53EF\u3059\u308B",
|
|
295096
|
+
No: "\u3044\u3044\u3048",
|
|
295097
|
+
"No (esc)": "\u3044\u3044\u3048 (Esc)",
|
|
295098
|
+
"Yes, allow always for this session": "\u306F\u3044\u3001\u3053\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u3067\u5E38\u306B\u8A31\u53EF",
|
|
295099
|
+
"Modify in progress:": "\u5909\u66F4\u4E2D:",
|
|
295100
|
+
"Save and close external editor to continue": "\u7D9A\u884C\u3059\u308B\u306B\u306F\u5916\u90E8\u30A8\u30C7\u30A3\u30BF\u3092\u4FDD\u5B58\u3057\u3066\u9589\u3058\u3066\u304F\u3060\u3055\u3044",
|
|
295101
|
+
"Apply this change?": "\u3053\u306E\u5909\u66F4\u3092\u9069\u7528\u3057\u307E\u3059\u304B?",
|
|
295102
|
+
"Yes, allow always": "\u306F\u3044\u3001\u5E38\u306B\u8A31\u53EF",
|
|
295103
|
+
"Modify with external editor": "\u5916\u90E8\u30A8\u30C7\u30A3\u30BF\u3067\u7DE8\u96C6",
|
|
295104
|
+
"No, suggest changes (esc)": "\u3044\u3044\u3048\u3001\u5909\u66F4\u3092\u63D0\u6848 (Esc)",
|
|
295105
|
+
"Allow execution of: '{{command}}'?": "'{{command}}' \u306E\u5B9F\u884C\u3092\u8A31\u53EF\u3057\u307E\u3059\u304B?",
|
|
295106
|
+
"Yes, allow always ...": "\u306F\u3044\u3001\u5E38\u306B\u8A31\u53EF...",
|
|
295107
|
+
"Yes, and auto-accept edits": "\u306F\u3044\u3001\u7DE8\u96C6\u3092\u81EA\u52D5\u627F\u8A8D",
|
|
295108
|
+
"Yes, and manually approve edits": "\u306F\u3044\u3001\u7DE8\u96C6\u3092\u624B\u52D5\u627F\u8A8D",
|
|
295109
|
+
"No, keep planning (esc)": "\u3044\u3044\u3048\u3001\u8A08\u753B\u3092\u7D9A\u3051\u308B (Esc)",
|
|
295110
|
+
"URLs to fetch:": "\u53D6\u5F97\u3059\u308BURL:",
|
|
295111
|
+
"MCP Server: {{server}}": "MCP\u30B5\u30FC\u30D0\u30FC: {{server}}",
|
|
295112
|
+
"Tool: {{tool}}": "\u30C4\u30FC\u30EB: {{tool}}",
|
|
295113
|
+
'Allow execution of MCP tool "{{tool}}" from server "{{server}}"?': '\u30B5\u30FC\u30D0\u30FC "{{server}}" \u304B\u3089\u306E MCP\u30C4\u30FC\u30EB "{{tool}}" \u306E\u5B9F\u884C\u3092\u8A31\u53EF\u3057\u307E\u3059\u304B?',
|
|
295114
|
+
'Yes, always allow tool "{{tool}}" from server "{{server}}"': '\u306F\u3044\u3001\u30B5\u30FC\u30D0\u30FC "{{server}}" \u304B\u3089\u306E\u30C4\u30FC\u30EB "{{tool}}" \u3092\u5E38\u306B\u8A31\u53EF',
|
|
295115
|
+
'Yes, always allow all tools from server "{{server}}"': '\u306F\u3044\u3001\u30B5\u30FC\u30D0\u30FC "{{server}}" \u304B\u3089\u306E\u3059\u3079\u3066\u306E\u30C4\u30FC\u30EB\u3092\u5E38\u306B\u8A31\u53EF',
|
|
295116
|
+
// Dialogs - Shell Confirmation
|
|
295117
|
+
"Shell Command Execution": "\u30B7\u30A7\u30EB\u30B3\u30DE\u30F3\u30C9\u5B9F\u884C",
|
|
295118
|
+
"A custom command wants to run the following shell commands:": "\u30AB\u30B9\u30BF\u30E0\u30B3\u30DE\u30F3\u30C9\u304C\u4EE5\u4E0B\u306E\u30B7\u30A7\u30EB\u30B3\u30DE\u30F3\u30C9\u3092\u5B9F\u884C\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u307E\u3059:",
|
|
295119
|
+
// Dialogs - Pro Quota
|
|
295120
|
+
"Pro quota limit reached for {{model}}.": "{{model}} \u306EPro\u30AF\u30A9\u30FC\u30BF\u4E0A\u9650\u306B\u9054\u3057\u307E\u3057\u305F",
|
|
295121
|
+
"Change auth (executes the /auth command)": "\u8A8D\u8A3C\u3092\u5909\u66F4(/auth \u30B3\u30DE\u30F3\u30C9\u3092\u5B9F\u884C)",
|
|
295122
|
+
"Continue with {{model}}": "{{model}} \u3067\u7D9A\u884C",
|
|
295123
|
+
// Dialogs - Welcome Back
|
|
295124
|
+
"Current Plan:": "\u73FE\u5728\u306E\u30D7\u30E9\u30F3:",
|
|
295125
|
+
"Progress: {{done}}/{{total}} tasks completed": "\u9032\u6357: {{done}}/{{total}} \u30BF\u30B9\u30AF\u5B8C\u4E86",
|
|
295126
|
+
", {{inProgress}} in progress": "\u3001{{inProgress}} \u9032\u884C\u4E2D",
|
|
295127
|
+
"Pending Tasks:": "\u4FDD\u7559\u4E2D\u306E\u30BF\u30B9\u30AF:",
|
|
295128
|
+
"What would you like to do?": "\u4F55\u3092\u3057\u307E\u3059\u304B?",
|
|
295129
|
+
"Choose how to proceed with your session:": "\u30BB\u30C3\u30B7\u30E7\u30F3\u306E\u7D9A\u884C\u65B9\u6CD5\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044:",
|
|
295130
|
+
"Start new chat session": "\u65B0\u3057\u3044\u30C1\u30E3\u30C3\u30C8\u30BB\u30C3\u30B7\u30E7\u30F3\u3092\u958B\u59CB",
|
|
295131
|
+
"Continue previous conversation": "\u524D\u56DE\u306E\u4F1A\u8A71\u3092\u7D9A\u884C",
|
|
295132
|
+
"\u{1F44B} Welcome back! (Last updated: {{timeAgo}})": "\u{1F44B} \u304A\u304B\u3048\u308A\u306A\u3055\u3044!(\u6700\u7D42\u66F4\u65B0: {{timeAgo}})",
|
|
295133
|
+
"\u{1F3AF} Overall Goal:": "\u{1F3AF} \u5168\u4F53\u76EE\u6A19:",
|
|
295134
|
+
// Dialogs - Auth
|
|
295135
|
+
"Get started": "\u59CB\u3081\u308B",
|
|
295136
|
+
"How would you like to authenticate for this project?": "\u3053\u306E\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306E\u8A8D\u8A3C\u65B9\u6CD5\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044:",
|
|
295137
|
+
"OpenAI API key is required to use OpenAI authentication.": "OpenAI\u8A8D\u8A3C\u3092\u4F7F\u7528\u3059\u308B\u306B\u306F OpenAI API\u30AD\u30FC\u304C\u5FC5\u8981\u3067\u3059",
|
|
295138
|
+
"You must select an auth method to proceed. Press Ctrl+C again to exit.": "\u7D9A\u884C\u3059\u308B\u306B\u306F\u8A8D\u8A3C\u65B9\u6CD5\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044\u3002Ctrl+C \u3092\u3082\u3046\u4E00\u5EA6\u62BC\u3059\u3068\u7D42\u4E86\u3057\u307E\u3059",
|
|
295139
|
+
"(Use Enter to Set Auth)": "(Enter \u3067\u8A8D\u8A3C\u3092\u8A2D\u5B9A)",
|
|
295140
|
+
"Terms of Services and Privacy Notice for Qwen Code": "Qwen Code \u306E\u5229\u7528\u898F\u7D04\u3068\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u901A\u77E5",
|
|
295141
|
+
"Qwen OAuth": "Qwen OAuth",
|
|
295142
|
+
OpenAI: "OpenAI",
|
|
295143
|
+
"Failed to login. Message: {{message}}": "\u30ED\u30B0\u30A4\u30F3\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002\u30E1\u30C3\u30BB\u30FC\u30B8: {{message}}",
|
|
295144
|
+
"Authentication is enforced to be {{enforcedType}}, but you are currently using {{currentType}}.": "\u8A8D\u8A3C\u306F {{enforcedType}} \u306B\u5F37\u5236\u3055\u308C\u3066\u3044\u307E\u3059\u304C\u3001\u73FE\u5728 {{currentType}} \u3092\u4F7F\u7528\u3057\u3066\u3044\u307E\u3059",
|
|
295145
|
+
"Qwen OAuth authentication timed out. Please try again.": "Qwen OAuth\u8A8D\u8A3C\u304C\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8\u3057\u307E\u3057\u305F\u3002\u518D\u5EA6\u304A\u8A66\u3057\u304F\u3060\u3055\u3044",
|
|
295146
|
+
"Qwen OAuth authentication cancelled.": "Qwen OAuth\u8A8D\u8A3C\u304C\u30AD\u30E3\u30F3\u30BB\u30EB\u3055\u308C\u307E\u3057\u305F",
|
|
295147
|
+
"Qwen OAuth Authentication": "Qwen OAuth\u8A8D\u8A3C",
|
|
295148
|
+
"Please visit this URL to authorize:": "\u8A8D\u8A3C\u3059\u308B\u306B\u306F\u4EE5\u4E0B\u306EURL\u306B\u30A2\u30AF\u30BB\u30B9\u3057\u3066\u304F\u3060\u3055\u3044:",
|
|
295149
|
+
"Or scan the QR code below:": "\u307E\u305F\u306F\u4EE5\u4E0B\u306EQR\u30B3\u30FC\u30C9\u3092\u30B9\u30AD\u30E3\u30F3:",
|
|
295150
|
+
"Waiting for authorization": "\u8A8D\u8A3C\u3092\u5F85\u3063\u3066\u3044\u307E\u3059",
|
|
295151
|
+
"Time remaining:": "\u6B8B\u308A\u6642\u9593:",
|
|
295152
|
+
"(Press ESC or CTRL+C to cancel)": "(ESC \u307E\u305F\u306F CTRL+C \u3067\u30AD\u30E3\u30F3\u30BB\u30EB)",
|
|
295153
|
+
"Qwen OAuth Authentication Timeout": "Qwen OAuth\u8A8D\u8A3C\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8",
|
|
295154
|
+
"OAuth token expired (over {{seconds}} seconds). Please select authentication method again.": "OAuth\u30C8\u30FC\u30AF\u30F3\u304C\u671F\u9650\u5207\u308C\u3067\u3059({{seconds}}\u79D2\u4EE5\u4E0A)\u3002\u8A8D\u8A3C\u65B9\u6CD5\u3092\u518D\u5EA6\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
295155
|
+
"Press any key to return to authentication type selection.": "\u8A8D\u8A3C\u30BF\u30A4\u30D7\u9078\u629E\u306B\u623B\u308B\u306B\u306F\u4EFB\u610F\u306E\u30AD\u30FC\u3092\u62BC\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
295156
|
+
"Waiting for Qwen OAuth authentication...": "Qwen OAuth\u8A8D\u8A3C\u3092\u5F85\u3063\u3066\u3044\u307E\u3059...",
|
|
295157
|
+
"Note: Your existing API key in settings.json will not be cleared when using Qwen OAuth. You can switch back to OpenAI authentication later if needed.": "\u6CE8: Qwen OAuth\u3092\u4F7F\u7528\u3057\u3066\u3082\u3001settings.json\u5185\u306E\u65E2\u5B58\u306EAPI\u30AD\u30FC\u306F\u30AF\u30EA\u30A2\u3055\u308C\u307E\u305B\u3093\u3002\u5FC5\u8981\u306B\u5FDC\u3058\u3066\u5F8C\u3067OpenAI\u8A8D\u8A3C\u306B\u5207\u308A\u66FF\u3048\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059",
|
|
295158
|
+
"Authentication timed out. Please try again.": "\u8A8D\u8A3C\u304C\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8\u3057\u307E\u3057\u305F\u3002\u518D\u5EA6\u304A\u8A66\u3057\u304F\u3060\u3055\u3044",
|
|
295159
|
+
"Waiting for auth... (Press ESC or CTRL+C to cancel)": "\u8A8D\u8A3C\u3092\u5F85\u3063\u3066\u3044\u307E\u3059... (ESC \u307E\u305F\u306F CTRL+C \u3067\u30AD\u30E3\u30F3\u30BB\u30EB)",
|
|
295160
|
+
"Failed to authenticate. Message: {{message}}": "\u8A8D\u8A3C\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002\u30E1\u30C3\u30BB\u30FC\u30B8: {{message}}",
|
|
295161
|
+
"Authenticated successfully with {{authType}} credentials.": "{{authType}} \u8A8D\u8A3C\u60C5\u5831\u3067\u6B63\u5E38\u306B\u8A8D\u8A3C\u3055\u308C\u307E\u3057\u305F",
|
|
295162
|
+
'Invalid QWEN_DEFAULT_AUTH_TYPE value: "{{value}}". Valid values are: {{validValues}}': '\u7121\u52B9\u306A QWEN_DEFAULT_AUTH_TYPE \u5024: "{{value}}"\u3002\u6709\u52B9\u306A\u5024: {{validValues}}',
|
|
295163
|
+
"OpenAI Configuration Required": "OpenAI\u8A2D\u5B9A\u304C\u5FC5\u8981\u3067\u3059",
|
|
295164
|
+
"Please enter your OpenAI configuration. You can get an API key from": "OpenAI\u8A2D\u5B9A\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002API\u30AD\u30FC\u306F\u4EE5\u4E0B\u304B\u3089\u53D6\u5F97\u3067\u304D\u307E\u3059",
|
|
295165
|
+
"API Key:": "API\u30AD\u30FC:",
|
|
295166
|
+
"Invalid credentials: {{errorMessage}}": "\u7121\u52B9\u306A\u8A8D\u8A3C\u60C5\u5831: {{errorMessage}}",
|
|
295167
|
+
"Failed to validate credentials": "\u8A8D\u8A3C\u60C5\u5831\u306E\u691C\u8A3C\u306B\u5931\u6557\u3057\u307E\u3057\u305F",
|
|
295168
|
+
"Press Enter to continue, Tab/\u2191\u2193 to navigate, Esc to cancel": "Enter \u3067\u7D9A\u884C\u3001Tab/\u2191\u2193 \u3067\u79FB\u52D5\u3001Esc \u3067\u30AD\u30E3\u30F3\u30BB\u30EB",
|
|
295169
|
+
// Dialogs - Model
|
|
295170
|
+
"Select Model": "\u30E2\u30C7\u30EB\u3092\u9078\u629E",
|
|
295171
|
+
"(Press Esc to close)": "(Esc \u3067\u9589\u3058\u308B)",
|
|
295172
|
+
"The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)": "Alibaba Cloud ModelStudio\u306E\u6700\u65B0Qwen Coder\u30E2\u30C7\u30EB(\u30D0\u30FC\u30B8\u30E7\u30F3: qwen3-coder-plus-2025-09-23)",
|
|
295173
|
+
"The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)": "Alibaba Cloud ModelStudio\u306E\u6700\u65B0Qwen Vision\u30E2\u30C7\u30EB(\u30D0\u30FC\u30B8\u30E7\u30F3: qwen3-vl-plus-2025-09-23)",
|
|
295174
|
+
// Dialogs - Permissions
|
|
295175
|
+
"Manage folder trust settings": "\u30D5\u30A9\u30EB\u30C0\u4FE1\u983C\u8A2D\u5B9A\u3092\u7BA1\u7406",
|
|
295176
|
+
// Status Bar
|
|
295177
|
+
"Using:": "\u4F7F\u7528\u4E2D:",
|
|
295178
|
+
"{{count}} open file": "{{count}} \u500B\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u3044\u3066\u3044\u307E\u3059",
|
|
295179
|
+
"{{count}} open files": "{{count}} \u500B\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u3044\u3066\u3044\u307E\u3059",
|
|
295180
|
+
"(ctrl+g to view)": "(Ctrl+G \u3067\u8868\u793A)",
|
|
295181
|
+
"{{count}} {{name}} file": "{{count}} {{name}} \u30D5\u30A1\u30A4\u30EB",
|
|
295182
|
+
"{{count}} {{name}} files": "{{count}} {{name}} \u30D5\u30A1\u30A4\u30EB",
|
|
295183
|
+
"{{count}} MCP server": "{{count}} MCP\u30B5\u30FC\u30D0\u30FC",
|
|
295184
|
+
"{{count}} MCP servers": "{{count}} MCP\u30B5\u30FC\u30D0\u30FC",
|
|
295185
|
+
"{{count}} Blocked": "{{count}} \u30D6\u30ED\u30C3\u30AF",
|
|
295186
|
+
"(ctrl+t to view)": "(Ctrl+T \u3067\u8868\u793A)",
|
|
295187
|
+
"(ctrl+t to toggle)": "(Ctrl+T \u3067\u5207\u308A\u66FF\u3048)",
|
|
295188
|
+
"Press Ctrl+C again to exit.": "Ctrl+C \u3092\u3082\u3046\u4E00\u5EA6\u62BC\u3059\u3068\u7D42\u4E86\u3057\u307E\u3059",
|
|
295189
|
+
"Press Ctrl+D again to exit.": "Ctrl+D \u3092\u3082\u3046\u4E00\u5EA6\u62BC\u3059\u3068\u7D42\u4E86\u3057\u307E\u3059",
|
|
295190
|
+
"Press Esc again to clear.": "Esc \u3092\u3082\u3046\u4E00\u5EA6\u62BC\u3059\u3068\u30AF\u30EA\u30A2\u3057\u307E\u3059",
|
|
295191
|
+
// MCP Status
|
|
295192
|
+
"Please view MCP documentation in your browser:": "\u30D6\u30E9\u30A6\u30B6\u3067MCP\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044:",
|
|
295193
|
+
"or use the cli /docs command": "\u307E\u305F\u306F CLI \u306E /docs \u30B3\u30DE\u30F3\u30C9\u3092\u4F7F\u7528",
|
|
295194
|
+
"\u23F3 MCP servers are starting up ({{count}} initializing)...": "\u23F3 MCP\u30B5\u30FC\u30D0\u30FC\u3092\u8D77\u52D5\u4E2D({{count}} \u521D\u671F\u5316\u4E2D)...",
|
|
295195
|
+
"Note: First startup may take longer. Tool availability will update automatically.": "\u6CE8: \u521D\u56DE\u8D77\u52D5\u306B\u306F\u6642\u9593\u304C\u304B\u304B\u308B\u5834\u5408\u304C\u3042\u308A\u307E\u3059\u3002\u30C4\u30FC\u30EB\u306E\u5229\u7528\u53EF\u80FD\u72B6\u6CC1\u306F\u81EA\u52D5\u7684\u306B\u66F4\u65B0\u3055\u308C\u307E\u3059",
|
|
295196
|
+
"Starting... (first startup may take longer)": "\u8D77\u52D5\u4E2D...(\u521D\u56DE\u8D77\u52D5\u306B\u306F\u6642\u9593\u304C\u304B\u304B\u308B\u5834\u5408\u304C\u3042\u308A\u307E\u3059)",
|
|
295197
|
+
"{{count}} prompt": "{{count}} \u30D7\u30ED\u30F3\u30D7\u30C8",
|
|
295198
|
+
"{{count}} prompts": "{{count}} \u30D7\u30ED\u30F3\u30D7\u30C8",
|
|
295199
|
+
"(from {{extensionName}})": "({{extensionName}} \u304B\u3089)",
|
|
295200
|
+
OAuth: "OAuth",
|
|
295201
|
+
"OAuth expired": "OAuth \u671F\u9650\u5207\u308C",
|
|
295202
|
+
"OAuth not authenticated": "OAuth \u672A\u8A8D\u8A3C",
|
|
295203
|
+
"tools and prompts will appear when ready": "\u30C4\u30FC\u30EB\u3068\u30D7\u30ED\u30F3\u30D7\u30C8\u306F\u6E96\u5099\u5B8C\u4E86\u5F8C\u306B\u8868\u793A\u3055\u308C\u307E\u3059",
|
|
295204
|
+
"{{count}} tools cached": "{{count}} \u30C4\u30FC\u30EB(\u30AD\u30E3\u30C3\u30B7\u30E5\u6E08\u307F)",
|
|
295205
|
+
"Tools:": "\u30C4\u30FC\u30EB:",
|
|
295206
|
+
"Parameters:": "\u30D1\u30E9\u30E1\u30FC\u30BF:",
|
|
295207
|
+
"Prompts:": "\u30D7\u30ED\u30F3\u30D7\u30C8:",
|
|
295208
|
+
Blocked: "\u30D6\u30ED\u30C3\u30AF",
|
|
295209
|
+
"\u{1F4A1} Tips:": "\u{1F4A1} \u30D2\u30F3\u30C8:",
|
|
295210
|
+
Use: "\u4F7F\u7528",
|
|
295211
|
+
"to show server and tool descriptions": "\u30B5\u30FC\u30D0\u30FC\u3068\u30C4\u30FC\u30EB\u306E\u8AAC\u660E\u3092\u8868\u793A",
|
|
295212
|
+
"to show tool parameter schemas": "\u30C4\u30FC\u30EB\u30D1\u30E9\u30E1\u30FC\u30BF\u30B9\u30AD\u30FC\u30DE\u3092\u8868\u793A",
|
|
295213
|
+
"to hide descriptions": "\u8AAC\u660E\u3092\u975E\u8868\u793A",
|
|
295214
|
+
"to authenticate with OAuth-enabled servers": "OAuth\u5BFE\u5FDC\u30B5\u30FC\u30D0\u30FC\u3067\u8A8D\u8A3C",
|
|
295215
|
+
Press: "\u62BC\u3059",
|
|
295216
|
+
"to toggle tool descriptions on/off": "\u30C4\u30FC\u30EB\u8AAC\u660E\u306E\u8868\u793A/\u975E\u8868\u793A\u3092\u5207\u308A\u66FF\u3048",
|
|
295217
|
+
"Starting OAuth authentication for MCP server '{{name}}'...": "MCP\u30B5\u30FC\u30D0\u30FC '{{name}}' \u306EOAuth\u8A8D\u8A3C\u3092\u958B\u59CB\u4E2D...",
|
|
295218
|
+
// Startup Tips
|
|
295219
|
+
"Tips for getting started:": "\u59CB\u3081\u308B\u305F\u3081\u306E\u30D2\u30F3\u30C8:",
|
|
295220
|
+
"1. Ask questions, edit files, or run commands.": "1. \u8CEA\u554F\u3057\u305F\u308A\u3001\u30D5\u30A1\u30A4\u30EB\u3092\u7DE8\u96C6\u3057\u305F\u308A\u3001\u30B3\u30DE\u30F3\u30C9\u3092\u5B9F\u884C\u3057\u305F\u308A\u3067\u304D\u307E\u3059",
|
|
295221
|
+
"2. Be specific for the best results.": "2. \u5177\u4F53\u7684\u306B\u6307\u793A\u3059\u308B\u3068\u6700\u826F\u306E\u7D50\u679C\u304C\u5F97\u3089\u308C\u307E\u3059",
|
|
295222
|
+
"files to customize your interactions with Qwen Code.": "Qwen Code \u3068\u306E\u5BFE\u8A71\u3092\u30AB\u30B9\u30BF\u30DE\u30A4\u30BA\u3059\u308B\u305F\u3081\u306E\u30D5\u30A1\u30A4\u30EB",
|
|
295223
|
+
"for more information.": "\u8A73\u7D30\u60C5\u5831\u3092\u78BA\u8A8D\u3067\u304D\u307E\u3059",
|
|
295224
|
+
// Exit Screen / Stats
|
|
295225
|
+
"Agent powering down. Goodbye!": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u7D42\u4E86\u3057\u307E\u3059\u3002\u3055\u3088\u3046\u306A\u3089!",
|
|
295226
|
+
"To continue this session, run": "\u3053\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u3092\u7D9A\u884C\u3059\u308B\u306B\u306F\u3001\u6B21\u3092\u5B9F\u884C:",
|
|
295227
|
+
"Interaction Summary": "\u30A4\u30F3\u30BF\u30E9\u30AF\u30B7\u30E7\u30F3\u6982\u8981",
|
|
295228
|
+
"Session ID:": "\u30BB\u30C3\u30B7\u30E7\u30F3ID:",
|
|
295229
|
+
"Tool Calls:": "\u30C4\u30FC\u30EB\u547C\u3073\u51FA\u3057:",
|
|
295230
|
+
"Success Rate:": "\u6210\u529F\u7387:",
|
|
295231
|
+
"User Agreement:": "\u30E6\u30FC\u30B6\u30FC\u540C\u610F:",
|
|
295232
|
+
reviewed: "\u30EC\u30D3\u30E5\u30FC\u6E08\u307F",
|
|
295233
|
+
"Code Changes:": "\u30B3\u30FC\u30C9\u5909\u66F4:",
|
|
295234
|
+
Performance: "\u30D1\u30D5\u30A9\u30FC\u30DE\u30F3\u30B9",
|
|
295235
|
+
"Wall Time:": "\u7D4C\u904E\u6642\u9593:",
|
|
295236
|
+
"Agent Active:": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u7A3C\u50CD\u6642\u9593:",
|
|
295237
|
+
"API Time:": "API\u6642\u9593:",
|
|
295238
|
+
"Tool Time:": "\u30C4\u30FC\u30EB\u6642\u9593:",
|
|
295239
|
+
"Session Stats": "\u30BB\u30C3\u30B7\u30E7\u30F3\u7D71\u8A08",
|
|
295240
|
+
"Model Usage": "\u30E2\u30C7\u30EB\u4F7F\u7528\u91CF",
|
|
295241
|
+
Reqs: "\u30EA\u30AF\u30A8\u30B9\u30C8",
|
|
295242
|
+
"Input Tokens": "\u5165\u529B\u30C8\u30FC\u30AF\u30F3",
|
|
295243
|
+
"Output Tokens": "\u51FA\u529B\u30C8\u30FC\u30AF\u30F3",
|
|
295244
|
+
"Savings Highlight:": "\u7BC0\u7D04\u30CF\u30A4\u30E9\u30A4\u30C8:",
|
|
295245
|
+
"of input tokens were served from the cache, reducing costs.": "\u5165\u529B\u30C8\u30FC\u30AF\u30F3\u304C\u30AD\u30E3\u30C3\u30B7\u30E5\u304B\u3089\u63D0\u4F9B\u3055\u308C\u3001\u30B3\u30B9\u30C8\u3092\u524A\u6E1B\u3057\u307E\u3057\u305F",
|
|
295246
|
+
"Tip: For a full token breakdown, run `/stats model`.": "\u30D2\u30F3\u30C8: \u30C8\u30FC\u30AF\u30F3\u306E\u8A73\u7D30\u306A\u5185\u8A33\u306F `/stats model` \u3092\u5B9F\u884C\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
295247
|
+
"Model Stats For Nerds": "\u30DE\u30CB\u30A2\u5411\u3051\u30E2\u30C7\u30EB\u7D71\u8A08",
|
|
295248
|
+
"Tool Stats For Nerds": "\u30DE\u30CB\u30A2\u5411\u3051\u30C4\u30FC\u30EB\u7D71\u8A08",
|
|
295249
|
+
Metric: "\u30E1\u30C8\u30EA\u30C3\u30AF",
|
|
295250
|
+
API: "API",
|
|
295251
|
+
Requests: "\u30EA\u30AF\u30A8\u30B9\u30C8",
|
|
295252
|
+
Errors: "\u30A8\u30E9\u30FC",
|
|
295253
|
+
"Avg Latency": "\u5E73\u5747\u30EC\u30A4\u30C6\u30F3\u30B7",
|
|
295254
|
+
Tokens: "\u30C8\u30FC\u30AF\u30F3",
|
|
295255
|
+
Total: "\u5408\u8A08",
|
|
295256
|
+
Prompt: "\u30D7\u30ED\u30F3\u30D7\u30C8",
|
|
295257
|
+
Cached: "\u30AD\u30E3\u30C3\u30B7\u30E5",
|
|
295258
|
+
Thoughts: "\u601D\u8003",
|
|
295259
|
+
Tool: "\u30C4\u30FC\u30EB",
|
|
295260
|
+
Output: "\u51FA\u529B",
|
|
295261
|
+
"No API calls have been made in this session.": "\u3053\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u3067\u306FAPI\u547C\u3073\u51FA\u3057\u304C\u884C\u308F\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
295262
|
+
"Tool Name": "\u30C4\u30FC\u30EB\u540D",
|
|
295263
|
+
Calls: "\u547C\u3073\u51FA\u3057",
|
|
295264
|
+
"Success Rate": "\u6210\u529F\u7387",
|
|
295265
|
+
"Avg Duration": "\u5E73\u5747\u6642\u9593",
|
|
295266
|
+
"User Decision Summary": "\u30E6\u30FC\u30B6\u30FC\u6C7A\u5B9A\u30B5\u30DE\u30EA\u30FC",
|
|
295267
|
+
"Total Reviewed Suggestions:": "\u7DCF\u30EC\u30D3\u30E5\u30FC\u63D0\u6848\u6570:",
|
|
295268
|
+
" \xBB Accepted:": " \xBB \u627F\u8A8D:",
|
|
295269
|
+
" \xBB Rejected:": " \xBB \u5374\u4E0B:",
|
|
295270
|
+
" \xBB Modified:": " \xBB \u5909\u66F4:",
|
|
295271
|
+
" Overall Agreement Rate:": " \u5168\u4F53\u627F\u8A8D\u7387:",
|
|
295272
|
+
"No tool calls have been made in this session.": "\u3053\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u3067\u306F\u30C4\u30FC\u30EB\u547C\u3073\u51FA\u3057\u304C\u884C\u308F\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
295273
|
+
"Session start time is unavailable, cannot calculate stats.": "\u30BB\u30C3\u30B7\u30E7\u30F3\u958B\u59CB\u6642\u523B\u304C\u5229\u7528\u3067\u304D\u306A\u3044\u305F\u3081\u3001\u7D71\u8A08\u3092\u8A08\u7B97\u3067\u304D\u307E\u305B\u3093",
|
|
295274
|
+
// Loading
|
|
295275
|
+
"Waiting for user confirmation...": "\u30E6\u30FC\u30B6\u30FC\u306E\u78BA\u8A8D\u3092\u5F85\u3063\u3066\u3044\u307E\u3059...",
|
|
295276
|
+
"(esc to cancel, {{time}})": "(Esc \u3067\u30AD\u30E3\u30F3\u30BB\u30EB\u3001{{time}})",
|
|
295277
|
+
// Witty Loading Phrases
|
|
295278
|
+
WITTY_LOADING_PHRASES: [
|
|
295279
|
+
"\u904B\u4EFB\u305B\u3067\u691C\u7D22\u4E2D...",
|
|
295280
|
+
"\u4E2D\u306E\u4EBA\u304C\u30BF\u30A4\u30D4\u30F3\u30B0\u4E2D...",
|
|
295281
|
+
"\u30ED\u30B8\u30C3\u30AF\u3092\u6700\u9069\u5316\u4E2D...",
|
|
295282
|
+
"\u96FB\u5B50\u306E\u6570\u3092\u78BA\u8A8D\u4E2D...",
|
|
295283
|
+
"\u5B87\u5B99\u306E\u30D0\u30B0\u3092\u30C1\u30A7\u30C3\u30AF\u4E2D...",
|
|
295284
|
+
"\u5927\u91CF\u306E0\u30681\u3092\u30B3\u30F3\u30D1\u30A4\u30EB\u4E2D...",
|
|
295285
|
+
"HDD\u3068\u601D\u3044\u51FA\u3092\u30C7\u30D5\u30E9\u30B0\u4E2D...",
|
|
295286
|
+
"\u30D3\u30C3\u30C8\u3092\u3053\u3063\u305D\u308A\u5165\u308C\u66FF\u3048\u4E2D...",
|
|
295287
|
+
"\u30CB\u30E5\u30FC\u30ED\u30F3\u306E\u63A5\u7D9A\u3092\u518D\u69CB\u7BC9\u4E2D...",
|
|
295288
|
+
"\u3069\u3053\u304B\u306B\u884C\u3063\u305F\u30BB\u30DF\u30B3\u30ED\u30F3\u3092\u635C\u7D22\u4E2D...",
|
|
295289
|
+
"\u30D5\u30E9\u30C3\u30AF\u30B9\u30AD\u30E3\u30D1\u30B7\u30BF\u3092\u8ABF\u6574\u4E2D...",
|
|
295290
|
+
"\u30D5\u30A9\u30FC\u30B9\u3068\u4EA4\u611F\u4E2D...",
|
|
295291
|
+
"\u30A2\u30EB\u30B4\u30EA\u30BA\u30E0\u3092\u30C1\u30E5\u30FC\u30CB\u30F3\u30B0\u4E2D...",
|
|
295292
|
+
"\u767D\u3044\u30A6\u30B5\u30AE\u3092\u8FFD\u8DE1\u4E2D...",
|
|
295293
|
+
"\u30AB\u30BB\u30C3\u30C8\u30D5\u30FC\u30D5\u30FC\u4E2D...",
|
|
295294
|
+
"\u30ED\u30FC\u30C7\u30A3\u30F3\u30B0\u30E1\u30C3\u30BB\u30FC\u30B8\u3092\u8003\u3048\u4E2D...",
|
|
295295
|
+
"\u307B\u307C\u5B8C\u4E86...\u591A\u5206...",
|
|
295296
|
+
"\u6700\u65B0\u306E\u30DF\u30FC\u30E0\u306B\u3064\u3044\u3066\u8ABF\u67FB\u4E2D...",
|
|
295297
|
+
"\u3053\u306E\u8868\u793A\u3092\u6539\u5584\u3059\u308B\u30A2\u30A4\u30C7\u30A2\u3092\u601D\u7D22\u4E2D...",
|
|
295298
|
+
"\u3053\u306E\u554F\u984C\u3092\u8003\u3048\u4E2D...",
|
|
295299
|
+
"\u305D\u308C\u306F\u30D0\u30B0\u3067\u306A\u304F\u8AB0\u3082\u77E5\u3089\u306A\u3044\u65B0\u6A5F\u80FD\u3060\u3088",
|
|
295300
|
+
"\u30C0\u30A4\u30E4\u30EB\u30A2\u30C3\u30D7\u63A5\u7D9A\u97F3\u304C\u7D42\u308F\u308B\u306E\u3092\u5F85\u6A5F\u4E2D...",
|
|
295301
|
+
"\u30B3\u30FC\u30C9\u306B\u6CB9\u3092\u8FFD\u52A0\u4E2D...",
|
|
295302
|
+
// かなり意訳が入ってるもの
|
|
295303
|
+
"\u30A4\u30E4\u30DB\u30F3\u3092\u307B\u3069\u304D\u4E2D...",
|
|
295304
|
+
"\u30AB\u30D5\u30A7\u30A4\u30F3\u3092\u30B3\u30FC\u30C9\u306B\u5909\u63DB\u4E2D...",
|
|
295305
|
+
"\u5929\u52D5\u8AAC\u3092\u5730\u52D5\u8AAC\u306B\u66F8\u304D\u63DB\u3048\u4E2D...",
|
|
295306
|
+
"\u30D7\u30FC\u30EB\u3067\u6642\u8A08\u306E\u5B8C\u6210\u3092\u5F85\u6A5F\u4E2D...",
|
|
295307
|
+
"\u7B11\u6483\u7684\u306A\u56DE\u7B54\u3092\u7528\u610F\u4E2D...",
|
|
295308
|
+
"\u9069\u5207\u306A\u30DF\u30FC\u30E0\u3092\u8A18\u8FF0\u4E2D...",
|
|
295309
|
+
"A\u30DC\u30BF\u30F3\u3092\u62BC\u3057\u3066\u6B21\u3078...",
|
|
295310
|
+
"\u30B3\u30FC\u30C9\u306B\u30EA\u30C3\u30AF\u30ED\u30FC\u30EB\u3092\u4ED5\u8FBC\u307F\u4E2D...",
|
|
295311
|
+
"\u30D7\u30ED\u30B0\u30E9\u30DE\u30FC\u304C\u8CA7\u4E4F\u306A\u306E\u306F\u30AD\u30E3\u30C3\u30B7\u30E5\u3092\u4F7F\u3044\u3059\u304E\u308B\u304B\u3089...",
|
|
295312
|
+
"\u30D7\u30ED\u30B0\u30E9\u30DE\u30FC\u304C\u30C0\u30FC\u30AF\u30E2\u30FC\u30C9\u306A\u306E\u306F\u30D0\u30B0\u3092\u898B\u305F\u304F\u306A\u3044\u304B\u3089...",
|
|
295313
|
+
"\u30B3\u30FC\u30C9\u304C\u58CA\u308C\u305F?\u53E9\u3051\u3070\u6CBB\u308B\u3055",
|
|
295314
|
+
"USB\u306E\u5DEE\u3057\u8FBC\u307F\u306B\u6311\u6226\u4E2D..."
|
|
295315
|
+
]
|
|
295316
|
+
};
|
|
295317
|
+
}
|
|
295318
|
+
});
|
|
295319
|
+
|
|
295320
|
+
// packages/cli/src/i18n/locales/pt.js
|
|
295321
|
+
var pt_exports = {};
|
|
295322
|
+
__export(pt_exports, {
|
|
295323
|
+
default: () => pt_default
|
|
295324
|
+
});
|
|
295325
|
+
var pt_default;
|
|
295326
|
+
var init_pt = __esm({
|
|
295327
|
+
"packages/cli/src/i18n/locales/pt.js"() {
|
|
295328
|
+
"use strict";
|
|
295329
|
+
init_esbuild_shims();
|
|
295330
|
+
pt_default = {
|
|
295331
|
+
// ============================================================================
|
|
295332
|
+
// Help / UI Components
|
|
295333
|
+
// ============================================================================
|
|
295334
|
+
"Basics:": "No\xE7\xF5es b\xE1sicas:",
|
|
295335
|
+
"Add context": "Adicionar contexto",
|
|
295336
|
+
"Use {{symbol}} to specify files for context (e.g., {{example}}) to target specific files or folders.": "Use {{symbol}} para especificar arquivos para o contexto (ex: {{example}}) para atingir arquivos ou pastas espec\xEDficos.",
|
|
295337
|
+
"@": "@",
|
|
295338
|
+
"@src/myFile.ts": "@src/myFile.ts",
|
|
295339
|
+
"Shell mode": "Modo shell",
|
|
295340
|
+
"YOLO mode": "Modo YOLO",
|
|
295341
|
+
"plan mode": "modo planejamento",
|
|
295342
|
+
"auto-accept edits": "aceitar edi\xE7\xF5es automaticamente",
|
|
295343
|
+
"Accepting edits": "Aceitando edi\xE7\xF5es",
|
|
295344
|
+
"(shift + tab to cycle)": "(shift + tab para alternar)",
|
|
295345
|
+
"Execute shell commands via {{symbol}} (e.g., {{example1}}) or use natural language (e.g., {{example2}}).": "Execute comandos shell via {{symbol}} (ex: {{example1}}) ou use linguagem natural (ex: {{example2}}).",
|
|
295346
|
+
"!": "!",
|
|
295347
|
+
"!npm run start": "!npm run start",
|
|
295348
|
+
"start server": "iniciar servidor",
|
|
295349
|
+
"Commands:": "Comandos:",
|
|
295350
|
+
"shell command": "comando shell",
|
|
295351
|
+
"Model Context Protocol command (from external servers)": "Comando Model Context Protocol (de servidores externos)",
|
|
295352
|
+
"Keyboard Shortcuts:": "Atalhos de teclado:",
|
|
295353
|
+
"Toggle this help display": "Alternar exibi\xE7\xE3o desta ajuda",
|
|
295354
|
+
"Toggle shell mode": "Alternar modo shell",
|
|
295355
|
+
"Open command menu": "Abrir menu de comandos",
|
|
295356
|
+
"Add file context": "Adicionar contexto de arquivo",
|
|
295357
|
+
"Accept suggestion / Autocomplete": "Aceitar sugest\xE3o / Autocompletar",
|
|
295358
|
+
"Reverse search history": "Pesquisa reversa no hist\xF3rico",
|
|
295359
|
+
"Press ? again to close": "Pressione ? novamente para fechar",
|
|
295360
|
+
// Keyboard shortcuts panel descriptions
|
|
295361
|
+
"for shell mode": "para modo shell",
|
|
295362
|
+
"for commands": "para comandos",
|
|
295363
|
+
"for file paths": "para caminhos de arquivo",
|
|
295364
|
+
"to clear input": "para limpar entrada",
|
|
295365
|
+
"to cycle approvals": "para alternar aprova\xE7\xF5es",
|
|
295366
|
+
"to quit": "para sair",
|
|
295367
|
+
"for newline": "para nova linha",
|
|
295368
|
+
"to clear screen": "para limpar a tela",
|
|
295369
|
+
"to search history": "para pesquisar no hist\xF3rico",
|
|
295370
|
+
"to paste images": "para colar imagens",
|
|
295371
|
+
"for external editor": "para editor externo",
|
|
295372
|
+
"Jump through words in the input": "Pular palavras na entrada",
|
|
295373
|
+
"Close dialogs, cancel requests, or quit application": "Fechar di\xE1logos, cancelar solicita\xE7\xF5es ou sair do aplicativo",
|
|
295374
|
+
"New line": "Nova linha",
|
|
295375
|
+
"New line (Alt+Enter works for certain linux distros)": "Nova linha (Alt+Enter funciona em certas distros linux)",
|
|
295376
|
+
"Clear the screen": "Limpar a tela",
|
|
295377
|
+
"Open input in external editor": "Abrir entrada no editor externo",
|
|
295378
|
+
"Send message": "Enviar mensagem",
|
|
295379
|
+
"Initializing...": "Inicializando...",
|
|
295380
|
+
"Connecting to MCP servers... ({{connected}}/{{total}})": "Conectando aos servidores MCP... ({{connected}}/{{total}})",
|
|
295381
|
+
"Type your message or @path/to/file": "Digite sua mensagem ou @caminho/do/arquivo",
|
|
295382
|
+
"? for shortcuts": "? para atalhos",
|
|
295383
|
+
"Press 'i' for INSERT mode and 'Esc' for NORMAL mode.": "Pressione 'i' para modo INSER\xC7\xC3O e 'Esc' para modo NORMAL.",
|
|
295384
|
+
"Cancel operation / Clear input (double press)": "Cancelar opera\xE7\xE3o / Limpar entrada (pressionar duas vezes)",
|
|
295385
|
+
"Cycle approval modes": "Alternar modos de aprova\xE7\xE3o",
|
|
295386
|
+
"Cycle through your prompt history": "Alternar hist\xF3rico de prompts",
|
|
295387
|
+
"For a full list of shortcuts, see {{docPath}}": "Para uma lista completa de atalhos, consulte {{docPath}}",
|
|
295388
|
+
"docs/keyboard-shortcuts.md": "docs/keyboard-shortcuts.md",
|
|
295389
|
+
"for help on Qwen Code": "para ajuda sobre o Qwen Code",
|
|
295390
|
+
"show version info": "mostrar informa\xE7\xF5es de vers\xE3o",
|
|
295391
|
+
"submit a bug report": "enviar um relat\xF3rio de erro",
|
|
295392
|
+
"About Qwen Code": "Sobre o Qwen Code",
|
|
295393
|
+
Status: "Status",
|
|
295394
|
+
// ============================================================================
|
|
295395
|
+
// System Information Fields
|
|
295396
|
+
// ============================================================================
|
|
295397
|
+
"Qwen Code": "Qwen Code",
|
|
295398
|
+
Runtime: "Runtime",
|
|
295399
|
+
OS: "SO",
|
|
295400
|
+
Auth: "Autentica\xE7\xE3o",
|
|
295401
|
+
"CLI Version": "Vers\xE3o da CLI",
|
|
295402
|
+
"Git Commit": "Commit do Git",
|
|
295403
|
+
Model: "Modelo",
|
|
295404
|
+
Sandbox: "Sandbox",
|
|
295405
|
+
"OS Platform": "Plataforma do SO",
|
|
295406
|
+
"OS Arch": "Arquitetura do SO",
|
|
295407
|
+
"OS Release": "Vers\xE3o do SO",
|
|
295408
|
+
"Node.js Version": "Vers\xE3o do Node.js",
|
|
295409
|
+
"NPM Version": "Vers\xE3o do NPM",
|
|
295410
|
+
"Session ID": "ID da Sess\xE3o",
|
|
295411
|
+
"Auth Method": "M\xE9todo de Autentica\xE7\xE3o",
|
|
295412
|
+
"Base URL": "URL Base",
|
|
295413
|
+
Proxy: "Proxy",
|
|
295414
|
+
"Memory Usage": "Uso de Mem\xF3ria",
|
|
295415
|
+
"IDE Client": "Cliente IDE",
|
|
295416
|
+
// ============================================================================
|
|
295417
|
+
// Commands - General
|
|
295418
|
+
// ============================================================================
|
|
295419
|
+
"Analyzes the project and creates a tailored QWEN.md file.": "Analisa o projeto e cria um arquivo QWEN.md personalizado.",
|
|
295420
|
+
"list available Qwen Code tools. Usage: /tools [desc]": "listar ferramentas Qwen Code dispon\xEDveis. Uso: /tools [desc]",
|
|
295421
|
+
"Available Qwen Code CLI tools:": "Ferramentas CLI do Qwen Code dispon\xEDveis:",
|
|
295422
|
+
"No tools available": "Nenhuma ferramenta dispon\xEDvel",
|
|
295423
|
+
"View or change the approval mode for tool usage": "Ver ou alterar o modo de aprova\xE7\xE3o para uso de ferramentas",
|
|
295424
|
+
'Invalid approval mode "{{arg}}". Valid modes: {{modes}}': 'Modo de aprova\xE7\xE3o inv\xE1lido "{{arg}}". Modos v\xE1lidos: {{modes}}',
|
|
295425
|
+
'Approval mode set to "{{mode}}"': 'Modo de aprova\xE7\xE3o definido como "{{mode}}"',
|
|
295426
|
+
"View or change the language setting": "Ver ou alterar a configura\xE7\xE3o de idioma",
|
|
295427
|
+
"change the theme": "alterar o tema",
|
|
295428
|
+
"Select Theme": "Selecionar Tema",
|
|
295429
|
+
Preview: "Visualizar",
|
|
295430
|
+
"(Use Enter to select, Tab to configure scope)": "(Use Enter para selecionar, Tab para configurar o escopo)",
|
|
295431
|
+
"(Use Enter to apply scope, Tab to go back)": "(Use Enter para aplicar o escopo, Tab para voltar)",
|
|
295432
|
+
"Theme configuration unavailable due to NO_COLOR env variable.": "Configura\xE7\xE3o de tema indispon\xEDvel devido \xE0 vari\xE1vel de ambiente NO_COLOR.",
|
|
295433
|
+
'Theme "{{themeName}}" not found.': 'Tema "{{themeName}}" n\xE3o encontrado.',
|
|
295434
|
+
'Theme "{{themeName}}" not found in selected scope.': 'Tema "{{themeName}}" n\xE3o encontrado no escopo selecionado.',
|
|
295435
|
+
"Clear conversation history and free up context": "Limpar hist\xF3rico de conversa e liberar contexto",
|
|
295436
|
+
"Compresses the context by replacing it with a summary.": "Comprime o contexto substituindo-o por um resumo.",
|
|
295437
|
+
"open full Qwen Code documentation in your browser": "abrir documenta\xE7\xE3o completa do Qwen Code no seu navegador",
|
|
295438
|
+
"Configuration not available.": "Configura\xE7\xE3o n\xE3o dispon\xEDvel.",
|
|
295439
|
+
"change the auth method": "alterar o m\xE9todo de autentica\xE7\xE3o",
|
|
295440
|
+
"Copy the last result or code snippet to clipboard": "Copiar o \xFAltimo resultado ou trecho de c\xF3digo para a \xE1rea de transfer\xEAncia",
|
|
295441
|
+
// ============================================================================
|
|
295442
|
+
// Commands - Agents
|
|
295443
|
+
// ============================================================================
|
|
295444
|
+
"Manage subagents for specialized task delegation.": "Gerenciar subagentes para delega\xE7\xE3o de tarefas especializadas.",
|
|
295445
|
+
"Manage existing subagents (view, edit, delete).": "Gerenciar subagentes existentes (ver, editar, excluir).",
|
|
295446
|
+
"Create a new subagent with guided setup.": "Criar um novo subagente com configura\xE7\xE3o guiada.",
|
|
295447
|
+
// ============================================================================
|
|
295448
|
+
// Agents - Management Dialog
|
|
295449
|
+
// ============================================================================
|
|
295450
|
+
Agents: "Agentes",
|
|
295451
|
+
"Choose Action": "Escolher A\xE7\xE3o",
|
|
295452
|
+
"Edit {{name}}": "Editar {{name}}",
|
|
295453
|
+
"Edit Tools: {{name}}": "Editar Ferramentas: {{name}}",
|
|
295454
|
+
"Edit Color: {{name}}": "Editar Cor: {{name}}",
|
|
295455
|
+
"Delete {{name}}": "Excluir {{name}}",
|
|
295456
|
+
"Unknown Step": "Etapa Desconhecida",
|
|
295457
|
+
"Esc to close": "Esc para fechar",
|
|
295458
|
+
"Enter to select, \u2191\u2193 to navigate, Esc to close": "Enter para selecionar, \u2191\u2193 para navegar, Esc para fechar",
|
|
295459
|
+
"Esc to go back": "Esc para voltar",
|
|
295460
|
+
"Enter to confirm, Esc to cancel": "Enter para confirmar, Esc para cancelar",
|
|
295461
|
+
"Enter to select, \u2191\u2193 to navigate, Esc to go back": "Enter para selecionar, \u2191\u2193 para navegar, Esc para voltar",
|
|
295462
|
+
"Invalid step: {{step}}": "Etapa inv\xE1lida: {{step}}",
|
|
295463
|
+
"No subagents found.": "Nenhum subagente encontrado.",
|
|
295464
|
+
"Use '/agents create' to create your first subagent.": "Use '/agents create' para criar seu primeiro subagente.",
|
|
295465
|
+
"(built-in)": "(integrado)",
|
|
295466
|
+
"(overridden by project level agent)": "(substitu\xEDdo por agente de n\xEDvel de projeto)",
|
|
295467
|
+
"Project Level ({{path}})": "N\xEDvel de Projeto ({{path}})",
|
|
295468
|
+
"User Level ({{path}})": "N\xEDvel de Usu\xE1rio ({{path}})",
|
|
295469
|
+
"Built-in Agents": "Agentes Integrados",
|
|
295470
|
+
"Extension Agents": "Agentes de Extens\xE3o",
|
|
295471
|
+
"Using: {{count}} agents": "Usando: {{count}} agentes",
|
|
295472
|
+
"View Agent": "Ver Agente",
|
|
295473
|
+
"Edit Agent": "Editar Agente",
|
|
295474
|
+
"Delete Agent": "Excluir Agente",
|
|
295475
|
+
Back: "Voltar",
|
|
295476
|
+
"No agent selected": "Nenhum agente selecionado",
|
|
295477
|
+
"File Path: ": "Caminho do Arquivo: ",
|
|
295478
|
+
"Tools: ": "Ferramentas: ",
|
|
295479
|
+
"Color: ": "Cor: ",
|
|
295480
|
+
"Description:": "Descri\xE7\xE3o:",
|
|
295481
|
+
"System Prompt:": "Prompt do Sistema:",
|
|
295482
|
+
"Open in editor": "Abrir no editor",
|
|
295483
|
+
"Edit tools": "Editar ferramentas",
|
|
295484
|
+
"Edit color": "Editar cor",
|
|
295485
|
+
"\u274C Error:": "\u274C Erro:",
|
|
295486
|
+
'Are you sure you want to delete agent "{{name}}"?': 'Tem certeza que deseja excluir o agente "{{name}}"?',
|
|
295487
|
+
// ============================================================================
|
|
295488
|
+
// Agents - Creation Wizard
|
|
295489
|
+
// ============================================================================
|
|
295490
|
+
"Project Level (.qwen/agents/)": "N\xEDvel de Projeto (.qwen/agents/)",
|
|
295491
|
+
"User Level (~/.qwen/agents/)": "N\xEDvel de Usu\xE1rio (~/.qwen/agents/)",
|
|
295492
|
+
"\u2705 Subagent Created Successfully!": "\u2705 Subagente criado com sucesso!",
|
|
295493
|
+
'Subagent "{{name}}" has been saved to {{level}} level.': 'O subagente "{{name}}" foi salvo no n\xEDvel {{level}}.',
|
|
295494
|
+
"Name: ": "Nome: ",
|
|
295495
|
+
"Location: ": "Localiza\xE7\xE3o: ",
|
|
295496
|
+
"\u274C Error saving subagent:": "\u274C Erro ao salvar subagente:",
|
|
295497
|
+
"Warnings:": "Avisos:",
|
|
295498
|
+
'Name "{{name}}" already exists at {{level}} level - will overwrite existing subagent': 'O nome "{{name}}" j\xE1 existe no n\xEDvel {{level}} - o subagente existente ser\xE1 substitu\xEDdo',
|
|
295499
|
+
'Name "{{name}}" exists at user level - project level will take precedence': 'O nome "{{name}}" existe no n\xEDvel de usu\xE1rio - o n\xEDvel de projeto ter\xE1 preced\xEAncia',
|
|
295500
|
+
'Name "{{name}}" exists at project level - existing subagent will take precedence': 'O nome "{{name}}" existe no n\xEDvel de projeto - o subagente existente ter\xE1 preced\xEAncia',
|
|
295501
|
+
"Description is over {{length}} characters": "A descri\xE7\xE3o tem mais de {{length}} caracteres",
|
|
295502
|
+
"System prompt is over {{length}} characters": "O prompt do sistema tem mais de {{length}} caracteres",
|
|
295503
|
+
// ============================================================================
|
|
295504
|
+
// Agents - Creation Wizard Steps
|
|
295505
|
+
// ============================================================================
|
|
295506
|
+
"Step {{n}}: Choose Location": "Etapa {{n}}: Escolher Localiza\xE7\xE3o",
|
|
295507
|
+
"Step {{n}}: Choose Generation Method": "Etapa {{n}}: Escolher M\xE9todo de Gera\xE7\xE3o",
|
|
295508
|
+
"Generate with Qwen Code (Recommended)": "Gerar com Qwen Code (Recomendado)",
|
|
295509
|
+
"Manual Creation": "Cria\xE7\xE3o Manual",
|
|
295510
|
+
"Describe what this subagent should do and when it should be used. (Be comprehensive for best results)": "Descreva o que este subagente deve fazer e quando deve ser usado. (Seja abrangente para melhores resultados)",
|
|
295511
|
+
"e.g., Expert code reviewer that reviews code based on best practices...": "ex: Revisor de c\xF3digo especialista que revisa c\xF3digo com base em melhores pr\xE1ticas...",
|
|
295512
|
+
"Generating subagent configuration...": "Gerando configura\xE7\xE3o do subagente...",
|
|
295513
|
+
"Failed to generate subagent: {{error}}": "Falha ao gerar subagente: {{error}}",
|
|
295514
|
+
"Step {{n}}: Describe Your Subagent": "Etapa {{n}}: Descreva Seu Subagente",
|
|
295515
|
+
"Step {{n}}: Enter Subagent Name": "Etapa {{n}}: Digite o Nome do Subagente",
|
|
295516
|
+
"Step {{n}}: Enter System Prompt": "Etapa {{n}}: Digite o Prompt do Sistema",
|
|
295517
|
+
"Step {{n}}: Enter Description": "Etapa {{n}}: Digite a Descri\xE7\xE3o",
|
|
295518
|
+
// ============================================================================
|
|
295519
|
+
// Agents - Tool Selection
|
|
295520
|
+
// ============================================================================
|
|
295521
|
+
"Step {{n}}: Select Tools": "Etapa {{n}}: Selecionar Ferramentas",
|
|
295522
|
+
"All Tools (Default)": "Todas as Ferramentas (Padr\xE3o)",
|
|
295523
|
+
"All Tools": "Todas as Ferramentas",
|
|
295524
|
+
"Read-only Tools": "Ferramentas de Somente Leitura",
|
|
295525
|
+
"Read & Edit Tools": "Ferramentas de Leitura e Edi\xE7\xE3o",
|
|
295526
|
+
"Read & Edit & Execution Tools": "Ferramentas de Leitura, Edi\xE7\xE3o e Execu\xE7\xE3o",
|
|
295527
|
+
"All tools selected, including MCP tools": "Todas as ferramentas selecionadas, incluindo ferramentas MCP",
|
|
295528
|
+
"Selected tools:": "Ferramentas selecionadas:",
|
|
295529
|
+
"Read-only tools:": "Ferramentas de somente leitura:",
|
|
295530
|
+
"Edit tools:": "Ferramentas de edi\xE7\xE3o:",
|
|
295531
|
+
"Execution tools:": "Ferramentas de execu\xE7\xE3o:",
|
|
295532
|
+
"Step {{n}}: Choose Background Color": "Etapa {{n}}: Escolher Cor de Fundo",
|
|
295533
|
+
"Step {{n}}: Confirm and Save": "Etapa {{n}}: Confirmar e Salvar",
|
|
295534
|
+
// ============================================================================
|
|
295535
|
+
// Agents - Navigation & Instructions
|
|
295536
|
+
// ============================================================================
|
|
295537
|
+
"Esc to cancel": "Esc para cancelar",
|
|
295538
|
+
"Press Enter to save, e to save and edit, Esc to go back": "Pressione Enter para salvar, e para salvar e editar, Esc para voltar",
|
|
295539
|
+
"Press Enter to continue, {{navigation}}Esc to {{action}}": "Pressione Enter para continuar, {{navigation}}Esc para {{action}}",
|
|
295540
|
+
cancel: "cancelar",
|
|
295541
|
+
"go back": "voltar",
|
|
295542
|
+
"\u2191\u2193 to navigate, ": "\u2191\u2193 para navegar, ",
|
|
295543
|
+
"Enter a clear, unique name for this subagent.": "Digite um nome claro e \xFAnico para este subagente.",
|
|
295544
|
+
"e.g., Code Reviewer": "ex: Revisor de C\xF3digo",
|
|
295545
|
+
"Name cannot be empty.": "O nome n\xE3o pode estar vazio.",
|
|
295546
|
+
"Write the system prompt that defines this subagent's behavior. Be comprehensive for best results.": "Escreva o prompt do sistema que define o comportamento deste subagente. Seja abrangente para melhores resultados.",
|
|
295547
|
+
"e.g., You are an expert code reviewer...": "ex: Voc\xEA \xE9 um revisor de c\xF3digo especialista...",
|
|
295548
|
+
"System prompt cannot be empty.": "O prompt do sistema n\xE3o pode estar vazio.",
|
|
295549
|
+
"Describe when and how this subagent should be used.": "Descreva quando e como este subagente deve ser usado.",
|
|
295550
|
+
"e.g., Reviews code for best practices and potential bugs.": "ex: Revisa o c\xF3digo em busca de melhores pr\xE1ticas e erros potenciais.",
|
|
295551
|
+
"Description cannot be empty.": "A descri\xE7\xE3o n\xE3o pode estar vazia.",
|
|
295552
|
+
"Failed to launch editor: {{error}}": "Falha ao iniciar editor: {{error}}",
|
|
295553
|
+
"Failed to save and edit subagent: {{error}}": "Falha ao salvar e editar subagente: {{error}}",
|
|
295554
|
+
// ============================================================================
|
|
295555
|
+
// Commands - General (continued)
|
|
295556
|
+
// ============================================================================
|
|
295557
|
+
"View and edit Qwen Code settings": "Ver e editar configura\xE7\xF5es do Qwen Code",
|
|
295558
|
+
Settings: "Configura\xE7\xF5es",
|
|
295559
|
+
"To see changes, Qwen Code must be restarted. Press r to exit and apply changes now.": "Para ver as altera\xE7\xF5es, o Qwen Code deve ser reiniciado. Pressione r para sair e aplicar as altera\xE7\xF5es agora.",
|
|
295560
|
+
'The command "/{{command}}" is not supported in non-interactive mode.': 'O comando "/{{command}}" n\xE3o \xE9 suportado no modo n\xE3o interativo.',
|
|
295561
|
+
// ============================================================================
|
|
295562
|
+
// Settings Labels
|
|
295563
|
+
// ============================================================================
|
|
295564
|
+
"Vim Mode": "Modo Vim",
|
|
295565
|
+
"Disable Auto Update": "Desativar Atualiza\xE7\xE3o Autom\xE1tica",
|
|
295566
|
+
"Attribution: commit": "Atribui\xE7\xE3o: commit",
|
|
295567
|
+
"Terminal Bell Notification": "Notifica\xE7\xE3o Sonora do Terminal",
|
|
295568
|
+
"Enable Usage Statistics": "Ativar Estat\xEDsticas de Uso",
|
|
295569
|
+
Theme: "Tema",
|
|
295570
|
+
"Preferred Editor": "Editor Preferido",
|
|
295571
|
+
"Auto-connect to IDE": "Conex\xE3o Autom\xE1tica com IDE",
|
|
295572
|
+
"Enable Prompt Completion": "Ativar Autocompletar de Prompts",
|
|
295573
|
+
"Debug Keystroke Logging": "Log de Depura\xE7\xE3o de Teclas",
|
|
295574
|
+
"Language: UI": "Idioma: Interface",
|
|
295575
|
+
"Language: Model": "Idioma: Modelo",
|
|
295576
|
+
"Output Format": "Formato de Sa\xEDda",
|
|
295577
|
+
"Hide Window Title": "Ocultar T\xEDtulo da Janela",
|
|
295578
|
+
"Show Status in Title": "Mostrar Status no T\xEDtulo",
|
|
295579
|
+
"Hide Tips": "Ocultar Dicas",
|
|
295580
|
+
"Show Line Numbers in Code": "Mostrar N\xFAmeros de Linhas no C\xF3digo",
|
|
295581
|
+
"Show Citations": "Mostrar Cita\xE7\xF5es",
|
|
295582
|
+
"Custom Witty Phrases": "Frases de Efeito Personalizadas",
|
|
295583
|
+
"Show Welcome Back Dialog": "Mostrar Di\xE1logo de Bem-vindo de Volta",
|
|
295584
|
+
"Enable User Feedback": "Ativar Feedback do Usu\xE1rio",
|
|
295585
|
+
"How is Qwen doing this session? (optional)": "Como o Qwen est\xE1 se saindo nesta sess\xE3o? (opcional)",
|
|
295586
|
+
Bad: "Ruim",
|
|
295587
|
+
Fine: "Bom",
|
|
295588
|
+
Good: "\xD3timo",
|
|
295589
|
+
Dismiss: "Ignorar",
|
|
295590
|
+
"Not Sure Yet": "N\xE3o tenho certeza ainda",
|
|
295591
|
+
"Any other key": "Qualquer outra tecla",
|
|
295592
|
+
"Disable Loading Phrases": "Desativar Frases de Carregamento",
|
|
295593
|
+
"Screen Reader Mode": "Modo de Leitor de Tela",
|
|
295594
|
+
"IDE Mode": "Modo IDE",
|
|
295595
|
+
"Max Session Turns": "M\xE1ximo de Turnos da Sess\xE3o",
|
|
295596
|
+
"Skip Next Speaker Check": "Pular Verifica\xE7\xE3o do Pr\xF3ximo Falante",
|
|
295597
|
+
"Skip Loop Detection": "Pular Detec\xE7\xE3o de Loop",
|
|
295598
|
+
"Skip Startup Context": "Pular Contexto de Inicializa\xE7\xE3o",
|
|
295599
|
+
"Enable OpenAI Logging": "Ativar Log do OpenAI",
|
|
295600
|
+
"OpenAI Logging Directory": "Diret\xF3rio de Log do OpenAI",
|
|
295601
|
+
Timeout: "Tempo Limite",
|
|
295602
|
+
"Max Retries": "M\xE1ximo de Tentativas",
|
|
295603
|
+
"Disable Cache Control": "Desativar Controle de Cache",
|
|
295604
|
+
"Memory Discovery Max Dirs": "Descoberta de Mem\xF3ria M\xE1x. Diretorios",
|
|
295605
|
+
"Load Memory From Include Directories": "Carregar Mem\xF3ria de Diret\xF3rios Inclu\xEDdos",
|
|
295606
|
+
"Respect .gitignore": "Respeitar .gitignore",
|
|
295607
|
+
"Respect .qwenignore": "Respeitar .qwenignore",
|
|
295608
|
+
"Enable Recursive File Search": "Ativar Pesquisa Recursiva de Arquivos",
|
|
295609
|
+
"Disable Fuzzy Search": "Desativar Pesquisa Difusa",
|
|
295610
|
+
"Interactive Shell (PTY)": "Shell Interativo (PTY)",
|
|
295611
|
+
"Show Color": "Mostrar Cores",
|
|
295612
|
+
"Auto Accept": "Aceitar Automaticamente",
|
|
295613
|
+
"Use Ripgrep": "Usar Ripgrep",
|
|
295614
|
+
"Use Builtin Ripgrep": "Usar Ripgrep Integrado",
|
|
295615
|
+
"Enable Tool Output Truncation": "Ativar Truncamento de Sa\xEDda de Ferramenta",
|
|
295616
|
+
"Tool Output Truncation Threshold": "Limite de Truncamento de Sa\xEDda de Ferramenta",
|
|
295617
|
+
"Tool Output Truncation Lines": "Linhas de Truncamento de Sa\xEDda de Ferramenta",
|
|
295618
|
+
"Folder Trust": "Confian\xE7a de Pasta",
|
|
295619
|
+
"Vision Model Preview": "Visualiza\xE7\xE3o de Modelo de Vis\xE3o",
|
|
295620
|
+
"Tool Schema Compliance": "Conformidade de Esquema de Ferramenta",
|
|
295621
|
+
"Experimental: Skills": "Experimental: Habilidades",
|
|
295622
|
+
// Settings enum options
|
|
295623
|
+
"Auto (detect from system)": "Autom\xE1tico (detectar do sistema)",
|
|
295624
|
+
Text: "Texto",
|
|
295625
|
+
JSON: "JSON",
|
|
295626
|
+
Plan: "Planejamento",
|
|
295627
|
+
Default: "Padr\xE3o",
|
|
295628
|
+
"Auto Edit": "Edi\xE7\xE3o Autom\xE1tica",
|
|
295629
|
+
YOLO: "YOLO",
|
|
295630
|
+
"toggle vim mode on/off": "alternar modo vim ligado/desligado",
|
|
295631
|
+
"check session stats. Usage: /stats [model|tools]": "verificar estat\xEDsticas da sess\xE3o. Uso: /stats [model|tools]",
|
|
295632
|
+
"Show model-specific usage statistics.": "Mostrar estat\xEDsticas de uso espec\xEDficas do modelo.",
|
|
295633
|
+
"Show tool-specific usage statistics.": "Mostrar estat\xEDsticas de uso espec\xEDficas da ferramenta.",
|
|
295634
|
+
"exit the cli": "sair da cli",
|
|
295635
|
+
"list configured MCP servers and tools, or authenticate with OAuth-enabled servers": "listar servidores e ferramentas MCP configurados, ou autenticar com servidores habilitados para OAuth",
|
|
295636
|
+
"Manage workspace directories": "Gerenciar diret\xF3rios do workspace",
|
|
295637
|
+
"Add directories to the workspace. Use comma to separate multiple paths": "Adicionar diret\xF3rios ao workspace. Use v\xEDrgula para separar v\xE1rios caminhos",
|
|
295638
|
+
"Show all directories in the workspace": "Mostrar todos os diret\xF3rios no workspace",
|
|
295639
|
+
"set external editor preference": "definir prefer\xEAncia de editor externo",
|
|
295640
|
+
"Select Editor": "Selecionar Editor",
|
|
295641
|
+
"Editor Preference": "Prefer\xEAncia de Editor",
|
|
295642
|
+
"These editors are currently supported. Please note that some editors cannot be used in sandbox mode.": "Estes editores s\xE3o suportados atualmente. Note que alguns editores n\xE3o podem ser usados no modo sandbox.",
|
|
295643
|
+
"Your preferred editor is:": "Seu editor preferido \xE9:",
|
|
295644
|
+
"Manage extensions": "Gerenciar extens\xF5es",
|
|
295645
|
+
"List active extensions": "Listar extens\xF5es ativas",
|
|
295646
|
+
"Update extensions. Usage: update <extension-names>|--all": "Atualizar extens\xF5es. Uso: update <nomes-das-extensoes>|--all",
|
|
295647
|
+
"Disable an extension": "Desativar uma extens\xE3o",
|
|
295648
|
+
"Enable an extension": "Ativar uma extens\xE3o",
|
|
295649
|
+
"Install an extension from a git repo or local path": "Instalar uma extens\xE3o de um reposit\xF3rio git ou caminho local",
|
|
295650
|
+
"Uninstall an extension": "Desinstalar uma extens\xE3o",
|
|
295651
|
+
"No extensions installed.": "Nenhuma extens\xE3o instalada.",
|
|
295652
|
+
"Usage: /extensions update <extension-names>|--all": "Uso: /extensions update <nomes-das-extensoes>|--all",
|
|
295653
|
+
'Extension "{{name}}" not found.': 'Extens\xE3o "{{name}}" n\xE3o encontrada.',
|
|
295654
|
+
"No extensions to update.": "Nenhuma extens\xE3o para atualizar.",
|
|
295655
|
+
"Usage: /extensions install <source>": "Uso: /extensions install <fonte>",
|
|
295656
|
+
'Installing extension from "{{source}}"...': 'Instalando extens\xE3o de "{{source}}"...',
|
|
295657
|
+
'Extension "{{name}}" installed successfully.': 'Extens\xE3o "{{name}}" instalada com sucesso.',
|
|
295658
|
+
'Failed to install extension from "{{source}}": {{error}}': 'Falha ao instalar extens\xE3o de "{{source}}": {{error}}',
|
|
295659
|
+
"Usage: /extensions uninstall <extension-name>": "Uso: /extensions uninstall <nome-da-extensao>",
|
|
295660
|
+
'Uninstalling extension "{{name}}"...': 'Desinstalando extens\xE3o "{{name}}"...',
|
|
295661
|
+
'Extension "{{name}}" uninstalled successfully.': 'Extens\xE3o "{{name}}" desinstalada com sucesso.',
|
|
295662
|
+
'Failed to uninstall extension "{{name}}": {{error}}': 'Falha ao desinstalar extens\xE3o "{{name}}": {{error}}',
|
|
295663
|
+
"Usage: /extensions {{command}} <extension> [--scope=<user|workspace>]": "Uso: /extensions {{command}} <extensao> [--scope=<user|workspace>]",
|
|
295664
|
+
'Unsupported scope "{{scope}}", deve ser um de "user" ou "workspace"': 'Escopo n\xE3o suportado "{{scope}}", deve ser um de "user" ou "workspace"',
|
|
295665
|
+
'Extension "{{name}}" disabled for scope "{{scope}}"': 'Extens\xE3o "{{name}}" desativada para o escopo "{{scope}}"',
|
|
295666
|
+
'Extension "{{name}}" enabled for scope "{{scope}}"': 'Extens\xE3o "{{name}}" ativada para o escopo "{{scope}}"',
|
|
295667
|
+
"Do you want to continue? [Y/n]: ": "Voc\xEA deseja continuar? [Y/n]: ",
|
|
295668
|
+
"Do you want to continue?": "Voc\xEA deseja continuar?",
|
|
295669
|
+
'Installing extension "{{name}}".': 'Instalando extens\xE3o "{{name}}".',
|
|
295670
|
+
"**Extensions may introduce unexpected behavior. Ensure you have investigated the extension source and trust the author.**": "**As extens\xF5es podem introduzir comportamentos inesperados. Certifique-se de ter investigado a fonte da extens\xE3o e confie no autor.**",
|
|
295671
|
+
"This extension will run the following MCP servers:": "Esta extens\xE3o executar\xE1 os seguintes servidores MCP:",
|
|
295672
|
+
local: "local",
|
|
295673
|
+
remote: "remoto",
|
|
295674
|
+
"This extension will add the following commands: {{commands}}.": "Esta extens\xE3o adicionar\xE1 os seguintes comandos: {{commands}}.",
|
|
295675
|
+
"This extension will append info to your QWEN.md context using {{fileName}}": "Esta extens\xE3o anexar\xE1 informa\xE7\xF5es ao seu contexto QWEN.md usando {{fileName}}",
|
|
295676
|
+
"This extension will exclude the following core tools: {{tools}}": "Esta extens\xE3o excluir\xE1 as seguintes ferramentas principais: {{tools}}",
|
|
295677
|
+
"This extension will install the following skills:": "Esta extens\xE3o instalar\xE1 as seguintes habilidades:",
|
|
295678
|
+
"This extension will install the following subagents:": "Esta extens\xE3o instalar\xE1 os seguintes subagentes:",
|
|
295679
|
+
'Installation cancelled for "{{name}}".': 'Instala\xE7\xE3o cancelada para "{{name}}".',
|
|
295680
|
+
"--ref and --auto-update are not applicable for marketplace extensions.": "--ref e --auto-update n\xE3o s\xE3o aplic\xE1veis para extens\xF5es de marketplace.",
|
|
295681
|
+
'Extension "{{name}}" installed successfully and enabled.': 'Extens\xE3o "{{name}}" instalada com sucesso e ativada.',
|
|
295682
|
+
"Installs an extension from a git repository URL, local path, or claude marketplace (marketplace-url:plugin-name).": "Instala uma extens\xE3o de uma URL de reposit\xF3rio git, caminho local ou marketplace do claude (marketplace-url:plugin-name).",
|
|
295683
|
+
"The github URL, local path, or marketplace source (marketplace-url:plugin-name) of the extension to install.": "A URL do github, caminho local ou fonte do marketplace (marketplace-url:plugin-name) da extens\xE3o para instalar.",
|
|
295684
|
+
"The git ref to install from.": "A refer\xEAncia git para instalar.",
|
|
295685
|
+
"Enable auto-update for this extension.": "Ativar atualiza\xE7\xE3o autom\xE1tica para esta extens\xE3o.",
|
|
295686
|
+
"Enable pre-release versions for this extension.": "Ativar vers\xF5es de pr\xE9-lan\xE7amento para esta extens\xE3o.",
|
|
295687
|
+
"Acknowledge the security risks of installing an extension and skip the confirmation prompt.": "Reconhecer os riscos de seguran\xE7a de instalar uma extens\xE3o e pular o prompt de confirma\xE7\xE3o.",
|
|
295688
|
+
"The source argument must be provided.": "O argumento fonte deve ser fornecido.",
|
|
295689
|
+
'Extension "{{name}}" successfully uninstalled.': 'Extens\xE3o "{{name}}" desinstalada com sucesso.',
|
|
295690
|
+
"Uninstalls an extension.": "Desinstala uma extens\xE3o.",
|
|
295691
|
+
"The name or source path of the extension to uninstall.": "O nome ou caminho da fonte da extens\xE3o para desinstalar.",
|
|
295692
|
+
"Please include the name of the extension to uninstall as a positional argument.": "Inclua o nome da extens\xE3o para desinstalar como um argumento posicional.",
|
|
295693
|
+
"Enables an extension.": "Ativa uma extens\xE3o.",
|
|
295694
|
+
"The name of the extension to enable.": "O nome da extens\xE3o para ativar.",
|
|
295695
|
+
"The scope to enable the extenison in. If not set, will be enabled in all scopes.": "O escopo para ativar a extens\xE3o. Se n\xE3o definido, ser\xE1 ativada em todos os escopos.",
|
|
295696
|
+
'Extension "{{name}}" successfully enabled for scope "{{scope}}".': 'Extens\xE3o "{{name}}" ativada com sucesso para o escopo "{{scope}}".',
|
|
295697
|
+
'Extension "{{name}}" successfully enabled in all scopes.': 'Extens\xE3o "{{name}}" ativada com sucesso em todos os escopos.',
|
|
295698
|
+
"Invalid scope: {{scope}}. Please use one of {{scopes}}.": "Escopo inv\xE1lido: {{scope}}. Use um de {{scopes}}.",
|
|
295699
|
+
"Disables an extension.": "Desativa uma extens\xE3o.",
|
|
295700
|
+
"The name of the extension to disable.": "O nome da extens\xE3o para desativar.",
|
|
295701
|
+
"The scope to disable the extenison in.": "O escopo para desativar a extens\xE3o.",
|
|
295702
|
+
'Extension "{{name}}" successfully disabled for scope "{{scope}}".': 'Extens\xE3o "{{name}}" desativada com sucesso para o escopo "{{scope}}".',
|
|
295703
|
+
'Extension "{{name}}" successfully updated: {{oldVersion}} \u2192 {{newVersion}}.': 'Extens\xE3o "{{name}}" atualizada com sucesso: {{oldVersion}} \u2192 {{newVersion}}.',
|
|
295704
|
+
'Unable to install extension "{{name}}" due to missing install metadata': 'N\xE3o foi poss\xEDvel instalar a extens\xE3o "{{name}}" devido \xE0 falta de metadados de instala\xE7\xE3o',
|
|
295705
|
+
'Extension "{{name}}" is already up to date.': 'A extens\xE3o "{{name}}" j\xE1 est\xE1 atualizada.',
|
|
295706
|
+
"Updates all extensions or a named extension to the latest version.": "Atualiza todas as extens\xF5es ou uma extens\xE3o nomeada para a \xFAltima vers\xE3o.",
|
|
295707
|
+
"Update all extensions.": "Atualizar todas as extens\xF5es.",
|
|
295708
|
+
"Either an extension name or --all must be provided": "Um nome de extens\xE3o ou --all deve ser fornecido",
|
|
295709
|
+
"Lists installed extensions.": "Lista as extens\xF5es instaladas.",
|
|
295710
|
+
"Link extension failed to install.": "Falha ao instalar link da extens\xE3o.",
|
|
295711
|
+
'Extension "{{name}}" linked successfully and enabled.': 'Extens\xE3o "{{name}}" vinculada com sucesso e ativada.',
|
|
295712
|
+
"Links an extension from a local path. Updates made to the local path will always be reflected.": "Vincula uma extens\xE3o de um caminho local. Atualiza\xE7\xF5es feitas no caminho local sempre ser\xE3o refletidas.",
|
|
295713
|
+
"The name of the extension to link.": "O nome da extens\xE3o para vincular.",
|
|
295714
|
+
"Set a specific setting for an extension.": "Define uma configura\xE7\xE3o espec\xEDfica para uma extens\xE3o.",
|
|
295715
|
+
"Name of the extension to configure.": "Nome da extens\xE3o para configurar.",
|
|
295716
|
+
"The setting to configure (name or env var).": "A configura\xE7\xE3o para configurar (nome ou var env).",
|
|
295717
|
+
"The scope to set the setting in.": "O escopo para definir a configura\xE7\xE3o.",
|
|
295718
|
+
"List all settings for an extension.": "Listar todas as configura\xE7\xF5es de uma extens\xE3o.",
|
|
295719
|
+
"Name of the extension.": "Nome da extens\xE3o.",
|
|
295720
|
+
'Extension "{{name}}" has no settings to configure.': 'A extens\xE3o "{{name}}" n\xE3o tem configura\xE7\xF5es para configurar.',
|
|
295721
|
+
'Settings for "{{name}}":': 'Configura\xE7\xF5es para "{{name}}":',
|
|
295722
|
+
"(workspace)": "(workspace)",
|
|
295723
|
+
"(user)": "(usu\xE1rio)",
|
|
295724
|
+
"[not set]": "[n\xE3o definido]",
|
|
295725
|
+
"[value stored in keychain]": "[valor armazenado no chaveiro]",
|
|
295726
|
+
"Value:": "Valor:",
|
|
295727
|
+
"Manage extension settings.": "Gerenciar configura\xE7\xF5es de extens\xE3o.",
|
|
295728
|
+
"You need to specify a command (set or list).": "Voc\xEA precisa especificar um comando (set ou list).",
|
|
295729
|
+
// ============================================================================
|
|
295730
|
+
// Plugin Choice / Marketplace
|
|
295731
|
+
// ============================================================================
|
|
295732
|
+
"No plugins available in this marketplace.": "Nenhum plugin dispon\xEDvel neste marketplace.",
|
|
295733
|
+
'Select a plugin to install from marketplace "{{name}}":': 'Selecione um plugin para instalar do marketplace "{{name}}":',
|
|
295734
|
+
"Plugin selection cancelled.": "Sele\xE7\xE3o de plugin cancelada.",
|
|
295735
|
+
'Select a plugin from "{{name}}"': 'Selecione um plugin de "{{name}}"',
|
|
295736
|
+
"Use \u2191\u2193 or j/k to navigate, Enter to select, Escape to cancel": "Use \u2191\u2193 ou j/k para navegar, Enter para selecionar, Escape para cancelar",
|
|
295737
|
+
"{{count}} more above": "{{count}} mais acima",
|
|
295738
|
+
"{{count}} more below": "{{count}} mais abaixo",
|
|
295739
|
+
"manage IDE integration": "gerenciar integra\xE7\xE3o com IDE",
|
|
295740
|
+
"check status of IDE integration": "verificar status da integra\xE7\xE3o com IDE",
|
|
295741
|
+
"install required IDE companion for {{ideName}}": "instalar companion IDE necess\xE1rio para {{ideName}}",
|
|
295742
|
+
"enable IDE integration": "ativar integra\xE7\xE3o com IDE",
|
|
295743
|
+
"disable IDE integration": "desativar integra\xE7\xE3o com IDE",
|
|
295744
|
+
"IDE integration is not supported in your current environment. To use this feature, run Qwen Code in one of these supported IDEs: VS Code or VS Code forks.": "A integra\xE7\xE3o com IDE n\xE3o \xE9 suportada no seu ambiente atual. Para usar este recurso, execute o Qwen Code em um destes IDEs suportados: VS Code ou forks do VS Code.",
|
|
295745
|
+
"Set up GitHub Actions": "Configurar GitHub Actions",
|
|
295746
|
+
"Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)": "Configurar atalhos de terminal para entrada multilinhas (VS Code, Cursor, Windsurf, Trae)",
|
|
295747
|
+
"Please restart your terminal for the changes to take effect.": "Reinicie seu terminal para que as altera\xE7\xF5es tenham efeito.",
|
|
295748
|
+
"Failed to configure terminal: {{error}}": "Falha ao configurar terminal: {{error}}",
|
|
295749
|
+
"Could not determine {{terminalName}} config path on Windows: APPDATA environment variable is not set.": "N\xE3o foi poss\xEDvel determinar o caminho de configura\xE7\xE3o de {{terminalName}} no Windows: vari\xE1vel de ambiente APPDATA n\xE3o est\xE1 definida.",
|
|
295750
|
+
"{{terminalName}} keybindings.json exists but is not a valid JSON array. Please fix the file manually or delete it to allow automatic configuration.": "{{terminalName}} keybindings.json existe mas n\xE3o \xE9 um array JSON v\xE1lido. Corrija o arquivo manualmente ou exclua-o para permitir a configura\xE7\xE3o autom\xE1tica.",
|
|
295751
|
+
"File: {{file}}": "Arquivo: {{file}}",
|
|
295752
|
+
"Failed to parse {{terminalName}} keybindings.json. The file contains invalid JSON. Please fix the file manually or delete it to allow automatic configuration.": "Falha ao analisar {{terminalName}} keybindings.json. O arquivo cont\xE9m JSON inv\xE1lido. Corrija o arquivo manualmente ou exclua-o para permitir a configura\xE7\xE3o autom\xE1tica.",
|
|
295753
|
+
"Error: {{error}}": "Erro: {{error}}",
|
|
295754
|
+
"Shift+Enter binding already exists": "Atalho Shift+Enter j\xE1 existe",
|
|
295755
|
+
"Ctrl+Enter binding already exists": "Atalho Ctrl+Enter j\xE1 existe",
|
|
295756
|
+
"Existing keybindings detected. Will not modify to avoid conflicts.": "Atalhos existentes detectados. N\xE3o ser\xE3o modificados para evitar conflitos.",
|
|
295757
|
+
"Please check and modify manually if needed: {{file}}": "Verifique e modifique manualmente se necess\xE1rio: {{file}}",
|
|
295758
|
+
"Added Shift+Enter and Ctrl+Enter keybindings to {{terminalName}}.": "Adicionados atalhos Shift+Enter e Ctrl+Enter para {{terminalName}}.",
|
|
295759
|
+
"Modified: {{file}}": "Modificado: {{file}}",
|
|
295760
|
+
"{{terminalName}} keybindings already configured.": "Atalhos de {{terminalName}} j\xE1 configurados.",
|
|
295761
|
+
"Failed to configure {{terminalName}}.": "Falha ao configurar {{terminalName}}.",
|
|
295762
|
+
"Your terminal is already configured for an optimal experience with multiline input (Shift+Enter and Ctrl+Enter).": "Seu terminal j\xE1 est\xE1 configurado para uma experi\xEAncia ideal com entrada multilinhas (Shift+Enter e Ctrl+Enter).",
|
|
295763
|
+
"Could not detect terminal type. Supported terminals: VS Code, Cursor, Windsurf, and Trae.": "N\xE3o foi poss\xEDvel detectar o tipo de terminal. Terminais suportados: VS Code, Cursor, Windsurf e Trae.",
|
|
295764
|
+
'Terminal "{{terminal}}" is not supported yet.': 'O terminal "{{terminal}}" ainda n\xE3o \xE9 suportado.',
|
|
295765
|
+
// ============================================================================
|
|
295766
|
+
// Commands - Language
|
|
295767
|
+
// ============================================================================
|
|
295768
|
+
"Invalid language. Available: {{options}}": "Idioma inv\xE1lido. Dispon\xEDveis: {{options}}",
|
|
295769
|
+
"Language subcommands do not accept additional arguments.": "Subcomandos de idioma n\xE3o aceitam argumentos adicionais.",
|
|
295770
|
+
"Current UI language: {{lang}}": "Idioma atual da interface: {{lang}}",
|
|
295771
|
+
"Current LLM output language: {{lang}}": "Idioma atual da sa\xEDda do LLM: {{lang}}",
|
|
295772
|
+
"LLM output language not set": "Idioma de sa\xEDda do LLM n\xE3o definido",
|
|
295773
|
+
"Set UI language": "Definir idioma da interface",
|
|
295774
|
+
"Set LLM output language": "Definir idioma de sa\xEDda do LLM",
|
|
295775
|
+
"Usage: /language ui [{{options}}]": "Uso: /language ui [{{options}}]",
|
|
295776
|
+
"Usage: /language output <language>": "Uso: /language output <idioma>",
|
|
295777
|
+
"Example: /language output \u4E2D\u6587": "Exemplo: /language output Portugu\xEAs",
|
|
295778
|
+
"Example: /language output English": "Exemplo: /language output Ingl\xEAs",
|
|
295779
|
+
"Example: /language output \u65E5\u672C\u8A9E": "Exemplo: /language output Japon\xEAs",
|
|
295780
|
+
"Example: /language output Portugu\xEAs": "Exemplo: /language output Portugu\xEAs",
|
|
295781
|
+
"UI language changed to {{lang}}": "Idioma da interface alterado para {{lang}}",
|
|
295782
|
+
"LLM output language set to {{lang}}": "Idioma de sa\xEDda do LLM definido para {{lang}}",
|
|
295783
|
+
"LLM output language rule file generated at {{path}}": "Arquivo de regra de idioma de sa\xEDda do LLM gerado em {{path}}",
|
|
295784
|
+
"Please restart the application for the changes to take effect.": "Reinicie o aplicativo para que as altera\xE7\xF5es tenham efeito.",
|
|
295785
|
+
"Failed to generate LLM output language rule file: {{error}}": "Falha ao gerar arquivo de regra de idioma de sa\xEDda do LLM: {{error}}",
|
|
295786
|
+
"Invalid command. Available subcommands:": "Comando inv\xE1lido. Subcomandos dispon\xEDveis:",
|
|
295787
|
+
"Available subcommands:": "Subcomandos dispon\xEDveis:",
|
|
295788
|
+
"To request additional UI language packs, please open an issue on GitHub.": "Para solicitar pacotes de idiomas de interface adicionais, abra um problema no GitHub.",
|
|
295789
|
+
"Available options:": "Op\xE7\xF5es dispon\xEDveis:",
|
|
295790
|
+
"Set UI language to {{name}}": "Definir idioma da interface para {{name}}",
|
|
295791
|
+
// ============================================================================
|
|
295792
|
+
// Commands - Approval Mode
|
|
295793
|
+
// ============================================================================
|
|
295794
|
+
"Tool Approval Mode": "Modo de Aprova\xE7\xE3o de Ferramenta",
|
|
295795
|
+
"Current approval mode: {{mode}}": "Modo de aprova\xE7\xE3o atual: {{mode}}",
|
|
295796
|
+
"Available approval modes:": "Modos de aprova\xE7\xE3o dispon\xEDveis:",
|
|
295797
|
+
"Approval mode changed to: {{mode}}": "Modo de aprova\xE7\xE3o alterado para: {{mode}}",
|
|
295798
|
+
"Approval mode changed to: {{mode}} (saved to {{scope}} settings{{location}})": "Modo de aprova\xE7\xE3o alterado para: {{mode}} (salvo nas configura\xE7\xF5es de {{scope}}{{location}})",
|
|
295799
|
+
"Usage: /approval-mode <mode> [--session|--user|--project]": "Uso: /approval-mode <mode> [--session|--user|--project]",
|
|
295800
|
+
"Scope subcommands do not accept additional arguments.": "Subcomandos de escopo n\xE3o aceitam argumentos adicionais.",
|
|
295801
|
+
"Plan mode - Analyze only, do not modify files or execute commands": "Modo planejamento - Apenas analisa, n\xE3o modifica arquivos nem executa comandos",
|
|
295802
|
+
"Default mode - Require approval for file edits or shell commands": "Modo padr\xE3o - Exige aprova\xE7\xE3o para edi\xE7\xF5es de arquivos ou comandos shell",
|
|
295803
|
+
"Auto-edit mode - Automatically approve file edits": "Modo auto-edi\xE7\xE3o - Aprova automaticamente edi\xE7\xF5es de arquivos",
|
|
295804
|
+
"YOLO mode - Automatically approve all tools": "Modo YOLO - Aprova automaticamente todas as ferramentas",
|
|
295805
|
+
"{{mode}} mode": "Modo {{mode}}",
|
|
295806
|
+
"Settings service is not available; unable to persist the approval mode.": "Servi\xE7o de configura\xE7\xF5es n\xE3o dispon\xEDvel; n\xE3o foi poss\xEDvel persistir o modo de aprova\xE7\xE3o.",
|
|
295807
|
+
"Failed to save approval mode: {{error}}": "Falha ao salvar modo de aprova\xE7\xE3o: {{error}}",
|
|
295808
|
+
"Failed to change approval mode: {{error}}": "Falha ao alterar modo de aprova\xE7\xE3o: {{error}}",
|
|
295809
|
+
"Apply to current session only (temporary)": "Aplicar apenas \xE0 sess\xE3o atual (tempor\xE1rio)",
|
|
295810
|
+
"Persist for this project/workspace": "Persistir para este projeto/workspace",
|
|
295811
|
+
"Persist for this user on this machine": "Persistir para este usu\xE1rio nesta m\xE1quina",
|
|
295812
|
+
"Analyze only, do not modify files or execute commands": "Apenas analisar, n\xE3o modificar arquivos nem executar comandos",
|
|
295813
|
+
"Require approval for file edits or shell commands": "Exigir aprova\xE7\xE3o para edi\xE7\xF5es de arquivos ou comandos shell",
|
|
295814
|
+
"Automatically approve file edits": "Aprovar automaticamente edi\xE7\xF5es de arquivos",
|
|
295815
|
+
"Automatically approve all tools": "Aprovar automaticamente todas as ferramentas",
|
|
295816
|
+
"Workspace approval mode exists and takes priority. User-level change will have no effect.": "O modo de aprova\xE7\xE3o do workspace existe e tem prioridade. A altera\xE7\xE3o no n\xEDvel do usu\xE1rio n\xE3o ter\xE1 efeito.",
|
|
295817
|
+
"Apply To": "Aplicar A",
|
|
295818
|
+
"User Settings": "Configura\xE7\xF5es do Usu\xE1rio",
|
|
295819
|
+
"Workspace Settings": "Configura\xE7\xF5es do Workspace",
|
|
295820
|
+
// ============================================================================
|
|
295821
|
+
// Commands - Memory
|
|
295822
|
+
// ============================================================================
|
|
295823
|
+
"Commands for interacting with memory.": "Comandos para interagir com a mem\xF3ria.",
|
|
295824
|
+
"Show the current memory contents.": "Mostrar os conte\xFAdos atuais da mem\xF3ria.",
|
|
295825
|
+
"Show project-level memory contents.": "Mostrar conte\xFAdos da mem\xF3ria de n\xEDvel de projeto.",
|
|
295826
|
+
"Show global memory contents.": "Mostrar conte\xFAdos da mem\xF3ria global.",
|
|
295827
|
+
"Add content to project-level memory.": "Adicionar conte\xFAdo \xE0 mem\xF3ria de n\xEDvel de projeto.",
|
|
295828
|
+
"Add content to global memory.": "Adicionar conte\xFAdo \xE0 mem\xF3ria global.",
|
|
295829
|
+
"Refresh the memory from the source.": "Atualizar a mem\xF3ria da fonte.",
|
|
295830
|
+
"Usage: /memory add --project <text to remember>": "Uso: /memory add --project <texto para lembrar>",
|
|
295831
|
+
"Usage: /memory add --global <text to remember>": "Uso: /memory add --global <texto para lembrar>",
|
|
295832
|
+
'Attempting to save to project memory: "{{text}}"': 'Tentando salvar na mem\xF3ria do projeto: "{{text}}"',
|
|
295833
|
+
'Attempting to save to global memory: "{{text}}"': 'Tentando salvar na mem\xF3ria global: "{{text}}"',
|
|
295834
|
+
"Current memory content from {{count}} file(s):": "Conte\xFAdo da mem\xF3ria atual de {{count}} arquivo(s):",
|
|
295835
|
+
"Memory is currently empty.": "A mem\xF3ria est\xE1 vazia no momento.",
|
|
295836
|
+
"Project memory file not found or is currently empty.": "Arquivo de mem\xF3ria do projeto n\xE3o encontrado ou est\xE1 vazio.",
|
|
295837
|
+
"Global memory file not found or is currently empty.": "Arquivo de mem\xF3ria global n\xE3o encontrado ou est\xE1 vazio.",
|
|
295838
|
+
"Global memory is currently empty.": "A mem\xF3ria global est\xE1 vazia no momento.",
|
|
295839
|
+
"Global memory content:\n\n---\n{{content}}\n---": "Conte\xFAdo da mem\xF3ria global:\n\n---\n{{content}}\n---",
|
|
295840
|
+
"Project memory content from {{path}}:\n\n---\n{{content}}\n---": "Conte\xFAdo da mem\xF3ria do projeto de {{path}}:\n\n---\n{{content}}\n---",
|
|
295841
|
+
"Project memory is currently empty.": "A mem\xF3ria do projeto est\xE1 vazia no momento.",
|
|
295842
|
+
"Refreshing memory from source files...": "Atualizando mem\xF3ria dos arquivos fonte...",
|
|
295843
|
+
"Add content to the memory. Use --global for global memory or --project for project memory.": "Adicionar conte\xFAdo \xE0 mem\xF3ria. Use --global para mem\xF3ria global ou --project para mem\xF3ria do projeto.",
|
|
295844
|
+
"Usage: /memory add [--global|--project] <text to remember>": "Uso: /memory add [--global|--project] <texto para lembrar>",
|
|
295845
|
+
'Attempting to save to memory {{scope}}: "{{fact}}"': 'Tentando salvar na mem\xF3ria {{scope}}: "{{fact}}"',
|
|
295846
|
+
// ============================================================================
|
|
295847
|
+
// Commands - MCP
|
|
295848
|
+
// ============================================================================
|
|
295849
|
+
"Authenticate with an OAuth-enabled MCP server": "Autenticar com um servidor MCP habilitado para OAuth",
|
|
295850
|
+
"List configured MCP servers and tools": "Listar servidores e ferramentas MCP configurados",
|
|
295851
|
+
"Restarts MCP servers.": "Reinicia os servidores MCP.",
|
|
295852
|
+
"Config not loaded.": "Configura\xE7\xE3o n\xE3o carregada.",
|
|
295853
|
+
"Could not retrieve tool registry.": "N\xE3o foi poss\xEDvel recuperar o registro de ferramentas.",
|
|
295854
|
+
"No MCP servers configured with OAuth authentication.": "Nenhum servidor MCP configurado com autentica\xE7\xE3o OAuth.",
|
|
295855
|
+
"MCP servers with OAuth authentication:": "Servidores MCP com autentica\xE7\xE3o OAuth:",
|
|
295856
|
+
"Use /mcp auth <server-name> to authenticate.": "Use /mcp auth <nome-do-servidor> para autenticar.",
|
|
295857
|
+
"MCP server '{{name}}' not found.": "Servidor MCP '{{name}}' n\xE3o encontrado.",
|
|
295858
|
+
"Successfully authenticated and refreshed tools for '{{name}}'.": "Autenticado com sucesso e ferramentas atualizadas para '{{name}}'.",
|
|
295859
|
+
"Failed to authenticate with MCP server '{{name}}': {{error}}": "Falha ao autenticar com o servidor MCP '{{name}}': {{error}}",
|
|
295860
|
+
"Re-discovering tools from '{{name}}'...": "Redescobrindo ferramentas de '{{name}}'...",
|
|
295861
|
+
// ============================================================================
|
|
295862
|
+
// Commands - Chat
|
|
295863
|
+
// ============================================================================
|
|
295864
|
+
"Manage conversation history.": "Gerenciar hist\xF3rico de conversas.",
|
|
295865
|
+
"List saved conversation checkpoints": "Listar checkpoints de conversa salvos",
|
|
295866
|
+
"No saved conversation checkpoints found.": "Nenhum checkpoint de conversa salvo encontrado.",
|
|
295867
|
+
"List of saved conversations:": "Lista de conversas salvas:",
|
|
295868
|
+
"Note: Newest last, oldest first": "Nota: Mais novos por \xFAltimo, mais antigos primeiro",
|
|
295869
|
+
"Save the current conversation as a checkpoint. Usage: /chat save <tag>": "Salvar a conversa atual como um checkpoint. Uso: /chat save <tag>",
|
|
295870
|
+
"Missing tag. Usage: /chat save <tag>": "Tag ausente. Uso: /chat save <tag>",
|
|
295871
|
+
"Delete a conversation checkpoint. Usage: /chat delete <tag>": "Excluir um checkpoint de conversa. Uso: /chat delete <tag>",
|
|
295872
|
+
"Missing tag. Usage: /chat delete <tag>": "Tag ausente. Uso: /chat delete <tag>",
|
|
295873
|
+
"Conversation checkpoint '{{tag}}' has been deleted.": "O checkpoint de conversa '{{tag}}' foi exclu\xEDdo.",
|
|
295874
|
+
"Error: No checkpoint found with tag '{{tag}}'.": "Erro: Nenhum checkpoint encontrado com a tag '{{tag}}'.",
|
|
295875
|
+
"Resume a conversation from a checkpoint. Usage: /chat resume <tag>": "Retomar uma conversa de um checkpoint. Uso: /chat resume <tag>",
|
|
295876
|
+
"Missing tag. Usage: /chat resume <tag>": "Tag ausente. Uso: /chat resume <tag>",
|
|
295877
|
+
"No saved checkpoint found with tag: {{tag}}.": "Nenhum checkpoint salvo encontrado com a tag: {{tag}}.",
|
|
295878
|
+
"A checkpoint with the tag {{tag}} already exists. Do you want to overwrite it?": "Um checkpoint com a tag {{tag}} j\xE1 existe. Voc\xEA deseja substitu\xED-lo?",
|
|
295879
|
+
"No chat client available to save conversation.": "Nenhum cliente de chat dispon\xEDvel para salvar a conversa.",
|
|
295880
|
+
"Conversation checkpoint saved with tag: {{tag}}.": "Checkpoint de conversa salvo com a tag: {{tag}}.",
|
|
295881
|
+
"No conversation found to save.": "Nenhuma conversa encontrada para salvar.",
|
|
295882
|
+
"No chat client available to share conversation.": "Nenhum cliente de chat dispon\xEDvel para compartilhar a conversa.",
|
|
295883
|
+
"Invalid file format. Only .md and .json are supported.": "Formato de arquivo inv\xE1lido. Apenas .md e .json s\xE3o suportados.",
|
|
295884
|
+
"Error sharing conversation: {{error}}": "Erro ao compartilhar conversa: {{error}}",
|
|
295885
|
+
"Conversation shared to {{filePath}}": "Conversa compartilhada em {{filePath}}",
|
|
295886
|
+
"No conversation found to share.": "Nenhuma conversa encontrada para compartilhar.",
|
|
295887
|
+
"Share the current conversation to a markdown or json file. Usage: /chat share <file>": "Compartilhar a conversa atual para um arquivo markdown ou json. Uso: /chat share <arquivo>",
|
|
295888
|
+
// ============================================================================
|
|
295889
|
+
// Commands - Summary
|
|
295890
|
+
// ============================================================================
|
|
295891
|
+
"Generate a project summary and save it to .qwen/PROJECT_SUMMARY.md": "Gerar um resumo do projeto e salv\xE1-lo em .qwen/PROJECT_SUMMARY.md",
|
|
295892
|
+
"No chat client available to generate summary.": "Nenhum cliente de chat dispon\xEDvel para gerar o resumo.",
|
|
295893
|
+
"Already generating summary, wait for previous request to complete": "J\xE1 gerando resumo, aguarde a conclus\xE3o da solicita\xE7\xE3o anterior",
|
|
295894
|
+
"No conversation found to summarize.": "Nenhuma conversa encontrada para resumir.",
|
|
295895
|
+
"Failed to generate project context summary: {{error}}": "Falha ao gerar resumo do contexto do projeto: {{error}}",
|
|
295896
|
+
"Saved project summary to {{filePathForDisplay}}.": "Resumo do projeto salvo em {{filePathForDisplay}}.",
|
|
295897
|
+
"Saving project summary...": "Salvando resumo do projeto...",
|
|
295898
|
+
"Generating project summary...": "Gerando resumo do projeto...",
|
|
295899
|
+
"Failed to generate summary - no text content received from LLM response": "Falha ao gerar resumo - nenhum conte\xFAdo de texto recebido da resposta do LLM",
|
|
295900
|
+
// ============================================================================
|
|
295901
|
+
// Commands - Model
|
|
295902
|
+
// ============================================================================
|
|
295903
|
+
"Switch the model for this session": "Trocar o modelo para esta sess\xE3o",
|
|
295904
|
+
"Content generator configuration not available.": "Configura\xE7\xE3o do gerador de conte\xFAdo n\xE3o dispon\xEDvel.",
|
|
295905
|
+
"Authentication type not available.": "Tipo de autentica\xE7\xE3o n\xE3o dispon\xEDvel.",
|
|
295906
|
+
"No models available for the current authentication type ({{authType}}).": "Nenhum modelo dispon\xEDvel para o tipo de autentica\xE7\xE3o atual ({{authType}}).",
|
|
295907
|
+
// ============================================================================
|
|
295908
|
+
// Commands - Clear
|
|
295909
|
+
// ============================================================================
|
|
295910
|
+
"Starting a new session, resetting chat, and clearing terminal.": "Iniciando uma nova sess\xE3o, resetando o chat e limpando o terminal.",
|
|
295911
|
+
"Starting a new session and clearing.": "Iniciando uma nova sess\xE3o e limpando.",
|
|
295912
|
+
// ============================================================================
|
|
295913
|
+
// Commands - Compress
|
|
295914
|
+
// ============================================================================
|
|
295915
|
+
"Already compressing, wait for previous request to complete": "J\xE1 comprimindo, aguarde a conclus\xE3o da solicita\xE7\xE3o anterior",
|
|
295916
|
+
"Failed to compress chat history.": "Falha ao comprimir hist\xF3rico do chat.",
|
|
295917
|
+
"Failed to compress chat history: {{error}}": "Falha ao comprimir hist\xF3rico do chat: {{error}}",
|
|
295918
|
+
"Compressing chat history": "Comprimindo hist\xF3rico do chat",
|
|
295919
|
+
"Chat history compressed from {{originalTokens}} to {{newTokens}} tokens.": "Hist\xF3rico do chat comprimido de {{originalTokens}} para {{newTokens}} tokens.",
|
|
295920
|
+
"Compression was not beneficial for this history size.": "A compress\xE3o n\xE3o foi ben\xE9fica para este tamanho de hist\xF3rico.",
|
|
295921
|
+
"Chat history compression did not reduce size. This may indicate issues with the compression prompt.": "A compress\xE3o do hist\xF3rico do chat n\xE3o reduziu o tamanho. Isso pode indicar problemas com o prompt de compress\xE3o.",
|
|
295922
|
+
"Could not compress chat history due to a token counting error.": "N\xE3o foi poss\xEDvel comprimir o hist\xF3rico do chat devido a um erro de contagem de tokens.",
|
|
295923
|
+
"Chat history is already compressed.": "O hist\xF3rico do chat j\xE1 est\xE1 comprimido.",
|
|
295924
|
+
// ============================================================================
|
|
295925
|
+
// Commands - Directory
|
|
295926
|
+
// ============================================================================
|
|
295927
|
+
"Configuration is not available.": "A configura\xE7\xE3o n\xE3o est\xE1 dispon\xEDvel.",
|
|
295928
|
+
"Please provide at least one path to add.": "Forne\xE7a pelo menos um caminho para adicionar.",
|
|
295929
|
+
"The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.": "O comando /directory add n\xE3o \xE9 suportado em perfis de sandbox restritivos. Use --include-directories ao iniciar a sess\xE3o.",
|
|
295930
|
+
"Error adding '{{path}}': {{error}}": "Erro ao adicionar '{{path}}': {{error}}",
|
|
295931
|
+
"Successfully added QWEN.md files from the following directories if there are:\n- {{directories}}": "Arquivos QWEN.md adicionados com sucesso dos seguintes diret\xF3rios, se houverem:\n- {{directories}}",
|
|
295932
|
+
"Error refreshing memory: {{error}}": "Erro ao atualizar mem\xF3ria: {{error}}",
|
|
295933
|
+
"Successfully added directories:\n- {{directories}}": "Diret\xF3rios adicionados com sucesso:\n- {{directories}}",
|
|
295934
|
+
"Current workspace directories:\n{{directories}}": "Diret\xF3rios atuais do workspace:\n{{directories}}",
|
|
295935
|
+
// ============================================================================
|
|
295936
|
+
// Commands - Docs
|
|
295937
|
+
// ============================================================================
|
|
295938
|
+
"Please open the following URL in your browser to view the documentation:\n{{url}}": "Abra a seguinte URL no seu navegador para ver a documenta\xE7\xE3o:\n{{url}}",
|
|
295939
|
+
"Opening documentation in your browser: {{url}}": "Abrindo documenta\xE7\xE3o no seu navegador: {{url}}",
|
|
295940
|
+
// ============================================================================
|
|
295941
|
+
// Dialogs - Tool Confirmation
|
|
295942
|
+
// ============================================================================
|
|
295943
|
+
"Do you want to proceed?": "Voc\xEA deseja prosseguir?",
|
|
295944
|
+
"Yes, allow once": "Sim, permitir uma vez",
|
|
295945
|
+
"Allow always": "Permitir sempre",
|
|
295946
|
+
No: "N\xE3o",
|
|
295947
|
+
"No (esc)": "N\xE3o (esc)",
|
|
295948
|
+
"Yes, allow always for this session": "Sim, permitir sempre para esta sess\xE3o",
|
|
295949
|
+
"Modify in progress:": "Modifica\xE7\xE3o em progresso:",
|
|
295950
|
+
"Save and close external editor to continue": "Salve e feche o editor externo para continuar",
|
|
295951
|
+
"Apply this change?": "Aplicar esta altera\xE7\xE3o?",
|
|
295952
|
+
"Yes, allow always": "Sim, permitir sempre",
|
|
295953
|
+
"Modify with external editor": "Modificar com editor externo",
|
|
295954
|
+
"No, suggest changes (esc)": "N\xE3o, sugerir altera\xE7\xF5es (esc)",
|
|
295955
|
+
"Allow execution of: '{{command}}'?": "Permitir a execu\xE7\xE3o de: '{{command}}'?",
|
|
295956
|
+
"Yes, allow always ...": "Sim, permitir sempre ...",
|
|
295957
|
+
"Yes, and auto-accept edits": "Sim, e aceitar edi\xE7\xF5es automaticamente",
|
|
295958
|
+
"Yes, and manually approve edits": "Sim, e aprovar edi\xE7\xF5es manualmente",
|
|
295959
|
+
"No, keep planning (esc)": "N\xE3o, continuar planejando (esc)",
|
|
295960
|
+
"URLs to fetch:": "URLs para buscar:",
|
|
295961
|
+
"MCP Server: {{server}}": "Servidor MCP: {{server}}",
|
|
295962
|
+
"Tool: {{tool}}": "Ferramenta: {{tool}}",
|
|
295963
|
+
'Allow execution of MCP tool "{{tool}}" from server "{{server}}"?': 'Permitir a execu\xE7\xE3o da ferramenta MCP "{{tool}}" do servidor "{{server}}"?',
|
|
295964
|
+
'Yes, always allow tool "{{tool}}" from server "{{server}}"': 'Sim, sempre permitir a ferramenta "{{tool}}" do servidor "{{server}}"',
|
|
295965
|
+
'Yes, always allow all tools from server "{{server}}"': 'Sim, sempre permitir todas as ferramentas do servidor "{{server}}"',
|
|
295966
|
+
// ============================================================================
|
|
295967
|
+
// Dialogs - Shell Confirmation
|
|
295968
|
+
// ============================================================================
|
|
295969
|
+
"Shell Command Execution": "Execu\xE7\xE3o de Comando Shell",
|
|
295970
|
+
"A custom command wants to run the following shell commands:": "Um comando personalizado deseja executar os seguintes comandos shell:",
|
|
295971
|
+
// ============================================================================
|
|
295972
|
+
// Dialogs - Pro Quota
|
|
295973
|
+
// ============================================================================
|
|
295974
|
+
"Pro quota limit reached for {{model}}.": "Limite de cota Pro atingido para {{model}}.",
|
|
295975
|
+
"Change auth (executes the /auth command)": "Alterar autentica\xE7\xE3o (executa o comando /auth)",
|
|
295976
|
+
"Continue with {{model}}": "Continuar com {{model}}",
|
|
295977
|
+
// ============================================================================
|
|
295978
|
+
// Dialogs - Welcome Back
|
|
295979
|
+
// ============================================================================
|
|
295980
|
+
"Current Plan:": "Plano Atual:",
|
|
295981
|
+
"Progress: {{done}}/{{total}} tasks completed": "Progresso: {{done}}/{{total}} tarefas conclu\xEDdas",
|
|
295982
|
+
", {{inProgress}} in progress": ", {{inProgress}} em progresso",
|
|
295983
|
+
"Pending Tasks:": "Tarefas Pendentes:",
|
|
295984
|
+
"What would you like to do?": "O que voc\xEA gostaria de fazer?",
|
|
295985
|
+
"Choose how to proceed with your session:": "Escolha como proceder com sua sess\xE3o:",
|
|
295986
|
+
"Start new chat session": "Iniciar nova sess\xE3o de chat",
|
|
295987
|
+
"Continue previous conversation": "Continuar conversa anterior",
|
|
295988
|
+
"\u{1F44B} Welcome back! (Last updated: {{timeAgo}})": "\u{1F44B} Bem-vindo de volta! (\xDAltima atualiza\xE7\xE3o: {{timeAgo}})",
|
|
295989
|
+
"\u{1F3AF} Overall Goal:": "\u{1F3AF} Objetivo Geral:",
|
|
295990
|
+
// ============================================================================
|
|
295991
|
+
// Dialogs - Auth
|
|
295992
|
+
// ============================================================================
|
|
295993
|
+
"Get started": "Come\xE7ar",
|
|
295994
|
+
"How would you like to authenticate for this project?": "Como voc\xEA gostaria de se autenticar para este projeto?",
|
|
295995
|
+
"OpenAI API key is required to use OpenAI authentication.": "A chave da API do OpenAI \xE9 necess\xE1ria para usar a autentica\xE7\xE3o do OpenAI.",
|
|
295996
|
+
"You must select an auth method to proceed. Press Ctrl+C again to exit.": "Voc\xEA deve selecionar um m\xE9todo de autentica\xE7\xE3o para prosseguir. Pressione Ctrl+C novamente para sair.",
|
|
295997
|
+
"(Use Enter to Set Auth)": "(Use Enter para Definir Autentica\xE7\xE3o)",
|
|
295998
|
+
"Terms of Services and Privacy Notice for Qwen Code": "Termos de Servi\xE7o e Aviso de Privacidade do Qwen Code",
|
|
295999
|
+
"Qwen OAuth": "Qwen OAuth",
|
|
296000
|
+
OpenAI: "OpenAI",
|
|
296001
|
+
"Failed to login. Message: {{message}}": "Falha ao fazer login. Mensagem: {{message}}",
|
|
296002
|
+
"Authentication is enforced to be {{enforcedType}}, but you are currently using {{currentType}}.": "A autentica\xE7\xE3o \xE9 for\xE7ada para {{enforcedType}}, mas voc\xEA est\xE1 usando {{currentType}} no momento.",
|
|
296003
|
+
"Qwen OAuth authentication timed out. Please try again.": "A autentica\xE7\xE3o Qwen OAuth expirou. Tente novamente.",
|
|
296004
|
+
"Qwen OAuth authentication cancelled.": "Autentica\xE7\xE3o Qwen OAuth cancelada.",
|
|
296005
|
+
"Qwen OAuth Authentication": "Autentica\xE7\xE3o Qwen OAuth",
|
|
296006
|
+
"Please visit this URL to authorize:": "Visite esta URL para autorizar:",
|
|
296007
|
+
"Or scan the QR code below:": "Ou escaneie o c\xF3digo QR abaixo:",
|
|
296008
|
+
"Waiting for authorization": "Aguardando autoriza\xE7\xE3o",
|
|
296009
|
+
"Time remaining:": "Tempo restante:",
|
|
296010
|
+
"(Press ESC or CTRL+C to cancel)": "(Pressione ESC ou CTRL+C para cancelar)",
|
|
296011
|
+
"Qwen OAuth Authentication Timeout": "Tempo Limite de Autentica\xE7\xE3o Qwen OAuth",
|
|
296012
|
+
"OAuth token expired (over {{seconds}} seconds). Please select authentication method again.": "Token OAuth expirado (mais de {{seconds}} segundos). Selecione o m\xE9todo de autentica\xE7\xE3o novamente.",
|
|
296013
|
+
"Press any key to return to authentication type selection.": "Pressione qualquer tecla para retornar \xE0 sele\xE7\xE3o do tipo de autentica\xE7\xE3o.",
|
|
296014
|
+
"Waiting for Qwen OAuth authentication...": "Aguardando autentica\xE7\xE3o Qwen OAuth...",
|
|
296015
|
+
"Note: Your existing API key in settings.json will not be cleared when using Qwen OAuth. You can switch back to OpenAI authentication later if needed.": "Nota: Sua chave de API existente no settings.json n\xE3o ser\xE1 limpa ao usar o Qwen OAuth. Voc\xEA pode voltar para a autentica\xE7\xE3o do OpenAI mais tarde, se necess\xE1rio.",
|
|
296016
|
+
"Authentication timed out. Please try again.": "A autentica\xE7\xE3o expirou. Tente novamente.",
|
|
296017
|
+
"Waiting for auth... (Press ESC or CTRL+C to cancel)": "Aguardando autentica\xE7\xE3o... (Pressione ESC ou CTRL+C para cancelar)",
|
|
296018
|
+
"Missing API key for OpenAI-compatible auth. Set settings.security.auth.apiKey, or set the {{envKeyHint}} environment variable.": "Chave de API ausente para autentica\xE7\xE3o compat\xEDvel com OpenAI. Defina settings.security.auth.apiKey ou a vari\xE1vel de ambiente {{envKeyHint}}.",
|
|
296019
|
+
"{{envKeyHint}} environment variable not found.": "Vari\xE1vel de ambiente {{envKeyHint}} n\xE3o encontrada.",
|
|
296020
|
+
"{{envKeyHint}} environment variable not found. Please set it in your .env file or environment variables.": "Vari\xE1vel de ambiente {{envKeyHint}} n\xE3o encontrada. Defina-a no seu arquivo .env ou vari\xE1veis de ambiente.",
|
|
296021
|
+
"{{envKeyHint}} environment variable not found (or set settings.security.auth.apiKey). Please set it in your .env file or environment variables.": "Vari\xE1vel de ambiente {{envKeyHint}} n\xE3o encontrada (ou defina settings.security.auth.apiKey). Defina-a no seu arquivo .env ou vari\xE1veis de ambiente.",
|
|
296022
|
+
"Missing API key for OpenAI-compatible auth. Set the {{envKeyHint}} environment variable.": "Chave de API ausente para autentica\xE7\xE3o compat\xEDvel com OpenAI. Defina a vari\xE1vel de ambiente {{envKeyHint}}.",
|
|
296023
|
+
"Anthropic provider missing required baseUrl in modelProviders[].baseUrl.": "Provedor Anthropic sem a baseUrl necess\xE1ria em modelProviders[].baseUrl.",
|
|
296024
|
+
"ANTHROPIC_BASE_URL environment variable not found.": "Vari\xE1vel de ambiente ANTHROPIC_BASE_URL n\xE3o encontrada.",
|
|
296025
|
+
"Invalid auth method selected.": "M\xE9todo de autentica\xE7\xE3o inv\xE1lido selecionado.",
|
|
296026
|
+
"Failed to authenticate. Message: {{message}}": "Falha ao autenticar. Mensagem: {{message}}",
|
|
296027
|
+
"Authenticated successfully with {{authType}} credentials.": "Autenticado com sucesso com credenciais {{authType}}.",
|
|
296028
|
+
'Invalid QWEN_DEFAULT_AUTH_TYPE value: "{{value}}". Valid values are: {{validValues}}': 'Valor QWEN_DEFAULT_AUTH_TYPE inv\xE1lido: "{{value}}". Valores v\xE1lidos s\xE3o: {{validValues}}',
|
|
296029
|
+
"OpenAI Configuration Required": "Configura\xE7\xE3o do OpenAI Necess\xE1ria",
|
|
296030
|
+
"Please enter your OpenAI configuration. You can get an API key from": "Insira sua configura\xE7\xE3o do OpenAI. Voc\xEA pode obter uma chave de API de",
|
|
296031
|
+
"API Key:": "Chave da API:",
|
|
296032
|
+
"Invalid credentials: {{errorMessage}}": "Credenciais inv\xE1lidas: {{errorMessage}}",
|
|
296033
|
+
"Failed to validate credentials": "Falha ao validar credenciais",
|
|
296034
|
+
"Press Enter to continue, Tab/\u2191\u2193 to navigate, Esc to cancel": "Pressione Enter para continuar, Tab/\u2191\u2193 para navegar, Esc para cancelar",
|
|
296035
|
+
// ============================================================================
|
|
296036
|
+
// Dialogs - Model
|
|
296037
|
+
// ============================================================================
|
|
296038
|
+
"Select Model": "Selecionar Modelo",
|
|
296039
|
+
"(Press Esc to close)": "(Pressione Esc para fechar)",
|
|
296040
|
+
"Current (effective) configuration": "Configura\xE7\xE3o atual (efetiva)",
|
|
296041
|
+
AuthType: "AuthType",
|
|
296042
|
+
"API Key": "Chave da API",
|
|
296043
|
+
unset: "n\xE3o definido",
|
|
296044
|
+
"(default)": "(padr\xE3o)",
|
|
296045
|
+
"(set)": "(definido)",
|
|
296046
|
+
"(not set)": "(n\xE3o definido)",
|
|
296047
|
+
"Failed to switch model to '{{modelId}}'.\n\n{{error}}": "Falha ao trocar o modelo para '{{modelId}}'.\n\n{{error}}",
|
|
296048
|
+
"The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)": "O modelo Qwen Coder mais recente do Alibaba Cloud ModelStudio (vers\xE3o: qwen3-coder-plus-2025-09-23)",
|
|
296049
|
+
"The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)": "O modelo Qwen Vision mais recente do Alibaba Cloud ModelStudio (vers\xE3o: qwen3-vl-plus-2025-09-23)",
|
|
296050
|
+
// ============================================================================
|
|
296051
|
+
// Dialogs - Permissions
|
|
296052
|
+
// ============================================================================
|
|
296053
|
+
"Manage folder trust settings": "Gerenciar configura\xE7\xF5es de confian\xE7a de pasta",
|
|
296054
|
+
// ============================================================================
|
|
296055
|
+
// Status Bar
|
|
296056
|
+
// ============================================================================
|
|
296057
|
+
"Using:": "Usando:",
|
|
296058
|
+
"{{count}} open file": "{{count}} arquivo aberto",
|
|
296059
|
+
"{{count}} open files": "{{count}} arquivos abertos",
|
|
296060
|
+
"(ctrl+g to view)": "(ctrl+g para ver)",
|
|
296061
|
+
"{{count}} {{name}} file": "{{count}} arquivo {{name}}",
|
|
296062
|
+
"{{count}} {{name}} files": "{{count}} arquivos {{name}}",
|
|
296063
|
+
"{{count}} MCP server": "{{count}} servidor MCP",
|
|
296064
|
+
"{{count}} MCP servers": "{{count}} servidores MCP",
|
|
296065
|
+
"{{count}} Blocked": "{{count}} Bloqueados",
|
|
296066
|
+
"(ctrl+t to view)": "(ctrl+t para ver)",
|
|
296067
|
+
"(ctrl+t to toggle)": "(ctrl+t para alternar)",
|
|
296068
|
+
"Press Ctrl+C again to exit.": "Pressione Ctrl+C novamente para sair.",
|
|
296069
|
+
"Press Ctrl+D again to exit.": "Pressione Ctrl+D novamente para sair.",
|
|
296070
|
+
"Press Esc again to clear.": "Pressione Esc novamente para limpar.",
|
|
296071
|
+
// ============================================================================
|
|
296072
|
+
// MCP Status
|
|
296073
|
+
// ============================================================================
|
|
296074
|
+
"No MCP servers configured.": "Nenhum servidor MCP configurado.",
|
|
296075
|
+
"Please view MCP documentation in your browser:": "Veja a documenta\xE7\xE3o do MCP no seu navegador:",
|
|
296076
|
+
"or use the cli /docs command": "ou use o comando cli /docs",
|
|
296077
|
+
"\u23F3 MCP servers are starting up ({{count}} initializing)...": "\u23F3 Servidores MCP est\xE3o iniciando ({{count}} inicializando)...",
|
|
296078
|
+
"Note: First startup may take longer. Tool availability will update automatically.": "Nota: A primeira inicializa\xE7\xE3o pode demorar mais. A disponibilidade da ferramenta ser\xE1 atualizada automaticamente.",
|
|
296079
|
+
"Configured MCP servers:": "Servidores MCP configurados:",
|
|
296080
|
+
Ready: "Pronto",
|
|
296081
|
+
"Starting... (first startup may take longer)": "Iniciando... (a primeira inicializa\xE7\xE3o pode demorar mais)",
|
|
296082
|
+
Disconnected: "Desconectado",
|
|
296083
|
+
"{{count}} tool": "{{count}} ferramenta",
|
|
296084
|
+
"{{count}} tools": "{{count}} ferramentas",
|
|
296085
|
+
"{{count}} prompt": "{{count}} prompt",
|
|
296086
|
+
"{{count}} prompts": "{{count}} prompts",
|
|
296087
|
+
"(from {{extensionName}})": "(de {{extensionName}})",
|
|
296088
|
+
OAuth: "OAuth",
|
|
296089
|
+
"OAuth expired": "OAuth expirado",
|
|
296090
|
+
"OAuth not authenticated": "OAuth n\xE3o autenticado",
|
|
296091
|
+
"tools and prompts will appear when ready": "ferramentas e prompts aparecer\xE3o quando estiverem prontos",
|
|
296092
|
+
"{{count}} tools cached": "{{count}} ferramentas em cache",
|
|
296093
|
+
"Tools:": "Ferramentas:",
|
|
296094
|
+
"Parameters:": "Par\xE2metros:",
|
|
296095
|
+
"Prompts:": "Prompts:",
|
|
296096
|
+
Blocked: "Bloqueado",
|
|
296097
|
+
"\u{1F4A1} Tips:": "\u{1F4A1} Dicas:",
|
|
296098
|
+
Use: "Use",
|
|
296099
|
+
"to show server and tool descriptions": "para mostrar descri\xE7\xF5es de servidores e ferramentas",
|
|
296100
|
+
"to show tool parameter schemas": "para mostrar esquemas de par\xE2metros de ferramentas",
|
|
296101
|
+
"to hide descriptions": "para ocultar descri\xE7\xF5es",
|
|
296102
|
+
"to authenticate with OAuth-enabled servers": "para autenticar com servidores habilitados para OAuth",
|
|
296103
|
+
Press: "Pressione",
|
|
296104
|
+
"to toggle tool descriptions on/off": "para alternar descri\xE7\xF5es de ferramentas ligadas/desligadas",
|
|
296105
|
+
"Starting OAuth authentication for MCP server '{{name}}'...": "Iniciando autentica\xE7\xE3o OAuth para servidor MCP '{{name}}'...",
|
|
296106
|
+
"Restarting MCP servers...": "Reiniciando servidores MCP...",
|
|
296107
|
+
// ============================================================================
|
|
296108
|
+
// Startup Tips
|
|
296109
|
+
// ============================================================================
|
|
296110
|
+
"Tips:": "Dicas:",
|
|
296111
|
+
"Use /compress when the conversation gets long to summarize history and free up context.": "Use /compress quando a conversa ficar longa para resumir o hist\xF3rico e liberar contexto.",
|
|
296112
|
+
"Start a fresh idea with /clear or /new; the previous session stays available in history.": "Comece uma nova ideia com /clear ou /new; a sess\xE3o anterior permanece dispon\xEDvel no hist\xF3rico.",
|
|
296113
|
+
"Use /bug to submit issues to the maintainers when something goes off.": "Use /bug para enviar problemas aos mantenedores quando algo der errado.",
|
|
296114
|
+
"Switch auth type quickly with /auth.": "Troque o tipo de autentica\xE7\xE3o rapidamente com /auth.",
|
|
296115
|
+
"You can run any shell commands from Qwen Code using ! (e.g. !ls).": "Voc\xEA pode executar quaisquer comandos shell do Qwen Code usando ! (ex: !ls).",
|
|
296116
|
+
"Type / to open the command popup; Tab autocompletes slash commands and saved prompts.": "Digite / para abrir o popup de comandos; Tab autocompleta comandos de barra e prompts salvos.",
|
|
296117
|
+
"You can resume a previous conversation by running qwen --continue or qwen --resume.": "Voc\xEA pode retomar uma conversa anterior executando qwen --continue ou qwen --resume.",
|
|
296118
|
+
"You can switch permission mode quickly with Shift+Tab or /approval-mode.": "Voc\xEA pode alternar o modo de permiss\xE3o rapidamente com Shift+Tab ou /approval-mode.",
|
|
296119
|
+
// ============================================================================
|
|
296120
|
+
// Exit Screen / Stats
|
|
296121
|
+
// ============================================================================
|
|
296122
|
+
"Agent powering down. Goodbye!": "Agente desligando. Adeus!",
|
|
296123
|
+
"To continue this session, run": "Para continuar esta sess\xE3o, execute",
|
|
296124
|
+
"Interaction Summary": "Resumo da Intera\xE7\xE3o",
|
|
296125
|
+
"Session ID:": "ID da Sess\xE3o:",
|
|
296126
|
+
"Tool Calls:": "Chamadas de Ferramenta:",
|
|
296127
|
+
"Success Rate:": "Taxa de Sucesso:",
|
|
296128
|
+
"User Agreement:": "Acordo do Usu\xE1rio:",
|
|
296129
|
+
reviewed: "revisado",
|
|
296130
|
+
"Code Changes:": "Altera\xE7\xF5es de C\xF3digo:",
|
|
296131
|
+
Performance: "Desempenho",
|
|
296132
|
+
"Wall Time:": "Tempo Total:",
|
|
296133
|
+
"Agent Active:": "Agente Ativo:",
|
|
296134
|
+
"API Time:": "Tempo de API:",
|
|
296135
|
+
"Tool Time:": "Tempo de Ferramenta:",
|
|
296136
|
+
"Session Stats": "Estat\xEDsticas da Sess\xE3o",
|
|
296137
|
+
"Model Usage": "Uso do Modelo",
|
|
296138
|
+
Reqs: "Reqs",
|
|
296139
|
+
"Input Tokens": "Tokens de Entrada",
|
|
296140
|
+
"Output Tokens": "Tokens de Sa\xEDda",
|
|
296141
|
+
"Savings Highlight:": "Destaque de Economia:",
|
|
296142
|
+
"of input tokens were served from the cache, reducing costs.": "de tokens de entrada foram servidos do cache, reduzindo custos.",
|
|
296143
|
+
"Tip: For a full token breakdown, run `/stats model`.": "Dica: Para um detalhamento completo de tokens, execute `/stats model`.",
|
|
296144
|
+
"Model Stats For Nerds": "Estat\xEDsticas de Modelo Para Nerds",
|
|
296145
|
+
"Tool Stats For Nerds": "Estat\xEDsticas de Ferramenta Para Nerds",
|
|
296146
|
+
Metric: "M\xE9trica",
|
|
296147
|
+
API: "API",
|
|
296148
|
+
Requests: "Solicita\xE7\xF5es",
|
|
296149
|
+
Errors: "Erros",
|
|
296150
|
+
"Avg Latency": "Lat\xEAncia M\xE9dia",
|
|
296151
|
+
Tokens: "Tokens",
|
|
296152
|
+
Total: "Total",
|
|
296153
|
+
Prompt: "Prompt",
|
|
296154
|
+
Cached: "Cacheado",
|
|
296155
|
+
Thoughts: "Pensamentos",
|
|
296156
|
+
Tool: "Ferramenta",
|
|
296157
|
+
Output: "Sa\xEDda",
|
|
296158
|
+
"No API calls have been made in this session.": "Nenhuma chamada de API foi feita nesta sess\xE3o.",
|
|
296159
|
+
"Tool Name": "Nome da Ferramenta",
|
|
296160
|
+
Calls: "Chamadas",
|
|
296161
|
+
"Success Rate": "Taxa de Sucesso",
|
|
296162
|
+
"Avg Duration": "Dura\xE7\xE3o M\xE9dia",
|
|
296163
|
+
"User Decision Summary": "Resumo de Decis\xE3o do Usu\xE1rio",
|
|
296164
|
+
"Total Reviewed Suggestions:": "Total de Sugest\xF5es Revisadas:",
|
|
296165
|
+
" \xBB Accepted:": " \xBB Aceitas:",
|
|
296166
|
+
" \xBB Rejected:": " \xBB Rejeitadas:",
|
|
296167
|
+
" \xBB Modified:": " \xBB Modificadas:",
|
|
296168
|
+
" Overall Agreement Rate:": " Taxa Geral de Acordo:",
|
|
296169
|
+
"No tool calls have been made in this session.": "Nenhuma chamada de ferramenta foi feita nesta sess\xE3o.",
|
|
296170
|
+
"Session start time is unavailable, cannot calculate stats.": "Hora de in\xEDcio da sess\xE3o indispon\xEDvel, n\xE3o \xE9 poss\xEDvel calcular estat\xEDsticas.",
|
|
296171
|
+
// ============================================================================
|
|
296172
|
+
// Command Format Migration
|
|
296173
|
+
// ============================================================================
|
|
296174
|
+
"Command Format Migration": "Migra\xE7\xE3o de Formato de Comando",
|
|
296175
|
+
"Found {{count}} TOML command file:": "Encontrado {{count}} arquivo de comando TOML:",
|
|
296176
|
+
"Found {{count}} TOML command files:": "Encontrados {{count}} arquivos de comando TOML:",
|
|
296177
|
+
"... and {{count}} more": "... e mais {{count}}",
|
|
296178
|
+
"The TOML format is deprecated. Would you like to migrate them to Markdown format?": "O formato TOML est\xE1 obsoleto. Voc\xEA gostaria de migr\xE1-los para o formato Markdown?",
|
|
296179
|
+
"(Backups will be created and original files will be preserved)": "(Backups ser\xE3o criados e arquivos originais ser\xE3o preservados)",
|
|
296180
|
+
// ============================================================================
|
|
296181
|
+
// Loading Phrases
|
|
296182
|
+
// ============================================================================
|
|
296183
|
+
"Waiting for user confirmation...": "Aguardando confirma\xE7\xE3o do usu\xE1rio...",
|
|
296184
|
+
"(esc to cancel, {{time}})": "(esc para cancelar, {{time}})",
|
|
296185
|
+
WITTY_LOADING_PHRASES: [
|
|
296186
|
+
"Estou com sorte",
|
|
296187
|
+
"Enviando maravilhas...",
|
|
296188
|
+
"Pintando os serifos de volta...",
|
|
296189
|
+
"Navegando pelo mofo limoso...",
|
|
296190
|
+
"Consultando os esp\xEDritos digitais...",
|
|
296191
|
+
"Reticulando splines...",
|
|
296192
|
+
"Aquecendo os hamsters da IA...",
|
|
296193
|
+
"Perguntando \xE0 concha m\xE1gica...",
|
|
296194
|
+
"Gerando r\xE9plica espirituosa...",
|
|
296195
|
+
"Polindo os algoritmos...",
|
|
296196
|
+
"N\xE3o apresse a perfei\xE7\xE3o (ou meu c\xF3digo)...",
|
|
296197
|
+
"Preparando bytes frescos...",
|
|
296198
|
+
"Contando el\xE9trons...",
|
|
296199
|
+
"Engajando processadores cognitivos...",
|
|
296200
|
+
"Verificando erros de sintaxe no universo...",
|
|
296201
|
+
"Um momento, otimizando o humor...",
|
|
296202
|
+
"Embaralhando piadas...",
|
|
296203
|
+
"Desembara\xE7ando redes neurais...",
|
|
296204
|
+
"Compilando brilhantismo...",
|
|
296205
|
+
"Carregando humor.exe...",
|
|
296206
|
+
"Invocando a nuvem da sabedoria...",
|
|
296207
|
+
"Preparando uma resposta espirituosa...",
|
|
296208
|
+
"S\xF3 um segundo, estou depurando a realidade...",
|
|
296209
|
+
"Confundindo as op\xE7\xF5es...",
|
|
296210
|
+
"Sintonizando as frequ\xEAncias c\xF3smicas...",
|
|
296211
|
+
"Criando uma resposta digna da sua paci\xEAncia...",
|
|
296212
|
+
"Compilando os 1s e 0s...",
|
|
296213
|
+
"Resolvendo depend\xEAncias... e crises existenciais...",
|
|
296214
|
+
"Desfragmentando mem\xF3rias... tanto RAM quanto pessoais...",
|
|
296215
|
+
"Reiniciando o m\xF3dulo de humor...",
|
|
296216
|
+
"Fazendo cache do essencial (principalmente memes de gatos)...",
|
|
296217
|
+
"Otimizando para velocidade absurda",
|
|
296218
|
+
"Trocando bits... n\xE3o conte para os bytes...",
|
|
296219
|
+
"Coletando lixo... volto j\xE1...",
|
|
296220
|
+
"Montando a internet...",
|
|
296221
|
+
"Convertendo caf\xE9 em c\xF3digo...",
|
|
296222
|
+
"Atualizando a sintaxe da realidade...",
|
|
296223
|
+
"Reconectando as sinapses...",
|
|
296224
|
+
"Procurando um ponto e v\xEDrgula perdido...",
|
|
296225
|
+
"Lubrificando as engrenagens da m\xE1quina...",
|
|
296226
|
+
"Pr\xE9-aquecendo os servidores...",
|
|
296227
|
+
"Calibrando o capacitor de fluxo...",
|
|
296228
|
+
"Engajando o motor de improbabilidade...",
|
|
296229
|
+
"Canalizando a For\xE7a...",
|
|
296230
|
+
"Alinhando as estrelas para uma resposta ideal...",
|
|
296231
|
+
"Assim dizemos todos...",
|
|
296232
|
+
"Carregando a pr\xF3xima grande ideia...",
|
|
296233
|
+
"S\xF3 um momento, estou na zona...",
|
|
296234
|
+
"Preparando para deslumbr\xE1-lo com brilhantismo...",
|
|
296235
|
+
"S\xF3 um tique, estou polindo minha intelig\xEAncia...",
|
|
296236
|
+
"Segure firme, estou criando uma obra-prima...",
|
|
296237
|
+
"S\xF3 um instante, estou depurando o universo...",
|
|
296238
|
+
"S\xF3 um momento, estou alinhando os pixels...",
|
|
296239
|
+
"S\xF3 um segundo, estou otimizando o humor...",
|
|
296240
|
+
"S\xF3 um momento, estou ajustando os algoritmos...",
|
|
296241
|
+
"Velocidade de dobra engajada...",
|
|
296242
|
+
"Minerando mais cristais de Dilithium...",
|
|
296243
|
+
"N\xE3o entre em p\xE2nico...",
|
|
296244
|
+
"Seguindo o coelho branco...",
|
|
296245
|
+
"A verdade est\xE1 l\xE1 fora... em algum lugar...",
|
|
296246
|
+
"Soprando o cartucho...",
|
|
296247
|
+
"Carregando... Fa\xE7a um barrel roll!",
|
|
296248
|
+
"Aguardando o respawn...",
|
|
296249
|
+
"Terminando a Kessel Run em menos de 12 parsecs...",
|
|
296250
|
+
"O bolo n\xE3o \xE9 uma mentira, s\xF3 ainda est\xE1 carregando...",
|
|
296251
|
+
"Mexendo na tela de cria\xE7\xE3o de personagem...",
|
|
296252
|
+
"S\xF3 um momento, estou encontrando o meme certo...",
|
|
296253
|
+
"Pressionando 'A' para continuar...",
|
|
296254
|
+
"Pastoreando gatos digitais...",
|
|
296255
|
+
"Polindo os pixels...",
|
|
296256
|
+
"Encontrando um trocadilho adequado para a tela de carregamento...",
|
|
296257
|
+
"Distraindo voc\xEA com esta frase espirituosa...",
|
|
296258
|
+
"Quase l\xE1... provavelmente...",
|
|
296259
|
+
"Nossos hamsters est\xE3o trabalhando o mais r\xE1pido que podem...",
|
|
296260
|
+
"Dando um tapinha na cabe\xE7a do Cloudy...",
|
|
296261
|
+
"Acariciando o gato...",
|
|
296262
|
+
"Dando um Rickroll no meu chefe...",
|
|
296263
|
+
"Never gonna give you up, never gonna let you down...",
|
|
296264
|
+
"Tocando o baixo...",
|
|
296265
|
+
"Provando as amoras...",
|
|
296266
|
+
"Estou indo longe, estou indo pela velocidade...",
|
|
296267
|
+
"Isso \xE9 vida real? Ou \xE9 apenas fantasia?...",
|
|
296268
|
+
"Tenho um bom pressentimento sobre isso...",
|
|
296269
|
+
"Cutucando o urso...",
|
|
296270
|
+
"Fazendo pesquisa sobre os \xFAltimos memes...",
|
|
296271
|
+
"Descobrindo como tornar isso mais espirituoso...",
|
|
296272
|
+
"Hmmm... deixe-me pensar...",
|
|
296273
|
+
"O que voc\xEA chama de um peixe sem olhos? Um pxe...",
|
|
296274
|
+
"Por que o computador foi \xE0 terapia? Porque tinha muitos bytes...",
|
|
296275
|
+
"Por que programadores n\xE3o gostam da natureza? Porque tem muitos bugs...",
|
|
296276
|
+
"Por que programadores preferem o modo escuro? Porque a luz atrai bugs...",
|
|
296277
|
+
"Por que o desenvolvedor faliu? Porque usou todo o seu cache...",
|
|
296278
|
+
"O que voc\xEA pode fazer com um l\xE1pis quebrado? Nada, ele n\xE3o tem ponta...",
|
|
296279
|
+
"Aplicando manuten\xE7\xE3o percussiva...",
|
|
296280
|
+
"Procurando a orienta\xE7\xE3o correta do USB...",
|
|
296281
|
+
"Garantindo que a fuma\xE7a m\xE1gica permane\xE7a dentro dos fios...",
|
|
296282
|
+
"Tentando sair do Vim...",
|
|
296283
|
+
"Girando a roda do hamster...",
|
|
296284
|
+
"Isso n\xE3o \xE9 um bug, \xE9 um recurso n\xE3o documentado...",
|
|
296285
|
+
"Engajar.",
|
|
296286
|
+
"Eu voltarei... com uma resposta.",
|
|
296287
|
+
"Meu outro processo \xE9 uma TARDIS...",
|
|
296288
|
+
"Comungando com o esp\xEDrito da m\xE1quina...",
|
|
296289
|
+
"Deixando os pensamentos marinarem...",
|
|
296290
|
+
"Lembrei agora onde coloquei minhas chaves...",
|
|
296291
|
+
"Ponderando a orbe...",
|
|
296292
|
+
"Eu vi coisas que voc\xEAs n\xE3o acreditariam... como um usu\xE1rio que l\xEA mensagens de carregamento.",
|
|
296293
|
+
"Iniciando olhar pensativo...",
|
|
296294
|
+
"Qual \xE9 o lanche favorito de um computador? Microchips.",
|
|
296295
|
+
"Por que desenvolvedores Java usam \xF3culos? Porque eles n\xE3o C#.",
|
|
296296
|
+
"Carregando o laser... pew pew!",
|
|
296297
|
+
"Dividindo por zero... s\xF3 brincando!",
|
|
296298
|
+
"Procurando por um supervisor adulto... digo, processando.",
|
|
296299
|
+
"Fazendo bip boop.",
|
|
296300
|
+
"Buffering... porque at\xE9 as IAs precisam de um momento.",
|
|
296301
|
+
"Entrela\xE7ando part\xEDculas qu\xE2nticas para uma resposta mais r\xE1pida...",
|
|
296302
|
+
"Polindo o cromo... nos algoritmos.",
|
|
296303
|
+
"Voc\xEA n\xE3o est\xE1 entretido? (Trabalhando nisso!)",
|
|
296304
|
+
"Invocando os gremlins do c\xF3digo... para ajudar, \xE9 claro.",
|
|
296305
|
+
"S\xF3 esperando o som da conex\xE3o discada terminar...",
|
|
296306
|
+
"Recalibrando o humor\xF4metro.",
|
|
296307
|
+
"Minha outra tela de carregamento \xE9 ainda mais engra\xE7ada.",
|
|
296308
|
+
"Tenho quase certeza que tem um gato andando no teclado em algum lugar...",
|
|
296309
|
+
"Aumentando... Aumentando... Ainda carregando.",
|
|
296310
|
+
"N\xE3o \xE9 um bug, \xE9 um recurso... desta tela de carregamento.",
|
|
296311
|
+
"Voc\xEA j\xE1 tentou desligar e ligar de novo? (A tela de carregamento, n\xE3o eu.)",
|
|
296312
|
+
"Construindo pilares adicionais..."
|
|
296313
|
+
],
|
|
296314
|
+
// ============================================================================
|
|
296315
|
+
// Extension Settings Input
|
|
296316
|
+
// ============================================================================
|
|
296317
|
+
"Enter value...": "Digite o valor...",
|
|
296318
|
+
"Enter sensitive value...": "Digite o valor sens\xEDvel...",
|
|
296319
|
+
"Press Enter to submit, Escape to cancel": "Pressione Enter para enviar, Escape para cancelar",
|
|
296320
|
+
// ============================================================================
|
|
296321
|
+
// Command Migration Tool
|
|
296322
|
+
// ============================================================================
|
|
296323
|
+
"Markdown file already exists: {{filename}}": "Arquivo Markdown j\xE1 existe: {{filename}}",
|
|
296324
|
+
"TOML Command Format Deprecation Notice": "Aviso de Obsolesc\xEAncia do Formato de Comando TOML",
|
|
296325
|
+
"Found {{count}} command file(s) in TOML format:": "Encontrado(s) {{count}} arquivo(s) de comando no formato TOML:",
|
|
296326
|
+
"The TOML format for commands is being deprecated in favor of Markdown format.": "O formato TOML para comandos est\xE1 sendo descontinuado em favor do formato Markdown.",
|
|
296327
|
+
"Markdown format is more readable and easier to edit.": "O formato Markdown \xE9 mais leg\xEDvel e f\xE1cil de editar.",
|
|
296328
|
+
"You can migrate these files automatically using:": "Voc\xEA pode migrar esses arquivos automaticamente usando:",
|
|
296329
|
+
"Or manually convert each file:": "Ou converter manualmente cada arquivo:",
|
|
296330
|
+
'TOML: prompt = "..." / description = "..."': 'TOML: prompt = "..." / description = "..."',
|
|
296331
|
+
"Markdown: YAML frontmatter + content": "Markdown: YAML frontmatter + conte\xFAdo",
|
|
296332
|
+
"The migration tool will:": "A ferramenta de migra\xE7\xE3o ir\xE1:",
|
|
296333
|
+
"Convert TOML files to Markdown": "Converter arquivos TOML para Markdown",
|
|
296334
|
+
"Create backups of original files": "Criar backups dos arquivos originais",
|
|
296335
|
+
"Preserve all command functionality": "Preservar toda a funcionalidade do comando",
|
|
296336
|
+
"TOML format will continue to work for now, but migration is recommended.": "O formato TOML continuar\xE1 a funcionar por enquanto, mas a migra\xE7\xE3o \xE9 recomendada.",
|
|
296337
|
+
// ============================================================================
|
|
296338
|
+
// Extensions - Explore Command
|
|
296339
|
+
// ============================================================================
|
|
296340
|
+
"Open extensions page in your browser": "Abrir p\xE1gina de extens\xF5es no seu navegador",
|
|
296341
|
+
"Unknown extensions source: {{source}}.": "Fonte de extens\xF5es desconhecida: {{source}}.",
|
|
296342
|
+
"Would open extensions page in your browser: {{url}} (skipped in test environment)": "Abriria a p\xE1gina de extens\xF5es no seu navegador: {{url}} (pulado no ambiente de teste)",
|
|
296343
|
+
"View available extensions at {{url}}": "Ver extens\xF5es dispon\xEDveis em {{url}}",
|
|
296344
|
+
"Opening extensions page in your browser: {{url}}": "Abrindo p\xE1gina de extens\xF5es no seu navegador: {{url}}",
|
|
296345
|
+
"Failed to open browser. Check out the extensions gallery at {{url}}": "Falha ao abrir o navegador. Confira a galeria de extens\xF5es em {{url}}"
|
|
296346
|
+
};
|
|
296347
|
+
}
|
|
296348
|
+
});
|
|
296349
|
+
|
|
294712
296350
|
// packages/cli/src/i18n/locales/ru.js
|
|
294713
296351
|
var ru_exports = {};
|
|
294714
296352
|
__export(ru_exports, {
|
|
@@ -295094,6 +296732,17 @@ var init_ru = __esm({
|
|
|
295094
296732
|
"Update all extensions.": "\u041E\u0431\u043D\u043E\u0432\u0438\u0442\u044C \u0432\u0441\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u0438\u044F.",
|
|
295095
296733
|
"Either an extension name or --all must be provided": "\u041D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E \u0443\u043A\u0430\u0437\u0430\u0442\u044C \u0438\u043C\u044F \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u0438\u044F \u0438\u043B\u0438 --all",
|
|
295096
296734
|
"Lists installed extensions.": "\u041F\u043E\u043A\u0430\u0437\u044B\u0432\u0430\u0435\u0442 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044B\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u0438\u044F.",
|
|
296735
|
+
"Path:": "\u041F\u0443\u0442\u044C:",
|
|
296736
|
+
"Source:": "\u0418\u0441\u0442\u043E\u0447\u043D\u0438\u043A:",
|
|
296737
|
+
"Type:": "\u0422\u0438\u043F:",
|
|
296738
|
+
"Ref:": "\u0421\u0441\u044B\u043B\u043A\u0430:",
|
|
296739
|
+
"Release tag:": "\u0422\u0435\u0433 \u0440\u0435\u043B\u0438\u0437\u0430:",
|
|
296740
|
+
"Enabled (User):": "\u0412\u043A\u043B\u044E\u0447\u0435\u043D\u043E (\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C):",
|
|
296741
|
+
"Enabled (Workspace):": "\u0412\u043A\u043B\u044E\u0447\u0435\u043D\u043E (\u0420\u0430\u0431\u043E\u0447\u0435\u0435 \u043F\u0440\u043E\u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u043E):",
|
|
296742
|
+
"Context files:": "\u041A\u043E\u043D\u0442\u0435\u043A\u0441\u0442\u043D\u044B\u0435 \u0444\u0430\u0439\u043B\u044B:",
|
|
296743
|
+
"Skills:": "\u041D\u0430\u0432\u044B\u043A\u0438:",
|
|
296744
|
+
"Agents:": "\u0410\u0433\u0435\u043D\u0442\u044B:",
|
|
296745
|
+
"MCP servers:": "MCP-\u0441\u0435\u0440\u0432\u0435\u0440\u044B:",
|
|
295097
296746
|
"Link extension failed to install.": "\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u0441\u0432\u044F\u0437\u0430\u043D\u043D\u043E\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u0438\u0435.",
|
|
295098
296747
|
'Extension "{{name}}" linked successfully and enabled.': '\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u0438\u0435 "{{name}}" \u0443\u0441\u043F\u0435\u0448\u043D\u043E \u0441\u0432\u044F\u0437\u0430\u043D\u043E \u0438 \u0432\u043A\u043B\u044E\u0447\u0435\u043D\u043E.',
|
|
295099
296748
|
"Links an extension from a local path. Updates made to the local path will always be reflected.": "\u0421\u0432\u044F\u0437\u044B\u0432\u0430\u0435\u0442 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u0438\u0435 \u0438\u0437 \u043B\u043E\u043A\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043F\u0443\u0442\u0438. \u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0432 \u043B\u043E\u043A\u0430\u043B\u044C\u043D\u043E\u043C \u043F\u0443\u0442\u0438 \u0431\u0443\u0434\u0443\u0442 \u0432\u0441\u0435\u0433\u0434\u0430 \u043E\u0442\u0440\u0430\u0436\u0430\u0442\u044C\u0441\u044F.",
|
|
@@ -295151,18 +296800,19 @@ var init_ru = __esm({
|
|
|
295151
296800
|
// ============================================================================
|
|
295152
296801
|
// Команды - Язык
|
|
295153
296802
|
// ============================================================================
|
|
295154
|
-
"Invalid language. Available:
|
|
296803
|
+
"Invalid language. Available: {{options}}": "\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 \u044F\u0437\u044B\u043A. \u0414\u043E\u0441\u0442\u0443\u043F\u043D\u044B: {{options}}",
|
|
295155
296804
|
"Language subcommands do not accept additional arguments.": "\u041F\u043E\u0434\u043A\u043E\u043C\u0430\u043D\u0434\u044B \u044F\u0437\u044B\u043A\u0430 \u043D\u0435 \u043F\u0440\u0438\u043D\u0438\u043C\u0430\u044E\u0442 \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0445 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442\u043E\u0432.",
|
|
295156
296805
|
"Current UI language: {{lang}}": "\u0422\u0435\u043A\u0443\u0449\u0438\u0439 \u044F\u0437\u044B\u043A \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430: {{lang}}",
|
|
295157
296806
|
"Current LLM output language: {{lang}}": "\u0422\u0435\u043A\u0443\u0449\u0438\u0439 \u044F\u0437\u044B\u043A \u0432\u044B\u0432\u043E\u0434\u0430 LLM: {{lang}}",
|
|
295158
296807
|
"LLM output language not set": "\u042F\u0437\u044B\u043A \u0432\u044B\u0432\u043E\u0434\u0430 LLM \u043D\u0435 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D",
|
|
295159
296808
|
"Set UI language": "\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0430 \u044F\u0437\u044B\u043A\u0430 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430",
|
|
295160
296809
|
"Set LLM output language": "\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0430 \u044F\u0437\u044B\u043A\u0430 \u0432\u044B\u0432\u043E\u0434\u0430 LLM",
|
|
295161
|
-
"Usage: /language ui [
|
|
296810
|
+
"Usage: /language ui [{{options}}]": "\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u0435: /language ui [{{options}}]",
|
|
295162
296811
|
"Usage: /language output <language>": "\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u0435: /language output <language>",
|
|
295163
296812
|
"Example: /language output \u4E2D\u6587": "\u041F\u0440\u0438\u043C\u0435\u0440: /language output \u4E2D\u6587",
|
|
295164
296813
|
"Example: /language output English": "\u041F\u0440\u0438\u043C\u0435\u0440: /language output English",
|
|
295165
296814
|
"Example: /language output \u65E5\u672C\u8A9E": "\u041F\u0440\u0438\u043C\u0435\u0440: /language output \u65E5\u672C\u8A9E",
|
|
296815
|
+
"Example: /language output Portugu\xEAs": "\u041F\u0440\u0438\u043C\u0435\u0440: /language output Portugu\xEAs",
|
|
295166
296816
|
"UI language changed to {{lang}}": "\u042F\u0437\u044B\u043A \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 \u0438\u0437\u043C\u0435\u043D\u0435\u043D \u043D\u0430 {{lang}}",
|
|
295167
296817
|
"LLM output language set to {{lang}}": "\u042F\u0437\u044B\u043A \u0432\u044B\u0432\u043E\u0434\u0430 LLM \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D \u043D\u0430 {{lang}}",
|
|
295168
296818
|
"LLM output language rule file generated at {{path}}": "\u0424\u0430\u0439\u043B \u043F\u0440\u0430\u0432\u0438\u043B \u044F\u0437\u044B\u043A\u0430 \u0432\u044B\u0432\u043E\u0434\u0430 LLM \u0441\u043E\u0437\u0434\u0430\u043D \u0432 {{path}}",
|
|
@@ -295172,10 +296822,7 @@ var init_ru = __esm({
|
|
|
295172
296822
|
"Available subcommands:": "\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u043F\u043E\u0434\u043A\u043E\u043C\u0430\u043D\u0434\u044B:",
|
|
295173
296823
|
"To request additional UI language packs, please open an issue on GitHub.": "\u0414\u043B\u044F \u0437\u0430\u043F\u0440\u043E\u0441\u0430 \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0445 \u044F\u0437\u044B\u043A\u043E\u0432\u044B\u0445 \u043F\u0430\u043A\u0435\u0442\u043E\u0432 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0441\u043E\u0437\u0434\u0430\u0439\u0442\u0435 \u043E\u0431\u0440\u0430\u0449\u0435\u043D\u0438\u0435 \u043D\u0430 GitHub.",
|
|
295174
296824
|
"Available options:": "\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u0432\u0430\u0440\u0438\u0430\u043D\u0442\u044B:",
|
|
295175
|
-
"
|
|
295176
|
-
" - en-US: English": " - en-US: \u0410\u043D\u0433\u043B\u0438\u0439\u0441\u043A\u0438\u0439",
|
|
295177
|
-
"Set UI language to Simplified Chinese (zh-CN)": "\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u044F\u0437\u044B\u043A \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 \u043D\u0430 \u0443\u043F\u0440\u043E\u0449\u0435\u043D\u043D\u044B\u0439 \u043A\u0438\u0442\u0430\u0439\u0441\u043A\u0438\u0439 (zh-CN)",
|
|
295178
|
-
"Set UI language to English (en-US)": "\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u044F\u0437\u044B\u043A \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 \u043D\u0430 \u0430\u043D\u0433\u043B\u0438\u0439\u0441\u043A\u0438\u0439 (en-US)",
|
|
296825
|
+
"Set UI language to {{name}}": "\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u044F\u0437\u044B\u043A \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 \u043D\u0430 {{name}}",
|
|
295179
296826
|
// ============================================================================
|
|
295180
296827
|
// Команды - Режим подтверждения
|
|
295181
296828
|
// ============================================================================
|
|
@@ -296120,6 +297767,17 @@ var init_zh = __esm({
|
|
|
296120
297767
|
"Update all extensions.": "\u66F4\u65B0\u6240\u6709\u6269\u5C55\u3002",
|
|
296121
297768
|
"Either an extension name or --all must be provided": "\u5FC5\u987B\u63D0\u4F9B\u6269\u5C55\u540D\u79F0\u6216 --all",
|
|
296122
297769
|
"Lists installed extensions.": "\u5217\u51FA\u5DF2\u5B89\u88C5\u7684\u6269\u5C55\u3002",
|
|
297770
|
+
"Path:": "\u8DEF\u5F84\uFF1A",
|
|
297771
|
+
"Source:": "\u6765\u6E90\uFF1A",
|
|
297772
|
+
"Type:": "\u7C7B\u578B\uFF1A",
|
|
297773
|
+
"Ref:": "\u5F15\u7528\uFF1A",
|
|
297774
|
+
"Release tag:": "\u53D1\u5E03\u6807\u7B7E\uFF1A",
|
|
297775
|
+
"Enabled (User):": "\u5DF2\u542F\u7528\uFF08\u7528\u6237\uFF09\uFF1A",
|
|
297776
|
+
"Enabled (Workspace):": "\u5DF2\u542F\u7528\uFF08\u5DE5\u4F5C\u533A\uFF09\uFF1A",
|
|
297777
|
+
"Context files:": "\u4E0A\u4E0B\u6587\u6587\u4EF6\uFF1A",
|
|
297778
|
+
"Skills:": "\u6280\u80FD\uFF1A",
|
|
297779
|
+
"Agents:": "\u4EE3\u7406\uFF1A",
|
|
297780
|
+
"MCP servers:": "MCP \u670D\u52A1\u5668\uFF1A",
|
|
296123
297781
|
"Link extension failed to install.": "\u94FE\u63A5\u6269\u5C55\u5B89\u88C5\u5931\u8D25\u3002",
|
|
296124
297782
|
'Extension "{{name}}" linked successfully and enabled.': '\u6269\u5C55 "{{name}}" \u94FE\u63A5\u6210\u529F\u5E76\u5DF2\u542F\u7528\u3002',
|
|
296125
297783
|
"Links an extension from a local path. Updates made to the local path will always be reflected.": "\u4ECE\u672C\u5730\u8DEF\u5F84\u94FE\u63A5\u6269\u5C55\u3002\u5BF9\u672C\u5730\u8DEF\u5F84\u7684\u66F4\u65B0\u5C06\u59CB\u7EC8\u53CD\u6620\u3002",
|
|
@@ -296177,18 +297835,19 @@ var init_zh = __esm({
|
|
|
296177
297835
|
// ============================================================================
|
|
296178
297836
|
// Commands - Language
|
|
296179
297837
|
// ============================================================================
|
|
296180
|
-
"Invalid language. Available:
|
|
297838
|
+
"Invalid language. Available: {{options}}": "\u65E0\u6548\u7684\u8BED\u8A00\u3002\u53EF\u7528\u9009\u9879\uFF1A{{options}}",
|
|
296181
297839
|
"Language subcommands do not accept additional arguments.": "\u8BED\u8A00\u5B50\u547D\u4EE4\u4E0D\u63A5\u53D7\u989D\u5916\u53C2\u6570",
|
|
296182
297840
|
"Current UI language: {{lang}}": "\u5F53\u524D UI \u8BED\u8A00\uFF1A{{lang}}",
|
|
296183
297841
|
"Current LLM output language: {{lang}}": "\u5F53\u524D LLM \u8F93\u51FA\u8BED\u8A00\uFF1A{{lang}}",
|
|
296184
297842
|
"LLM output language not set": "\u672A\u8BBE\u7F6E LLM \u8F93\u51FA\u8BED\u8A00",
|
|
296185
297843
|
"Set UI language": "\u8BBE\u7F6E UI \u8BED\u8A00",
|
|
296186
297844
|
"Set LLM output language": "\u8BBE\u7F6E LLM \u8F93\u51FA\u8BED\u8A00",
|
|
296187
|
-
"Usage: /language ui [
|
|
297845
|
+
"Usage: /language ui [{{options}}]": "\u7528\u6CD5\uFF1A/language ui [{{options}}]",
|
|
296188
297846
|
"Usage: /language output <language>": "\u7528\u6CD5\uFF1A/language output <\u8BED\u8A00>",
|
|
296189
297847
|
"Example: /language output \u4E2D\u6587": "\u793A\u4F8B\uFF1A/language output \u4E2D\u6587",
|
|
296190
297848
|
"Example: /language output English": "\u793A\u4F8B\uFF1A/language output English",
|
|
296191
297849
|
"Example: /language output \u65E5\u672C\u8A9E": "\u793A\u4F8B\uFF1A/language output \u65E5\u672C\u8A9E",
|
|
297850
|
+
"Example: /language output Portugu\xEAs": "\u793A\u4F8B\uFF1A/language output Portugu\xEAs",
|
|
296192
297851
|
"UI language changed to {{lang}}": "UI \u8BED\u8A00\u5DF2\u66F4\u6539\u4E3A {{lang}}",
|
|
296193
297852
|
"LLM output language set to {{lang}}": "LLM \u8F93\u51FA\u8BED\u8A00\u5DF2\u8BBE\u7F6E\u4E3A {{lang}}",
|
|
296194
297853
|
"LLM output language rule file generated at {{path}}": "LLM \u8F93\u51FA\u8BED\u8A00\u89C4\u5219\u6587\u4EF6\u5DF2\u751F\u6210\u4E8E {{path}}",
|
|
@@ -296198,10 +297857,7 @@ var init_zh = __esm({
|
|
|
296198
297857
|
"Available subcommands:": "\u53EF\u7528\u7684\u5B50\u547D\u4EE4\uFF1A",
|
|
296199
297858
|
"To request additional UI language packs, please open an issue on GitHub.": "\u5982\u9700\u8BF7\u6C42\u5176\u4ED6 UI \u8BED\u8A00\u5305\uFF0C\u8BF7\u5728 GitHub \u4E0A\u63D0\u4EA4 issue",
|
|
296200
297859
|
"Available options:": "\u53EF\u7528\u9009\u9879\uFF1A",
|
|
296201
|
-
"
|
|
296202
|
-
" - en-US: English": " - en-US: English",
|
|
296203
|
-
"Set UI language to Simplified Chinese (zh-CN)": "\u5C06 UI \u8BED\u8A00\u8BBE\u7F6E\u4E3A\u7B80\u4F53\u4E2D\u6587 (zh-CN)",
|
|
296204
|
-
"Set UI language to English (en-US)": "\u5C06 UI \u8BED\u8A00\u8BBE\u7F6E\u4E3A\u82F1\u8BED (en-US)",
|
|
297860
|
+
"Set UI language to {{name}}": "\u5C06 UI \u8BED\u8A00\u8BBE\u7F6E\u4E3A {{name}}",
|
|
296205
297861
|
// ============================================================================
|
|
296206
297862
|
// Commands - Approval Mode
|
|
296207
297863
|
// ============================================================================
|
|
@@ -317865,7 +319521,7 @@ var require_agent3 = __commonJS({
|
|
|
317865
319521
|
return opts && opts.connections === 1 ? new Client3(origin, opts) : new Pool(origin, opts);
|
|
317866
319522
|
}
|
|
317867
319523
|
__name(defaultFactory, "defaultFactory");
|
|
317868
|
-
var
|
|
319524
|
+
var Agent4 = class extends DispatcherBase {
|
|
317869
319525
|
static {
|
|
317870
319526
|
__name(this, "Agent");
|
|
317871
319527
|
}
|
|
@@ -317940,7 +319596,7 @@ var require_agent3 = __commonJS({
|
|
|
317940
319596
|
await Promise.all(destroyPromises);
|
|
317941
319597
|
}
|
|
317942
319598
|
};
|
|
317943
|
-
module2.exports =
|
|
319599
|
+
module2.exports = Agent4;
|
|
317944
319600
|
}
|
|
317945
319601
|
});
|
|
317946
319602
|
|
|
@@ -317951,7 +319607,7 @@ var require_proxy_agent2 = __commonJS({
|
|
|
317951
319607
|
init_esbuild_shims();
|
|
317952
319608
|
var { kProxy, kClose, kDestroy, kDispatch, kInterceptors } = require_symbols6();
|
|
317953
319609
|
var { URL: URL5 } = __require("node:url");
|
|
317954
|
-
var
|
|
319610
|
+
var Agent4 = require_agent3();
|
|
317955
319611
|
var Pool = require_pool3();
|
|
317956
319612
|
var DispatcherBase = require_dispatcher_base2();
|
|
317957
319613
|
var { InvalidArgumentError, RequestAbortedError, SecureProxyConnectionError } = require_errors5();
|
|
@@ -318029,7 +319685,7 @@ var require_proxy_agent2 = __commonJS({
|
|
|
318029
319685
|
return this.#client.destroy(err);
|
|
318030
319686
|
}
|
|
318031
319687
|
};
|
|
318032
|
-
var
|
|
319688
|
+
var ProxyAgent6 = class extends DispatcherBase {
|
|
318033
319689
|
static {
|
|
318034
319690
|
__name(this, "ProxyAgent");
|
|
318035
319691
|
}
|
|
@@ -318075,7 +319731,7 @@ var require_proxy_agent2 = __commonJS({
|
|
|
318075
319731
|
return agentFactory(origin2, options2);
|
|
318076
319732
|
}, "factory");
|
|
318077
319733
|
this[kClient] = clientFactory(url2, { connect });
|
|
318078
|
-
this[kAgent] = new
|
|
319734
|
+
this[kAgent] = new Agent4({
|
|
318079
319735
|
...opts,
|
|
318080
319736
|
factory,
|
|
318081
319737
|
connect: /* @__PURE__ */ __name(async (opts2, callback) => {
|
|
@@ -318175,7 +319831,7 @@ var require_proxy_agent2 = __commonJS({
|
|
|
318175
319831
|
}
|
|
318176
319832
|
}
|
|
318177
319833
|
__name(throwIfProxyAuthIsSent, "throwIfProxyAuthIsSent");
|
|
318178
|
-
module2.exports =
|
|
319834
|
+
module2.exports = ProxyAgent6;
|
|
318179
319835
|
}
|
|
318180
319836
|
});
|
|
318181
319837
|
|
|
@@ -318186,14 +319842,14 @@ var require_env_http_proxy_agent2 = __commonJS({
|
|
|
318186
319842
|
init_esbuild_shims();
|
|
318187
319843
|
var DispatcherBase = require_dispatcher_base2();
|
|
318188
319844
|
var { kClose, kDestroy, kClosed, kDestroyed, kDispatch, kNoProxyAgent, kHttpProxyAgent, kHttpsProxyAgent } = require_symbols6();
|
|
318189
|
-
var
|
|
318190
|
-
var
|
|
319845
|
+
var ProxyAgent6 = require_proxy_agent2();
|
|
319846
|
+
var Agent4 = require_agent3();
|
|
318191
319847
|
var DEFAULT_PORTS = {
|
|
318192
319848
|
"http:": 80,
|
|
318193
319849
|
"https:": 443
|
|
318194
319850
|
};
|
|
318195
319851
|
var experimentalWarned = false;
|
|
318196
|
-
var
|
|
319852
|
+
var EnvHttpProxyAgent2 = class extends DispatcherBase {
|
|
318197
319853
|
static {
|
|
318198
319854
|
__name(this, "EnvHttpProxyAgent");
|
|
318199
319855
|
}
|
|
@@ -318210,16 +319866,16 @@ var require_env_http_proxy_agent2 = __commonJS({
|
|
|
318210
319866
|
});
|
|
318211
319867
|
}
|
|
318212
319868
|
const { httpProxy, httpsProxy, noProxy, ...agentOpts } = opts;
|
|
318213
|
-
this[kNoProxyAgent] = new
|
|
319869
|
+
this[kNoProxyAgent] = new Agent4(agentOpts);
|
|
318214
319870
|
const HTTP_PROXY = httpProxy ?? process.env.http_proxy ?? process.env.HTTP_PROXY;
|
|
318215
319871
|
if (HTTP_PROXY) {
|
|
318216
|
-
this[kHttpProxyAgent] = new
|
|
319872
|
+
this[kHttpProxyAgent] = new ProxyAgent6({ ...agentOpts, uri: HTTP_PROXY });
|
|
318217
319873
|
} else {
|
|
318218
319874
|
this[kHttpProxyAgent] = this[kNoProxyAgent];
|
|
318219
319875
|
}
|
|
318220
319876
|
const HTTPS_PROXY = httpsProxy ?? process.env.https_proxy ?? process.env.HTTPS_PROXY;
|
|
318221
319877
|
if (HTTPS_PROXY) {
|
|
318222
|
-
this[kHttpsProxyAgent] = new
|
|
319878
|
+
this[kHttpsProxyAgent] = new ProxyAgent6({ ...agentOpts, uri: HTTPS_PROXY });
|
|
318223
319879
|
} else {
|
|
318224
319880
|
this[kHttpsProxyAgent] = this[kHttpProxyAgent];
|
|
318225
319881
|
}
|
|
@@ -318315,7 +319971,7 @@ var require_env_http_proxy_agent2 = __commonJS({
|
|
|
318315
319971
|
return process.env.no_proxy ?? process.env.NO_PROXY ?? "";
|
|
318316
319972
|
}
|
|
318317
319973
|
};
|
|
318318
|
-
module2.exports =
|
|
319974
|
+
module2.exports = EnvHttpProxyAgent2;
|
|
318319
319975
|
}
|
|
318320
319976
|
});
|
|
318321
319977
|
|
|
@@ -320616,7 +322272,7 @@ var require_mock_agent2 = __commonJS({
|
|
|
320616
322272
|
"use strict";
|
|
320617
322273
|
init_esbuild_shims();
|
|
320618
322274
|
var { kClients } = require_symbols6();
|
|
320619
|
-
var
|
|
322275
|
+
var Agent4 = require_agent3();
|
|
320620
322276
|
var {
|
|
320621
322277
|
kAgent,
|
|
320622
322278
|
kMockAgentSet,
|
|
@@ -320646,7 +322302,7 @@ var require_mock_agent2 = __commonJS({
|
|
|
320646
322302
|
if (opts?.agent && typeof opts.agent.dispatch !== "function") {
|
|
320647
322303
|
throw new InvalidArgumentError("Argument opts.agent must implement Agent");
|
|
320648
322304
|
}
|
|
320649
|
-
const agent = opts?.agent ? opts.agent : new
|
|
322305
|
+
const agent = opts?.agent ? opts.agent : new Agent4(opts);
|
|
320650
322306
|
this[kAgent] = agent;
|
|
320651
322307
|
this[kClients] = agent[kClients];
|
|
320652
322308
|
this[kOptions] = buildMockOptions(opts);
|
|
@@ -320751,9 +322407,9 @@ var require_global4 = __commonJS({
|
|
|
320751
322407
|
init_esbuild_shims();
|
|
320752
322408
|
var globalDispatcher = Symbol.for("undici.globalDispatcher.1");
|
|
320753
322409
|
var { InvalidArgumentError } = require_errors5();
|
|
320754
|
-
var
|
|
322410
|
+
var Agent4 = require_agent3();
|
|
320755
322411
|
if (getGlobalDispatcher() === void 0) {
|
|
320756
|
-
setGlobalDispatcher3(new
|
|
322412
|
+
setGlobalDispatcher3(new Agent4());
|
|
320757
322413
|
}
|
|
320758
322414
|
function setGlobalDispatcher3(agent) {
|
|
320759
322415
|
if (!agent || typeof agent.dispatch !== "function") {
|
|
@@ -328218,9 +329874,9 @@ var require_undici2 = __commonJS({
|
|
|
328218
329874
|
var Dispatcher = require_dispatcher2();
|
|
328219
329875
|
var Pool = require_pool3();
|
|
328220
329876
|
var BalancedPool = require_balanced_pool2();
|
|
328221
|
-
var
|
|
328222
|
-
var
|
|
328223
|
-
var
|
|
329877
|
+
var Agent4 = require_agent3();
|
|
329878
|
+
var ProxyAgent6 = require_proxy_agent2();
|
|
329879
|
+
var EnvHttpProxyAgent2 = require_env_http_proxy_agent2();
|
|
328224
329880
|
var RetryAgent = require_retry_agent2();
|
|
328225
329881
|
var errors = require_errors5();
|
|
328226
329882
|
var util4 = require_util22();
|
|
@@ -328241,9 +329897,9 @@ var require_undici2 = __commonJS({
|
|
|
328241
329897
|
module2.exports.Client = Client3;
|
|
328242
329898
|
module2.exports.Pool = Pool;
|
|
328243
329899
|
module2.exports.BalancedPool = BalancedPool;
|
|
328244
|
-
module2.exports.Agent =
|
|
328245
|
-
module2.exports.ProxyAgent =
|
|
328246
|
-
module2.exports.EnvHttpProxyAgent =
|
|
329900
|
+
module2.exports.Agent = Agent4;
|
|
329901
|
+
module2.exports.ProxyAgent = ProxyAgent6;
|
|
329902
|
+
module2.exports.EnvHttpProxyAgent = EnvHttpProxyAgent2;
|
|
328247
329903
|
module2.exports.RetryAgent = RetryAgent;
|
|
328248
329904
|
module2.exports.RetryHandler = RetryHandler;
|
|
328249
329905
|
module2.exports.DecoratorHandler = DecoratorHandler;
|
|
@@ -351921,7 +353577,7 @@ var patchConsole = /* @__PURE__ */ __name((callback) => {
|
|
|
351921
353577
|
var dist_default2 = patchConsole;
|
|
351922
353578
|
|
|
351923
353579
|
// node_modules/ink/build/ink.js
|
|
351924
|
-
var
|
|
353580
|
+
var import_constants30 = __toESM(require_constants12(), 1);
|
|
351925
353581
|
|
|
351926
353582
|
// node_modules/yoga-layout/dist/src/index.js
|
|
351927
353583
|
init_esbuild_shims();
|
|
@@ -353984,7 +355640,7 @@ __name(wrapAnsi, "wrapAnsi");
|
|
|
353984
355640
|
// node_modules/ink/build/reconciler.js
|
|
353985
355641
|
init_esbuild_shims();
|
|
353986
355642
|
var import_react_reconciler = __toESM(require_react_reconciler(), 1);
|
|
353987
|
-
var
|
|
355643
|
+
var import_constants29 = __toESM(require_constants12(), 1);
|
|
353988
355644
|
import process16 from "node:process";
|
|
353989
355645
|
var import_react = __toESM(require_react(), 1);
|
|
353990
355646
|
|
|
@@ -354955,7 +356611,7 @@ var cleanupYogaNode = /* @__PURE__ */ __name((node) => {
|
|
|
354955
356611
|
node?.unsetMeasureFunc();
|
|
354956
356612
|
node?.freeRecursive();
|
|
354957
356613
|
}, "cleanupYogaNode");
|
|
354958
|
-
var currentUpdatePriority =
|
|
356614
|
+
var currentUpdatePriority = import_constants29.NoEventPriority;
|
|
354959
356615
|
var currentRootNode;
|
|
354960
356616
|
var reconciler_default = (0, import_react_reconciler.default)({
|
|
354961
356617
|
getRootHostContext: /* @__PURE__ */ __name(() => ({
|
|
@@ -355112,10 +356768,10 @@ var reconciler_default = (0, import_react_reconciler.default)({
|
|
|
355112
356768
|
},
|
|
355113
356769
|
getCurrentUpdatePriority: /* @__PURE__ */ __name(() => currentUpdatePriority, "getCurrentUpdatePriority"),
|
|
355114
356770
|
resolveUpdatePriority() {
|
|
355115
|
-
if (currentUpdatePriority !==
|
|
356771
|
+
if (currentUpdatePriority !== import_constants29.NoEventPriority) {
|
|
355116
356772
|
return currentUpdatePriority;
|
|
355117
356773
|
}
|
|
355118
|
-
return
|
|
356774
|
+
return import_constants29.DefaultEventPriority;
|
|
355119
356775
|
},
|
|
355120
356776
|
maySuspendCommit() {
|
|
355121
356777
|
return false;
|
|
@@ -357633,7 +359289,7 @@ var Ink = class {
|
|
|
357633
359289
|
this.fullStaticOutput = "";
|
|
357634
359290
|
this.container = reconciler_default.createContainer(
|
|
357635
359291
|
this.rootNode,
|
|
357636
|
-
|
|
359292
|
+
import_constants30.LegacyRoot,
|
|
357637
359293
|
null,
|
|
357638
359294
|
false,
|
|
357639
359295
|
null,
|
|
@@ -359055,6 +360711,68 @@ __name(isWorkspaceTrusted, "isWorkspaceTrusted");
|
|
|
359055
360711
|
|
|
359056
360712
|
// packages/cli/src/config/settingsSchema.ts
|
|
359057
360713
|
init_esbuild_shims();
|
|
360714
|
+
|
|
360715
|
+
// packages/cli/src/i18n/languages.ts
|
|
360716
|
+
init_esbuild_shims();
|
|
360717
|
+
var SUPPORTED_LANGUAGES = [
|
|
360718
|
+
{
|
|
360719
|
+
code: "en",
|
|
360720
|
+
id: "en-US",
|
|
360721
|
+
fullName: "English",
|
|
360722
|
+
nativeName: "English"
|
|
360723
|
+
},
|
|
360724
|
+
{
|
|
360725
|
+
code: "zh",
|
|
360726
|
+
id: "zh-CN",
|
|
360727
|
+
fullName: "Chinese",
|
|
360728
|
+
nativeName: "\u4E2D\u6587"
|
|
360729
|
+
},
|
|
360730
|
+
{
|
|
360731
|
+
code: "ru",
|
|
360732
|
+
id: "ru-RU",
|
|
360733
|
+
fullName: "Russian",
|
|
360734
|
+
nativeName: "\u0420\u0443\u0441\u0441\u043A\u0438\u0439"
|
|
360735
|
+
},
|
|
360736
|
+
{
|
|
360737
|
+
code: "de",
|
|
360738
|
+
id: "de-DE",
|
|
360739
|
+
fullName: "German",
|
|
360740
|
+
nativeName: "Deutsch"
|
|
360741
|
+
},
|
|
360742
|
+
{
|
|
360743
|
+
code: "ja",
|
|
360744
|
+
id: "ja-JP",
|
|
360745
|
+
fullName: "Japanese",
|
|
360746
|
+
nativeName: "\u65E5\u672C\u8A9E"
|
|
360747
|
+
},
|
|
360748
|
+
{
|
|
360749
|
+
code: "pt",
|
|
360750
|
+
id: "pt-BR",
|
|
360751
|
+
fullName: "Portuguese",
|
|
360752
|
+
nativeName: "Portugu\xEAs"
|
|
360753
|
+
}
|
|
360754
|
+
];
|
|
360755
|
+
function getLanguageNameFromLocale(locale) {
|
|
360756
|
+
const lang = SUPPORTED_LANGUAGES.find((l3) => l3.code === locale);
|
|
360757
|
+
return lang?.fullName || "English";
|
|
360758
|
+
}
|
|
360759
|
+
__name(getLanguageNameFromLocale, "getLanguageNameFromLocale");
|
|
360760
|
+
function getLanguageSettingsOptions() {
|
|
360761
|
+
return [
|
|
360762
|
+
{ value: "auto", label: "Auto (detect from system)" },
|
|
360763
|
+
...SUPPORTED_LANGUAGES.map((l3) => ({
|
|
360764
|
+
value: l3.code,
|
|
360765
|
+
label: l3.nativeName ? `${l3.nativeName} (${l3.fullName})` : `${l3.fullName} (${l3.id})`
|
|
360766
|
+
}))
|
|
360767
|
+
];
|
|
360768
|
+
}
|
|
360769
|
+
__name(getLanguageSettingsOptions, "getLanguageSettingsOptions");
|
|
360770
|
+
function getSupportedLanguageIds(separator = "|") {
|
|
360771
|
+
return SUPPORTED_LANGUAGES.map((l3) => l3.id).join(separator);
|
|
360772
|
+
}
|
|
360773
|
+
__name(getSupportedLanguageIds, "getSupportedLanguageIds");
|
|
360774
|
+
|
|
360775
|
+
// packages/cli/src/config/settingsSchema.ts
|
|
359058
360776
|
var TOGGLE_TYPES = /* @__PURE__ */ new Set([
|
|
359059
360777
|
"boolean",
|
|
359060
360778
|
"enum"
|
|
@@ -359173,13 +360891,7 @@ var SETTINGS_SCHEMA = {
|
|
|
359173
360891
|
default: "auto",
|
|
359174
360892
|
description: 'The language for the user interface. Use "auto" to detect from system settings. You can also use custom language codes (e.g., "es", "fr") by placing JS language files in ~/.qwen/locales/ (e.g., ~/.qwen/locales/es.js).',
|
|
359175
360893
|
showInDialog: true,
|
|
359176
|
-
options: [
|
|
359177
|
-
{ value: "auto", label: "Auto (detect from system)" },
|
|
359178
|
-
{ value: "en", label: "English" },
|
|
359179
|
-
{ value: "zh", label: "\u4E2D\u6587 (Chinese)" },
|
|
359180
|
-
{ value: "ru", label: "\u0420\u0443\u0441\u0441\u043A\u0438\u0439 (Russian)" },
|
|
359181
|
-
{ value: "de", label: "Deutsch (German)" }
|
|
359182
|
-
]
|
|
360894
|
+
options: []
|
|
359183
360895
|
},
|
|
359184
360896
|
outputLanguage: {
|
|
359185
360897
|
type: "string",
|
|
@@ -359187,7 +360899,7 @@ var SETTINGS_SCHEMA = {
|
|
|
359187
360899
|
category: "General",
|
|
359188
360900
|
requiresRestart: true,
|
|
359189
360901
|
default: "auto",
|
|
359190
|
-
description: 'The language for LLM output. Use "auto" to detect from system settings, or set a specific language
|
|
360902
|
+
description: 'The language for LLM output. Use "auto" to detect from system settings, or set a specific language.',
|
|
359191
360903
|
showInDialog: true
|
|
359192
360904
|
},
|
|
359193
360905
|
terminalBell: {
|
|
@@ -360099,6 +361811,10 @@ var SETTINGS_SCHEMA = {
|
|
|
360099
361811
|
}
|
|
360100
361812
|
};
|
|
360101
361813
|
function getSettingsSchema() {
|
|
361814
|
+
const schema = SETTINGS_SCHEMA;
|
|
361815
|
+
if (schema["general"]?.properties?.["language"]) {
|
|
361816
|
+
schema["general"].properties["language"].options = getLanguageSettingsOptions();
|
|
361817
|
+
}
|
|
360102
361818
|
return SETTINGS_SCHEMA;
|
|
360103
361819
|
}
|
|
360104
361820
|
__name(getSettingsSchema, "getSettingsSchema");
|
|
@@ -360923,40 +362639,12 @@ import * as path78 from "node:path";
|
|
|
360923
362639
|
import { fileURLToPath as fileURLToPath6, pathToFileURL as pathToFileURL2 } from "node:url";
|
|
360924
362640
|
import { homedir as homedir15 } from "node:os";
|
|
360925
362641
|
|
|
360926
|
-
// packages/cli/src/i18n/languages.ts
|
|
360927
|
-
init_esbuild_shims();
|
|
360928
|
-
var SUPPORTED_LANGUAGES = [
|
|
360929
|
-
{
|
|
360930
|
-
code: "en",
|
|
360931
|
-
id: "en-US",
|
|
360932
|
-
fullName: "English"
|
|
360933
|
-
},
|
|
360934
|
-
{
|
|
360935
|
-
code: "zh",
|
|
360936
|
-
id: "zh-CN",
|
|
360937
|
-
fullName: "Chinese"
|
|
360938
|
-
},
|
|
360939
|
-
{
|
|
360940
|
-
code: "ru",
|
|
360941
|
-
id: "ru-RU",
|
|
360942
|
-
fullName: "Russian"
|
|
360943
|
-
},
|
|
360944
|
-
{
|
|
360945
|
-
code: "de",
|
|
360946
|
-
id: "de-DE",
|
|
360947
|
-
fullName: "German"
|
|
360948
|
-
}
|
|
360949
|
-
];
|
|
360950
|
-
function getLanguageNameFromLocale(locale) {
|
|
360951
|
-
const lang = SUPPORTED_LANGUAGES.find((l3) => l3.code === locale);
|
|
360952
|
-
return lang?.fullName || "English";
|
|
360953
|
-
}
|
|
360954
|
-
__name(getLanguageNameFromLocale, "getLanguageNameFromLocale");
|
|
360955
|
-
|
|
360956
362642
|
// import("./locales/**/*.js") in packages/cli/src/i18n/index.ts
|
|
360957
362643
|
var globImport_locales_js = __glob({
|
|
360958
362644
|
"./locales/de.js": () => Promise.resolve().then(() => (init_de(), de_exports)),
|
|
360959
362645
|
"./locales/en.js": () => Promise.resolve().then(() => (init_en3(), en_exports)),
|
|
362646
|
+
"./locales/ja.js": () => Promise.resolve().then(() => (init_ja(), ja_exports)),
|
|
362647
|
+
"./locales/pt.js": () => Promise.resolve().then(() => (init_pt(), pt_exports)),
|
|
360960
362648
|
"./locales/ru.js": () => Promise.resolve().then(() => (init_ru(), ru_exports)),
|
|
360961
362649
|
"./locales/zh.js": () => Promise.resolve().then(() => (init_zh(), zh_exports))
|
|
360962
362650
|
});
|
|
@@ -360977,15 +362665,16 @@ var getLocalePath = /* @__PURE__ */ __name((lang, useUserDir = false) => {
|
|
|
360977
362665
|
}, "getLocalePath");
|
|
360978
362666
|
function detectSystemLanguage() {
|
|
360979
362667
|
const envLang = process.env["QWEN_CODE_LANG"] || process.env["LANG"];
|
|
360980
|
-
if (envLang
|
|
360981
|
-
|
|
360982
|
-
|
|
360983
|
-
|
|
362668
|
+
if (envLang) {
|
|
362669
|
+
for (const lang of SUPPORTED_LANGUAGES) {
|
|
362670
|
+
if (envLang.startsWith(lang.code)) return lang.code;
|
|
362671
|
+
}
|
|
362672
|
+
}
|
|
360984
362673
|
try {
|
|
360985
362674
|
const locale = Intl.DateTimeFormat().resolvedOptions().locale;
|
|
360986
|
-
|
|
360987
|
-
|
|
360988
|
-
|
|
362675
|
+
for (const lang of SUPPORTED_LANGUAGES) {
|
|
362676
|
+
if (locale.startsWith(lang.code)) return lang.code;
|
|
362677
|
+
}
|
|
360989
362678
|
} catch {
|
|
360990
362679
|
}
|
|
360991
362680
|
return "en";
|
|
@@ -361692,26 +363381,26 @@ function extensionToOutputString(extension, extensionManager, workspaceDir, inli
|
|
|
361692
363381
|
const status = workspaceEnabled ? import_chalk5.default.green("\u2713") : import_chalk5.default.red("\u2717");
|
|
361693
363382
|
let output = `${inline2 ? "" : status} ${extension.config.name} (${extension.config.version})`;
|
|
361694
363383
|
output += `
|
|
361695
|
-
Path: ${extension.path}`;
|
|
363384
|
+
${t4("Path:")} ${extension.path}`;
|
|
361696
363385
|
if (extension.installMetadata) {
|
|
361697
363386
|
output += `
|
|
361698
|
-
Source: ${extension.installMetadata.source} (Type: ${extension.installMetadata.type})`;
|
|
363387
|
+
${t4("Source:")} ${extension.installMetadata.source} (${t4("Type:")} ${extension.installMetadata.type})`;
|
|
361699
363388
|
if (extension.installMetadata.ref) {
|
|
361700
363389
|
output += `
|
|
361701
|
-
Ref: ${extension.installMetadata.ref}`;
|
|
363390
|
+
${t4("Ref:")} ${extension.installMetadata.ref}`;
|
|
361702
363391
|
}
|
|
361703
363392
|
if (extension.installMetadata.releaseTag) {
|
|
361704
363393
|
output += `
|
|
361705
|
-
Release tag: ${extension.installMetadata.releaseTag}`;
|
|
363394
|
+
${t4("Release tag:")} ${extension.installMetadata.releaseTag}`;
|
|
361706
363395
|
}
|
|
361707
363396
|
}
|
|
361708
363397
|
output += `
|
|
361709
|
-
Enabled (User): ${userEnabled}`;
|
|
363398
|
+
${t4("Enabled (User):")} ${userEnabled}`;
|
|
361710
363399
|
output += `
|
|
361711
|
-
Enabled (Workspace): ${workspaceEnabled}`;
|
|
363400
|
+
${t4("Enabled (Workspace):")} ${workspaceEnabled}`;
|
|
361712
363401
|
if (extension.contextFiles.length > 0) {
|
|
361713
363402
|
output += `
|
|
361714
|
-
Context files
|
|
363403
|
+
${t4("Context files:")}`;
|
|
361715
363404
|
extension.contextFiles.forEach((contextFile) => {
|
|
361716
363405
|
output += `
|
|
361717
363406
|
${contextFile}`;
|
|
@@ -361719,15 +363408,31 @@ function extensionToOutputString(extension, extensionManager, workspaceDir, inli
|
|
|
361719
363408
|
}
|
|
361720
363409
|
if (extension.commands && extension.commands.length > 0) {
|
|
361721
363410
|
output += `
|
|
361722
|
-
Commands
|
|
363411
|
+
${t4("Commands:")}`;
|
|
361723
363412
|
extension.commands.forEach((command2) => {
|
|
361724
363413
|
output += `
|
|
361725
363414
|
/${command2}`;
|
|
361726
363415
|
});
|
|
361727
363416
|
}
|
|
363417
|
+
if (extension.skills && extension.skills.length > 0) {
|
|
363418
|
+
output += `
|
|
363419
|
+
${t4("Skills:")}`;
|
|
363420
|
+
extension.skills.forEach((skill) => {
|
|
363421
|
+
output += `
|
|
363422
|
+
${skill.name}`;
|
|
363423
|
+
});
|
|
363424
|
+
}
|
|
363425
|
+
if (extension.agents && extension.agents.length > 0) {
|
|
363426
|
+
output += `
|
|
363427
|
+
${t4("Agents:")}`;
|
|
363428
|
+
extension.agents.forEach((agent) => {
|
|
363429
|
+
output += `
|
|
363430
|
+
${agent.name}`;
|
|
363431
|
+
});
|
|
363432
|
+
}
|
|
361728
363433
|
if (extension.config.mcpServers) {
|
|
361729
363434
|
output += `
|
|
361730
|
-
MCP servers
|
|
363435
|
+
${t4("MCP servers:")}`;
|
|
361731
363436
|
Object.keys(extension.config.mcpServers).forEach((key) => {
|
|
361732
363437
|
output += `
|
|
361733
363438
|
${key}`;
|
|
@@ -367676,7 +369381,7 @@ __name(getPackageJson, "getPackageJson");
|
|
|
367676
369381
|
// packages/cli/src/utils/version.ts
|
|
367677
369382
|
async function getCliVersion() {
|
|
367678
369383
|
const pkgJson = await getPackageJson();
|
|
367679
|
-
return "0.8.2-preview.
|
|
369384
|
+
return "0.8.2-preview.1";
|
|
367680
369385
|
}
|
|
367681
369386
|
__name(getCliVersion, "getCliVersion");
|
|
367682
369387
|
|
|
@@ -374761,124 +376466,10 @@ function validateTheme(settings) {
|
|
|
374761
376466
|
}
|
|
374762
376467
|
__name(validateTheme, "validateTheme");
|
|
374763
376468
|
|
|
374764
|
-
// packages/cli/src/utils/languageUtils.ts
|
|
374765
|
-
init_esbuild_shims();
|
|
374766
|
-
import * as fs78 from "node:fs";
|
|
374767
|
-
import * as path86 from "node:path";
|
|
374768
|
-
var LLM_OUTPUT_LANGUAGE_RULE_FILENAME = "output-language.md";
|
|
374769
|
-
var LLM_OUTPUT_LANGUAGE_MARKER_PREFIX = "qwen-code:llm-output-language:";
|
|
374770
|
-
var OUTPUT_LANGUAGE_AUTO = "auto";
|
|
374771
|
-
function isAutoLanguage(value) {
|
|
374772
|
-
return !value || value.toLowerCase() === OUTPUT_LANGUAGE_AUTO;
|
|
374773
|
-
}
|
|
374774
|
-
__name(isAutoLanguage, "isAutoLanguage");
|
|
374775
|
-
function normalizeOutputLanguage(language) {
|
|
374776
|
-
const lowered = language.toLowerCase();
|
|
374777
|
-
const fullName = getLanguageNameFromLocale(lowered);
|
|
374778
|
-
if (fullName !== "English" || lowered === "en") {
|
|
374779
|
-
return fullName;
|
|
374780
|
-
}
|
|
374781
|
-
return language;
|
|
374782
|
-
}
|
|
374783
|
-
__name(normalizeOutputLanguage, "normalizeOutputLanguage");
|
|
374784
|
-
function resolveOutputLanguage(value) {
|
|
374785
|
-
if (isAutoLanguage(value)) {
|
|
374786
|
-
const detectedLocale = detectSystemLanguage();
|
|
374787
|
-
return getLanguageNameFromLocale(detectedLocale);
|
|
374788
|
-
}
|
|
374789
|
-
return normalizeOutputLanguage(value);
|
|
374790
|
-
}
|
|
374791
|
-
__name(resolveOutputLanguage, "resolveOutputLanguage");
|
|
374792
|
-
function getOutputLanguageFilePath() {
|
|
374793
|
-
return path86.join(
|
|
374794
|
-
Storage.getGlobalQwenDir(),
|
|
374795
|
-
LLM_OUTPUT_LANGUAGE_RULE_FILENAME
|
|
374796
|
-
);
|
|
374797
|
-
}
|
|
374798
|
-
__name(getOutputLanguageFilePath, "getOutputLanguageFilePath");
|
|
374799
|
-
function sanitizeForMarker(language) {
|
|
374800
|
-
return language.replace(/[\r\n]/g, " ").replace(/--!?>/g, "").replace(/--/g, "");
|
|
374801
|
-
}
|
|
374802
|
-
__name(sanitizeForMarker, "sanitizeForMarker");
|
|
374803
|
-
function generateOutputLanguageFileContent(language) {
|
|
374804
|
-
const safeLanguage = sanitizeForMarker(language);
|
|
374805
|
-
return `# Output language preference: ${language}
|
|
374806
|
-
<!-- ${LLM_OUTPUT_LANGUAGE_MARKER_PREFIX} ${safeLanguage} -->
|
|
374807
|
-
|
|
374808
|
-
## Goal
|
|
374809
|
-
Prefer responding in **${language}** for normal assistant messages and explanations.
|
|
374810
|
-
|
|
374811
|
-
## Keep technical artifacts unchanged
|
|
374812
|
-
Do **not** translate or rewrite:
|
|
374813
|
-
- Code blocks, CLI commands, file paths, stack traces, logs, JSON keys, identifiers
|
|
374814
|
-
- Exact quoted text from the user (keep quotes verbatim)
|
|
374815
|
-
|
|
374816
|
-
## When a conflict exists
|
|
374817
|
-
If higher-priority instructions (system/developer) require a different behavior, follow them.
|
|
374818
|
-
|
|
374819
|
-
## Tool / system outputs
|
|
374820
|
-
Raw tool/system outputs may contain fixed-format English. Preserve them verbatim, and if needed, add a short **${language}** explanation below.
|
|
374821
|
-
`;
|
|
374822
|
-
}
|
|
374823
|
-
__name(generateOutputLanguageFileContent, "generateOutputLanguageFileContent");
|
|
374824
|
-
function parseOutputLanguageFromContent(content) {
|
|
374825
|
-
const markerRegex = new RegExp(
|
|
374826
|
-
String.raw`<!--\s*${LLM_OUTPUT_LANGUAGE_MARKER_PREFIX}\s*(.*?)\s*-->`,
|
|
374827
|
-
"i"
|
|
374828
|
-
);
|
|
374829
|
-
const markerMatch = content.match(markerRegex);
|
|
374830
|
-
if (markerMatch?.[1]?.trim()) {
|
|
374831
|
-
return markerMatch[1].trim();
|
|
374832
|
-
}
|
|
374833
|
-
const headingMatch = content.match(
|
|
374834
|
-
/^#.*?CRITICAL:\s*(.*?)\s+Output Language Rule\b/im
|
|
374835
|
-
);
|
|
374836
|
-
if (headingMatch?.[1]?.trim()) {
|
|
374837
|
-
return headingMatch[1].trim();
|
|
374838
|
-
}
|
|
374839
|
-
return null;
|
|
374840
|
-
}
|
|
374841
|
-
__name(parseOutputLanguageFromContent, "parseOutputLanguageFromContent");
|
|
374842
|
-
function readOutputLanguageFromFile() {
|
|
374843
|
-
const filePath = getOutputLanguageFilePath();
|
|
374844
|
-
if (!fs78.existsSync(filePath)) {
|
|
374845
|
-
return null;
|
|
374846
|
-
}
|
|
374847
|
-
try {
|
|
374848
|
-
const content = fs78.readFileSync(filePath, "utf-8");
|
|
374849
|
-
return parseOutputLanguageFromContent(content);
|
|
374850
|
-
} catch {
|
|
374851
|
-
return null;
|
|
374852
|
-
}
|
|
374853
|
-
}
|
|
374854
|
-
__name(readOutputLanguageFromFile, "readOutputLanguageFromFile");
|
|
374855
|
-
function writeOutputLanguageFile(language) {
|
|
374856
|
-
const filePath = getOutputLanguageFilePath();
|
|
374857
|
-
const content = generateOutputLanguageFileContent(language);
|
|
374858
|
-
const dir = path86.dirname(filePath);
|
|
374859
|
-
fs78.mkdirSync(dir, { recursive: true });
|
|
374860
|
-
fs78.writeFileSync(filePath, content, "utf-8");
|
|
374861
|
-
}
|
|
374862
|
-
__name(writeOutputLanguageFile, "writeOutputLanguageFile");
|
|
374863
|
-
function updateOutputLanguageFile(settingValue) {
|
|
374864
|
-
const resolved = resolveOutputLanguage(settingValue);
|
|
374865
|
-
writeOutputLanguageFile(resolved);
|
|
374866
|
-
}
|
|
374867
|
-
__name(updateOutputLanguageFile, "updateOutputLanguageFile");
|
|
374868
|
-
function initializeLlmOutputLanguage(outputLanguage) {
|
|
374869
|
-
const resolved = resolveOutputLanguage(outputLanguage);
|
|
374870
|
-
const currentFileLanguage = readOutputLanguageFromFile();
|
|
374871
|
-
if (currentFileLanguage !== resolved) {
|
|
374872
|
-
writeOutputLanguageFile(resolved);
|
|
374873
|
-
}
|
|
374874
|
-
}
|
|
374875
|
-
__name(initializeLlmOutputLanguage, "initializeLlmOutputLanguage");
|
|
374876
|
-
|
|
374877
376469
|
// packages/cli/src/core/initializer.ts
|
|
374878
376470
|
async function initializeApp(config2, settings) {
|
|
374879
376471
|
const languageSetting = process.env["QWEN_CODE_LANG"] || settings.merged.general?.language || "auto";
|
|
374880
376472
|
await initializeI18n(languageSetting);
|
|
374881
|
-
initializeLlmOutputLanguage(settings.merged.general?.outputLanguage);
|
|
374882
376473
|
const authType = config2.getModelsConfig().getCurrentAuthType();
|
|
374883
376474
|
const authError = await performInitialAuth(config2, authType);
|
|
374884
376475
|
if (authError) {
|
|
@@ -375296,7 +376887,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
|
|
|
375296
376887
|
|
|
375297
376888
|
// packages/cli/src/generated/git-commit.ts
|
|
375298
376889
|
init_esbuild_shims();
|
|
375299
|
-
var GIT_COMMIT_INFO2 = "
|
|
376890
|
+
var GIT_COMMIT_INFO2 = "284ec6d1";
|
|
375300
376891
|
|
|
375301
376892
|
// packages/cli/src/utils/systemInfo.ts
|
|
375302
376893
|
async function getNpmVersion() {
|
|
@@ -375910,7 +377501,7 @@ var docsCommand = {
|
|
|
375910
377501
|
// packages/cli/src/ui/commands/directoryCommand.tsx
|
|
375911
377502
|
init_esbuild_shims();
|
|
375912
377503
|
import * as os31 from "node:os";
|
|
375913
|
-
import * as
|
|
377504
|
+
import * as path86 from "node:path";
|
|
375914
377505
|
function expandHomeDir(p2) {
|
|
375915
377506
|
if (!p2) {
|
|
375916
377507
|
return "";
|
|
@@ -375921,7 +377512,7 @@ function expandHomeDir(p2) {
|
|
|
375921
377512
|
} else if (p2 === "~" || p2.startsWith("~/")) {
|
|
375922
377513
|
expandedPath = os31.homedir() + p2.substring(1);
|
|
375923
377514
|
}
|
|
375924
|
-
return
|
|
377515
|
+
return path86.normalize(expandedPath);
|
|
375925
377516
|
}
|
|
375926
377517
|
__name(expandHomeDir, "expandHomeDir");
|
|
375927
377518
|
var directoryCommand = {
|
|
@@ -376706,7 +378297,7 @@ var helpCommand = {
|
|
|
376706
378297
|
|
|
376707
378298
|
// packages/cli/src/ui/commands/ideCommand.ts
|
|
376708
378299
|
init_esbuild_shims();
|
|
376709
|
-
import
|
|
378300
|
+
import path87 from "node:path";
|
|
376710
378301
|
function getIdeStatusMessage(ideClient) {
|
|
376711
378302
|
const connection = ideClient.getConnectionStatus();
|
|
376712
378303
|
switch (connection.status) {
|
|
@@ -376736,13 +378327,13 @@ __name(getIdeStatusMessage, "getIdeStatusMessage");
|
|
|
376736
378327
|
function formatFileList(openFiles) {
|
|
376737
378328
|
const basenameCounts = /* @__PURE__ */ new Map();
|
|
376738
378329
|
for (const file of openFiles) {
|
|
376739
|
-
const basename24 =
|
|
378330
|
+
const basename24 = path87.basename(file.path);
|
|
376740
378331
|
basenameCounts.set(basename24, (basenameCounts.get(basename24) || 0) + 1);
|
|
376741
378332
|
}
|
|
376742
378333
|
const fileList = openFiles.map((file) => {
|
|
376743
|
-
const basename24 =
|
|
378334
|
+
const basename24 = path87.basename(file.path);
|
|
376744
378335
|
const isDuplicate = (basenameCounts.get(basename24) || 0) > 1;
|
|
376745
|
-
const parentDir =
|
|
378336
|
+
const parentDir = path87.basename(path87.dirname(file.path));
|
|
376746
378337
|
const displayName = isDuplicate ? `${basename24} (/${parentDir})` : basename24;
|
|
376747
378338
|
return ` - ${displayName}${file.isActive ? " (active)" : ""}`;
|
|
376748
378339
|
}).join("\n");
|
|
@@ -376985,8 +378576,8 @@ var ideCommand = /* @__PURE__ */ __name(async () => {
|
|
|
376985
378576
|
|
|
376986
378577
|
// packages/cli/src/ui/commands/initCommand.ts
|
|
376987
378578
|
init_esbuild_shims();
|
|
376988
|
-
import * as
|
|
376989
|
-
import * as
|
|
378579
|
+
import * as fs78 from "node:fs";
|
|
378580
|
+
import * as path88 from "node:path";
|
|
376990
378581
|
var import_react27 = __toESM(require_react(), 1);
|
|
376991
378582
|
var initCommand = {
|
|
376992
378583
|
name: "init",
|
|
@@ -377004,11 +378595,11 @@ var initCommand = {
|
|
|
377004
378595
|
}
|
|
377005
378596
|
const targetDir = context2.services.config.getTargetDir();
|
|
377006
378597
|
const contextFileName = getCurrentGeminiMdFilename();
|
|
377007
|
-
const contextFilePath =
|
|
378598
|
+
const contextFilePath = path88.join(targetDir, contextFileName);
|
|
377008
378599
|
try {
|
|
377009
|
-
if (
|
|
378600
|
+
if (fs78.existsSync(contextFilePath)) {
|
|
377010
378601
|
try {
|
|
377011
|
-
const existing =
|
|
378602
|
+
const existing = fs78.readFileSync(contextFilePath, "utf8");
|
|
377012
378603
|
if (existing && existing.trim().length > 0) {
|
|
377013
378604
|
if (!context2.overwriteConfirmed) {
|
|
377014
378605
|
return {
|
|
@@ -377030,7 +378621,7 @@ var initCommand = {
|
|
|
377030
378621
|
}
|
|
377031
378622
|
}
|
|
377032
378623
|
try {
|
|
377033
|
-
|
|
378624
|
+
fs78.writeFileSync(contextFilePath, "", "utf8");
|
|
377034
378625
|
context2.ui.addItem(
|
|
377035
378626
|
{
|
|
377036
378627
|
type: "info",
|
|
@@ -377095,6 +378686,121 @@ Write the complete content to the \`${contextFileName}\` file. The output must b
|
|
|
377095
378686
|
|
|
377096
378687
|
// packages/cli/src/ui/commands/languageCommand.ts
|
|
377097
378688
|
init_esbuild_shims();
|
|
378689
|
+
|
|
378690
|
+
// packages/cli/src/utils/languageUtils.ts
|
|
378691
|
+
init_esbuild_shims();
|
|
378692
|
+
import * as fs79 from "node:fs";
|
|
378693
|
+
import * as path89 from "node:path";
|
|
378694
|
+
var LLM_OUTPUT_LANGUAGE_RULE_FILENAME = "output-language.md";
|
|
378695
|
+
var LLM_OUTPUT_LANGUAGE_MARKER_PREFIX = "qwen-code:llm-output-language:";
|
|
378696
|
+
var OUTPUT_LANGUAGE_AUTO = "auto";
|
|
378697
|
+
function isAutoLanguage(value) {
|
|
378698
|
+
return !value || value.toLowerCase() === OUTPUT_LANGUAGE_AUTO;
|
|
378699
|
+
}
|
|
378700
|
+
__name(isAutoLanguage, "isAutoLanguage");
|
|
378701
|
+
function normalizeOutputLanguage(language) {
|
|
378702
|
+
const lowered = language.toLowerCase();
|
|
378703
|
+
const fullName = getLanguageNameFromLocale(lowered);
|
|
378704
|
+
if (fullName !== "English" || lowered === "en") {
|
|
378705
|
+
return fullName;
|
|
378706
|
+
}
|
|
378707
|
+
return language;
|
|
378708
|
+
}
|
|
378709
|
+
__name(normalizeOutputLanguage, "normalizeOutputLanguage");
|
|
378710
|
+
function resolveOutputLanguage(value) {
|
|
378711
|
+
if (isAutoLanguage(value)) {
|
|
378712
|
+
const detectedLocale = detectSystemLanguage();
|
|
378713
|
+
return getLanguageNameFromLocale(detectedLocale);
|
|
378714
|
+
}
|
|
378715
|
+
return normalizeOutputLanguage(value);
|
|
378716
|
+
}
|
|
378717
|
+
__name(resolveOutputLanguage, "resolveOutputLanguage");
|
|
378718
|
+
function getOutputLanguageFilePath() {
|
|
378719
|
+
return path89.join(
|
|
378720
|
+
Storage.getGlobalQwenDir(),
|
|
378721
|
+
LLM_OUTPUT_LANGUAGE_RULE_FILENAME
|
|
378722
|
+
);
|
|
378723
|
+
}
|
|
378724
|
+
__name(getOutputLanguageFilePath, "getOutputLanguageFilePath");
|
|
378725
|
+
function sanitizeForMarker(language) {
|
|
378726
|
+
return language.replace(/[\r\n]/g, " ").replace(/--!?>/g, "").replace(/--/g, "");
|
|
378727
|
+
}
|
|
378728
|
+
__name(sanitizeForMarker, "sanitizeForMarker");
|
|
378729
|
+
function generateOutputLanguageFileContent(language) {
|
|
378730
|
+
const safeLanguage = sanitizeForMarker(language);
|
|
378731
|
+
return `# Output language preference: ${language}
|
|
378732
|
+
<!-- ${LLM_OUTPUT_LANGUAGE_MARKER_PREFIX} ${safeLanguage} -->
|
|
378733
|
+
|
|
378734
|
+
## Goal
|
|
378735
|
+
Prefer responding in **${language}** for normal assistant messages and explanations.
|
|
378736
|
+
|
|
378737
|
+
## Keep technical artifacts unchanged
|
|
378738
|
+
Do **not** translate or rewrite:
|
|
378739
|
+
- Code blocks, CLI commands, file paths, stack traces, logs, JSON keys, identifiers
|
|
378740
|
+
- Exact quoted text from the user (keep quotes verbatim)
|
|
378741
|
+
|
|
378742
|
+
## When a conflict exists
|
|
378743
|
+
If higher-priority instructions (system/developer) require a different behavior, follow them.
|
|
378744
|
+
|
|
378745
|
+
## Tool / system outputs
|
|
378746
|
+
Raw tool/system outputs may contain fixed-format English. Preserve them verbatim, and if needed, add a short **${language}** explanation below.
|
|
378747
|
+
`;
|
|
378748
|
+
}
|
|
378749
|
+
__name(generateOutputLanguageFileContent, "generateOutputLanguageFileContent");
|
|
378750
|
+
function parseOutputLanguageFromContent(content) {
|
|
378751
|
+
const markerRegex = new RegExp(
|
|
378752
|
+
String.raw`<!--\s*${LLM_OUTPUT_LANGUAGE_MARKER_PREFIX}\s*(.*?)\s*-->`,
|
|
378753
|
+
"i"
|
|
378754
|
+
);
|
|
378755
|
+
const markerMatch = content.match(markerRegex);
|
|
378756
|
+
if (markerMatch?.[1]?.trim()) {
|
|
378757
|
+
return markerMatch[1].trim();
|
|
378758
|
+
}
|
|
378759
|
+
const headingMatch = content.match(
|
|
378760
|
+
/^#.*?CRITICAL:\s*(.*?)\s+Output Language Rule\b/im
|
|
378761
|
+
);
|
|
378762
|
+
if (headingMatch?.[1]?.trim()) {
|
|
378763
|
+
return headingMatch[1].trim();
|
|
378764
|
+
}
|
|
378765
|
+
return null;
|
|
378766
|
+
}
|
|
378767
|
+
__name(parseOutputLanguageFromContent, "parseOutputLanguageFromContent");
|
|
378768
|
+
function readOutputLanguageFromFile() {
|
|
378769
|
+
const filePath = getOutputLanguageFilePath();
|
|
378770
|
+
if (!fs79.existsSync(filePath)) {
|
|
378771
|
+
return null;
|
|
378772
|
+
}
|
|
378773
|
+
try {
|
|
378774
|
+
const content = fs79.readFileSync(filePath, "utf-8");
|
|
378775
|
+
return parseOutputLanguageFromContent(content);
|
|
378776
|
+
} catch {
|
|
378777
|
+
return null;
|
|
378778
|
+
}
|
|
378779
|
+
}
|
|
378780
|
+
__name(readOutputLanguageFromFile, "readOutputLanguageFromFile");
|
|
378781
|
+
function writeOutputLanguageFile(language) {
|
|
378782
|
+
const filePath = getOutputLanguageFilePath();
|
|
378783
|
+
const content = generateOutputLanguageFileContent(language);
|
|
378784
|
+
const dir = path89.dirname(filePath);
|
|
378785
|
+
fs79.mkdirSync(dir, { recursive: true });
|
|
378786
|
+
fs79.writeFileSync(filePath, content, "utf-8");
|
|
378787
|
+
}
|
|
378788
|
+
__name(writeOutputLanguageFile, "writeOutputLanguageFile");
|
|
378789
|
+
function updateOutputLanguageFile(settingValue) {
|
|
378790
|
+
const resolved = resolveOutputLanguage(settingValue);
|
|
378791
|
+
writeOutputLanguageFile(resolved);
|
|
378792
|
+
}
|
|
378793
|
+
__name(updateOutputLanguageFile, "updateOutputLanguageFile");
|
|
378794
|
+
function initializeLlmOutputLanguage(outputLanguage) {
|
|
378795
|
+
const resolved = resolveOutputLanguage(outputLanguage);
|
|
378796
|
+
const currentFileLanguage = readOutputLanguageFromFile();
|
|
378797
|
+
if (currentFileLanguage !== resolved) {
|
|
378798
|
+
writeOutputLanguageFile(resolved);
|
|
378799
|
+
}
|
|
378800
|
+
}
|
|
378801
|
+
__name(initializeLlmOutputLanguage, "initializeLlmOutputLanguage");
|
|
378802
|
+
|
|
378803
|
+
// packages/cli/src/ui/commands/languageCommand.ts
|
|
377098
378804
|
function getCurrentOutputLanguage(context2) {
|
|
377099
378805
|
const settingValue = context2?.services?.settings?.merged?.general?.outputLanguage || OUTPUT_LANGUAGE_AUTO;
|
|
377100
378806
|
const resolved = resolveOutputLanguage(settingValue);
|
|
@@ -377114,7 +378820,8 @@ function parseUiLanguageArg(input) {
|
|
|
377114
378820
|
__name(parseUiLanguageArg, "parseUiLanguageArg");
|
|
377115
378821
|
function formatUiLanguageDisplay(lang) {
|
|
377116
378822
|
const option2 = SUPPORTED_LANGUAGES.find((o3) => o3.code === lang);
|
|
377117
|
-
|
|
378823
|
+
if (!option2) return lang;
|
|
378824
|
+
return option2.nativeName && option2.nativeName !== option2.fullName ? `${option2.nativeName} (${option2.fullName}) [${option2.id}]` : `${option2.fullName} [${option2.id}]`;
|
|
377118
378825
|
}
|
|
377119
378826
|
__name(formatUiLanguageDisplay, "formatUiLanguageDisplay");
|
|
377120
378827
|
async function setUiLanguage(context2, lang) {
|
|
@@ -377224,7 +378931,7 @@ var languageCommand = {
|
|
|
377224
378931
|
messageType: "error",
|
|
377225
378932
|
content: [
|
|
377226
378933
|
t4("Invalid command. Available subcommands:"),
|
|
377227
|
-
` - /language ui [${
|
|
378934
|
+
` - /language ui [${getSupportedLanguageIds()}] - ${t4("Set UI language")}`,
|
|
377228
378935
|
` - /language output <language> - ${t4("Set LLM output language")}`
|
|
377229
378936
|
].join("\n")
|
|
377230
378937
|
};
|
|
@@ -377242,7 +378949,7 @@ var languageCommand = {
|
|
|
377242
378949
|
t4("Current LLM output language: {{lang}}", { lang: outputLangDisplay }),
|
|
377243
378950
|
"",
|
|
377244
378951
|
t4("Available subcommands:"),
|
|
377245
|
-
` /language ui [${
|
|
378952
|
+
` /language ui [${getSupportedLanguageIds()}] - ${t4("Set UI language")}`,
|
|
377246
378953
|
` /language output <language> - ${t4("Set LLM output language")}`
|
|
377247
378954
|
].join("\n")
|
|
377248
378955
|
};
|
|
@@ -377265,12 +378972,12 @@ var languageCommand = {
|
|
|
377265
378972
|
t4("Set UI language"),
|
|
377266
378973
|
"",
|
|
377267
378974
|
t4("Usage: /language ui [{{options}}]", {
|
|
377268
|
-
options:
|
|
378975
|
+
options: getSupportedLanguageIds()
|
|
377269
378976
|
}),
|
|
377270
378977
|
"",
|
|
377271
378978
|
t4("Available options:"),
|
|
377272
378979
|
...SUPPORTED_LANGUAGES.map(
|
|
377273
|
-
(o3) => ` - ${o3.id}: ${
|
|
378980
|
+
(o3) => ` - ${o3.id}: ${o3.nativeName || o3.fullName}`
|
|
377274
378981
|
),
|
|
377275
378982
|
"",
|
|
377276
378983
|
t4(
|
|
@@ -377285,7 +378992,7 @@ var languageCommand = {
|
|
|
377285
378992
|
type: "message",
|
|
377286
378993
|
messageType: "error",
|
|
377287
378994
|
content: t4("Invalid language. Available: {{options}}", {
|
|
377288
|
-
options:
|
|
378995
|
+
options: getSupportedLanguageIds(",")
|
|
377289
378996
|
})
|
|
377290
378997
|
};
|
|
377291
378998
|
}
|
|
@@ -377296,7 +379003,9 @@ var languageCommand = {
|
|
|
377296
379003
|
(lang) => ({
|
|
377297
379004
|
name: lang.id,
|
|
377298
379005
|
get description() {
|
|
377299
|
-
return t4("Set UI language to {{name}}", {
|
|
379006
|
+
return t4("Set UI language to {{name}}", {
|
|
379007
|
+
name: lang.nativeName || lang.fullName
|
|
379008
|
+
});
|
|
377300
379009
|
},
|
|
377301
379010
|
kind: "built-in" /* BUILT_IN */,
|
|
377302
379011
|
action: /* @__PURE__ */ __name(async (context2, args) => {
|
|
@@ -428636,7 +430345,7 @@ var GeminiAgent = class {
|
|
|
428636
430345
|
name: APPROVAL_MODE_INFO[mode].name,
|
|
428637
430346
|
description: APPROVAL_MODE_INFO[mode].description
|
|
428638
430347
|
}));
|
|
428639
|
-
const version2 = "0.8.2-preview.
|
|
430348
|
+
const version2 = "0.8.2-preview.1";
|
|
428640
430349
|
return {
|
|
428641
430350
|
protocolVersion: PROTOCOL_VERSION,
|
|
428642
430351
|
agentInfo: {
|
|
@@ -429061,6 +430770,7 @@ ${finalArgs[promptIndex + 1]}`;
|
|
|
429061
430770
|
}
|
|
429062
430771
|
argv = { ...argv, resume: selectedSessionId };
|
|
429063
430772
|
}
|
|
430773
|
+
initializeLlmOutputLanguage(settings.merged.general?.outputLanguage);
|
|
429064
430774
|
{
|
|
429065
430775
|
const config2 = await loadCliConfig(
|
|
429066
430776
|
settings.merged,
|