@rdmind/rdmind 0.2.2-alpha.3 → 0.2.2-alpha.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 +1939 -127
- package/locales/en.js +16 -8
- package/locales/ja.js +886 -0
- package/locales/pt.js +1390 -0
- 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 ProxyAgent4 = 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 = ProxyAgent4;
|
|
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 ProxyAgent4 = 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 ProxyAgent4({ ...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 ProxyAgent4({ ...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 ProxyAgent4 = 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 = ProxyAgent4;
|
|
18912
|
+
module2.exports.EnvHttpProxyAgent = EnvHttpProxyAgent2;
|
|
18913
18913
|
module2.exports.RetryAgent = RetryAgent;
|
|
18914
18914
|
module2.exports.RetryHandler = RetryHandler;
|
|
18915
18915
|
module2.exports.DecoratorHandler = DecoratorHandler;
|
|
@@ -20749,7 +20749,7 @@ var require_dist = __commonJS({
|
|
|
20749
20749
|
var https_1 = __require("https");
|
|
20750
20750
|
__exportStar(require_helpers(), exports2);
|
|
20751
20751
|
var INTERNAL = Symbol("AgentBaseInternalState");
|
|
20752
|
-
var
|
|
20752
|
+
var Agent4 = class extends http7.Agent {
|
|
20753
20753
|
static {
|
|
20754
20754
|
__name(this, "Agent");
|
|
20755
20755
|
}
|
|
@@ -20863,7 +20863,7 @@ var require_dist = __commonJS({
|
|
|
20863
20863
|
}
|
|
20864
20864
|
}
|
|
20865
20865
|
};
|
|
20866
|
-
exports2.Agent =
|
|
20866
|
+
exports2.Agent = Agent4;
|
|
20867
20867
|
}
|
|
20868
20868
|
});
|
|
20869
20869
|
|
|
@@ -105086,8 +105086,8 @@ function readableFromUint8Array(buff) {
|
|
|
105086
105086
|
}
|
|
105087
105087
|
function createHttpAgent(rawUrl, agentOptions) {
|
|
105088
105088
|
const parsedUrl = new URL(rawUrl);
|
|
105089
|
-
const
|
|
105090
|
-
return new
|
|
105089
|
+
const Agent4 = parsedUrl.protocol === "http:" ? http3.Agent : https3.Agent;
|
|
105090
|
+
return new Agent4(agentOptions);
|
|
105091
105091
|
}
|
|
105092
105092
|
var init_http_transport_utils = __esm({
|
|
105093
105093
|
"node_modules/@opentelemetry/otlp-exporter-base/build/esm/transport/http-transport-utils.js"() {
|
|
@@ -141468,7 +141468,7 @@ function detectRuntime() {
|
|
|
141468
141468
|
}
|
|
141469
141469
|
return "unknown";
|
|
141470
141470
|
}
|
|
141471
|
-
function buildRuntimeFetchOptions(sdkType) {
|
|
141471
|
+
function buildRuntimeFetchOptions(sdkType, proxyUrl) {
|
|
141472
141472
|
const runtime = detectRuntime();
|
|
141473
141473
|
switch (runtime) {
|
|
141474
141474
|
case "bun": {
|
|
@@ -141492,17 +141492,14 @@ function buildRuntimeFetchOptions(sdkType) {
|
|
|
141492
141492
|
}
|
|
141493
141493
|
case "node": {
|
|
141494
141494
|
try {
|
|
141495
|
-
const
|
|
141496
|
-
bodyTimeout: 0
|
|
141497
|
-
// Disable to let SDK timeout control total request time
|
|
141498
|
-
});
|
|
141495
|
+
const dispatcher = createDispatcher(proxyUrl);
|
|
141499
141496
|
if (sdkType === "openai") {
|
|
141500
141497
|
return {
|
|
141501
|
-
dispatcher
|
|
141498
|
+
dispatcher
|
|
141502
141499
|
};
|
|
141503
141500
|
} else {
|
|
141504
141501
|
return {
|
|
141505
|
-
httpAgent:
|
|
141502
|
+
httpAgent: dispatcher
|
|
141506
141503
|
};
|
|
141507
141504
|
}
|
|
141508
141505
|
} catch {
|
|
@@ -141515,17 +141512,14 @@ function buildRuntimeFetchOptions(sdkType) {
|
|
|
141515
141512
|
}
|
|
141516
141513
|
default: {
|
|
141517
141514
|
try {
|
|
141518
|
-
const
|
|
141519
|
-
bodyTimeout: 0
|
|
141520
|
-
// Disable to let SDK timeout control total request time
|
|
141521
|
-
});
|
|
141515
|
+
const dispatcher = createDispatcher(proxyUrl);
|
|
141522
141516
|
if (sdkType === "openai") {
|
|
141523
141517
|
return {
|
|
141524
|
-
dispatcher
|
|
141518
|
+
dispatcher
|
|
141525
141519
|
};
|
|
141526
141520
|
} else {
|
|
141527
141521
|
return {
|
|
141528
|
-
httpAgent:
|
|
141522
|
+
httpAgent: dispatcher
|
|
141529
141523
|
};
|
|
141530
141524
|
}
|
|
141531
141525
|
} catch {
|
|
@@ -141538,6 +141532,19 @@ function buildRuntimeFetchOptions(sdkType) {
|
|
|
141538
141532
|
}
|
|
141539
141533
|
}
|
|
141540
141534
|
}
|
|
141535
|
+
function createDispatcher(proxyUrl) {
|
|
141536
|
+
if (proxyUrl) {
|
|
141537
|
+
return new import_undici.ProxyAgent({
|
|
141538
|
+
uri: proxyUrl,
|
|
141539
|
+
headersTimeout: 0,
|
|
141540
|
+
bodyTimeout: 0
|
|
141541
|
+
});
|
|
141542
|
+
}
|
|
141543
|
+
return new import_undici.Agent({
|
|
141544
|
+
headersTimeout: 0,
|
|
141545
|
+
bodyTimeout: 0
|
|
141546
|
+
});
|
|
141547
|
+
}
|
|
141541
141548
|
var import_undici;
|
|
141542
141549
|
var init_runtimeFetchOptions = __esm({
|
|
141543
141550
|
"packages/core/src/utils/runtimeFetchOptions.ts"() {
|
|
@@ -141546,6 +141553,7 @@ var init_runtimeFetchOptions = __esm({
|
|
|
141546
141553
|
import_undici = __toESM(require_undici(), 1);
|
|
141547
141554
|
__name(detectRuntime, "detectRuntime");
|
|
141548
141555
|
__name(buildRuntimeFetchOptions, "buildRuntimeFetchOptions");
|
|
141556
|
+
__name(createDispatcher, "createDispatcher");
|
|
141549
141557
|
}
|
|
141550
141558
|
});
|
|
141551
141559
|
|
|
@@ -141585,7 +141593,10 @@ var init_default = __esm({
|
|
|
141585
141593
|
maxRetries = DEFAULT_MAX_RETRIES
|
|
141586
141594
|
} = this.contentGeneratorConfig;
|
|
141587
141595
|
const defaultHeaders = this.buildHeaders();
|
|
141588
|
-
const fetchOptions = buildRuntimeFetchOptions(
|
|
141596
|
+
const fetchOptions = buildRuntimeFetchOptions(
|
|
141597
|
+
"openai",
|
|
141598
|
+
this.cliConfig.getProxy()
|
|
141599
|
+
);
|
|
141589
141600
|
return new OpenAI({
|
|
141590
141601
|
apiKey,
|
|
141591
141602
|
baseURL: baseUrl,
|
|
@@ -141874,7 +141885,10 @@ var init_dashscope = __esm({
|
|
|
141874
141885
|
maxRetries = DEFAULT_MAX_RETRIES
|
|
141875
141886
|
} = this.contentGeneratorConfig;
|
|
141876
141887
|
const defaultHeaders = this.buildHeaders();
|
|
141877
|
-
const fetchOptions = buildRuntimeFetchOptions(
|
|
141888
|
+
const fetchOptions = buildRuntimeFetchOptions(
|
|
141889
|
+
"openai",
|
|
141890
|
+
this.cliConfig.getProxy()
|
|
141891
|
+
);
|
|
141878
141892
|
return new OpenAI({
|
|
141879
141893
|
apiKey,
|
|
141880
141894
|
baseURL: baseUrl,
|
|
@@ -151658,7 +151672,7 @@ var require_agent2 = __commonJS({
|
|
|
151658
151672
|
console.log("[agentkeepalive:deprecated] %s", message);
|
|
151659
151673
|
}
|
|
151660
151674
|
__name(deprecate6, "deprecate");
|
|
151661
|
-
var
|
|
151675
|
+
var Agent4 = class extends OriginalAgent {
|
|
151662
151676
|
static {
|
|
151663
151677
|
__name(this, "Agent");
|
|
151664
151678
|
}
|
|
@@ -151958,7 +151972,7 @@ var require_agent2 = __commonJS({
|
|
|
151958
151972
|
socket.on("agentRemove", onRemove);
|
|
151959
151973
|
}
|
|
151960
151974
|
__name(installListeners, "installListeners");
|
|
151961
|
-
module2.exports =
|
|
151975
|
+
module2.exports = Agent4;
|
|
151962
151976
|
function inspect3(obj) {
|
|
151963
151977
|
const res = {};
|
|
151964
151978
|
for (const key in obj) {
|
|
@@ -156875,17 +156889,21 @@ var init_anthropicContentGenerator = __esm({
|
|
|
156875
156889
|
init_safeJsonParse();
|
|
156876
156890
|
init_converter2();
|
|
156877
156891
|
init_runtimeFetchOptions();
|
|
156892
|
+
init_constants2();
|
|
156878
156893
|
AnthropicContentGenerator = class {
|
|
156879
156894
|
constructor(contentGeneratorConfig, cliConfig) {
|
|
156880
156895
|
this.contentGeneratorConfig = contentGeneratorConfig;
|
|
156881
156896
|
this.cliConfig = cliConfig;
|
|
156882
156897
|
const defaultHeaders = this.buildHeaders();
|
|
156883
156898
|
const baseURL = contentGeneratorConfig.baseUrl;
|
|
156884
|
-
const runtimeOptions = buildRuntimeFetchOptions(
|
|
156899
|
+
const runtimeOptions = buildRuntimeFetchOptions(
|
|
156900
|
+
"anthropic",
|
|
156901
|
+
this.cliConfig.getProxy()
|
|
156902
|
+
);
|
|
156885
156903
|
this.client = new sdk_default({
|
|
156886
156904
|
apiKey: contentGeneratorConfig.apiKey,
|
|
156887
156905
|
baseURL,
|
|
156888
|
-
timeout: contentGeneratorConfig.timeout,
|
|
156906
|
+
timeout: contentGeneratorConfig.timeout || DEFAULT_TIMEOUT,
|
|
156889
156907
|
maxRetries: contentGeneratorConfig.maxRetries,
|
|
156890
156908
|
defaultHeaders,
|
|
156891
156909
|
...runtimeOptions
|
|
@@ -157359,7 +157377,7 @@ __export(geminiContentGenerator_exports2, {
|
|
|
157359
157377
|
createGeminiContentGenerator: () => createGeminiContentGenerator
|
|
157360
157378
|
});
|
|
157361
157379
|
function createGeminiContentGenerator(config2, gcConfig) {
|
|
157362
|
-
const version2 = "0.2.2-alpha.
|
|
157380
|
+
const version2 = "0.2.2-alpha.5";
|
|
157363
157381
|
const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
|
|
157364
157382
|
const baseHeaders = {
|
|
157365
157383
|
"User-Agent": userAgent2
|
|
@@ -254755,8 +254773,8 @@ var init_git_commit = __esm({
|
|
|
254755
254773
|
"packages/core/src/generated/git-commit.ts"() {
|
|
254756
254774
|
"use strict";
|
|
254757
254775
|
init_esbuild_shims();
|
|
254758
|
-
GIT_COMMIT_INFO = "
|
|
254759
|
-
CLI_VERSION = "0.2.2-alpha.
|
|
254776
|
+
GIT_COMMIT_INFO = "74657a390";
|
|
254777
|
+
CLI_VERSION = "0.2.2-alpha.5";
|
|
254760
254778
|
}
|
|
254761
254779
|
});
|
|
254762
254780
|
|
|
@@ -290123,12 +290141,12 @@ var require_backend = __commonJS({
|
|
|
290123
290141
|
(_console = console).log.apply(_console, ["%cAgent %c".concat(methodName), "color: purple; font-weight: bold;", "font-weight: bold;"].concat(args));
|
|
290124
290142
|
}
|
|
290125
290143
|
}, "debug");
|
|
290126
|
-
var
|
|
290127
|
-
agent_inherits(
|
|
290128
|
-
var _super = agent_createSuper(
|
|
290129
|
-
function
|
|
290144
|
+
var Agent4 = /* @__PURE__ */ function(_EventEmitter) {
|
|
290145
|
+
agent_inherits(Agent5, _EventEmitter);
|
|
290146
|
+
var _super = agent_createSuper(Agent5);
|
|
290147
|
+
function Agent5(bridge) {
|
|
290130
290148
|
var _this;
|
|
290131
|
-
agent_classCallCheck(this,
|
|
290149
|
+
agent_classCallCheck(this, Agent5);
|
|
290132
290150
|
_this = _super.call(this);
|
|
290133
290151
|
agent_defineProperty(agent_assertThisInitialized(_this), "_isProfiling", false);
|
|
290134
290152
|
agent_defineProperty(agent_assertThisInitialized(_this), "_recordChangeDescriptions", false);
|
|
@@ -290528,8 +290546,8 @@ var require_backend = __commonJS({
|
|
|
290528
290546
|
TraceUpdates_initialize(agent_assertThisInitialized(_this));
|
|
290529
290547
|
return _this;
|
|
290530
290548
|
}
|
|
290531
|
-
__name(
|
|
290532
|
-
agent_createClass(
|
|
290549
|
+
__name(Agent5, "Agent");
|
|
290550
|
+
agent_createClass(Agent5, [{
|
|
290533
290551
|
key: "getInstanceAndStyle",
|
|
290534
290552
|
value: /* @__PURE__ */ __name(function getInstanceAndStyle(_ref22) {
|
|
290535
290553
|
var id = _ref22.id, rendererID = _ref22.rendererID;
|
|
@@ -290601,7 +290619,7 @@ var require_backend = __commonJS({
|
|
|
290601
290619
|
return this._rendererInterfaces;
|
|
290602
290620
|
}, "get")
|
|
290603
290621
|
}]);
|
|
290604
|
-
return
|
|
290622
|
+
return Agent5;
|
|
290605
290623
|
}(EventEmitter12);
|
|
290606
290624
|
;
|
|
290607
290625
|
function hook_typeof(obj) {
|
|
@@ -292469,7 +292487,7 @@ var require_backend = __commonJS({
|
|
|
292469
292487
|
if (window.__REACT_DEVTOOLS_COMPONENT_FILTERS__ == null) {
|
|
292470
292488
|
bridge.send("overrideComponentFilters", savedComponentFilters);
|
|
292471
292489
|
}
|
|
292472
|
-
var agent2 = new
|
|
292490
|
+
var agent2 = new Agent4(bridge);
|
|
292473
292491
|
agent2.addListener("shutdown", function() {
|
|
292474
292492
|
hook.emit("shutdown");
|
|
292475
292493
|
});
|
|
@@ -294269,8 +294287,54 @@ var init_trustedFolders = __esm({
|
|
|
294269
294287
|
}
|
|
294270
294288
|
});
|
|
294271
294289
|
|
|
294290
|
+
// packages/cli/src/i18n/languages.ts
|
|
294291
|
+
function getLanguageNameFromLocale(locale) {
|
|
294292
|
+
const lang = SUPPORTED_LANGUAGES.find((l3) => l3.code === locale);
|
|
294293
|
+
return lang?.fullName || "English";
|
|
294294
|
+
}
|
|
294295
|
+
function getLanguageSettingsOptions() {
|
|
294296
|
+
return [
|
|
294297
|
+
{ value: "auto", label: "Auto (detect from system)" },
|
|
294298
|
+
...SUPPORTED_LANGUAGES.map((l3) => ({
|
|
294299
|
+
value: l3.code,
|
|
294300
|
+
label: l3.nativeName ? `${l3.nativeName} (${l3.fullName})` : `${l3.fullName} (${l3.id})`
|
|
294301
|
+
}))
|
|
294302
|
+
];
|
|
294303
|
+
}
|
|
294304
|
+
function getSupportedLanguageIds(separator = "|") {
|
|
294305
|
+
return SUPPORTED_LANGUAGES.map((l3) => l3.id).join(separator);
|
|
294306
|
+
}
|
|
294307
|
+
var SUPPORTED_LANGUAGES;
|
|
294308
|
+
var init_languages = __esm({
|
|
294309
|
+
"packages/cli/src/i18n/languages.ts"() {
|
|
294310
|
+
"use strict";
|
|
294311
|
+
init_esbuild_shims();
|
|
294312
|
+
SUPPORTED_LANGUAGES = [
|
|
294313
|
+
{
|
|
294314
|
+
code: "en",
|
|
294315
|
+
id: "en-US",
|
|
294316
|
+
fullName: "English",
|
|
294317
|
+
nativeName: "English"
|
|
294318
|
+
},
|
|
294319
|
+
{
|
|
294320
|
+
code: "zh",
|
|
294321
|
+
id: "zh-CN",
|
|
294322
|
+
fullName: "Chinese",
|
|
294323
|
+
nativeName: "\u4E2D\u6587"
|
|
294324
|
+
}
|
|
294325
|
+
];
|
|
294326
|
+
__name(getLanguageNameFromLocale, "getLanguageNameFromLocale");
|
|
294327
|
+
__name(getLanguageSettingsOptions, "getLanguageSettingsOptions");
|
|
294328
|
+
__name(getSupportedLanguageIds, "getSupportedLanguageIds");
|
|
294329
|
+
}
|
|
294330
|
+
});
|
|
294331
|
+
|
|
294272
294332
|
// packages/cli/src/config/settingsSchema.ts
|
|
294273
294333
|
function getSettingsSchema() {
|
|
294334
|
+
const schema = SETTINGS_SCHEMA;
|
|
294335
|
+
if (schema["general"]?.properties?.["language"]) {
|
|
294336
|
+
schema["general"].properties["language"].options = getLanguageSettingsOptions();
|
|
294337
|
+
}
|
|
294274
294338
|
return SETTINGS_SCHEMA;
|
|
294275
294339
|
}
|
|
294276
294340
|
var TOGGLE_TYPES, SETTINGS_SCHEMA;
|
|
@@ -294279,6 +294343,7 @@ var init_settingsSchema = __esm({
|
|
|
294279
294343
|
"use strict";
|
|
294280
294344
|
init_esbuild_shims();
|
|
294281
294345
|
init_core5();
|
|
294346
|
+
init_languages();
|
|
294282
294347
|
TOGGLE_TYPES = /* @__PURE__ */ new Set([
|
|
294283
294348
|
"boolean",
|
|
294284
294349
|
"enum"
|
|
@@ -294397,11 +294462,7 @@ var init_settingsSchema = __esm({
|
|
|
294397
294462
|
default: "auto",
|
|
294398
294463
|
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 ~/.rdmind/locales/ (e.g., ~/.rdmind/locales/es.js).',
|
|
294399
294464
|
showInDialog: true,
|
|
294400
|
-
options: [
|
|
294401
|
-
{ value: "auto", label: "Auto (detect from system)" },
|
|
294402
|
-
{ value: "en", label: "English" },
|
|
294403
|
-
{ value: "zh", label: "\u4E2D\u6587 (Chinese)" }
|
|
294404
|
-
]
|
|
294465
|
+
options: []
|
|
294405
294466
|
},
|
|
294406
294467
|
outputLanguage: {
|
|
294407
294468
|
type: "string",
|
|
@@ -294409,7 +294470,7 @@ var init_settingsSchema = __esm({
|
|
|
294409
294470
|
category: "General",
|
|
294410
294471
|
requiresRestart: true,
|
|
294411
294472
|
default: "auto",
|
|
294412
|
-
description: 'The language for LLM output. Use "auto" to detect from system settings, or set a specific language
|
|
294473
|
+
description: 'The language for LLM output. Use "auto" to detect from system settings, or set a specific language.',
|
|
294413
294474
|
showInDialog: true
|
|
294414
294475
|
},
|
|
294415
294476
|
terminalBell: {
|
|
@@ -304604,6 +304665,17 @@ var init_en3 = __esm({
|
|
|
304604
304665
|
"Update all extensions.": "Update all extensions.",
|
|
304605
304666
|
"Either an extension name or --all must be provided": "Either an extension name or --all must be provided",
|
|
304606
304667
|
"Lists installed extensions.": "Lists installed extensions.",
|
|
304668
|
+
"Path:": "Path:",
|
|
304669
|
+
"Source:": "Source:",
|
|
304670
|
+
"Type:": "Type:",
|
|
304671
|
+
"Ref:": "Ref:",
|
|
304672
|
+
"Release tag:": "Release tag:",
|
|
304673
|
+
"Enabled (User):": "Enabled (User):",
|
|
304674
|
+
"Enabled (Workspace):": "Enabled (Workspace):",
|
|
304675
|
+
"Context files:": "Context files:",
|
|
304676
|
+
"Skills:": "Skills:",
|
|
304677
|
+
"Agents:": "Agents:",
|
|
304678
|
+
"MCP servers:": "MCP servers:",
|
|
304607
304679
|
"Link extension failed to install.": "Link extension failed to install.",
|
|
304608
304680
|
'Extension "{{name}}" linked successfully and enabled.': 'Extension "{{name}}" linked successfully and enabled.',
|
|
304609
304681
|
"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.",
|
|
@@ -304662,18 +304734,19 @@ var init_en3 = __esm({
|
|
|
304662
304734
|
// ============================================================================
|
|
304663
304735
|
// Commands - Language
|
|
304664
304736
|
// ============================================================================
|
|
304665
|
-
"Invalid language. Available:
|
|
304737
|
+
"Invalid language. Available: {{options}}": "Invalid language. Available: {{options}}",
|
|
304666
304738
|
"Language subcommands do not accept additional arguments.": "Language subcommands do not accept additional arguments.",
|
|
304667
304739
|
"Current UI language: {{lang}}": "Current UI language: {{lang}}",
|
|
304668
304740
|
"Current LLM output language: {{lang}}": "Current LLM output language: {{lang}}",
|
|
304669
304741
|
"LLM output language not set": "LLM output language not set",
|
|
304670
304742
|
"Set UI language": "Set UI language",
|
|
304671
304743
|
"Set LLM output language": "Set LLM output language",
|
|
304672
|
-
"Usage: /language ui [
|
|
304744
|
+
"Usage: /language ui [{{options}}]": "Usage: /language ui [{{options}}]",
|
|
304673
304745
|
"Usage: /language output <language>": "Usage: /language output <language>",
|
|
304674
304746
|
"Example: /language output \u4E2D\u6587": "Example: /language output \u4E2D\u6587",
|
|
304675
304747
|
"Example: /language output English": "Example: /language output English",
|
|
304676
304748
|
"Example: /language output \u65E5\u672C\u8A9E": "Example: /language output \u65E5\u672C\u8A9E",
|
|
304749
|
+
"Example: /language output Portugu\xEAs": "Example: /language output Portugu\xEAs",
|
|
304677
304750
|
"UI language changed to {{lang}}": "UI language changed to {{lang}}",
|
|
304678
304751
|
"LLM output language set to {{lang}}": "LLM output language set to {{lang}}",
|
|
304679
304752
|
"LLM output language rule file generated at {{path}}": "LLM output language rule file generated at {{path}}",
|
|
@@ -304683,10 +304756,7 @@ var init_en3 = __esm({
|
|
|
304683
304756
|
"Available subcommands:": "Available subcommands:",
|
|
304684
304757
|
"To request additional UI language packs, please open an issue on GitHub.": "To request additional UI language packs, please open an issue on GitHub.",
|
|
304685
304758
|
"Available options:": "Available options:",
|
|
304686
|
-
"
|
|
304687
|
-
" - en-US: English": " - en-US: English",
|
|
304688
|
-
"Set UI language to Simplified Chinese (zh-CN)": "Set UI language to Simplified Chinese (zh-CN)",
|
|
304689
|
-
"Set UI language to English (en-US)": "Set UI language to English (en-US)",
|
|
304759
|
+
"Set UI language to {{name}}": "Set UI language to {{name}}",
|
|
304690
304760
|
// ============================================================================
|
|
304691
304761
|
// Commands - Approval Mode
|
|
304692
304762
|
// ============================================================================
|
|
@@ -305288,6 +305358,1719 @@ var init_en3 = __esm({
|
|
|
305288
305358
|
}
|
|
305289
305359
|
});
|
|
305290
305360
|
|
|
305361
|
+
// packages/cli/src/i18n/locales/ja.js
|
|
305362
|
+
var ja_exports = {};
|
|
305363
|
+
__export(ja_exports, {
|
|
305364
|
+
default: () => ja_default
|
|
305365
|
+
});
|
|
305366
|
+
var ja_default;
|
|
305367
|
+
var init_ja = __esm({
|
|
305368
|
+
"packages/cli/src/i18n/locales/ja.js"() {
|
|
305369
|
+
"use strict";
|
|
305370
|
+
init_esbuild_shims();
|
|
305371
|
+
ja_default = {
|
|
305372
|
+
// ============================================================================
|
|
305373
|
+
// Help / UI Components
|
|
305374
|
+
// ============================================================================
|
|
305375
|
+
"Basics:": "\u57FA\u672C\u64CD\u4F5C:",
|
|
305376
|
+
"Add context": "\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8\u3092\u8FFD\u52A0",
|
|
305377
|
+
"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",
|
|
305378
|
+
"@": "@",
|
|
305379
|
+
"@src/myFile.ts": "@src/myFile.ts",
|
|
305380
|
+
"Shell mode": "\u30B7\u30A7\u30EB\u30E2\u30FC\u30C9",
|
|
305381
|
+
"YOLO mode": "YOLO\u30E2\u30FC\u30C9",
|
|
305382
|
+
"plan mode": "\u30D7\u30E9\u30F3\u30E2\u30FC\u30C9",
|
|
305383
|
+
"auto-accept edits": "\u7DE8\u96C6\u3092\u81EA\u52D5\u627F\u8A8D",
|
|
305384
|
+
"Accepting edits": "\u7DE8\u96C6\u3092\u627F\u8A8D\u4E2D",
|
|
305385
|
+
"(shift + tab to cycle)": "(Shift + Tab \u3067\u5207\u308A\u66FF\u3048)",
|
|
305386
|
+
"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}})",
|
|
305387
|
+
"!": "!",
|
|
305388
|
+
"!npm run start": "!npm run start",
|
|
305389
|
+
"start server": "\u30B5\u30FC\u30D0\u30FC\u3092\u8D77\u52D5",
|
|
305390
|
+
"Commands:": "\u30B3\u30DE\u30F3\u30C9:",
|
|
305391
|
+
"shell command": "\u30B7\u30A7\u30EB\u30B3\u30DE\u30F3\u30C9",
|
|
305392
|
+
"Model Context Protocol command (from external servers)": "Model Context Protocol \u30B3\u30DE\u30F3\u30C9(\u5916\u90E8\u30B5\u30FC\u30D0\u30FC\u304B\u3089)",
|
|
305393
|
+
"Keyboard Shortcuts:": "\u30AD\u30FC\u30DC\u30FC\u30C9\u30B7\u30E7\u30FC\u30C8\u30AB\u30C3\u30C8:",
|
|
305394
|
+
"Jump through words in the input": "\u5165\u529B\u6B04\u306E\u5358\u8A9E\u9593\u3092\u79FB\u52D5",
|
|
305395
|
+
"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",
|
|
305396
|
+
"New line": "\u6539\u884C",
|
|
305397
|
+
"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)",
|
|
305398
|
+
"Clear the screen": "\u753B\u9762\u3092\u30AF\u30EA\u30A2",
|
|
305399
|
+
"Open input in external editor": "\u5916\u90E8\u30A8\u30C7\u30A3\u30BF\u3067\u5165\u529B\u3092\u958B\u304F",
|
|
305400
|
+
"Send message": "\u30E1\u30C3\u30BB\u30FC\u30B8\u3092\u9001\u4FE1",
|
|
305401
|
+
"Initializing...": "\u521D\u671F\u5316\u4E2D...",
|
|
305402
|
+
"Connecting to MCP servers... ({{connected}}/{{total}})": "MCP\u30B5\u30FC\u30D0\u30FC\u306B\u63A5\u7D9A\u4E2D... ({{connected}}/{{total}})",
|
|
305403
|
+
"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)",
|
|
305404
|
+
"Press 'i' for INSERT mode and 'Esc' for NORMAL mode.": "'i' \u3067INSERT\u30E2\u30FC\u30C9\u3001'Esc' \u3067NORMAL\u30E2\u30FC\u30C9",
|
|
305405
|
+
"Cancel operation / Clear input (double press)": "\u64CD\u4F5C\u3092\u30AD\u30E3\u30F3\u30BB\u30EB / \u5165\u529B\u3092\u30AF\u30EA\u30A2(2\u56DE\u62BC\u3057)",
|
|
305406
|
+
"Cycle approval modes": "\u627F\u8A8D\u30E2\u30FC\u30C9\u3092\u5207\u308A\u66FF\u3048",
|
|
305407
|
+
"Cycle through your prompt history": "\u30D7\u30ED\u30F3\u30D7\u30C8\u5C65\u6B74\u3092\u9806\u306B\u8868\u793A",
|
|
305408
|
+
"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",
|
|
305409
|
+
"docs/keyboard-shortcuts.md": "docs/keyboard-shortcuts.md",
|
|
305410
|
+
"for help on Qwen Code": "Qwen Code \u306E\u30D8\u30EB\u30D7",
|
|
305411
|
+
"show version info": "\u30D0\u30FC\u30B8\u30E7\u30F3\u60C5\u5831\u3092\u8868\u793A",
|
|
305412
|
+
"submit a bug report": "\u30D0\u30B0\u30EC\u30DD\u30FC\u30C8\u3092\u9001\u4FE1",
|
|
305413
|
+
"About Qwen Code": "Qwen Code \u306B\u3064\u3044\u3066",
|
|
305414
|
+
// ============================================================================
|
|
305415
|
+
// System Information Fields
|
|
305416
|
+
// ============================================================================
|
|
305417
|
+
"CLI Version": "CLI\u30D0\u30FC\u30B8\u30E7\u30F3",
|
|
305418
|
+
"Git Commit": "Git\u30B3\u30DF\u30C3\u30C8",
|
|
305419
|
+
Model: "\u30E2\u30C7\u30EB",
|
|
305420
|
+
Sandbox: "\u30B5\u30F3\u30C9\u30DC\u30C3\u30AF\u30B9",
|
|
305421
|
+
"OS Platform": "OS\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0",
|
|
305422
|
+
"OS Arch": "OS\u30A2\u30FC\u30AD\u30C6\u30AF\u30C1\u30E3",
|
|
305423
|
+
"OS Release": "OS\u30EA\u30EA\u30FC\u30B9",
|
|
305424
|
+
"Node.js Version": "Node.js \u30D0\u30FC\u30B8\u30E7\u30F3",
|
|
305425
|
+
"NPM Version": "NPM \u30D0\u30FC\u30B8\u30E7\u30F3",
|
|
305426
|
+
"Session ID": "\u30BB\u30C3\u30B7\u30E7\u30F3ID",
|
|
305427
|
+
"Auth Method": "\u8A8D\u8A3C\u65B9\u5F0F",
|
|
305428
|
+
"Base URL": "\u30D9\u30FC\u30B9URL",
|
|
305429
|
+
"Memory Usage": "\u30E1\u30E2\u30EA\u4F7F\u7528\u91CF",
|
|
305430
|
+
"IDE Client": "IDE\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8",
|
|
305431
|
+
// ============================================================================
|
|
305432
|
+
// Commands - General
|
|
305433
|
+
// ============================================================================
|
|
305434
|
+
"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",
|
|
305435
|
+
"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]",
|
|
305436
|
+
"Available Qwen Code CLI tools:": "\u5229\u7528\u53EF\u80FD\u306A Qwen Code CLI \u30C4\u30FC\u30EB:",
|
|
305437
|
+
"No tools available": "\u5229\u7528\u53EF\u80FD\u306A\u30C4\u30FC\u30EB\u306F\u3042\u308A\u307E\u305B\u3093",
|
|
305438
|
+
"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",
|
|
305439
|
+
"View or change the language setting": "\u8A00\u8A9E\u8A2D\u5B9A\u3092\u8868\u793A\u307E\u305F\u306F\u5909\u66F4",
|
|
305440
|
+
"change the theme": "\u30C6\u30FC\u30DE\u3092\u5909\u66F4",
|
|
305441
|
+
"Select Theme": "\u30C6\u30FC\u30DE\u3092\u9078\u629E",
|
|
305442
|
+
Preview: "\u30D7\u30EC\u30D3\u30E5\u30FC",
|
|
305443
|
+
"(Use Enter to select, Tab to configure scope)": "(Enter \u3067\u9078\u629E\u3001Tab \u3067\u30B9\u30B3\u30FC\u30D7\u3092\u8A2D\u5B9A)",
|
|
305444
|
+
"(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)",
|
|
305445
|
+
"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",
|
|
305446
|
+
'Theme "{{themeName}}" not found.': '\u30C6\u30FC\u30DE "{{themeName}}" \u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093',
|
|
305447
|
+
'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',
|
|
305448
|
+
"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",
|
|
305449
|
+
"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",
|
|
305450
|
+
"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",
|
|
305451
|
+
"Configuration not available.": "\u8A2D\u5B9A\u304C\u5229\u7528\u3067\u304D\u307E\u305B\u3093",
|
|
305452
|
+
"change the auth method": "\u8A8D\u8A3C\u65B9\u5F0F\u3092\u5909\u66F4",
|
|
305453
|
+
"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",
|
|
305454
|
+
// ============================================================================
|
|
305455
|
+
// Commands - Agents
|
|
305456
|
+
// ============================================================================
|
|
305457
|
+
"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",
|
|
305458
|
+
"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)",
|
|
305459
|
+
"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",
|
|
305460
|
+
// ============================================================================
|
|
305461
|
+
// Agents - Management Dialog
|
|
305462
|
+
// ============================================================================
|
|
305463
|
+
Agents: "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8",
|
|
305464
|
+
"Choose Action": "\u30A2\u30AF\u30B7\u30E7\u30F3\u3092\u9078\u629E",
|
|
305465
|
+
"Edit {{name}}": "{{name}} \u3092\u7DE8\u96C6",
|
|
305466
|
+
"Edit Tools: {{name}}": "\u30C4\u30FC\u30EB\u3092\u7DE8\u96C6: {{name}}",
|
|
305467
|
+
"Edit Color: {{name}}": "\u8272\u3092\u7DE8\u96C6: {{name}}",
|
|
305468
|
+
"Delete {{name}}": "{{name}} \u3092\u524A\u9664",
|
|
305469
|
+
"Unknown Step": "\u4E0D\u660E\u306A\u30B9\u30C6\u30C3\u30D7",
|
|
305470
|
+
"Esc to close": "Esc \u3067\u9589\u3058\u308B",
|
|
305471
|
+
"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",
|
|
305472
|
+
"Esc to go back": "Esc \u3067\u623B\u308B",
|
|
305473
|
+
"Enter to confirm, Esc to cancel": "Enter \u3067\u78BA\u5B9A\u3001Esc \u3067\u30AD\u30E3\u30F3\u30BB\u30EB",
|
|
305474
|
+
"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",
|
|
305475
|
+
"Invalid step: {{step}}": "\u7121\u52B9\u306A\u30B9\u30C6\u30C3\u30D7: {{step}}",
|
|
305476
|
+
"No subagents found.": "\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
305477
|
+
"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",
|
|
305478
|
+
"(built-in)": "(\u7D44\u307F\u8FBC\u307F)",
|
|
305479
|
+
"(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)",
|
|
305480
|
+
"Project Level ({{path}})": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30EC\u30D9\u30EB ({{path}})",
|
|
305481
|
+
"User Level ({{path}})": "\u30E6\u30FC\u30B6\u30FC\u30EC\u30D9\u30EB ({{path}})",
|
|
305482
|
+
"Built-in Agents": "\u7D44\u307F\u8FBC\u307F\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8",
|
|
305483
|
+
"Using: {{count}} agents": "\u4F7F\u7528\u4E2D: {{count}} \u30A8\u30FC\u30B8\u30A7\u30F3\u30C8",
|
|
305484
|
+
"View Agent": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u8868\u793A",
|
|
305485
|
+
"Edit Agent": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u7DE8\u96C6",
|
|
305486
|
+
"Delete Agent": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u524A\u9664",
|
|
305487
|
+
Back: "\u623B\u308B",
|
|
305488
|
+
"No agent selected": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u304C\u9078\u629E\u3055\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
305489
|
+
"File Path: ": "\u30D5\u30A1\u30A4\u30EB\u30D1\u30B9: ",
|
|
305490
|
+
"Tools: ": "\u30C4\u30FC\u30EB: ",
|
|
305491
|
+
"Color: ": "\u8272: ",
|
|
305492
|
+
"Description:": "\u8AAC\u660E:",
|
|
305493
|
+
"System Prompt:": "\u30B7\u30B9\u30C6\u30E0\u30D7\u30ED\u30F3\u30D7\u30C8:",
|
|
305494
|
+
"Open in editor": "\u30A8\u30C7\u30A3\u30BF\u3067\u958B\u304F",
|
|
305495
|
+
"Edit tools": "\u30C4\u30FC\u30EB\u3092\u7DE8\u96C6",
|
|
305496
|
+
"Edit color": "\u8272\u3092\u7DE8\u96C6",
|
|
305497
|
+
"\u274C Error:": "\u274C \u30A8\u30E9\u30FC:",
|
|
305498
|
+
'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?',
|
|
305499
|
+
"Project Level (.qwen/agents/)": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30EC\u30D9\u30EB (.qwen/agents/)",
|
|
305500
|
+
"User Level (~/.qwen/agents/)": "\u30E6\u30FC\u30B6\u30FC\u30EC\u30D9\u30EB (~/.qwen/agents/)",
|
|
305501
|
+
"\u2705 Subagent Created Successfully!": "\u2705 \u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306E\u4F5C\u6210\u306B\u6210\u529F\u3057\u307E\u3057\u305F!",
|
|
305502
|
+
'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',
|
|
305503
|
+
"Name: ": "\u540D\u524D: ",
|
|
305504
|
+
"Location: ": "\u5834\u6240: ",
|
|
305505
|
+
"\u274C Error saving subagent:": "\u274C \u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u4FDD\u5B58\u30A8\u30E9\u30FC:",
|
|
305506
|
+
"Warnings:": "\u8B66\u544A:",
|
|
305507
|
+
"Step {{n}}: Choose Location": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u5834\u6240\u3092\u9078\u629E",
|
|
305508
|
+
"Step {{n}}: Choose Generation Method": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u4F5C\u6210\u65B9\u6CD5\u3092\u9078\u629E",
|
|
305509
|
+
"Generate with Qwen Code (Recommended)": "Qwen Code \u3067\u751F\u6210(\u63A8\u5968)",
|
|
305510
|
+
"Manual Creation": "\u624B\u52D5\u4F5C\u6210",
|
|
305511
|
+
"Generating subagent configuration...": "\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u8A2D\u5B9A\u3092\u751F\u6210\u4E2D...",
|
|
305512
|
+
"Failed to generate subagent: {{error}}": "\u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306E\u751F\u6210\u306B\u5931\u6557: {{error}}",
|
|
305513
|
+
"Step {{n}}: Describe Your Subagent": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u8AAC\u660E",
|
|
305514
|
+
"Step {{n}}: Enter Subagent Name": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u30B5\u30D6\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u540D\u3092\u5165\u529B",
|
|
305515
|
+
"Step {{n}}: Enter System Prompt": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u30B7\u30B9\u30C6\u30E0\u30D7\u30ED\u30F3\u30D7\u30C8\u3092\u5165\u529B",
|
|
305516
|
+
"Step {{n}}: Enter Description": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u8AAC\u660E\u3092\u5165\u529B",
|
|
305517
|
+
"Step {{n}}: Select Tools": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u30C4\u30FC\u30EB\u3092\u9078\u629E",
|
|
305518
|
+
"All Tools (Default)": "\u5168\u30C4\u30FC\u30EB(\u30C7\u30D5\u30A9\u30EB\u30C8)",
|
|
305519
|
+
"All Tools": "\u5168\u30C4\u30FC\u30EB",
|
|
305520
|
+
"Read-only Tools": "\u8AAD\u307F\u53D6\u308A\u5C02\u7528\u30C4\u30FC\u30EB",
|
|
305521
|
+
"Read & Edit Tools": "\u8AAD\u307F\u53D6\u308A\uFF06\u7DE8\u96C6\u30C4\u30FC\u30EB",
|
|
305522
|
+
"Read & Edit & Execution Tools": "\u8AAD\u307F\u53D6\u308A\uFF06\u7DE8\u96C6\uFF06\u5B9F\u884C\u30C4\u30FC\u30EB",
|
|
305523
|
+
"Selected tools:": "\u9078\u629E\u3055\u308C\u305F\u30C4\u30FC\u30EB:",
|
|
305524
|
+
"Step {{n}}: Choose Background Color": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u80CC\u666F\u8272\u3092\u9078\u629E",
|
|
305525
|
+
"Step {{n}}: Confirm and Save": "\u30B9\u30C6\u30C3\u30D7 {{n}}: \u78BA\u8A8D\u3057\u3066\u4FDD\u5B58",
|
|
305526
|
+
"Esc to cancel": "Esc \u3067\u30AD\u30E3\u30F3\u30BB\u30EB",
|
|
305527
|
+
cancel: "\u30AD\u30E3\u30F3\u30BB\u30EB",
|
|
305528
|
+
"go back": "\u623B\u308B",
|
|
305529
|
+
"\u2191\u2193 to navigate, ": "\u2191\u2193 \u3067\u79FB\u52D5\u3001",
|
|
305530
|
+
"Name cannot be empty.": "\u540D\u524D\u306F\u7A7A\u306B\u3067\u304D\u307E\u305B\u3093",
|
|
305531
|
+
"System prompt cannot be empty.": "\u30B7\u30B9\u30C6\u30E0\u30D7\u30ED\u30F3\u30D7\u30C8\u306F\u7A7A\u306B\u3067\u304D\u307E\u305B\u3093",
|
|
305532
|
+
"Description cannot be empty.": "\u8AAC\u660E\u306F\u7A7A\u306B\u3067\u304D\u307E\u305B\u3093",
|
|
305533
|
+
"Failed to launch editor: {{error}}": "\u30A8\u30C7\u30A3\u30BF\u306E\u8D77\u52D5\u306B\u5931\u6557: {{error}}",
|
|
305534
|
+
"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}}",
|
|
305535
|
+
'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',
|
|
305536
|
+
'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',
|
|
305537
|
+
'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',
|
|
305538
|
+
"Description is over {{length}} characters": "\u8AAC\u660E\u304C {{length}} \u6587\u5B57\u3092\u8D85\u3048\u3066\u3044\u307E\u3059",
|
|
305539
|
+
"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",
|
|
305540
|
+
"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)",
|
|
305541
|
+
"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...",
|
|
305542
|
+
"All tools selected, including MCP tools": "MCP\u30C4\u30FC\u30EB\u3092\u542B\u3080\u3059\u3079\u3066\u306E\u30C4\u30FC\u30EB\u3092\u9078\u629E",
|
|
305543
|
+
"Read-only tools:": "\u8AAD\u307F\u53D6\u308A\u5C02\u7528\u30C4\u30FC\u30EB:",
|
|
305544
|
+
"Edit tools:": "\u7DE8\u96C6\u30C4\u30FC\u30EB:",
|
|
305545
|
+
"Execution tools:": "\u5B9F\u884C\u30C4\u30FC\u30EB:",
|
|
305546
|
+
"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",
|
|
305547
|
+
"Press Enter to continue, {{navigation}}Esc to {{action}}": "Enter \u3067\u7D9A\u884C\u3001{{navigation}}Esc \u3067{{action}}",
|
|
305548
|
+
"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",
|
|
305549
|
+
"e.g., Code Reviewer": "\u4F8B: \u30B3\u30FC\u30C9\u30EC\u30D3\u30E5\u30A2\u30FC",
|
|
305550
|
+
"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)",
|
|
305551
|
+
"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...",
|
|
305552
|
+
"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",
|
|
305553
|
+
"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",
|
|
305554
|
+
// Commands - General (continued)
|
|
305555
|
+
"(Use Enter to select{{tabText}})": "(Enter \u3067\u9078\u629E{{tabText}})",
|
|
305556
|
+
", Tab to change focus": "\u3001Tab \u3067\u30D5\u30A9\u30FC\u30AB\u30B9\u5909\u66F4",
|
|
305557
|
+
"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",
|
|
305558
|
+
'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',
|
|
305559
|
+
"View and edit Qwen Code settings": "Qwen Code \u306E\u8A2D\u5B9A\u3092\u8868\u793A\u30FB\u7DE8\u96C6",
|
|
305560
|
+
Settings: "\u8A2D\u5B9A",
|
|
305561
|
+
"Vim Mode": "Vim \u30E2\u30FC\u30C9",
|
|
305562
|
+
"Disable Auto Update": "\u81EA\u52D5\u66F4\u65B0\u3092\u7121\u52B9\u5316",
|
|
305563
|
+
Language: "\u8A00\u8A9E",
|
|
305564
|
+
"Output Format": "\u51FA\u529B\u5F62\u5F0F",
|
|
305565
|
+
"Hide Tips": "\u30D2\u30F3\u30C8\u3092\u975E\u8868\u793A",
|
|
305566
|
+
"Hide Banner": "\u30D0\u30CA\u30FC\u3092\u975E\u8868\u793A",
|
|
305567
|
+
"Show Memory Usage": "\u30E1\u30E2\u30EA\u4F7F\u7528\u91CF\u3092\u8868\u793A",
|
|
305568
|
+
"Show Line Numbers": "\u884C\u756A\u53F7\u3092\u8868\u793A",
|
|
305569
|
+
Text: "\u30C6\u30AD\u30B9\u30C8",
|
|
305570
|
+
JSON: "JSON",
|
|
305571
|
+
Plan: "\u30D7\u30E9\u30F3",
|
|
305572
|
+
Default: "\u30C7\u30D5\u30A9\u30EB\u30C8",
|
|
305573
|
+
"Auto Edit": "\u81EA\u52D5\u7DE8\u96C6",
|
|
305574
|
+
YOLO: "YOLO",
|
|
305575
|
+
"toggle vim mode on/off": "Vim \u30E2\u30FC\u30C9\u306E\u30AA\u30F3/\u30AA\u30D5\u3092\u5207\u308A\u66FF\u3048",
|
|
305576
|
+
"exit the cli": "CLI\u3092\u7D42\u4E86",
|
|
305577
|
+
Timeout: "\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8",
|
|
305578
|
+
"Max Retries": "\u6700\u5927\u30EA\u30C8\u30E9\u30A4\u56DE\u6570",
|
|
305579
|
+
"Auto Accept": "\u81EA\u52D5\u627F\u8A8D",
|
|
305580
|
+
"Folder Trust": "\u30D5\u30A9\u30EB\u30C0\u306E\u4FE1\u983C",
|
|
305581
|
+
"Enable Prompt Completion": "\u30D7\u30ED\u30F3\u30D7\u30C8\u88DC\u5B8C\u3092\u6709\u52B9\u5316",
|
|
305582
|
+
"Debug Keystroke Logging": "\u30AD\u30FC\u30B9\u30C8\u30ED\u30FC\u30AF\u306E\u30C7\u30D0\u30C3\u30B0\u30ED\u30B0",
|
|
305583
|
+
"Hide Window Title": "\u30A6\u30A3\u30F3\u30C9\u30A6\u30BF\u30A4\u30C8\u30EB\u3092\u975E\u8868\u793A",
|
|
305584
|
+
"Show Status in Title": "\u30BF\u30A4\u30C8\u30EB\u306B\u30B9\u30C6\u30FC\u30BF\u30B9\u3092\u8868\u793A",
|
|
305585
|
+
"Hide Context Summary": "\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8\u8981\u7D04\u3092\u975E\u8868\u793A",
|
|
305586
|
+
"Hide CWD": "\u4F5C\u696D\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u975E\u8868\u793A",
|
|
305587
|
+
"Hide Sandbox Status": "\u30B5\u30F3\u30C9\u30DC\u30C3\u30AF\u30B9\u72B6\u614B\u3092\u975E\u8868\u793A",
|
|
305588
|
+
"Hide Model Info": "\u30E2\u30C7\u30EB\u60C5\u5831\u3092\u975E\u8868\u793A",
|
|
305589
|
+
"Hide Footer": "\u30D5\u30C3\u30BF\u30FC\u3092\u975E\u8868\u793A",
|
|
305590
|
+
"Show Citations": "\u5F15\u7528\u3092\u8868\u793A",
|
|
305591
|
+
"Custom Witty Phrases": "\u30AB\u30B9\u30BF\u30E0\u30A6\u30A3\u30C3\u30C8\u30D5\u30EC\u30FC\u30BA",
|
|
305592
|
+
"Enable Welcome Back": "\u30A6\u30A7\u30EB\u30AB\u30E0\u30D0\u30C3\u30AF\u6A5F\u80FD\u3092\u6709\u52B9\u5316",
|
|
305593
|
+
"Disable Loading Phrases": "\u30ED\u30FC\u30C7\u30A3\u30F3\u30B0\u30D5\u30EC\u30FC\u30BA\u3092\u7121\u52B9\u5316",
|
|
305594
|
+
"Screen Reader Mode": "\u30B9\u30AF\u30EA\u30FC\u30F3\u30EA\u30FC\u30C0\u30FC\u30E2\u30FC\u30C9",
|
|
305595
|
+
"IDE Mode": "IDE\u30E2\u30FC\u30C9",
|
|
305596
|
+
"Max Session Turns": "\u6700\u5927\u30BB\u30C3\u30B7\u30E7\u30F3\u30BF\u30FC\u30F3\u6570",
|
|
305597
|
+
"Skip Next Speaker Check": "\u6B21\u306E\u767A\u8A00\u8005\u30C1\u30A7\u30C3\u30AF\u3092\u30B9\u30AD\u30C3\u30D7",
|
|
305598
|
+
"Skip Loop Detection": "\u30EB\u30FC\u30D7\u691C\u51FA\u3092\u30B9\u30AD\u30C3\u30D7",
|
|
305599
|
+
"Skip Startup Context": "\u8D77\u52D5\u6642\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8\u3092\u30B9\u30AD\u30C3\u30D7",
|
|
305600
|
+
"Enable OpenAI Logging": "OpenAI \u30ED\u30B0\u3092\u6709\u52B9\u5316",
|
|
305601
|
+
"OpenAI Logging Directory": "OpenAI \u30ED\u30B0\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA",
|
|
305602
|
+
"Disable Cache Control": "\u30AD\u30E3\u30C3\u30B7\u30E5\u5236\u5FA1\u3092\u7121\u52B9\u5316",
|
|
305603
|
+
"Memory Discovery Max Dirs": "\u30E1\u30E2\u30EA\u691C\u51FA\u306E\u6700\u5927\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u6570",
|
|
305604
|
+
"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",
|
|
305605
|
+
"Respect .gitignore": ".gitignore \u3092\u512A\u5148",
|
|
305606
|
+
"Respect .qwenignore": ".qwenignore \u3092\u512A\u5148",
|
|
305607
|
+
"Enable Recursive File Search": "\u518D\u5E30\u7684\u30D5\u30A1\u30A4\u30EB\u691C\u7D22\u3092\u6709\u52B9\u5316",
|
|
305608
|
+
"Disable Fuzzy Search": "\u30D5\u30A1\u30B8\u30FC\u691C\u7D22\u3092\u7121\u52B9\u5316",
|
|
305609
|
+
"Enable Interactive Shell": "\u5BFE\u8A71\u578B\u30B7\u30A7\u30EB\u3092\u6709\u52B9\u5316",
|
|
305610
|
+
"Show Color": "\u8272\u3092\u8868\u793A",
|
|
305611
|
+
"Use Ripgrep": "Ripgrep \u3092\u4F7F\u7528",
|
|
305612
|
+
"Use Builtin Ripgrep": "\u7D44\u307F\u8FBC\u307F Ripgrep \u3092\u4F7F\u7528",
|
|
305613
|
+
"Enable Tool Output Truncation": "\u30C4\u30FC\u30EB\u51FA\u529B\u306E\u5207\u308A\u8A70\u3081\u3092\u6709\u52B9\u5316",
|
|
305614
|
+
"Tool Output Truncation Threshold": "\u30C4\u30FC\u30EB\u51FA\u529B\u5207\u308A\u8A70\u3081\u306E\u3057\u304D\u3044\u5024",
|
|
305615
|
+
"Tool Output Truncation Lines": "\u30C4\u30FC\u30EB\u51FA\u529B\u306E\u5207\u308A\u8A70\u3081\u884C\u6570",
|
|
305616
|
+
"Vision Model Preview": "\u30D3\u30B8\u30E7\u30F3\u30E2\u30C7\u30EB\u30D7\u30EC\u30D3\u30E5\u30FC",
|
|
305617
|
+
"Tool Schema Compliance": "\u30C4\u30FC\u30EB\u30B9\u30AD\u30FC\u30DE\u6E96\u62E0",
|
|
305618
|
+
"Auto (detect from system)": "\u81EA\u52D5(\u30B7\u30B9\u30C6\u30E0\u304B\u3089\u691C\u51FA)",
|
|
305619
|
+
"check session stats. Usage: /stats [model|tools]": "\u30BB\u30C3\u30B7\u30E7\u30F3\u7D71\u8A08\u3092\u78BA\u8A8D\u3002\u4F7F\u3044\u65B9: /stats [model|tools]",
|
|
305620
|
+
"Show model-specific usage statistics.": "\u30E2\u30C7\u30EB\u5225\u306E\u4F7F\u7528\u7D71\u8A08\u3092\u8868\u793A",
|
|
305621
|
+
"Show tool-specific usage statistics.": "\u30C4\u30FC\u30EB\u5225\u306E\u4F7F\u7528\u7D71\u8A08\u3092\u8868\u793A",
|
|
305622
|
+
"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",
|
|
305623
|
+
"Manage workspace directories": "\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u7BA1\u7406",
|
|
305624
|
+
"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",
|
|
305625
|
+
"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",
|
|
305626
|
+
"set external editor preference": "\u5916\u90E8\u30A8\u30C7\u30A3\u30BF\u306E\u8A2D\u5B9A",
|
|
305627
|
+
"Manage extensions": "\u62E1\u5F35\u6A5F\u80FD\u3092\u7BA1\u7406",
|
|
305628
|
+
"List active extensions": "\u6709\u52B9\u306A\u62E1\u5F35\u6A5F\u80FD\u3092\u4E00\u89A7\u8868\u793A",
|
|
305629
|
+
"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",
|
|
305630
|
+
"manage IDE integration": "IDE\u9023\u643A\u3092\u7BA1\u7406",
|
|
305631
|
+
"check status of IDE integration": "IDE\u9023\u643A\u306E\u72B6\u614B\u3092\u78BA\u8A8D",
|
|
305632
|
+
"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",
|
|
305633
|
+
"enable IDE integration": "IDE\u9023\u643A\u3092\u6709\u52B9\u5316",
|
|
305634
|
+
"disable IDE integration": "IDE\u9023\u643A\u3092\u7121\u52B9\u5316",
|
|
305635
|
+
"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",
|
|
305636
|
+
"Set up GitHub Actions": "GitHub Actions \u3092\u8A2D\u5B9A",
|
|
305637
|
+
"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)",
|
|
305638
|
+
"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",
|
|
305639
|
+
"Failed to configure terminal: {{error}}": "\u30BF\u30FC\u30DF\u30CA\u30EB\u306E\u8A2D\u5B9A\u306B\u5931\u6557: {{error}}",
|
|
305640
|
+
"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",
|
|
305641
|
+
"{{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",
|
|
305642
|
+
"File: {{file}}": "\u30D5\u30A1\u30A4\u30EB: {{file}}",
|
|
305643
|
+
"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",
|
|
305644
|
+
"Error: {{error}}": "\u30A8\u30E9\u30FC: {{error}}",
|
|
305645
|
+
"Shift+Enter binding already exists": "Shift+Enter \u30D0\u30A4\u30F3\u30C9\u306F\u65E2\u306B\u5B58\u5728\u3057\u307E\u3059",
|
|
305646
|
+
"Ctrl+Enter binding already exists": "Ctrl+Enter \u30D0\u30A4\u30F3\u30C9\u306F\u65E2\u306B\u5B58\u5728\u3057\u307E\u3059",
|
|
305647
|
+
"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",
|
|
305648
|
+
"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}}",
|
|
305649
|
+
"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",
|
|
305650
|
+
"Modified: {{file}}": "\u5909\u66F4\u6E08\u307F: {{file}}",
|
|
305651
|
+
"{{terminalName}} keybindings already configured.": "{{terminalName}} \u306E\u30AD\u30FC\u30D0\u30A4\u30F3\u30C9\u306F\u65E2\u306B\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u3059",
|
|
305652
|
+
"Failed to configure {{terminalName}}.": "{{terminalName}} \u306E\u8A2D\u5B9A\u306B\u5931\u6557\u3057\u307E\u3057\u305F",
|
|
305653
|
+
"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",
|
|
305654
|
+
"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",
|
|
305655
|
+
'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',
|
|
305656
|
+
// Commands - Language
|
|
305657
|
+
"Invalid language. Available: {{options}}": "\u7121\u52B9\u306A\u8A00\u8A9E\u3067\u3059\u3002\u4F7F\u7528\u53EF\u80FD: {{options}}",
|
|
305658
|
+
"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",
|
|
305659
|
+
"Current UI language: {{lang}}": "\u73FE\u5728\u306EUI\u8A00\u8A9E: {{lang}}",
|
|
305660
|
+
"Current LLM output language: {{lang}}": "\u73FE\u5728\u306ELLM\u51FA\u529B\u8A00\u8A9E: {{lang}}",
|
|
305661
|
+
"LLM output language not set": "LLM\u51FA\u529B\u8A00\u8A9E\u304C\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
305662
|
+
"Set UI language": "UI\u8A00\u8A9E\u3092\u8A2D\u5B9A",
|
|
305663
|
+
"Set LLM output language": "LLM\u51FA\u529B\u8A00\u8A9E\u3092\u8A2D\u5B9A",
|
|
305664
|
+
"Usage: /language ui [{{options}}]": "\u4F7F\u3044\u65B9: /language ui [{{options}}]",
|
|
305665
|
+
"Usage: /language output <language>": "\u4F7F\u3044\u65B9: /language output <\u8A00\u8A9E>",
|
|
305666
|
+
"Example: /language output \u4E2D\u6587": "\u4F8B: /language output \u4E2D\u6587",
|
|
305667
|
+
"Example: /language output English": "\u4F8B: /language output English",
|
|
305668
|
+
"Example: /language output \u65E5\u672C\u8A9E": "\u4F8B: /language output \u65E5\u672C\u8A9E",
|
|
305669
|
+
"Example: /language output Portugu\xEAs": "\u4F8B: /language output Portugu\xEAs",
|
|
305670
|
+
"UI language changed to {{lang}}": "UI\u8A00\u8A9E\u3092 {{lang}} \u306B\u5909\u66F4\u3057\u307E\u3057\u305F",
|
|
305671
|
+
"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",
|
|
305672
|
+
"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",
|
|
305673
|
+
"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}}",
|
|
305674
|
+
"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:",
|
|
305675
|
+
"Available subcommands:": "\u4F7F\u7528\u53EF\u80FD\u306A\u30B5\u30D6\u30B3\u30DE\u30F3\u30C9:",
|
|
305676
|
+
"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",
|
|
305677
|
+
"Available options:": "\u4F7F\u7528\u53EF\u80FD\u306A\u30AA\u30D7\u30B7\u30E7\u30F3:",
|
|
305678
|
+
"Set UI language to {{name}}": "UI\u8A00\u8A9E\u3092 {{name}} \u306B\u8A2D\u5B9A",
|
|
305679
|
+
// Approval Mode
|
|
305680
|
+
"Approval Mode": "\u627F\u8A8D\u30E2\u30FC\u30C9",
|
|
305681
|
+
"Current approval mode: {{mode}}": "\u73FE\u5728\u306E\u627F\u8A8D\u30E2\u30FC\u30C9: {{mode}}",
|
|
305682
|
+
"Available approval modes:": "\u5229\u7528\u53EF\u80FD\u306A\u627F\u8A8D\u30E2\u30FC\u30C9:",
|
|
305683
|
+
"Approval mode changed to: {{mode}}": "\u627F\u8A8D\u30E2\u30FC\u30C9\u3092\u5909\u66F4\u3057\u307E\u3057\u305F: {{mode}}",
|
|
305684
|
+
"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)",
|
|
305685
|
+
"Usage: /approval-mode <mode> [--session|--user|--project]": "\u4F7F\u3044\u65B9: /approval-mode <\u30E2\u30FC\u30C9> [--session|--user|--project]",
|
|
305686
|
+
"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",
|
|
305687
|
+
"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",
|
|
305688
|
+
"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",
|
|
305689
|
+
"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",
|
|
305690
|
+
"YOLO mode - Automatically approve all tools": "YOLO\u30E2\u30FC\u30C9 - \u3059\u3079\u3066\u306E\u30C4\u30FC\u30EB\u3092\u81EA\u52D5\u627F\u8A8D",
|
|
305691
|
+
"{{mode}} mode": "{{mode}}\u30E2\u30FC\u30C9",
|
|
305692
|
+
"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",
|
|
305693
|
+
"Failed to save approval mode: {{error}}": "\u627F\u8A8D\u30E2\u30FC\u30C9\u306E\u4FDD\u5B58\u306B\u5931\u6557: {{error}}",
|
|
305694
|
+
"Failed to change approval mode: {{error}}": "\u627F\u8A8D\u30E2\u30FC\u30C9\u306E\u5909\u66F4\u306B\u5931\u6557: {{error}}",
|
|
305695
|
+
"Apply to current session only (temporary)": "\u73FE\u5728\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u306E\u307F\u306B\u9069\u7528(\u4E00\u6642\u7684)",
|
|
305696
|
+
"Persist for this project/workspace": "\u3053\u306E\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8/\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u306B\u4FDD\u5B58",
|
|
305697
|
+
"Persist for this user on this machine": "\u3053\u306E\u30DE\u30B7\u30F3\u306E\u3053\u306E\u30E6\u30FC\u30B6\u30FC\u306B\u4FDD\u5B58",
|
|
305698
|
+
"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",
|
|
305699
|
+
"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",
|
|
305700
|
+
"Automatically approve file edits": "\u30D5\u30A1\u30A4\u30EB\u7DE8\u96C6\u3092\u81EA\u52D5\u627F\u8A8D",
|
|
305701
|
+
"Automatically approve all tools": "\u3059\u3079\u3066\u306E\u30C4\u30FC\u30EB\u3092\u81EA\u52D5\u627F\u8A8D",
|
|
305702
|
+
"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",
|
|
305703
|
+
"(Use Enter to select, Tab to change focus)": "(Enter \u3067\u9078\u629E\u3001Tab \u3067\u30D5\u30A9\u30FC\u30AB\u30B9\u5909\u66F4)",
|
|
305704
|
+
"Apply To": "\u9069\u7528\u5148",
|
|
305705
|
+
"User Settings": "\u30E6\u30FC\u30B6\u30FC\u8A2D\u5B9A",
|
|
305706
|
+
"Workspace Settings": "\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u8A2D\u5B9A",
|
|
305707
|
+
// Memory
|
|
305708
|
+
"Commands for interacting with memory.": "\u30E1\u30E2\u30EA\u64CD\u4F5C\u306E\u30B3\u30DE\u30F3\u30C9",
|
|
305709
|
+
"Show the current memory contents.": "\u73FE\u5728\u306E\u30E1\u30E2\u30EA\u5185\u5BB9\u3092\u8868\u793A",
|
|
305710
|
+
"Show project-level memory contents.": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30EC\u30D9\u30EB\u306E\u30E1\u30E2\u30EA\u5185\u5BB9\u3092\u8868\u793A",
|
|
305711
|
+
"Show global memory contents.": "\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u5185\u5BB9\u3092\u8868\u793A",
|
|
305712
|
+
"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",
|
|
305713
|
+
"Add content to global memory.": "\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u306B\u30B3\u30F3\u30C6\u30F3\u30C4\u3092\u8FFD\u52A0",
|
|
305714
|
+
"Refresh the memory from the source.": "\u30BD\u30FC\u30B9\u304B\u3089\u30E1\u30E2\u30EA\u3092\u66F4\u65B0",
|
|
305715
|
+
"Usage: /memory add --project <text to remember>": "\u4F7F\u3044\u65B9: /memory add --project <\u8A18\u61B6\u3059\u308B\u30C6\u30AD\u30B9\u30C8>",
|
|
305716
|
+
"Usage: /memory add --global <text to remember>": "\u4F7F\u3044\u65B9: /memory add --global <\u8A18\u61B6\u3059\u308B\u30C6\u30AD\u30B9\u30C8>",
|
|
305717
|
+
'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}}"',
|
|
305718
|
+
'Attempting to save to global memory: "{{text}}"': '\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u3078\u306E\u4FDD\u5B58\u3092\u8A66\u884C\u4E2D: "{{text}}"',
|
|
305719
|
+
"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:",
|
|
305720
|
+
"Memory is currently empty.": "\u30E1\u30E2\u30EA\u306F\u73FE\u5728\u7A7A\u3067\u3059",
|
|
305721
|
+
"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",
|
|
305722
|
+
"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",
|
|
305723
|
+
"Global memory is currently empty.": "\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u306F\u73FE\u5728\u7A7A\u3067\u3059",
|
|
305724
|
+
"Global memory content:\n\n---\n{{content}}\n---": "\u30B0\u30ED\u30FC\u30D0\u30EB\u30E1\u30E2\u30EA\u5185\u5BB9:\n\n---\n{{content}}\n---",
|
|
305725
|
+
"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---",
|
|
305726
|
+
"Project memory is currently empty.": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30E1\u30E2\u30EA\u306F\u73FE\u5728\u7A7A\u3067\u3059",
|
|
305727
|
+
"Refreshing memory from source files...": "\u30BD\u30FC\u30B9\u30D5\u30A1\u30A4\u30EB\u304B\u3089\u30E1\u30E2\u30EA\u3092\u66F4\u65B0\u4E2D...",
|
|
305728
|
+
"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",
|
|
305729
|
+
"Usage: /memory add [--global|--project] <text to remember>": "\u4F7F\u3044\u65B9: /memory add [--global|--project] <\u8A18\u61B6\u3059\u308B\u30C6\u30AD\u30B9\u30C8>",
|
|
305730
|
+
'Attempting to save to memory {{scope}}: "{{fact}}"': '\u30E1\u30E2\u30EA {{scope}} \u3078\u306E\u4FDD\u5B58\u3092\u8A66\u884C\u4E2D: "{{fact}}"',
|
|
305731
|
+
// MCP
|
|
305732
|
+
"Authenticate with an OAuth-enabled MCP server": "OAuth\u5BFE\u5FDC\u306EMCP\u30B5\u30FC\u30D0\u30FC\u3067\u8A8D\u8A3C",
|
|
305733
|
+
"List configured MCP servers and tools": "\u8A2D\u5B9A\u6E08\u307F\u306EMCP\u30B5\u30FC\u30D0\u30FC\u3068\u30C4\u30FC\u30EB\u3092\u4E00\u89A7\u8868\u793A",
|
|
305734
|
+
"No MCP servers configured.": "MCP\u30B5\u30FC\u30D0\u30FC\u304C\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
305735
|
+
"Restarts MCP servers.": "MCP\u30B5\u30FC\u30D0\u30FC\u3092\u518D\u8D77\u52D5\u3057\u307E\u3059",
|
|
305736
|
+
"Config not loaded.": "\u8A2D\u5B9A\u304C\u8AAD\u307F\u8FBC\u307E\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
305737
|
+
"Could not retrieve tool registry.": "\u30C4\u30FC\u30EB\u30EC\u30B8\u30B9\u30C8\u30EA\u3092\u53D6\u5F97\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F",
|
|
305738
|
+
"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",
|
|
305739
|
+
"MCP servers with OAuth authentication:": "OAuth\u8A8D\u8A3C\u306EMCP\u30B5\u30FC\u30D0\u30FC:",
|
|
305740
|
+
"Use /mcp auth <server-name> to authenticate.": "\u8A8D\u8A3C\u3059\u308B\u306B\u306F /mcp auth <\u30B5\u30FC\u30D0\u30FC\u540D> \u3092\u4F7F\u7528",
|
|
305741
|
+
"MCP server '{{name}}' not found.": "MCP\u30B5\u30FC\u30D0\u30FC '{{name}}' \u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
305742
|
+
"Successfully authenticated and refreshed tools for '{{name}}'.": "'{{name}}' \u306E\u8A8D\u8A3C\u3068\u30C4\u30FC\u30EB\u66F4\u65B0\u306B\u6210\u529F\u3057\u307E\u3057\u305F",
|
|
305743
|
+
"Failed to authenticate with MCP server '{{name}}': {{error}}": "MCP\u30B5\u30FC\u30D0\u30FC '{{name}}' \u3067\u306E\u8A8D\u8A3C\u306B\u5931\u6557: {{error}}",
|
|
305744
|
+
"Re-discovering tools from '{{name}}'...": "'{{name}}' \u304B\u3089\u30C4\u30FC\u30EB\u3092\u518D\u691C\u51FA\u4E2D...",
|
|
305745
|
+
"Configured MCP servers:": "\u8A2D\u5B9A\u6E08\u307FMCP\u30B5\u30FC\u30D0\u30FC:",
|
|
305746
|
+
Ready: "\u6E96\u5099\u5B8C\u4E86",
|
|
305747
|
+
Disconnected: "\u5207\u65AD",
|
|
305748
|
+
"{{count}} tool": "{{count}} \u30C4\u30FC\u30EB",
|
|
305749
|
+
"{{count}} tools": "{{count}} \u30C4\u30FC\u30EB",
|
|
305750
|
+
"Restarting MCP servers...": "MCP\u30B5\u30FC\u30D0\u30FC\u3092\u518D\u8D77\u52D5\u4E2D...",
|
|
305751
|
+
// Chat
|
|
305752
|
+
"Manage conversation history.": "\u4F1A\u8A71\u5C65\u6B74\u3092\u7BA1\u7406\u3057\u307E\u3059",
|
|
305753
|
+
"List saved conversation checkpoints": "\u4FDD\u5B58\u3055\u308C\u305F\u4F1A\u8A71\u30C1\u30A7\u30C3\u30AF\u30DD\u30A4\u30F3\u30C8\u3092\u4E00\u89A7\u8868\u793A",
|
|
305754
|
+
"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",
|
|
305755
|
+
"List of saved conversations:": "\u4FDD\u5B58\u3055\u308C\u305F\u4F1A\u8A71\u306E\u4E00\u89A7:",
|
|
305756
|
+
"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",
|
|
305757
|
+
"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>",
|
|
305758
|
+
"Missing tag. Usage: /chat save <tag>": "\u30BF\u30B0\u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059\u3002\u4F7F\u3044\u65B9: /chat save <\u30BF\u30B0>",
|
|
305759
|
+
"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>",
|
|
305760
|
+
"Missing tag. Usage: /chat delete <tag>": "\u30BF\u30B0\u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059\u3002\u4F7F\u3044\u65B9: /chat delete <\u30BF\u30B0>",
|
|
305761
|
+
"Conversation checkpoint '{{tag}}' has been deleted.": "\u4F1A\u8A71\u30C1\u30A7\u30C3\u30AF\u30DD\u30A4\u30F3\u30C8 '{{tag}}' \u3092\u524A\u9664\u3057\u307E\u3057\u305F",
|
|
305762
|
+
"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",
|
|
305763
|
+
"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>",
|
|
305764
|
+
"Missing tag. Usage: /chat resume <tag>": "\u30BF\u30B0\u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059\u3002\u4F7F\u3044\u65B9: /chat resume <\u30BF\u30B0>",
|
|
305765
|
+
"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",
|
|
305766
|
+
"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?",
|
|
305767
|
+
"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",
|
|
305768
|
+
"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",
|
|
305769
|
+
"No conversation found to save.": "\u4FDD\u5B58\u3059\u308B\u4F1A\u8A71\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
305770
|
+
"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",
|
|
305771
|
+
"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",
|
|
305772
|
+
"Error sharing conversation: {{error}}": "\u4F1A\u8A71\u306E\u5171\u6709\u4E2D\u306B\u30A8\u30E9\u30FC: {{error}}",
|
|
305773
|
+
"Conversation shared to {{filePath}}": "\u4F1A\u8A71\u3092 {{filePath}} \u306B\u5171\u6709\u3057\u307E\u3057\u305F",
|
|
305774
|
+
"No conversation found to share.": "\u5171\u6709\u3059\u308B\u4F1A\u8A71\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
305775
|
+
"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>",
|
|
305776
|
+
// Summary
|
|
305777
|
+
"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",
|
|
305778
|
+
"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",
|
|
305779
|
+
"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",
|
|
305780
|
+
"No conversation found to summarize.": "\u8981\u7D04\u3059\u308B\u4F1A\u8A71\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
305781
|
+
"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}}",
|
|
305782
|
+
"Saved project summary to {{filePathForDisplay}}.": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30B5\u30DE\u30EA\u30FC\u3092 {{filePathForDisplay}} \u306B\u4FDD\u5B58\u3057\u307E\u3057\u305F",
|
|
305783
|
+
"Saving project summary...": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30B5\u30DE\u30EA\u30FC\u3092\u4FDD\u5B58\u4E2D...",
|
|
305784
|
+
"Generating project summary...": "\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30B5\u30DE\u30EA\u30FC\u3092\u751F\u6210\u4E2D...",
|
|
305785
|
+
"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",
|
|
305786
|
+
// Model
|
|
305787
|
+
"Switch the model for this session": "\u3053\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u306E\u30E2\u30C7\u30EB\u3092\u5207\u308A\u66FF\u3048",
|
|
305788
|
+
"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",
|
|
305789
|
+
"Authentication type not available.": "\u8A8D\u8A3C\u30BF\u30A4\u30D7\u304C\u5229\u7528\u3067\u304D\u307E\u305B\u3093",
|
|
305790
|
+
"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",
|
|
305791
|
+
// Clear
|
|
305792
|
+
"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",
|
|
305793
|
+
"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",
|
|
305794
|
+
// Compress
|
|
305795
|
+
"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",
|
|
305796
|
+
"Failed to compress chat history.": "\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u306E\u5727\u7E2E\u306B\u5931\u6557\u3057\u307E\u3057\u305F",
|
|
305797
|
+
"Failed to compress chat history: {{error}}": "\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u306E\u5727\u7E2E\u306B\u5931\u6557: {{error}}",
|
|
305798
|
+
"Compressing chat history": "\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u3092\u5727\u7E2E\u4E2D",
|
|
305799
|
+
"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",
|
|
305800
|
+
"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",
|
|
305801
|
+
"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",
|
|
305802
|
+
"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",
|
|
305803
|
+
"Chat history is already compressed.": "\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u306F\u65E2\u306B\u5727\u7E2E\u3055\u308C\u3066\u3044\u307E\u3059",
|
|
305804
|
+
// Directory
|
|
305805
|
+
"Configuration is not available.": "\u8A2D\u5B9A\u304C\u5229\u7528\u3067\u304D\u307E\u305B\u3093",
|
|
305806
|
+
"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",
|
|
305807
|
+
"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",
|
|
305808
|
+
"Error adding '{{path}}': {{error}}": "'{{path}}' \u306E\u8FFD\u52A0\u4E2D\u306B\u30A8\u30E9\u30FC: {{error}}",
|
|
305809
|
+
"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}}",
|
|
305810
|
+
"Error refreshing memory: {{error}}": "\u30E1\u30E2\u30EA\u306E\u66F4\u65B0\u4E2D\u306B\u30A8\u30E9\u30FC: {{error}}",
|
|
305811
|
+
"Successfully added directories:\n- {{directories}}": "\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u6B63\u5E38\u306B\u8FFD\u52A0\u3057\u307E\u3057\u305F:\n- {{directories}}",
|
|
305812
|
+
"Current workspace directories:\n{{directories}}": "\u73FE\u5728\u306E\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA:\n{{directories}}",
|
|
305813
|
+
// Docs
|
|
305814
|
+
"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}}",
|
|
305815
|
+
"Opening documentation in your browser: {{url}}": " \u30D6\u30E9\u30A6\u30B6\u3067\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8\u3092\u958B\u304D\u307E\u3057\u305F: {{url}}",
|
|
305816
|
+
// Dialogs - Tool Confirmation
|
|
305817
|
+
"Do you want to proceed?": "\u7D9A\u884C\u3057\u307E\u3059\u304B?",
|
|
305818
|
+
"Yes, allow once": "\u306F\u3044(\u4ECA\u56DE\u306E\u307F\u8A31\u53EF)",
|
|
305819
|
+
"Allow always": "\u5E38\u306B\u8A31\u53EF\u3059\u308B",
|
|
305820
|
+
No: "\u3044\u3044\u3048",
|
|
305821
|
+
"No (esc)": "\u3044\u3044\u3048 (Esc)",
|
|
305822
|
+
"Yes, allow always for this session": "\u306F\u3044\u3001\u3053\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u3067\u5E38\u306B\u8A31\u53EF",
|
|
305823
|
+
"Modify in progress:": "\u5909\u66F4\u4E2D:",
|
|
305824
|
+
"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",
|
|
305825
|
+
"Apply this change?": "\u3053\u306E\u5909\u66F4\u3092\u9069\u7528\u3057\u307E\u3059\u304B?",
|
|
305826
|
+
"Yes, allow always": "\u306F\u3044\u3001\u5E38\u306B\u8A31\u53EF",
|
|
305827
|
+
"Modify with external editor": "\u5916\u90E8\u30A8\u30C7\u30A3\u30BF\u3067\u7DE8\u96C6",
|
|
305828
|
+
"No, suggest changes (esc)": "\u3044\u3044\u3048\u3001\u5909\u66F4\u3092\u63D0\u6848 (Esc)",
|
|
305829
|
+
"Allow execution of: '{{command}}'?": "'{{command}}' \u306E\u5B9F\u884C\u3092\u8A31\u53EF\u3057\u307E\u3059\u304B?",
|
|
305830
|
+
"Yes, allow always ...": "\u306F\u3044\u3001\u5E38\u306B\u8A31\u53EF...",
|
|
305831
|
+
"Yes, and auto-accept edits": "\u306F\u3044\u3001\u7DE8\u96C6\u3092\u81EA\u52D5\u627F\u8A8D",
|
|
305832
|
+
"Yes, and manually approve edits": "\u306F\u3044\u3001\u7DE8\u96C6\u3092\u624B\u52D5\u627F\u8A8D",
|
|
305833
|
+
"No, keep planning (esc)": "\u3044\u3044\u3048\u3001\u8A08\u753B\u3092\u7D9A\u3051\u308B (Esc)",
|
|
305834
|
+
"URLs to fetch:": "\u53D6\u5F97\u3059\u308BURL:",
|
|
305835
|
+
"MCP Server: {{server}}": "MCP\u30B5\u30FC\u30D0\u30FC: {{server}}",
|
|
305836
|
+
"Tool: {{tool}}": "\u30C4\u30FC\u30EB: {{tool}}",
|
|
305837
|
+
'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?',
|
|
305838
|
+
'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',
|
|
305839
|
+
'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',
|
|
305840
|
+
// Dialogs - Shell Confirmation
|
|
305841
|
+
"Shell Command Execution": "\u30B7\u30A7\u30EB\u30B3\u30DE\u30F3\u30C9\u5B9F\u884C",
|
|
305842
|
+
"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:",
|
|
305843
|
+
// Dialogs - Pro Quota
|
|
305844
|
+
"Pro quota limit reached for {{model}}.": "{{model}} \u306EPro\u30AF\u30A9\u30FC\u30BF\u4E0A\u9650\u306B\u9054\u3057\u307E\u3057\u305F",
|
|
305845
|
+
"Change auth (executes the /auth command)": "\u8A8D\u8A3C\u3092\u5909\u66F4(/auth \u30B3\u30DE\u30F3\u30C9\u3092\u5B9F\u884C)",
|
|
305846
|
+
"Continue with {{model}}": "{{model}} \u3067\u7D9A\u884C",
|
|
305847
|
+
// Dialogs - Welcome Back
|
|
305848
|
+
"Current Plan:": "\u73FE\u5728\u306E\u30D7\u30E9\u30F3:",
|
|
305849
|
+
"Progress: {{done}}/{{total}} tasks completed": "\u9032\u6357: {{done}}/{{total}} \u30BF\u30B9\u30AF\u5B8C\u4E86",
|
|
305850
|
+
", {{inProgress}} in progress": "\u3001{{inProgress}} \u9032\u884C\u4E2D",
|
|
305851
|
+
"Pending Tasks:": "\u4FDD\u7559\u4E2D\u306E\u30BF\u30B9\u30AF:",
|
|
305852
|
+
"What would you like to do?": "\u4F55\u3092\u3057\u307E\u3059\u304B?",
|
|
305853
|
+
"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:",
|
|
305854
|
+
"Start new chat session": "\u65B0\u3057\u3044\u30C1\u30E3\u30C3\u30C8\u30BB\u30C3\u30B7\u30E7\u30F3\u3092\u958B\u59CB",
|
|
305855
|
+
"Continue previous conversation": "\u524D\u56DE\u306E\u4F1A\u8A71\u3092\u7D9A\u884C",
|
|
305856
|
+
"\u{1F44B} Welcome back! (Last updated: {{timeAgo}})": "\u{1F44B} \u304A\u304B\u3048\u308A\u306A\u3055\u3044!(\u6700\u7D42\u66F4\u65B0: {{timeAgo}})",
|
|
305857
|
+
"\u{1F3AF} Overall Goal:": "\u{1F3AF} \u5168\u4F53\u76EE\u6A19:",
|
|
305858
|
+
// Dialogs - Auth
|
|
305859
|
+
"Get started": "\u59CB\u3081\u308B",
|
|
305860
|
+
"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:",
|
|
305861
|
+
"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",
|
|
305862
|
+
"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",
|
|
305863
|
+
"(Use Enter to Set Auth)": "(Enter \u3067\u8A8D\u8A3C\u3092\u8A2D\u5B9A)",
|
|
305864
|
+
"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",
|
|
305865
|
+
"Qwen OAuth": "Qwen OAuth",
|
|
305866
|
+
OpenAI: "OpenAI",
|
|
305867
|
+
"Failed to login. Message: {{message}}": "\u30ED\u30B0\u30A4\u30F3\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002\u30E1\u30C3\u30BB\u30FC\u30B8: {{message}}",
|
|
305868
|
+
"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",
|
|
305869
|
+
"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",
|
|
305870
|
+
"Qwen OAuth authentication cancelled.": "Qwen OAuth\u8A8D\u8A3C\u304C\u30AD\u30E3\u30F3\u30BB\u30EB\u3055\u308C\u307E\u3057\u305F",
|
|
305871
|
+
"Qwen OAuth Authentication": "Qwen OAuth\u8A8D\u8A3C",
|
|
305872
|
+
"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:",
|
|
305873
|
+
"Or scan the QR code below:": "\u307E\u305F\u306F\u4EE5\u4E0B\u306EQR\u30B3\u30FC\u30C9\u3092\u30B9\u30AD\u30E3\u30F3:",
|
|
305874
|
+
"Waiting for authorization": "\u8A8D\u8A3C\u3092\u5F85\u3063\u3066\u3044\u307E\u3059",
|
|
305875
|
+
"Time remaining:": "\u6B8B\u308A\u6642\u9593:",
|
|
305876
|
+
"(Press ESC or CTRL+C to cancel)": "(ESC \u307E\u305F\u306F CTRL+C \u3067\u30AD\u30E3\u30F3\u30BB\u30EB)",
|
|
305877
|
+
"Qwen OAuth Authentication Timeout": "Qwen OAuth\u8A8D\u8A3C\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8",
|
|
305878
|
+
"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",
|
|
305879
|
+
"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",
|
|
305880
|
+
"Waiting for Qwen OAuth authentication...": "Qwen OAuth\u8A8D\u8A3C\u3092\u5F85\u3063\u3066\u3044\u307E\u3059...",
|
|
305881
|
+
"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",
|
|
305882
|
+
"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",
|
|
305883
|
+
"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)",
|
|
305884
|
+
"Failed to authenticate. Message: {{message}}": "\u8A8D\u8A3C\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002\u30E1\u30C3\u30BB\u30FC\u30B8: {{message}}",
|
|
305885
|
+
"Authenticated successfully with {{authType}} credentials.": "{{authType}} \u8A8D\u8A3C\u60C5\u5831\u3067\u6B63\u5E38\u306B\u8A8D\u8A3C\u3055\u308C\u307E\u3057\u305F",
|
|
305886
|
+
'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}}',
|
|
305887
|
+
"OpenAI Configuration Required": "OpenAI\u8A2D\u5B9A\u304C\u5FC5\u8981\u3067\u3059",
|
|
305888
|
+
"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",
|
|
305889
|
+
"API Key:": "API\u30AD\u30FC:",
|
|
305890
|
+
"Invalid credentials: {{errorMessage}}": "\u7121\u52B9\u306A\u8A8D\u8A3C\u60C5\u5831: {{errorMessage}}",
|
|
305891
|
+
"Failed to validate credentials": "\u8A8D\u8A3C\u60C5\u5831\u306E\u691C\u8A3C\u306B\u5931\u6557\u3057\u307E\u3057\u305F",
|
|
305892
|
+
"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",
|
|
305893
|
+
// Dialogs - Model
|
|
305894
|
+
"Select Model": "\u30E2\u30C7\u30EB\u3092\u9078\u629E",
|
|
305895
|
+
"(Press Esc to close)": "(Esc \u3067\u9589\u3058\u308B)",
|
|
305896
|
+
"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)",
|
|
305897
|
+
"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)",
|
|
305898
|
+
// Dialogs - Permissions
|
|
305899
|
+
"Manage folder trust settings": "\u30D5\u30A9\u30EB\u30C0\u4FE1\u983C\u8A2D\u5B9A\u3092\u7BA1\u7406",
|
|
305900
|
+
// Status Bar
|
|
305901
|
+
"Using:": "\u4F7F\u7528\u4E2D:",
|
|
305902
|
+
"{{count}} open file": "{{count}} \u500B\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u3044\u3066\u3044\u307E\u3059",
|
|
305903
|
+
"{{count}} open files": "{{count}} \u500B\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u3044\u3066\u3044\u307E\u3059",
|
|
305904
|
+
"(ctrl+g to view)": "(Ctrl+G \u3067\u8868\u793A)",
|
|
305905
|
+
"{{count}} {{name}} file": "{{count}} {{name}} \u30D5\u30A1\u30A4\u30EB",
|
|
305906
|
+
"{{count}} {{name}} files": "{{count}} {{name}} \u30D5\u30A1\u30A4\u30EB",
|
|
305907
|
+
"{{count}} MCP server": "{{count}} MCP\u30B5\u30FC\u30D0\u30FC",
|
|
305908
|
+
"{{count}} MCP servers": "{{count}} MCP\u30B5\u30FC\u30D0\u30FC",
|
|
305909
|
+
"{{count}} Blocked": "{{count}} \u30D6\u30ED\u30C3\u30AF",
|
|
305910
|
+
"(ctrl+t to view)": "(Ctrl+T \u3067\u8868\u793A)",
|
|
305911
|
+
"(ctrl+t to toggle)": "(Ctrl+T \u3067\u5207\u308A\u66FF\u3048)",
|
|
305912
|
+
"Press Ctrl+C again to exit.": "Ctrl+C \u3092\u3082\u3046\u4E00\u5EA6\u62BC\u3059\u3068\u7D42\u4E86\u3057\u307E\u3059",
|
|
305913
|
+
"Press Ctrl+D again to exit.": "Ctrl+D \u3092\u3082\u3046\u4E00\u5EA6\u62BC\u3059\u3068\u7D42\u4E86\u3057\u307E\u3059",
|
|
305914
|
+
"Press Esc again to clear.": "Esc \u3092\u3082\u3046\u4E00\u5EA6\u62BC\u3059\u3068\u30AF\u30EA\u30A2\u3057\u307E\u3059",
|
|
305915
|
+
// MCP Status
|
|
305916
|
+
"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:",
|
|
305917
|
+
"or use the cli /docs command": "\u307E\u305F\u306F CLI \u306E /docs \u30B3\u30DE\u30F3\u30C9\u3092\u4F7F\u7528",
|
|
305918
|
+
"\u23F3 MCP servers are starting up ({{count}} initializing)...": "\u23F3 MCP\u30B5\u30FC\u30D0\u30FC\u3092\u8D77\u52D5\u4E2D({{count}} \u521D\u671F\u5316\u4E2D)...",
|
|
305919
|
+
"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",
|
|
305920
|
+
"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)",
|
|
305921
|
+
"{{count}} prompt": "{{count}} \u30D7\u30ED\u30F3\u30D7\u30C8",
|
|
305922
|
+
"{{count}} prompts": "{{count}} \u30D7\u30ED\u30F3\u30D7\u30C8",
|
|
305923
|
+
"(from {{extensionName}})": "({{extensionName}} \u304B\u3089)",
|
|
305924
|
+
OAuth: "OAuth",
|
|
305925
|
+
"OAuth expired": "OAuth \u671F\u9650\u5207\u308C",
|
|
305926
|
+
"OAuth not authenticated": "OAuth \u672A\u8A8D\u8A3C",
|
|
305927
|
+
"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",
|
|
305928
|
+
"{{count}} tools cached": "{{count}} \u30C4\u30FC\u30EB(\u30AD\u30E3\u30C3\u30B7\u30E5\u6E08\u307F)",
|
|
305929
|
+
"Tools:": "\u30C4\u30FC\u30EB:",
|
|
305930
|
+
"Parameters:": "\u30D1\u30E9\u30E1\u30FC\u30BF:",
|
|
305931
|
+
"Prompts:": "\u30D7\u30ED\u30F3\u30D7\u30C8:",
|
|
305932
|
+
Blocked: "\u30D6\u30ED\u30C3\u30AF",
|
|
305933
|
+
"\u{1F4A1} Tips:": "\u{1F4A1} \u30D2\u30F3\u30C8:",
|
|
305934
|
+
Use: "\u4F7F\u7528",
|
|
305935
|
+
"to show server and tool descriptions": "\u30B5\u30FC\u30D0\u30FC\u3068\u30C4\u30FC\u30EB\u306E\u8AAC\u660E\u3092\u8868\u793A",
|
|
305936
|
+
"to show tool parameter schemas": "\u30C4\u30FC\u30EB\u30D1\u30E9\u30E1\u30FC\u30BF\u30B9\u30AD\u30FC\u30DE\u3092\u8868\u793A",
|
|
305937
|
+
"to hide descriptions": "\u8AAC\u660E\u3092\u975E\u8868\u793A",
|
|
305938
|
+
"to authenticate with OAuth-enabled servers": "OAuth\u5BFE\u5FDC\u30B5\u30FC\u30D0\u30FC\u3067\u8A8D\u8A3C",
|
|
305939
|
+
Press: "\u62BC\u3059",
|
|
305940
|
+
"to toggle tool descriptions on/off": "\u30C4\u30FC\u30EB\u8AAC\u660E\u306E\u8868\u793A/\u975E\u8868\u793A\u3092\u5207\u308A\u66FF\u3048",
|
|
305941
|
+
"Starting OAuth authentication for MCP server '{{name}}'...": "MCP\u30B5\u30FC\u30D0\u30FC '{{name}}' \u306EOAuth\u8A8D\u8A3C\u3092\u958B\u59CB\u4E2D...",
|
|
305942
|
+
// Startup Tips
|
|
305943
|
+
"Tips for getting started:": "\u59CB\u3081\u308B\u305F\u3081\u306E\u30D2\u30F3\u30C8:",
|
|
305944
|
+
"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",
|
|
305945
|
+
"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",
|
|
305946
|
+
"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",
|
|
305947
|
+
"for more information.": "\u8A73\u7D30\u60C5\u5831\u3092\u78BA\u8A8D\u3067\u304D\u307E\u3059",
|
|
305948
|
+
// Exit Screen / Stats
|
|
305949
|
+
"Agent powering down. Goodbye!": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u7D42\u4E86\u3057\u307E\u3059\u3002\u3055\u3088\u3046\u306A\u3089!",
|
|
305950
|
+
"To continue this session, run": "\u3053\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u3092\u7D9A\u884C\u3059\u308B\u306B\u306F\u3001\u6B21\u3092\u5B9F\u884C:",
|
|
305951
|
+
"Interaction Summary": "\u30A4\u30F3\u30BF\u30E9\u30AF\u30B7\u30E7\u30F3\u6982\u8981",
|
|
305952
|
+
"Session ID:": "\u30BB\u30C3\u30B7\u30E7\u30F3ID:",
|
|
305953
|
+
"Tool Calls:": "\u30C4\u30FC\u30EB\u547C\u3073\u51FA\u3057:",
|
|
305954
|
+
"Success Rate:": "\u6210\u529F\u7387:",
|
|
305955
|
+
"User Agreement:": "\u30E6\u30FC\u30B6\u30FC\u540C\u610F:",
|
|
305956
|
+
reviewed: "\u30EC\u30D3\u30E5\u30FC\u6E08\u307F",
|
|
305957
|
+
"Code Changes:": "\u30B3\u30FC\u30C9\u5909\u66F4:",
|
|
305958
|
+
Performance: "\u30D1\u30D5\u30A9\u30FC\u30DE\u30F3\u30B9",
|
|
305959
|
+
"Wall Time:": "\u7D4C\u904E\u6642\u9593:",
|
|
305960
|
+
"Agent Active:": "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u7A3C\u50CD\u6642\u9593:",
|
|
305961
|
+
"API Time:": "API\u6642\u9593:",
|
|
305962
|
+
"Tool Time:": "\u30C4\u30FC\u30EB\u6642\u9593:",
|
|
305963
|
+
"Session Stats": "\u30BB\u30C3\u30B7\u30E7\u30F3\u7D71\u8A08",
|
|
305964
|
+
"Model Usage": "\u30E2\u30C7\u30EB\u4F7F\u7528\u91CF",
|
|
305965
|
+
Reqs: "\u30EA\u30AF\u30A8\u30B9\u30C8",
|
|
305966
|
+
"Input Tokens": "\u5165\u529B\u30C8\u30FC\u30AF\u30F3",
|
|
305967
|
+
"Output Tokens": "\u51FA\u529B\u30C8\u30FC\u30AF\u30F3",
|
|
305968
|
+
"Savings Highlight:": "\u7BC0\u7D04\u30CF\u30A4\u30E9\u30A4\u30C8:",
|
|
305969
|
+
"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",
|
|
305970
|
+
"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",
|
|
305971
|
+
"Model Stats For Nerds": "\u30DE\u30CB\u30A2\u5411\u3051\u30E2\u30C7\u30EB\u7D71\u8A08",
|
|
305972
|
+
"Tool Stats For Nerds": "\u30DE\u30CB\u30A2\u5411\u3051\u30C4\u30FC\u30EB\u7D71\u8A08",
|
|
305973
|
+
Metric: "\u30E1\u30C8\u30EA\u30C3\u30AF",
|
|
305974
|
+
API: "API",
|
|
305975
|
+
Requests: "\u30EA\u30AF\u30A8\u30B9\u30C8",
|
|
305976
|
+
Errors: "\u30A8\u30E9\u30FC",
|
|
305977
|
+
"Avg Latency": "\u5E73\u5747\u30EC\u30A4\u30C6\u30F3\u30B7",
|
|
305978
|
+
Tokens: "\u30C8\u30FC\u30AF\u30F3",
|
|
305979
|
+
Total: "\u5408\u8A08",
|
|
305980
|
+
Prompt: "\u30D7\u30ED\u30F3\u30D7\u30C8",
|
|
305981
|
+
Cached: "\u30AD\u30E3\u30C3\u30B7\u30E5",
|
|
305982
|
+
Thoughts: "\u601D\u8003",
|
|
305983
|
+
Tool: "\u30C4\u30FC\u30EB",
|
|
305984
|
+
Output: "\u51FA\u529B",
|
|
305985
|
+
"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",
|
|
305986
|
+
"Tool Name": "\u30C4\u30FC\u30EB\u540D",
|
|
305987
|
+
Calls: "\u547C\u3073\u51FA\u3057",
|
|
305988
|
+
"Success Rate": "\u6210\u529F\u7387",
|
|
305989
|
+
"Avg Duration": "\u5E73\u5747\u6642\u9593",
|
|
305990
|
+
"User Decision Summary": "\u30E6\u30FC\u30B6\u30FC\u6C7A\u5B9A\u30B5\u30DE\u30EA\u30FC",
|
|
305991
|
+
"Total Reviewed Suggestions:": "\u7DCF\u30EC\u30D3\u30E5\u30FC\u63D0\u6848\u6570:",
|
|
305992
|
+
" \xBB Accepted:": " \xBB \u627F\u8A8D:",
|
|
305993
|
+
" \xBB Rejected:": " \xBB \u5374\u4E0B:",
|
|
305994
|
+
" \xBB Modified:": " \xBB \u5909\u66F4:",
|
|
305995
|
+
" Overall Agreement Rate:": " \u5168\u4F53\u627F\u8A8D\u7387:",
|
|
305996
|
+
"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",
|
|
305997
|
+
"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",
|
|
305998
|
+
// Loading
|
|
305999
|
+
"Waiting for user confirmation...": "\u30E6\u30FC\u30B6\u30FC\u306E\u78BA\u8A8D\u3092\u5F85\u3063\u3066\u3044\u307E\u3059...",
|
|
306000
|
+
"(esc to cancel, {{time}})": "(Esc \u3067\u30AD\u30E3\u30F3\u30BB\u30EB\u3001{{time}})",
|
|
306001
|
+
// Witty Loading Phrases
|
|
306002
|
+
WITTY_LOADING_PHRASES: [
|
|
306003
|
+
"\u904B\u4EFB\u305B\u3067\u691C\u7D22\u4E2D...",
|
|
306004
|
+
"\u4E2D\u306E\u4EBA\u304C\u30BF\u30A4\u30D4\u30F3\u30B0\u4E2D...",
|
|
306005
|
+
"\u30ED\u30B8\u30C3\u30AF\u3092\u6700\u9069\u5316\u4E2D...",
|
|
306006
|
+
"\u96FB\u5B50\u306E\u6570\u3092\u78BA\u8A8D\u4E2D...",
|
|
306007
|
+
"\u5B87\u5B99\u306E\u30D0\u30B0\u3092\u30C1\u30A7\u30C3\u30AF\u4E2D...",
|
|
306008
|
+
"\u5927\u91CF\u306E0\u30681\u3092\u30B3\u30F3\u30D1\u30A4\u30EB\u4E2D...",
|
|
306009
|
+
"HDD\u3068\u601D\u3044\u51FA\u3092\u30C7\u30D5\u30E9\u30B0\u4E2D...",
|
|
306010
|
+
"\u30D3\u30C3\u30C8\u3092\u3053\u3063\u305D\u308A\u5165\u308C\u66FF\u3048\u4E2D...",
|
|
306011
|
+
"\u30CB\u30E5\u30FC\u30ED\u30F3\u306E\u63A5\u7D9A\u3092\u518D\u69CB\u7BC9\u4E2D...",
|
|
306012
|
+
"\u3069\u3053\u304B\u306B\u884C\u3063\u305F\u30BB\u30DF\u30B3\u30ED\u30F3\u3092\u635C\u7D22\u4E2D...",
|
|
306013
|
+
"\u30D5\u30E9\u30C3\u30AF\u30B9\u30AD\u30E3\u30D1\u30B7\u30BF\u3092\u8ABF\u6574\u4E2D...",
|
|
306014
|
+
"\u30D5\u30A9\u30FC\u30B9\u3068\u4EA4\u611F\u4E2D...",
|
|
306015
|
+
"\u30A2\u30EB\u30B4\u30EA\u30BA\u30E0\u3092\u30C1\u30E5\u30FC\u30CB\u30F3\u30B0\u4E2D...",
|
|
306016
|
+
"\u767D\u3044\u30A6\u30B5\u30AE\u3092\u8FFD\u8DE1\u4E2D...",
|
|
306017
|
+
"\u30AB\u30BB\u30C3\u30C8\u30D5\u30FC\u30D5\u30FC\u4E2D...",
|
|
306018
|
+
"\u30ED\u30FC\u30C7\u30A3\u30F3\u30B0\u30E1\u30C3\u30BB\u30FC\u30B8\u3092\u8003\u3048\u4E2D...",
|
|
306019
|
+
"\u307B\u307C\u5B8C\u4E86...\u591A\u5206...",
|
|
306020
|
+
"\u6700\u65B0\u306E\u30DF\u30FC\u30E0\u306B\u3064\u3044\u3066\u8ABF\u67FB\u4E2D...",
|
|
306021
|
+
"\u3053\u306E\u8868\u793A\u3092\u6539\u5584\u3059\u308B\u30A2\u30A4\u30C7\u30A2\u3092\u601D\u7D22\u4E2D...",
|
|
306022
|
+
"\u3053\u306E\u554F\u984C\u3092\u8003\u3048\u4E2D...",
|
|
306023
|
+
"\u305D\u308C\u306F\u30D0\u30B0\u3067\u306A\u304F\u8AB0\u3082\u77E5\u3089\u306A\u3044\u65B0\u6A5F\u80FD\u3060\u3088",
|
|
306024
|
+
"\u30C0\u30A4\u30E4\u30EB\u30A2\u30C3\u30D7\u63A5\u7D9A\u97F3\u304C\u7D42\u308F\u308B\u306E\u3092\u5F85\u6A5F\u4E2D...",
|
|
306025
|
+
"\u30B3\u30FC\u30C9\u306B\u6CB9\u3092\u8FFD\u52A0\u4E2D...",
|
|
306026
|
+
// かなり意訳が入ってるもの
|
|
306027
|
+
"\u30A4\u30E4\u30DB\u30F3\u3092\u307B\u3069\u304D\u4E2D...",
|
|
306028
|
+
"\u30AB\u30D5\u30A7\u30A4\u30F3\u3092\u30B3\u30FC\u30C9\u306B\u5909\u63DB\u4E2D...",
|
|
306029
|
+
"\u5929\u52D5\u8AAC\u3092\u5730\u52D5\u8AAC\u306B\u66F8\u304D\u63DB\u3048\u4E2D...",
|
|
306030
|
+
"\u30D7\u30FC\u30EB\u3067\u6642\u8A08\u306E\u5B8C\u6210\u3092\u5F85\u6A5F\u4E2D...",
|
|
306031
|
+
"\u7B11\u6483\u7684\u306A\u56DE\u7B54\u3092\u7528\u610F\u4E2D...",
|
|
306032
|
+
"\u9069\u5207\u306A\u30DF\u30FC\u30E0\u3092\u8A18\u8FF0\u4E2D...",
|
|
306033
|
+
"A\u30DC\u30BF\u30F3\u3092\u62BC\u3057\u3066\u6B21\u3078...",
|
|
306034
|
+
"\u30B3\u30FC\u30C9\u306B\u30EA\u30C3\u30AF\u30ED\u30FC\u30EB\u3092\u4ED5\u8FBC\u307F\u4E2D...",
|
|
306035
|
+
"\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...",
|
|
306036
|
+
"\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...",
|
|
306037
|
+
"\u30B3\u30FC\u30C9\u304C\u58CA\u308C\u305F?\u53E9\u3051\u3070\u6CBB\u308B\u3055",
|
|
306038
|
+
"USB\u306E\u5DEE\u3057\u8FBC\u307F\u306B\u6311\u6226\u4E2D..."
|
|
306039
|
+
]
|
|
306040
|
+
};
|
|
306041
|
+
}
|
|
306042
|
+
});
|
|
306043
|
+
|
|
306044
|
+
// packages/cli/src/i18n/locales/pt.js
|
|
306045
|
+
var pt_exports = {};
|
|
306046
|
+
__export(pt_exports, {
|
|
306047
|
+
default: () => pt_default
|
|
306048
|
+
});
|
|
306049
|
+
var pt_default;
|
|
306050
|
+
var init_pt = __esm({
|
|
306051
|
+
"packages/cli/src/i18n/locales/pt.js"() {
|
|
306052
|
+
"use strict";
|
|
306053
|
+
init_esbuild_shims();
|
|
306054
|
+
pt_default = {
|
|
306055
|
+
// ============================================================================
|
|
306056
|
+
// Help / UI Components
|
|
306057
|
+
// ============================================================================
|
|
306058
|
+
"Basics:": "No\xE7\xF5es b\xE1sicas:",
|
|
306059
|
+
"Add context": "Adicionar contexto",
|
|
306060
|
+
"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.",
|
|
306061
|
+
"@": "@",
|
|
306062
|
+
"@src/myFile.ts": "@src/myFile.ts",
|
|
306063
|
+
"Shell mode": "Modo shell",
|
|
306064
|
+
"YOLO mode": "Modo YOLO",
|
|
306065
|
+
"plan mode": "modo planejamento",
|
|
306066
|
+
"auto-accept edits": "aceitar edi\xE7\xF5es automaticamente",
|
|
306067
|
+
"Accepting edits": "Aceitando edi\xE7\xF5es",
|
|
306068
|
+
"(shift + tab to cycle)": "(shift + tab para alternar)",
|
|
306069
|
+
"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}}).",
|
|
306070
|
+
"!": "!",
|
|
306071
|
+
"!npm run start": "!npm run start",
|
|
306072
|
+
"start server": "iniciar servidor",
|
|
306073
|
+
"Commands:": "Comandos:",
|
|
306074
|
+
"shell command": "comando shell",
|
|
306075
|
+
"Model Context Protocol command (from external servers)": "Comando Model Context Protocol (de servidores externos)",
|
|
306076
|
+
"Keyboard Shortcuts:": "Atalhos de teclado:",
|
|
306077
|
+
"Toggle this help display": "Alternar exibi\xE7\xE3o desta ajuda",
|
|
306078
|
+
"Toggle shell mode": "Alternar modo shell",
|
|
306079
|
+
"Open command menu": "Abrir menu de comandos",
|
|
306080
|
+
"Add file context": "Adicionar contexto de arquivo",
|
|
306081
|
+
"Accept suggestion / Autocomplete": "Aceitar sugest\xE3o / Autocompletar",
|
|
306082
|
+
"Reverse search history": "Pesquisa reversa no hist\xF3rico",
|
|
306083
|
+
"Press ? again to close": "Pressione ? novamente para fechar",
|
|
306084
|
+
// Keyboard shortcuts panel descriptions
|
|
306085
|
+
"for shell mode": "para modo shell",
|
|
306086
|
+
"for commands": "para comandos",
|
|
306087
|
+
"for file paths": "para caminhos de arquivo",
|
|
306088
|
+
"to clear input": "para limpar entrada",
|
|
306089
|
+
"to cycle approvals": "para alternar aprova\xE7\xF5es",
|
|
306090
|
+
"to quit": "para sair",
|
|
306091
|
+
"for newline": "para nova linha",
|
|
306092
|
+
"to clear screen": "para limpar a tela",
|
|
306093
|
+
"to search history": "para pesquisar no hist\xF3rico",
|
|
306094
|
+
"to paste images": "para colar imagens",
|
|
306095
|
+
"for external editor": "para editor externo",
|
|
306096
|
+
"Jump through words in the input": "Pular palavras na entrada",
|
|
306097
|
+
"Close dialogs, cancel requests, or quit application": "Fechar di\xE1logos, cancelar solicita\xE7\xF5es ou sair do aplicativo",
|
|
306098
|
+
"New line": "Nova linha",
|
|
306099
|
+
"New line (Alt+Enter works for certain linux distros)": "Nova linha (Alt+Enter funciona em certas distros linux)",
|
|
306100
|
+
"Clear the screen": "Limpar a tela",
|
|
306101
|
+
"Open input in external editor": "Abrir entrada no editor externo",
|
|
306102
|
+
"Send message": "Enviar mensagem",
|
|
306103
|
+
"Initializing...": "Inicializando...",
|
|
306104
|
+
"Connecting to MCP servers... ({{connected}}/{{total}})": "Conectando aos servidores MCP... ({{connected}}/{{total}})",
|
|
306105
|
+
"Type your message or @path/to/file": "Digite sua mensagem ou @caminho/do/arquivo",
|
|
306106
|
+
"? for shortcuts": "? para atalhos",
|
|
306107
|
+
"Press 'i' for INSERT mode and 'Esc' for NORMAL mode.": "Pressione 'i' para modo INSER\xC7\xC3O e 'Esc' para modo NORMAL.",
|
|
306108
|
+
"Cancel operation / Clear input (double press)": "Cancelar opera\xE7\xE3o / Limpar entrada (pressionar duas vezes)",
|
|
306109
|
+
"Cycle approval modes": "Alternar modos de aprova\xE7\xE3o",
|
|
306110
|
+
"Cycle through your prompt history": "Alternar hist\xF3rico de prompts",
|
|
306111
|
+
"For a full list of shortcuts, see {{docPath}}": "Para uma lista completa de atalhos, consulte {{docPath}}",
|
|
306112
|
+
"docs/keyboard-shortcuts.md": "docs/keyboard-shortcuts.md",
|
|
306113
|
+
"for help on Qwen Code": "para ajuda sobre o Qwen Code",
|
|
306114
|
+
"show version info": "mostrar informa\xE7\xF5es de vers\xE3o",
|
|
306115
|
+
"submit a bug report": "enviar um relat\xF3rio de erro",
|
|
306116
|
+
"About Qwen Code": "Sobre o Qwen Code",
|
|
306117
|
+
Status: "Status",
|
|
306118
|
+
// ============================================================================
|
|
306119
|
+
// System Information Fields
|
|
306120
|
+
// ============================================================================
|
|
306121
|
+
"Qwen Code": "Qwen Code",
|
|
306122
|
+
Runtime: "Runtime",
|
|
306123
|
+
OS: "SO",
|
|
306124
|
+
Auth: "Autentica\xE7\xE3o",
|
|
306125
|
+
"CLI Version": "Vers\xE3o da CLI",
|
|
306126
|
+
"Git Commit": "Commit do Git",
|
|
306127
|
+
Model: "Modelo",
|
|
306128
|
+
Sandbox: "Sandbox",
|
|
306129
|
+
"OS Platform": "Plataforma do SO",
|
|
306130
|
+
"OS Arch": "Arquitetura do SO",
|
|
306131
|
+
"OS Release": "Vers\xE3o do SO",
|
|
306132
|
+
"Node.js Version": "Vers\xE3o do Node.js",
|
|
306133
|
+
"NPM Version": "Vers\xE3o do NPM",
|
|
306134
|
+
"Session ID": "ID da Sess\xE3o",
|
|
306135
|
+
"Auth Method": "M\xE9todo de Autentica\xE7\xE3o",
|
|
306136
|
+
"Base URL": "URL Base",
|
|
306137
|
+
Proxy: "Proxy",
|
|
306138
|
+
"Memory Usage": "Uso de Mem\xF3ria",
|
|
306139
|
+
"IDE Client": "Cliente IDE",
|
|
306140
|
+
// ============================================================================
|
|
306141
|
+
// Commands - General
|
|
306142
|
+
// ============================================================================
|
|
306143
|
+
"Analyzes the project and creates a tailored QWEN.md file.": "Analisa o projeto e cria um arquivo QWEN.md personalizado.",
|
|
306144
|
+
"list available Qwen Code tools. Usage: /tools [desc]": "listar ferramentas Qwen Code dispon\xEDveis. Uso: /tools [desc]",
|
|
306145
|
+
"Available Qwen Code CLI tools:": "Ferramentas CLI do Qwen Code dispon\xEDveis:",
|
|
306146
|
+
"No tools available": "Nenhuma ferramenta dispon\xEDvel",
|
|
306147
|
+
"View or change the approval mode for tool usage": "Ver ou alterar o modo de aprova\xE7\xE3o para uso de ferramentas",
|
|
306148
|
+
'Invalid approval mode "{{arg}}". Valid modes: {{modes}}': 'Modo de aprova\xE7\xE3o inv\xE1lido "{{arg}}". Modos v\xE1lidos: {{modes}}',
|
|
306149
|
+
'Approval mode set to "{{mode}}"': 'Modo de aprova\xE7\xE3o definido como "{{mode}}"',
|
|
306150
|
+
"View or change the language setting": "Ver ou alterar a configura\xE7\xE3o de idioma",
|
|
306151
|
+
"change the theme": "alterar o tema",
|
|
306152
|
+
"Select Theme": "Selecionar Tema",
|
|
306153
|
+
Preview: "Visualizar",
|
|
306154
|
+
"(Use Enter to select, Tab to configure scope)": "(Use Enter para selecionar, Tab para configurar o escopo)",
|
|
306155
|
+
"(Use Enter to apply scope, Tab to go back)": "(Use Enter para aplicar o escopo, Tab para voltar)",
|
|
306156
|
+
"Theme configuration unavailable due to NO_COLOR env variable.": "Configura\xE7\xE3o de tema indispon\xEDvel devido \xE0 vari\xE1vel de ambiente NO_COLOR.",
|
|
306157
|
+
'Theme "{{themeName}}" not found.': 'Tema "{{themeName}}" n\xE3o encontrado.',
|
|
306158
|
+
'Theme "{{themeName}}" not found in selected scope.': 'Tema "{{themeName}}" n\xE3o encontrado no escopo selecionado.',
|
|
306159
|
+
"Clear conversation history and free up context": "Limpar hist\xF3rico de conversa e liberar contexto",
|
|
306160
|
+
"Compresses the context by replacing it with a summary.": "Comprime o contexto substituindo-o por um resumo.",
|
|
306161
|
+
"open full Qwen Code documentation in your browser": "abrir documenta\xE7\xE3o completa do Qwen Code no seu navegador",
|
|
306162
|
+
"Configuration not available.": "Configura\xE7\xE3o n\xE3o dispon\xEDvel.",
|
|
306163
|
+
"change the auth method": "alterar o m\xE9todo de autentica\xE7\xE3o",
|
|
306164
|
+
"Copy the last result or code snippet to clipboard": "Copiar o \xFAltimo resultado ou trecho de c\xF3digo para a \xE1rea de transfer\xEAncia",
|
|
306165
|
+
// ============================================================================
|
|
306166
|
+
// Commands - Agents
|
|
306167
|
+
// ============================================================================
|
|
306168
|
+
"Manage subagents for specialized task delegation.": "Gerenciar subagentes para delega\xE7\xE3o de tarefas especializadas.",
|
|
306169
|
+
"Manage existing subagents (view, edit, delete).": "Gerenciar subagentes existentes (ver, editar, excluir).",
|
|
306170
|
+
"Create a new subagent with guided setup.": "Criar um novo subagente com configura\xE7\xE3o guiada.",
|
|
306171
|
+
// ============================================================================
|
|
306172
|
+
// Agents - Management Dialog
|
|
306173
|
+
// ============================================================================
|
|
306174
|
+
Agents: "Agentes",
|
|
306175
|
+
"Choose Action": "Escolher A\xE7\xE3o",
|
|
306176
|
+
"Edit {{name}}": "Editar {{name}}",
|
|
306177
|
+
"Edit Tools: {{name}}": "Editar Ferramentas: {{name}}",
|
|
306178
|
+
"Edit Color: {{name}}": "Editar Cor: {{name}}",
|
|
306179
|
+
"Delete {{name}}": "Excluir {{name}}",
|
|
306180
|
+
"Unknown Step": "Etapa Desconhecida",
|
|
306181
|
+
"Esc to close": "Esc para fechar",
|
|
306182
|
+
"Enter to select, \u2191\u2193 to navigate, Esc to close": "Enter para selecionar, \u2191\u2193 para navegar, Esc para fechar",
|
|
306183
|
+
"Esc to go back": "Esc para voltar",
|
|
306184
|
+
"Enter to confirm, Esc to cancel": "Enter para confirmar, Esc para cancelar",
|
|
306185
|
+
"Enter to select, \u2191\u2193 to navigate, Esc to go back": "Enter para selecionar, \u2191\u2193 para navegar, Esc para voltar",
|
|
306186
|
+
"Invalid step: {{step}}": "Etapa inv\xE1lida: {{step}}",
|
|
306187
|
+
"No subagents found.": "Nenhum subagente encontrado.",
|
|
306188
|
+
"Use '/agents create' to create your first subagent.": "Use '/agents create' para criar seu primeiro subagente.",
|
|
306189
|
+
"(built-in)": "(integrado)",
|
|
306190
|
+
"(overridden by project level agent)": "(substitu\xEDdo por agente de n\xEDvel de projeto)",
|
|
306191
|
+
"Project Level ({{path}})": "N\xEDvel de Projeto ({{path}})",
|
|
306192
|
+
"User Level ({{path}})": "N\xEDvel de Usu\xE1rio ({{path}})",
|
|
306193
|
+
"Built-in Agents": "Agentes Integrados",
|
|
306194
|
+
"Extension Agents": "Agentes de Extens\xE3o",
|
|
306195
|
+
"Using: {{count}} agents": "Usando: {{count}} agentes",
|
|
306196
|
+
"View Agent": "Ver Agente",
|
|
306197
|
+
"Edit Agent": "Editar Agente",
|
|
306198
|
+
"Delete Agent": "Excluir Agente",
|
|
306199
|
+
Back: "Voltar",
|
|
306200
|
+
"No agent selected": "Nenhum agente selecionado",
|
|
306201
|
+
"File Path: ": "Caminho do Arquivo: ",
|
|
306202
|
+
"Tools: ": "Ferramentas: ",
|
|
306203
|
+
"Color: ": "Cor: ",
|
|
306204
|
+
"Description:": "Descri\xE7\xE3o:",
|
|
306205
|
+
"System Prompt:": "Prompt do Sistema:",
|
|
306206
|
+
"Open in editor": "Abrir no editor",
|
|
306207
|
+
"Edit tools": "Editar ferramentas",
|
|
306208
|
+
"Edit color": "Editar cor",
|
|
306209
|
+
"\u274C Error:": "\u274C Erro:",
|
|
306210
|
+
'Are you sure you want to delete agent "{{name}}"?': 'Tem certeza que deseja excluir o agente "{{name}}"?',
|
|
306211
|
+
// ============================================================================
|
|
306212
|
+
// Agents - Creation Wizard
|
|
306213
|
+
// ============================================================================
|
|
306214
|
+
"Project Level (.qwen/agents/)": "N\xEDvel de Projeto (.qwen/agents/)",
|
|
306215
|
+
"User Level (~/.qwen/agents/)": "N\xEDvel de Usu\xE1rio (~/.qwen/agents/)",
|
|
306216
|
+
"\u2705 Subagent Created Successfully!": "\u2705 Subagente criado com sucesso!",
|
|
306217
|
+
'Subagent "{{name}}" has been saved to {{level}} level.': 'O subagente "{{name}}" foi salvo no n\xEDvel {{level}}.',
|
|
306218
|
+
"Name: ": "Nome: ",
|
|
306219
|
+
"Location: ": "Localiza\xE7\xE3o: ",
|
|
306220
|
+
"\u274C Error saving subagent:": "\u274C Erro ao salvar subagente:",
|
|
306221
|
+
"Warnings:": "Avisos:",
|
|
306222
|
+
'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',
|
|
306223
|
+
'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',
|
|
306224
|
+
'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',
|
|
306225
|
+
"Description is over {{length}} characters": "A descri\xE7\xE3o tem mais de {{length}} caracteres",
|
|
306226
|
+
"System prompt is over {{length}} characters": "O prompt do sistema tem mais de {{length}} caracteres",
|
|
306227
|
+
// ============================================================================
|
|
306228
|
+
// Agents - Creation Wizard Steps
|
|
306229
|
+
// ============================================================================
|
|
306230
|
+
"Step {{n}}: Choose Location": "Etapa {{n}}: Escolher Localiza\xE7\xE3o",
|
|
306231
|
+
"Step {{n}}: Choose Generation Method": "Etapa {{n}}: Escolher M\xE9todo de Gera\xE7\xE3o",
|
|
306232
|
+
"Generate with Qwen Code (Recommended)": "Gerar com Qwen Code (Recomendado)",
|
|
306233
|
+
"Manual Creation": "Cria\xE7\xE3o Manual",
|
|
306234
|
+
"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)",
|
|
306235
|
+
"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...",
|
|
306236
|
+
"Generating subagent configuration...": "Gerando configura\xE7\xE3o do subagente...",
|
|
306237
|
+
"Failed to generate subagent: {{error}}": "Falha ao gerar subagente: {{error}}",
|
|
306238
|
+
"Step {{n}}: Describe Your Subagent": "Etapa {{n}}: Descreva Seu Subagente",
|
|
306239
|
+
"Step {{n}}: Enter Subagent Name": "Etapa {{n}}: Digite o Nome do Subagente",
|
|
306240
|
+
"Step {{n}}: Enter System Prompt": "Etapa {{n}}: Digite o Prompt do Sistema",
|
|
306241
|
+
"Step {{n}}: Enter Description": "Etapa {{n}}: Digite a Descri\xE7\xE3o",
|
|
306242
|
+
// ============================================================================
|
|
306243
|
+
// Agents - Tool Selection
|
|
306244
|
+
// ============================================================================
|
|
306245
|
+
"Step {{n}}: Select Tools": "Etapa {{n}}: Selecionar Ferramentas",
|
|
306246
|
+
"All Tools (Default)": "Todas as Ferramentas (Padr\xE3o)",
|
|
306247
|
+
"All Tools": "Todas as Ferramentas",
|
|
306248
|
+
"Read-only Tools": "Ferramentas de Somente Leitura",
|
|
306249
|
+
"Read & Edit Tools": "Ferramentas de Leitura e Edi\xE7\xE3o",
|
|
306250
|
+
"Read & Edit & Execution Tools": "Ferramentas de Leitura, Edi\xE7\xE3o e Execu\xE7\xE3o",
|
|
306251
|
+
"All tools selected, including MCP tools": "Todas as ferramentas selecionadas, incluindo ferramentas MCP",
|
|
306252
|
+
"Selected tools:": "Ferramentas selecionadas:",
|
|
306253
|
+
"Read-only tools:": "Ferramentas de somente leitura:",
|
|
306254
|
+
"Edit tools:": "Ferramentas de edi\xE7\xE3o:",
|
|
306255
|
+
"Execution tools:": "Ferramentas de execu\xE7\xE3o:",
|
|
306256
|
+
"Step {{n}}: Choose Background Color": "Etapa {{n}}: Escolher Cor de Fundo",
|
|
306257
|
+
"Step {{n}}: Confirm and Save": "Etapa {{n}}: Confirmar e Salvar",
|
|
306258
|
+
// ============================================================================
|
|
306259
|
+
// Agents - Navigation & Instructions
|
|
306260
|
+
// ============================================================================
|
|
306261
|
+
"Esc to cancel": "Esc para cancelar",
|
|
306262
|
+
"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",
|
|
306263
|
+
"Press Enter to continue, {{navigation}}Esc to {{action}}": "Pressione Enter para continuar, {{navigation}}Esc para {{action}}",
|
|
306264
|
+
cancel: "cancelar",
|
|
306265
|
+
"go back": "voltar",
|
|
306266
|
+
"\u2191\u2193 to navigate, ": "\u2191\u2193 para navegar, ",
|
|
306267
|
+
"Enter a clear, unique name for this subagent.": "Digite um nome claro e \xFAnico para este subagente.",
|
|
306268
|
+
"e.g., Code Reviewer": "ex: Revisor de C\xF3digo",
|
|
306269
|
+
"Name cannot be empty.": "O nome n\xE3o pode estar vazio.",
|
|
306270
|
+
"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.",
|
|
306271
|
+
"e.g., You are an expert code reviewer...": "ex: Voc\xEA \xE9 um revisor de c\xF3digo especialista...",
|
|
306272
|
+
"System prompt cannot be empty.": "O prompt do sistema n\xE3o pode estar vazio.",
|
|
306273
|
+
"Describe when and how this subagent should be used.": "Descreva quando e como este subagente deve ser usado.",
|
|
306274
|
+
"e.g., Reviews code for best practices and potential bugs.": "ex: Revisa o c\xF3digo em busca de melhores pr\xE1ticas e erros potenciais.",
|
|
306275
|
+
"Description cannot be empty.": "A descri\xE7\xE3o n\xE3o pode estar vazia.",
|
|
306276
|
+
"Failed to launch editor: {{error}}": "Falha ao iniciar editor: {{error}}",
|
|
306277
|
+
"Failed to save and edit subagent: {{error}}": "Falha ao salvar e editar subagente: {{error}}",
|
|
306278
|
+
// ============================================================================
|
|
306279
|
+
// Commands - General (continued)
|
|
306280
|
+
// ============================================================================
|
|
306281
|
+
"View and edit Qwen Code settings": "Ver e editar configura\xE7\xF5es do Qwen Code",
|
|
306282
|
+
Settings: "Configura\xE7\xF5es",
|
|
306283
|
+
"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.",
|
|
306284
|
+
'The command "/{{command}}" is not supported in non-interactive mode.': 'O comando "/{{command}}" n\xE3o \xE9 suportado no modo n\xE3o interativo.',
|
|
306285
|
+
// ============================================================================
|
|
306286
|
+
// Settings Labels
|
|
306287
|
+
// ============================================================================
|
|
306288
|
+
"Vim Mode": "Modo Vim",
|
|
306289
|
+
"Disable Auto Update": "Desativar Atualiza\xE7\xE3o Autom\xE1tica",
|
|
306290
|
+
"Attribution: commit": "Atribui\xE7\xE3o: commit",
|
|
306291
|
+
"Terminal Bell Notification": "Notifica\xE7\xE3o Sonora do Terminal",
|
|
306292
|
+
"Enable Usage Statistics": "Ativar Estat\xEDsticas de Uso",
|
|
306293
|
+
Theme: "Tema",
|
|
306294
|
+
"Preferred Editor": "Editor Preferido",
|
|
306295
|
+
"Auto-connect to IDE": "Conex\xE3o Autom\xE1tica com IDE",
|
|
306296
|
+
"Enable Prompt Completion": "Ativar Autocompletar de Prompts",
|
|
306297
|
+
"Debug Keystroke Logging": "Log de Depura\xE7\xE3o de Teclas",
|
|
306298
|
+
"Language: UI": "Idioma: Interface",
|
|
306299
|
+
"Language: Model": "Idioma: Modelo",
|
|
306300
|
+
"Output Format": "Formato de Sa\xEDda",
|
|
306301
|
+
"Hide Window Title": "Ocultar T\xEDtulo da Janela",
|
|
306302
|
+
"Show Status in Title": "Mostrar Status no T\xEDtulo",
|
|
306303
|
+
"Hide Tips": "Ocultar Dicas",
|
|
306304
|
+
"Show Line Numbers in Code": "Mostrar N\xFAmeros de Linhas no C\xF3digo",
|
|
306305
|
+
"Show Citations": "Mostrar Cita\xE7\xF5es",
|
|
306306
|
+
"Custom Witty Phrases": "Frases de Efeito Personalizadas",
|
|
306307
|
+
"Show Welcome Back Dialog": "Mostrar Di\xE1logo de Bem-vindo de Volta",
|
|
306308
|
+
"Enable User Feedback": "Ativar Feedback do Usu\xE1rio",
|
|
306309
|
+
"How is Qwen doing this session? (optional)": "Como o Qwen est\xE1 se saindo nesta sess\xE3o? (opcional)",
|
|
306310
|
+
Bad: "Ruim",
|
|
306311
|
+
Fine: "Bom",
|
|
306312
|
+
Good: "\xD3timo",
|
|
306313
|
+
Dismiss: "Ignorar",
|
|
306314
|
+
"Not Sure Yet": "N\xE3o tenho certeza ainda",
|
|
306315
|
+
"Any other key": "Qualquer outra tecla",
|
|
306316
|
+
"Disable Loading Phrases": "Desativar Frases de Carregamento",
|
|
306317
|
+
"Screen Reader Mode": "Modo de Leitor de Tela",
|
|
306318
|
+
"IDE Mode": "Modo IDE",
|
|
306319
|
+
"Max Session Turns": "M\xE1ximo de Turnos da Sess\xE3o",
|
|
306320
|
+
"Skip Next Speaker Check": "Pular Verifica\xE7\xE3o do Pr\xF3ximo Falante",
|
|
306321
|
+
"Skip Loop Detection": "Pular Detec\xE7\xE3o de Loop",
|
|
306322
|
+
"Skip Startup Context": "Pular Contexto de Inicializa\xE7\xE3o",
|
|
306323
|
+
"Enable OpenAI Logging": "Ativar Log do OpenAI",
|
|
306324
|
+
"OpenAI Logging Directory": "Diret\xF3rio de Log do OpenAI",
|
|
306325
|
+
Timeout: "Tempo Limite",
|
|
306326
|
+
"Max Retries": "M\xE1ximo de Tentativas",
|
|
306327
|
+
"Disable Cache Control": "Desativar Controle de Cache",
|
|
306328
|
+
"Memory Discovery Max Dirs": "Descoberta de Mem\xF3ria M\xE1x. Diretorios",
|
|
306329
|
+
"Load Memory From Include Directories": "Carregar Mem\xF3ria de Diret\xF3rios Inclu\xEDdos",
|
|
306330
|
+
"Respect .gitignore": "Respeitar .gitignore",
|
|
306331
|
+
"Respect .qwenignore": "Respeitar .qwenignore",
|
|
306332
|
+
"Enable Recursive File Search": "Ativar Pesquisa Recursiva de Arquivos",
|
|
306333
|
+
"Disable Fuzzy Search": "Desativar Pesquisa Difusa",
|
|
306334
|
+
"Interactive Shell (PTY)": "Shell Interativo (PTY)",
|
|
306335
|
+
"Show Color": "Mostrar Cores",
|
|
306336
|
+
"Auto Accept": "Aceitar Automaticamente",
|
|
306337
|
+
"Use Ripgrep": "Usar Ripgrep",
|
|
306338
|
+
"Use Builtin Ripgrep": "Usar Ripgrep Integrado",
|
|
306339
|
+
"Enable Tool Output Truncation": "Ativar Truncamento de Sa\xEDda de Ferramenta",
|
|
306340
|
+
"Tool Output Truncation Threshold": "Limite de Truncamento de Sa\xEDda de Ferramenta",
|
|
306341
|
+
"Tool Output Truncation Lines": "Linhas de Truncamento de Sa\xEDda de Ferramenta",
|
|
306342
|
+
"Folder Trust": "Confian\xE7a de Pasta",
|
|
306343
|
+
"Vision Model Preview": "Visualiza\xE7\xE3o de Modelo de Vis\xE3o",
|
|
306344
|
+
"Tool Schema Compliance": "Conformidade de Esquema de Ferramenta",
|
|
306345
|
+
"Experimental: Skills": "Experimental: Habilidades",
|
|
306346
|
+
// Settings enum options
|
|
306347
|
+
"Auto (detect from system)": "Autom\xE1tico (detectar do sistema)",
|
|
306348
|
+
Text: "Texto",
|
|
306349
|
+
JSON: "JSON",
|
|
306350
|
+
Plan: "Planejamento",
|
|
306351
|
+
Default: "Padr\xE3o",
|
|
306352
|
+
"Auto Edit": "Edi\xE7\xE3o Autom\xE1tica",
|
|
306353
|
+
YOLO: "YOLO",
|
|
306354
|
+
"toggle vim mode on/off": "alternar modo vim ligado/desligado",
|
|
306355
|
+
"check session stats. Usage: /stats [model|tools]": "verificar estat\xEDsticas da sess\xE3o. Uso: /stats [model|tools]",
|
|
306356
|
+
"Show model-specific usage statistics.": "Mostrar estat\xEDsticas de uso espec\xEDficas do modelo.",
|
|
306357
|
+
"Show tool-specific usage statistics.": "Mostrar estat\xEDsticas de uso espec\xEDficas da ferramenta.",
|
|
306358
|
+
"exit the cli": "sair da cli",
|
|
306359
|
+
"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",
|
|
306360
|
+
"Manage workspace directories": "Gerenciar diret\xF3rios do workspace",
|
|
306361
|
+
"Add directories to the workspace. Use comma to separate multiple paths": "Adicionar diret\xF3rios ao workspace. Use v\xEDrgula para separar v\xE1rios caminhos",
|
|
306362
|
+
"Show all directories in the workspace": "Mostrar todos os diret\xF3rios no workspace",
|
|
306363
|
+
"set external editor preference": "definir prefer\xEAncia de editor externo",
|
|
306364
|
+
"Select Editor": "Selecionar Editor",
|
|
306365
|
+
"Editor Preference": "Prefer\xEAncia de Editor",
|
|
306366
|
+
"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.",
|
|
306367
|
+
"Your preferred editor is:": "Seu editor preferido \xE9:",
|
|
306368
|
+
"Manage extensions": "Gerenciar extens\xF5es",
|
|
306369
|
+
"List active extensions": "Listar extens\xF5es ativas",
|
|
306370
|
+
"Update extensions. Usage: update <extension-names>|--all": "Atualizar extens\xF5es. Uso: update <nomes-das-extensoes>|--all",
|
|
306371
|
+
"Disable an extension": "Desativar uma extens\xE3o",
|
|
306372
|
+
"Enable an extension": "Ativar uma extens\xE3o",
|
|
306373
|
+
"Install an extension from a git repo or local path": "Instalar uma extens\xE3o de um reposit\xF3rio git ou caminho local",
|
|
306374
|
+
"Uninstall an extension": "Desinstalar uma extens\xE3o",
|
|
306375
|
+
"No extensions installed.": "Nenhuma extens\xE3o instalada.",
|
|
306376
|
+
"Usage: /extensions update <extension-names>|--all": "Uso: /extensions update <nomes-das-extensoes>|--all",
|
|
306377
|
+
'Extension "{{name}}" not found.': 'Extens\xE3o "{{name}}" n\xE3o encontrada.',
|
|
306378
|
+
"No extensions to update.": "Nenhuma extens\xE3o para atualizar.",
|
|
306379
|
+
"Usage: /extensions install <source>": "Uso: /extensions install <fonte>",
|
|
306380
|
+
'Installing extension from "{{source}}"...': 'Instalando extens\xE3o de "{{source}}"...',
|
|
306381
|
+
'Extension "{{name}}" installed successfully.': 'Extens\xE3o "{{name}}" instalada com sucesso.',
|
|
306382
|
+
'Failed to install extension from "{{source}}": {{error}}': 'Falha ao instalar extens\xE3o de "{{source}}": {{error}}',
|
|
306383
|
+
"Usage: /extensions uninstall <extension-name>": "Uso: /extensions uninstall <nome-da-extensao>",
|
|
306384
|
+
'Uninstalling extension "{{name}}"...': 'Desinstalando extens\xE3o "{{name}}"...',
|
|
306385
|
+
'Extension "{{name}}" uninstalled successfully.': 'Extens\xE3o "{{name}}" desinstalada com sucesso.',
|
|
306386
|
+
'Failed to uninstall extension "{{name}}": {{error}}': 'Falha ao desinstalar extens\xE3o "{{name}}": {{error}}',
|
|
306387
|
+
"Usage: /extensions {{command}} <extension> [--scope=<user|workspace>]": "Uso: /extensions {{command}} <extensao> [--scope=<user|workspace>]",
|
|
306388
|
+
'Unsupported scope "{{scope}}", deve ser um de "user" ou "workspace"': 'Escopo n\xE3o suportado "{{scope}}", deve ser um de "user" ou "workspace"',
|
|
306389
|
+
'Extension "{{name}}" disabled for scope "{{scope}}"': 'Extens\xE3o "{{name}}" desativada para o escopo "{{scope}}"',
|
|
306390
|
+
'Extension "{{name}}" enabled for scope "{{scope}}"': 'Extens\xE3o "{{name}}" ativada para o escopo "{{scope}}"',
|
|
306391
|
+
"Do you want to continue? [Y/n]: ": "Voc\xEA deseja continuar? [Y/n]: ",
|
|
306392
|
+
"Do you want to continue?": "Voc\xEA deseja continuar?",
|
|
306393
|
+
'Installing extension "{{name}}".': 'Instalando extens\xE3o "{{name}}".',
|
|
306394
|
+
"**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.**",
|
|
306395
|
+
"This extension will run the following MCP servers:": "Esta extens\xE3o executar\xE1 os seguintes servidores MCP:",
|
|
306396
|
+
local: "local",
|
|
306397
|
+
remote: "remoto",
|
|
306398
|
+
"This extension will add the following commands: {{commands}}.": "Esta extens\xE3o adicionar\xE1 os seguintes comandos: {{commands}}.",
|
|
306399
|
+
"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}}",
|
|
306400
|
+
"This extension will exclude the following core tools: {{tools}}": "Esta extens\xE3o excluir\xE1 as seguintes ferramentas principais: {{tools}}",
|
|
306401
|
+
"This extension will install the following skills:": "Esta extens\xE3o instalar\xE1 as seguintes habilidades:",
|
|
306402
|
+
"This extension will install the following subagents:": "Esta extens\xE3o instalar\xE1 os seguintes subagentes:",
|
|
306403
|
+
'Installation cancelled for "{{name}}".': 'Instala\xE7\xE3o cancelada para "{{name}}".',
|
|
306404
|
+
"--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.",
|
|
306405
|
+
'Extension "{{name}}" installed successfully and enabled.': 'Extens\xE3o "{{name}}" instalada com sucesso e ativada.',
|
|
306406
|
+
"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).",
|
|
306407
|
+
"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.",
|
|
306408
|
+
"The git ref to install from.": "A refer\xEAncia git para instalar.",
|
|
306409
|
+
"Enable auto-update for this extension.": "Ativar atualiza\xE7\xE3o autom\xE1tica para esta extens\xE3o.",
|
|
306410
|
+
"Enable pre-release versions for this extension.": "Ativar vers\xF5es de pr\xE9-lan\xE7amento para esta extens\xE3o.",
|
|
306411
|
+
"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.",
|
|
306412
|
+
"The source argument must be provided.": "O argumento fonte deve ser fornecido.",
|
|
306413
|
+
'Extension "{{name}}" successfully uninstalled.': 'Extens\xE3o "{{name}}" desinstalada com sucesso.',
|
|
306414
|
+
"Uninstalls an extension.": "Desinstala uma extens\xE3o.",
|
|
306415
|
+
"The name or source path of the extension to uninstall.": "O nome ou caminho da fonte da extens\xE3o para desinstalar.",
|
|
306416
|
+
"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.",
|
|
306417
|
+
"Enables an extension.": "Ativa uma extens\xE3o.",
|
|
306418
|
+
"The name of the extension to enable.": "O nome da extens\xE3o para ativar.",
|
|
306419
|
+
"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.",
|
|
306420
|
+
'Extension "{{name}}" successfully enabled for scope "{{scope}}".': 'Extens\xE3o "{{name}}" ativada com sucesso para o escopo "{{scope}}".',
|
|
306421
|
+
'Extension "{{name}}" successfully enabled in all scopes.': 'Extens\xE3o "{{name}}" ativada com sucesso em todos os escopos.',
|
|
306422
|
+
"Invalid scope: {{scope}}. Please use one of {{scopes}}.": "Escopo inv\xE1lido: {{scope}}. Use um de {{scopes}}.",
|
|
306423
|
+
"Disables an extension.": "Desativa uma extens\xE3o.",
|
|
306424
|
+
"The name of the extension to disable.": "O nome da extens\xE3o para desativar.",
|
|
306425
|
+
"The scope to disable the extenison in.": "O escopo para desativar a extens\xE3o.",
|
|
306426
|
+
'Extension "{{name}}" successfully disabled for scope "{{scope}}".': 'Extens\xE3o "{{name}}" desativada com sucesso para o escopo "{{scope}}".',
|
|
306427
|
+
'Extension "{{name}}" successfully updated: {{oldVersion}} \u2192 {{newVersion}}.': 'Extens\xE3o "{{name}}" atualizada com sucesso: {{oldVersion}} \u2192 {{newVersion}}.',
|
|
306428
|
+
'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',
|
|
306429
|
+
'Extension "{{name}}" is already up to date.': 'A extens\xE3o "{{name}}" j\xE1 est\xE1 atualizada.',
|
|
306430
|
+
"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.",
|
|
306431
|
+
"Update all extensions.": "Atualizar todas as extens\xF5es.",
|
|
306432
|
+
"Either an extension name or --all must be provided": "Um nome de extens\xE3o ou --all deve ser fornecido",
|
|
306433
|
+
"Lists installed extensions.": "Lista as extens\xF5es instaladas.",
|
|
306434
|
+
"Link extension failed to install.": "Falha ao instalar link da extens\xE3o.",
|
|
306435
|
+
'Extension "{{name}}" linked successfully and enabled.': 'Extens\xE3o "{{name}}" vinculada com sucesso e ativada.',
|
|
306436
|
+
"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.",
|
|
306437
|
+
"The name of the extension to link.": "O nome da extens\xE3o para vincular.",
|
|
306438
|
+
"Set a specific setting for an extension.": "Define uma configura\xE7\xE3o espec\xEDfica para uma extens\xE3o.",
|
|
306439
|
+
"Name of the extension to configure.": "Nome da extens\xE3o para configurar.",
|
|
306440
|
+
"The setting to configure (name or env var).": "A configura\xE7\xE3o para configurar (nome ou var env).",
|
|
306441
|
+
"The scope to set the setting in.": "O escopo para definir a configura\xE7\xE3o.",
|
|
306442
|
+
"List all settings for an extension.": "Listar todas as configura\xE7\xF5es de uma extens\xE3o.",
|
|
306443
|
+
"Name of the extension.": "Nome da extens\xE3o.",
|
|
306444
|
+
'Extension "{{name}}" has no settings to configure.': 'A extens\xE3o "{{name}}" n\xE3o tem configura\xE7\xF5es para configurar.',
|
|
306445
|
+
'Settings for "{{name}}":': 'Configura\xE7\xF5es para "{{name}}":',
|
|
306446
|
+
"(workspace)": "(workspace)",
|
|
306447
|
+
"(user)": "(usu\xE1rio)",
|
|
306448
|
+
"[not set]": "[n\xE3o definido]",
|
|
306449
|
+
"[value stored in keychain]": "[valor armazenado no chaveiro]",
|
|
306450
|
+
"Value:": "Valor:",
|
|
306451
|
+
"Manage extension settings.": "Gerenciar configura\xE7\xF5es de extens\xE3o.",
|
|
306452
|
+
"You need to specify a command (set or list).": "Voc\xEA precisa especificar um comando (set ou list).",
|
|
306453
|
+
// ============================================================================
|
|
306454
|
+
// Plugin Choice / Marketplace
|
|
306455
|
+
// ============================================================================
|
|
306456
|
+
"No plugins available in this marketplace.": "Nenhum plugin dispon\xEDvel neste marketplace.",
|
|
306457
|
+
'Select a plugin to install from marketplace "{{name}}":': 'Selecione um plugin para instalar do marketplace "{{name}}":',
|
|
306458
|
+
"Plugin selection cancelled.": "Sele\xE7\xE3o de plugin cancelada.",
|
|
306459
|
+
'Select a plugin from "{{name}}"': 'Selecione um plugin de "{{name}}"',
|
|
306460
|
+
"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",
|
|
306461
|
+
"{{count}} more above": "{{count}} mais acima",
|
|
306462
|
+
"{{count}} more below": "{{count}} mais abaixo",
|
|
306463
|
+
"manage IDE integration": "gerenciar integra\xE7\xE3o com IDE",
|
|
306464
|
+
"check status of IDE integration": "verificar status da integra\xE7\xE3o com IDE",
|
|
306465
|
+
"install required IDE companion for {{ideName}}": "instalar companion IDE necess\xE1rio para {{ideName}}",
|
|
306466
|
+
"enable IDE integration": "ativar integra\xE7\xE3o com IDE",
|
|
306467
|
+
"disable IDE integration": "desativar integra\xE7\xE3o com IDE",
|
|
306468
|
+
"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.",
|
|
306469
|
+
"Set up GitHub Actions": "Configurar GitHub Actions",
|
|
306470
|
+
"Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)": "Configurar atalhos de terminal para entrada multilinhas (VS Code, Cursor, Windsurf, Trae)",
|
|
306471
|
+
"Please restart your terminal for the changes to take effect.": "Reinicie seu terminal para que as altera\xE7\xF5es tenham efeito.",
|
|
306472
|
+
"Failed to configure terminal: {{error}}": "Falha ao configurar terminal: {{error}}",
|
|
306473
|
+
"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.",
|
|
306474
|
+
"{{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.",
|
|
306475
|
+
"File: {{file}}": "Arquivo: {{file}}",
|
|
306476
|
+
"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.",
|
|
306477
|
+
"Error: {{error}}": "Erro: {{error}}",
|
|
306478
|
+
"Shift+Enter binding already exists": "Atalho Shift+Enter j\xE1 existe",
|
|
306479
|
+
"Ctrl+Enter binding already exists": "Atalho Ctrl+Enter j\xE1 existe",
|
|
306480
|
+
"Existing keybindings detected. Will not modify to avoid conflicts.": "Atalhos existentes detectados. N\xE3o ser\xE3o modificados para evitar conflitos.",
|
|
306481
|
+
"Please check and modify manually if needed: {{file}}": "Verifique e modifique manualmente se necess\xE1rio: {{file}}",
|
|
306482
|
+
"Added Shift+Enter and Ctrl+Enter keybindings to {{terminalName}}.": "Adicionados atalhos Shift+Enter e Ctrl+Enter para {{terminalName}}.",
|
|
306483
|
+
"Modified: {{file}}": "Modificado: {{file}}",
|
|
306484
|
+
"{{terminalName}} keybindings already configured.": "Atalhos de {{terminalName}} j\xE1 configurados.",
|
|
306485
|
+
"Failed to configure {{terminalName}}.": "Falha ao configurar {{terminalName}}.",
|
|
306486
|
+
"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).",
|
|
306487
|
+
"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.",
|
|
306488
|
+
'Terminal "{{terminal}}" is not supported yet.': 'O terminal "{{terminal}}" ainda n\xE3o \xE9 suportado.',
|
|
306489
|
+
// ============================================================================
|
|
306490
|
+
// Commands - Language
|
|
306491
|
+
// ============================================================================
|
|
306492
|
+
"Invalid language. Available: {{options}}": "Idioma inv\xE1lido. Dispon\xEDveis: {{options}}",
|
|
306493
|
+
"Language subcommands do not accept additional arguments.": "Subcomandos de idioma n\xE3o aceitam argumentos adicionais.",
|
|
306494
|
+
"Current UI language: {{lang}}": "Idioma atual da interface: {{lang}}",
|
|
306495
|
+
"Current LLM output language: {{lang}}": "Idioma atual da sa\xEDda do LLM: {{lang}}",
|
|
306496
|
+
"LLM output language not set": "Idioma de sa\xEDda do LLM n\xE3o definido",
|
|
306497
|
+
"Set UI language": "Definir idioma da interface",
|
|
306498
|
+
"Set LLM output language": "Definir idioma de sa\xEDda do LLM",
|
|
306499
|
+
"Usage: /language ui [{{options}}]": "Uso: /language ui [{{options}}]",
|
|
306500
|
+
"Usage: /language output <language>": "Uso: /language output <idioma>",
|
|
306501
|
+
"Example: /language output \u4E2D\u6587": "Exemplo: /language output Portugu\xEAs",
|
|
306502
|
+
"Example: /language output English": "Exemplo: /language output Ingl\xEAs",
|
|
306503
|
+
"Example: /language output \u65E5\u672C\u8A9E": "Exemplo: /language output Japon\xEAs",
|
|
306504
|
+
"Example: /language output Portugu\xEAs": "Exemplo: /language output Portugu\xEAs",
|
|
306505
|
+
"UI language changed to {{lang}}": "Idioma da interface alterado para {{lang}}",
|
|
306506
|
+
"LLM output language set to {{lang}}": "Idioma de sa\xEDda do LLM definido para {{lang}}",
|
|
306507
|
+
"LLM output language rule file generated at {{path}}": "Arquivo de regra de idioma de sa\xEDda do LLM gerado em {{path}}",
|
|
306508
|
+
"Please restart the application for the changes to take effect.": "Reinicie o aplicativo para que as altera\xE7\xF5es tenham efeito.",
|
|
306509
|
+
"Failed to generate LLM output language rule file: {{error}}": "Falha ao gerar arquivo de regra de idioma de sa\xEDda do LLM: {{error}}",
|
|
306510
|
+
"Invalid command. Available subcommands:": "Comando inv\xE1lido. Subcomandos dispon\xEDveis:",
|
|
306511
|
+
"Available subcommands:": "Subcomandos dispon\xEDveis:",
|
|
306512
|
+
"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.",
|
|
306513
|
+
"Available options:": "Op\xE7\xF5es dispon\xEDveis:",
|
|
306514
|
+
"Set UI language to {{name}}": "Definir idioma da interface para {{name}}",
|
|
306515
|
+
// ============================================================================
|
|
306516
|
+
// Commands - Approval Mode
|
|
306517
|
+
// ============================================================================
|
|
306518
|
+
"Tool Approval Mode": "Modo de Aprova\xE7\xE3o de Ferramenta",
|
|
306519
|
+
"Current approval mode: {{mode}}": "Modo de aprova\xE7\xE3o atual: {{mode}}",
|
|
306520
|
+
"Available approval modes:": "Modos de aprova\xE7\xE3o dispon\xEDveis:",
|
|
306521
|
+
"Approval mode changed to: {{mode}}": "Modo de aprova\xE7\xE3o alterado para: {{mode}}",
|
|
306522
|
+
"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}})",
|
|
306523
|
+
"Usage: /approval-mode <mode> [--session|--user|--project]": "Uso: /approval-mode <mode> [--session|--user|--project]",
|
|
306524
|
+
"Scope subcommands do not accept additional arguments.": "Subcomandos de escopo n\xE3o aceitam argumentos adicionais.",
|
|
306525
|
+
"Plan mode - Analyze only, do not modify files or execute commands": "Modo planejamento - Apenas analisa, n\xE3o modifica arquivos nem executa comandos",
|
|
306526
|
+
"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",
|
|
306527
|
+
"Auto-edit mode - Automatically approve file edits": "Modo auto-edi\xE7\xE3o - Aprova automaticamente edi\xE7\xF5es de arquivos",
|
|
306528
|
+
"YOLO mode - Automatically approve all tools": "Modo YOLO - Aprova automaticamente todas as ferramentas",
|
|
306529
|
+
"{{mode}} mode": "Modo {{mode}}",
|
|
306530
|
+
"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.",
|
|
306531
|
+
"Failed to save approval mode: {{error}}": "Falha ao salvar modo de aprova\xE7\xE3o: {{error}}",
|
|
306532
|
+
"Failed to change approval mode: {{error}}": "Falha ao alterar modo de aprova\xE7\xE3o: {{error}}",
|
|
306533
|
+
"Apply to current session only (temporary)": "Aplicar apenas \xE0 sess\xE3o atual (tempor\xE1rio)",
|
|
306534
|
+
"Persist for this project/workspace": "Persistir para este projeto/workspace",
|
|
306535
|
+
"Persist for this user on this machine": "Persistir para este usu\xE1rio nesta m\xE1quina",
|
|
306536
|
+
"Analyze only, do not modify files or execute commands": "Apenas analisar, n\xE3o modificar arquivos nem executar comandos",
|
|
306537
|
+
"Require approval for file edits or shell commands": "Exigir aprova\xE7\xE3o para edi\xE7\xF5es de arquivos ou comandos shell",
|
|
306538
|
+
"Automatically approve file edits": "Aprovar automaticamente edi\xE7\xF5es de arquivos",
|
|
306539
|
+
"Automatically approve all tools": "Aprovar automaticamente todas as ferramentas",
|
|
306540
|
+
"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.",
|
|
306541
|
+
"Apply To": "Aplicar A",
|
|
306542
|
+
"User Settings": "Configura\xE7\xF5es do Usu\xE1rio",
|
|
306543
|
+
"Workspace Settings": "Configura\xE7\xF5es do Workspace",
|
|
306544
|
+
// ============================================================================
|
|
306545
|
+
// Commands - Memory
|
|
306546
|
+
// ============================================================================
|
|
306547
|
+
"Commands for interacting with memory.": "Comandos para interagir com a mem\xF3ria.",
|
|
306548
|
+
"Show the current memory contents.": "Mostrar os conte\xFAdos atuais da mem\xF3ria.",
|
|
306549
|
+
"Show project-level memory contents.": "Mostrar conte\xFAdos da mem\xF3ria de n\xEDvel de projeto.",
|
|
306550
|
+
"Show global memory contents.": "Mostrar conte\xFAdos da mem\xF3ria global.",
|
|
306551
|
+
"Add content to project-level memory.": "Adicionar conte\xFAdo \xE0 mem\xF3ria de n\xEDvel de projeto.",
|
|
306552
|
+
"Add content to global memory.": "Adicionar conte\xFAdo \xE0 mem\xF3ria global.",
|
|
306553
|
+
"Refresh the memory from the source.": "Atualizar a mem\xF3ria da fonte.",
|
|
306554
|
+
"Usage: /memory add --project <text to remember>": "Uso: /memory add --project <texto para lembrar>",
|
|
306555
|
+
"Usage: /memory add --global <text to remember>": "Uso: /memory add --global <texto para lembrar>",
|
|
306556
|
+
'Attempting to save to project memory: "{{text}}"': 'Tentando salvar na mem\xF3ria do projeto: "{{text}}"',
|
|
306557
|
+
'Attempting to save to global memory: "{{text}}"': 'Tentando salvar na mem\xF3ria global: "{{text}}"',
|
|
306558
|
+
"Current memory content from {{count}} file(s):": "Conte\xFAdo da mem\xF3ria atual de {{count}} arquivo(s):",
|
|
306559
|
+
"Memory is currently empty.": "A mem\xF3ria est\xE1 vazia no momento.",
|
|
306560
|
+
"Project memory file not found or is currently empty.": "Arquivo de mem\xF3ria do projeto n\xE3o encontrado ou est\xE1 vazio.",
|
|
306561
|
+
"Global memory file not found or is currently empty.": "Arquivo de mem\xF3ria global n\xE3o encontrado ou est\xE1 vazio.",
|
|
306562
|
+
"Global memory is currently empty.": "A mem\xF3ria global est\xE1 vazia no momento.",
|
|
306563
|
+
"Global memory content:\n\n---\n{{content}}\n---": "Conte\xFAdo da mem\xF3ria global:\n\n---\n{{content}}\n---",
|
|
306564
|
+
"Project memory content from {{path}}:\n\n---\n{{content}}\n---": "Conte\xFAdo da mem\xF3ria do projeto de {{path}}:\n\n---\n{{content}}\n---",
|
|
306565
|
+
"Project memory is currently empty.": "A mem\xF3ria do projeto est\xE1 vazia no momento.",
|
|
306566
|
+
"Refreshing memory from source files...": "Atualizando mem\xF3ria dos arquivos fonte...",
|
|
306567
|
+
"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.",
|
|
306568
|
+
"Usage: /memory add [--global|--project] <text to remember>": "Uso: /memory add [--global|--project] <texto para lembrar>",
|
|
306569
|
+
'Attempting to save to memory {{scope}}: "{{fact}}"': 'Tentando salvar na mem\xF3ria {{scope}}: "{{fact}}"',
|
|
306570
|
+
// ============================================================================
|
|
306571
|
+
// Commands - MCP
|
|
306572
|
+
// ============================================================================
|
|
306573
|
+
"Authenticate with an OAuth-enabled MCP server": "Autenticar com um servidor MCP habilitado para OAuth",
|
|
306574
|
+
"List configured MCP servers and tools": "Listar servidores e ferramentas MCP configurados",
|
|
306575
|
+
"Restarts MCP servers.": "Reinicia os servidores MCP.",
|
|
306576
|
+
"Config not loaded.": "Configura\xE7\xE3o n\xE3o carregada.",
|
|
306577
|
+
"Could not retrieve tool registry.": "N\xE3o foi poss\xEDvel recuperar o registro de ferramentas.",
|
|
306578
|
+
"No MCP servers configured with OAuth authentication.": "Nenhum servidor MCP configurado com autentica\xE7\xE3o OAuth.",
|
|
306579
|
+
"MCP servers with OAuth authentication:": "Servidores MCP com autentica\xE7\xE3o OAuth:",
|
|
306580
|
+
"Use /mcp auth <server-name> to authenticate.": "Use /mcp auth <nome-do-servidor> para autenticar.",
|
|
306581
|
+
"MCP server '{{name}}' not found.": "Servidor MCP '{{name}}' n\xE3o encontrado.",
|
|
306582
|
+
"Successfully authenticated and refreshed tools for '{{name}}'.": "Autenticado com sucesso e ferramentas atualizadas para '{{name}}'.",
|
|
306583
|
+
"Failed to authenticate with MCP server '{{name}}': {{error}}": "Falha ao autenticar com o servidor MCP '{{name}}': {{error}}",
|
|
306584
|
+
"Re-discovering tools from '{{name}}'...": "Redescobrindo ferramentas de '{{name}}'...",
|
|
306585
|
+
// ============================================================================
|
|
306586
|
+
// Commands - Chat
|
|
306587
|
+
// ============================================================================
|
|
306588
|
+
"Manage conversation history.": "Gerenciar hist\xF3rico de conversas.",
|
|
306589
|
+
"List saved conversation checkpoints": "Listar checkpoints de conversa salvos",
|
|
306590
|
+
"No saved conversation checkpoints found.": "Nenhum checkpoint de conversa salvo encontrado.",
|
|
306591
|
+
"List of saved conversations:": "Lista de conversas salvas:",
|
|
306592
|
+
"Note: Newest last, oldest first": "Nota: Mais novos por \xFAltimo, mais antigos primeiro",
|
|
306593
|
+
"Save the current conversation as a checkpoint. Usage: /chat save <tag>": "Salvar a conversa atual como um checkpoint. Uso: /chat save <tag>",
|
|
306594
|
+
"Missing tag. Usage: /chat save <tag>": "Tag ausente. Uso: /chat save <tag>",
|
|
306595
|
+
"Delete a conversation checkpoint. Usage: /chat delete <tag>": "Excluir um checkpoint de conversa. Uso: /chat delete <tag>",
|
|
306596
|
+
"Missing tag. Usage: /chat delete <tag>": "Tag ausente. Uso: /chat delete <tag>",
|
|
306597
|
+
"Conversation checkpoint '{{tag}}' has been deleted.": "O checkpoint de conversa '{{tag}}' foi exclu\xEDdo.",
|
|
306598
|
+
"Error: No checkpoint found with tag '{{tag}}'.": "Erro: Nenhum checkpoint encontrado com a tag '{{tag}}'.",
|
|
306599
|
+
"Resume a conversation from a checkpoint. Usage: /chat resume <tag>": "Retomar uma conversa de um checkpoint. Uso: /chat resume <tag>",
|
|
306600
|
+
"Missing tag. Usage: /chat resume <tag>": "Tag ausente. Uso: /chat resume <tag>",
|
|
306601
|
+
"No saved checkpoint found with tag: {{tag}}.": "Nenhum checkpoint salvo encontrado com a tag: {{tag}}.",
|
|
306602
|
+
"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?",
|
|
306603
|
+
"No chat client available to save conversation.": "Nenhum cliente de chat dispon\xEDvel para salvar a conversa.",
|
|
306604
|
+
"Conversation checkpoint saved with tag: {{tag}}.": "Checkpoint de conversa salvo com a tag: {{tag}}.",
|
|
306605
|
+
"No conversation found to save.": "Nenhuma conversa encontrada para salvar.",
|
|
306606
|
+
"No chat client available to share conversation.": "Nenhum cliente de chat dispon\xEDvel para compartilhar a conversa.",
|
|
306607
|
+
"Invalid file format. Only .md and .json are supported.": "Formato de arquivo inv\xE1lido. Apenas .md e .json s\xE3o suportados.",
|
|
306608
|
+
"Error sharing conversation: {{error}}": "Erro ao compartilhar conversa: {{error}}",
|
|
306609
|
+
"Conversation shared to {{filePath}}": "Conversa compartilhada em {{filePath}}",
|
|
306610
|
+
"No conversation found to share.": "Nenhuma conversa encontrada para compartilhar.",
|
|
306611
|
+
"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>",
|
|
306612
|
+
// ============================================================================
|
|
306613
|
+
// Commands - Summary
|
|
306614
|
+
// ============================================================================
|
|
306615
|
+
"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",
|
|
306616
|
+
"No chat client available to generate summary.": "Nenhum cliente de chat dispon\xEDvel para gerar o resumo.",
|
|
306617
|
+
"Already generating summary, wait for previous request to complete": "J\xE1 gerando resumo, aguarde a conclus\xE3o da solicita\xE7\xE3o anterior",
|
|
306618
|
+
"No conversation found to summarize.": "Nenhuma conversa encontrada para resumir.",
|
|
306619
|
+
"Failed to generate project context summary: {{error}}": "Falha ao gerar resumo do contexto do projeto: {{error}}",
|
|
306620
|
+
"Saved project summary to {{filePathForDisplay}}.": "Resumo do projeto salvo em {{filePathForDisplay}}.",
|
|
306621
|
+
"Saving project summary...": "Salvando resumo do projeto...",
|
|
306622
|
+
"Generating project summary...": "Gerando resumo do projeto...",
|
|
306623
|
+
"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",
|
|
306624
|
+
// ============================================================================
|
|
306625
|
+
// Commands - Model
|
|
306626
|
+
// ============================================================================
|
|
306627
|
+
"Switch the model for this session": "Trocar o modelo para esta sess\xE3o",
|
|
306628
|
+
"Content generator configuration not available.": "Configura\xE7\xE3o do gerador de conte\xFAdo n\xE3o dispon\xEDvel.",
|
|
306629
|
+
"Authentication type not available.": "Tipo de autentica\xE7\xE3o n\xE3o dispon\xEDvel.",
|
|
306630
|
+
"No models available for the current authentication type ({{authType}}).": "Nenhum modelo dispon\xEDvel para o tipo de autentica\xE7\xE3o atual ({{authType}}).",
|
|
306631
|
+
// ============================================================================
|
|
306632
|
+
// Commands - Clear
|
|
306633
|
+
// ============================================================================
|
|
306634
|
+
"Starting a new session, resetting chat, and clearing terminal.": "Iniciando uma nova sess\xE3o, resetando o chat e limpando o terminal.",
|
|
306635
|
+
"Starting a new session and clearing.": "Iniciando uma nova sess\xE3o e limpando.",
|
|
306636
|
+
// ============================================================================
|
|
306637
|
+
// Commands - Compress
|
|
306638
|
+
// ============================================================================
|
|
306639
|
+
"Already compressing, wait for previous request to complete": "J\xE1 comprimindo, aguarde a conclus\xE3o da solicita\xE7\xE3o anterior",
|
|
306640
|
+
"Failed to compress chat history.": "Falha ao comprimir hist\xF3rico do chat.",
|
|
306641
|
+
"Failed to compress chat history: {{error}}": "Falha ao comprimir hist\xF3rico do chat: {{error}}",
|
|
306642
|
+
"Compressing chat history": "Comprimindo hist\xF3rico do chat",
|
|
306643
|
+
"Chat history compressed from {{originalTokens}} to {{newTokens}} tokens.": "Hist\xF3rico do chat comprimido de {{originalTokens}} para {{newTokens}} tokens.",
|
|
306644
|
+
"Compression was not beneficial for this history size.": "A compress\xE3o n\xE3o foi ben\xE9fica para este tamanho de hist\xF3rico.",
|
|
306645
|
+
"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.",
|
|
306646
|
+
"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.",
|
|
306647
|
+
"Chat history is already compressed.": "O hist\xF3rico do chat j\xE1 est\xE1 comprimido.",
|
|
306648
|
+
// ============================================================================
|
|
306649
|
+
// Commands - Directory
|
|
306650
|
+
// ============================================================================
|
|
306651
|
+
"Configuration is not available.": "A configura\xE7\xE3o n\xE3o est\xE1 dispon\xEDvel.",
|
|
306652
|
+
"Please provide at least one path to add.": "Forne\xE7a pelo menos um caminho para adicionar.",
|
|
306653
|
+
"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.",
|
|
306654
|
+
"Error adding '{{path}}': {{error}}": "Erro ao adicionar '{{path}}': {{error}}",
|
|
306655
|
+
"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}}",
|
|
306656
|
+
"Error refreshing memory: {{error}}": "Erro ao atualizar mem\xF3ria: {{error}}",
|
|
306657
|
+
"Successfully added directories:\n- {{directories}}": "Diret\xF3rios adicionados com sucesso:\n- {{directories}}",
|
|
306658
|
+
"Current workspace directories:\n{{directories}}": "Diret\xF3rios atuais do workspace:\n{{directories}}",
|
|
306659
|
+
// ============================================================================
|
|
306660
|
+
// Commands - Docs
|
|
306661
|
+
// ============================================================================
|
|
306662
|
+
"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}}",
|
|
306663
|
+
"Opening documentation in your browser: {{url}}": "Abrindo documenta\xE7\xE3o no seu navegador: {{url}}",
|
|
306664
|
+
// ============================================================================
|
|
306665
|
+
// Dialogs - Tool Confirmation
|
|
306666
|
+
// ============================================================================
|
|
306667
|
+
"Do you want to proceed?": "Voc\xEA deseja prosseguir?",
|
|
306668
|
+
"Yes, allow once": "Sim, permitir uma vez",
|
|
306669
|
+
"Allow always": "Permitir sempre",
|
|
306670
|
+
No: "N\xE3o",
|
|
306671
|
+
"No (esc)": "N\xE3o (esc)",
|
|
306672
|
+
"Yes, allow always for this session": "Sim, permitir sempre para esta sess\xE3o",
|
|
306673
|
+
"Modify in progress:": "Modifica\xE7\xE3o em progresso:",
|
|
306674
|
+
"Save and close external editor to continue": "Salve e feche o editor externo para continuar",
|
|
306675
|
+
"Apply this change?": "Aplicar esta altera\xE7\xE3o?",
|
|
306676
|
+
"Yes, allow always": "Sim, permitir sempre",
|
|
306677
|
+
"Modify with external editor": "Modificar com editor externo",
|
|
306678
|
+
"No, suggest changes (esc)": "N\xE3o, sugerir altera\xE7\xF5es (esc)",
|
|
306679
|
+
"Allow execution of: '{{command}}'?": "Permitir a execu\xE7\xE3o de: '{{command}}'?",
|
|
306680
|
+
"Yes, allow always ...": "Sim, permitir sempre ...",
|
|
306681
|
+
"Yes, and auto-accept edits": "Sim, e aceitar edi\xE7\xF5es automaticamente",
|
|
306682
|
+
"Yes, and manually approve edits": "Sim, e aprovar edi\xE7\xF5es manualmente",
|
|
306683
|
+
"No, keep planning (esc)": "N\xE3o, continuar planejando (esc)",
|
|
306684
|
+
"URLs to fetch:": "URLs para buscar:",
|
|
306685
|
+
"MCP Server: {{server}}": "Servidor MCP: {{server}}",
|
|
306686
|
+
"Tool: {{tool}}": "Ferramenta: {{tool}}",
|
|
306687
|
+
'Allow execution of MCP tool "{{tool}}" from server "{{server}}"?': 'Permitir a execu\xE7\xE3o da ferramenta MCP "{{tool}}" do servidor "{{server}}"?',
|
|
306688
|
+
'Yes, always allow tool "{{tool}}" from server "{{server}}"': 'Sim, sempre permitir a ferramenta "{{tool}}" do servidor "{{server}}"',
|
|
306689
|
+
'Yes, always allow all tools from server "{{server}}"': 'Sim, sempre permitir todas as ferramentas do servidor "{{server}}"',
|
|
306690
|
+
// ============================================================================
|
|
306691
|
+
// Dialogs - Shell Confirmation
|
|
306692
|
+
// ============================================================================
|
|
306693
|
+
"Shell Command Execution": "Execu\xE7\xE3o de Comando Shell",
|
|
306694
|
+
"A custom command wants to run the following shell commands:": "Um comando personalizado deseja executar os seguintes comandos shell:",
|
|
306695
|
+
// ============================================================================
|
|
306696
|
+
// Dialogs - Pro Quota
|
|
306697
|
+
// ============================================================================
|
|
306698
|
+
"Pro quota limit reached for {{model}}.": "Limite de cota Pro atingido para {{model}}.",
|
|
306699
|
+
"Change auth (executes the /auth command)": "Alterar autentica\xE7\xE3o (executa o comando /auth)",
|
|
306700
|
+
"Continue with {{model}}": "Continuar com {{model}}",
|
|
306701
|
+
// ============================================================================
|
|
306702
|
+
// Dialogs - Welcome Back
|
|
306703
|
+
// ============================================================================
|
|
306704
|
+
"Current Plan:": "Plano Atual:",
|
|
306705
|
+
"Progress: {{done}}/{{total}} tasks completed": "Progresso: {{done}}/{{total}} tarefas conclu\xEDdas",
|
|
306706
|
+
", {{inProgress}} in progress": ", {{inProgress}} em progresso",
|
|
306707
|
+
"Pending Tasks:": "Tarefas Pendentes:",
|
|
306708
|
+
"What would you like to do?": "O que voc\xEA gostaria de fazer?",
|
|
306709
|
+
"Choose how to proceed with your session:": "Escolha como proceder com sua sess\xE3o:",
|
|
306710
|
+
"Start new chat session": "Iniciar nova sess\xE3o de chat",
|
|
306711
|
+
"Continue previous conversation": "Continuar conversa anterior",
|
|
306712
|
+
"\u{1F44B} Welcome back! (Last updated: {{timeAgo}})": "\u{1F44B} Bem-vindo de volta! (\xDAltima atualiza\xE7\xE3o: {{timeAgo}})",
|
|
306713
|
+
"\u{1F3AF} Overall Goal:": "\u{1F3AF} Objetivo Geral:",
|
|
306714
|
+
// ============================================================================
|
|
306715
|
+
// Dialogs - Auth
|
|
306716
|
+
// ============================================================================
|
|
306717
|
+
"Get started": "Come\xE7ar",
|
|
306718
|
+
"How would you like to authenticate for this project?": "Como voc\xEA gostaria de se autenticar para este projeto?",
|
|
306719
|
+
"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.",
|
|
306720
|
+
"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.",
|
|
306721
|
+
"(Use Enter to Set Auth)": "(Use Enter para Definir Autentica\xE7\xE3o)",
|
|
306722
|
+
"Terms of Services and Privacy Notice for Qwen Code": "Termos de Servi\xE7o e Aviso de Privacidade do Qwen Code",
|
|
306723
|
+
"Qwen OAuth": "Qwen OAuth",
|
|
306724
|
+
OpenAI: "OpenAI",
|
|
306725
|
+
"Failed to login. Message: {{message}}": "Falha ao fazer login. Mensagem: {{message}}",
|
|
306726
|
+
"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.",
|
|
306727
|
+
"Qwen OAuth authentication timed out. Please try again.": "A autentica\xE7\xE3o Qwen OAuth expirou. Tente novamente.",
|
|
306728
|
+
"Qwen OAuth authentication cancelled.": "Autentica\xE7\xE3o Qwen OAuth cancelada.",
|
|
306729
|
+
"Qwen OAuth Authentication": "Autentica\xE7\xE3o Qwen OAuth",
|
|
306730
|
+
"Please visit this URL to authorize:": "Visite esta URL para autorizar:",
|
|
306731
|
+
"Or scan the QR code below:": "Ou escaneie o c\xF3digo QR abaixo:",
|
|
306732
|
+
"Waiting for authorization": "Aguardando autoriza\xE7\xE3o",
|
|
306733
|
+
"Time remaining:": "Tempo restante:",
|
|
306734
|
+
"(Press ESC or CTRL+C to cancel)": "(Pressione ESC ou CTRL+C para cancelar)",
|
|
306735
|
+
"Qwen OAuth Authentication Timeout": "Tempo Limite de Autentica\xE7\xE3o Qwen OAuth",
|
|
306736
|
+
"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.",
|
|
306737
|
+
"Press any key to return to authentication type selection.": "Pressione qualquer tecla para retornar \xE0 sele\xE7\xE3o do tipo de autentica\xE7\xE3o.",
|
|
306738
|
+
"Waiting for Qwen OAuth authentication...": "Aguardando autentica\xE7\xE3o Qwen OAuth...",
|
|
306739
|
+
"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.",
|
|
306740
|
+
"Authentication timed out. Please try again.": "A autentica\xE7\xE3o expirou. Tente novamente.",
|
|
306741
|
+
"Waiting for auth... (Press ESC or CTRL+C to cancel)": "Aguardando autentica\xE7\xE3o... (Pressione ESC ou CTRL+C para cancelar)",
|
|
306742
|
+
"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}}.",
|
|
306743
|
+
"{{envKeyHint}} environment variable not found.": "Vari\xE1vel de ambiente {{envKeyHint}} n\xE3o encontrada.",
|
|
306744
|
+
"{{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.",
|
|
306745
|
+
"{{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.",
|
|
306746
|
+
"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}}.",
|
|
306747
|
+
"Anthropic provider missing required baseUrl in modelProviders[].baseUrl.": "Provedor Anthropic sem a baseUrl necess\xE1ria em modelProviders[].baseUrl.",
|
|
306748
|
+
"ANTHROPIC_BASE_URL environment variable not found.": "Vari\xE1vel de ambiente ANTHROPIC_BASE_URL n\xE3o encontrada.",
|
|
306749
|
+
"Invalid auth method selected.": "M\xE9todo de autentica\xE7\xE3o inv\xE1lido selecionado.",
|
|
306750
|
+
"Failed to authenticate. Message: {{message}}": "Falha ao autenticar. Mensagem: {{message}}",
|
|
306751
|
+
"Authenticated successfully with {{authType}} credentials.": "Autenticado com sucesso com credenciais {{authType}}.",
|
|
306752
|
+
'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}}',
|
|
306753
|
+
"OpenAI Configuration Required": "Configura\xE7\xE3o do OpenAI Necess\xE1ria",
|
|
306754
|
+
"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",
|
|
306755
|
+
"API Key:": "Chave da API:",
|
|
306756
|
+
"Invalid credentials: {{errorMessage}}": "Credenciais inv\xE1lidas: {{errorMessage}}",
|
|
306757
|
+
"Failed to validate credentials": "Falha ao validar credenciais",
|
|
306758
|
+
"Press Enter to continue, Tab/\u2191\u2193 to navigate, Esc to cancel": "Pressione Enter para continuar, Tab/\u2191\u2193 para navegar, Esc para cancelar",
|
|
306759
|
+
// ============================================================================
|
|
306760
|
+
// Dialogs - Model
|
|
306761
|
+
// ============================================================================
|
|
306762
|
+
"Select Model": "Selecionar Modelo",
|
|
306763
|
+
"(Press Esc to close)": "(Pressione Esc para fechar)",
|
|
306764
|
+
"Current (effective) configuration": "Configura\xE7\xE3o atual (efetiva)",
|
|
306765
|
+
AuthType: "AuthType",
|
|
306766
|
+
"API Key": "Chave da API",
|
|
306767
|
+
unset: "n\xE3o definido",
|
|
306768
|
+
"(default)": "(padr\xE3o)",
|
|
306769
|
+
"(set)": "(definido)",
|
|
306770
|
+
"(not set)": "(n\xE3o definido)",
|
|
306771
|
+
"Failed to switch model to '{{modelId}}'.\n\n{{error}}": "Falha ao trocar o modelo para '{{modelId}}'.\n\n{{error}}",
|
|
306772
|
+
"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)",
|
|
306773
|
+
"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)",
|
|
306774
|
+
// ============================================================================
|
|
306775
|
+
// Dialogs - Permissions
|
|
306776
|
+
// ============================================================================
|
|
306777
|
+
"Manage folder trust settings": "Gerenciar configura\xE7\xF5es de confian\xE7a de pasta",
|
|
306778
|
+
// ============================================================================
|
|
306779
|
+
// Status Bar
|
|
306780
|
+
// ============================================================================
|
|
306781
|
+
"Using:": "Usando:",
|
|
306782
|
+
"{{count}} open file": "{{count}} arquivo aberto",
|
|
306783
|
+
"{{count}} open files": "{{count}} arquivos abertos",
|
|
306784
|
+
"(ctrl+g to view)": "(ctrl+g para ver)",
|
|
306785
|
+
"{{count}} {{name}} file": "{{count}} arquivo {{name}}",
|
|
306786
|
+
"{{count}} {{name}} files": "{{count}} arquivos {{name}}",
|
|
306787
|
+
"{{count}} MCP server": "{{count}} servidor MCP",
|
|
306788
|
+
"{{count}} MCP servers": "{{count}} servidores MCP",
|
|
306789
|
+
"{{count}} Blocked": "{{count}} Bloqueados",
|
|
306790
|
+
"(ctrl+t to view)": "(ctrl+t para ver)",
|
|
306791
|
+
"(ctrl+t to toggle)": "(ctrl+t para alternar)",
|
|
306792
|
+
"Press Ctrl+C again to exit.": "Pressione Ctrl+C novamente para sair.",
|
|
306793
|
+
"Press Ctrl+D again to exit.": "Pressione Ctrl+D novamente para sair.",
|
|
306794
|
+
"Press Esc again to clear.": "Pressione Esc novamente para limpar.",
|
|
306795
|
+
// ============================================================================
|
|
306796
|
+
// MCP Status
|
|
306797
|
+
// ============================================================================
|
|
306798
|
+
"No MCP servers configured.": "Nenhum servidor MCP configurado.",
|
|
306799
|
+
"Please view MCP documentation in your browser:": "Veja a documenta\xE7\xE3o do MCP no seu navegador:",
|
|
306800
|
+
"or use the cli /docs command": "ou use o comando cli /docs",
|
|
306801
|
+
"\u23F3 MCP servers are starting up ({{count}} initializing)...": "\u23F3 Servidores MCP est\xE3o iniciando ({{count}} inicializando)...",
|
|
306802
|
+
"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.",
|
|
306803
|
+
"Configured MCP servers:": "Servidores MCP configurados:",
|
|
306804
|
+
Ready: "Pronto",
|
|
306805
|
+
"Starting... (first startup may take longer)": "Iniciando... (a primeira inicializa\xE7\xE3o pode demorar mais)",
|
|
306806
|
+
Disconnected: "Desconectado",
|
|
306807
|
+
"{{count}} tool": "{{count}} ferramenta",
|
|
306808
|
+
"{{count}} tools": "{{count}} ferramentas",
|
|
306809
|
+
"{{count}} prompt": "{{count}} prompt",
|
|
306810
|
+
"{{count}} prompts": "{{count}} prompts",
|
|
306811
|
+
"(from {{extensionName}})": "(de {{extensionName}})",
|
|
306812
|
+
OAuth: "OAuth",
|
|
306813
|
+
"OAuth expired": "OAuth expirado",
|
|
306814
|
+
"OAuth not authenticated": "OAuth n\xE3o autenticado",
|
|
306815
|
+
"tools and prompts will appear when ready": "ferramentas e prompts aparecer\xE3o quando estiverem prontos",
|
|
306816
|
+
"{{count}} tools cached": "{{count}} ferramentas em cache",
|
|
306817
|
+
"Tools:": "Ferramentas:",
|
|
306818
|
+
"Parameters:": "Par\xE2metros:",
|
|
306819
|
+
"Prompts:": "Prompts:",
|
|
306820
|
+
Blocked: "Bloqueado",
|
|
306821
|
+
"\u{1F4A1} Tips:": "\u{1F4A1} Dicas:",
|
|
306822
|
+
Use: "Use",
|
|
306823
|
+
"to show server and tool descriptions": "para mostrar descri\xE7\xF5es de servidores e ferramentas",
|
|
306824
|
+
"to show tool parameter schemas": "para mostrar esquemas de par\xE2metros de ferramentas",
|
|
306825
|
+
"to hide descriptions": "para ocultar descri\xE7\xF5es",
|
|
306826
|
+
"to authenticate with OAuth-enabled servers": "para autenticar com servidores habilitados para OAuth",
|
|
306827
|
+
Press: "Pressione",
|
|
306828
|
+
"to toggle tool descriptions on/off": "para alternar descri\xE7\xF5es de ferramentas ligadas/desligadas",
|
|
306829
|
+
"Starting OAuth authentication for MCP server '{{name}}'...": "Iniciando autentica\xE7\xE3o OAuth para servidor MCP '{{name}}'...",
|
|
306830
|
+
"Restarting MCP servers...": "Reiniciando servidores MCP...",
|
|
306831
|
+
// ============================================================================
|
|
306832
|
+
// Startup Tips
|
|
306833
|
+
// ============================================================================
|
|
306834
|
+
"Tips:": "Dicas:",
|
|
306835
|
+
"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.",
|
|
306836
|
+
"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.",
|
|
306837
|
+
"Use /bug to submit issues to the maintainers when something goes off.": "Use /bug para enviar problemas aos mantenedores quando algo der errado.",
|
|
306838
|
+
"Switch auth type quickly with /auth.": "Troque o tipo de autentica\xE7\xE3o rapidamente com /auth.",
|
|
306839
|
+
"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).",
|
|
306840
|
+
"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.",
|
|
306841
|
+
"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.",
|
|
306842
|
+
"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.",
|
|
306843
|
+
// ============================================================================
|
|
306844
|
+
// Exit Screen / Stats
|
|
306845
|
+
// ============================================================================
|
|
306846
|
+
"Agent powering down. Goodbye!": "Agente desligando. Adeus!",
|
|
306847
|
+
"To continue this session, run": "Para continuar esta sess\xE3o, execute",
|
|
306848
|
+
"Interaction Summary": "Resumo da Intera\xE7\xE3o",
|
|
306849
|
+
"Session ID:": "ID da Sess\xE3o:",
|
|
306850
|
+
"Tool Calls:": "Chamadas de Ferramenta:",
|
|
306851
|
+
"Success Rate:": "Taxa de Sucesso:",
|
|
306852
|
+
"User Agreement:": "Acordo do Usu\xE1rio:",
|
|
306853
|
+
reviewed: "revisado",
|
|
306854
|
+
"Code Changes:": "Altera\xE7\xF5es de C\xF3digo:",
|
|
306855
|
+
Performance: "Desempenho",
|
|
306856
|
+
"Wall Time:": "Tempo Total:",
|
|
306857
|
+
"Agent Active:": "Agente Ativo:",
|
|
306858
|
+
"API Time:": "Tempo de API:",
|
|
306859
|
+
"Tool Time:": "Tempo de Ferramenta:",
|
|
306860
|
+
"Session Stats": "Estat\xEDsticas da Sess\xE3o",
|
|
306861
|
+
"Model Usage": "Uso do Modelo",
|
|
306862
|
+
Reqs: "Reqs",
|
|
306863
|
+
"Input Tokens": "Tokens de Entrada",
|
|
306864
|
+
"Output Tokens": "Tokens de Sa\xEDda",
|
|
306865
|
+
"Savings Highlight:": "Destaque de Economia:",
|
|
306866
|
+
"of input tokens were served from the cache, reducing costs.": "de tokens de entrada foram servidos do cache, reduzindo custos.",
|
|
306867
|
+
"Tip: For a full token breakdown, run `/stats model`.": "Dica: Para um detalhamento completo de tokens, execute `/stats model`.",
|
|
306868
|
+
"Model Stats For Nerds": "Estat\xEDsticas de Modelo Para Nerds",
|
|
306869
|
+
"Tool Stats For Nerds": "Estat\xEDsticas de Ferramenta Para Nerds",
|
|
306870
|
+
Metric: "M\xE9trica",
|
|
306871
|
+
API: "API",
|
|
306872
|
+
Requests: "Solicita\xE7\xF5es",
|
|
306873
|
+
Errors: "Erros",
|
|
306874
|
+
"Avg Latency": "Lat\xEAncia M\xE9dia",
|
|
306875
|
+
Tokens: "Tokens",
|
|
306876
|
+
Total: "Total",
|
|
306877
|
+
Prompt: "Prompt",
|
|
306878
|
+
Cached: "Cacheado",
|
|
306879
|
+
Thoughts: "Pensamentos",
|
|
306880
|
+
Tool: "Ferramenta",
|
|
306881
|
+
Output: "Sa\xEDda",
|
|
306882
|
+
"No API calls have been made in this session.": "Nenhuma chamada de API foi feita nesta sess\xE3o.",
|
|
306883
|
+
"Tool Name": "Nome da Ferramenta",
|
|
306884
|
+
Calls: "Chamadas",
|
|
306885
|
+
"Success Rate": "Taxa de Sucesso",
|
|
306886
|
+
"Avg Duration": "Dura\xE7\xE3o M\xE9dia",
|
|
306887
|
+
"User Decision Summary": "Resumo de Decis\xE3o do Usu\xE1rio",
|
|
306888
|
+
"Total Reviewed Suggestions:": "Total de Sugest\xF5es Revisadas:",
|
|
306889
|
+
" \xBB Accepted:": " \xBB Aceitas:",
|
|
306890
|
+
" \xBB Rejected:": " \xBB Rejeitadas:",
|
|
306891
|
+
" \xBB Modified:": " \xBB Modificadas:",
|
|
306892
|
+
" Overall Agreement Rate:": " Taxa Geral de Acordo:",
|
|
306893
|
+
"No tool calls have been made in this session.": "Nenhuma chamada de ferramenta foi feita nesta sess\xE3o.",
|
|
306894
|
+
"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.",
|
|
306895
|
+
// ============================================================================
|
|
306896
|
+
// Command Format Migration
|
|
306897
|
+
// ============================================================================
|
|
306898
|
+
"Command Format Migration": "Migra\xE7\xE3o de Formato de Comando",
|
|
306899
|
+
"Found {{count}} TOML command file:": "Encontrado {{count}} arquivo de comando TOML:",
|
|
306900
|
+
"Found {{count}} TOML command files:": "Encontrados {{count}} arquivos de comando TOML:",
|
|
306901
|
+
"... and {{count}} more": "... e mais {{count}}",
|
|
306902
|
+
"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?",
|
|
306903
|
+
"(Backups will be created and original files will be preserved)": "(Backups ser\xE3o criados e arquivos originais ser\xE3o preservados)",
|
|
306904
|
+
// ============================================================================
|
|
306905
|
+
// Loading Phrases
|
|
306906
|
+
// ============================================================================
|
|
306907
|
+
"Waiting for user confirmation...": "Aguardando confirma\xE7\xE3o do usu\xE1rio...",
|
|
306908
|
+
"(esc to cancel, {{time}})": "(esc para cancelar, {{time}})",
|
|
306909
|
+
WITTY_LOADING_PHRASES: [
|
|
306910
|
+
"Estou com sorte",
|
|
306911
|
+
"Enviando maravilhas...",
|
|
306912
|
+
"Pintando os serifos de volta...",
|
|
306913
|
+
"Navegando pelo mofo limoso...",
|
|
306914
|
+
"Consultando os esp\xEDritos digitais...",
|
|
306915
|
+
"Reticulando splines...",
|
|
306916
|
+
"Aquecendo os hamsters da IA...",
|
|
306917
|
+
"Perguntando \xE0 concha m\xE1gica...",
|
|
306918
|
+
"Gerando r\xE9plica espirituosa...",
|
|
306919
|
+
"Polindo os algoritmos...",
|
|
306920
|
+
"N\xE3o apresse a perfei\xE7\xE3o (ou meu c\xF3digo)...",
|
|
306921
|
+
"Preparando bytes frescos...",
|
|
306922
|
+
"Contando el\xE9trons...",
|
|
306923
|
+
"Engajando processadores cognitivos...",
|
|
306924
|
+
"Verificando erros de sintaxe no universo...",
|
|
306925
|
+
"Um momento, otimizando o humor...",
|
|
306926
|
+
"Embaralhando piadas...",
|
|
306927
|
+
"Desembara\xE7ando redes neurais...",
|
|
306928
|
+
"Compilando brilhantismo...",
|
|
306929
|
+
"Carregando humor.exe...",
|
|
306930
|
+
"Invocando a nuvem da sabedoria...",
|
|
306931
|
+
"Preparando uma resposta espirituosa...",
|
|
306932
|
+
"S\xF3 um segundo, estou depurando a realidade...",
|
|
306933
|
+
"Confundindo as op\xE7\xF5es...",
|
|
306934
|
+
"Sintonizando as frequ\xEAncias c\xF3smicas...",
|
|
306935
|
+
"Criando uma resposta digna da sua paci\xEAncia...",
|
|
306936
|
+
"Compilando os 1s e 0s...",
|
|
306937
|
+
"Resolvendo depend\xEAncias... e crises existenciais...",
|
|
306938
|
+
"Desfragmentando mem\xF3rias... tanto RAM quanto pessoais...",
|
|
306939
|
+
"Reiniciando o m\xF3dulo de humor...",
|
|
306940
|
+
"Fazendo cache do essencial (principalmente memes de gatos)...",
|
|
306941
|
+
"Otimizando para velocidade absurda",
|
|
306942
|
+
"Trocando bits... n\xE3o conte para os bytes...",
|
|
306943
|
+
"Coletando lixo... volto j\xE1...",
|
|
306944
|
+
"Montando a internet...",
|
|
306945
|
+
"Convertendo caf\xE9 em c\xF3digo...",
|
|
306946
|
+
"Atualizando a sintaxe da realidade...",
|
|
306947
|
+
"Reconectando as sinapses...",
|
|
306948
|
+
"Procurando um ponto e v\xEDrgula perdido...",
|
|
306949
|
+
"Lubrificando as engrenagens da m\xE1quina...",
|
|
306950
|
+
"Pr\xE9-aquecendo os servidores...",
|
|
306951
|
+
"Calibrando o capacitor de fluxo...",
|
|
306952
|
+
"Engajando o motor de improbabilidade...",
|
|
306953
|
+
"Canalizando a For\xE7a...",
|
|
306954
|
+
"Alinhando as estrelas para uma resposta ideal...",
|
|
306955
|
+
"Assim dizemos todos...",
|
|
306956
|
+
"Carregando a pr\xF3xima grande ideia...",
|
|
306957
|
+
"S\xF3 um momento, estou na zona...",
|
|
306958
|
+
"Preparando para deslumbr\xE1-lo com brilhantismo...",
|
|
306959
|
+
"S\xF3 um tique, estou polindo minha intelig\xEAncia...",
|
|
306960
|
+
"Segure firme, estou criando uma obra-prima...",
|
|
306961
|
+
"S\xF3 um instante, estou depurando o universo...",
|
|
306962
|
+
"S\xF3 um momento, estou alinhando os pixels...",
|
|
306963
|
+
"S\xF3 um segundo, estou otimizando o humor...",
|
|
306964
|
+
"S\xF3 um momento, estou ajustando os algoritmos...",
|
|
306965
|
+
"Velocidade de dobra engajada...",
|
|
306966
|
+
"Minerando mais cristais de Dilithium...",
|
|
306967
|
+
"N\xE3o entre em p\xE2nico...",
|
|
306968
|
+
"Seguindo o coelho branco...",
|
|
306969
|
+
"A verdade est\xE1 l\xE1 fora... em algum lugar...",
|
|
306970
|
+
"Soprando o cartucho...",
|
|
306971
|
+
"Carregando... Fa\xE7a um barrel roll!",
|
|
306972
|
+
"Aguardando o respawn...",
|
|
306973
|
+
"Terminando a Kessel Run em menos de 12 parsecs...",
|
|
306974
|
+
"O bolo n\xE3o \xE9 uma mentira, s\xF3 ainda est\xE1 carregando...",
|
|
306975
|
+
"Mexendo na tela de cria\xE7\xE3o de personagem...",
|
|
306976
|
+
"S\xF3 um momento, estou encontrando o meme certo...",
|
|
306977
|
+
"Pressionando 'A' para continuar...",
|
|
306978
|
+
"Pastoreando gatos digitais...",
|
|
306979
|
+
"Polindo os pixels...",
|
|
306980
|
+
"Encontrando um trocadilho adequado para a tela de carregamento...",
|
|
306981
|
+
"Distraindo voc\xEA com esta frase espirituosa...",
|
|
306982
|
+
"Quase l\xE1... provavelmente...",
|
|
306983
|
+
"Nossos hamsters est\xE3o trabalhando o mais r\xE1pido que podem...",
|
|
306984
|
+
"Dando um tapinha na cabe\xE7a do Cloudy...",
|
|
306985
|
+
"Acariciando o gato...",
|
|
306986
|
+
"Dando um Rickroll no meu chefe...",
|
|
306987
|
+
"Never gonna give you up, never gonna let you down...",
|
|
306988
|
+
"Tocando o baixo...",
|
|
306989
|
+
"Provando as amoras...",
|
|
306990
|
+
"Estou indo longe, estou indo pela velocidade...",
|
|
306991
|
+
"Isso \xE9 vida real? Ou \xE9 apenas fantasia?...",
|
|
306992
|
+
"Tenho um bom pressentimento sobre isso...",
|
|
306993
|
+
"Cutucando o urso...",
|
|
306994
|
+
"Fazendo pesquisa sobre os \xFAltimos memes...",
|
|
306995
|
+
"Descobrindo como tornar isso mais espirituoso...",
|
|
306996
|
+
"Hmmm... deixe-me pensar...",
|
|
306997
|
+
"O que voc\xEA chama de um peixe sem olhos? Um pxe...",
|
|
306998
|
+
"Por que o computador foi \xE0 terapia? Porque tinha muitos bytes...",
|
|
306999
|
+
"Por que programadores n\xE3o gostam da natureza? Porque tem muitos bugs...",
|
|
307000
|
+
"Por que programadores preferem o modo escuro? Porque a luz atrai bugs...",
|
|
307001
|
+
"Por que o desenvolvedor faliu? Porque usou todo o seu cache...",
|
|
307002
|
+
"O que voc\xEA pode fazer com um l\xE1pis quebrado? Nada, ele n\xE3o tem ponta...",
|
|
307003
|
+
"Aplicando manuten\xE7\xE3o percussiva...",
|
|
307004
|
+
"Procurando a orienta\xE7\xE3o correta do USB...",
|
|
307005
|
+
"Garantindo que a fuma\xE7a m\xE1gica permane\xE7a dentro dos fios...",
|
|
307006
|
+
"Tentando sair do Vim...",
|
|
307007
|
+
"Girando a roda do hamster...",
|
|
307008
|
+
"Isso n\xE3o \xE9 um bug, \xE9 um recurso n\xE3o documentado...",
|
|
307009
|
+
"Engajar.",
|
|
307010
|
+
"Eu voltarei... com uma resposta.",
|
|
307011
|
+
"Meu outro processo \xE9 uma TARDIS...",
|
|
307012
|
+
"Comungando com o esp\xEDrito da m\xE1quina...",
|
|
307013
|
+
"Deixando os pensamentos marinarem...",
|
|
307014
|
+
"Lembrei agora onde coloquei minhas chaves...",
|
|
307015
|
+
"Ponderando a orbe...",
|
|
307016
|
+
"Eu vi coisas que voc\xEAs n\xE3o acreditariam... como um usu\xE1rio que l\xEA mensagens de carregamento.",
|
|
307017
|
+
"Iniciando olhar pensativo...",
|
|
307018
|
+
"Qual \xE9 o lanche favorito de um computador? Microchips.",
|
|
307019
|
+
"Por que desenvolvedores Java usam \xF3culos? Porque eles n\xE3o C#.",
|
|
307020
|
+
"Carregando o laser... pew pew!",
|
|
307021
|
+
"Dividindo por zero... s\xF3 brincando!",
|
|
307022
|
+
"Procurando por um supervisor adulto... digo, processando.",
|
|
307023
|
+
"Fazendo bip boop.",
|
|
307024
|
+
"Buffering... porque at\xE9 as IAs precisam de um momento.",
|
|
307025
|
+
"Entrela\xE7ando part\xEDculas qu\xE2nticas para uma resposta mais r\xE1pida...",
|
|
307026
|
+
"Polindo o cromo... nos algoritmos.",
|
|
307027
|
+
"Voc\xEA n\xE3o est\xE1 entretido? (Trabalhando nisso!)",
|
|
307028
|
+
"Invocando os gremlins do c\xF3digo... para ajudar, \xE9 claro.",
|
|
307029
|
+
"S\xF3 esperando o som da conex\xE3o discada terminar...",
|
|
307030
|
+
"Recalibrando o humor\xF4metro.",
|
|
307031
|
+
"Minha outra tela de carregamento \xE9 ainda mais engra\xE7ada.",
|
|
307032
|
+
"Tenho quase certeza que tem um gato andando no teclado em algum lugar...",
|
|
307033
|
+
"Aumentando... Aumentando... Ainda carregando.",
|
|
307034
|
+
"N\xE3o \xE9 um bug, \xE9 um recurso... desta tela de carregamento.",
|
|
307035
|
+
"Voc\xEA j\xE1 tentou desligar e ligar de novo? (A tela de carregamento, n\xE3o eu.)",
|
|
307036
|
+
"Construindo pilares adicionais..."
|
|
307037
|
+
],
|
|
307038
|
+
// ============================================================================
|
|
307039
|
+
// Extension Settings Input
|
|
307040
|
+
// ============================================================================
|
|
307041
|
+
"Enter value...": "Digite o valor...",
|
|
307042
|
+
"Enter sensitive value...": "Digite o valor sens\xEDvel...",
|
|
307043
|
+
"Press Enter to submit, Escape to cancel": "Pressione Enter para enviar, Escape para cancelar",
|
|
307044
|
+
// ============================================================================
|
|
307045
|
+
// Command Migration Tool
|
|
307046
|
+
// ============================================================================
|
|
307047
|
+
"Markdown file already exists: {{filename}}": "Arquivo Markdown j\xE1 existe: {{filename}}",
|
|
307048
|
+
"TOML Command Format Deprecation Notice": "Aviso de Obsolesc\xEAncia do Formato de Comando TOML",
|
|
307049
|
+
"Found {{count}} command file(s) in TOML format:": "Encontrado(s) {{count}} arquivo(s) de comando no formato TOML:",
|
|
307050
|
+
"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.",
|
|
307051
|
+
"Markdown format is more readable and easier to edit.": "O formato Markdown \xE9 mais leg\xEDvel e f\xE1cil de editar.",
|
|
307052
|
+
"You can migrate these files automatically using:": "Voc\xEA pode migrar esses arquivos automaticamente usando:",
|
|
307053
|
+
"Or manually convert each file:": "Ou converter manualmente cada arquivo:",
|
|
307054
|
+
'TOML: prompt = "..." / description = "..."': 'TOML: prompt = "..." / description = "..."',
|
|
307055
|
+
"Markdown: YAML frontmatter + content": "Markdown: YAML frontmatter + conte\xFAdo",
|
|
307056
|
+
"The migration tool will:": "A ferramenta de migra\xE7\xE3o ir\xE1:",
|
|
307057
|
+
"Convert TOML files to Markdown": "Converter arquivos TOML para Markdown",
|
|
307058
|
+
"Create backups of original files": "Criar backups dos arquivos originais",
|
|
307059
|
+
"Preserve all command functionality": "Preservar toda a funcionalidade do comando",
|
|
307060
|
+
"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.",
|
|
307061
|
+
// ============================================================================
|
|
307062
|
+
// Extensions - Explore Command
|
|
307063
|
+
// ============================================================================
|
|
307064
|
+
"Open extensions page in your browser": "Abrir p\xE1gina de extens\xF5es no seu navegador",
|
|
307065
|
+
"Unknown extensions source: {{source}}.": "Fonte de extens\xF5es desconhecida: {{source}}.",
|
|
307066
|
+
"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)",
|
|
307067
|
+
"View available extensions at {{url}}": "Ver extens\xF5es dispon\xEDveis em {{url}}",
|
|
307068
|
+
"Opening extensions page in your browser: {{url}}": "Abrindo p\xE1gina de extens\xF5es no seu navegador: {{url}}",
|
|
307069
|
+
"Failed to open browser. Check out the extensions gallery at {{url}}": "Falha ao abrir o navegador. Confira a galeria de extens\xF5es em {{url}}"
|
|
307070
|
+
};
|
|
307071
|
+
}
|
|
307072
|
+
});
|
|
307073
|
+
|
|
305291
307074
|
// packages/cli/src/i18n/locales/zh.js
|
|
305292
307075
|
var zh_exports = {};
|
|
305293
307076
|
__export(zh_exports, {
|
|
@@ -305678,6 +307461,17 @@ var init_zh = __esm({
|
|
|
305678
307461
|
"Update all extensions.": "\u66F4\u65B0\u6240\u6709\u6269\u5C55\u3002",
|
|
305679
307462
|
"Either an extension name or --all must be provided": "\u5FC5\u987B\u63D0\u4F9B\u6269\u5C55\u540D\u79F0\u6216 --all",
|
|
305680
307463
|
"Lists installed extensions.": "\u5217\u51FA\u5DF2\u5B89\u88C5\u7684\u6269\u5C55\u3002",
|
|
307464
|
+
"Path:": "\u8DEF\u5F84\uFF1A",
|
|
307465
|
+
"Source:": "\u6765\u6E90\uFF1A",
|
|
307466
|
+
"Type:": "\u7C7B\u578B\uFF1A",
|
|
307467
|
+
"Ref:": "\u5F15\u7528\uFF1A",
|
|
307468
|
+
"Release tag:": "\u53D1\u5E03\u6807\u7B7E\uFF1A",
|
|
307469
|
+
"Enabled (User):": "\u5DF2\u542F\u7528\uFF08\u7528\u6237\uFF09\uFF1A",
|
|
307470
|
+
"Enabled (Workspace):": "\u5DF2\u542F\u7528\uFF08\u5DE5\u4F5C\u533A\uFF09\uFF1A",
|
|
307471
|
+
"Context files:": "\u4E0A\u4E0B\u6587\u6587\u4EF6\uFF1A",
|
|
307472
|
+
"Skills:": "\u6280\u80FD\uFF1A",
|
|
307473
|
+
"Agents:": "\u4EE3\u7406\uFF1A",
|
|
307474
|
+
"MCP servers:": "MCP \u670D\u52A1\u5668\uFF1A",
|
|
305681
307475
|
"Link extension failed to install.": "\u94FE\u63A5\u6269\u5C55\u5B89\u88C5\u5931\u8D25\u3002",
|
|
305682
307476
|
'Extension "{{name}}" linked successfully and enabled.': '\u6269\u5C55 "{{name}}" \u94FE\u63A5\u6210\u529F\u5E76\u5DF2\u542F\u7528\u3002',
|
|
305683
307477
|
"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",
|
|
@@ -305735,18 +307529,19 @@ var init_zh = __esm({
|
|
|
305735
307529
|
// ============================================================================
|
|
305736
307530
|
// Commands - Language
|
|
305737
307531
|
// ============================================================================
|
|
305738
|
-
"Invalid language. Available:
|
|
307532
|
+
"Invalid language. Available: {{options}}": "\u65E0\u6548\u7684\u8BED\u8A00\u3002\u53EF\u7528\u9009\u9879\uFF1A{{options}}",
|
|
305739
307533
|
"Language subcommands do not accept additional arguments.": "\u8BED\u8A00\u5B50\u547D\u4EE4\u4E0D\u63A5\u53D7\u989D\u5916\u53C2\u6570",
|
|
305740
307534
|
"Current UI language: {{lang}}": "\u5F53\u524D UI \u8BED\u8A00\uFF1A{{lang}}",
|
|
305741
307535
|
"Current LLM output language: {{lang}}": "\u5F53\u524D LLM \u8F93\u51FA\u8BED\u8A00\uFF1A{{lang}}",
|
|
305742
307536
|
"LLM output language not set": "\u672A\u8BBE\u7F6E LLM \u8F93\u51FA\u8BED\u8A00",
|
|
305743
307537
|
"Set UI language": "\u8BBE\u7F6E UI \u8BED\u8A00",
|
|
305744
307538
|
"Set LLM output language": "\u8BBE\u7F6E LLM \u8F93\u51FA\u8BED\u8A00",
|
|
305745
|
-
"Usage: /language ui [
|
|
307539
|
+
"Usage: /language ui [{{options}}]": "\u7528\u6CD5\uFF1A/language ui [{{options}}]",
|
|
305746
307540
|
"Usage: /language output <language>": "\u7528\u6CD5\uFF1A/language output <\u8BED\u8A00>",
|
|
305747
307541
|
"Example: /language output \u4E2D\u6587": "\u793A\u4F8B\uFF1A/language output \u4E2D\u6587",
|
|
305748
307542
|
"Example: /language output English": "\u793A\u4F8B\uFF1A/language output English",
|
|
305749
307543
|
"Example: /language output \u65E5\u672C\u8A9E": "\u793A\u4F8B\uFF1A/language output \u65E5\u672C\u8A9E",
|
|
307544
|
+
"Example: /language output Portugu\xEAs": "\u793A\u4F8B\uFF1A/language output Portugu\xEAs",
|
|
305750
307545
|
"UI language changed to {{lang}}": "UI \u8BED\u8A00\u5DF2\u66F4\u6539\u4E3A {{lang}}",
|
|
305751
307546
|
"LLM output language set to {{lang}}": "LLM \u8F93\u51FA\u8BED\u8A00\u5DF2\u8BBE\u7F6E\u4E3A {{lang}}",
|
|
305752
307547
|
"LLM output language rule file generated at {{path}}": "LLM \u8F93\u51FA\u8BED\u8A00\u89C4\u5219\u6587\u4EF6\u5DF2\u751F\u6210\u4E8E {{path}}",
|
|
@@ -305756,10 +307551,7 @@ var init_zh = __esm({
|
|
|
305756
307551
|
"Available subcommands:": "\u53EF\u7528\u7684\u5B50\u547D\u4EE4\uFF1A",
|
|
305757
307552
|
"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",
|
|
305758
307553
|
"Available options:": "\u53EF\u7528\u9009\u9879\uFF1A",
|
|
305759
|
-
"
|
|
305760
|
-
" - en-US: English": " - en-US: English",
|
|
305761
|
-
"Set UI language to Simplified Chinese (zh-CN)": "\u5C06 UI \u8BED\u8A00\u8BBE\u7F6E\u4E3A\u7B80\u4F53\u4E2D\u6587 (zh-CN)",
|
|
305762
|
-
"Set UI language to English (en-US)": "\u5C06 UI \u8BED\u8A00\u8BBE\u7F6E\u4E3A\u82F1\u8BED (en-US)",
|
|
307554
|
+
"Set UI language to {{name}}": "\u5C06 UI \u8BED\u8A00\u8BBE\u7F6E\u4E3A {{name}}",
|
|
305763
307555
|
// ============================================================================
|
|
305764
307556
|
// Commands - Approval Mode
|
|
305765
307557
|
// ============================================================================
|
|
@@ -342508,7 +344300,7 @@ var patchConsole = /* @__PURE__ */ __name((callback) => {
|
|
|
342508
344300
|
var dist_default2 = patchConsole;
|
|
342509
344301
|
|
|
342510
344302
|
// node_modules/ink/build/ink.js
|
|
342511
|
-
var
|
|
344303
|
+
var import_constants32 = __toESM(require_constants12(), 1);
|
|
342512
344304
|
|
|
342513
344305
|
// node_modules/yoga-layout/dist/src/index.js
|
|
342514
344306
|
init_esbuild_shims();
|
|
@@ -344571,7 +346363,7 @@ __name(wrapAnsi, "wrapAnsi");
|
|
|
344571
346363
|
// node_modules/ink/build/reconciler.js
|
|
344572
346364
|
init_esbuild_shims();
|
|
344573
346365
|
var import_react_reconciler = __toESM(require_react_reconciler(), 1);
|
|
344574
|
-
var
|
|
346366
|
+
var import_constants31 = __toESM(require_constants12(), 1);
|
|
344575
346367
|
import process16 from "node:process";
|
|
344576
346368
|
var import_react = __toESM(require_react(), 1);
|
|
344577
346369
|
|
|
@@ -345542,7 +347334,7 @@ var cleanupYogaNode = /* @__PURE__ */ __name((node) => {
|
|
|
345542
347334
|
node?.unsetMeasureFunc();
|
|
345543
347335
|
node?.freeRecursive();
|
|
345544
347336
|
}, "cleanupYogaNode");
|
|
345545
|
-
var currentUpdatePriority =
|
|
347337
|
+
var currentUpdatePriority = import_constants31.NoEventPriority;
|
|
345546
347338
|
var currentRootNode;
|
|
345547
347339
|
var reconciler_default = (0, import_react_reconciler.default)({
|
|
345548
347340
|
getRootHostContext: /* @__PURE__ */ __name(() => ({
|
|
@@ -345699,10 +347491,10 @@ var reconciler_default = (0, import_react_reconciler.default)({
|
|
|
345699
347491
|
},
|
|
345700
347492
|
getCurrentUpdatePriority: /* @__PURE__ */ __name(() => currentUpdatePriority, "getCurrentUpdatePriority"),
|
|
345701
347493
|
resolveUpdatePriority() {
|
|
345702
|
-
if (currentUpdatePriority !==
|
|
347494
|
+
if (currentUpdatePriority !== import_constants31.NoEventPriority) {
|
|
345703
347495
|
return currentUpdatePriority;
|
|
345704
347496
|
}
|
|
345705
|
-
return
|
|
347497
|
+
return import_constants31.DefaultEventPriority;
|
|
345706
347498
|
},
|
|
345707
347499
|
maySuspendCommit() {
|
|
345708
347500
|
return false;
|
|
@@ -348220,7 +350012,7 @@ var Ink = class {
|
|
|
348220
350012
|
this.fullStaticOutput = "";
|
|
348221
350013
|
this.container = reconciler_default.createContainer(
|
|
348222
350014
|
this.rootNode,
|
|
348223
|
-
|
|
350015
|
+
import_constants32.LegacyRoot,
|
|
348224
350016
|
null,
|
|
348225
350017
|
false,
|
|
348226
350018
|
null,
|
|
@@ -348675,34 +350467,17 @@ init_settings();
|
|
|
348675
350467
|
|
|
348676
350468
|
// packages/cli/src/i18n/index.ts
|
|
348677
350469
|
init_esbuild_shims();
|
|
350470
|
+
init_languages();
|
|
348678
350471
|
import * as fs80 from "node:fs";
|
|
348679
350472
|
import * as path83 from "node:path";
|
|
348680
350473
|
import { fileURLToPath as fileURLToPath8, pathToFileURL as pathToFileURL2 } from "node:url";
|
|
348681
350474
|
import { homedir as homedir18 } from "node:os";
|
|
348682
350475
|
|
|
348683
|
-
// packages/cli/src/i18n/languages.ts
|
|
348684
|
-
init_esbuild_shims();
|
|
348685
|
-
var SUPPORTED_LANGUAGES = [
|
|
348686
|
-
{
|
|
348687
|
-
code: "en",
|
|
348688
|
-
id: "en-US",
|
|
348689
|
-
fullName: "English"
|
|
348690
|
-
},
|
|
348691
|
-
{
|
|
348692
|
-
code: "zh",
|
|
348693
|
-
id: "zh-CN",
|
|
348694
|
-
fullName: "Chinese"
|
|
348695
|
-
}
|
|
348696
|
-
];
|
|
348697
|
-
function getLanguageNameFromLocale(locale) {
|
|
348698
|
-
const lang = SUPPORTED_LANGUAGES.find((l3) => l3.code === locale);
|
|
348699
|
-
return lang?.fullName || "English";
|
|
348700
|
-
}
|
|
348701
|
-
__name(getLanguageNameFromLocale, "getLanguageNameFromLocale");
|
|
348702
|
-
|
|
348703
350476
|
// import("./locales/**/*.js") in packages/cli/src/i18n/index.ts
|
|
348704
350477
|
var globImport_locales_js = __glob({
|
|
348705
350478
|
"./locales/en.js": () => Promise.resolve().then(() => (init_en3(), en_exports)),
|
|
350479
|
+
"./locales/ja.js": () => Promise.resolve().then(() => (init_ja(), ja_exports)),
|
|
350480
|
+
"./locales/pt.js": () => Promise.resolve().then(() => (init_pt(), pt_exports)),
|
|
348706
350481
|
"./locales/zh.js": () => Promise.resolve().then(() => (init_zh(), zh_exports))
|
|
348707
350482
|
});
|
|
348708
350483
|
|
|
@@ -348722,11 +350497,16 @@ var getLocalePath = /* @__PURE__ */ __name((lang, useUserDir = false) => {
|
|
|
348722
350497
|
}, "getLocalePath");
|
|
348723
350498
|
function detectSystemLanguage() {
|
|
348724
350499
|
const envLang = process.env["RDMind_LANG"] || process.env["LANG"];
|
|
348725
|
-
if (envLang
|
|
348726
|
-
|
|
350500
|
+
if (envLang) {
|
|
350501
|
+
for (const lang of SUPPORTED_LANGUAGES) {
|
|
350502
|
+
if (envLang.startsWith(lang.code)) return lang.code;
|
|
350503
|
+
}
|
|
350504
|
+
}
|
|
348727
350505
|
try {
|
|
348728
350506
|
const locale = Intl.DateTimeFormat().resolvedOptions().locale;
|
|
348729
|
-
|
|
350507
|
+
for (const lang of SUPPORTED_LANGUAGES) {
|
|
350508
|
+
if (locale.startsWith(lang.code)) return lang.code;
|
|
350509
|
+
}
|
|
348730
350510
|
} catch {
|
|
348731
350511
|
}
|
|
348732
350512
|
return "en";
|
|
@@ -349449,26 +351229,26 @@ function extensionToOutputString(extension, extensionManager, workspaceDir, inli
|
|
|
349449
351229
|
const status = workspaceEnabled ? import_chalk5.default.green("\u2713") : import_chalk5.default.red("\u2717");
|
|
349450
351230
|
let output = `${inline2 ? "" : status} ${extension.config.name} (${extension.config.version})`;
|
|
349451
351231
|
output += `
|
|
349452
|
-
Path: ${extension.path}`;
|
|
351232
|
+
${t4("Path:")} ${extension.path}`;
|
|
349453
351233
|
if (extension.installMetadata) {
|
|
349454
351234
|
output += `
|
|
349455
|
-
Source: ${extension.installMetadata.source} (Type: ${extension.installMetadata.type})`;
|
|
351235
|
+
${t4("Source:")} ${extension.installMetadata.source} (${t4("Type:")} ${extension.installMetadata.type})`;
|
|
349456
351236
|
if (extension.installMetadata.ref) {
|
|
349457
351237
|
output += `
|
|
349458
|
-
Ref: ${extension.installMetadata.ref}`;
|
|
351238
|
+
${t4("Ref:")} ${extension.installMetadata.ref}`;
|
|
349459
351239
|
}
|
|
349460
351240
|
if (extension.installMetadata.releaseTag) {
|
|
349461
351241
|
output += `
|
|
349462
|
-
Release tag: ${extension.installMetadata.releaseTag}`;
|
|
351242
|
+
${t4("Release tag:")} ${extension.installMetadata.releaseTag}`;
|
|
349463
351243
|
}
|
|
349464
351244
|
}
|
|
349465
351245
|
output += `
|
|
349466
|
-
Enabled (User): ${userEnabled}`;
|
|
351246
|
+
${t4("Enabled (User):")} ${userEnabled}`;
|
|
349467
351247
|
output += `
|
|
349468
|
-
Enabled (Workspace): ${workspaceEnabled}`;
|
|
351248
|
+
${t4("Enabled (Workspace):")} ${workspaceEnabled}`;
|
|
349469
351249
|
if (extension.contextFiles.length > 0) {
|
|
349470
351250
|
output += `
|
|
349471
|
-
Context files
|
|
351251
|
+
${t4("Context files:")}`;
|
|
349472
351252
|
extension.contextFiles.forEach((contextFile) => {
|
|
349473
351253
|
output += `
|
|
349474
351254
|
${contextFile}`;
|
|
@@ -349476,15 +351256,31 @@ function extensionToOutputString(extension, extensionManager, workspaceDir, inli
|
|
|
349476
351256
|
}
|
|
349477
351257
|
if (extension.commands && extension.commands.length > 0) {
|
|
349478
351258
|
output += `
|
|
349479
|
-
Commands
|
|
351259
|
+
${t4("Commands:")}`;
|
|
349480
351260
|
extension.commands.forEach((command2) => {
|
|
349481
351261
|
output += `
|
|
349482
351262
|
/${command2}`;
|
|
349483
351263
|
});
|
|
349484
351264
|
}
|
|
351265
|
+
if (extension.skills && extension.skills.length > 0) {
|
|
351266
|
+
output += `
|
|
351267
|
+
${t4("Skills:")}`;
|
|
351268
|
+
extension.skills.forEach((skill) => {
|
|
351269
|
+
output += `
|
|
351270
|
+
${skill.name}`;
|
|
351271
|
+
});
|
|
351272
|
+
}
|
|
351273
|
+
if (extension.agents && extension.agents.length > 0) {
|
|
351274
|
+
output += `
|
|
351275
|
+
${t4("Agents:")}`;
|
|
351276
|
+
extension.agents.forEach((agent) => {
|
|
351277
|
+
output += `
|
|
351278
|
+
${agent.name}`;
|
|
351279
|
+
});
|
|
351280
|
+
}
|
|
349485
351281
|
if (extension.config.mcpServers) {
|
|
349486
351282
|
output += `
|
|
349487
|
-
MCP servers
|
|
351283
|
+
${t4("MCP servers:")}`;
|
|
349488
351284
|
Object.keys(extension.config.mcpServers).forEach((key) => {
|
|
349489
351285
|
output += `
|
|
349490
351286
|
${key}`;
|
|
@@ -355440,7 +357236,7 @@ __name(getPackageJson, "getPackageJson");
|
|
|
355440
357236
|
// packages/cli/src/utils/version.ts
|
|
355441
357237
|
async function getCliVersion() {
|
|
355442
357238
|
const pkgJson = await getPackageJson();
|
|
355443
|
-
return "0.2.2-alpha.
|
|
357239
|
+
return "0.2.2-alpha.5";
|
|
355444
357240
|
}
|
|
355445
357241
|
__name(getCliVersion, "getCliVersion");
|
|
355446
357242
|
|
|
@@ -363255,7 +365051,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
|
|
|
363255
365051
|
|
|
363256
365052
|
// packages/cli/src/generated/git-commit.ts
|
|
363257
365053
|
init_esbuild_shims();
|
|
363258
|
-
var GIT_COMMIT_INFO2 = "
|
|
365054
|
+
var GIT_COMMIT_INFO2 = "74657a390";
|
|
363259
365055
|
|
|
363260
365056
|
// packages/cli/src/utils/systemInfo.ts
|
|
363261
365057
|
async function getNpmVersion() {
|
|
@@ -366686,6 +368482,7 @@ Write the complete content to the \`${contextFileName}\` file. The output must b
|
|
|
366686
368482
|
// packages/cli/src/ui/commands/languageCommand.ts
|
|
366687
368483
|
init_esbuild_shims();
|
|
366688
368484
|
init_settings();
|
|
368485
|
+
init_languages();
|
|
366689
368486
|
function getCurrentOutputLanguage(context2) {
|
|
366690
368487
|
const settingValue = context2?.services?.settings?.merged?.general?.outputLanguage || OUTPUT_LANGUAGE_AUTO;
|
|
366691
368488
|
const resolved = resolveOutputLanguage(settingValue);
|
|
@@ -366705,7 +368502,8 @@ function parseUiLanguageArg(input) {
|
|
|
366705
368502
|
__name(parseUiLanguageArg, "parseUiLanguageArg");
|
|
366706
368503
|
function formatUiLanguageDisplay(lang) {
|
|
366707
368504
|
const option2 = SUPPORTED_LANGUAGES.find((o3) => o3.code === lang);
|
|
366708
|
-
|
|
368505
|
+
if (!option2) return lang;
|
|
368506
|
+
return option2.nativeName && option2.nativeName !== option2.fullName ? `${option2.nativeName} (${option2.fullName}) [${option2.id}]` : `${option2.fullName} [${option2.id}]`;
|
|
366709
368507
|
}
|
|
366710
368508
|
__name(formatUiLanguageDisplay, "formatUiLanguageDisplay");
|
|
366711
368509
|
async function setUiLanguage(context2, lang) {
|
|
@@ -366815,7 +368613,7 @@ var languageCommand = {
|
|
|
366815
368613
|
messageType: "error",
|
|
366816
368614
|
content: [
|
|
366817
368615
|
t4("Invalid command. Available subcommands:"),
|
|
366818
|
-
` - /language ui [${
|
|
368616
|
+
` - /language ui [${getSupportedLanguageIds()}] - ${t4("Set UI language")}`,
|
|
366819
368617
|
` - /language output <language> - ${t4("Set LLM output language")}`
|
|
366820
368618
|
].join("\n")
|
|
366821
368619
|
};
|
|
@@ -366833,7 +368631,7 @@ var languageCommand = {
|
|
|
366833
368631
|
t4("Current LLM output language: {{lang}}", { lang: outputLangDisplay }),
|
|
366834
368632
|
"",
|
|
366835
368633
|
t4("Available subcommands:"),
|
|
366836
|
-
` /language ui [${
|
|
368634
|
+
` /language ui [${getSupportedLanguageIds()}] - ${t4("Set UI language")}`,
|
|
366837
368635
|
` /language output <language> - ${t4("Set LLM output language")}`
|
|
366838
368636
|
].join("\n")
|
|
366839
368637
|
};
|
|
@@ -366856,12 +368654,12 @@ var languageCommand = {
|
|
|
366856
368654
|
t4("Set UI language"),
|
|
366857
368655
|
"",
|
|
366858
368656
|
t4("Usage: /language ui [{{options}}]", {
|
|
366859
|
-
options:
|
|
368657
|
+
options: getSupportedLanguageIds()
|
|
366860
368658
|
}),
|
|
366861
368659
|
"",
|
|
366862
368660
|
t4("Available options:"),
|
|
366863
368661
|
...SUPPORTED_LANGUAGES.map(
|
|
366864
|
-
(o3) => ` - ${o3.id}: ${
|
|
368662
|
+
(o3) => ` - ${o3.id}: ${o3.nativeName || o3.fullName}`
|
|
366865
368663
|
),
|
|
366866
368664
|
"",
|
|
366867
368665
|
t4(
|
|
@@ -366876,7 +368674,7 @@ var languageCommand = {
|
|
|
366876
368674
|
type: "message",
|
|
366877
368675
|
messageType: "error",
|
|
366878
368676
|
content: t4("Invalid language. Available: {{options}}", {
|
|
366879
|
-
options:
|
|
368677
|
+
options: getSupportedLanguageIds(",")
|
|
366880
368678
|
})
|
|
366881
368679
|
};
|
|
366882
368680
|
}
|
|
@@ -366887,7 +368685,9 @@ var languageCommand = {
|
|
|
366887
368685
|
(lang) => ({
|
|
366888
368686
|
name: lang.id,
|
|
366889
368687
|
get description() {
|
|
366890
|
-
return t4("Set UI language to {{name}}", {
|
|
368688
|
+
return t4("Set UI language to {{name}}", {
|
|
368689
|
+
name: lang.nativeName || lang.fullName
|
|
368690
|
+
});
|
|
366891
368691
|
},
|
|
366892
368692
|
kind: "built-in" /* BUILT_IN */,
|
|
366893
368693
|
action: /* @__PURE__ */ __name(async (context2, args) => {
|
|
@@ -403188,6 +404988,7 @@ __name(ConfigRow, "ConfigRow");
|
|
|
403188
404988
|
function ModelDialog({ onClose }) {
|
|
403189
404989
|
const config2 = (0, import_react85.useContext)(ConfigContext);
|
|
403190
404990
|
const uiState = (0, import_react85.useContext)(UIStateContext);
|
|
404991
|
+
const uiActions = useUIActions();
|
|
403191
404992
|
const settings = (0, import_react85.useContext)(SettingsContext);
|
|
403192
404993
|
const settingsHook = useSettings();
|
|
403193
404994
|
const [errorMessage, setErrorMessage] = (0, import_react85.useState)(null);
|
|
@@ -403220,12 +405021,13 @@ function ModelDialog({ onClose }) {
|
|
|
403220
405021
|
settings.setValue("User" /* User */, "model.name", model);
|
|
403221
405022
|
await config2.refreshAuth("openai" /* USE_OPENAI */);
|
|
403222
405023
|
await config2.setModel(model);
|
|
405024
|
+
uiActions.refreshStatic();
|
|
403223
405025
|
const event = new ModelSlashCommandEvent(model);
|
|
403224
405026
|
logModelSlashCommand(config2, event);
|
|
403225
405027
|
}
|
|
403226
405028
|
onClose();
|
|
403227
405029
|
},
|
|
403228
|
-
[config2, settings, onClose]
|
|
405030
|
+
[config2, settings, onClose, uiActions]
|
|
403229
405031
|
);
|
|
403230
405032
|
const handleXhsSsoConfigComplete = (0, import_react85.useCallback)(
|
|
403231
405033
|
async (xhsSsoConfig) => {
|
|
@@ -403249,12 +405051,13 @@ function ModelDialog({ onClose }) {
|
|
|
403249
405051
|
settings.setValue("User" /* User */, "model.name", xhsSsoConfig.model);
|
|
403250
405052
|
await config2.refreshAuth("xhs-sso" /* XHS_SSO */);
|
|
403251
405053
|
await config2.setModel(xhsSsoConfig.model);
|
|
405054
|
+
uiActions.refreshStatic();
|
|
403252
405055
|
const event = new ModelSlashCommandEvent(xhsSsoConfig.model);
|
|
403253
405056
|
logModelSlashCommand(config2, event);
|
|
403254
405057
|
}
|
|
403255
405058
|
onClose();
|
|
403256
405059
|
},
|
|
403257
|
-
[config2, settings, onClose]
|
|
405060
|
+
[config2, settings, onClose, uiActions]
|
|
403258
405061
|
);
|
|
403259
405062
|
if (authType === "openai" /* USE_OPENAI */) {
|
|
403260
405063
|
return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(OpenAIKeyPrompt, { onSubmit: handleOpenAIConfigSubmit, onCancel: onClose });
|
|
@@ -403356,6 +405159,7 @@ ${baseErrorMessage}`
|
|
|
403356
405159
|
const effectiveModelId = after?.model ?? modelId;
|
|
403357
405160
|
persistModelSelection(settingsHook, effectiveModelId);
|
|
403358
405161
|
persistAuthTypeSelection(settingsHook, effectiveAuthType);
|
|
405162
|
+
uiActions.refreshStatic();
|
|
403359
405163
|
const baseUrl = after?.baseUrl ?? t4("(default)");
|
|
403360
405164
|
const maskedKey = maskApiKey(after?.apiKey);
|
|
403361
405165
|
uiState?.historyManager.addItem(
|
|
@@ -403371,7 +405175,15 @@ API key: ${maskedKey}`
|
|
|
403371
405175
|
}
|
|
403372
405176
|
onClose();
|
|
403373
405177
|
},
|
|
403374
|
-
[
|
|
405178
|
+
[
|
|
405179
|
+
authType,
|
|
405180
|
+
config2,
|
|
405181
|
+
onClose,
|
|
405182
|
+
settingsHook,
|
|
405183
|
+
uiState,
|
|
405184
|
+
setErrorMessage,
|
|
405185
|
+
uiActions
|
|
405186
|
+
]
|
|
403375
405187
|
);
|
|
403376
405188
|
const hasModels = MODEL_OPTIONS.length > 0;
|
|
403377
405189
|
return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
@@ -421522,7 +423334,7 @@ var GeminiAgent = class {
|
|
|
421522
423334
|
name: APPROVAL_MODE_INFO[mode].name,
|
|
421523
423335
|
description: APPROVAL_MODE_INFO[mode].description
|
|
421524
423336
|
}));
|
|
421525
|
-
const version2 = "0.2.2-alpha.
|
|
423337
|
+
const version2 = "0.2.2-alpha.5";
|
|
421526
423338
|
return {
|
|
421527
423339
|
protocolVersion: PROTOCOL_VERSION,
|
|
421528
423340
|
agentInfo: {
|