@qwen-code/qwen-code 0.8.0-preview.4 → 0.8.0-preview.5
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 +1984 -174
- 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"() {
|
|
@@ -140593,7 +140593,7 @@ function detectRuntime() {
|
|
|
140593
140593
|
}
|
|
140594
140594
|
return "unknown";
|
|
140595
140595
|
}
|
|
140596
|
-
function buildRuntimeFetchOptions(sdkType) {
|
|
140596
|
+
function buildRuntimeFetchOptions(sdkType, proxyUrl) {
|
|
140597
140597
|
const runtime = detectRuntime();
|
|
140598
140598
|
switch (runtime) {
|
|
140599
140599
|
case "bun": {
|
|
@@ -140617,17 +140617,14 @@ function buildRuntimeFetchOptions(sdkType) {
|
|
|
140617
140617
|
}
|
|
140618
140618
|
case "node": {
|
|
140619
140619
|
try {
|
|
140620
|
-
const
|
|
140621
|
-
bodyTimeout: 0
|
|
140622
|
-
// Disable to let SDK timeout control total request time
|
|
140623
|
-
});
|
|
140620
|
+
const dispatcher = createDispatcher(proxyUrl);
|
|
140624
140621
|
if (sdkType === "openai") {
|
|
140625
140622
|
return {
|
|
140626
|
-
dispatcher
|
|
140623
|
+
dispatcher
|
|
140627
140624
|
};
|
|
140628
140625
|
} else {
|
|
140629
140626
|
return {
|
|
140630
|
-
httpAgent:
|
|
140627
|
+
httpAgent: dispatcher
|
|
140631
140628
|
};
|
|
140632
140629
|
}
|
|
140633
140630
|
} catch {
|
|
@@ -140640,17 +140637,14 @@ function buildRuntimeFetchOptions(sdkType) {
|
|
|
140640
140637
|
}
|
|
140641
140638
|
default: {
|
|
140642
140639
|
try {
|
|
140643
|
-
const
|
|
140644
|
-
bodyTimeout: 0
|
|
140645
|
-
// Disable to let SDK timeout control total request time
|
|
140646
|
-
});
|
|
140640
|
+
const dispatcher = createDispatcher(proxyUrl);
|
|
140647
140641
|
if (sdkType === "openai") {
|
|
140648
140642
|
return {
|
|
140649
|
-
dispatcher
|
|
140643
|
+
dispatcher
|
|
140650
140644
|
};
|
|
140651
140645
|
} else {
|
|
140652
140646
|
return {
|
|
140653
|
-
httpAgent:
|
|
140647
|
+
httpAgent: dispatcher
|
|
140654
140648
|
};
|
|
140655
140649
|
}
|
|
140656
140650
|
} catch {
|
|
@@ -140663,6 +140657,19 @@ function buildRuntimeFetchOptions(sdkType) {
|
|
|
140663
140657
|
}
|
|
140664
140658
|
}
|
|
140665
140659
|
}
|
|
140660
|
+
function createDispatcher(proxyUrl) {
|
|
140661
|
+
if (proxyUrl) {
|
|
140662
|
+
return new import_undici.ProxyAgent({
|
|
140663
|
+
uri: proxyUrl,
|
|
140664
|
+
headersTimeout: 0,
|
|
140665
|
+
bodyTimeout: 0
|
|
140666
|
+
});
|
|
140667
|
+
}
|
|
140668
|
+
return new import_undici.Agent({
|
|
140669
|
+
headersTimeout: 0,
|
|
140670
|
+
bodyTimeout: 0
|
|
140671
|
+
});
|
|
140672
|
+
}
|
|
140666
140673
|
var import_undici;
|
|
140667
140674
|
var init_runtimeFetchOptions = __esm({
|
|
140668
140675
|
"packages/core/dist/src/utils/runtimeFetchOptions.js"() {
|
|
@@ -140671,6 +140678,7 @@ var init_runtimeFetchOptions = __esm({
|
|
|
140671
140678
|
import_undici = __toESM(require_undici(), 1);
|
|
140672
140679
|
__name(detectRuntime, "detectRuntime");
|
|
140673
140680
|
__name(buildRuntimeFetchOptions, "buildRuntimeFetchOptions");
|
|
140681
|
+
__name(createDispatcher, "createDispatcher");
|
|
140674
140682
|
}
|
|
140675
140683
|
});
|
|
140676
140684
|
|
|
@@ -140705,7 +140713,7 @@ var init_default = __esm({
|
|
|
140705
140713
|
buildClient() {
|
|
140706
140714
|
const { apiKey, baseUrl, timeout: timeout2 = DEFAULT_TIMEOUT, maxRetries = DEFAULT_MAX_RETRIES } = this.contentGeneratorConfig;
|
|
140707
140715
|
const defaultHeaders = this.buildHeaders();
|
|
140708
|
-
const fetchOptions = buildRuntimeFetchOptions("openai");
|
|
140716
|
+
const fetchOptions = buildRuntimeFetchOptions("openai", this.cliConfig.getProxy());
|
|
140709
140717
|
return new OpenAI({
|
|
140710
140718
|
apiKey,
|
|
140711
140719
|
baseURL: baseUrl,
|
|
@@ -140975,7 +140983,7 @@ var init_dashscope = __esm({
|
|
|
140975
140983
|
buildClient() {
|
|
140976
140984
|
const { apiKey, baseUrl = DEFAULT_DASHSCOPE_BASE_URL, timeout: timeout2 = DEFAULT_TIMEOUT, maxRetries = DEFAULT_MAX_RETRIES } = this.contentGeneratorConfig;
|
|
140977
140985
|
const defaultHeaders = this.buildHeaders();
|
|
140978
|
-
const fetchOptions = buildRuntimeFetchOptions("openai");
|
|
140986
|
+
const fetchOptions = buildRuntimeFetchOptions("openai", this.cliConfig.getProxy());
|
|
140979
140987
|
return new OpenAI({
|
|
140980
140988
|
apiKey,
|
|
140981
140989
|
baseURL: baseUrl,
|
|
@@ -150008,7 +150016,7 @@ var require_agent2 = __commonJS({
|
|
|
150008
150016
|
console.log("[agentkeepalive:deprecated] %s", message);
|
|
150009
150017
|
}
|
|
150010
150018
|
__name(deprecate6, "deprecate");
|
|
150011
|
-
var
|
|
150019
|
+
var Agent4 = class extends OriginalAgent {
|
|
150012
150020
|
static {
|
|
150013
150021
|
__name(this, "Agent");
|
|
150014
150022
|
}
|
|
@@ -150308,7 +150316,7 @@ var require_agent2 = __commonJS({
|
|
|
150308
150316
|
socket.on("agentRemove", onRemove);
|
|
150309
150317
|
}
|
|
150310
150318
|
__name(installListeners, "installListeners");
|
|
150311
|
-
module2.exports =
|
|
150319
|
+
module2.exports = Agent4;
|
|
150312
150320
|
function inspect3(obj) {
|
|
150313
150321
|
const res = {};
|
|
150314
150322
|
for (const key in obj) {
|
|
@@ -155222,6 +155230,7 @@ var init_anthropicContentGenerator = __esm({
|
|
|
155222
155230
|
init_safeJsonParse();
|
|
155223
155231
|
init_converter2();
|
|
155224
155232
|
init_runtimeFetchOptions();
|
|
155233
|
+
init_constants2();
|
|
155225
155234
|
AnthropicContentGenerator = class {
|
|
155226
155235
|
static {
|
|
155227
155236
|
__name(this, "AnthropicContentGenerator");
|
|
@@ -155235,11 +155244,11 @@ var init_anthropicContentGenerator = __esm({
|
|
|
155235
155244
|
this.cliConfig = cliConfig;
|
|
155236
155245
|
const defaultHeaders = this.buildHeaders();
|
|
155237
155246
|
const baseURL = contentGeneratorConfig.baseUrl;
|
|
155238
|
-
const runtimeOptions = buildRuntimeFetchOptions("anthropic");
|
|
155247
|
+
const runtimeOptions = buildRuntimeFetchOptions("anthropic", this.cliConfig.getProxy());
|
|
155239
155248
|
this.client = new sdk_default({
|
|
155240
155249
|
apiKey: contentGeneratorConfig.apiKey,
|
|
155241
155250
|
baseURL,
|
|
155242
|
-
timeout: contentGeneratorConfig.timeout,
|
|
155251
|
+
timeout: contentGeneratorConfig.timeout || DEFAULT_TIMEOUT,
|
|
155243
155252
|
maxRetries: contentGeneratorConfig.maxRetries,
|
|
155244
155253
|
defaultHeaders,
|
|
155245
155254
|
...runtimeOptions
|
|
@@ -155656,7 +155665,7 @@ __export(geminiContentGenerator_exports, {
|
|
|
155656
155665
|
createGeminiContentGenerator: () => createGeminiContentGenerator
|
|
155657
155666
|
});
|
|
155658
155667
|
function createGeminiContentGenerator(config2, gcConfig) {
|
|
155659
|
-
const version2 = "0.8.0-preview.
|
|
155668
|
+
const version2 = "0.8.0-preview.5";
|
|
155660
155669
|
const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
|
|
155661
155670
|
const baseHeaders = {
|
|
155662
155671
|
"User-Agent": userAgent2
|
|
@@ -281472,12 +281481,12 @@ var require_backend = __commonJS({
|
|
|
281472
281481
|
(_console = console).log.apply(_console, ["%cAgent %c".concat(methodName), "color: purple; font-weight: bold;", "font-weight: bold;"].concat(args));
|
|
281473
281482
|
}
|
|
281474
281483
|
}, "debug");
|
|
281475
|
-
var
|
|
281476
|
-
agent_inherits(
|
|
281477
|
-
var _super = agent_createSuper(
|
|
281478
|
-
function
|
|
281484
|
+
var Agent4 = /* @__PURE__ */ function(_EventEmitter) {
|
|
281485
|
+
agent_inherits(Agent5, _EventEmitter);
|
|
281486
|
+
var _super = agent_createSuper(Agent5);
|
|
281487
|
+
function Agent5(bridge) {
|
|
281479
281488
|
var _this;
|
|
281480
|
-
agent_classCallCheck(this,
|
|
281489
|
+
agent_classCallCheck(this, Agent5);
|
|
281481
281490
|
_this = _super.call(this);
|
|
281482
281491
|
agent_defineProperty(agent_assertThisInitialized(_this), "_isProfiling", false);
|
|
281483
281492
|
agent_defineProperty(agent_assertThisInitialized(_this), "_recordChangeDescriptions", false);
|
|
@@ -281877,8 +281886,8 @@ var require_backend = __commonJS({
|
|
|
281877
281886
|
TraceUpdates_initialize(agent_assertThisInitialized(_this));
|
|
281878
281887
|
return _this;
|
|
281879
281888
|
}
|
|
281880
|
-
__name(
|
|
281881
|
-
agent_createClass(
|
|
281889
|
+
__name(Agent5, "Agent");
|
|
281890
|
+
agent_createClass(Agent5, [{
|
|
281882
281891
|
key: "getInstanceAndStyle",
|
|
281883
281892
|
value: /* @__PURE__ */ __name(function getInstanceAndStyle(_ref22) {
|
|
281884
281893
|
var id = _ref22.id, rendererID = _ref22.rendererID;
|
|
@@ -281950,7 +281959,7 @@ var require_backend = __commonJS({
|
|
|
281950
281959
|
return this._rendererInterfaces;
|
|
281951
281960
|
}, "get")
|
|
281952
281961
|
}]);
|
|
281953
|
-
return
|
|
281962
|
+
return Agent5;
|
|
281954
281963
|
}(EventEmitter11);
|
|
281955
281964
|
;
|
|
281956
281965
|
function hook_typeof(obj) {
|
|
@@ -283818,7 +283827,7 @@ var require_backend = __commonJS({
|
|
|
283818
283827
|
if (window.__REACT_DEVTOOLS_COMPONENT_FILTERS__ == null) {
|
|
283819
283828
|
bridge.send("overrideComponentFilters", savedComponentFilters);
|
|
283820
283829
|
}
|
|
283821
|
-
var agent2 = new
|
|
283830
|
+
var agent2 = new Agent4(bridge);
|
|
283822
283831
|
agent2.addListener("shutdown", function() {
|
|
283823
283832
|
hook.emit("shutdown");
|
|
283824
283833
|
});
|
|
@@ -293032,6 +293041,17 @@ var init_de = __esm({
|
|
|
293032
293041
|
"Update all extensions.": "Alle Erweiterungen aktualisieren.",
|
|
293033
293042
|
"Either an extension name or --all must be provided": "Entweder ein Erweiterungsname oder --all muss angegeben werden",
|
|
293034
293043
|
"Lists installed extensions.": "Listet installierte Erweiterungen auf.",
|
|
293044
|
+
"Path:": "Pfad:",
|
|
293045
|
+
"Source:": "Quelle:",
|
|
293046
|
+
"Type:": "Typ:",
|
|
293047
|
+
"Ref:": "Ref:",
|
|
293048
|
+
"Release tag:": "Release-Tag:",
|
|
293049
|
+
"Enabled (User):": "Aktiviert (Benutzer):",
|
|
293050
|
+
"Enabled (Workspace):": "Aktiviert (Arbeitsbereich):",
|
|
293051
|
+
"Context files:": "Kontextdateien:",
|
|
293052
|
+
"Skills:": "Skills:",
|
|
293053
|
+
"Agents:": "Agents:",
|
|
293054
|
+
"MCP servers:": "MCP-Server:",
|
|
293035
293055
|
"Link extension failed to install.": "Verkn\xFCpfte Erweiterung konnte nicht installiert werden.",
|
|
293036
293056
|
'Extension "{{name}}" linked successfully and enabled.': 'Erweiterung "{{name}}" erfolgreich verkn\xFCpft und aktiviert.',
|
|
293037
293057
|
"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.",
|
|
@@ -293089,18 +293109,19 @@ var init_de = __esm({
|
|
|
293089
293109
|
// ============================================================================
|
|
293090
293110
|
// Commands - Language
|
|
293091
293111
|
// ============================================================================
|
|
293092
|
-
"Invalid language. Available:
|
|
293112
|
+
"Invalid language. Available: {{options}}": "Ung\xFCltige Sprache. Verf\xFCgbar: {{options}}",
|
|
293093
293113
|
"Language subcommands do not accept additional arguments.": "Sprach-Unterbefehle akzeptieren keine zus\xE4tzlichen Argumente.",
|
|
293094
293114
|
"Current UI language: {{lang}}": "Aktuelle UI-Sprache: {{lang}}",
|
|
293095
293115
|
"Current LLM output language: {{lang}}": "Aktuelle LLM-Ausgabesprache: {{lang}}",
|
|
293096
293116
|
"LLM output language not set": "LLM-Ausgabesprache nicht festgelegt",
|
|
293097
293117
|
"Set UI language": "UI-Sprache festlegen",
|
|
293098
293118
|
"Set LLM output language": "LLM-Ausgabesprache festlegen",
|
|
293099
|
-
"Usage: /language ui [
|
|
293119
|
+
"Usage: /language ui [{{options}}]": "Verwendung: /language ui [{{options}}]",
|
|
293100
293120
|
"Usage: /language output <language>": "Verwendung: /language output <Sprache>",
|
|
293101
293121
|
"Example: /language output \u4E2D\u6587": "Beispiel: /language output Deutsch",
|
|
293102
|
-
"Example: /language output English": "Beispiel: /language output
|
|
293122
|
+
"Example: /language output English": "Beispiel: /language output Englisch",
|
|
293103
293123
|
"Example: /language output \u65E5\u672C\u8A9E": "Beispiel: /language output Japanisch",
|
|
293124
|
+
"Example: /language output Portugu\xEAs": "Beispiel: /language output Portugiesisch",
|
|
293104
293125
|
"UI language changed to {{lang}}": "UI-Sprache ge\xE4ndert zu {{lang}}",
|
|
293105
293126
|
"LLM output language set to {{lang}}": "LLM-Ausgabesprache auf {{lang}} gesetzt",
|
|
293106
293127
|
"LLM output language rule file generated at {{path}}": "LLM-Ausgabesprach-Regeldatei generiert unter {{path}}",
|
|
@@ -293110,10 +293131,7 @@ var init_de = __esm({
|
|
|
293110
293131
|
"Available subcommands:": "Verf\xFCgbare Unterbefehle:",
|
|
293111
293132
|
"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.",
|
|
293112
293133
|
"Available options:": "Verf\xFCgbare Optionen:",
|
|
293113
|
-
"
|
|
293114
|
-
" - en-US: English": " - en-US: Englisch",
|
|
293115
|
-
"Set UI language to Simplified Chinese (zh-CN)": "UI-Sprache auf Vereinfachtes Chinesisch (zh-CN) setzen",
|
|
293116
|
-
"Set UI language to English (en-US)": "UI-Sprache auf Englisch (en-US) setzen",
|
|
293134
|
+
"Set UI language to {{name}}": "UI-Sprache auf {{name}} setzen",
|
|
293117
293135
|
// ============================================================================
|
|
293118
293136
|
// Commands - Approval Mode
|
|
293119
293137
|
// ============================================================================
|
|
@@ -294056,6 +294074,17 @@ var init_en3 = __esm({
|
|
|
294056
294074
|
"Update all extensions.": "Update all extensions.",
|
|
294057
294075
|
"Either an extension name or --all must be provided": "Either an extension name or --all must be provided",
|
|
294058
294076
|
"Lists installed extensions.": "Lists installed extensions.",
|
|
294077
|
+
"Path:": "Path:",
|
|
294078
|
+
"Source:": "Source:",
|
|
294079
|
+
"Type:": "Type:",
|
|
294080
|
+
"Ref:": "Ref:",
|
|
294081
|
+
"Release tag:": "Release tag:",
|
|
294082
|
+
"Enabled (User):": "Enabled (User):",
|
|
294083
|
+
"Enabled (Workspace):": "Enabled (Workspace):",
|
|
294084
|
+
"Context files:": "Context files:",
|
|
294085
|
+
"Skills:": "Skills:",
|
|
294086
|
+
"Agents:": "Agents:",
|
|
294087
|
+
"MCP servers:": "MCP servers:",
|
|
294059
294088
|
"Link extension failed to install.": "Link extension failed to install.",
|
|
294060
294089
|
'Extension "{{name}}" linked successfully and enabled.': 'Extension "{{name}}" linked successfully and enabled.',
|
|
294061
294090
|
"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.",
|
|
@@ -294114,18 +294143,19 @@ var init_en3 = __esm({
|
|
|
294114
294143
|
// ============================================================================
|
|
294115
294144
|
// Commands - Language
|
|
294116
294145
|
// ============================================================================
|
|
294117
|
-
"Invalid language. Available:
|
|
294146
|
+
"Invalid language. Available: {{options}}": "Invalid language. Available: {{options}}",
|
|
294118
294147
|
"Language subcommands do not accept additional arguments.": "Language subcommands do not accept additional arguments.",
|
|
294119
294148
|
"Current UI language: {{lang}}": "Current UI language: {{lang}}",
|
|
294120
294149
|
"Current LLM output language: {{lang}}": "Current LLM output language: {{lang}}",
|
|
294121
294150
|
"LLM output language not set": "LLM output language not set",
|
|
294122
294151
|
"Set UI language": "Set UI language",
|
|
294123
294152
|
"Set LLM output language": "Set LLM output language",
|
|
294124
|
-
"Usage: /language ui [
|
|
294153
|
+
"Usage: /language ui [{{options}}]": "Usage: /language ui [{{options}}]",
|
|
294125
294154
|
"Usage: /language output <language>": "Usage: /language output <language>",
|
|
294126
294155
|
"Example: /language output \u4E2D\u6587": "Example: /language output \u4E2D\u6587",
|
|
294127
294156
|
"Example: /language output English": "Example: /language output English",
|
|
294128
294157
|
"Example: /language output \u65E5\u672C\u8A9E": "Example: /language output \u65E5\u672C\u8A9E",
|
|
294158
|
+
"Example: /language output Portugu\xEAs": "Example: /language output Portugu\xEAs",
|
|
294129
294159
|
"UI language changed to {{lang}}": "UI language changed to {{lang}}",
|
|
294130
294160
|
"LLM output language set to {{lang}}": "LLM output language set to {{lang}}",
|
|
294131
294161
|
"LLM output language rule file generated at {{path}}": "LLM output language rule file generated at {{path}}",
|
|
@@ -294135,10 +294165,7 @@ var init_en3 = __esm({
|
|
|
294135
294165
|
"Available subcommands:": "Available subcommands:",
|
|
294136
294166
|
"To request additional UI language packs, please open an issue on GitHub.": "To request additional UI language packs, please open an issue on GitHub.",
|
|
294137
294167
|
"Available options:": "Available options:",
|
|
294138
|
-
"
|
|
294139
|
-
" - en-US: English": " - en-US: English",
|
|
294140
|
-
"Set UI language to Simplified Chinese (zh-CN)": "Set UI language to Simplified Chinese (zh-CN)",
|
|
294141
|
-
"Set UI language to English (en-US)": "Set UI language to English (en-US)",
|
|
294168
|
+
"Set UI language to {{name}}": "Set UI language to {{name}}",
|
|
294142
294169
|
// ============================================================================
|
|
294143
294170
|
// Commands - Approval Mode
|
|
294144
294171
|
// ============================================================================
|
|
@@ -294701,6 +294728,1719 @@ var init_en3 = __esm({
|
|
|
294701
294728
|
}
|
|
294702
294729
|
});
|
|
294703
294730
|
|
|
294731
|
+
// packages/cli/src/i18n/locales/ja.js
|
|
294732
|
+
var ja_exports = {};
|
|
294733
|
+
__export(ja_exports, {
|
|
294734
|
+
default: () => ja_default
|
|
294735
|
+
});
|
|
294736
|
+
var ja_default;
|
|
294737
|
+
var init_ja = __esm({
|
|
294738
|
+
"packages/cli/src/i18n/locales/ja.js"() {
|
|
294739
|
+
"use strict";
|
|
294740
|
+
init_esbuild_shims();
|
|
294741
|
+
ja_default = {
|
|
294742
|
+
// ============================================================================
|
|
294743
|
+
// Help / UI Components
|
|
294744
|
+
// ============================================================================
|
|
294745
|
+
"Basics:": "\u57FA\u672C\u64CD\u4F5C:",
|
|
294746
|
+
"Add context": "\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8\u3092\u8FFD\u52A0",
|
|
294747
|
+
"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",
|
|
294748
|
+
"@": "@",
|
|
294749
|
+
"@src/myFile.ts": "@src/myFile.ts",
|
|
294750
|
+
"Shell mode": "\u30B7\u30A7\u30EB\u30E2\u30FC\u30C9",
|
|
294751
|
+
"YOLO mode": "YOLO\u30E2\u30FC\u30C9",
|
|
294752
|
+
"plan mode": "\u30D7\u30E9\u30F3\u30E2\u30FC\u30C9",
|
|
294753
|
+
"auto-accept edits": "\u7DE8\u96C6\u3092\u81EA\u52D5\u627F\u8A8D",
|
|
294754
|
+
"Accepting edits": "\u7DE8\u96C6\u3092\u627F\u8A8D\u4E2D",
|
|
294755
|
+
"(shift + tab to cycle)": "(Shift + Tab \u3067\u5207\u308A\u66FF\u3048)",
|
|
294756
|
+
"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}})",
|
|
294757
|
+
"!": "!",
|
|
294758
|
+
"!npm run start": "!npm run start",
|
|
294759
|
+
"start server": "\u30B5\u30FC\u30D0\u30FC\u3092\u8D77\u52D5",
|
|
294760
|
+
"Commands:": "\u30B3\u30DE\u30F3\u30C9:",
|
|
294761
|
+
"shell command": "\u30B7\u30A7\u30EB\u30B3\u30DE\u30F3\u30C9",
|
|
294762
|
+
"Model Context Protocol command (from external servers)": "Model Context Protocol \u30B3\u30DE\u30F3\u30C9(\u5916\u90E8\u30B5\u30FC\u30D0\u30FC\u304B\u3089)",
|
|
294763
|
+
"Keyboard Shortcuts:": "\u30AD\u30FC\u30DC\u30FC\u30C9\u30B7\u30E7\u30FC\u30C8\u30AB\u30C3\u30C8:",
|
|
294764
|
+
"Jump through words in the input": "\u5165\u529B\u6B04\u306E\u5358\u8A9E\u9593\u3092\u79FB\u52D5",
|
|
294765
|
+
"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",
|
|
294766
|
+
"New line": "\u6539\u884C",
|
|
294767
|
+
"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)",
|
|
294768
|
+
"Clear the screen": "\u753B\u9762\u3092\u30AF\u30EA\u30A2",
|
|
294769
|
+
"Open input in external editor": "\u5916\u90E8\u30A8\u30C7\u30A3\u30BF\u3067\u5165\u529B\u3092\u958B\u304F",
|
|
294770
|
+
"Send message": "\u30E1\u30C3\u30BB\u30FC\u30B8\u3092\u9001\u4FE1",
|
|
294771
|
+
"Initializing...": "\u521D\u671F\u5316\u4E2D...",
|
|
294772
|
+
"Connecting to MCP servers... ({{connected}}/{{total}})": "MCP\u30B5\u30FC\u30D0\u30FC\u306B\u63A5\u7D9A\u4E2D... ({{connected}}/{{total}})",
|
|
294773
|
+
"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)",
|
|
294774
|
+
"Press 'i' for INSERT mode and 'Esc' for NORMAL mode.": "'i' \u3067INSERT\u30E2\u30FC\u30C9\u3001'Esc' \u3067NORMAL\u30E2\u30FC\u30C9",
|
|
294775
|
+
"Cancel operation / Clear input (double press)": "\u64CD\u4F5C\u3092\u30AD\u30E3\u30F3\u30BB\u30EB / \u5165\u529B\u3092\u30AF\u30EA\u30A2(2\u56DE\u62BC\u3057)",
|
|
294776
|
+
"Cycle approval modes": "\u627F\u8A8D\u30E2\u30FC\u30C9\u3092\u5207\u308A\u66FF\u3048",
|
|
294777
|
+
"Cycle through your prompt history": "\u30D7\u30ED\u30F3\u30D7\u30C8\u5C65\u6B74\u3092\u9806\u306B\u8868\u793A",
|
|
294778
|
+
"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",
|
|
294779
|
+
"docs/keyboard-shortcuts.md": "docs/keyboard-shortcuts.md",
|
|
294780
|
+
"for help on Qwen Code": "Qwen Code \u306E\u30D8\u30EB\u30D7",
|
|
294781
|
+
"show version info": "\u30D0\u30FC\u30B8\u30E7\u30F3\u60C5\u5831\u3092\u8868\u793A",
|
|
294782
|
+
"submit a bug report": "\u30D0\u30B0\u30EC\u30DD\u30FC\u30C8\u3092\u9001\u4FE1",
|
|
294783
|
+
"About Qwen Code": "Qwen Code \u306B\u3064\u3044\u3066",
|
|
294784
|
+
// ============================================================================
|
|
294785
|
+
// System Information Fields
|
|
294786
|
+
// ============================================================================
|
|
294787
|
+
"CLI Version": "CLI\u30D0\u30FC\u30B8\u30E7\u30F3",
|
|
294788
|
+
"Git Commit": "Git\u30B3\u30DF\u30C3\u30C8",
|
|
294789
|
+
Model: "\u30E2\u30C7\u30EB",
|
|
294790
|
+
Sandbox: "\u30B5\u30F3\u30C9\u30DC\u30C3\u30AF\u30B9",
|
|
294791
|
+
"OS Platform": "OS\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0",
|
|
294792
|
+
"OS Arch": "OS\u30A2\u30FC\u30AD\u30C6\u30AF\u30C1\u30E3",
|
|
294793
|
+
"OS Release": "OS\u30EA\u30EA\u30FC\u30B9",
|
|
294794
|
+
"Node.js Version": "Node.js \u30D0\u30FC\u30B8\u30E7\u30F3",
|
|
294795
|
+
"NPM Version": "NPM \u30D0\u30FC\u30B8\u30E7\u30F3",
|
|
294796
|
+
"Session ID": "\u30BB\u30C3\u30B7\u30E7\u30F3ID",
|
|
294797
|
+
"Auth Method": "\u8A8D\u8A3C\u65B9\u5F0F",
|
|
294798
|
+
"Base URL": "\u30D9\u30FC\u30B9URL",
|
|
294799
|
+
"Memory Usage": "\u30E1\u30E2\u30EA\u4F7F\u7528\u91CF",
|
|
294800
|
+
"IDE Client": "IDE\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8",
|
|
294801
|
+
// ============================================================================
|
|
294802
|
+
// Commands - General
|
|
294803
|
+
// ============================================================================
|
|
294804
|
+
"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",
|
|
294805
|
+
"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]",
|
|
294806
|
+
"Available Qwen Code CLI tools:": "\u5229\u7528\u53EF\u80FD\u306A Qwen Code CLI \u30C4\u30FC\u30EB:",
|
|
294807
|
+
"No tools available": "\u5229\u7528\u53EF\u80FD\u306A\u30C4\u30FC\u30EB\u306F\u3042\u308A\u307E\u305B\u3093",
|
|
294808
|
+
"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",
|
|
294809
|
+
"View or change the language setting": "\u8A00\u8A9E\u8A2D\u5B9A\u3092\u8868\u793A\u307E\u305F\u306F\u5909\u66F4",
|
|
294810
|
+
"change the theme": "\u30C6\u30FC\u30DE\u3092\u5909\u66F4",
|
|
294811
|
+
"Select Theme": "\u30C6\u30FC\u30DE\u3092\u9078\u629E",
|
|
294812
|
+
Preview: "\u30D7\u30EC\u30D3\u30E5\u30FC",
|
|
294813
|
+
"(Use Enter to select, Tab to configure scope)": "(Enter \u3067\u9078\u629E\u3001Tab \u3067\u30B9\u30B3\u30FC\u30D7\u3092\u8A2D\u5B9A)",
|
|
294814
|
+
"(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)",
|
|
294815
|
+
"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",
|
|
294816
|
+
'Theme "{{themeName}}" not found.': '\u30C6\u30FC\u30DE "{{themeName}}" \u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093',
|
|
294817
|
+
'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',
|
|
294818
|
+
"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",
|
|
294819
|
+
"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",
|
|
294820
|
+
"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",
|
|
294821
|
+
"Configuration not available.": "\u8A2D\u5B9A\u304C\u5229\u7528\u3067\u304D\u307E\u305B\u3093",
|
|
294822
|
+
"change the auth method": "\u8A8D\u8A3C\u65B9\u5F0F\u3092\u5909\u66F4",
|
|
294823
|
+
"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",
|
|
294824
|
+
// ============================================================================
|
|
294825
|
+
// Commands - Agents
|
|
294826
|
+
// ============================================================================
|
|
294827
|
+
"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",
|
|
294828
|
+
"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)",
|
|
294829
|
+
"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",
|
|
294830
|
+
// ============================================================================
|
|
294831
|
+
// Agents - Management Dialog
|
|
294832
|
+
// ============================================================================
|
|
294833
|
+
Agents: "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8",
|
|
294834
|
+
"Choose Action": "\u30A2\u30AF\u30B7\u30E7\u30F3\u3092\u9078\u629E",
|
|
294835
|
+
"Edit {{name}}": "{{name}} \u3092\u7DE8\u96C6",
|
|
294836
|
+
"Edit Tools: {{name}}": "\u30C4\u30FC\u30EB\u3092\u7DE8\u96C6: {{name}}",
|
|
294837
|
+
"Edit Color: {{name}}": "\u8272\u3092\u7DE8\u96C6: {{name}}",
|
|
294838
|
+
"Delete {{name}}": "{{name}} \u3092\u524A\u9664",
|
|
294839
|
+
"Unknown Step": "\u4E0D\u660E\u306A\u30B9\u30C6\u30C3\u30D7",
|
|
294840
|
+
"Esc to close": "Esc \u3067\u9589\u3058\u308B",
|
|
294841
|
+
"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",
|
|
294842
|
+
"Esc to go back": "Esc \u3067\u623B\u308B",
|
|
294843
|
+
"Enter to confirm, Esc to cancel": "Enter \u3067\u78BA\u5B9A\u3001Esc \u3067\u30AD\u30E3\u30F3\u30BB\u30EB",
|
|
294844
|
+
"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",
|
|
294845
|
+
"Invalid step: {{step}}": "\u7121\u52B9\u306A\u30B9\u30C6\u30C3\u30D7: {{step}}",
|
|
294846
|
+
"No subagents found.": "\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
294847
|
+
"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",
|
|
294848
|
+
"(built-in)": "(\u7D44\u307F\u8FBC\u307F)",
|
|
294849
|
+
"(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)",
|
|
294850
|
+
"Project Level ({{path}})": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30EC\u30D9\u30EB ({{path}})",
|
|
294851
|
+
"User Level ({{path}})": "\u30E6\u30FC\u30B6\u30FC\u30EC\u30D9\u30EB ({{path}})",
|
|
294852
|
+
"Built-in Agents": "\u7D44\u307F\u8FBC\u307F\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8",
|
|
294853
|
+
"Using: {{count}} agents": "\u4F7F\u7528\u4E2D: {{count}} \u30A8\u30FC\u30B8\u30A7\u30F3\u30C8",
|
|
294854
|
+
"View Agent": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u8868\u793A",
|
|
294855
|
+
"Edit Agent": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u7DE8\u96C6",
|
|
294856
|
+
"Delete Agent": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u524A\u9664",
|
|
294857
|
+
Back: "\u623B\u308B",
|
|
294858
|
+
"No agent selected": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u304C\u9078\u629E\u3055\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
294859
|
+
"File Path: ": "\u30D5\u30A1\u30A4\u30EB\u30D1\u30B9: ",
|
|
294860
|
+
"Tools: ": "\u30C4\u30FC\u30EB: ",
|
|
294861
|
+
"Color: ": "\u8272: ",
|
|
294862
|
+
"Description:": "\u8AAC\u660E:",
|
|
294863
|
+
"System Prompt:": "\u30B7\u30B9\u30C6\u30E0\u30D7\u30ED\u30F3\u30D7\u30C8:",
|
|
294864
|
+
"Open in editor": "\u30A8\u30C7\u30A3\u30BF\u3067\u958B\u304F",
|
|
294865
|
+
"Edit tools": "\u30C4\u30FC\u30EB\u3092\u7DE8\u96C6",
|
|
294866
|
+
"Edit color": "\u8272\u3092\u7DE8\u96C6",
|
|
294867
|
+
"\u274C Error:": "\u274C \u30A8\u30E9\u30FC:",
|
|
294868
|
+
'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?',
|
|
294869
|
+
"Project Level (.qwen/agents/)": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30EC\u30D9\u30EB (.qwen/agents/)",
|
|
294870
|
+
"User Level (~/.qwen/agents/)": "\u30E6\u30FC\u30B6\u30FC\u30EC\u30D9\u30EB (~/.qwen/agents/)",
|
|
294871
|
+
"\u2705 Subagent Created Successfully!": "\u2705 \u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306E\u4F5C\u6210\u306B\u6210\u529F\u3057\u307E\u3057\u305F!",
|
|
294872
|
+
'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',
|
|
294873
|
+
"Name: ": "\u540D\u524D: ",
|
|
294874
|
+
"Location: ": "\u5834\u6240: ",
|
|
294875
|
+
"\u274C Error saving subagent:": "\u274C \u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u4FDD\u5B58\u30A8\u30E9\u30FC:",
|
|
294876
|
+
"Warnings:": "\u8B66\u544A:",
|
|
294877
|
+
"Step {{n}}: Choose Location": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u5834\u6240\u3092\u9078\u629E",
|
|
294878
|
+
"Step {{n}}: Choose Generation Method": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u4F5C\u6210\u65B9\u6CD5\u3092\u9078\u629E",
|
|
294879
|
+
"Generate with Qwen Code (Recommended)": "Qwen Code \u3067\u751F\u6210(\u63A8\u5968)",
|
|
294880
|
+
"Manual Creation": "\u624B\u52D5\u4F5C\u6210",
|
|
294881
|
+
"Generating subagent configuration...": "\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u8A2D\u5B9A\u3092\u751F\u6210\u4E2D...",
|
|
294882
|
+
"Failed to generate subagent: {{error}}": "\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306E\u751F\u6210\u306B\u5931\u6557: {{error}}",
|
|
294883
|
+
"Step {{n}}: Describe Your Subagent": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u8AAC\u660E",
|
|
294884
|
+
"Step {{n}}: Enter Subagent Name": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u540D\u3092\u5165\u529B",
|
|
294885
|
+
"Step {{n}}: Enter System Prompt": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u30B7\u30B9\u30C6\u30E0\u30D7\u30ED\u30F3\u30D7\u30C8\u3092\u5165\u529B",
|
|
294886
|
+
"Step {{n}}: Enter Description": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u8AAC\u660E\u3092\u5165\u529B",
|
|
294887
|
+
"Step {{n}}: Select Tools": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u30C4\u30FC\u30EB\u3092\u9078\u629E",
|
|
294888
|
+
"All Tools (Default)": "\u5168\u30C4\u30FC\u30EB(\u30C7\u30D5\u30A9\u30EB\u30C8)",
|
|
294889
|
+
"All Tools": "\u5168\u30C4\u30FC\u30EB",
|
|
294890
|
+
"Read-only Tools": "\u8AAD\u307F\u53D6\u308A\u5C02\u7528\u30C4\u30FC\u30EB",
|
|
294891
|
+
"Read & Edit Tools": "\u8AAD\u307F\u53D6\u308A\uFF06\u7DE8\u96C6\u30C4\u30FC\u30EB",
|
|
294892
|
+
"Read & Edit & Execution Tools": "\u8AAD\u307F\u53D6\u308A\uFF06\u7DE8\u96C6\uFF06\u5B9F\u884C\u30C4\u30FC\u30EB",
|
|
294893
|
+
"Selected tools:": "\u9078\u629E\u3055\u308C\u305F\u30C4\u30FC\u30EB:",
|
|
294894
|
+
"Step {{n}}: Choose Background Color": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u80CC\u666F\u8272\u3092\u9078\u629E",
|
|
294895
|
+
"Step {{n}}: Confirm and Save": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u78BA\u8A8D\u3057\u3066\u4FDD\u5B58",
|
|
294896
|
+
"Esc to cancel": "Esc \u3067\u30AD\u30E3\u30F3\u30BB\u30EB",
|
|
294897
|
+
cancel: "\u30AD\u30E3\u30F3\u30BB\u30EB",
|
|
294898
|
+
"go back": "\u623B\u308B",
|
|
294899
|
+
"\u2191\u2193 to navigate, ": "\u2191\u2193 \u3067\u79FB\u52D5\u3001",
|
|
294900
|
+
"Name cannot be empty.": "\u540D\u524D\u306F\u7A7A\u306B\u3067\u304D\u307E\u305B\u3093",
|
|
294901
|
+
"System prompt cannot be empty.": "\u30B7\u30B9\u30C6\u30E0\u30D7\u30ED\u30F3\u30D7\u30C8\u306F\u7A7A\u306B\u3067\u304D\u307E\u305B\u3093",
|
|
294902
|
+
"Description cannot be empty.": "\u8AAC\u660E\u306F\u7A7A\u306B\u3067\u304D\u307E\u305B\u3093",
|
|
294903
|
+
"Failed to launch editor: {{error}}": "\u30A8\u30C7\u30A3\u30BF\u306E\u8D77\u52D5\u306B\u5931\u6557: {{error}}",
|
|
294904
|
+
"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}}",
|
|
294905
|
+
'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',
|
|
294906
|
+
'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',
|
|
294907
|
+
'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',
|
|
294908
|
+
"Description is over {{length}} characters": "\u8AAC\u660E\u304C {{length}} \u6587\u5B57\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",
|
|
294909
|
+
"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",
|
|
294910
|
+
"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)",
|
|
294911
|
+
"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...",
|
|
294912
|
+
"All tools selected, including MCP tools": "MCP\u30C4\u30FC\u30EB\u3092\u542B\u3080\u3059\u3079\u3066\u306E\u30C4\u30FC\u30EB\u3092\u9078\u629E",
|
|
294913
|
+
"Read-only tools:": "\u8AAD\u307F\u53D6\u308A\u5C02\u7528\u30C4\u30FC\u30EB:",
|
|
294914
|
+
"Edit tools:": "\u7DE8\u96C6\u30C4\u30FC\u30EB:",
|
|
294915
|
+
"Execution tools:": "\u5B9F\u884C\u30C4\u30FC\u30EB:",
|
|
294916
|
+
"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",
|
|
294917
|
+
"Press Enter to continue, {{navigation}}Esc to {{action}}": "Enter \u3067\u7D9A\u884C\u3001{{navigation}}Esc \u3067{{action}}",
|
|
294918
|
+
"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",
|
|
294919
|
+
"e.g., Code Reviewer": "\u4F8B: \u30B3\u30FC\u30C9\u30EC\u30D3\u30E5\u30A2\u30FC",
|
|
294920
|
+
"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)",
|
|
294921
|
+
"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...",
|
|
294922
|
+
"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",
|
|
294923
|
+
"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",
|
|
294924
|
+
// Commands - General (continued)
|
|
294925
|
+
"(Use Enter to select{{tabText}})": "(Enter \u3067\u9078\u629E{{tabText}})",
|
|
294926
|
+
", Tab to change focus": "\u3001Tab \u3067\u30D5\u30A9\u30FC\u30AB\u30B9\u5909\u66F4",
|
|
294927
|
+
"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",
|
|
294928
|
+
'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',
|
|
294929
|
+
"View and edit Qwen Code settings": "Qwen Code \u306E\u8A2D\u5B9A\u3092\u8868\u793A\u30FB\u7DE8\u96C6",
|
|
294930
|
+
Settings: "\u8A2D\u5B9A",
|
|
294931
|
+
"Vim Mode": "Vim \u30E2\u30FC\u30C9",
|
|
294932
|
+
"Disable Auto Update": "\u81EA\u52D5\u66F4\u65B0\u3092\u7121\u52B9\u5316",
|
|
294933
|
+
Language: "\u8A00\u8A9E",
|
|
294934
|
+
"Output Format": "\u51FA\u529B\u5F62\u5F0F",
|
|
294935
|
+
"Hide Tips": "\u30D2\u30F3\u30C8\u3092\u975E\u8868\u793A",
|
|
294936
|
+
"Hide Banner": "\u30D0\u30CA\u30FC\u3092\u975E\u8868\u793A",
|
|
294937
|
+
"Show Memory Usage": "\u30E1\u30E2\u30EA\u4F7F\u7528\u91CF\u3092\u8868\u793A",
|
|
294938
|
+
"Show Line Numbers": "\u884C\u756A\u53F7\u3092\u8868\u793A",
|
|
294939
|
+
Text: "\u30C6\u30AD\u30B9\u30C8",
|
|
294940
|
+
JSON: "JSON",
|
|
294941
|
+
Plan: "\u30D7\u30E9\u30F3",
|
|
294942
|
+
Default: "\u30C7\u30D5\u30A9\u30EB\u30C8",
|
|
294943
|
+
"Auto Edit": "\u81EA\u52D5\u7DE8\u96C6",
|
|
294944
|
+
YOLO: "YOLO",
|
|
294945
|
+
"toggle vim mode on/off": "Vim \u30E2\u30FC\u30C9\u306E\u30AA\u30F3/\u30AA\u30D5\u3092\u5207\u308A\u66FF\u3048",
|
|
294946
|
+
"exit the cli": "CLI\u3092\u7D42\u4E86",
|
|
294947
|
+
Timeout: "\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8",
|
|
294948
|
+
"Max Retries": "\u6700\u5927\u30EA\u30C8\u30E9\u30A4\u56DE\u6570",
|
|
294949
|
+
"Auto Accept": "\u81EA\u52D5\u627F\u8A8D",
|
|
294950
|
+
"Folder Trust": "\u30D5\u30A9\u30EB\u30C0\u306E\u4FE1\u983C",
|
|
294951
|
+
"Enable Prompt Completion": "\u30D7\u30ED\u30F3\u30D7\u30C8\u88DC\u5B8C\u3092\u6709\u52B9\u5316",
|
|
294952
|
+
"Debug Keystroke Logging": "\u30AD\u30FC\u30B9\u30C8\u30ED\u30FC\u30AF\u306E\u30C7\u30D0\u30C3\u30B0\u30ED\u30B0",
|
|
294953
|
+
"Hide Window Title": "\u30A6\u30A3\u30F3\u30C9\u30A6\u30BF\u30A4\u30C8\u30EB\u3092\u975E\u8868\u793A",
|
|
294954
|
+
"Show Status in Title": "\u30BF\u30A4\u30C8\u30EB\u306B\u30B9\u30C6\u30FC\u30BF\u30B9\u3092\u8868\u793A",
|
|
294955
|
+
"Hide Context Summary": "\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8\u8981\u7D04\u3092\u975E\u8868\u793A",
|
|
294956
|
+
"Hide CWD": "\u4F5C\u696D\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u975E\u8868\u793A",
|
|
294957
|
+
"Hide Sandbox Status": "\u30B5\u30F3\u30C9\u30DC\u30C3\u30AF\u30B9\u72B6\u614B\u3092\u975E\u8868\u793A",
|
|
294958
|
+
"Hide Model Info": "\u30E2\u30C7\u30EB\u60C5\u5831\u3092\u975E\u8868\u793A",
|
|
294959
|
+
"Hide Footer": "\u30D5\u30C3\u30BF\u30FC\u3092\u975E\u8868\u793A",
|
|
294960
|
+
"Show Citations": "\u5F15\u7528\u3092\u8868\u793A",
|
|
294961
|
+
"Custom Witty Phrases": "\u30AB\u30B9\u30BF\u30E0\u30A6\u30A3\u30C3\u30C8\u30D5\u30EC\u30FC\u30BA",
|
|
294962
|
+
"Enable Welcome Back": "\u30A6\u30A7\u30EB\u30AB\u30E0\u30D0\u30C3\u30AF\u6A5F\u80FD\u3092\u6709\u52B9\u5316",
|
|
294963
|
+
"Disable Loading Phrases": "\u30ED\u30FC\u30C7\u30A3\u30F3\u30B0\u30D5\u30EC\u30FC\u30BA\u3092\u7121\u52B9\u5316",
|
|
294964
|
+
"Screen Reader Mode": "\u30B9\u30AF\u30EA\u30FC\u30F3\u30EA\u30FC\u30C0\u30FC\u30E2\u30FC\u30C9",
|
|
294965
|
+
"IDE Mode": "IDE\u30E2\u30FC\u30C9",
|
|
294966
|
+
"Max Session Turns": "\u6700\u5927\u30BB\u30C3\u30B7\u30E7\u30F3\u30BF\u30FC\u30F3\u6570",
|
|
294967
|
+
"Skip Next Speaker Check": "\u6B21\u306E\u767A\u8A00\u8005\u30C1\u30A7\u30C3\u30AF\u3092\u30B9\u30AD\u30C3\u30D7",
|
|
294968
|
+
"Skip Loop Detection": "\u30EB\u30FC\u30D7\u691C\u51FA\u3092\u30B9\u30AD\u30C3\u30D7",
|
|
294969
|
+
"Skip Startup Context": "\u8D77\u52D5\u6642\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8\u3092\u30B9\u30AD\u30C3\u30D7",
|
|
294970
|
+
"Enable OpenAI Logging": "OpenAI \u30ED\u30B0\u3092\u6709\u52B9\u5316",
|
|
294971
|
+
"OpenAI Logging Directory": "OpenAI \u30ED\u30B0\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA",
|
|
294972
|
+
"Disable Cache Control": "\u30AD\u30E3\u30C3\u30B7\u30E5\u5236\u5FA1\u3092\u7121\u52B9\u5316",
|
|
294973
|
+
"Memory Discovery Max Dirs": "\u30E1\u30E2\u30EA\u691C\u51FA\u306E\u6700\u5927\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u6570",
|
|
294974
|
+
"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",
|
|
294975
|
+
"Respect .gitignore": ".gitignore \u3092\u512A\u5148",
|
|
294976
|
+
"Respect .qwenignore": ".qwenignore \u3092\u512A\u5148",
|
|
294977
|
+
"Enable Recursive File Search": "\u518D\u5E30\u7684\u30D5\u30A1\u30A4\u30EB\u691C\u7D22\u3092\u6709\u52B9\u5316",
|
|
294978
|
+
"Disable Fuzzy Search": "\u30D5\u30A1\u30B8\u30FC\u691C\u7D22\u3092\u7121\u52B9\u5316",
|
|
294979
|
+
"Enable Interactive Shell": "\u5BFE\u8A71\u578B\u30B7\u30A7\u30EB\u3092\u6709\u52B9\u5316",
|
|
294980
|
+
"Show Color": "\u8272\u3092\u8868\u793A",
|
|
294981
|
+
"Use Ripgrep": "Ripgrep \u3092\u4F7F\u7528",
|
|
294982
|
+
"Use Builtin Ripgrep": "\u7D44\u307F\u8FBC\u307F Ripgrep \u3092\u4F7F\u7528",
|
|
294983
|
+
"Enable Tool Output Truncation": "\u30C4\u30FC\u30EB\u51FA\u529B\u306E\u5207\u308A\u8A70\u3081\u3092\u6709\u52B9\u5316",
|
|
294984
|
+
"Tool Output Truncation Threshold": "\u30C4\u30FC\u30EB\u51FA\u529B\u5207\u308A\u8A70\u3081\u306E\u3057\u304D\u3044\u5024",
|
|
294985
|
+
"Tool Output Truncation Lines": "\u30C4\u30FC\u30EB\u51FA\u529B\u306E\u5207\u308A\u8A70\u3081\u884C\u6570",
|
|
294986
|
+
"Vision Model Preview": "\u30D3\u30B8\u30E7\u30F3\u30E2\u30C7\u30EB\u30D7\u30EC\u30D3\u30E5\u30FC",
|
|
294987
|
+
"Tool Schema Compliance": "\u30C4\u30FC\u30EB\u30B9\u30AD\u30FC\u30DE\u6E96\u62E0",
|
|
294988
|
+
"Auto (detect from system)": "\u81EA\u52D5(\u30B7\u30B9\u30C6\u30E0\u304B\u3089\u691C\u51FA)",
|
|
294989
|
+
"check session stats. Usage: /stats [model|tools]": "\u30BB\u30C3\u30B7\u30E7\u30F3\u7D71\u8A08\u3092\u78BA\u8A8D\u3002\u4F7F\u3044\u65B9: /stats [model|tools]",
|
|
294990
|
+
"Show model-specific usage statistics.": "\u30E2\u30C7\u30EB\u5225\u306E\u4F7F\u7528\u7D71\u8A08\u3092\u8868\u793A",
|
|
294991
|
+
"Show tool-specific usage statistics.": "\u30C4\u30FC\u30EB\u5225\u306E\u4F7F\u7528\u7D71\u8A08\u3092\u8868\u793A",
|
|
294992
|
+
"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",
|
|
294993
|
+
"Manage workspace directories": "\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u7BA1\u7406",
|
|
294994
|
+
"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",
|
|
294995
|
+
"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",
|
|
294996
|
+
"set external editor preference": "\u5916\u90E8\u30A8\u30C7\u30A3\u30BF\u306E\u8A2D\u5B9A",
|
|
294997
|
+
"Manage extensions": "\u62E1\u5F35\u6A5F\u80FD\u3092\u7BA1\u7406",
|
|
294998
|
+
"List active extensions": "\u6709\u52B9\u306A\u62E1\u5F35\u6A5F\u80FD\u3092\u4E00\u89A7\u8868\u793A",
|
|
294999
|
+
"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",
|
|
295000
|
+
"manage IDE integration": "IDE\u9023\u643A\u3092\u7BA1\u7406",
|
|
295001
|
+
"check status of IDE integration": "IDE\u9023\u643A\u306E\u72B6\u614B\u3092\u78BA\u8A8D",
|
|
295002
|
+
"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",
|
|
295003
|
+
"enable IDE integration": "IDE\u9023\u643A\u3092\u6709\u52B9\u5316",
|
|
295004
|
+
"disable IDE integration": "IDE\u9023\u643A\u3092\u7121\u52B9\u5316",
|
|
295005
|
+
"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",
|
|
295006
|
+
"Set up GitHub Actions": "GitHub Actions \u3092\u8A2D\u5B9A",
|
|
295007
|
+
"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)",
|
|
295008
|
+
"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",
|
|
295009
|
+
"Failed to configure terminal: {{error}}": "\u30BF\u30FC\u30DF\u30CA\u30EB\u306E\u8A2D\u5B9A\u306B\u5931\u6557: {{error}}",
|
|
295010
|
+
"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",
|
|
295011
|
+
"{{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",
|
|
295012
|
+
"File: {{file}}": "\u30D5\u30A1\u30A4\u30EB: {{file}}",
|
|
295013
|
+
"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",
|
|
295014
|
+
"Error: {{error}}": "\u30A8\u30E9\u30FC: {{error}}",
|
|
295015
|
+
"Shift+Enter binding already exists": "Shift+Enter \u30D0\u30A4\u30F3\u30C9\u306F\u65E2\u306B\u5B58\u5728\u3057\u307E\u3059",
|
|
295016
|
+
"Ctrl+Enter binding already exists": "Ctrl+Enter \u30D0\u30A4\u30F3\u30C9\u306F\u65E2\u306B\u5B58\u5728\u3057\u307E\u3059",
|
|
295017
|
+
"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",
|
|
295018
|
+
"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}}",
|
|
295019
|
+
"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",
|
|
295020
|
+
"Modified: {{file}}": "\u5909\u66F4\u6E08\u307F: {{file}}",
|
|
295021
|
+
"{{terminalName}} keybindings already configured.": "{{terminalName}} \u306E\u30AD\u30FC\u30D0\u30A4\u30F3\u30C9\u306F\u65E2\u306B\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u3059",
|
|
295022
|
+
"Failed to configure {{terminalName}}.": "{{terminalName}} \u306E\u8A2D\u5B9A\u306B\u5931\u6557\u3057\u307E\u3057\u305F",
|
|
295023
|
+
"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",
|
|
295024
|
+
"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",
|
|
295025
|
+
'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',
|
|
295026
|
+
// Commands - Language
|
|
295027
|
+
"Invalid language. Available: {{options}}": "\u7121\u52B9\u306A\u8A00\u8A9E\u3067\u3059\u3002\u4F7F\u7528\u53EF\u80FD: {{options}}",
|
|
295028
|
+
"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",
|
|
295029
|
+
"Current UI language: {{lang}}": "\u73FE\u5728\u306EUI\u8A00\u8A9E: {{lang}}",
|
|
295030
|
+
"Current LLM output language: {{lang}}": "\u73FE\u5728\u306ELLM\u51FA\u529B\u8A00\u8A9E: {{lang}}",
|
|
295031
|
+
"LLM output language not set": "LLM\u51FA\u529B\u8A00\u8A9E\u304C\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
295032
|
+
"Set UI language": "UI\u8A00\u8A9E\u3092\u8A2D\u5B9A",
|
|
295033
|
+
"Set LLM output language": "LLM\u51FA\u529B\u8A00\u8A9E\u3092\u8A2D\u5B9A",
|
|
295034
|
+
"Usage: /language ui [{{options}}]": "\u4F7F\u3044\u65B9: /language ui [{{options}}]",
|
|
295035
|
+
"Usage: /language output <language>": "\u4F7F\u3044\u65B9: /language output <\u8A00\u8A9E>",
|
|
295036
|
+
"Example: /language output \u4E2D\u6587": "\u4F8B: /language output \u4E2D\u6587",
|
|
295037
|
+
"Example: /language output English": "\u4F8B: /language output English",
|
|
295038
|
+
"Example: /language output \u65E5\u672C\u8A9E": "\u4F8B: /language output \u65E5\u672C\u8A9E",
|
|
295039
|
+
"Example: /language output Portugu\xEAs": "\u4F8B: /language output Portugu\xEAs",
|
|
295040
|
+
"UI language changed to {{lang}}": "UI\u8A00\u8A9E\u3092 {{lang}} \u306B\u5909\u66F4\u3057\u307E\u3057\u305F",
|
|
295041
|
+
"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",
|
|
295042
|
+
"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",
|
|
295043
|
+
"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}}",
|
|
295044
|
+
"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:",
|
|
295045
|
+
"Available subcommands:": "\u4F7F\u7528\u53EF\u80FD\u306A\u30B5\u30D6\u30B3\u30DE\u30F3\u30C9:",
|
|
295046
|
+
"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",
|
|
295047
|
+
"Available options:": "\u4F7F\u7528\u53EF\u80FD\u306A\u30AA\u30D7\u30B7\u30E7\u30F3:",
|
|
295048
|
+
"Set UI language to {{name}}": "UI\u8A00\u8A9E\u3092 {{name}} \u306B\u8A2D\u5B9A",
|
|
295049
|
+
// Approval Mode
|
|
295050
|
+
"Approval Mode": "\u627F\u8A8D\u30E2\u30FC\u30C9",
|
|
295051
|
+
"Current approval mode: {{mode}}": "\u73FE\u5728\u306E\u627F\u8A8D\u30E2\u30FC\u30C9: {{mode}}",
|
|
295052
|
+
"Available approval modes:": "\u5229\u7528\u53EF\u80FD\u306A\u627F\u8A8D\u30E2\u30FC\u30C9:",
|
|
295053
|
+
"Approval mode changed to: {{mode}}": "\u627F\u8A8D\u30E2\u30FC\u30C9\u3092\u5909\u66F4\u3057\u307E\u3057\u305F: {{mode}}",
|
|
295054
|
+
"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)",
|
|
295055
|
+
"Usage: /approval-mode <mode> [--session|--user|--project]": "\u4F7F\u3044\u65B9: /approval-mode <\u30E2\u30FC\u30C9> [--session|--user|--project]",
|
|
295056
|
+
"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",
|
|
295057
|
+
"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",
|
|
295058
|
+
"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",
|
|
295059
|
+
"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",
|
|
295060
|
+
"YOLO mode - Automatically approve all tools": "YOLO\u30E2\u30FC\u30C9 - \u3059\u3079\u3066\u306E\u30C4\u30FC\u30EB\u3092\u81EA\u52D5\u627F\u8A8D",
|
|
295061
|
+
"{{mode}} mode": "{{mode}}\u30E2\u30FC\u30C9",
|
|
295062
|
+
"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",
|
|
295063
|
+
"Failed to save approval mode: {{error}}": "\u627F\u8A8D\u30E2\u30FC\u30C9\u306E\u4FDD\u5B58\u306B\u5931\u6557: {{error}}",
|
|
295064
|
+
"Failed to change approval mode: {{error}}": "\u627F\u8A8D\u30E2\u30FC\u30C9\u306E\u5909\u66F4\u306B\u5931\u6557: {{error}}",
|
|
295065
|
+
"Apply to current session only (temporary)": "\u73FE\u5728\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u306E\u307F\u306B\u9069\u7528(\u4E00\u6642\u7684)",
|
|
295066
|
+
"Persist for this project/workspace": "\u3053\u306E\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8/\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u306B\u4FDD\u5B58",
|
|
295067
|
+
"Persist for this user on this machine": "\u3053\u306E\u30DE\u30B7\u30F3\u306E\u3053\u306E\u30E6\u30FC\u30B6\u30FC\u306B\u4FDD\u5B58",
|
|
295068
|
+
"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",
|
|
295069
|
+
"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",
|
|
295070
|
+
"Automatically approve file edits": "\u30D5\u30A1\u30A4\u30EB\u7DE8\u96C6\u3092\u81EA\u52D5\u627F\u8A8D",
|
|
295071
|
+
"Automatically approve all tools": "\u3059\u3079\u3066\u306E\u30C4\u30FC\u30EB\u3092\u81EA\u52D5\u627F\u8A8D",
|
|
295072
|
+
"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",
|
|
295073
|
+
"(Use Enter to select, Tab to change focus)": "(Enter \u3067\u9078\u629E\u3001Tab \u3067\u30D5\u30A9\u30FC\u30AB\u30B9\u5909\u66F4)",
|
|
295074
|
+
"Apply To": "\u9069\u7528\u5148",
|
|
295075
|
+
"User Settings": "\u30E6\u30FC\u30B6\u30FC\u8A2D\u5B9A",
|
|
295076
|
+
"Workspace Settings": "\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u8A2D\u5B9A",
|
|
295077
|
+
// Memory
|
|
295078
|
+
"Commands for interacting with memory.": "\u30E1\u30E2\u30EA\u64CD\u4F5C\u306E\u30B3\u30DE\u30F3\u30C9",
|
|
295079
|
+
"Show the current memory contents.": "\u73FE\u5728\u306E\u30E1\u30E2\u30EA\u5185\u5BB9\u3092\u8868\u793A",
|
|
295080
|
+
"Show project-level memory contents.": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30EC\u30D9\u30EB\u306E\u30E1\u30E2\u30EA\u5185\u5BB9\u3092\u8868\u793A",
|
|
295081
|
+
"Show global memory contents.": "\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u5185\u5BB9\u3092\u8868\u793A",
|
|
295082
|
+
"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",
|
|
295083
|
+
"Add content to global memory.": "\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u306B\u30B3\u30F3\u30C6\u30F3\u30C4\u3092\u8FFD\u52A0",
|
|
295084
|
+
"Refresh the memory from the source.": "\u30BD\u30FC\u30B9\u304B\u3089\u30E1\u30E2\u30EA\u3092\u66F4\u65B0",
|
|
295085
|
+
"Usage: /memory add --project <text to remember>": "\u4F7F\u3044\u65B9: /memory add --project <\u8A18\u61B6\u3059\u308B\u30C6\u30AD\u30B9\u30C8>",
|
|
295086
|
+
"Usage: /memory add --global <text to remember>": "\u4F7F\u3044\u65B9: /memory add --global <\u8A18\u61B6\u3059\u308B\u30C6\u30AD\u30B9\u30C8>",
|
|
295087
|
+
'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}}"',
|
|
295088
|
+
'Attempting to save to global memory: "{{text}}"': '\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u3078\u306E\u4FDD\u5B58\u3092\u8A66\u884C\u4E2D: "{{text}}"',
|
|
295089
|
+
"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:",
|
|
295090
|
+
"Memory is currently empty.": "\u30E1\u30E2\u30EA\u306F\u73FE\u5728\u7A7A\u3067\u3059",
|
|
295091
|
+
"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",
|
|
295092
|
+
"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",
|
|
295093
|
+
"Global memory is currently empty.": "\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u306F\u73FE\u5728\u7A7A\u3067\u3059",
|
|
295094
|
+
"Global memory content:\n\n---\n{{content}}\n---": "\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u5185\u5BB9:\n\n---\n{{content}}\n---",
|
|
295095
|
+
"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---",
|
|
295096
|
+
"Project memory is currently empty.": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30E1\u30E2\u30EA\u306F\u73FE\u5728\u7A7A\u3067\u3059",
|
|
295097
|
+
"Refreshing memory from source files...": "\u30BD\u30FC\u30B9\u30D5\u30A1\u30A4\u30EB\u304B\u3089\u30E1\u30E2\u30EA\u3092\u66F4\u65B0\u4E2D...",
|
|
295098
|
+
"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",
|
|
295099
|
+
"Usage: /memory add [--global|--project] <text to remember>": "\u4F7F\u3044\u65B9: /memory add [--global|--project] <\u8A18\u61B6\u3059\u308B\u30C6\u30AD\u30B9\u30C8>",
|
|
295100
|
+
'Attempting to save to memory {{scope}}: "{{fact}}"': '\u30E1\u30E2\u30EA {{scope}} \u3078\u306E\u4FDD\u5B58\u3092\u8A66\u884C\u4E2D: "{{fact}}"',
|
|
295101
|
+
// MCP
|
|
295102
|
+
"Authenticate with an OAuth-enabled MCP server": "OAuth\u5BFE\u5FDC\u306EMCP\u30B5\u30FC\u30D0\u30FC\u3067\u8A8D\u8A3C",
|
|
295103
|
+
"List configured MCP servers and tools": "\u8A2D\u5B9A\u6E08\u307F\u306EMCP\u30B5\u30FC\u30D0\u30FC\u3068\u30C4\u30FC\u30EB\u3092\u4E00\u89A7\u8868\u793A",
|
|
295104
|
+
"No MCP servers configured.": "MCP\u30B5\u30FC\u30D0\u30FC\u304C\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
295105
|
+
"Restarts MCP servers.": "MCP\u30B5\u30FC\u30D0\u30FC\u3092\u518D\u8D77\u52D5\u3057\u307E\u3059",
|
|
295106
|
+
"Config not loaded.": "\u8A2D\u5B9A\u304C\u8AAD\u307F\u8FBC\u307E\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
295107
|
+
"Could not retrieve tool registry.": "\u30C4\u30FC\u30EB\u30EC\u30B8\u30B9\u30C8\u30EA\u3092\u53D6\u5F97\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F",
|
|
295108
|
+
"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",
|
|
295109
|
+
"MCP servers with OAuth authentication:": "OAuth\u8A8D\u8A3C\u306EMCP\u30B5\u30FC\u30D0\u30FC:",
|
|
295110
|
+
"Use /mcp auth <server-name> to authenticate.": "\u8A8D\u8A3C\u3059\u308B\u306B\u306F /mcp auth <\u30B5\u30FC\u30D0\u30FC\u540D> \u3092\u4F7F\u7528",
|
|
295111
|
+
"MCP server '{{name}}' not found.": "MCP\u30B5\u30FC\u30D0\u30FC '{{name}}' \u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
295112
|
+
"Successfully authenticated and refreshed tools for '{{name}}'.": "'{{name}}' \u306E\u8A8D\u8A3C\u3068\u30C4\u30FC\u30EB\u66F4\u65B0\u306B\u6210\u529F\u3057\u307E\u3057\u305F",
|
|
295113
|
+
"Failed to authenticate with MCP server '{{name}}': {{error}}": "MCP\u30B5\u30FC\u30D0\u30FC '{{name}}' \u3067\u306E\u8A8D\u8A3C\u306B\u5931\u6557: {{error}}",
|
|
295114
|
+
"Re-discovering tools from '{{name}}'...": "'{{name}}' \u304B\u3089\u30C4\u30FC\u30EB\u3092\u518D\u691C\u51FA\u4E2D...",
|
|
295115
|
+
"Configured MCP servers:": "\u8A2D\u5B9A\u6E08\u307FMCP\u30B5\u30FC\u30D0\u30FC:",
|
|
295116
|
+
Ready: "\u6E96\u5099\u5B8C\u4E86",
|
|
295117
|
+
Disconnected: "\u5207\u65AD",
|
|
295118
|
+
"{{count}} tool": "{{count}} \u30C4\u30FC\u30EB",
|
|
295119
|
+
"{{count}} tools": "{{count}} \u30C4\u30FC\u30EB",
|
|
295120
|
+
"Restarting MCP servers...": "MCP\u30B5\u30FC\u30D0\u30FC\u3092\u518D\u8D77\u52D5\u4E2D...",
|
|
295121
|
+
// Chat
|
|
295122
|
+
"Manage conversation history.": "\u4F1A\u8A71\u5C65\u6B74\u3092\u7BA1\u7406\u3057\u307E\u3059",
|
|
295123
|
+
"List saved conversation checkpoints": "\u4FDD\u5B58\u3055\u308C\u305F\u4F1A\u8A71\u30C1\u30A7\u30C3\u30AF\u30DD\u30A4\u30F3\u30C8\u3092\u4E00\u89A7\u8868\u793A",
|
|
295124
|
+
"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",
|
|
295125
|
+
"List of saved conversations:": "\u4FDD\u5B58\u3055\u308C\u305F\u4F1A\u8A71\u306E\u4E00\u89A7:",
|
|
295126
|
+
"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",
|
|
295127
|
+
"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>",
|
|
295128
|
+
"Missing tag. Usage: /chat save <tag>": "\u30BF\u30B0\u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059\u3002\u4F7F\u3044\u65B9: /chat save <\u30BF\u30B0>",
|
|
295129
|
+
"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>",
|
|
295130
|
+
"Missing tag. Usage: /chat delete <tag>": "\u30BF\u30B0\u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059\u3002\u4F7F\u3044\u65B9: /chat delete <\u30BF\u30B0>",
|
|
295131
|
+
"Conversation checkpoint '{{tag}}' has been deleted.": "\u4F1A\u8A71\u30C1\u30A7\u30C3\u30AF\u30DD\u30A4\u30F3\u30C8 '{{tag}}' \u3092\u524A\u9664\u3057\u307E\u3057\u305F",
|
|
295132
|
+
"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",
|
|
295133
|
+
"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>",
|
|
295134
|
+
"Missing tag. Usage: /chat resume <tag>": "\u30BF\u30B0\u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059\u3002\u4F7F\u3044\u65B9: /chat resume <\u30BF\u30B0>",
|
|
295135
|
+
"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",
|
|
295136
|
+
"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?",
|
|
295137
|
+
"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",
|
|
295138
|
+
"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",
|
|
295139
|
+
"No conversation found to save.": "\u4FDD\u5B58\u3059\u308B\u4F1A\u8A71\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
295140
|
+
"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",
|
|
295141
|
+
"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",
|
|
295142
|
+
"Error sharing conversation: {{error}}": "\u4F1A\u8A71\u306E\u5171\u6709\u4E2D\u306B\u30A8\u30E9\u30FC: {{error}}",
|
|
295143
|
+
"Conversation shared to {{filePath}}": "\u4F1A\u8A71\u3092 {{filePath}} \u306B\u5171\u6709\u3057\u307E\u3057\u305F",
|
|
295144
|
+
"No conversation found to share.": "\u5171\u6709\u3059\u308B\u4F1A\u8A71\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
295145
|
+
"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>",
|
|
295146
|
+
// Summary
|
|
295147
|
+
"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",
|
|
295148
|
+
"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",
|
|
295149
|
+
"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",
|
|
295150
|
+
"No conversation found to summarize.": "\u8981\u7D04\u3059\u308B\u4F1A\u8A71\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
295151
|
+
"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}}",
|
|
295152
|
+
"Saved project summary to {{filePathForDisplay}}.": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30B5\u30DE\u30EA\u30FC\u3092 {{filePathForDisplay}} \u306B\u4FDD\u5B58\u3057\u307E\u3057\u305F",
|
|
295153
|
+
"Saving project summary...": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30B5\u30DE\u30EA\u30FC\u3092\u4FDD\u5B58\u4E2D...",
|
|
295154
|
+
"Generating project summary...": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30B5\u30DE\u30EA\u30FC\u3092\u751F\u6210\u4E2D...",
|
|
295155
|
+
"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",
|
|
295156
|
+
// Model
|
|
295157
|
+
"Switch the model for this session": "\u3053\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u306E\u30E2\u30C7\u30EB\u3092\u5207\u308A\u66FF\u3048",
|
|
295158
|
+
"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",
|
|
295159
|
+
"Authentication type not available.": "\u8A8D\u8A3C\u30BF\u30A4\u30D7\u304C\u5229\u7528\u3067\u304D\u307E\u305B\u3093",
|
|
295160
|
+
"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",
|
|
295161
|
+
// Clear
|
|
295162
|
+
"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",
|
|
295163
|
+
"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",
|
|
295164
|
+
// Compress
|
|
295165
|
+
"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",
|
|
295166
|
+
"Failed to compress chat history.": "\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u306E\u5727\u7E2E\u306B\u5931\u6557\u3057\u307E\u3057\u305F",
|
|
295167
|
+
"Failed to compress chat history: {{error}}": "\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u306E\u5727\u7E2E\u306B\u5931\u6557: {{error}}",
|
|
295168
|
+
"Compressing chat history": "\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u3092\u5727\u7E2E\u4E2D",
|
|
295169
|
+
"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",
|
|
295170
|
+
"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",
|
|
295171
|
+
"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",
|
|
295172
|
+
"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",
|
|
295173
|
+
"Chat history is already compressed.": "\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u306F\u65E2\u306B\u5727\u7E2E\u3055\u308C\u3066\u3044\u307E\u3059",
|
|
295174
|
+
// Directory
|
|
295175
|
+
"Configuration is not available.": "\u8A2D\u5B9A\u304C\u5229\u7528\u3067\u304D\u307E\u305B\u3093",
|
|
295176
|
+
"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",
|
|
295177
|
+
"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",
|
|
295178
|
+
"Error adding '{{path}}': {{error}}": "'{{path}}' \u306E\u8FFD\u52A0\u4E2D\u306B\u30A8\u30E9\u30FC: {{error}}",
|
|
295179
|
+
"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}}",
|
|
295180
|
+
"Error refreshing memory: {{error}}": "\u30E1\u30E2\u30EA\u306E\u66F4\u65B0\u4E2D\u306B\u30A8\u30E9\u30FC: {{error}}",
|
|
295181
|
+
"Successfully added directories:\n- {{directories}}": "\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u6B63\u5E38\u306B\u8FFD\u52A0\u3057\u307E\u3057\u305F:\n- {{directories}}",
|
|
295182
|
+
"Current workspace directories:\n{{directories}}": "\u73FE\u5728\u306E\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA:\n{{directories}}",
|
|
295183
|
+
// Docs
|
|
295184
|
+
"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}}",
|
|
295185
|
+
"Opening documentation in your browser: {{url}}": " \u30D6\u30E9\u30A6\u30B6\u3067\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8\u3092\u958B\u304D\u307E\u3057\u305F: {{url}}",
|
|
295186
|
+
// Dialogs - Tool Confirmation
|
|
295187
|
+
"Do you want to proceed?": "\u7D9A\u884C\u3057\u307E\u3059\u304B?",
|
|
295188
|
+
"Yes, allow once": "\u306F\u3044(\u4ECA\u56DE\u306E\u307F\u8A31\u53EF)",
|
|
295189
|
+
"Allow always": "\u5E38\u306B\u8A31\u53EF\u3059\u308B",
|
|
295190
|
+
No: "\u3044\u3044\u3048",
|
|
295191
|
+
"No (esc)": "\u3044\u3044\u3048 (Esc)",
|
|
295192
|
+
"Yes, allow always for this session": "\u306F\u3044\u3001\u3053\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u3067\u5E38\u306B\u8A31\u53EF",
|
|
295193
|
+
"Modify in progress:": "\u5909\u66F4\u4E2D:",
|
|
295194
|
+
"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",
|
|
295195
|
+
"Apply this change?": "\u3053\u306E\u5909\u66F4\u3092\u9069\u7528\u3057\u307E\u3059\u304B?",
|
|
295196
|
+
"Yes, allow always": "\u306F\u3044\u3001\u5E38\u306B\u8A31\u53EF",
|
|
295197
|
+
"Modify with external editor": "\u5916\u90E8\u30A8\u30C7\u30A3\u30BF\u3067\u7DE8\u96C6",
|
|
295198
|
+
"No, suggest changes (esc)": "\u3044\u3044\u3048\u3001\u5909\u66F4\u3092\u63D0\u6848 (Esc)",
|
|
295199
|
+
"Allow execution of: '{{command}}'?": "'{{command}}' \u306E\u5B9F\u884C\u3092\u8A31\u53EF\u3057\u307E\u3059\u304B?",
|
|
295200
|
+
"Yes, allow always ...": "\u306F\u3044\u3001\u5E38\u306B\u8A31\u53EF...",
|
|
295201
|
+
"Yes, and auto-accept edits": "\u306F\u3044\u3001\u7DE8\u96C6\u3092\u81EA\u52D5\u627F\u8A8D",
|
|
295202
|
+
"Yes, and manually approve edits": "\u306F\u3044\u3001\u7DE8\u96C6\u3092\u624B\u52D5\u627F\u8A8D",
|
|
295203
|
+
"No, keep planning (esc)": "\u3044\u3044\u3048\u3001\u8A08\u753B\u3092\u7D9A\u3051\u308B (Esc)",
|
|
295204
|
+
"URLs to fetch:": "\u53D6\u5F97\u3059\u308BURL:",
|
|
295205
|
+
"MCP Server: {{server}}": "MCP\u30B5\u30FC\u30D0\u30FC: {{server}}",
|
|
295206
|
+
"Tool: {{tool}}": "\u30C4\u30FC\u30EB: {{tool}}",
|
|
295207
|
+
'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?',
|
|
295208
|
+
'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',
|
|
295209
|
+
'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',
|
|
295210
|
+
// Dialogs - Shell Confirmation
|
|
295211
|
+
"Shell Command Execution": "\u30B7\u30A7\u30EB\u30B3\u30DE\u30F3\u30C9\u5B9F\u884C",
|
|
295212
|
+
"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:",
|
|
295213
|
+
// Dialogs - Pro Quota
|
|
295214
|
+
"Pro quota limit reached for {{model}}.": "{{model}} \u306EPro\u30AF\u30A9\u30FC\u30BF\u4E0A\u9650\u306B\u9054\u3057\u307E\u3057\u305F",
|
|
295215
|
+
"Change auth (executes the /auth command)": "\u8A8D\u8A3C\u3092\u5909\u66F4(/auth \u30B3\u30DE\u30F3\u30C9\u3092\u5B9F\u884C)",
|
|
295216
|
+
"Continue with {{model}}": "{{model}} \u3067\u7D9A\u884C",
|
|
295217
|
+
// Dialogs - Welcome Back
|
|
295218
|
+
"Current Plan:": "\u73FE\u5728\u306E\u30D7\u30E9\u30F3:",
|
|
295219
|
+
"Progress: {{done}}/{{total}} tasks completed": "\u9032\u6357: {{done}}/{{total}} \u30BF\u30B9\u30AF\u5B8C\u4E86",
|
|
295220
|
+
", {{inProgress}} in progress": "\u3001{{inProgress}} \u9032\u884C\u4E2D",
|
|
295221
|
+
"Pending Tasks:": "\u4FDD\u7559\u4E2D\u306E\u30BF\u30B9\u30AF:",
|
|
295222
|
+
"What would you like to do?": "\u4F55\u3092\u3057\u307E\u3059\u304B?",
|
|
295223
|
+
"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:",
|
|
295224
|
+
"Start new chat session": "\u65B0\u3057\u3044\u30C1\u30E3\u30C3\u30C8\u30BB\u30C3\u30B7\u30E7\u30F3\u3092\u958B\u59CB",
|
|
295225
|
+
"Continue previous conversation": "\u524D\u56DE\u306E\u4F1A\u8A71\u3092\u7D9A\u884C",
|
|
295226
|
+
"\u{1F44B} Welcome back! (Last updated: {{timeAgo}})": "\u{1F44B} \u304A\u304B\u3048\u308A\u306A\u3055\u3044!(\u6700\u7D42\u66F4\u65B0: {{timeAgo}})",
|
|
295227
|
+
"\u{1F3AF} Overall Goal:": "\u{1F3AF} \u5168\u4F53\u76EE\u6A19:",
|
|
295228
|
+
// Dialogs - Auth
|
|
295229
|
+
"Get started": "\u59CB\u3081\u308B",
|
|
295230
|
+
"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:",
|
|
295231
|
+
"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",
|
|
295232
|
+
"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",
|
|
295233
|
+
"(Use Enter to Set Auth)": "(Enter \u3067\u8A8D\u8A3C\u3092\u8A2D\u5B9A)",
|
|
295234
|
+
"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",
|
|
295235
|
+
"Qwen OAuth": "Qwen OAuth",
|
|
295236
|
+
OpenAI: "OpenAI",
|
|
295237
|
+
"Failed to login. Message: {{message}}": "\u30ED\u30B0\u30A4\u30F3\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002\u30E1\u30C3\u30BB\u30FC\u30B8: {{message}}",
|
|
295238
|
+
"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",
|
|
295239
|
+
"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",
|
|
295240
|
+
"Qwen OAuth authentication cancelled.": "Qwen OAuth\u8A8D\u8A3C\u304C\u30AD\u30E3\u30F3\u30BB\u30EB\u3055\u308C\u307E\u3057\u305F",
|
|
295241
|
+
"Qwen OAuth Authentication": "Qwen OAuth\u8A8D\u8A3C",
|
|
295242
|
+
"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:",
|
|
295243
|
+
"Or scan the QR code below:": "\u307E\u305F\u306F\u4EE5\u4E0B\u306EQR\u30B3\u30FC\u30C9\u3092\u30B9\u30AD\u30E3\u30F3:",
|
|
295244
|
+
"Waiting for authorization": "\u8A8D\u8A3C\u3092\u5F85\u3063\u3066\u3044\u307E\u3059",
|
|
295245
|
+
"Time remaining:": "\u6B8B\u308A\u6642\u9593:",
|
|
295246
|
+
"(Press ESC or CTRL+C to cancel)": "(ESC \u307E\u305F\u306F CTRL+C \u3067\u30AD\u30E3\u30F3\u30BB\u30EB)",
|
|
295247
|
+
"Qwen OAuth Authentication Timeout": "Qwen OAuth\u8A8D\u8A3C\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8",
|
|
295248
|
+
"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",
|
|
295249
|
+
"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",
|
|
295250
|
+
"Waiting for Qwen OAuth authentication...": "Qwen OAuth\u8A8D\u8A3C\u3092\u5F85\u3063\u3066\u3044\u307E\u3059...",
|
|
295251
|
+
"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",
|
|
295252
|
+
"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",
|
|
295253
|
+
"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)",
|
|
295254
|
+
"Failed to authenticate. Message: {{message}}": "\u8A8D\u8A3C\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002\u30E1\u30C3\u30BB\u30FC\u30B8: {{message}}",
|
|
295255
|
+
"Authenticated successfully with {{authType}} credentials.": "{{authType}} \u8A8D\u8A3C\u60C5\u5831\u3067\u6B63\u5E38\u306B\u8A8D\u8A3C\u3055\u308C\u307E\u3057\u305F",
|
|
295256
|
+
'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}}',
|
|
295257
|
+
"OpenAI Configuration Required": "OpenAI\u8A2D\u5B9A\u304C\u5FC5\u8981\u3067\u3059",
|
|
295258
|
+
"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",
|
|
295259
|
+
"API Key:": "API\u30AD\u30FC:",
|
|
295260
|
+
"Invalid credentials: {{errorMessage}}": "\u7121\u52B9\u306A\u8A8D\u8A3C\u60C5\u5831: {{errorMessage}}",
|
|
295261
|
+
"Failed to validate credentials": "\u8A8D\u8A3C\u60C5\u5831\u306E\u691C\u8A3C\u306B\u5931\u6557\u3057\u307E\u3057\u305F",
|
|
295262
|
+
"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",
|
|
295263
|
+
// Dialogs - Model
|
|
295264
|
+
"Select Model": "\u30E2\u30C7\u30EB\u3092\u9078\u629E",
|
|
295265
|
+
"(Press Esc to close)": "(Esc \u3067\u9589\u3058\u308B)",
|
|
295266
|
+
"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)",
|
|
295267
|
+
"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)",
|
|
295268
|
+
// Dialogs - Permissions
|
|
295269
|
+
"Manage folder trust settings": "\u30D5\u30A9\u30EB\u30C0\u4FE1\u983C\u8A2D\u5B9A\u3092\u7BA1\u7406",
|
|
295270
|
+
// Status Bar
|
|
295271
|
+
"Using:": "\u4F7F\u7528\u4E2D:",
|
|
295272
|
+
"{{count}} open file": "{{count}} \u500B\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u3044\u3066\u3044\u307E\u3059",
|
|
295273
|
+
"{{count}} open files": "{{count}} \u500B\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u3044\u3066\u3044\u307E\u3059",
|
|
295274
|
+
"(ctrl+g to view)": "(Ctrl+G \u3067\u8868\u793A)",
|
|
295275
|
+
"{{count}} {{name}} file": "{{count}} {{name}} \u30D5\u30A1\u30A4\u30EB",
|
|
295276
|
+
"{{count}} {{name}} files": "{{count}} {{name}} \u30D5\u30A1\u30A4\u30EB",
|
|
295277
|
+
"{{count}} MCP server": "{{count}} MCP\u30B5\u30FC\u30D0\u30FC",
|
|
295278
|
+
"{{count}} MCP servers": "{{count}} MCP\u30B5\u30FC\u30D0\u30FC",
|
|
295279
|
+
"{{count}} Blocked": "{{count}} \u30D6\u30ED\u30C3\u30AF",
|
|
295280
|
+
"(ctrl+t to view)": "(Ctrl+T \u3067\u8868\u793A)",
|
|
295281
|
+
"(ctrl+t to toggle)": "(Ctrl+T \u3067\u5207\u308A\u66FF\u3048)",
|
|
295282
|
+
"Press Ctrl+C again to exit.": "Ctrl+C \u3092\u3082\u3046\u4E00\u5EA6\u62BC\u3059\u3068\u7D42\u4E86\u3057\u307E\u3059",
|
|
295283
|
+
"Press Ctrl+D again to exit.": "Ctrl+D \u3092\u3082\u3046\u4E00\u5EA6\u62BC\u3059\u3068\u7D42\u4E86\u3057\u307E\u3059",
|
|
295284
|
+
"Press Esc again to clear.": "Esc \u3092\u3082\u3046\u4E00\u5EA6\u62BC\u3059\u3068\u30AF\u30EA\u30A2\u3057\u307E\u3059",
|
|
295285
|
+
// MCP Status
|
|
295286
|
+
"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:",
|
|
295287
|
+
"or use the cli /docs command": "\u307E\u305F\u306F CLI \u306E /docs \u30B3\u30DE\u30F3\u30C9\u3092\u4F7F\u7528",
|
|
295288
|
+
"\u23F3 MCP servers are starting up ({{count}} initializing)...": "\u23F3 MCP\u30B5\u30FC\u30D0\u30FC\u3092\u8D77\u52D5\u4E2D({{count}} \u521D\u671F\u5316\u4E2D)...",
|
|
295289
|
+
"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",
|
|
295290
|
+
"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)",
|
|
295291
|
+
"{{count}} prompt": "{{count}} \u30D7\u30ED\u30F3\u30D7\u30C8",
|
|
295292
|
+
"{{count}} prompts": "{{count}} \u30D7\u30ED\u30F3\u30D7\u30C8",
|
|
295293
|
+
"(from {{extensionName}})": "({{extensionName}} \u304B\u3089)",
|
|
295294
|
+
OAuth: "OAuth",
|
|
295295
|
+
"OAuth expired": "OAuth \u671F\u9650\u5207\u308C",
|
|
295296
|
+
"OAuth not authenticated": "OAuth \u672A\u8A8D\u8A3C",
|
|
295297
|
+
"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",
|
|
295298
|
+
"{{count}} tools cached": "{{count}} \u30C4\u30FC\u30EB(\u30AD\u30E3\u30C3\u30B7\u30E5\u6E08\u307F)",
|
|
295299
|
+
"Tools:": "\u30C4\u30FC\u30EB:",
|
|
295300
|
+
"Parameters:": "\u30D1\u30E9\u30E1\u30FC\u30BF:",
|
|
295301
|
+
"Prompts:": "\u30D7\u30ED\u30F3\u30D7\u30C8:",
|
|
295302
|
+
Blocked: "\u30D6\u30ED\u30C3\u30AF",
|
|
295303
|
+
"\u{1F4A1} Tips:": "\u{1F4A1} \u30D2\u30F3\u30C8:",
|
|
295304
|
+
Use: "\u4F7F\u7528",
|
|
295305
|
+
"to show server and tool descriptions": "\u30B5\u30FC\u30D0\u30FC\u3068\u30C4\u30FC\u30EB\u306E\u8AAC\u660E\u3092\u8868\u793A",
|
|
295306
|
+
"to show tool parameter schemas": "\u30C4\u30FC\u30EB\u30D1\u30E9\u30E1\u30FC\u30BF\u30B9\u30AD\u30FC\u30DE\u3092\u8868\u793A",
|
|
295307
|
+
"to hide descriptions": "\u8AAC\u660E\u3092\u975E\u8868\u793A",
|
|
295308
|
+
"to authenticate with OAuth-enabled servers": "OAuth\u5BFE\u5FDC\u30B5\u30FC\u30D0\u30FC\u3067\u8A8D\u8A3C",
|
|
295309
|
+
Press: "\u62BC\u3059",
|
|
295310
|
+
"to toggle tool descriptions on/off": "\u30C4\u30FC\u30EB\u8AAC\u660E\u306E\u8868\u793A/\u975E\u8868\u793A\u3092\u5207\u308A\u66FF\u3048",
|
|
295311
|
+
"Starting OAuth authentication for MCP server '{{name}}'...": "MCP\u30B5\u30FC\u30D0\u30FC '{{name}}' \u306EOAuth\u8A8D\u8A3C\u3092\u958B\u59CB\u4E2D...",
|
|
295312
|
+
// Startup Tips
|
|
295313
|
+
"Tips for getting started:": "\u59CB\u3081\u308B\u305F\u3081\u306E\u30D2\u30F3\u30C8:",
|
|
295314
|
+
"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",
|
|
295315
|
+
"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",
|
|
295316
|
+
"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",
|
|
295317
|
+
"for more information.": "\u8A73\u7D30\u60C5\u5831\u3092\u78BA\u8A8D\u3067\u304D\u307E\u3059",
|
|
295318
|
+
// Exit Screen / Stats
|
|
295319
|
+
"Agent powering down. Goodbye!": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u7D42\u4E86\u3057\u307E\u3059\u3002\u3055\u3088\u3046\u306A\u3089!",
|
|
295320
|
+
"To continue this session, run": "\u3053\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u3092\u7D9A\u884C\u3059\u308B\u306B\u306F\u3001\u6B21\u3092\u5B9F\u884C:",
|
|
295321
|
+
"Interaction Summary": "\u30A4\u30F3\u30BF\u30E9\u30AF\u30B7\u30E7\u30F3\u6982\u8981",
|
|
295322
|
+
"Session ID:": "\u30BB\u30C3\u30B7\u30E7\u30F3ID:",
|
|
295323
|
+
"Tool Calls:": "\u30C4\u30FC\u30EB\u547C\u3073\u51FA\u3057:",
|
|
295324
|
+
"Success Rate:": "\u6210\u529F\u7387:",
|
|
295325
|
+
"User Agreement:": "\u30E6\u30FC\u30B6\u30FC\u540C\u610F:",
|
|
295326
|
+
reviewed: "\u30EC\u30D3\u30E5\u30FC\u6E08\u307F",
|
|
295327
|
+
"Code Changes:": "\u30B3\u30FC\u30C9\u5909\u66F4:",
|
|
295328
|
+
Performance: "\u30D1\u30D5\u30A9\u30FC\u30DE\u30F3\u30B9",
|
|
295329
|
+
"Wall Time:": "\u7D4C\u904E\u6642\u9593:",
|
|
295330
|
+
"Agent Active:": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u7A3C\u50CD\u6642\u9593:",
|
|
295331
|
+
"API Time:": "API\u6642\u9593:",
|
|
295332
|
+
"Tool Time:": "\u30C4\u30FC\u30EB\u6642\u9593:",
|
|
295333
|
+
"Session Stats": "\u30BB\u30C3\u30B7\u30E7\u30F3\u7D71\u8A08",
|
|
295334
|
+
"Model Usage": "\u30E2\u30C7\u30EB\u4F7F\u7528\u91CF",
|
|
295335
|
+
Reqs: "\u30EA\u30AF\u30A8\u30B9\u30C8",
|
|
295336
|
+
"Input Tokens": "\u5165\u529B\u30C8\u30FC\u30AF\u30F3",
|
|
295337
|
+
"Output Tokens": "\u51FA\u529B\u30C8\u30FC\u30AF\u30F3",
|
|
295338
|
+
"Savings Highlight:": "\u7BC0\u7D04\u30CF\u30A4\u30E9\u30A4\u30C8:",
|
|
295339
|
+
"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",
|
|
295340
|
+
"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",
|
|
295341
|
+
"Model Stats For Nerds": "\u30DE\u30CB\u30A2\u5411\u3051\u30E2\u30C7\u30EB\u7D71\u8A08",
|
|
295342
|
+
"Tool Stats For Nerds": "\u30DE\u30CB\u30A2\u5411\u3051\u30C4\u30FC\u30EB\u7D71\u8A08",
|
|
295343
|
+
Metric: "\u30E1\u30C8\u30EA\u30C3\u30AF",
|
|
295344
|
+
API: "API",
|
|
295345
|
+
Requests: "\u30EA\u30AF\u30A8\u30B9\u30C8",
|
|
295346
|
+
Errors: "\u30A8\u30E9\u30FC",
|
|
295347
|
+
"Avg Latency": "\u5E73\u5747\u30EC\u30A4\u30C6\u30F3\u30B7",
|
|
295348
|
+
Tokens: "\u30C8\u30FC\u30AF\u30F3",
|
|
295349
|
+
Total: "\u5408\u8A08",
|
|
295350
|
+
Prompt: "\u30D7\u30ED\u30F3\u30D7\u30C8",
|
|
295351
|
+
Cached: "\u30AD\u30E3\u30C3\u30B7\u30E5",
|
|
295352
|
+
Thoughts: "\u601D\u8003",
|
|
295353
|
+
Tool: "\u30C4\u30FC\u30EB",
|
|
295354
|
+
Output: "\u51FA\u529B",
|
|
295355
|
+
"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",
|
|
295356
|
+
"Tool Name": "\u30C4\u30FC\u30EB\u540D",
|
|
295357
|
+
Calls: "\u547C\u3073\u51FA\u3057",
|
|
295358
|
+
"Success Rate": "\u6210\u529F\u7387",
|
|
295359
|
+
"Avg Duration": "\u5E73\u5747\u6642\u9593",
|
|
295360
|
+
"User Decision Summary": "\u30E6\u30FC\u30B6\u30FC\u6C7A\u5B9A\u30B5\u30DE\u30EA\u30FC",
|
|
295361
|
+
"Total Reviewed Suggestions:": "\u7DCF\u30EC\u30D3\u30E5\u30FC\u63D0\u6848\u6570:",
|
|
295362
|
+
" \xBB Accepted:": " \xBB \u627F\u8A8D:",
|
|
295363
|
+
" \xBB Rejected:": " \xBB \u5374\u4E0B:",
|
|
295364
|
+
" \xBB Modified:": " \xBB \u5909\u66F4:",
|
|
295365
|
+
" Overall Agreement Rate:": " \u5168\u4F53\u627F\u8A8D\u7387:",
|
|
295366
|
+
"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",
|
|
295367
|
+
"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",
|
|
295368
|
+
// Loading
|
|
295369
|
+
"Waiting for user confirmation...": "\u30E6\u30FC\u30B6\u30FC\u306E\u78BA\u8A8D\u3092\u5F85\u3063\u3066\u3044\u307E\u3059...",
|
|
295370
|
+
"(esc to cancel, {{time}})": "(Esc \u3067\u30AD\u30E3\u30F3\u30BB\u30EB\u3001{{time}})",
|
|
295371
|
+
// Witty Loading Phrases
|
|
295372
|
+
WITTY_LOADING_PHRASES: [
|
|
295373
|
+
"\u904B\u4EFB\u305B\u3067\u691C\u7D22\u4E2D...",
|
|
295374
|
+
"\u4E2D\u306E\u4EBA\u304C\u30BF\u30A4\u30D4\u30F3\u30B0\u4E2D...",
|
|
295375
|
+
"\u30ED\u30B8\u30C3\u30AF\u3092\u6700\u9069\u5316\u4E2D...",
|
|
295376
|
+
"\u96FB\u5B50\u306E\u6570\u3092\u78BA\u8A8D\u4E2D...",
|
|
295377
|
+
"\u5B87\u5B99\u306E\u30D0\u30B0\u3092\u30C1\u30A7\u30C3\u30AF\u4E2D...",
|
|
295378
|
+
"\u5927\u91CF\u306E0\u30681\u3092\u30B3\u30F3\u30D1\u30A4\u30EB\u4E2D...",
|
|
295379
|
+
"HDD\u3068\u601D\u3044\u51FA\u3092\u30C7\u30D5\u30E9\u30B0\u4E2D...",
|
|
295380
|
+
"\u30D3\u30C3\u30C8\u3092\u3053\u3063\u305D\u308A\u5165\u308C\u66FF\u3048\u4E2D...",
|
|
295381
|
+
"\u30CB\u30E5\u30FC\u30ED\u30F3\u306E\u63A5\u7D9A\u3092\u518D\u69CB\u7BC9\u4E2D...",
|
|
295382
|
+
"\u3069\u3053\u304B\u306B\u884C\u3063\u305F\u30BB\u30DF\u30B3\u30ED\u30F3\u3092\u635C\u7D22\u4E2D...",
|
|
295383
|
+
"\u30D5\u30E9\u30C3\u30AF\u30B9\u30AD\u30E3\u30D1\u30B7\u30BF\u3092\u8ABF\u6574\u4E2D...",
|
|
295384
|
+
"\u30D5\u30A9\u30FC\u30B9\u3068\u4EA4\u611F\u4E2D...",
|
|
295385
|
+
"\u30A2\u30EB\u30B4\u30EA\u30BA\u30E0\u3092\u30C1\u30E5\u30FC\u30CB\u30F3\u30B0\u4E2D...",
|
|
295386
|
+
"\u767D\u3044\u30A6\u30B5\u30AE\u3092\u8FFD\u8DE1\u4E2D...",
|
|
295387
|
+
"\u30AB\u30BB\u30C3\u30C8\u30D5\u30FC\u30D5\u30FC\u4E2D...",
|
|
295388
|
+
"\u30ED\u30FC\u30C7\u30A3\u30F3\u30B0\u30E1\u30C3\u30BB\u30FC\u30B8\u3092\u8003\u3048\u4E2D...",
|
|
295389
|
+
"\u307B\u307C\u5B8C\u4E86...\u591A\u5206...",
|
|
295390
|
+
"\u6700\u65B0\u306E\u30DF\u30FC\u30E0\u306B\u3064\u3044\u3066\u8ABF\u67FB\u4E2D...",
|
|
295391
|
+
"\u3053\u306E\u8868\u793A\u3092\u6539\u5584\u3059\u308B\u30A2\u30A4\u30C7\u30A2\u3092\u601D\u7D22\u4E2D...",
|
|
295392
|
+
"\u3053\u306E\u554F\u984C\u3092\u8003\u3048\u4E2D...",
|
|
295393
|
+
"\u305D\u308C\u306F\u30D0\u30B0\u3067\u306A\u304F\u8AB0\u3082\u77E5\u3089\u306A\u3044\u65B0\u6A5F\u80FD\u3060\u3088",
|
|
295394
|
+
"\u30C0\u30A4\u30E4\u30EB\u30A2\u30C3\u30D7\u63A5\u7D9A\u97F3\u304C\u7D42\u308F\u308B\u306E\u3092\u5F85\u6A5F\u4E2D...",
|
|
295395
|
+
"\u30B3\u30FC\u30C9\u306B\u6CB9\u3092\u8FFD\u52A0\u4E2D...",
|
|
295396
|
+
// かなり意訳が入ってるもの
|
|
295397
|
+
"\u30A4\u30E4\u30DB\u30F3\u3092\u307B\u3069\u304D\u4E2D...",
|
|
295398
|
+
"\u30AB\u30D5\u30A7\u30A4\u30F3\u3092\u30B3\u30FC\u30C9\u306B\u5909\u63DB\u4E2D...",
|
|
295399
|
+
"\u5929\u52D5\u8AAC\u3092\u5730\u52D5\u8AAC\u306B\u66F8\u304D\u63DB\u3048\u4E2D...",
|
|
295400
|
+
"\u30D7\u30FC\u30EB\u3067\u6642\u8A08\u306E\u5B8C\u6210\u3092\u5F85\u6A5F\u4E2D...",
|
|
295401
|
+
"\u7B11\u6483\u7684\u306A\u56DE\u7B54\u3092\u7528\u610F\u4E2D...",
|
|
295402
|
+
"\u9069\u5207\u306A\u30DF\u30FC\u30E0\u3092\u8A18\u8FF0\u4E2D...",
|
|
295403
|
+
"A\u30DC\u30BF\u30F3\u3092\u62BC\u3057\u3066\u6B21\u3078...",
|
|
295404
|
+
"\u30B3\u30FC\u30C9\u306B\u30EA\u30C3\u30AF\u30ED\u30FC\u30EB\u3092\u4ED5\u8FBC\u307F\u4E2D...",
|
|
295405
|
+
"\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...",
|
|
295406
|
+
"\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...",
|
|
295407
|
+
"\u30B3\u30FC\u30C9\u304C\u58CA\u308C\u305F?\u53E9\u3051\u3070\u6CBB\u308B\u3055",
|
|
295408
|
+
"USB\u306E\u5DEE\u3057\u8FBC\u307F\u306B\u6311\u6226\u4E2D..."
|
|
295409
|
+
]
|
|
295410
|
+
};
|
|
295411
|
+
}
|
|
295412
|
+
});
|
|
295413
|
+
|
|
295414
|
+
// packages/cli/src/i18n/locales/pt.js
|
|
295415
|
+
var pt_exports = {};
|
|
295416
|
+
__export(pt_exports, {
|
|
295417
|
+
default: () => pt_default
|
|
295418
|
+
});
|
|
295419
|
+
var pt_default;
|
|
295420
|
+
var init_pt = __esm({
|
|
295421
|
+
"packages/cli/src/i18n/locales/pt.js"() {
|
|
295422
|
+
"use strict";
|
|
295423
|
+
init_esbuild_shims();
|
|
295424
|
+
pt_default = {
|
|
295425
|
+
// ============================================================================
|
|
295426
|
+
// Help / UI Components
|
|
295427
|
+
// ============================================================================
|
|
295428
|
+
"Basics:": "No\xE7\xF5es b\xE1sicas:",
|
|
295429
|
+
"Add context": "Adicionar contexto",
|
|
295430
|
+
"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.",
|
|
295431
|
+
"@": "@",
|
|
295432
|
+
"@src/myFile.ts": "@src/myFile.ts",
|
|
295433
|
+
"Shell mode": "Modo shell",
|
|
295434
|
+
"YOLO mode": "Modo YOLO",
|
|
295435
|
+
"plan mode": "modo planejamento",
|
|
295436
|
+
"auto-accept edits": "aceitar edi\xE7\xF5es automaticamente",
|
|
295437
|
+
"Accepting edits": "Aceitando edi\xE7\xF5es",
|
|
295438
|
+
"(shift + tab to cycle)": "(shift + tab para alternar)",
|
|
295439
|
+
"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}}).",
|
|
295440
|
+
"!": "!",
|
|
295441
|
+
"!npm run start": "!npm run start",
|
|
295442
|
+
"start server": "iniciar servidor",
|
|
295443
|
+
"Commands:": "Comandos:",
|
|
295444
|
+
"shell command": "comando shell",
|
|
295445
|
+
"Model Context Protocol command (from external servers)": "Comando Model Context Protocol (de servidores externos)",
|
|
295446
|
+
"Keyboard Shortcuts:": "Atalhos de teclado:",
|
|
295447
|
+
"Toggle this help display": "Alternar exibi\xE7\xE3o desta ajuda",
|
|
295448
|
+
"Toggle shell mode": "Alternar modo shell",
|
|
295449
|
+
"Open command menu": "Abrir menu de comandos",
|
|
295450
|
+
"Add file context": "Adicionar contexto de arquivo",
|
|
295451
|
+
"Accept suggestion / Autocomplete": "Aceitar sugest\xE3o / Autocompletar",
|
|
295452
|
+
"Reverse search history": "Pesquisa reversa no hist\xF3rico",
|
|
295453
|
+
"Press ? again to close": "Pressione ? novamente para fechar",
|
|
295454
|
+
// Keyboard shortcuts panel descriptions
|
|
295455
|
+
"for shell mode": "para modo shell",
|
|
295456
|
+
"for commands": "para comandos",
|
|
295457
|
+
"for file paths": "para caminhos de arquivo",
|
|
295458
|
+
"to clear input": "para limpar entrada",
|
|
295459
|
+
"to cycle approvals": "para alternar aprova\xE7\xF5es",
|
|
295460
|
+
"to quit": "para sair",
|
|
295461
|
+
"for newline": "para nova linha",
|
|
295462
|
+
"to clear screen": "para limpar a tela",
|
|
295463
|
+
"to search history": "para pesquisar no hist\xF3rico",
|
|
295464
|
+
"to paste images": "para colar imagens",
|
|
295465
|
+
"for external editor": "para editor externo",
|
|
295466
|
+
"Jump through words in the input": "Pular palavras na entrada",
|
|
295467
|
+
"Close dialogs, cancel requests, or quit application": "Fechar di\xE1logos, cancelar solicita\xE7\xF5es ou sair do aplicativo",
|
|
295468
|
+
"New line": "Nova linha",
|
|
295469
|
+
"New line (Alt+Enter works for certain linux distros)": "Nova linha (Alt+Enter funciona em certas distros linux)",
|
|
295470
|
+
"Clear the screen": "Limpar a tela",
|
|
295471
|
+
"Open input in external editor": "Abrir entrada no editor externo",
|
|
295472
|
+
"Send message": "Enviar mensagem",
|
|
295473
|
+
"Initializing...": "Inicializando...",
|
|
295474
|
+
"Connecting to MCP servers... ({{connected}}/{{total}})": "Conectando aos servidores MCP... ({{connected}}/{{total}})",
|
|
295475
|
+
"Type your message or @path/to/file": "Digite sua mensagem ou @caminho/do/arquivo",
|
|
295476
|
+
"? for shortcuts": "? para atalhos",
|
|
295477
|
+
"Press 'i' for INSERT mode and 'Esc' for NORMAL mode.": "Pressione 'i' para modo INSER\xC7\xC3O e 'Esc' para modo NORMAL.",
|
|
295478
|
+
"Cancel operation / Clear input (double press)": "Cancelar opera\xE7\xE3o / Limpar entrada (pressionar duas vezes)",
|
|
295479
|
+
"Cycle approval modes": "Alternar modos de aprova\xE7\xE3o",
|
|
295480
|
+
"Cycle through your prompt history": "Alternar hist\xF3rico de prompts",
|
|
295481
|
+
"For a full list of shortcuts, see {{docPath}}": "Para uma lista completa de atalhos, consulte {{docPath}}",
|
|
295482
|
+
"docs/keyboard-shortcuts.md": "docs/keyboard-shortcuts.md",
|
|
295483
|
+
"for help on Qwen Code": "para ajuda sobre o Qwen Code",
|
|
295484
|
+
"show version info": "mostrar informa\xE7\xF5es de vers\xE3o",
|
|
295485
|
+
"submit a bug report": "enviar um relat\xF3rio de erro",
|
|
295486
|
+
"About Qwen Code": "Sobre o Qwen Code",
|
|
295487
|
+
Status: "Status",
|
|
295488
|
+
// ============================================================================
|
|
295489
|
+
// System Information Fields
|
|
295490
|
+
// ============================================================================
|
|
295491
|
+
"Qwen Code": "Qwen Code",
|
|
295492
|
+
Runtime: "Runtime",
|
|
295493
|
+
OS: "SO",
|
|
295494
|
+
Auth: "Autentica\xE7\xE3o",
|
|
295495
|
+
"CLI Version": "Vers\xE3o da CLI",
|
|
295496
|
+
"Git Commit": "Commit do Git",
|
|
295497
|
+
Model: "Modelo",
|
|
295498
|
+
Sandbox: "Sandbox",
|
|
295499
|
+
"OS Platform": "Plataforma do SO",
|
|
295500
|
+
"OS Arch": "Arquitetura do SO",
|
|
295501
|
+
"OS Release": "Vers\xE3o do SO",
|
|
295502
|
+
"Node.js Version": "Vers\xE3o do Node.js",
|
|
295503
|
+
"NPM Version": "Vers\xE3o do NPM",
|
|
295504
|
+
"Session ID": "ID da Sess\xE3o",
|
|
295505
|
+
"Auth Method": "M\xE9todo de Autentica\xE7\xE3o",
|
|
295506
|
+
"Base URL": "URL Base",
|
|
295507
|
+
Proxy: "Proxy",
|
|
295508
|
+
"Memory Usage": "Uso de Mem\xF3ria",
|
|
295509
|
+
"IDE Client": "Cliente IDE",
|
|
295510
|
+
// ============================================================================
|
|
295511
|
+
// Commands - General
|
|
295512
|
+
// ============================================================================
|
|
295513
|
+
"Analyzes the project and creates a tailored QWEN.md file.": "Analisa o projeto e cria um arquivo QWEN.md personalizado.",
|
|
295514
|
+
"list available Qwen Code tools. Usage: /tools [desc]": "listar ferramentas Qwen Code dispon\xEDveis. Uso: /tools [desc]",
|
|
295515
|
+
"Available Qwen Code CLI tools:": "Ferramentas CLI do Qwen Code dispon\xEDveis:",
|
|
295516
|
+
"No tools available": "Nenhuma ferramenta dispon\xEDvel",
|
|
295517
|
+
"View or change the approval mode for tool usage": "Ver ou alterar o modo de aprova\xE7\xE3o para uso de ferramentas",
|
|
295518
|
+
'Invalid approval mode "{{arg}}". Valid modes: {{modes}}': 'Modo de aprova\xE7\xE3o inv\xE1lido "{{arg}}". Modos v\xE1lidos: {{modes}}',
|
|
295519
|
+
'Approval mode set to "{{mode}}"': 'Modo de aprova\xE7\xE3o definido como "{{mode}}"',
|
|
295520
|
+
"View or change the language setting": "Ver ou alterar a configura\xE7\xE3o de idioma",
|
|
295521
|
+
"change the theme": "alterar o tema",
|
|
295522
|
+
"Select Theme": "Selecionar Tema",
|
|
295523
|
+
Preview: "Visualizar",
|
|
295524
|
+
"(Use Enter to select, Tab to configure scope)": "(Use Enter para selecionar, Tab para configurar o escopo)",
|
|
295525
|
+
"(Use Enter to apply scope, Tab to go back)": "(Use Enter para aplicar o escopo, Tab para voltar)",
|
|
295526
|
+
"Theme configuration unavailable due to NO_COLOR env variable.": "Configura\xE7\xE3o de tema indispon\xEDvel devido \xE0 vari\xE1vel de ambiente NO_COLOR.",
|
|
295527
|
+
'Theme "{{themeName}}" not found.': 'Tema "{{themeName}}" n\xE3o encontrado.',
|
|
295528
|
+
'Theme "{{themeName}}" not found in selected scope.': 'Tema "{{themeName}}" n\xE3o encontrado no escopo selecionado.',
|
|
295529
|
+
"Clear conversation history and free up context": "Limpar hist\xF3rico de conversa e liberar contexto",
|
|
295530
|
+
"Compresses the context by replacing it with a summary.": "Comprime o contexto substituindo-o por um resumo.",
|
|
295531
|
+
"open full Qwen Code documentation in your browser": "abrir documenta\xE7\xE3o completa do Qwen Code no seu navegador",
|
|
295532
|
+
"Configuration not available.": "Configura\xE7\xE3o n\xE3o dispon\xEDvel.",
|
|
295533
|
+
"change the auth method": "alterar o m\xE9todo de autentica\xE7\xE3o",
|
|
295534
|
+
"Copy the last result or code snippet to clipboard": "Copiar o \xFAltimo resultado ou trecho de c\xF3digo para a \xE1rea de transfer\xEAncia",
|
|
295535
|
+
// ============================================================================
|
|
295536
|
+
// Commands - Agents
|
|
295537
|
+
// ============================================================================
|
|
295538
|
+
"Manage subagents for specialized task delegation.": "Gerenciar subagentes para delega\xE7\xE3o de tarefas especializadas.",
|
|
295539
|
+
"Manage existing subagents (view, edit, delete).": "Gerenciar subagentes existentes (ver, editar, excluir).",
|
|
295540
|
+
"Create a new subagent with guided setup.": "Criar um novo subagente com configura\xE7\xE3o guiada.",
|
|
295541
|
+
// ============================================================================
|
|
295542
|
+
// Agents - Management Dialog
|
|
295543
|
+
// ============================================================================
|
|
295544
|
+
Agents: "Agentes",
|
|
295545
|
+
"Choose Action": "Escolher A\xE7\xE3o",
|
|
295546
|
+
"Edit {{name}}": "Editar {{name}}",
|
|
295547
|
+
"Edit Tools: {{name}}": "Editar Ferramentas: {{name}}",
|
|
295548
|
+
"Edit Color: {{name}}": "Editar Cor: {{name}}",
|
|
295549
|
+
"Delete {{name}}": "Excluir {{name}}",
|
|
295550
|
+
"Unknown Step": "Etapa Desconhecida",
|
|
295551
|
+
"Esc to close": "Esc para fechar",
|
|
295552
|
+
"Enter to select, \u2191\u2193 to navigate, Esc to close": "Enter para selecionar, \u2191\u2193 para navegar, Esc para fechar",
|
|
295553
|
+
"Esc to go back": "Esc para voltar",
|
|
295554
|
+
"Enter to confirm, Esc to cancel": "Enter para confirmar, Esc para cancelar",
|
|
295555
|
+
"Enter to select, \u2191\u2193 to navigate, Esc to go back": "Enter para selecionar, \u2191\u2193 para navegar, Esc para voltar",
|
|
295556
|
+
"Invalid step: {{step}}": "Etapa inv\xE1lida: {{step}}",
|
|
295557
|
+
"No subagents found.": "Nenhum subagente encontrado.",
|
|
295558
|
+
"Use '/agents create' to create your first subagent.": "Use '/agents create' para criar seu primeiro subagente.",
|
|
295559
|
+
"(built-in)": "(integrado)",
|
|
295560
|
+
"(overridden by project level agent)": "(substitu\xEDdo por agente de n\xEDvel de projeto)",
|
|
295561
|
+
"Project Level ({{path}})": "N\xEDvel de Projeto ({{path}})",
|
|
295562
|
+
"User Level ({{path}})": "N\xEDvel de Usu\xE1rio ({{path}})",
|
|
295563
|
+
"Built-in Agents": "Agentes Integrados",
|
|
295564
|
+
"Extension Agents": "Agentes de Extens\xE3o",
|
|
295565
|
+
"Using: {{count}} agents": "Usando: {{count}} agentes",
|
|
295566
|
+
"View Agent": "Ver Agente",
|
|
295567
|
+
"Edit Agent": "Editar Agente",
|
|
295568
|
+
"Delete Agent": "Excluir Agente",
|
|
295569
|
+
Back: "Voltar",
|
|
295570
|
+
"No agent selected": "Nenhum agente selecionado",
|
|
295571
|
+
"File Path: ": "Caminho do Arquivo: ",
|
|
295572
|
+
"Tools: ": "Ferramentas: ",
|
|
295573
|
+
"Color: ": "Cor: ",
|
|
295574
|
+
"Description:": "Descri\xE7\xE3o:",
|
|
295575
|
+
"System Prompt:": "Prompt do Sistema:",
|
|
295576
|
+
"Open in editor": "Abrir no editor",
|
|
295577
|
+
"Edit tools": "Editar ferramentas",
|
|
295578
|
+
"Edit color": "Editar cor",
|
|
295579
|
+
"\u274C Error:": "\u274C Erro:",
|
|
295580
|
+
'Are you sure you want to delete agent "{{name}}"?': 'Tem certeza que deseja excluir o agente "{{name}}"?',
|
|
295581
|
+
// ============================================================================
|
|
295582
|
+
// Agents - Creation Wizard
|
|
295583
|
+
// ============================================================================
|
|
295584
|
+
"Project Level (.qwen/agents/)": "N\xEDvel de Projeto (.qwen/agents/)",
|
|
295585
|
+
"User Level (~/.qwen/agents/)": "N\xEDvel de Usu\xE1rio (~/.qwen/agents/)",
|
|
295586
|
+
"\u2705 Subagent Created Successfully!": "\u2705 Subagente criado com sucesso!",
|
|
295587
|
+
'Subagent "{{name}}" has been saved to {{level}} level.': 'O subagente "{{name}}" foi salvo no n\xEDvel {{level}}.',
|
|
295588
|
+
"Name: ": "Nome: ",
|
|
295589
|
+
"Location: ": "Localiza\xE7\xE3o: ",
|
|
295590
|
+
"\u274C Error saving subagent:": "\u274C Erro ao salvar subagente:",
|
|
295591
|
+
"Warnings:": "Avisos:",
|
|
295592
|
+
'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',
|
|
295593
|
+
'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',
|
|
295594
|
+
'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',
|
|
295595
|
+
"Description is over {{length}} characters": "A descri\xE7\xE3o tem mais de {{length}} caracteres",
|
|
295596
|
+
"System prompt is over {{length}} characters": "O prompt do sistema tem mais de {{length}} caracteres",
|
|
295597
|
+
// ============================================================================
|
|
295598
|
+
// Agents - Creation Wizard Steps
|
|
295599
|
+
// ============================================================================
|
|
295600
|
+
"Step {{n}}: Choose Location": "Etapa {{n}}: Escolher Localiza\xE7\xE3o",
|
|
295601
|
+
"Step {{n}}: Choose Generation Method": "Etapa {{n}}: Escolher M\xE9todo de Gera\xE7\xE3o",
|
|
295602
|
+
"Generate with Qwen Code (Recommended)": "Gerar com Qwen Code (Recomendado)",
|
|
295603
|
+
"Manual Creation": "Cria\xE7\xE3o Manual",
|
|
295604
|
+
"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)",
|
|
295605
|
+
"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...",
|
|
295606
|
+
"Generating subagent configuration...": "Gerando configura\xE7\xE3o do subagente...",
|
|
295607
|
+
"Failed to generate subagent: {{error}}": "Falha ao gerar subagente: {{error}}",
|
|
295608
|
+
"Step {{n}}: Describe Your Subagent": "Etapa {{n}}: Descreva Seu Subagente",
|
|
295609
|
+
"Step {{n}}: Enter Subagent Name": "Etapa {{n}}: Digite o Nome do Subagente",
|
|
295610
|
+
"Step {{n}}: Enter System Prompt": "Etapa {{n}}: Digite o Prompt do Sistema",
|
|
295611
|
+
"Step {{n}}: Enter Description": "Etapa {{n}}: Digite a Descri\xE7\xE3o",
|
|
295612
|
+
// ============================================================================
|
|
295613
|
+
// Agents - Tool Selection
|
|
295614
|
+
// ============================================================================
|
|
295615
|
+
"Step {{n}}: Select Tools": "Etapa {{n}}: Selecionar Ferramentas",
|
|
295616
|
+
"All Tools (Default)": "Todas as Ferramentas (Padr\xE3o)",
|
|
295617
|
+
"All Tools": "Todas as Ferramentas",
|
|
295618
|
+
"Read-only Tools": "Ferramentas de Somente Leitura",
|
|
295619
|
+
"Read & Edit Tools": "Ferramentas de Leitura e Edi\xE7\xE3o",
|
|
295620
|
+
"Read & Edit & Execution Tools": "Ferramentas de Leitura, Edi\xE7\xE3o e Execu\xE7\xE3o",
|
|
295621
|
+
"All tools selected, including MCP tools": "Todas as ferramentas selecionadas, incluindo ferramentas MCP",
|
|
295622
|
+
"Selected tools:": "Ferramentas selecionadas:",
|
|
295623
|
+
"Read-only tools:": "Ferramentas de somente leitura:",
|
|
295624
|
+
"Edit tools:": "Ferramentas de edi\xE7\xE3o:",
|
|
295625
|
+
"Execution tools:": "Ferramentas de execu\xE7\xE3o:",
|
|
295626
|
+
"Step {{n}}: Choose Background Color": "Etapa {{n}}: Escolher Cor de Fundo",
|
|
295627
|
+
"Step {{n}}: Confirm and Save": "Etapa {{n}}: Confirmar e Salvar",
|
|
295628
|
+
// ============================================================================
|
|
295629
|
+
// Agents - Navigation & Instructions
|
|
295630
|
+
// ============================================================================
|
|
295631
|
+
"Esc to cancel": "Esc para cancelar",
|
|
295632
|
+
"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",
|
|
295633
|
+
"Press Enter to continue, {{navigation}}Esc to {{action}}": "Pressione Enter para continuar, {{navigation}}Esc para {{action}}",
|
|
295634
|
+
cancel: "cancelar",
|
|
295635
|
+
"go back": "voltar",
|
|
295636
|
+
"\u2191\u2193 to navigate, ": "\u2191\u2193 para navegar, ",
|
|
295637
|
+
"Enter a clear, unique name for this subagent.": "Digite um nome claro e \xFAnico para este subagente.",
|
|
295638
|
+
"e.g., Code Reviewer": "ex: Revisor de C\xF3digo",
|
|
295639
|
+
"Name cannot be empty.": "O nome n\xE3o pode estar vazio.",
|
|
295640
|
+
"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.",
|
|
295641
|
+
"e.g., You are an expert code reviewer...": "ex: Voc\xEA \xE9 um revisor de c\xF3digo especialista...",
|
|
295642
|
+
"System prompt cannot be empty.": "O prompt do sistema n\xE3o pode estar vazio.",
|
|
295643
|
+
"Describe when and how this subagent should be used.": "Descreva quando e como este subagente deve ser usado.",
|
|
295644
|
+
"e.g., Reviews code for best practices and potential bugs.": "ex: Revisa o c\xF3digo em busca de melhores pr\xE1ticas e erros potenciais.",
|
|
295645
|
+
"Description cannot be empty.": "A descri\xE7\xE3o n\xE3o pode estar vazia.",
|
|
295646
|
+
"Failed to launch editor: {{error}}": "Falha ao iniciar editor: {{error}}",
|
|
295647
|
+
"Failed to save and edit subagent: {{error}}": "Falha ao salvar e editar subagente: {{error}}",
|
|
295648
|
+
// ============================================================================
|
|
295649
|
+
// Commands - General (continued)
|
|
295650
|
+
// ============================================================================
|
|
295651
|
+
"View and edit Qwen Code settings": "Ver e editar configura\xE7\xF5es do Qwen Code",
|
|
295652
|
+
Settings: "Configura\xE7\xF5es",
|
|
295653
|
+
"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.",
|
|
295654
|
+
'The command "/{{command}}" is not supported in non-interactive mode.': 'O comando "/{{command}}" n\xE3o \xE9 suportado no modo n\xE3o interativo.',
|
|
295655
|
+
// ============================================================================
|
|
295656
|
+
// Settings Labels
|
|
295657
|
+
// ============================================================================
|
|
295658
|
+
"Vim Mode": "Modo Vim",
|
|
295659
|
+
"Disable Auto Update": "Desativar Atualiza\xE7\xE3o Autom\xE1tica",
|
|
295660
|
+
"Attribution: commit": "Atribui\xE7\xE3o: commit",
|
|
295661
|
+
"Terminal Bell Notification": "Notifica\xE7\xE3o Sonora do Terminal",
|
|
295662
|
+
"Enable Usage Statistics": "Ativar Estat\xEDsticas de Uso",
|
|
295663
|
+
Theme: "Tema",
|
|
295664
|
+
"Preferred Editor": "Editor Preferido",
|
|
295665
|
+
"Auto-connect to IDE": "Conex\xE3o Autom\xE1tica com IDE",
|
|
295666
|
+
"Enable Prompt Completion": "Ativar Autocompletar de Prompts",
|
|
295667
|
+
"Debug Keystroke Logging": "Log de Depura\xE7\xE3o de Teclas",
|
|
295668
|
+
"Language: UI": "Idioma: Interface",
|
|
295669
|
+
"Language: Model": "Idioma: Modelo",
|
|
295670
|
+
"Output Format": "Formato de Sa\xEDda",
|
|
295671
|
+
"Hide Window Title": "Ocultar T\xEDtulo da Janela",
|
|
295672
|
+
"Show Status in Title": "Mostrar Status no T\xEDtulo",
|
|
295673
|
+
"Hide Tips": "Ocultar Dicas",
|
|
295674
|
+
"Show Line Numbers in Code": "Mostrar N\xFAmeros de Linhas no C\xF3digo",
|
|
295675
|
+
"Show Citations": "Mostrar Cita\xE7\xF5es",
|
|
295676
|
+
"Custom Witty Phrases": "Frases de Efeito Personalizadas",
|
|
295677
|
+
"Show Welcome Back Dialog": "Mostrar Di\xE1logo de Bem-vindo de Volta",
|
|
295678
|
+
"Enable User Feedback": "Ativar Feedback do Usu\xE1rio",
|
|
295679
|
+
"How is Qwen doing this session? (optional)": "Como o Qwen est\xE1 se saindo nesta sess\xE3o? (opcional)",
|
|
295680
|
+
Bad: "Ruim",
|
|
295681
|
+
Fine: "Bom",
|
|
295682
|
+
Good: "\xD3timo",
|
|
295683
|
+
Dismiss: "Ignorar",
|
|
295684
|
+
"Not Sure Yet": "N\xE3o tenho certeza ainda",
|
|
295685
|
+
"Any other key": "Qualquer outra tecla",
|
|
295686
|
+
"Disable Loading Phrases": "Desativar Frases de Carregamento",
|
|
295687
|
+
"Screen Reader Mode": "Modo de Leitor de Tela",
|
|
295688
|
+
"IDE Mode": "Modo IDE",
|
|
295689
|
+
"Max Session Turns": "M\xE1ximo de Turnos da Sess\xE3o",
|
|
295690
|
+
"Skip Next Speaker Check": "Pular Verifica\xE7\xE3o do Pr\xF3ximo Falante",
|
|
295691
|
+
"Skip Loop Detection": "Pular Detec\xE7\xE3o de Loop",
|
|
295692
|
+
"Skip Startup Context": "Pular Contexto de Inicializa\xE7\xE3o",
|
|
295693
|
+
"Enable OpenAI Logging": "Ativar Log do OpenAI",
|
|
295694
|
+
"OpenAI Logging Directory": "Diret\xF3rio de Log do OpenAI",
|
|
295695
|
+
Timeout: "Tempo Limite",
|
|
295696
|
+
"Max Retries": "M\xE1ximo de Tentativas",
|
|
295697
|
+
"Disable Cache Control": "Desativar Controle de Cache",
|
|
295698
|
+
"Memory Discovery Max Dirs": "Descoberta de Mem\xF3ria M\xE1x. Diretorios",
|
|
295699
|
+
"Load Memory From Include Directories": "Carregar Mem\xF3ria de Diret\xF3rios Inclu\xEDdos",
|
|
295700
|
+
"Respect .gitignore": "Respeitar .gitignore",
|
|
295701
|
+
"Respect .qwenignore": "Respeitar .qwenignore",
|
|
295702
|
+
"Enable Recursive File Search": "Ativar Pesquisa Recursiva de Arquivos",
|
|
295703
|
+
"Disable Fuzzy Search": "Desativar Pesquisa Difusa",
|
|
295704
|
+
"Interactive Shell (PTY)": "Shell Interativo (PTY)",
|
|
295705
|
+
"Show Color": "Mostrar Cores",
|
|
295706
|
+
"Auto Accept": "Aceitar Automaticamente",
|
|
295707
|
+
"Use Ripgrep": "Usar Ripgrep",
|
|
295708
|
+
"Use Builtin Ripgrep": "Usar Ripgrep Integrado",
|
|
295709
|
+
"Enable Tool Output Truncation": "Ativar Truncamento de Sa\xEDda de Ferramenta",
|
|
295710
|
+
"Tool Output Truncation Threshold": "Limite de Truncamento de Sa\xEDda de Ferramenta",
|
|
295711
|
+
"Tool Output Truncation Lines": "Linhas de Truncamento de Sa\xEDda de Ferramenta",
|
|
295712
|
+
"Folder Trust": "Confian\xE7a de Pasta",
|
|
295713
|
+
"Vision Model Preview": "Visualiza\xE7\xE3o de Modelo de Vis\xE3o",
|
|
295714
|
+
"Tool Schema Compliance": "Conformidade de Esquema de Ferramenta",
|
|
295715
|
+
"Experimental: Skills": "Experimental: Habilidades",
|
|
295716
|
+
// Settings enum options
|
|
295717
|
+
"Auto (detect from system)": "Autom\xE1tico (detectar do sistema)",
|
|
295718
|
+
Text: "Texto",
|
|
295719
|
+
JSON: "JSON",
|
|
295720
|
+
Plan: "Planejamento",
|
|
295721
|
+
Default: "Padr\xE3o",
|
|
295722
|
+
"Auto Edit": "Edi\xE7\xE3o Autom\xE1tica",
|
|
295723
|
+
YOLO: "YOLO",
|
|
295724
|
+
"toggle vim mode on/off": "alternar modo vim ligado/desligado",
|
|
295725
|
+
"check session stats. Usage: /stats [model|tools]": "verificar estat\xEDsticas da sess\xE3o. Uso: /stats [model|tools]",
|
|
295726
|
+
"Show model-specific usage statistics.": "Mostrar estat\xEDsticas de uso espec\xEDficas do modelo.",
|
|
295727
|
+
"Show tool-specific usage statistics.": "Mostrar estat\xEDsticas de uso espec\xEDficas da ferramenta.",
|
|
295728
|
+
"exit the cli": "sair da cli",
|
|
295729
|
+
"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",
|
|
295730
|
+
"Manage workspace directories": "Gerenciar diret\xF3rios do workspace",
|
|
295731
|
+
"Add directories to the workspace. Use comma to separate multiple paths": "Adicionar diret\xF3rios ao workspace. Use v\xEDrgula para separar v\xE1rios caminhos",
|
|
295732
|
+
"Show all directories in the workspace": "Mostrar todos os diret\xF3rios no workspace",
|
|
295733
|
+
"set external editor preference": "definir prefer\xEAncia de editor externo",
|
|
295734
|
+
"Select Editor": "Selecionar Editor",
|
|
295735
|
+
"Editor Preference": "Prefer\xEAncia de Editor",
|
|
295736
|
+
"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.",
|
|
295737
|
+
"Your preferred editor is:": "Seu editor preferido \xE9:",
|
|
295738
|
+
"Manage extensions": "Gerenciar extens\xF5es",
|
|
295739
|
+
"List active extensions": "Listar extens\xF5es ativas",
|
|
295740
|
+
"Update extensions. Usage: update <extension-names>|--all": "Atualizar extens\xF5es. Uso: update <nomes-das-extensoes>|--all",
|
|
295741
|
+
"Disable an extension": "Desativar uma extens\xE3o",
|
|
295742
|
+
"Enable an extension": "Ativar uma extens\xE3o",
|
|
295743
|
+
"Install an extension from a git repo or local path": "Instalar uma extens\xE3o de um reposit\xF3rio git ou caminho local",
|
|
295744
|
+
"Uninstall an extension": "Desinstalar uma extens\xE3o",
|
|
295745
|
+
"No extensions installed.": "Nenhuma extens\xE3o instalada.",
|
|
295746
|
+
"Usage: /extensions update <extension-names>|--all": "Uso: /extensions update <nomes-das-extensoes>|--all",
|
|
295747
|
+
'Extension "{{name}}" not found.': 'Extens\xE3o "{{name}}" n\xE3o encontrada.',
|
|
295748
|
+
"No extensions to update.": "Nenhuma extens\xE3o para atualizar.",
|
|
295749
|
+
"Usage: /extensions install <source>": "Uso: /extensions install <fonte>",
|
|
295750
|
+
'Installing extension from "{{source}}"...': 'Instalando extens\xE3o de "{{source}}"...',
|
|
295751
|
+
'Extension "{{name}}" installed successfully.': 'Extens\xE3o "{{name}}" instalada com sucesso.',
|
|
295752
|
+
'Failed to install extension from "{{source}}": {{error}}': 'Falha ao instalar extens\xE3o de "{{source}}": {{error}}',
|
|
295753
|
+
"Usage: /extensions uninstall <extension-name>": "Uso: /extensions uninstall <nome-da-extensao>",
|
|
295754
|
+
'Uninstalling extension "{{name}}"...': 'Desinstalando extens\xE3o "{{name}}"...',
|
|
295755
|
+
'Extension "{{name}}" uninstalled successfully.': 'Extens\xE3o "{{name}}" desinstalada com sucesso.',
|
|
295756
|
+
'Failed to uninstall extension "{{name}}": {{error}}': 'Falha ao desinstalar extens\xE3o "{{name}}": {{error}}',
|
|
295757
|
+
"Usage: /extensions {{command}} <extension> [--scope=<user|workspace>]": "Uso: /extensions {{command}} <extensao> [--scope=<user|workspace>]",
|
|
295758
|
+
'Unsupported scope "{{scope}}", deve ser um de "user" ou "workspace"': 'Escopo n\xE3o suportado "{{scope}}", deve ser um de "user" ou "workspace"',
|
|
295759
|
+
'Extension "{{name}}" disabled for scope "{{scope}}"': 'Extens\xE3o "{{name}}" desativada para o escopo "{{scope}}"',
|
|
295760
|
+
'Extension "{{name}}" enabled for scope "{{scope}}"': 'Extens\xE3o "{{name}}" ativada para o escopo "{{scope}}"',
|
|
295761
|
+
"Do you want to continue? [Y/n]: ": "Voc\xEA deseja continuar? [Y/n]: ",
|
|
295762
|
+
"Do you want to continue?": "Voc\xEA deseja continuar?",
|
|
295763
|
+
'Installing extension "{{name}}".': 'Instalando extens\xE3o "{{name}}".',
|
|
295764
|
+
"**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.**",
|
|
295765
|
+
"This extension will run the following MCP servers:": "Esta extens\xE3o executar\xE1 os seguintes servidores MCP:",
|
|
295766
|
+
local: "local",
|
|
295767
|
+
remote: "remoto",
|
|
295768
|
+
"This extension will add the following commands: {{commands}}.": "Esta extens\xE3o adicionar\xE1 os seguintes comandos: {{commands}}.",
|
|
295769
|
+
"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}}",
|
|
295770
|
+
"This extension will exclude the following core tools: {{tools}}": "Esta extens\xE3o excluir\xE1 as seguintes ferramentas principais: {{tools}}",
|
|
295771
|
+
"This extension will install the following skills:": "Esta extens\xE3o instalar\xE1 as seguintes habilidades:",
|
|
295772
|
+
"This extension will install the following subagents:": "Esta extens\xE3o instalar\xE1 os seguintes subagentes:",
|
|
295773
|
+
'Installation cancelled for "{{name}}".': 'Instala\xE7\xE3o cancelada para "{{name}}".',
|
|
295774
|
+
"--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.",
|
|
295775
|
+
'Extension "{{name}}" installed successfully and enabled.': 'Extens\xE3o "{{name}}" instalada com sucesso e ativada.',
|
|
295776
|
+
"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).",
|
|
295777
|
+
"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.",
|
|
295778
|
+
"The git ref to install from.": "A refer\xEAncia git para instalar.",
|
|
295779
|
+
"Enable auto-update for this extension.": "Ativar atualiza\xE7\xE3o autom\xE1tica para esta extens\xE3o.",
|
|
295780
|
+
"Enable pre-release versions for this extension.": "Ativar vers\xF5es de pr\xE9-lan\xE7amento para esta extens\xE3o.",
|
|
295781
|
+
"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.",
|
|
295782
|
+
"The source argument must be provided.": "O argumento fonte deve ser fornecido.",
|
|
295783
|
+
'Extension "{{name}}" successfully uninstalled.': 'Extens\xE3o "{{name}}" desinstalada com sucesso.',
|
|
295784
|
+
"Uninstalls an extension.": "Desinstala uma extens\xE3o.",
|
|
295785
|
+
"The name or source path of the extension to uninstall.": "O nome ou caminho da fonte da extens\xE3o para desinstalar.",
|
|
295786
|
+
"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.",
|
|
295787
|
+
"Enables an extension.": "Ativa uma extens\xE3o.",
|
|
295788
|
+
"The name of the extension to enable.": "O nome da extens\xE3o para ativar.",
|
|
295789
|
+
"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.",
|
|
295790
|
+
'Extension "{{name}}" successfully enabled for scope "{{scope}}".': 'Extens\xE3o "{{name}}" ativada com sucesso para o escopo "{{scope}}".',
|
|
295791
|
+
'Extension "{{name}}" successfully enabled in all scopes.': 'Extens\xE3o "{{name}}" ativada com sucesso em todos os escopos.',
|
|
295792
|
+
"Invalid scope: {{scope}}. Please use one of {{scopes}}.": "Escopo inv\xE1lido: {{scope}}. Use um de {{scopes}}.",
|
|
295793
|
+
"Disables an extension.": "Desativa uma extens\xE3o.",
|
|
295794
|
+
"The name of the extension to disable.": "O nome da extens\xE3o para desativar.",
|
|
295795
|
+
"The scope to disable the extenison in.": "O escopo para desativar a extens\xE3o.",
|
|
295796
|
+
'Extension "{{name}}" successfully disabled for scope "{{scope}}".': 'Extens\xE3o "{{name}}" desativada com sucesso para o escopo "{{scope}}".',
|
|
295797
|
+
'Extension "{{name}}" successfully updated: {{oldVersion}} \u2192 {{newVersion}}.': 'Extens\xE3o "{{name}}" atualizada com sucesso: {{oldVersion}} \u2192 {{newVersion}}.',
|
|
295798
|
+
'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',
|
|
295799
|
+
'Extension "{{name}}" is already up to date.': 'A extens\xE3o "{{name}}" j\xE1 est\xE1 atualizada.',
|
|
295800
|
+
"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.",
|
|
295801
|
+
"Update all extensions.": "Atualizar todas as extens\xF5es.",
|
|
295802
|
+
"Either an extension name or --all must be provided": "Um nome de extens\xE3o ou --all deve ser fornecido",
|
|
295803
|
+
"Lists installed extensions.": "Lista as extens\xF5es instaladas.",
|
|
295804
|
+
"Link extension failed to install.": "Falha ao instalar link da extens\xE3o.",
|
|
295805
|
+
'Extension "{{name}}" linked successfully and enabled.': 'Extens\xE3o "{{name}}" vinculada com sucesso e ativada.',
|
|
295806
|
+
"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.",
|
|
295807
|
+
"The name of the extension to link.": "O nome da extens\xE3o para vincular.",
|
|
295808
|
+
"Set a specific setting for an extension.": "Define uma configura\xE7\xE3o espec\xEDfica para uma extens\xE3o.",
|
|
295809
|
+
"Name of the extension to configure.": "Nome da extens\xE3o para configurar.",
|
|
295810
|
+
"The setting to configure (name or env var).": "A configura\xE7\xE3o para configurar (nome ou var env).",
|
|
295811
|
+
"The scope to set the setting in.": "O escopo para definir a configura\xE7\xE3o.",
|
|
295812
|
+
"List all settings for an extension.": "Listar todas as configura\xE7\xF5es de uma extens\xE3o.",
|
|
295813
|
+
"Name of the extension.": "Nome da extens\xE3o.",
|
|
295814
|
+
'Extension "{{name}}" has no settings to configure.': 'A extens\xE3o "{{name}}" n\xE3o tem configura\xE7\xF5es para configurar.',
|
|
295815
|
+
'Settings for "{{name}}":': 'Configura\xE7\xF5es para "{{name}}":',
|
|
295816
|
+
"(workspace)": "(workspace)",
|
|
295817
|
+
"(user)": "(usu\xE1rio)",
|
|
295818
|
+
"[not set]": "[n\xE3o definido]",
|
|
295819
|
+
"[value stored in keychain]": "[valor armazenado no chaveiro]",
|
|
295820
|
+
"Value:": "Valor:",
|
|
295821
|
+
"Manage extension settings.": "Gerenciar configura\xE7\xF5es de extens\xE3o.",
|
|
295822
|
+
"You need to specify a command (set or list).": "Voc\xEA precisa especificar um comando (set ou list).",
|
|
295823
|
+
// ============================================================================
|
|
295824
|
+
// Plugin Choice / Marketplace
|
|
295825
|
+
// ============================================================================
|
|
295826
|
+
"No plugins available in this marketplace.": "Nenhum plugin dispon\xEDvel neste marketplace.",
|
|
295827
|
+
'Select a plugin to install from marketplace "{{name}}":': 'Selecione um plugin para instalar do marketplace "{{name}}":',
|
|
295828
|
+
"Plugin selection cancelled.": "Sele\xE7\xE3o de plugin cancelada.",
|
|
295829
|
+
'Select a plugin from "{{name}}"': 'Selecione um plugin de "{{name}}"',
|
|
295830
|
+
"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",
|
|
295831
|
+
"{{count}} more above": "{{count}} mais acima",
|
|
295832
|
+
"{{count}} more below": "{{count}} mais abaixo",
|
|
295833
|
+
"manage IDE integration": "gerenciar integra\xE7\xE3o com IDE",
|
|
295834
|
+
"check status of IDE integration": "verificar status da integra\xE7\xE3o com IDE",
|
|
295835
|
+
"install required IDE companion for {{ideName}}": "instalar companion IDE necess\xE1rio para {{ideName}}",
|
|
295836
|
+
"enable IDE integration": "ativar integra\xE7\xE3o com IDE",
|
|
295837
|
+
"disable IDE integration": "desativar integra\xE7\xE3o com IDE",
|
|
295838
|
+
"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.",
|
|
295839
|
+
"Set up GitHub Actions": "Configurar GitHub Actions",
|
|
295840
|
+
"Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)": "Configurar atalhos de terminal para entrada multilinhas (VS Code, Cursor, Windsurf, Trae)",
|
|
295841
|
+
"Please restart your terminal for the changes to take effect.": "Reinicie seu terminal para que as altera\xE7\xF5es tenham efeito.",
|
|
295842
|
+
"Failed to configure terminal: {{error}}": "Falha ao configurar terminal: {{error}}",
|
|
295843
|
+
"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.",
|
|
295844
|
+
"{{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.",
|
|
295845
|
+
"File: {{file}}": "Arquivo: {{file}}",
|
|
295846
|
+
"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.",
|
|
295847
|
+
"Error: {{error}}": "Erro: {{error}}",
|
|
295848
|
+
"Shift+Enter binding already exists": "Atalho Shift+Enter j\xE1 existe",
|
|
295849
|
+
"Ctrl+Enter binding already exists": "Atalho Ctrl+Enter j\xE1 existe",
|
|
295850
|
+
"Existing keybindings detected. Will not modify to avoid conflicts.": "Atalhos existentes detectados. N\xE3o ser\xE3o modificados para evitar conflitos.",
|
|
295851
|
+
"Please check and modify manually if needed: {{file}}": "Verifique e modifique manualmente se necess\xE1rio: {{file}}",
|
|
295852
|
+
"Added Shift+Enter and Ctrl+Enter keybindings to {{terminalName}}.": "Adicionados atalhos Shift+Enter e Ctrl+Enter para {{terminalName}}.",
|
|
295853
|
+
"Modified: {{file}}": "Modificado: {{file}}",
|
|
295854
|
+
"{{terminalName}} keybindings already configured.": "Atalhos de {{terminalName}} j\xE1 configurados.",
|
|
295855
|
+
"Failed to configure {{terminalName}}.": "Falha ao configurar {{terminalName}}.",
|
|
295856
|
+
"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).",
|
|
295857
|
+
"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.",
|
|
295858
|
+
'Terminal "{{terminal}}" is not supported yet.': 'O terminal "{{terminal}}" ainda n\xE3o \xE9 suportado.',
|
|
295859
|
+
// ============================================================================
|
|
295860
|
+
// Commands - Language
|
|
295861
|
+
// ============================================================================
|
|
295862
|
+
"Invalid language. Available: {{options}}": "Idioma inv\xE1lido. Dispon\xEDveis: {{options}}",
|
|
295863
|
+
"Language subcommands do not accept additional arguments.": "Subcomandos de idioma n\xE3o aceitam argumentos adicionais.",
|
|
295864
|
+
"Current UI language: {{lang}}": "Idioma atual da interface: {{lang}}",
|
|
295865
|
+
"Current LLM output language: {{lang}}": "Idioma atual da sa\xEDda do LLM: {{lang}}",
|
|
295866
|
+
"LLM output language not set": "Idioma de sa\xEDda do LLM n\xE3o definido",
|
|
295867
|
+
"Set UI language": "Definir idioma da interface",
|
|
295868
|
+
"Set LLM output language": "Definir idioma de sa\xEDda do LLM",
|
|
295869
|
+
"Usage: /language ui [{{options}}]": "Uso: /language ui [{{options}}]",
|
|
295870
|
+
"Usage: /language output <language>": "Uso: /language output <idioma>",
|
|
295871
|
+
"Example: /language output \u4E2D\u6587": "Exemplo: /language output Portugu\xEAs",
|
|
295872
|
+
"Example: /language output English": "Exemplo: /language output Ingl\xEAs",
|
|
295873
|
+
"Example: /language output \u65E5\u672C\u8A9E": "Exemplo: /language output Japon\xEAs",
|
|
295874
|
+
"Example: /language output Portugu\xEAs": "Exemplo: /language output Portugu\xEAs",
|
|
295875
|
+
"UI language changed to {{lang}}": "Idioma da interface alterado para {{lang}}",
|
|
295876
|
+
"LLM output language set to {{lang}}": "Idioma de sa\xEDda do LLM definido para {{lang}}",
|
|
295877
|
+
"LLM output language rule file generated at {{path}}": "Arquivo de regra de idioma de sa\xEDda do LLM gerado em {{path}}",
|
|
295878
|
+
"Please restart the application for the changes to take effect.": "Reinicie o aplicativo para que as altera\xE7\xF5es tenham efeito.",
|
|
295879
|
+
"Failed to generate LLM output language rule file: {{error}}": "Falha ao gerar arquivo de regra de idioma de sa\xEDda do LLM: {{error}}",
|
|
295880
|
+
"Invalid command. Available subcommands:": "Comando inv\xE1lido. Subcomandos dispon\xEDveis:",
|
|
295881
|
+
"Available subcommands:": "Subcomandos dispon\xEDveis:",
|
|
295882
|
+
"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.",
|
|
295883
|
+
"Available options:": "Op\xE7\xF5es dispon\xEDveis:",
|
|
295884
|
+
"Set UI language to {{name}}": "Definir idioma da interface para {{name}}",
|
|
295885
|
+
// ============================================================================
|
|
295886
|
+
// Commands - Approval Mode
|
|
295887
|
+
// ============================================================================
|
|
295888
|
+
"Tool Approval Mode": "Modo de Aprova\xE7\xE3o de Ferramenta",
|
|
295889
|
+
"Current approval mode: {{mode}}": "Modo de aprova\xE7\xE3o atual: {{mode}}",
|
|
295890
|
+
"Available approval modes:": "Modos de aprova\xE7\xE3o dispon\xEDveis:",
|
|
295891
|
+
"Approval mode changed to: {{mode}}": "Modo de aprova\xE7\xE3o alterado para: {{mode}}",
|
|
295892
|
+
"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}})",
|
|
295893
|
+
"Usage: /approval-mode <mode> [--session|--user|--project]": "Uso: /approval-mode <mode> [--session|--user|--project]",
|
|
295894
|
+
"Scope subcommands do not accept additional arguments.": "Subcomandos de escopo n\xE3o aceitam argumentos adicionais.",
|
|
295895
|
+
"Plan mode - Analyze only, do not modify files or execute commands": "Modo planejamento - Apenas analisa, n\xE3o modifica arquivos nem executa comandos",
|
|
295896
|
+
"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",
|
|
295897
|
+
"Auto-edit mode - Automatically approve file edits": "Modo auto-edi\xE7\xE3o - Aprova automaticamente edi\xE7\xF5es de arquivos",
|
|
295898
|
+
"YOLO mode - Automatically approve all tools": "Modo YOLO - Aprova automaticamente todas as ferramentas",
|
|
295899
|
+
"{{mode}} mode": "Modo {{mode}}",
|
|
295900
|
+
"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.",
|
|
295901
|
+
"Failed to save approval mode: {{error}}": "Falha ao salvar modo de aprova\xE7\xE3o: {{error}}",
|
|
295902
|
+
"Failed to change approval mode: {{error}}": "Falha ao alterar modo de aprova\xE7\xE3o: {{error}}",
|
|
295903
|
+
"Apply to current session only (temporary)": "Aplicar apenas \xE0 sess\xE3o atual (tempor\xE1rio)",
|
|
295904
|
+
"Persist for this project/workspace": "Persistir para este projeto/workspace",
|
|
295905
|
+
"Persist for this user on this machine": "Persistir para este usu\xE1rio nesta m\xE1quina",
|
|
295906
|
+
"Analyze only, do not modify files or execute commands": "Apenas analisar, n\xE3o modificar arquivos nem executar comandos",
|
|
295907
|
+
"Require approval for file edits or shell commands": "Exigir aprova\xE7\xE3o para edi\xE7\xF5es de arquivos ou comandos shell",
|
|
295908
|
+
"Automatically approve file edits": "Aprovar automaticamente edi\xE7\xF5es de arquivos",
|
|
295909
|
+
"Automatically approve all tools": "Aprovar automaticamente todas as ferramentas",
|
|
295910
|
+
"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.",
|
|
295911
|
+
"Apply To": "Aplicar A",
|
|
295912
|
+
"User Settings": "Configura\xE7\xF5es do Usu\xE1rio",
|
|
295913
|
+
"Workspace Settings": "Configura\xE7\xF5es do Workspace",
|
|
295914
|
+
// ============================================================================
|
|
295915
|
+
// Commands - Memory
|
|
295916
|
+
// ============================================================================
|
|
295917
|
+
"Commands for interacting with memory.": "Comandos para interagir com a mem\xF3ria.",
|
|
295918
|
+
"Show the current memory contents.": "Mostrar os conte\xFAdos atuais da mem\xF3ria.",
|
|
295919
|
+
"Show project-level memory contents.": "Mostrar conte\xFAdos da mem\xF3ria de n\xEDvel de projeto.",
|
|
295920
|
+
"Show global memory contents.": "Mostrar conte\xFAdos da mem\xF3ria global.",
|
|
295921
|
+
"Add content to project-level memory.": "Adicionar conte\xFAdo \xE0 mem\xF3ria de n\xEDvel de projeto.",
|
|
295922
|
+
"Add content to global memory.": "Adicionar conte\xFAdo \xE0 mem\xF3ria global.",
|
|
295923
|
+
"Refresh the memory from the source.": "Atualizar a mem\xF3ria da fonte.",
|
|
295924
|
+
"Usage: /memory add --project <text to remember>": "Uso: /memory add --project <texto para lembrar>",
|
|
295925
|
+
"Usage: /memory add --global <text to remember>": "Uso: /memory add --global <texto para lembrar>",
|
|
295926
|
+
'Attempting to save to project memory: "{{text}}"': 'Tentando salvar na mem\xF3ria do projeto: "{{text}}"',
|
|
295927
|
+
'Attempting to save to global memory: "{{text}}"': 'Tentando salvar na mem\xF3ria global: "{{text}}"',
|
|
295928
|
+
"Current memory content from {{count}} file(s):": "Conte\xFAdo da mem\xF3ria atual de {{count}} arquivo(s):",
|
|
295929
|
+
"Memory is currently empty.": "A mem\xF3ria est\xE1 vazia no momento.",
|
|
295930
|
+
"Project memory file not found or is currently empty.": "Arquivo de mem\xF3ria do projeto n\xE3o encontrado ou est\xE1 vazio.",
|
|
295931
|
+
"Global memory file not found or is currently empty.": "Arquivo de mem\xF3ria global n\xE3o encontrado ou est\xE1 vazio.",
|
|
295932
|
+
"Global memory is currently empty.": "A mem\xF3ria global est\xE1 vazia no momento.",
|
|
295933
|
+
"Global memory content:\n\n---\n{{content}}\n---": "Conte\xFAdo da mem\xF3ria global:\n\n---\n{{content}}\n---",
|
|
295934
|
+
"Project memory content from {{path}}:\n\n---\n{{content}}\n---": "Conte\xFAdo da mem\xF3ria do projeto de {{path}}:\n\n---\n{{content}}\n---",
|
|
295935
|
+
"Project memory is currently empty.": "A mem\xF3ria do projeto est\xE1 vazia no momento.",
|
|
295936
|
+
"Refreshing memory from source files...": "Atualizando mem\xF3ria dos arquivos fonte...",
|
|
295937
|
+
"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.",
|
|
295938
|
+
"Usage: /memory add [--global|--project] <text to remember>": "Uso: /memory add [--global|--project] <texto para lembrar>",
|
|
295939
|
+
'Attempting to save to memory {{scope}}: "{{fact}}"': 'Tentando salvar na mem\xF3ria {{scope}}: "{{fact}}"',
|
|
295940
|
+
// ============================================================================
|
|
295941
|
+
// Commands - MCP
|
|
295942
|
+
// ============================================================================
|
|
295943
|
+
"Authenticate with an OAuth-enabled MCP server": "Autenticar com um servidor MCP habilitado para OAuth",
|
|
295944
|
+
"List configured MCP servers and tools": "Listar servidores e ferramentas MCP configurados",
|
|
295945
|
+
"Restarts MCP servers.": "Reinicia os servidores MCP.",
|
|
295946
|
+
"Config not loaded.": "Configura\xE7\xE3o n\xE3o carregada.",
|
|
295947
|
+
"Could not retrieve tool registry.": "N\xE3o foi poss\xEDvel recuperar o registro de ferramentas.",
|
|
295948
|
+
"No MCP servers configured with OAuth authentication.": "Nenhum servidor MCP configurado com autentica\xE7\xE3o OAuth.",
|
|
295949
|
+
"MCP servers with OAuth authentication:": "Servidores MCP com autentica\xE7\xE3o OAuth:",
|
|
295950
|
+
"Use /mcp auth <server-name> to authenticate.": "Use /mcp auth <nome-do-servidor> para autenticar.",
|
|
295951
|
+
"MCP server '{{name}}' not found.": "Servidor MCP '{{name}}' n\xE3o encontrado.",
|
|
295952
|
+
"Successfully authenticated and refreshed tools for '{{name}}'.": "Autenticado com sucesso e ferramentas atualizadas para '{{name}}'.",
|
|
295953
|
+
"Failed to authenticate with MCP server '{{name}}': {{error}}": "Falha ao autenticar com o servidor MCP '{{name}}': {{error}}",
|
|
295954
|
+
"Re-discovering tools from '{{name}}'...": "Redescobrindo ferramentas de '{{name}}'...",
|
|
295955
|
+
// ============================================================================
|
|
295956
|
+
// Commands - Chat
|
|
295957
|
+
// ============================================================================
|
|
295958
|
+
"Manage conversation history.": "Gerenciar hist\xF3rico de conversas.",
|
|
295959
|
+
"List saved conversation checkpoints": "Listar checkpoints de conversa salvos",
|
|
295960
|
+
"No saved conversation checkpoints found.": "Nenhum checkpoint de conversa salvo encontrado.",
|
|
295961
|
+
"List of saved conversations:": "Lista de conversas salvas:",
|
|
295962
|
+
"Note: Newest last, oldest first": "Nota: Mais novos por \xFAltimo, mais antigos primeiro",
|
|
295963
|
+
"Save the current conversation as a checkpoint. Usage: /chat save <tag>": "Salvar a conversa atual como um checkpoint. Uso: /chat save <tag>",
|
|
295964
|
+
"Missing tag. Usage: /chat save <tag>": "Tag ausente. Uso: /chat save <tag>",
|
|
295965
|
+
"Delete a conversation checkpoint. Usage: /chat delete <tag>": "Excluir um checkpoint de conversa. Uso: /chat delete <tag>",
|
|
295966
|
+
"Missing tag. Usage: /chat delete <tag>": "Tag ausente. Uso: /chat delete <tag>",
|
|
295967
|
+
"Conversation checkpoint '{{tag}}' has been deleted.": "O checkpoint de conversa '{{tag}}' foi exclu\xEDdo.",
|
|
295968
|
+
"Error: No checkpoint found with tag '{{tag}}'.": "Erro: Nenhum checkpoint encontrado com a tag '{{tag}}'.",
|
|
295969
|
+
"Resume a conversation from a checkpoint. Usage: /chat resume <tag>": "Retomar uma conversa de um checkpoint. Uso: /chat resume <tag>",
|
|
295970
|
+
"Missing tag. Usage: /chat resume <tag>": "Tag ausente. Uso: /chat resume <tag>",
|
|
295971
|
+
"No saved checkpoint found with tag: {{tag}}.": "Nenhum checkpoint salvo encontrado com a tag: {{tag}}.",
|
|
295972
|
+
"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?",
|
|
295973
|
+
"No chat client available to save conversation.": "Nenhum cliente de chat dispon\xEDvel para salvar a conversa.",
|
|
295974
|
+
"Conversation checkpoint saved with tag: {{tag}}.": "Checkpoint de conversa salvo com a tag: {{tag}}.",
|
|
295975
|
+
"No conversation found to save.": "Nenhuma conversa encontrada para salvar.",
|
|
295976
|
+
"No chat client available to share conversation.": "Nenhum cliente de chat dispon\xEDvel para compartilhar a conversa.",
|
|
295977
|
+
"Invalid file format. Only .md and .json are supported.": "Formato de arquivo inv\xE1lido. Apenas .md e .json s\xE3o suportados.",
|
|
295978
|
+
"Error sharing conversation: {{error}}": "Erro ao compartilhar conversa: {{error}}",
|
|
295979
|
+
"Conversation shared to {{filePath}}": "Conversa compartilhada em {{filePath}}",
|
|
295980
|
+
"No conversation found to share.": "Nenhuma conversa encontrada para compartilhar.",
|
|
295981
|
+
"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>",
|
|
295982
|
+
// ============================================================================
|
|
295983
|
+
// Commands - Summary
|
|
295984
|
+
// ============================================================================
|
|
295985
|
+
"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",
|
|
295986
|
+
"No chat client available to generate summary.": "Nenhum cliente de chat dispon\xEDvel para gerar o resumo.",
|
|
295987
|
+
"Already generating summary, wait for previous request to complete": "J\xE1 gerando resumo, aguarde a conclus\xE3o da solicita\xE7\xE3o anterior",
|
|
295988
|
+
"No conversation found to summarize.": "Nenhuma conversa encontrada para resumir.",
|
|
295989
|
+
"Failed to generate project context summary: {{error}}": "Falha ao gerar resumo do contexto do projeto: {{error}}",
|
|
295990
|
+
"Saved project summary to {{filePathForDisplay}}.": "Resumo do projeto salvo em {{filePathForDisplay}}.",
|
|
295991
|
+
"Saving project summary...": "Salvando resumo do projeto...",
|
|
295992
|
+
"Generating project summary...": "Gerando resumo do projeto...",
|
|
295993
|
+
"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",
|
|
295994
|
+
// ============================================================================
|
|
295995
|
+
// Commands - Model
|
|
295996
|
+
// ============================================================================
|
|
295997
|
+
"Switch the model for this session": "Trocar o modelo para esta sess\xE3o",
|
|
295998
|
+
"Content generator configuration not available.": "Configura\xE7\xE3o do gerador de conte\xFAdo n\xE3o dispon\xEDvel.",
|
|
295999
|
+
"Authentication type not available.": "Tipo de autentica\xE7\xE3o n\xE3o dispon\xEDvel.",
|
|
296000
|
+
"No models available for the current authentication type ({{authType}}).": "Nenhum modelo dispon\xEDvel para o tipo de autentica\xE7\xE3o atual ({{authType}}).",
|
|
296001
|
+
// ============================================================================
|
|
296002
|
+
// Commands - Clear
|
|
296003
|
+
// ============================================================================
|
|
296004
|
+
"Starting a new session, resetting chat, and clearing terminal.": "Iniciando uma nova sess\xE3o, resetando o chat e limpando o terminal.",
|
|
296005
|
+
"Starting a new session and clearing.": "Iniciando uma nova sess\xE3o e limpando.",
|
|
296006
|
+
// ============================================================================
|
|
296007
|
+
// Commands - Compress
|
|
296008
|
+
// ============================================================================
|
|
296009
|
+
"Already compressing, wait for previous request to complete": "J\xE1 comprimindo, aguarde a conclus\xE3o da solicita\xE7\xE3o anterior",
|
|
296010
|
+
"Failed to compress chat history.": "Falha ao comprimir hist\xF3rico do chat.",
|
|
296011
|
+
"Failed to compress chat history: {{error}}": "Falha ao comprimir hist\xF3rico do chat: {{error}}",
|
|
296012
|
+
"Compressing chat history": "Comprimindo hist\xF3rico do chat",
|
|
296013
|
+
"Chat history compressed from {{originalTokens}} to {{newTokens}} tokens.": "Hist\xF3rico do chat comprimido de {{originalTokens}} para {{newTokens}} tokens.",
|
|
296014
|
+
"Compression was not beneficial for this history size.": "A compress\xE3o n\xE3o foi ben\xE9fica para este tamanho de hist\xF3rico.",
|
|
296015
|
+
"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.",
|
|
296016
|
+
"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.",
|
|
296017
|
+
"Chat history is already compressed.": "O hist\xF3rico do chat j\xE1 est\xE1 comprimido.",
|
|
296018
|
+
// ============================================================================
|
|
296019
|
+
// Commands - Directory
|
|
296020
|
+
// ============================================================================
|
|
296021
|
+
"Configuration is not available.": "A configura\xE7\xE3o n\xE3o est\xE1 dispon\xEDvel.",
|
|
296022
|
+
"Please provide at least one path to add.": "Forne\xE7a pelo menos um caminho para adicionar.",
|
|
296023
|
+
"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.",
|
|
296024
|
+
"Error adding '{{path}}': {{error}}": "Erro ao adicionar '{{path}}': {{error}}",
|
|
296025
|
+
"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}}",
|
|
296026
|
+
"Error refreshing memory: {{error}}": "Erro ao atualizar mem\xF3ria: {{error}}",
|
|
296027
|
+
"Successfully added directories:\n- {{directories}}": "Diret\xF3rios adicionados com sucesso:\n- {{directories}}",
|
|
296028
|
+
"Current workspace directories:\n{{directories}}": "Diret\xF3rios atuais do workspace:\n{{directories}}",
|
|
296029
|
+
// ============================================================================
|
|
296030
|
+
// Commands - Docs
|
|
296031
|
+
// ============================================================================
|
|
296032
|
+
"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}}",
|
|
296033
|
+
"Opening documentation in your browser: {{url}}": "Abrindo documenta\xE7\xE3o no seu navegador: {{url}}",
|
|
296034
|
+
// ============================================================================
|
|
296035
|
+
// Dialogs - Tool Confirmation
|
|
296036
|
+
// ============================================================================
|
|
296037
|
+
"Do you want to proceed?": "Voc\xEA deseja prosseguir?",
|
|
296038
|
+
"Yes, allow once": "Sim, permitir uma vez",
|
|
296039
|
+
"Allow always": "Permitir sempre",
|
|
296040
|
+
No: "N\xE3o",
|
|
296041
|
+
"No (esc)": "N\xE3o (esc)",
|
|
296042
|
+
"Yes, allow always for this session": "Sim, permitir sempre para esta sess\xE3o",
|
|
296043
|
+
"Modify in progress:": "Modifica\xE7\xE3o em progresso:",
|
|
296044
|
+
"Save and close external editor to continue": "Salve e feche o editor externo para continuar",
|
|
296045
|
+
"Apply this change?": "Aplicar esta altera\xE7\xE3o?",
|
|
296046
|
+
"Yes, allow always": "Sim, permitir sempre",
|
|
296047
|
+
"Modify with external editor": "Modificar com editor externo",
|
|
296048
|
+
"No, suggest changes (esc)": "N\xE3o, sugerir altera\xE7\xF5es (esc)",
|
|
296049
|
+
"Allow execution of: '{{command}}'?": "Permitir a execu\xE7\xE3o de: '{{command}}'?",
|
|
296050
|
+
"Yes, allow always ...": "Sim, permitir sempre ...",
|
|
296051
|
+
"Yes, and auto-accept edits": "Sim, e aceitar edi\xE7\xF5es automaticamente",
|
|
296052
|
+
"Yes, and manually approve edits": "Sim, e aprovar edi\xE7\xF5es manualmente",
|
|
296053
|
+
"No, keep planning (esc)": "N\xE3o, continuar planejando (esc)",
|
|
296054
|
+
"URLs to fetch:": "URLs para buscar:",
|
|
296055
|
+
"MCP Server: {{server}}": "Servidor MCP: {{server}}",
|
|
296056
|
+
"Tool: {{tool}}": "Ferramenta: {{tool}}",
|
|
296057
|
+
'Allow execution of MCP tool "{{tool}}" from server "{{server}}"?': 'Permitir a execu\xE7\xE3o da ferramenta MCP "{{tool}}" do servidor "{{server}}"?',
|
|
296058
|
+
'Yes, always allow tool "{{tool}}" from server "{{server}}"': 'Sim, sempre permitir a ferramenta "{{tool}}" do servidor "{{server}}"',
|
|
296059
|
+
'Yes, always allow all tools from server "{{server}}"': 'Sim, sempre permitir todas as ferramentas do servidor "{{server}}"',
|
|
296060
|
+
// ============================================================================
|
|
296061
|
+
// Dialogs - Shell Confirmation
|
|
296062
|
+
// ============================================================================
|
|
296063
|
+
"Shell Command Execution": "Execu\xE7\xE3o de Comando Shell",
|
|
296064
|
+
"A custom command wants to run the following shell commands:": "Um comando personalizado deseja executar os seguintes comandos shell:",
|
|
296065
|
+
// ============================================================================
|
|
296066
|
+
// Dialogs - Pro Quota
|
|
296067
|
+
// ============================================================================
|
|
296068
|
+
"Pro quota limit reached for {{model}}.": "Limite de cota Pro atingido para {{model}}.",
|
|
296069
|
+
"Change auth (executes the /auth command)": "Alterar autentica\xE7\xE3o (executa o comando /auth)",
|
|
296070
|
+
"Continue with {{model}}": "Continuar com {{model}}",
|
|
296071
|
+
// ============================================================================
|
|
296072
|
+
// Dialogs - Welcome Back
|
|
296073
|
+
// ============================================================================
|
|
296074
|
+
"Current Plan:": "Plano Atual:",
|
|
296075
|
+
"Progress: {{done}}/{{total}} tasks completed": "Progresso: {{done}}/{{total}} tarefas conclu\xEDdas",
|
|
296076
|
+
", {{inProgress}} in progress": ", {{inProgress}} em progresso",
|
|
296077
|
+
"Pending Tasks:": "Tarefas Pendentes:",
|
|
296078
|
+
"What would you like to do?": "O que voc\xEA gostaria de fazer?",
|
|
296079
|
+
"Choose how to proceed with your session:": "Escolha como proceder com sua sess\xE3o:",
|
|
296080
|
+
"Start new chat session": "Iniciar nova sess\xE3o de chat",
|
|
296081
|
+
"Continue previous conversation": "Continuar conversa anterior",
|
|
296082
|
+
"\u{1F44B} Welcome back! (Last updated: {{timeAgo}})": "\u{1F44B} Bem-vindo de volta! (\xDAltima atualiza\xE7\xE3o: {{timeAgo}})",
|
|
296083
|
+
"\u{1F3AF} Overall Goal:": "\u{1F3AF} Objetivo Geral:",
|
|
296084
|
+
// ============================================================================
|
|
296085
|
+
// Dialogs - Auth
|
|
296086
|
+
// ============================================================================
|
|
296087
|
+
"Get started": "Come\xE7ar",
|
|
296088
|
+
"How would you like to authenticate for this project?": "Como voc\xEA gostaria de se autenticar para este projeto?",
|
|
296089
|
+
"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.",
|
|
296090
|
+
"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.",
|
|
296091
|
+
"(Use Enter to Set Auth)": "(Use Enter para Definir Autentica\xE7\xE3o)",
|
|
296092
|
+
"Terms of Services and Privacy Notice for Qwen Code": "Termos de Servi\xE7o e Aviso de Privacidade do Qwen Code",
|
|
296093
|
+
"Qwen OAuth": "Qwen OAuth",
|
|
296094
|
+
OpenAI: "OpenAI",
|
|
296095
|
+
"Failed to login. Message: {{message}}": "Falha ao fazer login. Mensagem: {{message}}",
|
|
296096
|
+
"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.",
|
|
296097
|
+
"Qwen OAuth authentication timed out. Please try again.": "A autentica\xE7\xE3o Qwen OAuth expirou. Tente novamente.",
|
|
296098
|
+
"Qwen OAuth authentication cancelled.": "Autentica\xE7\xE3o Qwen OAuth cancelada.",
|
|
296099
|
+
"Qwen OAuth Authentication": "Autentica\xE7\xE3o Qwen OAuth",
|
|
296100
|
+
"Please visit this URL to authorize:": "Visite esta URL para autorizar:",
|
|
296101
|
+
"Or scan the QR code below:": "Ou escaneie o c\xF3digo QR abaixo:",
|
|
296102
|
+
"Waiting for authorization": "Aguardando autoriza\xE7\xE3o",
|
|
296103
|
+
"Time remaining:": "Tempo restante:",
|
|
296104
|
+
"(Press ESC or CTRL+C to cancel)": "(Pressione ESC ou CTRL+C para cancelar)",
|
|
296105
|
+
"Qwen OAuth Authentication Timeout": "Tempo Limite de Autentica\xE7\xE3o Qwen OAuth",
|
|
296106
|
+
"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.",
|
|
296107
|
+
"Press any key to return to authentication type selection.": "Pressione qualquer tecla para retornar \xE0 sele\xE7\xE3o do tipo de autentica\xE7\xE3o.",
|
|
296108
|
+
"Waiting for Qwen OAuth authentication...": "Aguardando autentica\xE7\xE3o Qwen OAuth...",
|
|
296109
|
+
"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.",
|
|
296110
|
+
"Authentication timed out. Please try again.": "A autentica\xE7\xE3o expirou. Tente novamente.",
|
|
296111
|
+
"Waiting for auth... (Press ESC or CTRL+C to cancel)": "Aguardando autentica\xE7\xE3o... (Pressione ESC ou CTRL+C para cancelar)",
|
|
296112
|
+
"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}}.",
|
|
296113
|
+
"{{envKeyHint}} environment variable not found.": "Vari\xE1vel de ambiente {{envKeyHint}} n\xE3o encontrada.",
|
|
296114
|
+
"{{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.",
|
|
296115
|
+
"{{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.",
|
|
296116
|
+
"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}}.",
|
|
296117
|
+
"Anthropic provider missing required baseUrl in modelProviders[].baseUrl.": "Provedor Anthropic sem a baseUrl necess\xE1ria em modelProviders[].baseUrl.",
|
|
296118
|
+
"ANTHROPIC_BASE_URL environment variable not found.": "Vari\xE1vel de ambiente ANTHROPIC_BASE_URL n\xE3o encontrada.",
|
|
296119
|
+
"Invalid auth method selected.": "M\xE9todo de autentica\xE7\xE3o inv\xE1lido selecionado.",
|
|
296120
|
+
"Failed to authenticate. Message: {{message}}": "Falha ao autenticar. Mensagem: {{message}}",
|
|
296121
|
+
"Authenticated successfully with {{authType}} credentials.": "Autenticado com sucesso com credenciais {{authType}}.",
|
|
296122
|
+
'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}}',
|
|
296123
|
+
"OpenAI Configuration Required": "Configura\xE7\xE3o do OpenAI Necess\xE1ria",
|
|
296124
|
+
"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",
|
|
296125
|
+
"API Key:": "Chave da API:",
|
|
296126
|
+
"Invalid credentials: {{errorMessage}}": "Credenciais inv\xE1lidas: {{errorMessage}}",
|
|
296127
|
+
"Failed to validate credentials": "Falha ao validar credenciais",
|
|
296128
|
+
"Press Enter to continue, Tab/\u2191\u2193 to navigate, Esc to cancel": "Pressione Enter para continuar, Tab/\u2191\u2193 para navegar, Esc para cancelar",
|
|
296129
|
+
// ============================================================================
|
|
296130
|
+
// Dialogs - Model
|
|
296131
|
+
// ============================================================================
|
|
296132
|
+
"Select Model": "Selecionar Modelo",
|
|
296133
|
+
"(Press Esc to close)": "(Pressione Esc para fechar)",
|
|
296134
|
+
"Current (effective) configuration": "Configura\xE7\xE3o atual (efetiva)",
|
|
296135
|
+
AuthType: "AuthType",
|
|
296136
|
+
"API Key": "Chave da API",
|
|
296137
|
+
unset: "n\xE3o definido",
|
|
296138
|
+
"(default)": "(padr\xE3o)",
|
|
296139
|
+
"(set)": "(definido)",
|
|
296140
|
+
"(not set)": "(n\xE3o definido)",
|
|
296141
|
+
"Failed to switch model to '{{modelId}}'.\n\n{{error}}": "Falha ao trocar o modelo para '{{modelId}}'.\n\n{{error}}",
|
|
296142
|
+
"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)",
|
|
296143
|
+
"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)",
|
|
296144
|
+
// ============================================================================
|
|
296145
|
+
// Dialogs - Permissions
|
|
296146
|
+
// ============================================================================
|
|
296147
|
+
"Manage folder trust settings": "Gerenciar configura\xE7\xF5es de confian\xE7a de pasta",
|
|
296148
|
+
// ============================================================================
|
|
296149
|
+
// Status Bar
|
|
296150
|
+
// ============================================================================
|
|
296151
|
+
"Using:": "Usando:",
|
|
296152
|
+
"{{count}} open file": "{{count}} arquivo aberto",
|
|
296153
|
+
"{{count}} open files": "{{count}} arquivos abertos",
|
|
296154
|
+
"(ctrl+g to view)": "(ctrl+g para ver)",
|
|
296155
|
+
"{{count}} {{name}} file": "{{count}} arquivo {{name}}",
|
|
296156
|
+
"{{count}} {{name}} files": "{{count}} arquivos {{name}}",
|
|
296157
|
+
"{{count}} MCP server": "{{count}} servidor MCP",
|
|
296158
|
+
"{{count}} MCP servers": "{{count}} servidores MCP",
|
|
296159
|
+
"{{count}} Blocked": "{{count}} Bloqueados",
|
|
296160
|
+
"(ctrl+t to view)": "(ctrl+t para ver)",
|
|
296161
|
+
"(ctrl+t to toggle)": "(ctrl+t para alternar)",
|
|
296162
|
+
"Press Ctrl+C again to exit.": "Pressione Ctrl+C novamente para sair.",
|
|
296163
|
+
"Press Ctrl+D again to exit.": "Pressione Ctrl+D novamente para sair.",
|
|
296164
|
+
"Press Esc again to clear.": "Pressione Esc novamente para limpar.",
|
|
296165
|
+
// ============================================================================
|
|
296166
|
+
// MCP Status
|
|
296167
|
+
// ============================================================================
|
|
296168
|
+
"No MCP servers configured.": "Nenhum servidor MCP configurado.",
|
|
296169
|
+
"Please view MCP documentation in your browser:": "Veja a documenta\xE7\xE3o do MCP no seu navegador:",
|
|
296170
|
+
"or use the cli /docs command": "ou use o comando cli /docs",
|
|
296171
|
+
"\u23F3 MCP servers are starting up ({{count}} initializing)...": "\u23F3 Servidores MCP est\xE3o iniciando ({{count}} inicializando)...",
|
|
296172
|
+
"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.",
|
|
296173
|
+
"Configured MCP servers:": "Servidores MCP configurados:",
|
|
296174
|
+
Ready: "Pronto",
|
|
296175
|
+
"Starting... (first startup may take longer)": "Iniciando... (a primeira inicializa\xE7\xE3o pode demorar mais)",
|
|
296176
|
+
Disconnected: "Desconectado",
|
|
296177
|
+
"{{count}} tool": "{{count}} ferramenta",
|
|
296178
|
+
"{{count}} tools": "{{count}} ferramentas",
|
|
296179
|
+
"{{count}} prompt": "{{count}} prompt",
|
|
296180
|
+
"{{count}} prompts": "{{count}} prompts",
|
|
296181
|
+
"(from {{extensionName}})": "(de {{extensionName}})",
|
|
296182
|
+
OAuth: "OAuth",
|
|
296183
|
+
"OAuth expired": "OAuth expirado",
|
|
296184
|
+
"OAuth not authenticated": "OAuth n\xE3o autenticado",
|
|
296185
|
+
"tools and prompts will appear when ready": "ferramentas e prompts aparecer\xE3o quando estiverem prontos",
|
|
296186
|
+
"{{count}} tools cached": "{{count}} ferramentas em cache",
|
|
296187
|
+
"Tools:": "Ferramentas:",
|
|
296188
|
+
"Parameters:": "Par\xE2metros:",
|
|
296189
|
+
"Prompts:": "Prompts:",
|
|
296190
|
+
Blocked: "Bloqueado",
|
|
296191
|
+
"\u{1F4A1} Tips:": "\u{1F4A1} Dicas:",
|
|
296192
|
+
Use: "Use",
|
|
296193
|
+
"to show server and tool descriptions": "para mostrar descri\xE7\xF5es de servidores e ferramentas",
|
|
296194
|
+
"to show tool parameter schemas": "para mostrar esquemas de par\xE2metros de ferramentas",
|
|
296195
|
+
"to hide descriptions": "para ocultar descri\xE7\xF5es",
|
|
296196
|
+
"to authenticate with OAuth-enabled servers": "para autenticar com servidores habilitados para OAuth",
|
|
296197
|
+
Press: "Pressione",
|
|
296198
|
+
"to toggle tool descriptions on/off": "para alternar descri\xE7\xF5es de ferramentas ligadas/desligadas",
|
|
296199
|
+
"Starting OAuth authentication for MCP server '{{name}}'...": "Iniciando autentica\xE7\xE3o OAuth para servidor MCP '{{name}}'...",
|
|
296200
|
+
"Restarting MCP servers...": "Reiniciando servidores MCP...",
|
|
296201
|
+
// ============================================================================
|
|
296202
|
+
// Startup Tips
|
|
296203
|
+
// ============================================================================
|
|
296204
|
+
"Tips:": "Dicas:",
|
|
296205
|
+
"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.",
|
|
296206
|
+
"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.",
|
|
296207
|
+
"Use /bug to submit issues to the maintainers when something goes off.": "Use /bug para enviar problemas aos mantenedores quando algo der errado.",
|
|
296208
|
+
"Switch auth type quickly with /auth.": "Troque o tipo de autentica\xE7\xE3o rapidamente com /auth.",
|
|
296209
|
+
"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).",
|
|
296210
|
+
"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.",
|
|
296211
|
+
"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.",
|
|
296212
|
+
"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.",
|
|
296213
|
+
// ============================================================================
|
|
296214
|
+
// Exit Screen / Stats
|
|
296215
|
+
// ============================================================================
|
|
296216
|
+
"Agent powering down. Goodbye!": "Agente desligando. Adeus!",
|
|
296217
|
+
"To continue this session, run": "Para continuar esta sess\xE3o, execute",
|
|
296218
|
+
"Interaction Summary": "Resumo da Intera\xE7\xE3o",
|
|
296219
|
+
"Session ID:": "ID da Sess\xE3o:",
|
|
296220
|
+
"Tool Calls:": "Chamadas de Ferramenta:",
|
|
296221
|
+
"Success Rate:": "Taxa de Sucesso:",
|
|
296222
|
+
"User Agreement:": "Acordo do Usu\xE1rio:",
|
|
296223
|
+
reviewed: "revisado",
|
|
296224
|
+
"Code Changes:": "Altera\xE7\xF5es de C\xF3digo:",
|
|
296225
|
+
Performance: "Desempenho",
|
|
296226
|
+
"Wall Time:": "Tempo Total:",
|
|
296227
|
+
"Agent Active:": "Agente Ativo:",
|
|
296228
|
+
"API Time:": "Tempo de API:",
|
|
296229
|
+
"Tool Time:": "Tempo de Ferramenta:",
|
|
296230
|
+
"Session Stats": "Estat\xEDsticas da Sess\xE3o",
|
|
296231
|
+
"Model Usage": "Uso do Modelo",
|
|
296232
|
+
Reqs: "Reqs",
|
|
296233
|
+
"Input Tokens": "Tokens de Entrada",
|
|
296234
|
+
"Output Tokens": "Tokens de Sa\xEDda",
|
|
296235
|
+
"Savings Highlight:": "Destaque de Economia:",
|
|
296236
|
+
"of input tokens were served from the cache, reducing costs.": "de tokens de entrada foram servidos do cache, reduzindo custos.",
|
|
296237
|
+
"Tip: For a full token breakdown, run `/stats model`.": "Dica: Para um detalhamento completo de tokens, execute `/stats model`.",
|
|
296238
|
+
"Model Stats For Nerds": "Estat\xEDsticas de Modelo Para Nerds",
|
|
296239
|
+
"Tool Stats For Nerds": "Estat\xEDsticas de Ferramenta Para Nerds",
|
|
296240
|
+
Metric: "M\xE9trica",
|
|
296241
|
+
API: "API",
|
|
296242
|
+
Requests: "Solicita\xE7\xF5es",
|
|
296243
|
+
Errors: "Erros",
|
|
296244
|
+
"Avg Latency": "Lat\xEAncia M\xE9dia",
|
|
296245
|
+
Tokens: "Tokens",
|
|
296246
|
+
Total: "Total",
|
|
296247
|
+
Prompt: "Prompt",
|
|
296248
|
+
Cached: "Cacheado",
|
|
296249
|
+
Thoughts: "Pensamentos",
|
|
296250
|
+
Tool: "Ferramenta",
|
|
296251
|
+
Output: "Sa\xEDda",
|
|
296252
|
+
"No API calls have been made in this session.": "Nenhuma chamada de API foi feita nesta sess\xE3o.",
|
|
296253
|
+
"Tool Name": "Nome da Ferramenta",
|
|
296254
|
+
Calls: "Chamadas",
|
|
296255
|
+
"Success Rate": "Taxa de Sucesso",
|
|
296256
|
+
"Avg Duration": "Dura\xE7\xE3o M\xE9dia",
|
|
296257
|
+
"User Decision Summary": "Resumo de Decis\xE3o do Usu\xE1rio",
|
|
296258
|
+
"Total Reviewed Suggestions:": "Total de Sugest\xF5es Revisadas:",
|
|
296259
|
+
" \xBB Accepted:": " \xBB Aceitas:",
|
|
296260
|
+
" \xBB Rejected:": " \xBB Rejeitadas:",
|
|
296261
|
+
" \xBB Modified:": " \xBB Modificadas:",
|
|
296262
|
+
" Overall Agreement Rate:": " Taxa Geral de Acordo:",
|
|
296263
|
+
"No tool calls have been made in this session.": "Nenhuma chamada de ferramenta foi feita nesta sess\xE3o.",
|
|
296264
|
+
"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.",
|
|
296265
|
+
// ============================================================================
|
|
296266
|
+
// Command Format Migration
|
|
296267
|
+
// ============================================================================
|
|
296268
|
+
"Command Format Migration": "Migra\xE7\xE3o de Formato de Comando",
|
|
296269
|
+
"Found {{count}} TOML command file:": "Encontrado {{count}} arquivo de comando TOML:",
|
|
296270
|
+
"Found {{count}} TOML command files:": "Encontrados {{count}} arquivos de comando TOML:",
|
|
296271
|
+
"... and {{count}} more": "... e mais {{count}}",
|
|
296272
|
+
"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?",
|
|
296273
|
+
"(Backups will be created and original files will be preserved)": "(Backups ser\xE3o criados e arquivos originais ser\xE3o preservados)",
|
|
296274
|
+
// ============================================================================
|
|
296275
|
+
// Loading Phrases
|
|
296276
|
+
// ============================================================================
|
|
296277
|
+
"Waiting for user confirmation...": "Aguardando confirma\xE7\xE3o do usu\xE1rio...",
|
|
296278
|
+
"(esc to cancel, {{time}})": "(esc para cancelar, {{time}})",
|
|
296279
|
+
WITTY_LOADING_PHRASES: [
|
|
296280
|
+
"Estou com sorte",
|
|
296281
|
+
"Enviando maravilhas...",
|
|
296282
|
+
"Pintando os serifos de volta...",
|
|
296283
|
+
"Navegando pelo mofo limoso...",
|
|
296284
|
+
"Consultando os esp\xEDritos digitais...",
|
|
296285
|
+
"Reticulando splines...",
|
|
296286
|
+
"Aquecendo os hamsters da IA...",
|
|
296287
|
+
"Perguntando \xE0 concha m\xE1gica...",
|
|
296288
|
+
"Gerando r\xE9plica espirituosa...",
|
|
296289
|
+
"Polindo os algoritmos...",
|
|
296290
|
+
"N\xE3o apresse a perfei\xE7\xE3o (ou meu c\xF3digo)...",
|
|
296291
|
+
"Preparando bytes frescos...",
|
|
296292
|
+
"Contando el\xE9trons...",
|
|
296293
|
+
"Engajando processadores cognitivos...",
|
|
296294
|
+
"Verificando erros de sintaxe no universo...",
|
|
296295
|
+
"Um momento, otimizando o humor...",
|
|
296296
|
+
"Embaralhando piadas...",
|
|
296297
|
+
"Desembara\xE7ando redes neurais...",
|
|
296298
|
+
"Compilando brilhantismo...",
|
|
296299
|
+
"Carregando humor.exe...",
|
|
296300
|
+
"Invocando a nuvem da sabedoria...",
|
|
296301
|
+
"Preparando uma resposta espirituosa...",
|
|
296302
|
+
"S\xF3 um segundo, estou depurando a realidade...",
|
|
296303
|
+
"Confundindo as op\xE7\xF5es...",
|
|
296304
|
+
"Sintonizando as frequ\xEAncias c\xF3smicas...",
|
|
296305
|
+
"Criando uma resposta digna da sua paci\xEAncia...",
|
|
296306
|
+
"Compilando os 1s e 0s...",
|
|
296307
|
+
"Resolvendo depend\xEAncias... e crises existenciais...",
|
|
296308
|
+
"Desfragmentando mem\xF3rias... tanto RAM quanto pessoais...",
|
|
296309
|
+
"Reiniciando o m\xF3dulo de humor...",
|
|
296310
|
+
"Fazendo cache do essencial (principalmente memes de gatos)...",
|
|
296311
|
+
"Otimizando para velocidade absurda",
|
|
296312
|
+
"Trocando bits... n\xE3o conte para os bytes...",
|
|
296313
|
+
"Coletando lixo... volto j\xE1...",
|
|
296314
|
+
"Montando a internet...",
|
|
296315
|
+
"Convertendo caf\xE9 em c\xF3digo...",
|
|
296316
|
+
"Atualizando a sintaxe da realidade...",
|
|
296317
|
+
"Reconectando as sinapses...",
|
|
296318
|
+
"Procurando um ponto e v\xEDrgula perdido...",
|
|
296319
|
+
"Lubrificando as engrenagens da m\xE1quina...",
|
|
296320
|
+
"Pr\xE9-aquecendo os servidores...",
|
|
296321
|
+
"Calibrando o capacitor de fluxo...",
|
|
296322
|
+
"Engajando o motor de improbabilidade...",
|
|
296323
|
+
"Canalizando a For\xE7a...",
|
|
296324
|
+
"Alinhando as estrelas para uma resposta ideal...",
|
|
296325
|
+
"Assim dizemos todos...",
|
|
296326
|
+
"Carregando a pr\xF3xima grande ideia...",
|
|
296327
|
+
"S\xF3 um momento, estou na zona...",
|
|
296328
|
+
"Preparando para deslumbr\xE1-lo com brilhantismo...",
|
|
296329
|
+
"S\xF3 um tique, estou polindo minha intelig\xEAncia...",
|
|
296330
|
+
"Segure firme, estou criando uma obra-prima...",
|
|
296331
|
+
"S\xF3 um instante, estou depurando o universo...",
|
|
296332
|
+
"S\xF3 um momento, estou alinhando os pixels...",
|
|
296333
|
+
"S\xF3 um segundo, estou otimizando o humor...",
|
|
296334
|
+
"S\xF3 um momento, estou ajustando os algoritmos...",
|
|
296335
|
+
"Velocidade de dobra engajada...",
|
|
296336
|
+
"Minerando mais cristais de Dilithium...",
|
|
296337
|
+
"N\xE3o entre em p\xE2nico...",
|
|
296338
|
+
"Seguindo o coelho branco...",
|
|
296339
|
+
"A verdade est\xE1 l\xE1 fora... em algum lugar...",
|
|
296340
|
+
"Soprando o cartucho...",
|
|
296341
|
+
"Carregando... Fa\xE7a um barrel roll!",
|
|
296342
|
+
"Aguardando o respawn...",
|
|
296343
|
+
"Terminando a Kessel Run em menos de 12 parsecs...",
|
|
296344
|
+
"O bolo n\xE3o \xE9 uma mentira, s\xF3 ainda est\xE1 carregando...",
|
|
296345
|
+
"Mexendo na tela de cria\xE7\xE3o de personagem...",
|
|
296346
|
+
"S\xF3 um momento, estou encontrando o meme certo...",
|
|
296347
|
+
"Pressionando 'A' para continuar...",
|
|
296348
|
+
"Pastoreando gatos digitais...",
|
|
296349
|
+
"Polindo os pixels...",
|
|
296350
|
+
"Encontrando um trocadilho adequado para a tela de carregamento...",
|
|
296351
|
+
"Distraindo voc\xEA com esta frase espirituosa...",
|
|
296352
|
+
"Quase l\xE1... provavelmente...",
|
|
296353
|
+
"Nossos hamsters est\xE3o trabalhando o mais r\xE1pido que podem...",
|
|
296354
|
+
"Dando um tapinha na cabe\xE7a do Cloudy...",
|
|
296355
|
+
"Acariciando o gato...",
|
|
296356
|
+
"Dando um Rickroll no meu chefe...",
|
|
296357
|
+
"Never gonna give you up, never gonna let you down...",
|
|
296358
|
+
"Tocando o baixo...",
|
|
296359
|
+
"Provando as amoras...",
|
|
296360
|
+
"Estou indo longe, estou indo pela velocidade...",
|
|
296361
|
+
"Isso \xE9 vida real? Ou \xE9 apenas fantasia?...",
|
|
296362
|
+
"Tenho um bom pressentimento sobre isso...",
|
|
296363
|
+
"Cutucando o urso...",
|
|
296364
|
+
"Fazendo pesquisa sobre os \xFAltimos memes...",
|
|
296365
|
+
"Descobrindo como tornar isso mais espirituoso...",
|
|
296366
|
+
"Hmmm... deixe-me pensar...",
|
|
296367
|
+
"O que voc\xEA chama de um peixe sem olhos? Um pxe...",
|
|
296368
|
+
"Por que o computador foi \xE0 terapia? Porque tinha muitos bytes...",
|
|
296369
|
+
"Por que programadores n\xE3o gostam da natureza? Porque tem muitos bugs...",
|
|
296370
|
+
"Por que programadores preferem o modo escuro? Porque a luz atrai bugs...",
|
|
296371
|
+
"Por que o desenvolvedor faliu? Porque usou todo o seu cache...",
|
|
296372
|
+
"O que voc\xEA pode fazer com um l\xE1pis quebrado? Nada, ele n\xE3o tem ponta...",
|
|
296373
|
+
"Aplicando manuten\xE7\xE3o percussiva...",
|
|
296374
|
+
"Procurando a orienta\xE7\xE3o correta do USB...",
|
|
296375
|
+
"Garantindo que a fuma\xE7a m\xE1gica permane\xE7a dentro dos fios...",
|
|
296376
|
+
"Tentando sair do Vim...",
|
|
296377
|
+
"Girando a roda do hamster...",
|
|
296378
|
+
"Isso n\xE3o \xE9 um bug, \xE9 um recurso n\xE3o documentado...",
|
|
296379
|
+
"Engajar.",
|
|
296380
|
+
"Eu voltarei... com uma resposta.",
|
|
296381
|
+
"Meu outro processo \xE9 uma TARDIS...",
|
|
296382
|
+
"Comungando com o esp\xEDrito da m\xE1quina...",
|
|
296383
|
+
"Deixando os pensamentos marinarem...",
|
|
296384
|
+
"Lembrei agora onde coloquei minhas chaves...",
|
|
296385
|
+
"Ponderando a orbe...",
|
|
296386
|
+
"Eu vi coisas que voc\xEAs n\xE3o acreditariam... como um usu\xE1rio que l\xEA mensagens de carregamento.",
|
|
296387
|
+
"Iniciando olhar pensativo...",
|
|
296388
|
+
"Qual \xE9 o lanche favorito de um computador? Microchips.",
|
|
296389
|
+
"Por que desenvolvedores Java usam \xF3culos? Porque eles n\xE3o C#.",
|
|
296390
|
+
"Carregando o laser... pew pew!",
|
|
296391
|
+
"Dividindo por zero... s\xF3 brincando!",
|
|
296392
|
+
"Procurando por um supervisor adulto... digo, processando.",
|
|
296393
|
+
"Fazendo bip boop.",
|
|
296394
|
+
"Buffering... porque at\xE9 as IAs precisam de um momento.",
|
|
296395
|
+
"Entrela\xE7ando part\xEDculas qu\xE2nticas para uma resposta mais r\xE1pida...",
|
|
296396
|
+
"Polindo o cromo... nos algoritmos.",
|
|
296397
|
+
"Voc\xEA n\xE3o est\xE1 entretido? (Trabalhando nisso!)",
|
|
296398
|
+
"Invocando os gremlins do c\xF3digo... para ajudar, \xE9 claro.",
|
|
296399
|
+
"S\xF3 esperando o som da conex\xE3o discada terminar...",
|
|
296400
|
+
"Recalibrando o humor\xF4metro.",
|
|
296401
|
+
"Minha outra tela de carregamento \xE9 ainda mais engra\xE7ada.",
|
|
296402
|
+
"Tenho quase certeza que tem um gato andando no teclado em algum lugar...",
|
|
296403
|
+
"Aumentando... Aumentando... Ainda carregando.",
|
|
296404
|
+
"N\xE3o \xE9 um bug, \xE9 um recurso... desta tela de carregamento.",
|
|
296405
|
+
"Voc\xEA j\xE1 tentou desligar e ligar de novo? (A tela de carregamento, n\xE3o eu.)",
|
|
296406
|
+
"Construindo pilares adicionais..."
|
|
296407
|
+
],
|
|
296408
|
+
// ============================================================================
|
|
296409
|
+
// Extension Settings Input
|
|
296410
|
+
// ============================================================================
|
|
296411
|
+
"Enter value...": "Digite o valor...",
|
|
296412
|
+
"Enter sensitive value...": "Digite o valor sens\xEDvel...",
|
|
296413
|
+
"Press Enter to submit, Escape to cancel": "Pressione Enter para enviar, Escape para cancelar",
|
|
296414
|
+
// ============================================================================
|
|
296415
|
+
// Command Migration Tool
|
|
296416
|
+
// ============================================================================
|
|
296417
|
+
"Markdown file already exists: {{filename}}": "Arquivo Markdown j\xE1 existe: {{filename}}",
|
|
296418
|
+
"TOML Command Format Deprecation Notice": "Aviso de Obsolesc\xEAncia do Formato de Comando TOML",
|
|
296419
|
+
"Found {{count}} command file(s) in TOML format:": "Encontrado(s) {{count}} arquivo(s) de comando no formato TOML:",
|
|
296420
|
+
"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.",
|
|
296421
|
+
"Markdown format is more readable and easier to edit.": "O formato Markdown \xE9 mais leg\xEDvel e f\xE1cil de editar.",
|
|
296422
|
+
"You can migrate these files automatically using:": "Voc\xEA pode migrar esses arquivos automaticamente usando:",
|
|
296423
|
+
"Or manually convert each file:": "Ou converter manualmente cada arquivo:",
|
|
296424
|
+
'TOML: prompt = "..." / description = "..."': 'TOML: prompt = "..." / description = "..."',
|
|
296425
|
+
"Markdown: YAML frontmatter + content": "Markdown: YAML frontmatter + conte\xFAdo",
|
|
296426
|
+
"The migration tool will:": "A ferramenta de migra\xE7\xE3o ir\xE1:",
|
|
296427
|
+
"Convert TOML files to Markdown": "Converter arquivos TOML para Markdown",
|
|
296428
|
+
"Create backups of original files": "Criar backups dos arquivos originais",
|
|
296429
|
+
"Preserve all command functionality": "Preservar toda a funcionalidade do comando",
|
|
296430
|
+
"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.",
|
|
296431
|
+
// ============================================================================
|
|
296432
|
+
// Extensions - Explore Command
|
|
296433
|
+
// ============================================================================
|
|
296434
|
+
"Open extensions page in your browser": "Abrir p\xE1gina de extens\xF5es no seu navegador",
|
|
296435
|
+
"Unknown extensions source: {{source}}.": "Fonte de extens\xF5es desconhecida: {{source}}.",
|
|
296436
|
+
"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)",
|
|
296437
|
+
"View available extensions at {{url}}": "Ver extens\xF5es dispon\xEDveis em {{url}}",
|
|
296438
|
+
"Opening extensions page in your browser: {{url}}": "Abrindo p\xE1gina de extens\xF5es no seu navegador: {{url}}",
|
|
296439
|
+
"Failed to open browser. Check out the extensions gallery at {{url}}": "Falha ao abrir o navegador. Confira a galeria de extens\xF5es em {{url}}"
|
|
296440
|
+
};
|
|
296441
|
+
}
|
|
296442
|
+
});
|
|
296443
|
+
|
|
294704
296444
|
// packages/cli/src/i18n/locales/ru.js
|
|
294705
296445
|
var ru_exports = {};
|
|
294706
296446
|
__export(ru_exports, {
|
|
@@ -295086,6 +296826,17 @@ var init_ru = __esm({
|
|
|
295086
296826
|
"Update all extensions.": "\u041E\u0431\u043D\u043E\u0432\u0438\u0442\u044C \u0432\u0441\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u0438\u044F.",
|
|
295087
296827
|
"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",
|
|
295088
296828
|
"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.",
|
|
296829
|
+
"Path:": "\u041F\u0443\u0442\u044C:",
|
|
296830
|
+
"Source:": "\u0418\u0441\u0442\u043E\u0447\u043D\u0438\u043A:",
|
|
296831
|
+
"Type:": "\u0422\u0438\u043F:",
|
|
296832
|
+
"Ref:": "\u0421\u0441\u044B\u043B\u043A\u0430:",
|
|
296833
|
+
"Release tag:": "\u0422\u0435\u0433 \u0440\u0435\u043B\u0438\u0437\u0430:",
|
|
296834
|
+
"Enabled (User):": "\u0412\u043A\u043B\u044E\u0447\u0435\u043D\u043E (\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C):",
|
|
296835
|
+
"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):",
|
|
296836
|
+
"Context files:": "\u041A\u043E\u043D\u0442\u0435\u043A\u0441\u0442\u043D\u044B\u0435 \u0444\u0430\u0439\u043B\u044B:",
|
|
296837
|
+
"Skills:": "\u041D\u0430\u0432\u044B\u043A\u0438:",
|
|
296838
|
+
"Agents:": "\u0410\u0433\u0435\u043D\u0442\u044B:",
|
|
296839
|
+
"MCP servers:": "MCP-\u0441\u0435\u0440\u0432\u0435\u0440\u044B:",
|
|
295089
296840
|
"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.",
|
|
295090
296841
|
'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.',
|
|
295091
296842
|
"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.",
|
|
@@ -295143,18 +296894,19 @@ var init_ru = __esm({
|
|
|
295143
296894
|
// ============================================================================
|
|
295144
296895
|
// Команды - Язык
|
|
295145
296896
|
// ============================================================================
|
|
295146
|
-
"Invalid language. Available:
|
|
296897
|
+
"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}}",
|
|
295147
296898
|
"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.",
|
|
295148
296899
|
"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}}",
|
|
295149
296900
|
"Current LLM output language: {{lang}}": "\u0422\u0435\u043A\u0443\u0449\u0438\u0439 \u044F\u0437\u044B\u043A \u0432\u044B\u0432\u043E\u0434\u0430 LLM: {{lang}}",
|
|
295150
296901
|
"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",
|
|
295151
296902
|
"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",
|
|
295152
296903
|
"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",
|
|
295153
|
-
"Usage: /language ui [
|
|
296904
|
+
"Usage: /language ui [{{options}}]": "\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u0435: /language ui [{{options}}]",
|
|
295154
296905
|
"Usage: /language output <language>": "\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u0435: /language output <language>",
|
|
295155
296906
|
"Example: /language output \u4E2D\u6587": "\u041F\u0440\u0438\u043C\u0435\u0440: /language output \u4E2D\u6587",
|
|
295156
296907
|
"Example: /language output English": "\u041F\u0440\u0438\u043C\u0435\u0440: /language output English",
|
|
295157
296908
|
"Example: /language output \u65E5\u672C\u8A9E": "\u041F\u0440\u0438\u043C\u0435\u0440: /language output \u65E5\u672C\u8A9E",
|
|
296909
|
+
"Example: /language output Portugu\xEAs": "\u041F\u0440\u0438\u043C\u0435\u0440: /language output Portugu\xEAs",
|
|
295158
296910
|
"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}}",
|
|
295159
296911
|
"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}}",
|
|
295160
296912
|
"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}}",
|
|
@@ -295164,10 +296916,7 @@ var init_ru = __esm({
|
|
|
295164
296916
|
"Available subcommands:": "\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u043F\u043E\u0434\u043A\u043E\u043C\u0430\u043D\u0434\u044B:",
|
|
295165
296917
|
"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.",
|
|
295166
296918
|
"Available options:": "\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u0432\u0430\u0440\u0438\u0430\u043D\u0442\u044B:",
|
|
295167
|
-
"
|
|
295168
|
-
" - en-US: English": " - en-US: \u0410\u043D\u0433\u043B\u0438\u0439\u0441\u043A\u0438\u0439",
|
|
295169
|
-
"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)",
|
|
295170
|
-
"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)",
|
|
296919
|
+
"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}}",
|
|
295171
296920
|
// ============================================================================
|
|
295172
296921
|
// Команды - Режим подтверждения
|
|
295173
296922
|
// ============================================================================
|
|
@@ -296112,6 +297861,17 @@ var init_zh = __esm({
|
|
|
296112
297861
|
"Update all extensions.": "\u66F4\u65B0\u6240\u6709\u6269\u5C55\u3002",
|
|
296113
297862
|
"Either an extension name or --all must be provided": "\u5FC5\u987B\u63D0\u4F9B\u6269\u5C55\u540D\u79F0\u6216 --all",
|
|
296114
297863
|
"Lists installed extensions.": "\u5217\u51FA\u5DF2\u5B89\u88C5\u7684\u6269\u5C55\u3002",
|
|
297864
|
+
"Path:": "\u8DEF\u5F84\uFF1A",
|
|
297865
|
+
"Source:": "\u6765\u6E90\uFF1A",
|
|
297866
|
+
"Type:": "\u7C7B\u578B\uFF1A",
|
|
297867
|
+
"Ref:": "\u5F15\u7528\uFF1A",
|
|
297868
|
+
"Release tag:": "\u53D1\u5E03\u6807\u7B7E\uFF1A",
|
|
297869
|
+
"Enabled (User):": "\u5DF2\u542F\u7528\uFF08\u7528\u6237\uFF09\uFF1A",
|
|
297870
|
+
"Enabled (Workspace):": "\u5DF2\u542F\u7528\uFF08\u5DE5\u4F5C\u533A\uFF09\uFF1A",
|
|
297871
|
+
"Context files:": "\u4E0A\u4E0B\u6587\u6587\u4EF6\uFF1A",
|
|
297872
|
+
"Skills:": "\u6280\u80FD\uFF1A",
|
|
297873
|
+
"Agents:": "\u4EE3\u7406\uFF1A",
|
|
297874
|
+
"MCP servers:": "MCP \u670D\u52A1\u5668\uFF1A",
|
|
296115
297875
|
"Link extension failed to install.": "\u94FE\u63A5\u6269\u5C55\u5B89\u88C5\u5931\u8D25\u3002",
|
|
296116
297876
|
'Extension "{{name}}" linked successfully and enabled.': '\u6269\u5C55 "{{name}}" \u94FE\u63A5\u6210\u529F\u5E76\u5DF2\u542F\u7528\u3002',
|
|
296117
297877
|
"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",
|
|
@@ -296169,18 +297929,19 @@ var init_zh = __esm({
|
|
|
296169
297929
|
// ============================================================================
|
|
296170
297930
|
// Commands - Language
|
|
296171
297931
|
// ============================================================================
|
|
296172
|
-
"Invalid language. Available:
|
|
297932
|
+
"Invalid language. Available: {{options}}": "\u65E0\u6548\u7684\u8BED\u8A00\u3002\u53EF\u7528\u9009\u9879\uFF1A{{options}}",
|
|
296173
297933
|
"Language subcommands do not accept additional arguments.": "\u8BED\u8A00\u5B50\u547D\u4EE4\u4E0D\u63A5\u53D7\u989D\u5916\u53C2\u6570",
|
|
296174
297934
|
"Current UI language: {{lang}}": "\u5F53\u524D UI \u8BED\u8A00\uFF1A{{lang}}",
|
|
296175
297935
|
"Current LLM output language: {{lang}}": "\u5F53\u524D LLM \u8F93\u51FA\u8BED\u8A00\uFF1A{{lang}}",
|
|
296176
297936
|
"LLM output language not set": "\u672A\u8BBE\u7F6E LLM \u8F93\u51FA\u8BED\u8A00",
|
|
296177
297937
|
"Set UI language": "\u8BBE\u7F6E UI \u8BED\u8A00",
|
|
296178
297938
|
"Set LLM output language": "\u8BBE\u7F6E LLM \u8F93\u51FA\u8BED\u8A00",
|
|
296179
|
-
"Usage: /language ui [
|
|
297939
|
+
"Usage: /language ui [{{options}}]": "\u7528\u6CD5\uFF1A/language ui [{{options}}]",
|
|
296180
297940
|
"Usage: /language output <language>": "\u7528\u6CD5\uFF1A/language output <\u8BED\u8A00>",
|
|
296181
297941
|
"Example: /language output \u4E2D\u6587": "\u793A\u4F8B\uFF1A/language output \u4E2D\u6587",
|
|
296182
297942
|
"Example: /language output English": "\u793A\u4F8B\uFF1A/language output English",
|
|
296183
297943
|
"Example: /language output \u65E5\u672C\u8A9E": "\u793A\u4F8B\uFF1A/language output \u65E5\u672C\u8A9E",
|
|
297944
|
+
"Example: /language output Portugu\xEAs": "\u793A\u4F8B\uFF1A/language output Portugu\xEAs",
|
|
296184
297945
|
"UI language changed to {{lang}}": "UI \u8BED\u8A00\u5DF2\u66F4\u6539\u4E3A {{lang}}",
|
|
296185
297946
|
"LLM output language set to {{lang}}": "LLM \u8F93\u51FA\u8BED\u8A00\u5DF2\u8BBE\u7F6E\u4E3A {{lang}}",
|
|
296186
297947
|
"LLM output language rule file generated at {{path}}": "LLM \u8F93\u51FA\u8BED\u8A00\u89C4\u5219\u6587\u4EF6\u5DF2\u751F\u6210\u4E8E {{path}}",
|
|
@@ -296190,10 +297951,7 @@ var init_zh = __esm({
|
|
|
296190
297951
|
"Available subcommands:": "\u53EF\u7528\u7684\u5B50\u547D\u4EE4\uFF1A",
|
|
296191
297952
|
"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",
|
|
296192
297953
|
"Available options:": "\u53EF\u7528\u9009\u9879\uFF1A",
|
|
296193
|
-
"
|
|
296194
|
-
" - en-US: English": " - en-US: English",
|
|
296195
|
-
"Set UI language to Simplified Chinese (zh-CN)": "\u5C06 UI \u8BED\u8A00\u8BBE\u7F6E\u4E3A\u7B80\u4F53\u4E2D\u6587 (zh-CN)",
|
|
296196
|
-
"Set UI language to English (en-US)": "\u5C06 UI \u8BED\u8A00\u8BBE\u7F6E\u4E3A\u82F1\u8BED (en-US)",
|
|
297954
|
+
"Set UI language to {{name}}": "\u5C06 UI \u8BED\u8A00\u8BBE\u7F6E\u4E3A {{name}}",
|
|
296197
297955
|
// ============================================================================
|
|
296198
297956
|
// Commands - Approval Mode
|
|
296199
297957
|
// ============================================================================
|
|
@@ -317857,7 +319615,7 @@ var require_agent3 = __commonJS({
|
|
|
317857
319615
|
return opts && opts.connections === 1 ? new Client3(origin, opts) : new Pool(origin, opts);
|
|
317858
319616
|
}
|
|
317859
319617
|
__name(defaultFactory, "defaultFactory");
|
|
317860
|
-
var
|
|
319618
|
+
var Agent4 = class extends DispatcherBase {
|
|
317861
319619
|
static {
|
|
317862
319620
|
__name(this, "Agent");
|
|
317863
319621
|
}
|
|
@@ -317932,7 +319690,7 @@ var require_agent3 = __commonJS({
|
|
|
317932
319690
|
await Promise.all(destroyPromises);
|
|
317933
319691
|
}
|
|
317934
319692
|
};
|
|
317935
|
-
module2.exports =
|
|
319693
|
+
module2.exports = Agent4;
|
|
317936
319694
|
}
|
|
317937
319695
|
});
|
|
317938
319696
|
|
|
@@ -317943,7 +319701,7 @@ var require_proxy_agent2 = __commonJS({
|
|
|
317943
319701
|
init_esbuild_shims();
|
|
317944
319702
|
var { kProxy, kClose, kDestroy, kDispatch, kInterceptors } = require_symbols6();
|
|
317945
319703
|
var { URL: URL5 } = __require("node:url");
|
|
317946
|
-
var
|
|
319704
|
+
var Agent4 = require_agent3();
|
|
317947
319705
|
var Pool = require_pool3();
|
|
317948
319706
|
var DispatcherBase = require_dispatcher_base2();
|
|
317949
319707
|
var { InvalidArgumentError, RequestAbortedError, SecureProxyConnectionError } = require_errors5();
|
|
@@ -318021,7 +319779,7 @@ var require_proxy_agent2 = __commonJS({
|
|
|
318021
319779
|
return this.#client.destroy(err);
|
|
318022
319780
|
}
|
|
318023
319781
|
};
|
|
318024
|
-
var
|
|
319782
|
+
var ProxyAgent6 = class extends DispatcherBase {
|
|
318025
319783
|
static {
|
|
318026
319784
|
__name(this, "ProxyAgent");
|
|
318027
319785
|
}
|
|
@@ -318067,7 +319825,7 @@ var require_proxy_agent2 = __commonJS({
|
|
|
318067
319825
|
return agentFactory(origin2, options2);
|
|
318068
319826
|
}, "factory");
|
|
318069
319827
|
this[kClient] = clientFactory(url2, { connect });
|
|
318070
|
-
this[kAgent] = new
|
|
319828
|
+
this[kAgent] = new Agent4({
|
|
318071
319829
|
...opts,
|
|
318072
319830
|
factory,
|
|
318073
319831
|
connect: /* @__PURE__ */ __name(async (opts2, callback) => {
|
|
@@ -318167,7 +319925,7 @@ var require_proxy_agent2 = __commonJS({
|
|
|
318167
319925
|
}
|
|
318168
319926
|
}
|
|
318169
319927
|
__name(throwIfProxyAuthIsSent, "throwIfProxyAuthIsSent");
|
|
318170
|
-
module2.exports =
|
|
319928
|
+
module2.exports = ProxyAgent6;
|
|
318171
319929
|
}
|
|
318172
319930
|
});
|
|
318173
319931
|
|
|
@@ -318178,14 +319936,14 @@ var require_env_http_proxy_agent2 = __commonJS({
|
|
|
318178
319936
|
init_esbuild_shims();
|
|
318179
319937
|
var DispatcherBase = require_dispatcher_base2();
|
|
318180
319938
|
var { kClose, kDestroy, kClosed, kDestroyed, kDispatch, kNoProxyAgent, kHttpProxyAgent, kHttpsProxyAgent } = require_symbols6();
|
|
318181
|
-
var
|
|
318182
|
-
var
|
|
319939
|
+
var ProxyAgent6 = require_proxy_agent2();
|
|
319940
|
+
var Agent4 = require_agent3();
|
|
318183
319941
|
var DEFAULT_PORTS = {
|
|
318184
319942
|
"http:": 80,
|
|
318185
319943
|
"https:": 443
|
|
318186
319944
|
};
|
|
318187
319945
|
var experimentalWarned = false;
|
|
318188
|
-
var
|
|
319946
|
+
var EnvHttpProxyAgent2 = class extends DispatcherBase {
|
|
318189
319947
|
static {
|
|
318190
319948
|
__name(this, "EnvHttpProxyAgent");
|
|
318191
319949
|
}
|
|
@@ -318202,16 +319960,16 @@ var require_env_http_proxy_agent2 = __commonJS({
|
|
|
318202
319960
|
});
|
|
318203
319961
|
}
|
|
318204
319962
|
const { httpProxy, httpsProxy, noProxy, ...agentOpts } = opts;
|
|
318205
|
-
this[kNoProxyAgent] = new
|
|
319963
|
+
this[kNoProxyAgent] = new Agent4(agentOpts);
|
|
318206
319964
|
const HTTP_PROXY = httpProxy ?? process.env.http_proxy ?? process.env.HTTP_PROXY;
|
|
318207
319965
|
if (HTTP_PROXY) {
|
|
318208
|
-
this[kHttpProxyAgent] = new
|
|
319966
|
+
this[kHttpProxyAgent] = new ProxyAgent6({ ...agentOpts, uri: HTTP_PROXY });
|
|
318209
319967
|
} else {
|
|
318210
319968
|
this[kHttpProxyAgent] = this[kNoProxyAgent];
|
|
318211
319969
|
}
|
|
318212
319970
|
const HTTPS_PROXY = httpsProxy ?? process.env.https_proxy ?? process.env.HTTPS_PROXY;
|
|
318213
319971
|
if (HTTPS_PROXY) {
|
|
318214
|
-
this[kHttpsProxyAgent] = new
|
|
319972
|
+
this[kHttpsProxyAgent] = new ProxyAgent6({ ...agentOpts, uri: HTTPS_PROXY });
|
|
318215
319973
|
} else {
|
|
318216
319974
|
this[kHttpsProxyAgent] = this[kHttpProxyAgent];
|
|
318217
319975
|
}
|
|
@@ -318307,7 +320065,7 @@ var require_env_http_proxy_agent2 = __commonJS({
|
|
|
318307
320065
|
return process.env.no_proxy ?? process.env.NO_PROXY ?? "";
|
|
318308
320066
|
}
|
|
318309
320067
|
};
|
|
318310
|
-
module2.exports =
|
|
320068
|
+
module2.exports = EnvHttpProxyAgent2;
|
|
318311
320069
|
}
|
|
318312
320070
|
});
|
|
318313
320071
|
|
|
@@ -320608,7 +322366,7 @@ var require_mock_agent2 = __commonJS({
|
|
|
320608
322366
|
"use strict";
|
|
320609
322367
|
init_esbuild_shims();
|
|
320610
322368
|
var { kClients } = require_symbols6();
|
|
320611
|
-
var
|
|
322369
|
+
var Agent4 = require_agent3();
|
|
320612
322370
|
var {
|
|
320613
322371
|
kAgent,
|
|
320614
322372
|
kMockAgentSet,
|
|
@@ -320638,7 +322396,7 @@ var require_mock_agent2 = __commonJS({
|
|
|
320638
322396
|
if (opts?.agent && typeof opts.agent.dispatch !== "function") {
|
|
320639
322397
|
throw new InvalidArgumentError("Argument opts.agent must implement Agent");
|
|
320640
322398
|
}
|
|
320641
|
-
const agent = opts?.agent ? opts.agent : new
|
|
322399
|
+
const agent = opts?.agent ? opts.agent : new Agent4(opts);
|
|
320642
322400
|
this[kAgent] = agent;
|
|
320643
322401
|
this[kClients] = agent[kClients];
|
|
320644
322402
|
this[kOptions] = buildMockOptions(opts);
|
|
@@ -320743,9 +322501,9 @@ var require_global4 = __commonJS({
|
|
|
320743
322501
|
init_esbuild_shims();
|
|
320744
322502
|
var globalDispatcher = Symbol.for("undici.globalDispatcher.1");
|
|
320745
322503
|
var { InvalidArgumentError } = require_errors5();
|
|
320746
|
-
var
|
|
322504
|
+
var Agent4 = require_agent3();
|
|
320747
322505
|
if (getGlobalDispatcher() === void 0) {
|
|
320748
|
-
setGlobalDispatcher3(new
|
|
322506
|
+
setGlobalDispatcher3(new Agent4());
|
|
320749
322507
|
}
|
|
320750
322508
|
function setGlobalDispatcher3(agent) {
|
|
320751
322509
|
if (!agent || typeof agent.dispatch !== "function") {
|
|
@@ -328210,9 +329968,9 @@ var require_undici2 = __commonJS({
|
|
|
328210
329968
|
var Dispatcher = require_dispatcher2();
|
|
328211
329969
|
var Pool = require_pool3();
|
|
328212
329970
|
var BalancedPool = require_balanced_pool2();
|
|
328213
|
-
var
|
|
328214
|
-
var
|
|
328215
|
-
var
|
|
329971
|
+
var Agent4 = require_agent3();
|
|
329972
|
+
var ProxyAgent6 = require_proxy_agent2();
|
|
329973
|
+
var EnvHttpProxyAgent2 = require_env_http_proxy_agent2();
|
|
328216
329974
|
var RetryAgent = require_retry_agent2();
|
|
328217
329975
|
var errors = require_errors5();
|
|
328218
329976
|
var util4 = require_util22();
|
|
@@ -328233,9 +329991,9 @@ var require_undici2 = __commonJS({
|
|
|
328233
329991
|
module2.exports.Client = Client3;
|
|
328234
329992
|
module2.exports.Pool = Pool;
|
|
328235
329993
|
module2.exports.BalancedPool = BalancedPool;
|
|
328236
|
-
module2.exports.Agent =
|
|
328237
|
-
module2.exports.ProxyAgent =
|
|
328238
|
-
module2.exports.EnvHttpProxyAgent =
|
|
329994
|
+
module2.exports.Agent = Agent4;
|
|
329995
|
+
module2.exports.ProxyAgent = ProxyAgent6;
|
|
329996
|
+
module2.exports.EnvHttpProxyAgent = EnvHttpProxyAgent2;
|
|
328239
329997
|
module2.exports.RetryAgent = RetryAgent;
|
|
328240
329998
|
module2.exports.RetryHandler = RetryHandler;
|
|
328241
329999
|
module2.exports.DecoratorHandler = DecoratorHandler;
|
|
@@ -351913,7 +353671,7 @@ var patchConsole = /* @__PURE__ */ __name((callback) => {
|
|
|
351913
353671
|
var dist_default2 = patchConsole;
|
|
351914
353672
|
|
|
351915
353673
|
// node_modules/ink/build/ink.js
|
|
351916
|
-
var
|
|
353674
|
+
var import_constants30 = __toESM(require_constants12(), 1);
|
|
351917
353675
|
|
|
351918
353676
|
// node_modules/yoga-layout/dist/src/index.js
|
|
351919
353677
|
init_esbuild_shims();
|
|
@@ -353976,7 +355734,7 @@ __name(wrapAnsi, "wrapAnsi");
|
|
|
353976
355734
|
// node_modules/ink/build/reconciler.js
|
|
353977
355735
|
init_esbuild_shims();
|
|
353978
355736
|
var import_react_reconciler = __toESM(require_react_reconciler(), 1);
|
|
353979
|
-
var
|
|
355737
|
+
var import_constants29 = __toESM(require_constants12(), 1);
|
|
353980
355738
|
import process16 from "node:process";
|
|
353981
355739
|
var import_react = __toESM(require_react(), 1);
|
|
353982
355740
|
|
|
@@ -354947,7 +356705,7 @@ var cleanupYogaNode = /* @__PURE__ */ __name((node) => {
|
|
|
354947
356705
|
node?.unsetMeasureFunc();
|
|
354948
356706
|
node?.freeRecursive();
|
|
354949
356707
|
}, "cleanupYogaNode");
|
|
354950
|
-
var currentUpdatePriority =
|
|
356708
|
+
var currentUpdatePriority = import_constants29.NoEventPriority;
|
|
354951
356709
|
var currentRootNode;
|
|
354952
356710
|
var reconciler_default = (0, import_react_reconciler.default)({
|
|
354953
356711
|
getRootHostContext: /* @__PURE__ */ __name(() => ({
|
|
@@ -355104,10 +356862,10 @@ var reconciler_default = (0, import_react_reconciler.default)({
|
|
|
355104
356862
|
},
|
|
355105
356863
|
getCurrentUpdatePriority: /* @__PURE__ */ __name(() => currentUpdatePriority, "getCurrentUpdatePriority"),
|
|
355106
356864
|
resolveUpdatePriority() {
|
|
355107
|
-
if (currentUpdatePriority !==
|
|
356865
|
+
if (currentUpdatePriority !== import_constants29.NoEventPriority) {
|
|
355108
356866
|
return currentUpdatePriority;
|
|
355109
356867
|
}
|
|
355110
|
-
return
|
|
356868
|
+
return import_constants29.DefaultEventPriority;
|
|
355111
356869
|
},
|
|
355112
356870
|
maySuspendCommit() {
|
|
355113
356871
|
return false;
|
|
@@ -357625,7 +359383,7 @@ var Ink = class {
|
|
|
357625
359383
|
this.fullStaticOutput = "";
|
|
357626
359384
|
this.container = reconciler_default.createContainer(
|
|
357627
359385
|
this.rootNode,
|
|
357628
|
-
|
|
359386
|
+
import_constants30.LegacyRoot,
|
|
357629
359387
|
null,
|
|
357630
359388
|
false,
|
|
357631
359389
|
null,
|
|
@@ -359047,6 +360805,68 @@ __name(isWorkspaceTrusted, "isWorkspaceTrusted");
|
|
|
359047
360805
|
|
|
359048
360806
|
// packages/cli/src/config/settingsSchema.ts
|
|
359049
360807
|
init_esbuild_shims();
|
|
360808
|
+
|
|
360809
|
+
// packages/cli/src/i18n/languages.ts
|
|
360810
|
+
init_esbuild_shims();
|
|
360811
|
+
var SUPPORTED_LANGUAGES = [
|
|
360812
|
+
{
|
|
360813
|
+
code: "en",
|
|
360814
|
+
id: "en-US",
|
|
360815
|
+
fullName: "English",
|
|
360816
|
+
nativeName: "English"
|
|
360817
|
+
},
|
|
360818
|
+
{
|
|
360819
|
+
code: "zh",
|
|
360820
|
+
id: "zh-CN",
|
|
360821
|
+
fullName: "Chinese",
|
|
360822
|
+
nativeName: "\u4E2D\u6587"
|
|
360823
|
+
},
|
|
360824
|
+
{
|
|
360825
|
+
code: "ru",
|
|
360826
|
+
id: "ru-RU",
|
|
360827
|
+
fullName: "Russian",
|
|
360828
|
+
nativeName: "\u0420\u0443\u0441\u0441\u043A\u0438\u0439"
|
|
360829
|
+
},
|
|
360830
|
+
{
|
|
360831
|
+
code: "de",
|
|
360832
|
+
id: "de-DE",
|
|
360833
|
+
fullName: "German",
|
|
360834
|
+
nativeName: "Deutsch"
|
|
360835
|
+
},
|
|
360836
|
+
{
|
|
360837
|
+
code: "ja",
|
|
360838
|
+
id: "ja-JP",
|
|
360839
|
+
fullName: "Japanese",
|
|
360840
|
+
nativeName: "\u65E5\u672C\u8A9E"
|
|
360841
|
+
},
|
|
360842
|
+
{
|
|
360843
|
+
code: "pt",
|
|
360844
|
+
id: "pt-BR",
|
|
360845
|
+
fullName: "Portuguese",
|
|
360846
|
+
nativeName: "Portugu\xEAs"
|
|
360847
|
+
}
|
|
360848
|
+
];
|
|
360849
|
+
function getLanguageNameFromLocale(locale) {
|
|
360850
|
+
const lang = SUPPORTED_LANGUAGES.find((l3) => l3.code === locale);
|
|
360851
|
+
return lang?.fullName || "English";
|
|
360852
|
+
}
|
|
360853
|
+
__name(getLanguageNameFromLocale, "getLanguageNameFromLocale");
|
|
360854
|
+
function getLanguageSettingsOptions() {
|
|
360855
|
+
return [
|
|
360856
|
+
{ value: "auto", label: "Auto (detect from system)" },
|
|
360857
|
+
...SUPPORTED_LANGUAGES.map((l3) => ({
|
|
360858
|
+
value: l3.code,
|
|
360859
|
+
label: l3.nativeName ? `${l3.nativeName} (${l3.fullName})` : `${l3.fullName} (${l3.id})`
|
|
360860
|
+
}))
|
|
360861
|
+
];
|
|
360862
|
+
}
|
|
360863
|
+
__name(getLanguageSettingsOptions, "getLanguageSettingsOptions");
|
|
360864
|
+
function getSupportedLanguageIds(separator = "|") {
|
|
360865
|
+
return SUPPORTED_LANGUAGES.map((l3) => l3.id).join(separator);
|
|
360866
|
+
}
|
|
360867
|
+
__name(getSupportedLanguageIds, "getSupportedLanguageIds");
|
|
360868
|
+
|
|
360869
|
+
// packages/cli/src/config/settingsSchema.ts
|
|
359050
360870
|
var TOGGLE_TYPES = /* @__PURE__ */ new Set([
|
|
359051
360871
|
"boolean",
|
|
359052
360872
|
"enum"
|
|
@@ -359165,13 +360985,7 @@ var SETTINGS_SCHEMA = {
|
|
|
359165
360985
|
default: "auto",
|
|
359166
360986
|
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).',
|
|
359167
360987
|
showInDialog: true,
|
|
359168
|
-
options: [
|
|
359169
|
-
{ value: "auto", label: "Auto (detect from system)" },
|
|
359170
|
-
{ value: "en", label: "English" },
|
|
359171
|
-
{ value: "zh", label: "\u4E2D\u6587 (Chinese)" },
|
|
359172
|
-
{ value: "ru", label: "\u0420\u0443\u0441\u0441\u043A\u0438\u0439 (Russian)" },
|
|
359173
|
-
{ value: "de", label: "Deutsch (German)" }
|
|
359174
|
-
]
|
|
360988
|
+
options: []
|
|
359175
360989
|
},
|
|
359176
360990
|
outputLanguage: {
|
|
359177
360991
|
type: "string",
|
|
@@ -359179,7 +360993,7 @@ var SETTINGS_SCHEMA = {
|
|
|
359179
360993
|
category: "General",
|
|
359180
360994
|
requiresRestart: true,
|
|
359181
360995
|
default: "auto",
|
|
359182
|
-
description: 'The language for LLM output. Use "auto" to detect from system settings, or set a specific language
|
|
360996
|
+
description: 'The language for LLM output. Use "auto" to detect from system settings, or set a specific language.',
|
|
359183
360997
|
showInDialog: true
|
|
359184
360998
|
},
|
|
359185
360999
|
terminalBell: {
|
|
@@ -360091,6 +361905,10 @@ var SETTINGS_SCHEMA = {
|
|
|
360091
361905
|
}
|
|
360092
361906
|
};
|
|
360093
361907
|
function getSettingsSchema() {
|
|
361908
|
+
const schema = SETTINGS_SCHEMA;
|
|
361909
|
+
if (schema["general"]?.properties?.["language"]) {
|
|
361910
|
+
schema["general"].properties["language"].options = getLanguageSettingsOptions();
|
|
361911
|
+
}
|
|
360094
361912
|
return SETTINGS_SCHEMA;
|
|
360095
361913
|
}
|
|
360096
361914
|
__name(getSettingsSchema, "getSettingsSchema");
|
|
@@ -360915,40 +362733,12 @@ import * as path78 from "node:path";
|
|
|
360915
362733
|
import { fileURLToPath as fileURLToPath6, pathToFileURL as pathToFileURL2 } from "node:url";
|
|
360916
362734
|
import { homedir as homedir15 } from "node:os";
|
|
360917
362735
|
|
|
360918
|
-
// packages/cli/src/i18n/languages.ts
|
|
360919
|
-
init_esbuild_shims();
|
|
360920
|
-
var SUPPORTED_LANGUAGES = [
|
|
360921
|
-
{
|
|
360922
|
-
code: "en",
|
|
360923
|
-
id: "en-US",
|
|
360924
|
-
fullName: "English"
|
|
360925
|
-
},
|
|
360926
|
-
{
|
|
360927
|
-
code: "zh",
|
|
360928
|
-
id: "zh-CN",
|
|
360929
|
-
fullName: "Chinese"
|
|
360930
|
-
},
|
|
360931
|
-
{
|
|
360932
|
-
code: "ru",
|
|
360933
|
-
id: "ru-RU",
|
|
360934
|
-
fullName: "Russian"
|
|
360935
|
-
},
|
|
360936
|
-
{
|
|
360937
|
-
code: "de",
|
|
360938
|
-
id: "de-DE",
|
|
360939
|
-
fullName: "German"
|
|
360940
|
-
}
|
|
360941
|
-
];
|
|
360942
|
-
function getLanguageNameFromLocale(locale) {
|
|
360943
|
-
const lang = SUPPORTED_LANGUAGES.find((l3) => l3.code === locale);
|
|
360944
|
-
return lang?.fullName || "English";
|
|
360945
|
-
}
|
|
360946
|
-
__name(getLanguageNameFromLocale, "getLanguageNameFromLocale");
|
|
360947
|
-
|
|
360948
362736
|
// import("./locales/**/*.js") in packages/cli/src/i18n/index.ts
|
|
360949
362737
|
var globImport_locales_js = __glob({
|
|
360950
362738
|
"./locales/de.js": () => Promise.resolve().then(() => (init_de(), de_exports)),
|
|
360951
362739
|
"./locales/en.js": () => Promise.resolve().then(() => (init_en3(), en_exports)),
|
|
362740
|
+
"./locales/ja.js": () => Promise.resolve().then(() => (init_ja(), ja_exports)),
|
|
362741
|
+
"./locales/pt.js": () => Promise.resolve().then(() => (init_pt(), pt_exports)),
|
|
360952
362742
|
"./locales/ru.js": () => Promise.resolve().then(() => (init_ru(), ru_exports)),
|
|
360953
362743
|
"./locales/zh.js": () => Promise.resolve().then(() => (init_zh(), zh_exports))
|
|
360954
362744
|
});
|
|
@@ -360969,15 +362759,16 @@ var getLocalePath = /* @__PURE__ */ __name((lang, useUserDir = false) => {
|
|
|
360969
362759
|
}, "getLocalePath");
|
|
360970
362760
|
function detectSystemLanguage() {
|
|
360971
362761
|
const envLang = process.env["QWEN_CODE_LANG"] || process.env["LANG"];
|
|
360972
|
-
if (envLang
|
|
360973
|
-
|
|
360974
|
-
|
|
360975
|
-
|
|
362762
|
+
if (envLang) {
|
|
362763
|
+
for (const lang of SUPPORTED_LANGUAGES) {
|
|
362764
|
+
if (envLang.startsWith(lang.code)) return lang.code;
|
|
362765
|
+
}
|
|
362766
|
+
}
|
|
360976
362767
|
try {
|
|
360977
362768
|
const locale = Intl.DateTimeFormat().resolvedOptions().locale;
|
|
360978
|
-
|
|
360979
|
-
|
|
360980
|
-
|
|
362769
|
+
for (const lang of SUPPORTED_LANGUAGES) {
|
|
362770
|
+
if (locale.startsWith(lang.code)) return lang.code;
|
|
362771
|
+
}
|
|
360981
362772
|
} catch {
|
|
360982
362773
|
}
|
|
360983
362774
|
return "en";
|
|
@@ -361684,26 +363475,26 @@ function extensionToOutputString(extension, extensionManager, workspaceDir, inli
|
|
|
361684
363475
|
const status = workspaceEnabled ? import_chalk5.default.green("\u2713") : import_chalk5.default.red("\u2717");
|
|
361685
363476
|
let output = `${inline2 ? "" : status} ${extension.config.name} (${extension.config.version})`;
|
|
361686
363477
|
output += `
|
|
361687
|
-
Path: ${extension.path}`;
|
|
363478
|
+
${t4("Path:")} ${extension.path}`;
|
|
361688
363479
|
if (extension.installMetadata) {
|
|
361689
363480
|
output += `
|
|
361690
|
-
Source: ${extension.installMetadata.source} (Type: ${extension.installMetadata.type})`;
|
|
363481
|
+
${t4("Source:")} ${extension.installMetadata.source} (${t4("Type:")} ${extension.installMetadata.type})`;
|
|
361691
363482
|
if (extension.installMetadata.ref) {
|
|
361692
363483
|
output += `
|
|
361693
|
-
Ref: ${extension.installMetadata.ref}`;
|
|
363484
|
+
${t4("Ref:")} ${extension.installMetadata.ref}`;
|
|
361694
363485
|
}
|
|
361695
363486
|
if (extension.installMetadata.releaseTag) {
|
|
361696
363487
|
output += `
|
|
361697
|
-
Release tag: ${extension.installMetadata.releaseTag}`;
|
|
363488
|
+
${t4("Release tag:")} ${extension.installMetadata.releaseTag}`;
|
|
361698
363489
|
}
|
|
361699
363490
|
}
|
|
361700
363491
|
output += `
|
|
361701
|
-
Enabled (User): ${userEnabled}`;
|
|
363492
|
+
${t4("Enabled (User):")} ${userEnabled}`;
|
|
361702
363493
|
output += `
|
|
361703
|
-
Enabled (Workspace): ${workspaceEnabled}`;
|
|
363494
|
+
${t4("Enabled (Workspace):")} ${workspaceEnabled}`;
|
|
361704
363495
|
if (extension.contextFiles.length > 0) {
|
|
361705
363496
|
output += `
|
|
361706
|
-
Context files
|
|
363497
|
+
${t4("Context files:")}`;
|
|
361707
363498
|
extension.contextFiles.forEach((contextFile) => {
|
|
361708
363499
|
output += `
|
|
361709
363500
|
${contextFile}`;
|
|
@@ -361711,15 +363502,31 @@ function extensionToOutputString(extension, extensionManager, workspaceDir, inli
|
|
|
361711
363502
|
}
|
|
361712
363503
|
if (extension.commands && extension.commands.length > 0) {
|
|
361713
363504
|
output += `
|
|
361714
|
-
Commands
|
|
363505
|
+
${t4("Commands:")}`;
|
|
361715
363506
|
extension.commands.forEach((command2) => {
|
|
361716
363507
|
output += `
|
|
361717
363508
|
/${command2}`;
|
|
361718
363509
|
});
|
|
361719
363510
|
}
|
|
363511
|
+
if (extension.skills && extension.skills.length > 0) {
|
|
363512
|
+
output += `
|
|
363513
|
+
${t4("Skills:")}`;
|
|
363514
|
+
extension.skills.forEach((skill) => {
|
|
363515
|
+
output += `
|
|
363516
|
+
${skill.name}`;
|
|
363517
|
+
});
|
|
363518
|
+
}
|
|
363519
|
+
if (extension.agents && extension.agents.length > 0) {
|
|
363520
|
+
output += `
|
|
363521
|
+
${t4("Agents:")}`;
|
|
363522
|
+
extension.agents.forEach((agent) => {
|
|
363523
|
+
output += `
|
|
363524
|
+
${agent.name}`;
|
|
363525
|
+
});
|
|
363526
|
+
}
|
|
361720
363527
|
if (extension.config.mcpServers) {
|
|
361721
363528
|
output += `
|
|
361722
|
-
MCP servers
|
|
363529
|
+
${t4("MCP servers:")}`;
|
|
361723
363530
|
Object.keys(extension.config.mcpServers).forEach((key) => {
|
|
361724
363531
|
output += `
|
|
361725
363532
|
${key}`;
|
|
@@ -367668,7 +369475,7 @@ __name(getPackageJson, "getPackageJson");
|
|
|
367668
369475
|
// packages/cli/src/utils/version.ts
|
|
367669
369476
|
async function getCliVersion() {
|
|
367670
369477
|
const pkgJson = await getPackageJson();
|
|
367671
|
-
return "0.8.0-preview.
|
|
369478
|
+
return "0.8.0-preview.5";
|
|
367672
369479
|
}
|
|
367673
369480
|
__name(getCliVersion, "getCliVersion");
|
|
367674
369481
|
|
|
@@ -375288,7 +377095,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
|
|
|
375288
377095
|
|
|
375289
377096
|
// packages/cli/src/generated/git-commit.ts
|
|
375290
377097
|
init_esbuild_shims();
|
|
375291
|
-
var GIT_COMMIT_INFO2 = "
|
|
377098
|
+
var GIT_COMMIT_INFO2 = "6f106d9c";
|
|
375292
377099
|
|
|
375293
377100
|
// packages/cli/src/utils/systemInfo.ts
|
|
375294
377101
|
async function getNpmVersion() {
|
|
@@ -377106,7 +378913,8 @@ function parseUiLanguageArg(input) {
|
|
|
377106
378913
|
__name(parseUiLanguageArg, "parseUiLanguageArg");
|
|
377107
378914
|
function formatUiLanguageDisplay(lang) {
|
|
377108
378915
|
const option2 = SUPPORTED_LANGUAGES.find((o3) => o3.code === lang);
|
|
377109
|
-
|
|
378916
|
+
if (!option2) return lang;
|
|
378917
|
+
return option2.nativeName && option2.nativeName !== option2.fullName ? `${option2.nativeName} (${option2.fullName}) [${option2.id}]` : `${option2.fullName} [${option2.id}]`;
|
|
377110
378918
|
}
|
|
377111
378919
|
__name(formatUiLanguageDisplay, "formatUiLanguageDisplay");
|
|
377112
378920
|
async function setUiLanguage(context2, lang) {
|
|
@@ -377216,7 +379024,7 @@ var languageCommand = {
|
|
|
377216
379024
|
messageType: "error",
|
|
377217
379025
|
content: [
|
|
377218
379026
|
t4("Invalid command. Available subcommands:"),
|
|
377219
|
-
` - /language ui [${
|
|
379027
|
+
` - /language ui [${getSupportedLanguageIds()}] - ${t4("Set UI language")}`,
|
|
377220
379028
|
` - /language output <language> - ${t4("Set LLM output language")}`
|
|
377221
379029
|
].join("\n")
|
|
377222
379030
|
};
|
|
@@ -377234,7 +379042,7 @@ var languageCommand = {
|
|
|
377234
379042
|
t4("Current LLM output language: {{lang}}", { lang: outputLangDisplay }),
|
|
377235
379043
|
"",
|
|
377236
379044
|
t4("Available subcommands:"),
|
|
377237
|
-
` /language ui [${
|
|
379045
|
+
` /language ui [${getSupportedLanguageIds()}] - ${t4("Set UI language")}`,
|
|
377238
379046
|
` /language output <language> - ${t4("Set LLM output language")}`
|
|
377239
379047
|
].join("\n")
|
|
377240
379048
|
};
|
|
@@ -377257,12 +379065,12 @@ var languageCommand = {
|
|
|
377257
379065
|
t4("Set UI language"),
|
|
377258
379066
|
"",
|
|
377259
379067
|
t4("Usage: /language ui [{{options}}]", {
|
|
377260
|
-
options:
|
|
379068
|
+
options: getSupportedLanguageIds()
|
|
377261
379069
|
}),
|
|
377262
379070
|
"",
|
|
377263
379071
|
t4("Available options:"),
|
|
377264
379072
|
...SUPPORTED_LANGUAGES.map(
|
|
377265
|
-
(o3) => ` - ${o3.id}: ${
|
|
379073
|
+
(o3) => ` - ${o3.id}: ${o3.nativeName || o3.fullName}`
|
|
377266
379074
|
),
|
|
377267
379075
|
"",
|
|
377268
379076
|
t4(
|
|
@@ -377277,7 +379085,7 @@ var languageCommand = {
|
|
|
377277
379085
|
type: "message",
|
|
377278
379086
|
messageType: "error",
|
|
377279
379087
|
content: t4("Invalid language. Available: {{options}}", {
|
|
377280
|
-
options:
|
|
379088
|
+
options: getSupportedLanguageIds(",")
|
|
377281
379089
|
})
|
|
377282
379090
|
};
|
|
377283
379091
|
}
|
|
@@ -377288,7 +379096,9 @@ var languageCommand = {
|
|
|
377288
379096
|
(lang) => ({
|
|
377289
379097
|
name: lang.id,
|
|
377290
379098
|
get description() {
|
|
377291
|
-
return t4("Set UI language to {{name}}", {
|
|
379099
|
+
return t4("Set UI language to {{name}}", {
|
|
379100
|
+
name: lang.nativeName || lang.fullName
|
|
379101
|
+
});
|
|
377292
379102
|
},
|
|
377293
379103
|
kind: "built-in" /* BUILT_IN */,
|
|
377294
379104
|
action: /* @__PURE__ */ __name(async (context2, args) => {
|
|
@@ -428572,7 +430382,7 @@ var GeminiAgent = class {
|
|
|
428572
430382
|
name: APPROVAL_MODE_INFO[mode].name,
|
|
428573
430383
|
description: APPROVAL_MODE_INFO[mode].description
|
|
428574
430384
|
}));
|
|
428575
|
-
const version2 = "0.8.0-preview.
|
|
430385
|
+
const version2 = "0.8.0-preview.5";
|
|
428576
430386
|
return {
|
|
428577
430387
|
protocolVersion: PROTOCOL_VERSION,
|
|
428578
430388
|
agentInfo: {
|