diff --git a/.github/actions/spelling/allow/apis.txt b/.github/actions/spelling/allow/apis.txt index a21bd62bf..a0c84aab2 100644 --- a/.github/actions/spelling/allow/apis.txt +++ b/.github/actions/spelling/allow/apis.txt @@ -90,6 +90,7 @@ MENUITEMINFOW MINIMIZEBOX MOUSELEAVE mov +MSSTORE MULTIPLEUSE NCHITTEST NCLBUTTONDBLCLK @@ -199,6 +200,8 @@ winstamin wmemcmp wpc wtcli +WSAHOST +WSANO WSF WWH wwinmain diff --git a/src/cascadia/TerminalApp/FreOverlay.cpp b/src/cascadia/TerminalApp/FreOverlay.cpp index dc781413d..9f2d78092 100644 --- a/src/cascadia/TerminalApp/FreOverlay.cpp +++ b/src/cascadia/TerminalApp/FreOverlay.cpp @@ -12,8 +12,10 @@ #include "../inc/RtlHelper.h" #include "AgentPaneLog.h" #include "ShellIntegrationSweep.h" +#include "WindowsPackageManagerFactory.h" #include +#include using namespace winrt::Windows::Foundation; using namespace winrt::Windows::UI::Xaml; @@ -23,6 +25,13 @@ namespace Automation = winrt::Windows::UI::Xaml::Automation; namespace winrt::TerminalApp::implementation { + // ── Static prewarm state (single-flight per process) ──────────── + // See FreOverlay.h for the design contract. Definitions live here + // because C++ requires out-of-line definitions for non-inline static + // class members. + std::mutex FreOverlay::s_prewarmMutex; + winrt::Windows::Foundation::IAsyncAction FreOverlay::s_prewarmAction{ nullptr }; + FreOverlay::FreOverlay() { InitializeComponent(); @@ -316,6 +325,16 @@ namespace winrt::TerminalApp::implementation // "ProgressRing". Automation::AutomationProperties::SetName( SavingProgressRing(), RS_(L"FreOverlay_SettingUp")); + + // ── Pre-warm winget source cache ─────────────────────────────── + // While the user reads the Welcome + Settings pages (typically + // 5-30s), pre-warm winget's source manifest cache so the on-Save + // install skips the slow refresh step. Best-effort, no error UI. + // Save will await any in-flight prewarm before its own winget call + // to keep the two operations serialised. + _MaybeStartPrewarm( + /*copilotMissing*/ !_IsAgentInstalled(L"copilot"), + /*nodeMissing*/ !_IsNodeInstalled()); } // ── Agent selection changed ───────────────────────────────────────── @@ -412,116 +431,736 @@ namespace winrt::TerminalApp::implementation }); } - // ── WinGet install helper ─────────────────────────────────────────── - - IAsyncOperation FreOverlay::_WingetInstallAsync(winrt::hstring packageId) + // ── WinGet source pre-warm ────────────────────────────────────────── + // + // Kick off `winget source update --name winget` in the background as + // soon as the FRE overlay is shown, so that the on-Save `winget install` + // sees a warm source manifest cache and skips the 3-20s refresh step. + // Gated on whether the install would actually run (Copilot or Node + // missing) AND winget being available. Single-flight per process — + // reentrant Initialize() calls and multi-window FRE coalesce onto + // one running prewarm. The Save handler awaits s_prewarmAction before + // its own winget call (see _SaveAndInstallAsync); in practice the + // two winget operations never run concurrently. Exception: if + // _RunPrewarmAsync hits its 120s timeout, it returns while the + // underlying `winget source update` may still be running in the + // background. We accept this tradeoff because killing winget + // mid-write risks corrupting its source DB, and 120s timeouts are + // very rare in practice. A future migration of the prewarm to the + // COM `RefreshPackageCatalogAsync` API would eliminate this race + // entirely. + + void FreOverlay::_MaybeStartPrewarm(bool copilotMissing, bool nodeMissing) { - // Copy packageId before switching threads (coroutine parameter safety) - auto id = std::wstring{ packageId }; + // Gate: nothing to pre-warm if no winget install step will run. + if (!copilotMissing && !nodeMissing) + { + return; + } + if (!_IsWingetInstalled()) + { + return; + } + // Single-flight: first caller wins; later callers find the + // existing IAsyncAction in the slot and bail out. + std::lock_guard lock{ s_prewarmMutex }; + if (s_prewarmAction) + { + return; + } + // _RunPrewarmAsync starts on the calling thread, hops to background + // at its first co_await, and returns the IAsyncAction handle here + // for storage and later co_await by Save. + s_prewarmAction = _RunPrewarmAsync(); + } + + winrt::Windows::Foundation::IAsyncAction FreOverlay::_RunPrewarmAsync() + { + // Hop to background — must never block the UI thread. co_await winrt::resume_background(); - auto cmdline = fmt::format( - L"winget install --id {} --exact --silent " - L"--source winget " - L"--accept-source-agreements --accept-package-agreements " - L"--disable-interactivity", - id); - - // Create a pipe to capture winget's combined stdout+stderr for - // diagnostic logging. The pipe is inheritable so the child - // process writes directly to it. - SECURITY_ATTRIBUTES sa{}; - sa.nLength = sizeof(sa); - sa.bInheritHandle = TRUE; - HANDLE hReadPipe = nullptr, hWritePipe = nullptr; - const bool hasPipe = CreatePipe(&hReadPipe, &hWritePipe, &sa, 0); - if (hasPipe) + try + { + _agentPaneLog("[FRE] Pre-warm: winget source update --name winget"); + + STARTUPINFOW si{}; + si.cb = sizeof(si); + si.dwFlags = STARTF_USESHOWWINDOW; + si.wShowWindow = SW_HIDE; + PROCESS_INFORMATION pi{}; + + // CreateProcessW requires a *writable* cmdline buffer (it may + // mutate the string in-place when parsing). `--disable-interactivity` + // prevents any prompt (e.g. source first-run agreement) from + // hanging the hidden child process forever. + wchar_t cmdline[] = L"winget source update --name winget --disable-interactivity"; + if (!CreateProcessW(nullptr, cmdline, nullptr, nullptr, FALSE, + CREATE_NO_WINDOW, nullptr, nullptr, &si, &pi)) + { + _agentPaneLog("[FRE] Pre-warm: CreateProcess failed err=" + + std::to_string(GetLastError())); + co_return; + } + + // Wait up to 120s. Corporate proxies / cold caches can push + // honest cases past 30s, so we err on the side of patience. + // We deliberately do NOT TerminateProcess on timeout: killing + // winget mid-write can corrupt its source DB. The Save handler + // awaits this whole coroutine, which only completes after + // WaitForSingleObject returns, so even a slow prewarm cannot + // collide with the eventual install. + const DWORD wait = WaitForSingleObject(pi.hProcess, 120000); + DWORD exitCode = 0; + GetExitCodeProcess(pi.hProcess, &exitCode); + CloseHandle(pi.hProcess); + CloseHandle(pi.hThread); + + _agentPaneLog(wait == WAIT_TIMEOUT + ? "[FRE] Pre-warm: still running after 120s (proceeding)" + : "[FRE] Pre-warm: completed exit=" + std::to_string(exitCode)); + } + catch (...) { - // Prevent the read end from being inherited by the child. - SetHandleInformation(hReadPipe, HANDLE_FLAG_INHERIT, 0); + // Pre-warm is strictly best-effort; never let an exception + // escape into the IAsyncAction promise. Save's co_await on + // s_prewarmAction also has its own try/catch as belt-and- + // suspenders, but this is the primary guard. + LOG_CAUGHT_EXCEPTION(); } + } - STARTUPINFOW si{}; - si.cb = sizeof(si); - si.dwFlags = STARTF_USESHOWWINDOW; - si.wShowWindow = SW_HIDE; - if (hasPipe) + // ── WinGet install helper ─────────────────────────────────────────── + // + // Installs a package via the WinGet COM/WinRT API + // (`Microsoft.Management.Deployment.PackageManager`) instead of + // shelling out to `winget.exe`. + // + // Why this matters: + // + // The CLI path doesn't work for us. winget.exe, when launched from + // a packaged GUI parent (which IT is), runs through an App Execution + // Alias activation that breaks stdio inheritance — child writes + // nothing to whatever pipe/file we redirect to. We verified across + // 6 spawn variants (NUL stdin, pipe stdin, GetStdHandle stdin, + // combined vs split pipes, plus `cmd.exe /c "winget … > tempfile 2>&1"`) + // that the captured output is consistently 0 bytes for real failures. + // This is a Microsoft design limitation, not a winget bug: + // packaged-from-packaged stdio inheritance is documented as unsupported + // (see https://github.com/microsoft/winget-cli/issues/504). + // + // The COM API bypasses the alias activation entirely — it calls + // AppInstaller's out-of-proc COM server directly via CoCreateInstance + // (CLSCTX_LOCAL_SERVER, no child process spawn). We get back a + // structured InstallResult with InstallResultStatus, ExtendedErrorCode + // (the same HRESULT that the CLI would have printed), and + // InstallerErrorCode — far better diagnostics than the CLI ever gave + // us, and reliably available from packaged context. + + namespace + { + using namespace winrt::Microsoft::Management::Deployment; + + // Enum-to-string helpers — log values are human-readable instead + // of bare ints, so anyone reading the log can grep the winmd / + // PackageManager.idl directly without an enum reference table. + + constexpr const char* ConnectStatusName(ConnectResultStatus s) noexcept { - si.dwFlags |= STARTF_USESTDHANDLES; - si.hStdOutput = hWritePipe; - si.hStdError = hWritePipe; - si.hStdInput = nullptr; + switch (s) + { + case ConnectResultStatus::Ok: return "Ok"; + case ConnectResultStatus::CatalogError: return "CatalogError"; + case ConnectResultStatus::SourceAgreementsNotAccepted: return "SourceAgreementsNotAccepted"; + default: return "Unknown"; + } } - PROCESS_INFORMATION pi{}; - - auto success = CreateProcessW( - nullptr, - cmdline.data(), - nullptr, nullptr, hasPipe ? TRUE : FALSE, - CREATE_NO_WINDOW, - nullptr, nullptr, &si, &pi); - - // Close the write end in the parent so ReadFile sees EOF - // when the child exits. - if (hWritePipe) + + constexpr const char* FindStatusName(FindPackagesResultStatus s) noexcept { - CloseHandle(hWritePipe); - hWritePipe = nullptr; + switch (s) + { + case FindPackagesResultStatus::Ok: return "Ok"; + case FindPackagesResultStatus::BlockedByPolicy: return "BlockedByPolicy"; + case FindPackagesResultStatus::CatalogError: return "CatalogError"; + case FindPackagesResultStatus::InvalidOptions: return "InvalidOptions"; + case FindPackagesResultStatus::InternalError: return "InternalError"; + default: return "Unknown"; + } } - if (!success) + constexpr const char* InstallStatusName(InstallResultStatus s) noexcept { - _agentPaneLog("[FRE] winget CreateProcess failed: GetLastError=" + std::to_string(GetLastError())); - if (hReadPipe) CloseHandle(hReadPipe); - co_return false; + switch (s) + { + case InstallResultStatus::Ok: return "Ok"; + case InstallResultStatus::BlockedByPolicy: return "BlockedByPolicy"; + case InstallResultStatus::CatalogError: return "CatalogError"; + case InstallResultStatus::InternalError: return "InternalError"; + case InstallResultStatus::InvalidOptions: return "InvalidOptions"; + case InstallResultStatus::DownloadError: return "DownloadError"; + case InstallResultStatus::InstallError: return "InstallError"; + case InstallResultStatus::ManifestError: return "ManifestError"; + case InstallResultStatus::NoApplicableInstallers: return "NoApplicableInstallers"; + case InstallResultStatus::NoApplicableUpgrade: return "NoApplicableUpgrade"; + case InstallResultStatus::PackageAgreementsNotAccepted: return "PackageAgreementsNotAccepted"; + default: return "Unknown"; + } } - // Wait for the child process first, then drain any remaining - // pipe output. This avoids the synchronous ReadFile blocking - // indefinitely if winget spawns child processes that inherit - // the pipe handle and outlive winget itself. - WaitForSingleObject(pi.hProcess, 300000); // 5 min timeout - - // Drain pipe output (non-blocking — child has exited, so the - // write end is closed and ReadFile will see EOF promptly). - // Keep only the last ~500 bytes to cap memory usage. - static constexpr size_t kMaxOutput = 500; - std::string output; - if (hasPipe && hReadPipe) + // Copy winget's own diagnostic logs from AppInstaller's DiagOutputDir + // into our per-version `winget\` subfolder, so the bug-report zip + // picks them up alongside `terminal-agent-pane.log`. + // + // Why this matters: our [FRE] log only records the final + // InstallResultStatus + HRESULT + InstallerErrorCode. The winget + // COM API internally writes a much more detailed trace (HTTP + // request URLs, retry attempts, hash/signature verification, + // installer-exec arguments, MSI verbose output) to its own log + // files. When `winget install GitHub.Copilot` fails on a user's + // box, that detailed trace is what tells us *why* — without it, + // bug reports come down to "install failed, here's a generic + // HRESULT". Colocating the logs gives us triage-grade diagnostics. + // + // Filtering: anything `.log` modified at or after `since` in the + // DiagOutputDir is copied. We avoid filename-prefix assumptions + // (winget has historically used `WinGet-*.log`, but a future + // release could add `WinGetCOM-*.log` or similar and we'd + // silently miss it). + // + // Defensive size caps: skip any single file larger than + // kPerFileCapBytes and abort the loop once kTotalCapBytes have + // been copied. Without these, a stale clock, an aggressive + // verbose-MSI run, or unrelated concurrent winget activity could + // dump tens of MB into our log folder. + // + // DiagOutputDir path is `Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\` + // hardcoded. This package family name has been stable for 5+ + // years; if it ever moves, the helper logs "DiagOutputDir not + // found" and returns — no exception bubbles to the install + // coroutine. + // + // Timeout caveat: when the install path hits our 20-min hard + // cap, winget's underlying installer may still be running when + // we copy its log. The captured file may therefore be + // truncated (missing the very last entries). We do not delay + // copy on timeout because winget can keep writing for an + // arbitrary additional time — a bounded sleep would not + // reliably get the "final" log, just the "slightly less + // truncated" one. Engineers needing the absolutely final + // contents can grab the source files from DiagOutputDir + // directly post-mortem. + // + // noexcept-from-caller: every failure mode (env var missing, + // ACL deny, disk full, file lock race) is swallowed with a log + // line. The install flow never sees an exception from here. + static void _CopyWingetLogsSince(std::filesystem::file_time_type since) noexcept { - char buf[512]; - DWORD bytesRead = 0; - while (ReadFile(hReadPipe, buf, sizeof(buf) - 1, &bytesRead, nullptr) && bytesRead > 0) + try { - buf[bytesRead] = '\0'; - output += buf; - // Keep only the tail - if (output.size() > kMaxOutput * 2) - output = output.substr(output.size() - kMaxOutput); + // Defensive caps. Per-file cap protects against a single + // verbose-MSI log eating our disk; total cap is the + // ceiling across all files in this capture. + constexpr std::uintmax_t kPerFileCapBytes = 25ULL * 1024ULL * 1024ULL; // 25 MB + constexpr std::uintmax_t kTotalCapBytes = 50ULL * 1024ULL * 1024ULL; // 50 MB + + wchar_t localAppData[MAX_PATH]{}; + const DWORD lenWritten = + GetEnvironmentVariableW(L"LOCALAPPDATA", localAppData, MAX_PATH); + // Treat both "missing" (0) and "would have truncated" + // (>= MAX_PATH) as "give up" — a multi-thousand-char + // %LOCALAPPDATA% is unusual enough that capturing logs + // for that user isn't worth the extra alloc dance. + if (lenWritten == 0 || lenWritten >= MAX_PATH) + { + return; + } + const std::filesystem::path diagDir = + std::filesystem::path{ localAppData } / + L"Packages" / + L"Microsoft.DesktopAppInstaller_8wekyb3d8bbwe" / + L"LocalState" / + L"DiagOutputDir"; + + std::error_code ec; + if (!std::filesystem::exists(diagDir, ec) || ec) + { + _agentPaneLog("[FRE] winget DiagOutputDir not present, skipping log capture"); + return; + } + + const auto destDir = ::IntelligentTerminal::LogDirVersioned() / L"winget"; + std::filesystem::create_directories(destDir, ec); + if (ec) + { + return; + } + + int copied = 0; + int skipped = 0; + std::uintmax_t totalBytes = 0; + + // Iterate explicitly with `increment(ec)` instead of + // range-for: the latter's `operator++` can throw on + // filesystem races (file deleted mid-scan, antivirus + // contention), which would unwind out of our noexcept + // contract via the outer catch. Explicit increment lets + // us treat every iteration step as a soft failure that + // skips the entry and continues. + std::filesystem::directory_iterator it{ diagDir, ec }; + const std::filesystem::directory_iterator end{}; + if (ec) + { + _agentPaneLog(fmt::format( + "[FRE] winget log capture: failed to open DiagOutputDir ({})", + ec.message())); + return; + } + while (it != end) + { + const auto entryPath = it->path(); + bool entryHandled = false; + + if (it->is_regular_file(ec) && !ec && + entryPath.extension() == L".log") + { + const auto mtime = std::filesystem::last_write_time(entryPath, ec); + const auto fileSize = !ec ? std::filesystem::file_size(entryPath, ec) : 0; + if (!ec && mtime >= since) + { + if (fileSize > kPerFileCapBytes) + { + _agentPaneLog(fmt::format( + "[FRE] winget log capture: skipping {} (size {} > per-file cap {})", + winrt::to_string(entryPath.filename().wstring()), + fileSize, + kPerFileCapBytes)); + ++skipped; + entryHandled = true; + } + else if (totalBytes + fileSize > kTotalCapBytes) + { + _agentPaneLog(fmt::format( + "[FRE] winget log capture: total cap {} reached after {} files; stopping", + kTotalCapBytes, + copied)); + break; + } + else + { + std::filesystem::copy_file( + entryPath, + destDir / entryPath.filename(), + std::filesystem::copy_options::overwrite_existing, + ec); + if (ec) + { + ++skipped; + } + else + { + ++copied; + totalBytes += fileSize; + } + entryHandled = true; + } + } + } + (void)entryHandled; + ec.clear(); + + it.increment(ec); + if (ec) + { + // Soft-stop on iterator failure — better to + // report partial capture than to throw. + _agentPaneLog(fmt::format( + "[FRE] winget log capture: iterator error ({}); stopping early", + ec.message())); + break; + } + } + + _agentPaneLog(fmt::format( + "[FRE] winget log capture: copied={} skipped={} bytes={} dest={}", + copied, + skipped, + totalBytes, + winrt::to_string(destDir.wstring()))); + } + catch (...) + { + LOG_CAUGHT_EXCEPTION(); } - CloseHandle(hReadPipe); - hReadPipe = nullptr; } + } - DWORD exitCode = 1; - GetExitCodeProcess(pi.hProcess, &exitCode); - CloseHandle(pi.hProcess); - CloseHandle(pi.hThread); + IAsyncOperation FreOverlay::_WingetInstallAsync(winrt::hstring packageId) + { + using namespace winrt::Microsoft::Management::Deployment; + using Kind = FreWingetFailureKind; + + // Capture a weak reference so writes to _lastWinget* are safe even + // if the overlay is destroyed mid-await (e.g. user dismissed the + // window during a long install). + auto weak = get_weak(); + + // Snapshot the install start time before any winget work. Used as + // the cutoff for the post-install DiagOutputDir log capture so we + // pick up every log winget produced for this attempt — including + // long-running install logs that started 10+ minutes ago — and not + // logs from unrelated prior winget activity. + const auto installStartTime = std::filesystem::file_time_type::clock::now(); + + // Helper: persist diagnostic state to the instance (so the caller + // can read it after our co_return), capture any fresh winget logs + // from AppInstaller's DiagOutputDir on failure paths, and return + // the encoded kind. Called from EVERY co_return — the + // success/failure branch lives inside. + // + // Why only-on-failure for the log copy: the bug-report use case + // for the colocated winget logs is "install failed, we need + // triage details". Successful installs don't need the extra + // logs, and copying them anyway would (a) waste a few MB of + // disk per FRE run for no benefit, and (b) silently include any + // unrelated concurrent winget activity captured by the mtime + // window into the bug-report zip (e.g. URLs to private package + // sources the user happened to be browsing in another shell). + auto finish = [&weak, installStartTime](Kind k, int32_t hr, uint32_t installerErr) { + if (auto self = weak.get()) + { + self->_lastWingetHr = hr; + self->_lastWingetInstallerErrorCode = installerErr; + } + if (k != Kind::Success) + { + _CopyWingetLogsSince(installStartTime); + } + return static_cast(k); + }; + + // Copy packageId before switching threads (coroutine parameter safety) + auto id = winrt::hstring{ packageId }; + + // Local diagnostic state. Written to the instance fields only via + // `finish(...)` immediately before each co_return, so the caller + // always sees consistent (kind, hr, installerErr) tuples and a + // stale value never leaks across calls. + int32_t hr = 0; + uint32_t installerErr = 0; - // Log the result — truncate output to avoid unbounded log growth. - if (exitCode != 0) + co_await winrt::resume_background(); + + try { - // Trim trailing whitespace - while (!output.empty() && (output.back() == '\n' || output.back() == '\r' || output.back() == ' ')) - output.pop_back(); - // Cap at 500 chars - if (output.size() > 500) - output = output.substr(output.size() - 500); - _agentPaneLog("[FRE] winget exit=" + std::to_string(exitCode) + " output: " + output); + // ── 1. Activate the out-of-proc PackageManager COM server ── + const PackageManager pm = WindowsPackageManagerFactory::CreatePackageManager(); + + // ── 2. Connect to the winget catalog ── + // Mirror the pattern used by `TerminalPage._FindPackageAsync`: + // up to 3 attempts to absorb transient connection flakes. + // Set AcceptSourceAgreements(true) — equivalent to the CLI's + // --accept-source-agreements; without this, first-time winget + // users (no prior agreement acceptance recorded) would hit + // SourceAgreementsNotAccepted and be unable to install. + auto catalogRef = pm.GetPredefinedPackageCatalog(PredefinedPackageCatalog::OpenWindowsCatalog); + catalogRef.AcceptSourceAgreements(true); + + ConnectResult connectResult{ nullptr }; + for (int attempt = 0; attempt < 3; ++attempt) + { + connectResult = catalogRef.Connect(); + if (connectResult.Status() == ConnectResultStatus::Ok) + { + break; + } + } + if (connectResult.Status() != ConnectResultStatus::Ok) + { + _agentPaneLog(fmt::format( + "[FRE] winget catalog connect failed: {} (status={})", + ConnectStatusName(connectResult.Status()), + static_cast(connectResult.Status()))); + // CatalogError during connect almost always means we + // couldn't reach the catalog server (DNS / TLS / proxy / + // firewall). The 1.8 contract doesn't expose + // ConnectResult.ExtendedErrorCode so we can't whitelist + // here — treat the catalog-error case as Network and + // anything else (SourceAgreementsNotAccepted, future + // statuses) as Generic. + co_return finish(connectResult.Status() == ConnectResultStatus::CatalogError + ? Kind::Network + : Kind::Generic, + hr, installerErr); + } + + // ── 3. Find the package by exact ID ── + auto filter = WindowsPackageManagerFactory::CreatePackageMatchFilter(); + filter.Field(PackageMatchField::Id); + filter.Option(PackageFieldMatchOption::Equals); + filter.Value(id); + + auto findOpts = WindowsPackageManagerFactory::CreateFindPackagesOptions(); + findOpts.Filters().Append(filter); + findOpts.ResultLimit(1); + + const auto findResult = co_await connectResult.PackageCatalog().FindPackagesAsync(findOpts); + + if (findResult.Status() != FindPackagesResultStatus::Ok) + { + _agentPaneLog(fmt::format( + "[FRE] winget FindPackages failed: {} (status={})", + FindStatusName(findResult.Status()), + static_cast(findResult.Status()))); + co_return finish(findResult.Status() == FindPackagesResultStatus::BlockedByPolicy + ? Kind::BlockedByPolicy + : Kind::Generic, + hr, installerErr); + } + if (findResult.Matches().Size() == 0) + { + _agentPaneLog("[FRE] winget package not found: " + winrt::to_string(id)); + co_return finish(Kind::PackageNotFound, hr, installerErr); + } + + const CatalogPackage package = findResult.Matches().GetAt(0).CatalogPackage(); + + // ── 4. Configure install options and kick off install ── + auto installOpts = WindowsPackageManagerFactory::CreateInstallOptions(); + installOpts.AcceptPackageAgreements(true); + installOpts.PackageInstallMode(PackageInstallMode::Silent); + installOpts.PackageInstallScope(PackageInstallScope::Any); + + const auto installOp = pm.InstallPackageAsync(package, installOpts); + + // ── 5. Bounded wait for install to complete ── + // The COM API has no built-in timeout. Without one, a stuck + // broker / unreachable installer would freeze the FRE Save + // flow indefinitely. We allow up to 20 min (observed cold + // installs are ~5-6 min, so 20 min covers the P99 with a + // ~3x safety margin); at the 5 min mark we log a heads-up + // so anyone tailing the log can tell "still running" apart + // from "deadlocked". + constexpr DWORD kInstallSoftWarnMs = 5 * 60 * 1000; // 5 min + constexpr DWORD kInstallHardCapMs = 20 * 60 * 1000; // 20 min + const auto startTick = GetTickCount64(); + bool warnedSoft = false; + while (installOp.Status() == winrt::Windows::Foundation::AsyncStatus::Started) + { + const auto elapsed = GetTickCount64() - startTick; + if (!warnedSoft && elapsed > kInstallSoftWarnMs) + { + _agentPaneLog("[FRE] winget install: still running after 5 min, will hard-cancel at 20 min"); + warnedSoft = true; + } + if (elapsed > kInstallHardCapMs) + { + // Cancel is best-effort — if the installer's already + // running, it may keep going in the background. We + // surface that nuance in the user-facing Timeout + // message (see FreOverlay_InstallError_Timeout). + _agentPaneLog("[FRE] winget install: hard timeout after 20 min, cancelling"); + installOp.Cancel(); + co_return finish(Kind::Timeout, hr, installerErr); + } + co_await winrt::resume_after(std::chrono::milliseconds(500)); + } + const auto installResult = installOp.GetResults(); + + const auto status = installResult.Status(); + const auto exHr = installResult.ExtendedErrorCode(); + const auto rawInstallerErr = installResult.InstallerErrorCode(); + hr = static_cast(exHr); + installerErr = rawInstallerErr; + + if (status != InstallResultStatus::Ok) + { + _agentPaneLog(fmt::format( + "[FRE] winget install failed: {} (status={}) hr=0x{:08X} installerErr={}", + InstallStatusName(status), + static_cast(status), + static_cast(exHr), + rawInstallerErr)); + + Kind kind = Kind::Generic; + switch (status) + { + case InstallResultStatus::BlockedByPolicy: + kind = Kind::BlockedByPolicy; + break; + case InstallResultStatus::NoApplicableInstallers: + kind = Kind::NoCompatibleInstaller; + break; + case InstallResultStatus::DownloadError: + // Network whitelist gates the user-facing "check your + // VPN" message — anything else (hash/cert/disk/AV) + // falls back to Generic so we don't send the user + // chasing the wrong problem. + kind = _IsNetworkLikeHResult(hr) + ? Kind::Network + : Kind::Generic; + break; + case InstallResultStatus::InstallError: + kind = Kind::InstallerFailed; + break; + // CatalogError / InternalError / ManifestError / + // InvalidOptions / NoApplicableUpgrade / + // PackageAgreementsNotAccepted / unknown future values + // → Generic. CatalogError is a special case: it often + // has a winget-specific or network HRESULT attached + // (e.g. APPINSTALLER_CLI_ERROR_BLOCKED_BY_POLICY if the + // catalog is GP-blocked, or a WinINet DNS code if the + // source server is unreachable), so route through the + // full classifier instead of just the network check. + case InstallResultStatus::CatalogError: + kind = _ClassifyWingetHResult(hr); + break; + default: + kind = Kind::Generic; + break; + } + co_return finish(kind, hr, installerErr); + } + + // Surface RebootRequired so the caller / log readers can see + // it. GitHub.Copilot never sets this; some MSI-style packages + // (e.g. Node.js LTS) theoretically might. We still return + // Success because the install itself succeeded — the caller's + // post-install steps (PATH refresh, hook install) may or may + // not work fully until reboot, but that's the caller's call + // and we shouldn't fail an otherwise-successful install. + if (installResult.RebootRequired()) + { + _agentPaneLog("[FRE] winget install: ok (reboot required)"); + } + + co_return finish(Kind::Success, 0, 0); + } + catch (const winrt::hresult_error& e) + { + hr = static_cast(e.code().value); + _agentPaneLog(fmt::format( + "[FRE] winget exception: hr=0x{:08X} msg={}", + static_cast(hr), + winrt::to_string(e.message()))); + // _ClassifyWingetHResult recognizes APPINSTALLER_CLI_ERROR_* + // codes (e.g. 0x8A15003A == BLOCKED_BY_POLICY), so a GP + // block surfaces as Kind::BlockedByPolicy with the + // actionable "contact IT admin" message instead of the + // generic "(error code 0x8A15003A)" fallback. + co_return finish(_ClassifyWingetHResult(hr), hr, installerErr); + } + catch (...) + { + LOG_CAUGHT_EXCEPTION(); + co_return finish(Kind::Generic, hr, installerErr); + } + } + + // Conservative network-class HRESULT whitelist. We list the specific + // WinINet / WinHTTP / Winsock codes that genuinely indicate a network + // problem (DNS failure, connection refused/timed out, TLS handshake + // failure, etc.). We deliberately do NOT include: + // * HTTP-status HRESULTs (0x80190xxx) — HTTP 404 / 403 / 5xx aren't + // "check your VPN" situations, they mean the request reached the + // server. + // * RPC_E_* — those are COM/service activation failures, not network. + // * Whole facility ranges — too easy to misclassify edge cases. + // + // Names in trailing comments are the macros from winhttp.h / wininet.h + // / winsock2.h, kept here so we don't need to pull those headers in. + bool FreOverlay::_IsNetworkLikeHResult(int32_t hr) noexcept + { + switch (static_cast(hr)) + { + // FACILITY_INTERNET (12xxx range) — WinINet & WinHTTP share these + case 0x80072EE2: // ERROR_INTERNET_TIMEOUT / ERROR_WINHTTP_TIMEOUT (12002) + case 0x80072EE7: // ERROR_INTERNET_NAME_NOT_RESOLVED (12007) + case 0x80072EFD: // ERROR_INTERNET_CANNOT_CONNECT (12029) + case 0x80072EFE: // ERROR_INTERNET_CONNECTION_ABORTED (12030) + case 0x80072EFF: // ERROR_INTERNET_CONNECTION_RESET (12031) + case 0x80072F8F: // ERROR_INTERNET_SECURITY_CHANNEL_ERROR (TLS) (12175) + // FACILITY_WIN32 (Winsock 100xx, mapped via HRESULT_FROM_WIN32) + case 0x80072742: // WSAENETDOWN (10050) + case 0x80072743: // WSAENETUNREACH (10051) + case 0x80072744: // WSAENETRESET (10052) + case 0x80072745: // WSAECONNABORTED (10053) + case 0x80072746: // WSAECONNRESET (10054) + case 0x8007274C: // WSAETIMEDOUT (10060) + case 0x8007274D: // WSAECONNREFUSED (10061) + case 0x80072751: // WSAEHOSTUNREACH (10065) + case 0x80072AF9: // WSAHOST_NOT_FOUND (11001) + case 0x80072AFC: // WSANO_DATA (11004) + return true; + default: + return false; + } + } + + // Map a raw HRESULT to the most-specific FreWingetFailureKind we can + // infer. Used in two places: + // * the catch block of _WingetInstallAsync, where winget COM throws + // APPINSTALLER_CLI_ERROR_* codes directly (this is how policy + // blocks surface — winget throws 0x8A15003A *before* it ever + // returns an InstallResult); + // * the CatalogError install-status branch, where the structured + // Status is generic but the ExtendedErrorCode tells us why. + // + // The match order matters. APPINSTALLER_CLI_ERROR_* codes are + // checked first because their meaning is unambiguous; the network + // whitelist comes last as a transport-level fallback. + // + // Code names come from + // https://github.com/microsoft/winget-cli/blob/master/src/AppInstallerSharedLib/Public/AppInstallerErrors.h + // and are kept here as comments so we don't need to take a header + // dependency on the winget-cli repo. + FreOverlay::FreWingetFailureKind FreOverlay::_ClassifyWingetHResult(int32_t hr) noexcept + { + using Kind = FreWingetFailureKind; + switch (static_cast(hr)) + { + // BlockedByPolicy family — group policy disabled winget or a + // specific source/feature. Triggered by setting + // HKLM\SOFTWARE\Policies\Microsoft\Windows\AppInstaller\EnableAppInstaller + // (and friends) to 0. + case 0x8A15003A: // APPINSTALLER_CLI_ERROR_BLOCKED_BY_POLICY + case 0x8A15001B: // APPINSTALLER_CLI_ERROR_MSSTORE_BLOCKED_BY_POLICY + case 0x8A15001C: // APPINSTALLER_CLI_ERROR_MSSTORE_APP_BLOCKED_BY_POLICY + case 0x8A15001D: // APPINSTALLER_CLI_ERROR_EXPERIMENTAL_FEATURE_DISABLED + case 0x8A15010F: // APPINSTALLER_CLI_ERROR_INSTALL_BLOCKED_BY_POLICY (install-phase variant of 0x8A15003A) + return Kind::BlockedByPolicy; + + // Network / download failure codes that winget itself attaches + // (separate from the generic WinINet/Winsock whitelist below). + // INSTALL_NO_NETWORK is winget self-diagnosing "no network"; + // DOWNLOAD_FAILED is the install-phase wrapper around any + // transport error during package download. + case 0x8A150008: // APPINSTALLER_CLI_ERROR_DOWNLOAD_FAILED + case 0x8A150107: // APPINSTALLER_CLI_ERROR_INSTALL_NO_NETWORK + return Kind::Network; + + // Manifest was found but no installer entry matches this + // machine's OS / architecture / scope. Usually surfaces as + // InstallResultStatus::NoApplicableInstallers, but cover the + // exception form for older winget versions / unusual flows. + case 0x8A150010: // APPINSTALLER_CLI_ERROR_NO_APPLICABLE_INSTALLER + return Kind::NoCompatibleInstaller; + + // No manifest with the requested package ID exists in any + // configured source. Usually surfaces as + // findResult.Matches().Size() == 0, but defensive coverage for + // the exception form. + case 0x8A150014: // APPINSTALLER_CLI_ERROR_NO_APPLICATIONS_FOUND + return Kind::PackageNotFound; } - co_return exitCode == 0; + // No winget-specific match — fall back to the transport-level + // network whitelist (DNS / connect / TLS), then Generic. + if (_IsNetworkLikeHResult(hr)) + { + return Kind::Network; + } + return Kind::Generic; } @@ -565,14 +1204,6 @@ namespace winrt::TerminalApp::implementation ErrorText().Text(RS_(L"FreOverlay_InstallErrorWingetMissing")); url += L"#1-winget-windows-package-manager"; break; - case FreProblemKind::CopilotInstall: - ErrorText().Text(RS_(L"FreOverlay_InstallErrorCopilot")); - url += L"#31-github-copilot-cli"; - break; - case FreProblemKind::NodeInstall: - ErrorText().Text(RS_(L"FreOverlay_InstallErrorNode")); - url += L"#2-nodejs-lts--shared-prerequisite"; - break; case FreProblemKind::ShellIntegrationExecutionPolicy: ErrorText().Text(RS_(L"FreOverlay_InstallErrorShellIntegrationExecutionPolicy")); url += L"#4-powershell-shell-integration"; @@ -609,6 +1240,116 @@ namespace winrt::TerminalApp::implementation break; } + _FinalizeProblemDisplay(url); + } + + // Render a winget install failure with package + failure-kind specific + // text. The mapping from FreWingetFailureKind → resource template is the + // user-facing half of the COM API rewrite: structured InstallResultStatus + // values become actionable, distinct messages instead of the previous + // one-size-fits-all "check your network and try again". The help-link + // URL is keyed on the package so it still deep-links to the right + // manual-setup section. + void FreOverlay::_ShowWingetProblem(FreWingetPackage package, + FreWingetFailureKind kind, + int32_t hr, + uint32_t installerErrorCode) + { + static constexpr std::wstring_view baseUrl{ L"https://aka.ms/intelligent-terminal-dependency" }; + std::wstring url{ baseUrl }; + + // Per-package: URL anchor + display name. The display name is a + // localized resource (Copilot's name doesn't translate, but + // "Node.js (LTS)" might be punctuated differently in some + // locales — keep it loc-controlled either way). + winrt::hstring packageName; + switch (package) + { + case FreWingetPackage::Copilot: + url += L"#31-github-copilot-cli"; + packageName = RS_(L"FreOverlay_PackageDisplayName_Copilot"); + break; + case FreWingetPackage::Node: + url += L"#2-nodejs-lts--shared-prerequisite"; + packageName = RS_(L"FreOverlay_PackageDisplayName_Node"); + break; + } + + // Pre-format the numeric codes in C++ instead of relying on + // resource-side format specs (`{1:08X}` is not portable across + // every resource consumer, and pre-formatting also guarantees + // ASCII hex digits regardless of the user's locale digit shape). + const winrt::hstring hrStr{ fmt::format(L"0x{:08X}", static_cast(hr)) }; + const winrt::hstring installerStr{ std::to_wstring(installerErrorCode) }; + + // RS_fmt requires literal keys (extracted at build time), so the + // template selection is a switch rather than a key-lookup. + std::wstring text; + switch (kind) + { + case FreWingetFailureKind::Network: + text = RS_fmt(L"FreOverlay_InstallError_Network", packageName); + break; + case FreWingetFailureKind::BlockedByPolicy: + text = RS_fmt(L"FreOverlay_InstallError_BlockedByPolicy", packageName); + break; + case FreWingetFailureKind::PackageNotFound: + text = RS_fmt(L"FreOverlay_InstallError_PackageNotFound", packageName); + break; + case FreWingetFailureKind::NoCompatibleInstaller: + text = RS_fmt(L"FreOverlay_InstallError_NoCompatibleInstaller", packageName); + break; + case FreWingetFailureKind::InstallerFailed: + // If the installer reported a specific exit code, surface it. + // Otherwise (winget said InstallError but InstallerErrorCode + // is 0 — installer crashed without an exit code, winget + // didn't capture one, etc.), claiming "reported error + // (code 0)" would mislead the user. Fall back to the + // Generic template with the HRESULT, or GenericNoCode if + // we also lack an HRESULT. + if (installerErrorCode != 0) + { + text = RS_fmt(L"FreOverlay_InstallError_InstallerFailed", packageName, installerStr); + } + else if (hr != 0) + { + text = RS_fmt(L"FreOverlay_InstallError_Generic", packageName, hrStr); + } + else + { + text = RS_fmt(L"FreOverlay_InstallError_GenericNoCode", packageName); + } + break; + case FreWingetFailureKind::Timeout: + text = RS_fmt(L"FreOverlay_InstallError_Timeout", packageName); + break; + case FreWingetFailureKind::Success: + // Caller shouldn't invoke us on Success — fall through to + // the no-code Generic template so a bug here surfaces a + // readable message instead of "error code 0x00000000". + case FreWingetFailureKind::Generic: + default: + // When hr == 0 we have no actionable error code to show + // (e.g. catalog connect / package search failed before any + // installer ran). Use the no-code template so users don't + // see the misleading "(error code 0x00000000)". + if (hr == 0) + { + text = RS_fmt(L"FreOverlay_InstallError_GenericNoCode", packageName); + } + else + { + text = RS_fmt(L"FreOverlay_InstallError_Generic", packageName, hrStr); + } + break; + } + ErrorText().Text(winrt::hstring{ text }); + + _FinalizeProblemDisplay(url); + } + + void FreOverlay::_FinalizeProblemDisplay(const std::wstring& url) + { ErrorHelpRun().Text(RS_(L"FreOverlay_ErrorHelpLink")); ErrorHelpLink().NavigateUri(Uri{ winrt::hstring{ url } }); ErrorPanel().Visibility(Visibility::Visible); @@ -661,6 +1402,15 @@ namespace winrt::TerminalApp::implementation IAsyncAction FreOverlay::_SaveAndInstallAsync() { auto weak = get_weak(); + // Capture the dispatcher while we're definitely on the UI thread. + // After any subsequent `co_await` that resumes on a background + // thread (e.g. _WingetInstallAsync, _InstallHooksAsync), calling + // `Dispatcher()` directly would implicitly dereference `this` — + // which is UB if the FRE overlay was destroyed mid-await (user + // closed the tab / window / quit the app during a long winget + // install). The captured value is a ref-counted CoreDispatcher, + // independent of `this`'s lifetime. + const auto dispatcher = Dispatcher(); // 1. Read selections on the UI thread winrt::hstring agentId; @@ -711,6 +1461,18 @@ namespace winrt::TerminalApp::implementation // available before kicking off the install — otherwise the user // gets a generic "install failed" error that wrongly points at // the package's docs instead of the winget setup docs. + // + // Note: `_IsWingetInstalled()` checks for `winget.exe` on PATH, + // which is the CLI's App Execution Alias. `_WingetInstallAsync` + // itself now uses the WinGet COM API and does not strictly + // require the alias to be on PATH (only AppInstaller / the COM + // server). In practice the alias and the COM server are + // installed/uninstalled together with AppInstaller, so this + // check still correctly distinguishes "winget environment + // present" from "winget environment absent" in 99%+ of cases. + // The edge case (alias disabled while AppInstaller present) is + // rare enough that incorrectly showing WingetMissing is + // acceptable; the user docs still apply. if (needsCopilot || needsNode) { if (!_IsWingetInstalled()) @@ -719,42 +1481,87 @@ namespace winrt::TerminalApp::implementation _ShowProblem(FreProblemKind::WingetMissing); co_return; } + + // ── Await any in-flight pre-warm before kicking off install ── + // The Initialize() handler may have started a `winget source + // update` in the background. WinGet's intra-process + // coordination across concurrent operations is not a + // guaranteed contract — we serialise here to avoid two + // winget instances stepping on each other. Snapshot the + // action under the mutex (Initialize may still be racing to + // assign it), then co_await OUTSIDE the lock (holding a + // std::mutex across a suspension point is undefined behaviour). + winrt::Windows::Foundation::IAsyncAction pending{ nullptr }; + { + std::lock_guard lock{ s_prewarmMutex }; + pending = s_prewarmAction; + } + if (pending && + pending.Status() != winrt::Windows::Foundation::AsyncStatus::Completed) + { + _agentPaneLog("[FRE] Save: waiting for pre-warm to finish"); + try + { + co_await pending; + } + catch (...) + { + // Pre-warm failure is non-fatal; install will just + // pay the source-refresh cost itself. + LOG_CAUGHT_EXCEPTION(); + } + _agentPaneLog("[FRE] Save: pre-warm done, proceeding with install"); + } } if (needsCopilot) { _agentPaneLog("[FRE] Installing GitHub.Copilot via winget"); - bool ok = co_await _WingetInstallAsync(L"GitHub.Copilot"); + const auto kindInt = co_await _WingetInstallAsync(L"GitHub.Copilot"); // Helper internally does co_await winrt::resume_background(), // so the continuation may resume on a thread-pool thread. // Hop back to the UI thread before any XAML access (the - // _ShowProblem call below touches ErrorText / ErrorPanel / - // toggles); without this, RPC_E_WRONG_THREAD is thrown and + // _ShowWingetProblem call below touches ErrorText / ErrorPanel + // / toggles); without this, RPC_E_WRONG_THREAD is thrown and // silently swallowed by IAsyncAction, leaving the // SavingOverlay stuck. - co_await winrt::resume_foreground(Dispatcher()); + co_await winrt::resume_foreground(dispatcher); auto self = weak.get(); if (!self) co_return; - _agentPaneLog("[FRE] Copilot install: " + std::string(ok ? "ok" : "FAILED")); - if (!ok) + const auto kind = static_cast(kindInt); + _agentPaneLog("[FRE] Copilot install: " + + std::string(kind == FreWingetFailureKind::Success ? "ok" : "FAILED")); + if (kind != FreWingetFailureKind::Success) { - _ShowProblem(FreProblemKind::CopilotInstall); + // _lastWingetHr / _lastWingetInstallerErrorCode were + // populated by _WingetInstallAsync on this same instance; + // safe to read here because the Copilot install awaited + // above is the only writer in this sequential chain. + _ShowWingetProblem(FreWingetPackage::Copilot, + kind, + _lastWingetHr, + _lastWingetInstallerErrorCode); co_return; } } if (needsNode) { _agentPaneLog("[FRE] Installing Node.js via winget"); - bool ok = co_await _WingetInstallAsync(L"OpenJS.NodeJS.LTS"); + const auto kindInt = co_await _WingetInstallAsync(L"OpenJS.NodeJS.LTS"); // See note above for the Copilot install — same threading // concern applies here. - co_await winrt::resume_foreground(Dispatcher()); + co_await winrt::resume_foreground(dispatcher); auto self = weak.get(); if (!self) co_return; - _agentPaneLog("[FRE] Node.js install: " + std::string(ok ? "ok" : "FAILED")); - if (!ok) + const auto kind = static_cast(kindInt); + _agentPaneLog("[FRE] Node.js install: " + + std::string(kind == FreWingetFailureKind::Success ? "ok" : "FAILED")); + if (kind != FreWingetFailureKind::Success) { - _ShowProblem(FreProblemKind::NodeInstall); + _ShowWingetProblem(FreWingetPackage::Node, + kind, + _lastWingetHr, + _lastWingetInstallerErrorCode); co_return; } } @@ -816,7 +1623,7 @@ namespace winrt::TerminalApp::implementation // throws RPC_E_WRONG_THREAD, which IAsyncAction swallows — // the SavingOverlay would then be stuck with no error // surfaced. - co_await winrt::resume_foreground(Dispatcher()); + co_await winrt::resume_foreground(dispatcher); self = weak.get(); if (!self) co_return; @@ -909,7 +1716,7 @@ namespace winrt::TerminalApp::implementation { _agentPaneLog("[FRE] Showing problem: " + std::string(shellIntegFailed ? "ShellIntegration" : "Hooks")); - co_await winrt::resume_foreground(Dispatcher()); + co_await winrt::resume_foreground(dispatcher); auto self = weak.get(); if (!self) co_return; @@ -920,7 +1727,7 @@ namespace winrt::TerminalApp::implementation } // 6. Resume UI thread before touching controls / raising events - co_await winrt::resume_foreground(Dispatcher()); + co_await winrt::resume_foreground(dispatcher); { auto self = weak.get(); if (!self) co_return; diff --git a/src/cascadia/TerminalApp/FreOverlay.h b/src/cascadia/TerminalApp/FreOverlay.h index 337d11aa9..b3cbf9437 100644 --- a/src/cascadia/TerminalApp/FreOverlay.h +++ b/src/cascadia/TerminalApp/FreOverlay.h @@ -6,6 +6,8 @@ #include "FreAgentEntry.g.h" #include "FreOverlay.g.h" +#include + namespace winrt::TerminalApp::implementation { struct FreAgentEntry : FreAgentEntryT @@ -55,14 +57,45 @@ namespace winrt::TerminalApp::implementation // Things that can block FRE completion, in priority order (lower value // = higher priority). Only the highest-priority problem is surfaced in // the bottom-left error area at a time (see _ShowProblem). + // + // WinGet install failures are not in this enum because they carry + // richer structured state (package + failure kind + HRESULT + installer + // exit code); those go through _ShowWingetProblem instead, which uses + // FreWingetPackage + FreWingetFailureKind below. enum class FreProblemKind { WingetMissing = 0, // hard prerequisite — winget itself unavailable - CopilotInstall = 1, // hard prerequisite — winget GitHub.Copilot - NodeInstall = 2, // hard prerequisite — winget OpenJS.NodeJS.LTS - ShellIntegrationExecutionPolicy = 3, // optional feature — error detection blocked by PowerShell execution policy - ShellIntegration = 4, // optional feature — error detection (generic install failure) - Hooks = 5, // optional feature — session management + ShellIntegrationExecutionPolicy = 1, // optional feature — error detection blocked by PowerShell execution policy + ShellIntegration = 2, // optional feature — error detection (generic install failure) + Hooks = 3, // optional feature — session management + }; + + // Which winget-installed prerequisite a failure refers to. Used by + // _ShowWingetProblem to pick the right package display name and + // manual-fix URL anchor. + enum class FreWingetPackage + { + Copilot = 0, // GitHub.Copilot + Node = 1, // OpenJS.NodeJS.LTS + }; + + // Categorization of why a winget install failed, derived from the COM + // API's structured status + HRESULT in _WingetInstallAsync. Each kind + // maps to a localized user-facing message that tells the user what + // happened and what to do next (retry, contact IT, install manually). + // The Success sentinel lets _WingetInstallAsync encode success/failure + // in a single IAsyncOperation return value (WinRT projection + // can't carry a richer struct without an IDL type). + enum class FreWingetFailureKind : int32_t + { + Success = -1, // install completed OK + Network = 0, // connect / download failed with a network-like HRESULT + BlockedByPolicy = 1, // winget GP / org policy blocked the install + PackageNotFound = 2, // catalog has no manifest with this ID + NoCompatibleInstaller = 3, // manifest exists but no installer matches this OS/arch + InstallerFailed = 4, // installer ran but reported an error (e.g. MSI 1603) + Timeout = 5, // we hit our own 20-min hard timeout + Generic = 6, // everything else (catalog corruption, internal error, unknown HRESULT, …) }; // Show a single problem: set the error message + manual-fix link, then @@ -70,6 +103,22 @@ namespace winrt::TerminalApp::implementation // any) and re-enable the Save button. Does not raise Completed. void _ShowProblem(FreProblemKind kind); + // Show a winget install failure with package-aware, failure-kind-aware + // text. Picks the localized template by `kind`, substitutes the + // package display name and (for InstallerFailed / Generic) a + // pre-formatted error code string. Re-enables Save like _ShowProblem. + void _ShowWingetProblem(FreWingetPackage package, + FreWingetFailureKind kind, + int32_t hr, + uint32_t installerErrorCode); + + // Shared tail end of _ShowProblem / _ShowWingetProblem after the + // caller has set ErrorText and computed the help URL: applies the + // URL to the help link, makes the panel visible, refreshes the + // agent dropdown, fires the Narrator notification, re-enables + // editing, and parks focus on the help link. + void _FinalizeProblemDisplay(const std::wstring& url); + // Apply the detection→suggestion master-detail dependency: detection // off turns the suggestion toggle off and disables it; detection on // re-enables it (preserving the stored value). @@ -85,9 +134,60 @@ namespace winrt::TerminalApp::implementation static bool _IsNodeInstalled(); static bool _IsWingetInstalled(); - // Run a winget install synchronously on a background thread. - // Returns true on success. - static winrt::Windows::Foundation::IAsyncOperation _WingetInstallAsync(winrt::hstring packageId); + // ── WinGet source pre-warm coordination ───────────────────── + // While the FRE overlay is on screen (Welcome + Settings pages), + // pre-warm winget's source manifest cache in the background so + // the on-Save `winget install` skips the 3-20s source refresh. + // Single-flight per process — reentrant Initialize() calls and + // multi-window FRE coalesce onto one running prewarm. The Save + // handler awaits s_prewarmAction before its own winget call to + // guarantee the two winget operations never run concurrently + // (winget's intra-process locking is not a guaranteed contract). + static std::mutex s_prewarmMutex; + static winrt::Windows::Foundation::IAsyncAction s_prewarmAction; + + static void _MaybeStartPrewarm(bool copilotMissing, bool nodeMissing); + static winrt::Windows::Foundation::IAsyncAction _RunPrewarmAsync(); + + // Run a winget install asynchronously on a background thread. + // Returns FreWingetFailureKind cast to int32_t — Success (-1) on + // success, or one of the failure kinds otherwise. On failure, the + // associated HRESULT and installer exit code (if any) are stored in + // the _lastWinget* instance fields below for the caller to read. + // + // Per-instance state, not static: each FreOverlay window has its + // own _lastWinget* slot, so two FRE windows installing concurrently + // (multi-window scenario) can't clobber each other's diagnostics. + // Within one instance, the caller (_SaveAndInstallAsync) awaits + // Copilot before kicking off Node, so no intra-instance race either. + winrt::Windows::Foundation::IAsyncOperation _WingetInstallAsync(winrt::hstring packageId); + + // Diagnostic state from the last _WingetInstallAsync call — read by + // the caller right after `co_await` to pass into _ShowWingetProblem. + // Both fields are reset to 0 by _WingetInstallAsync on each entry. + int32_t _lastWingetHr{ 0 }; + uint32_t _lastWingetInstallerErrorCode{ 0 }; + + // Decide whether an HRESULT looks like a network-class failure + // (WinINet / WinHTTP / Winsock). Conservative whitelist of specific + // codes rather than facility-range scans, to avoid misclassifying + // HTTP-status HRESULTs (HTTP 404 is 0x80190194 — not a "check your + // VPN" situation) or RPC failures as network issues. + static bool _IsNetworkLikeHResult(int32_t hr) noexcept; + + // Classify a raw HRESULT (from a winget COM exception or from + // InstallResult.ExtendedErrorCode) into the most-specific + // FreWingetFailureKind we can infer. Recognizes the winget-CLI's + // APPINSTALLER_CLI_ERROR_* family for policy blocks, missing + // packages, no-applicable-installer, and falls back to + // _IsNetworkLikeHResult, then Generic. + // + // Without this layer, winget COM exceptions like + // APPINSTALLER_CLI_ERROR_BLOCKED_BY_POLICY (0x8A15003A — thrown + // when group policy disables winget) would map to a generic + // "(error code 0x8A15003A)" message instead of the actionable + // "blocked by policy — contact your IT admin" message. + static FreWingetFailureKind _ClassifyWingetHResult(int32_t hr) noexcept; // Run wta.exe hooks install on a background thread. // Returns true on success. diff --git a/src/cascadia/TerminalApp/Resources/af-ZA/Resources.resw b/src/cascadia/TerminalApp/Resources/af-ZA/Resources.resw index af4209da8..c60180d71 100644 --- a/src/cascadia/TerminalApp/Resources/af-ZA/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/af-ZA/Resources.resw @@ -107,17 +107,49 @@ Word opgestel... - - ⚠ Kon nie GitHub Copilot installeer nie. Kontroleer jou netwerkverbinding en probeer weer. - {Locked="GitHub Copilot"} + + ⚠ Installering van {0} is deur 'n Windows-pakketbestuurderbeleid geblokkeer. As jy op 'n bestuurde toestel is, kontak jou IT-administrateur. + FRE setup error. {0} is the package display name. + + + ⚠ Kon nie {0} installeer nie (foutkode {1}). Sien die logboek vir besonderhede, of installeer {0} handmatig. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string. + + + ⚠ Kon nie {0} installeer nie. Sien die logboek vir besonderhede, of installeer {0} handmatig. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Die {0}-installeerder het ’n fout gerapporteer (kode {1}). Gaan die logboek na vir besonderhede, of installeer {0} handmatig. + FRE setup error. {0} is the package display name (appears twice). {1} is decimal error code. + + + ⚠ Kon nie die Windows-pakketbestuurder bereik terwyl {0} geïnstalleer is nie. Kontroleer jou internetverbinding (VPN, instaanbediener of brandmuur blokkeer dit dalk) en probeer weer. + {Locked="VPN"} FRE setup error. {0} is the package display name. + + + ⚠ Geen versoenbare installeerder vir {0} is op hierdie stelsel beskikbaar nie (OS-weergawe of argitektuur word dalk nie ondersteun nie). Installeer {0} handmatig. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} is nie in die Windows-pakketbestuurderkatalogus gevind nie. Probeer winget-bronne verfris, of installeer {0} handmatig. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Installering van {0} het langer as 20 minute geneem. Intelligent Terminal het opgehou wag, maar die installeerder loop dalk nog in die agtergrond. Gaan Task Manager na, of probeer later weer. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows-pakketbestuurder (winget) is nie geïnstalleer nie of is nie beskikbaar nie. Installeer dit eers en probeer dan weer. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Kon nie Node.js installeer nie. Kontroleer jou netwerkverbinding en probeer weer. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Aan diff --git a/src/cascadia/TerminalApp/Resources/am-ET/Resources.resw b/src/cascadia/TerminalApp/Resources/am-ET/Resources.resw index b038b13d5..270a8dca3 100644 --- a/src/cascadia/TerminalApp/Resources/am-ET/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/am-ET/Resources.resw @@ -107,17 +107,49 @@ በማያቄር ላይ... - - ⚠ GitHub Copilot መጠቀም አልተሳካም። የመረብዎን ይፈትሩ እና እንደገና ይሞክሩ። - {Locked="GitHub Copilot"} + + ⚠ የ{0} ጭነት በWindows Package Manager ፖሊሲ ታግዷል። በሚተዳደር መሣሪያ ላይ ከሆኑ፣ የIT አስተዳዳሪዎን ያግኙ። + FRE setup error. {0} is the package display name. + + + ⚠ {0}ን መጫን አልተቻለም (የስህተት ኮድ {1})። ለዝርዝሮች ሎጉን ይመልከቱ፣ ወይም {0}ን በእጅ ይጫኑ። + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string. + + + ⚠ {0}ን መጫን አልተቻለም። ለዝርዝሮች ሎጉን ይመልከቱ፣ ወይም {0}ን በእጅ ይጫኑ። + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ የ{0} ጫኚ ስህተት አሳውቋል (ኮድ {1})። ለዝርዝሮች ሎጉን ይመልከቱ፣ ወይም {0}ን በእጅ ይጫኑ። + FRE setup error. {0} is the package display name (appears twice). {1} is decimal error code. + + + ⚠ {0}ን በመጫን ላይ ሳለ Windows Package Managerን መድረስ አልተቻለም። የኢንተርኔት ግንኙነትዎን ይፈትሹ (VPN፣ ፕሮክሲ ወይም ፋየርዎል ሊከለክለው ይችላል) እና እንደገና ይሞክሩ። + {Locked="VPN"} FRE setup error. {0} is the package display name. + + + ⚠ በዚህ ስርዓት ላይ ለ{0} ተኳኋኝ ጫኚ አይገኝም (የOS ስሪት ወይም አርክቴክቸር ላይደገፍ ይችላል)። {0}ን በእጅ ይጫኑ። + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} በWindows Package Manager ካታሎግ ውስጥ አልተገኘም። የwinget ምንጮችን ለማደስ ይሞክሩ፣ ወይም {0}ን በእጅ ይጫኑ። + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0}ን መጫን ከ20 ደቂቃ በላይ ወሰደ። Intelligent Terminal መጠበቁን አቁሟል፣ ግን ጫኚው አሁንም ከበስተጀርባ እየሰራ ሊሆን ይችላል። Task Managerን ይፈትሹ፣ ወይም በኋላ እንደገና ይሞክሩ። + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) አልተጫነም ወይም አይገኝም። መጀመሪያ ይጫኑት፣ ከዚያ እንደገና ይሞክሩ። - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Node.js መጠቀም አልተሳካም። የመረብዎን ይፈትሩ እና እንደገና ይሞክሩ። - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. እንቅ diff --git a/src/cascadia/TerminalApp/Resources/ar-SA/Resources.resw b/src/cascadia/TerminalApp/Resources/ar-SA/Resources.resw index ee5c7b3de..8efb2fe52 100644 --- a/src/cascadia/TerminalApp/Resources/ar-SA/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/ar-SA/Resources.resw @@ -221,17 +221,49 @@ جارٍ الإعداد... - - ⚠ فشل تثبيت GitHub Copilot. تحقق من شبكتك وأعد المحاولة. - {Locked="GitHub Copilot"} + + ⚠ تم حظر تثبيت {0} بواسطة نهج مدير حزم Windows. إذا كنت تستخدم جهازًا مُدارًا، فاتصل بمسؤول تكنولوجيا المعلومات لديك. + FRE setup error. {0} is the package display name. + + + ⚠ تعذر تثبيت {0} (رمز الخطأ {1}). راجع السجل للحصول على التفاصيل، أو ثبّت {0} يدويًا. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string. + + + ⚠ تعذر تثبيت {0}. راجع السجل للحصول على التفاصيل، أو ثبّت {0} يدويًا. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ أبلغ مُثبّت {0} عن خطأ (الرمز {1}). راجع السجل للحصول على التفاصيل، أو ثبّت {0} يدويًا. + FRE setup error. {0} is the package display name (appears twice). {1} is decimal error code. + + + ⚠ تعذر الوصول إلى مدير حزم Windows أثناء تثبيت {0}. تحقق من اتصالك بالإنترنت (قد يكون VPN أو الوكيل أو جدار الحماية يحظره) ثم أعد المحاولة. + {Locked="VPN"} FRE setup error. {0} is the package display name. + + + ⚠ لا يتوفر مُثبّت متوافق لـ {0} على هذا النظام (قد لا يكون إصدار نظام التشغيل أو البنية مدعومًا). ثبّت {0} يدويًا. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ لم يتم العثور على {0} في كتالوج مدير حزم Windows. حاول تحديث مصادر winget، أو ثبّت {0} يدويًا. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ استغرق تثبيت {0} أكثر من 20 دقيقة. توقف Intelligent Terminal عن الانتظار، ولكن قد يظل المُثبّت قيد التشغيل في الخلفية. تحقق من Task Manager، أو حاول مرة أخرى لاحقًا. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ مدير حزم Windows (winget) غير مثبت أو غير متوفر. قم بتثبيته أولاً، ثم أعد المحاولة. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ فشل تثبيت Node.js. تحقق من شبكتك وأعد المحاولة. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. تشغيل diff --git a/src/cascadia/TerminalApp/Resources/as-IN/Resources.resw b/src/cascadia/TerminalApp/Resources/as-IN/Resources.resw index 52bdc8dae..733b997aa 100644 --- a/src/cascadia/TerminalApp/Resources/as-IN/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/as-IN/Resources.resw @@ -221,18 +221,62 @@ ছেটআপ হৈ আছে... - - ⚠ GitHub Copilot ইনষ্টল কৰাত বিফল হ'ল। আপোনাৰ নেটৱৰ্ক পৰীক্ষা কৰক আৰু পুনৰ চেষ্টা কৰক। - {Locked="GitHub Copilot"} + + ⚠ Windows Package Manager নীতিৰ দ্বাৰা {0} ইনষ্টলেশ্বন অৱৰোধ কৰা হৈছে। যদি আপুনি পৰিচালিত ডিভাইচত আছে, আপোনাৰ IT এডমিনৰ সৈতে যোগাযোগ কৰক। + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy (group policy disabled the operation). + + + ⚠ {0} ইনষ্টল কৰিব পৰা নগ'ল (ত্ৰুটি কোড {1})। বিৱৰণৰ বাবে ল'গ চাওক, বা {0} মেনুৱেলি ইনষ্টল কৰক। + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". Shown for failure causes we don't have a more specific message for. + + + ⚠ {0} ইনষ্টল কৰিব পৰা নগ'ল। বিৱৰণৰ বাবে ল'গ চাওক, বা {0} মেনুৱেলি ইনষ্টল কৰক। + FRE setup error fallback used when no actionable error code is available (e.g. the catalog connect/search failed before an installer ever ran). {0} is the package display name (appears twice). + + + ⚠ {0} ইনষ্টলাৰে এটা ত্ৰুটি জনাইছে (কোড {1})। বিৱৰণৰ বাবে ল'গ পৰীক্ষা কৰক, বা {0} মেনুৱেলি ইনষ্টল কৰক। + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). Shown when winget reached the install phase but the installer itself failed. + + + ⚠ {0} ইনষ্টল কৰোঁতে Windows Package Manager-ৰ সৈতে যোগাযোগ কৰিব পৰা নগ'ল। আপোনাৰ ইণ্টাৰনেট সংযোগ পৰীক্ষা কৰক (VPN, proxy, বা firewall-এ ইয়াক অৱৰোধ কৰি থাকিব পাৰে) আৰু পুনৰ চেষ্টা কৰক। + {Locked="VPN"} FRE setup error. {0} is the package display name (FreOverlay_PackageDisplayName_Copilot or _Node). Shown when winget couldn't reach its catalog or the package download failed with a network-class HRESULT. + + + ⚠ এই ছিষ্টেমত {0}-ৰ বাবে কোনো সুসংগত ইনষ্টলাৰ উপলব্ধ নহয় (OS সংস্কৰণ বা আর্কিটেকচাৰ সমৰ্থিত নহ'ব পাৰে)। {0} মেনুৱেলি ইনষ্টল কৰক। + FRE setup error. {0} is the package display name (appears twice). Shown when winget returned NoApplicableInstallers — the manifest exists but no installer entry matches this OS/arch/scope. + + + ⚠ Windows Package Manager কেটালগত {0} পোৱা নগ'ল। winget উৎসসমূহ refresh কৰিবলৈ চেষ্টা কৰক, বা {0} মেনুৱেলি ইনষ্টল কৰক। + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). Shown when no manifest with the requested package ID was returned from the catalog search. + + + ⚠ {0} ইনষ্টল কৰাত 20 মিনিটতকৈ অধিক সময় লাগিল। Intelligent Terminal-এ অপেক্ষা কৰা বন্ধ কৰিলে, কিন্তু ইনষ্টলাৰটো এতিয়াও পটভূমিত চলি থাকিব পাৰে। Task Manager পৰীক্ষা কৰক, বা পাছত পুনৰ চেষ্টা কৰক। + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. Shown when our 20-minute hard timeout expired before the install completed. + + + ⚠ session hooks ইনষ্টল কৰাত বিফল হ'ল। ছেছন ব্যৱস্থাপনা বন্ধ কৰা হৈছে। আপুনি ইয়াক পুনৰ সক্ৰিয় কৰি পুনৰ চেষ্টা কৰিব পাৰে, বা ইয়াৰ অবিহনে আগবাঢ়িবলৈ সংৰক্ষণ কৰক। + {Locked="hooks"} + + + ⚠ শ্বেল সংহতি ইনষ্টল কৰাত বিফল হ'ল। ত্ৰুটি চিনাক্তকৰণ বন্ধ কৰা হৈছে। আপুনি ইয়াক পুনৰ সক্ৰিয় কৰি পুনৰ চেষ্টা কৰিব পাৰে, বা ইয়াৰ অবিহনে আগবাঢ়িবলৈ সংৰক্ষণ কৰক। + + + ⚠ PowerShell এক্সিকিউচন নীতিয়ে স্ক্ৰিপ্ট অৱৰোধ কৰি আছে। ত্ৰুটি চিনাক্তকৰণ বন্ধ কৰা হ’ল। + {Locked="PowerShell"} ⚠ Windows Package Manager (winget) ইনষ্টল কৰা নাই বা উপলব্ধ নহয়। প্ৰথমে ইয়াক ইনষ্টল কৰক, তাৰ পিছত পুনৰ চেষ্টা কৰক। - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Node.js ইনষ্টল কৰাত বিফল হ'ল। আপোনাৰ নেটৱৰ্ক পৰীক্ষা কৰক আৰু পুনৰ চেষ্টা কৰক। - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + চালু @@ -309,12 +353,7 @@ Intelligent Terminal ক আপোনাৰ শ্বেল ব্যৱহাৰ কৰিবলৈ আৰু ত্ৰুটিসমূহ স্বয়ংক্ৰিয়ভাৱে চিনাক্ত কৰিবলৈ অনুমতি দিয়ক। - - ⚠ শ্বেল সংহতি ইনষ্টল কৰাত বিফল হ'ল। ত্ৰুটি চিনাক্তকৰণ বন্ধ কৰা হৈছে। আপুনি ইয়াক পুনৰ সক্ৰিয় কৰি পুনৰ চেষ্টা কৰিব পাৰে, বা ইয়াৰ অবিহনে আগবাঢ়িবলৈ সংৰক্ষণ কৰক। - - ⚠ session hooks ইনষ্টল কৰাত বিফল হ'ল। ছেছন ব্যৱস্থাপনা বন্ধ কৰা হৈছে। আপুনি ইয়াক পুনৰ সক্ৰিয় কৰি পুনৰ চেষ্টা কৰিব পাৰে, বা ইয়াৰ অবিহনে আগবাঢ়িবলৈ সংৰক্ষণ কৰক। - {Locked="hooks"} - + এইটো কেনেকৈ মেনুৱেলী ঠিক কৰিব শিকক Hyperlink shown below an FRE setup error message. Opens step-by-step manual setup instructions in the browser. @@ -327,8 +366,4 @@ PowerShell এক্সিকিউচন নীতিয়ে স্ক্ৰিপ্ট অৱৰোধ কৰি আছে। Body of an error dialog shown after the user tries to install PowerShell shell integration but their PowerShell execution policy (Restricted or AllSigned) is blocking scripts. A separate "Learn how to fix this manually" hyperlink (FreOverlay_ErrorHelpLink) is rendered on its own line below this sentence. {Locked="PowerShell"} - - ⚠ PowerShell এক্সিকিউচন নীতিয়ে স্ক্ৰিপ্ট অৱৰোধ কৰি আছে। ত্ৰুটি চিনাক্তকৰণ বন্ধ কৰা হ’ল। - {Locked="PowerShell"} - diff --git a/src/cascadia/TerminalApp/Resources/az-Latn-AZ/Resources.resw b/src/cascadia/TerminalApp/Resources/az-Latn-AZ/Resources.resw index 28fc7e749..2d43f967b 100644 --- a/src/cascadia/TerminalApp/Resources/az-Latn-AZ/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/az-Latn-AZ/Resources.resw @@ -220,17 +220,49 @@ Qurulur... - - ⚠ GitHub Copilot quraşdırıla bilmədi. Şəbəkənizi yoxlayın və yenidən cəhd edin. - {Locked="GitHub Copilot"} + + ⚠ {0} quraşdırılması Windows Paket Meneceri siyasəti tərəfindən bloklandı. İdarə olunan cihazdasınızsa, IT administratorunuzla əlaqə saxlayın. + FRE setup error. {0} is the package display name. + + + ⚠ {0} quraşdırıla bilmədi (xəta kodu {1}). Təfərrüatlar üçün jurnala baxın və ya {0} paketini əl ilə quraşdırın. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string. + + + ⚠ {0} quraşdırıla bilmədi. Təfərrüatlar üçün jurnala baxın və ya {0} paketini əl ilə quraşdırın. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0} quraşdırıcısı xəta bildirdi (kod {1}). Təfərrüatlar üçün jurnalı yoxlayın və ya {0} paketini əl ilə quraşdırın. + FRE setup error. {0} is the package display name (appears twice). {1} is decimal error code. + + + ⚠ {0} quraşdırılarkən Windows Paket Menecerinə qoşulmaq mümkün olmadı. İnternet bağlantınızı yoxlayın (VPN, proksi və ya təhlükəsizlik divarı onu bloklaya bilər) və yenidən cəhd edin. + {Locked="VPN"} FRE setup error. {0} is the package display name. + + + ⚠ Bu sistemdə {0} üçün uyğun quraşdırıcı mövcud deyil (OS versiyası və ya arxitektura dəstəklənməyə bilər). {0} paketini əl ilə quraşdırın. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} Windows Paket Meneceri kataloqunda tapılmadı. winget mənbələrini yeniləməyi sınayın və ya {0} paketini əl ilə quraşdırın. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} quraşdırılması 20 dəqiqədən çox çəkdi. Intelligent Terminal gözləməyi dayandırdı, lakin quraşdırıcı hələ də arxa planda işləyə bilər. Task Manager-i yoxlayın və ya sonra yenidən cəhd edin. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Paket Meneceri (winget) quraşdırılmayıb və ya əlçatan deyil. Əvvəlcə onu quraşdırın, sonra yenidən cəhd edin. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Node.js quraşdırıla bilmədi. Şəbəkənizi yoxlayın və yenidən cəhd edin. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Açıq diff --git a/src/cascadia/TerminalApp/Resources/bg-BG/Resources.resw b/src/cascadia/TerminalApp/Resources/bg-BG/Resources.resw index f10fa9210..b062d538a 100644 --- a/src/cascadia/TerminalApp/Resources/bg-BG/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/bg-BG/Resources.resw @@ -220,18 +220,51 @@ Настройване... - - ⚠ Неуспешно инсталиране на GitHub Copilot. Проверете мрежовата връзка и опитайте отново. - {Locked="GitHub Copilot"} + + ⚠ Инсталирането на {0} е блокирано от правила на Диспечера на пакети на Windows. Ако използвате управлявано устройство, свържете се с ИТ администратора. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Неуспешно инсталиране на {0} (код на грешка {1}). Вижте регистрационния файл за подробности или инсталирайте {0} ръчно. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Неуспешно инсталиране на {0}. Вижте регистрационния файл за подробности или инсталирайте {0} ръчно. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Инсталаторът на {0} съобщи за грешка (код {1}). Вижте регистрационния файл за подробности или инсталирайте {0} ръчно. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Неуспешна връзка с Диспечера на пакети на Windows при инсталиране на {0}. Проверете интернет връзката (VPN, прокси или защитна стена може да я блокира) и опитайте отново. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Няма съвместим инсталатор за {0} на тази система (версията на ОС или архитектурата може да не се поддържат). Инсталирайте {0} ръчно. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} не беше намерен в каталога на Диспечера на пакети на Windows. Опитайте да обновите източниците на winget или инсталирайте {0} ръчно. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Инсталирането на {0} отне повече от 20 минути. Intelligent Terminal спря да чака, но инсталаторът може все още да работи във фонов режим. Проверете Task Manager или опитайте отново по-късно. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Диспечерът на пакети на Windows (winget) не е инсталиран или не е наличен. Първо го инсталирайте, след което опитайте отново. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Неуспешно инсталиране на Node.js. Проверете мрежовата връзка и опитайте отново. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + Вкл. diff --git a/src/cascadia/TerminalApp/Resources/bn-IN/Resources.resw b/src/cascadia/TerminalApp/Resources/bn-IN/Resources.resw index 82ff03083..cd6210fdb 100644 --- a/src/cascadia/TerminalApp/Resources/bn-IN/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/bn-IN/Resources.resw @@ -220,18 +220,62 @@ সেট আপ হচ্ছে... - - ⚠ GitHub Copilot ইনস্টল করতে ব্যর্থ। আপনার নেটওয়ার্ক পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন। - {Locked="GitHub Copilot"} + + ⚠ Windows Package Manager পলিসির কারণে {0} ইনস্টলেশন ব্লক করা হয়েছে। আপনি যদি পরিচালিত ডিভাইসে থাকেন, আপনার IT অ্যাডমিনের সঙ্গে যোগাযোগ করুন। + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy (group policy disabled the operation). + + + ⚠ {0} ইনস্টল করা যায়নি (ত্রুটি কোড {1})। বিস্তারিত জানতে লগ দেখুন, অথবা {0} ম্যানুয়ালি ইনস্টল করুন। + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". Shown for failure causes we don't have a more specific message for. + + + ⚠ {0} ইনস্টল করা যায়নি। বিস্তারিত জানতে লগ দেখুন, অথবা {0} ম্যানুয়ালি ইনস্টল করুন। + FRE setup error fallback used when no actionable error code is available (e.g. the catalog connect/search failed before an installer ever ran). {0} is the package display name (appears twice). + + + ⚠ {0} ইনস্টলার একটি ত্রুটি রিপোর্ট করেছে (কোড {1})। বিস্তারিত জানতে লগ পরীক্ষা করুন, অথবা {0} ম্যানুয়ালি ইনস্টল করুন। + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). Shown when winget reached the install phase but the installer itself failed. + + + ⚠ {0} ইনস্টল করার সময় Windows Package Manager-এ পৌঁছানো যায়নি। আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন (VPN, proxy, বা firewall এটি ব্লক করতে পারে) এবং আবার চেষ্টা করুন। + {Locked="VPN"} FRE setup error. {0} is the package display name (FreOverlay_PackageDisplayName_Copilot or _Node). Shown when winget couldn't reach its catalog or the package download failed with a network-class HRESULT. + + + ⚠ এই সিস্টেমে {0}-এর জন্য কোনো সামঞ্জস্যপূর্ণ ইনস্টলার উপলভ্য নেই (OS সংস্করণ বা আর্কিটেকচার সমর্থিত নাও হতে পারে)। {0} ম্যানুয়ালি ইনস্টল করুন। + FRE setup error. {0} is the package display name (appears twice). Shown when winget returned NoApplicableInstallers — the manifest exists but no installer entry matches this OS/arch/scope. + + + ⚠ Windows Package Manager ক্যাটালগে {0} পাওয়া যায়নি। winget উৎসগুলি রিফ্রেশ করার চেষ্টা করুন, অথবা {0} ম্যানুয়ালি ইনস্টল করুন। + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). Shown when no manifest with the requested package ID was returned from the catalog search. + + + ⚠ {0} ইনস্টল করতে 20 মিনিটের বেশি সময় লেগেছে। Intelligent Terminal অপেক্ষা করা বন্ধ করেছে, কিন্তু ইনস্টলারটি এখনও ব্যাকগ্রাউন্ডে চলতে পারে। Task Manager পরীক্ষা করুন, অথবা পরে আবার চেষ্টা করুন। + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. Shown when our 20-minute hard timeout expired before the install completed. + + + ⚠ session hooks ইনস্টল করতে ব্যর্থ। সেশন ব্যবস্থাপনা বন্ধ করা হয়েছে। আপনি এটি পুনরায় সক্রিয় করে আবার চেষ্টা করতে পারেন, অথবা এটি ছাড়া চালিয়ে যেতে সংরক্ষণ করুন। + {Locked="hooks"} + + + ⚠ শেল ইন্টিগ্রেশন ইনস্টল করতে ব্যর্থ। ত্রুটি শনাক্তকরণ বন্ধ করা হয়েছে। আপনি এটি পুনরায় সক্রিয় করে আবার চেষ্টা করতে পারেন, অথবা এটি ছাড়া চালিয়ে যেতে সংরক্ষণ করুন। + + + ⚠ PowerShell এক্সিকিউশন পলিসি স্ক্রিপ্ট ব্লক করছে। ত্রুটি শনাক্তকরণ বন্ধ করা হয়েছে। + {Locked="PowerShell"} ⚠ Windows Package Manager (winget) ইনস্টল করা নেই বা উপলভ্য নয়। প্রথমে এটি ইনস্টল করুন, তারপর আবার চেষ্টা করুন। - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Node.js ইনস্টল করতে ব্যর্থ। আপনার নেটওয়ার্ক পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন। - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + চালু @@ -308,12 +352,7 @@ Intelligent Terminal-কে আপনার শেল অ্যাক্সেস করতে এবং স্বয়ংক্রিয়ভাবে ত্রুটি সনাক্ত করতে অনুমতি দিন। - - ⚠ শেল ইন্টিগ্রেশন ইনস্টল করতে ব্যর্থ। ত্রুটি শনাক্তকরণ বন্ধ করা হয়েছে। আপনি এটি পুনরায় সক্রিয় করে আবার চেষ্টা করতে পারেন, অথবা এটি ছাড়া চালিয়ে যেতে সংরক্ষণ করুন। - - ⚠ session hooks ইনস্টল করতে ব্যর্থ। সেশন ব্যবস্থাপনা বন্ধ করা হয়েছে। আপনি এটি পুনরায় সক্রিয় করে আবার চেষ্টা করতে পারেন, অথবা এটি ছাড়া চালিয়ে যেতে সংরক্ষণ করুন। - {Locked="hooks"} - + কীভাবে এটি ম্যানুয়ালি ঠিক করবেন তা শিখুন Hyperlink shown below an FRE setup error message. Opens step-by-step manual setup instructions in the browser. @@ -326,8 +365,4 @@ PowerShell এক্সিকিউশন পলিসি স্ক্রিপ্ট ব্লক করছে। Body of an error dialog shown after the user tries to install PowerShell shell integration but their PowerShell execution policy (Restricted or AllSigned) is blocking scripts. A separate "Learn how to fix this manually" hyperlink (FreOverlay_ErrorHelpLink) is rendered on its own line below this sentence. {Locked="PowerShell"} - - ⚠ PowerShell এক্সিকিউশন পলিসি স্ক্রিপ্ট ব্লক করছে। ত্রুটি শনাক্তকরণ বন্ধ করা হয়েছে। - {Locked="PowerShell"} - diff --git a/src/cascadia/TerminalApp/Resources/bs-Latn-BA/Resources.resw b/src/cascadia/TerminalApp/Resources/bs-Latn-BA/Resources.resw index d5a5ad2a3..48de1d80d 100644 --- a/src/cascadia/TerminalApp/Resources/bs-Latn-BA/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/bs-Latn-BA/Resources.resw @@ -107,18 +107,51 @@ Postavljanje... - - ⚠ Instalacija GitHub Copilot nije uspjela. Provjerite mrežnu vezu i pokušajte ponovo. - {Locked="GitHub Copilot"} + + ⚠ Instalaciju {0} blokirala je politika Windows Package Managera. Ako koristite upravljani uređaj, obratite se IT administratoru. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Instalacija {0} nije uspjela (kod greške {1}). Detalje potražite u evidenciji ili ručno instalirajte {0}. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Instalacija {0} nije uspjela. Detalje potražite u evidenciji ili ručno instalirajte {0}. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Instalator za {0} prijavio je grešku (kod {1}). Detalje potražite u evidenciji ili ručno instalirajte {0}. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Nije bilo moguće pristupiti Windows Package Manageru tokom instalacije {0}. Provjerite internetsku vezu (VPN, proksi ili vatrozid je možda blokiraju) i pokušajte ponovo. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Na ovom sistemu nije dostupan kompatibilan instalator za {0} (verzija OS-a ili arhitektura možda nisu podržani). Ručno instalirajte {0}. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} nije pronađen u katalogu Windows Package Managera. Pokušajte osvježiti izvore winget ili ručno instalirajte {0}. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Instalacija {0} trajala je duže od 20 minuta. Intelligent Terminal je prestao čekati, ali instalator možda još radi u pozadini. Provjerite Task Manager ili pokušajte ponovo kasnije. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) nije instaliran ili nije dostupan. Prvo ga instalirajte, a zatim pokušajte ponovo. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Instalacija Node.js nije uspjela. Provjerite mrežnu vezu i pokušajte ponovo. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + Uklj diff --git a/src/cascadia/TerminalApp/Resources/ca-ES/Resources.resw b/src/cascadia/TerminalApp/Resources/ca-ES/Resources.resw index 64071e7ab..1d8ed7c43 100644 --- a/src/cascadia/TerminalApp/Resources/ca-ES/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/ca-ES/Resources.resw @@ -107,17 +107,49 @@ S'està configurant... - - ⚠ No s'ha pogut instal·lar GitHub Copilot. Comproveu la connexió de xarxa i torneu-ho a provar. - {Locked="GitHub Copilot"} + + ⚠ La instal·lació de {0} l'ha bloquejada una directiva de l'Administrador de paquets del Windows. Si feu servir un dispositiu administrat, poseu-vos en contacte amb l'administrador de TI. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ No s'ha pogut instal·lar {0} (codi d'error {1}). Consulteu el registre per obtenir més detalls, o instal·leu {0} manualment. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ No s'ha pogut instal·lar {0}. Consulteu el registre per obtenir més detalls, o instal·leu {0} manualment. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ L'instal·lador de {0} ha notificat un error (codi {1}). Consulteu el registre per obtenir més detalls, o instal·leu {0} manualment. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ No s'ha pogut contactar amb l'Administrador de paquets del Windows mentre s'instal·lava {0}. Comproveu la connexió a Internet (VPN, proxy o tallafoc poden estar bloquejant-la) i torneu-ho a provar. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ No hi ha cap instal·lador compatible per a {0} disponible en aquest sistema (pot ser que la versió del sistema operatiu o l'arquitectura no siguin compatibles). Instal·leu {0} manualment. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} no s'ha trobat al catàleg de l'Administrador de paquets del Windows. Proveu d'actualitzar les fonts del winget, o instal·leu {0} manualment. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ La instal·lació de {0} ha trigat més de 20 minuts. Intelligent Terminal ha deixat d'esperar, però pot ser que l'instal·lador encara s'estigui executant en segon pla. Consulteu Task Manager, o torneu-ho a provar més tard. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ L'Administrador de paquets del Windows (winget) no està instal·lat o no està disponible. Instal·leu-lo primer i torneu-ho a provar. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ No s'ha pogut instal·lar Node.js. Comproveu la connexió de xarxa i torneu-ho a provar. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Actiu diff --git a/src/cascadia/TerminalApp/Resources/ca-Es-VALENCIA/Resources.resw b/src/cascadia/TerminalApp/Resources/ca-Es-VALENCIA/Resources.resw index e3ee340d1..2f56551a2 100644 --- a/src/cascadia/TerminalApp/Resources/ca-Es-VALENCIA/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/ca-Es-VALENCIA/Resources.resw @@ -107,17 +107,49 @@ S'està configurant... - - ⚠ No s'ha pogut instal·lar GitHub Copilot. Comproveu la connexió de xarxa i torneu a provar. - {Locked="GitHub Copilot"} + + ⚠ La instal·lació de {0} l'ha bloquejada una directiva de l'Administrador de paquets de Windows. Si feu servir un dispositiu administrat, poseu-vos en contacte amb l'administrador de TI. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ No s'ha pogut instal·lar {0} (codi d'error {1}). Consulteu el registre per a obtindre més detalls, o instal·leu {0} manualment. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ No s'ha pogut instal·lar {0}. Consulteu el registre per a obtindre més detalls, o instal·leu {0} manualment. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ L'instal·lador de {0} ha notificat un error (codi {1}). Consulteu el registre per a obtindre més detalls, o instal·leu {0} manualment. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ No s'ha pogut contactar amb l'Administrador de paquets de Windows mentre s'instal·lava {0}. Comproveu la connexió a Internet (VPN, proxy o tallafoc poden estar bloquejant-la) i torneu a provar. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ No hi ha cap instal·lador compatible per a {0} disponible en este sistema (pot ser que la versió del sistema operatiu o l'arquitectura no siguen compatibles). Instal·leu {0} manualment. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} no s'ha trobat al catàleg de l'Administrador de paquets de Windows. Proveu d'actualitzar les fonts del winget, o instal·leu {0} manualment. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ La instal·lació de {0} ha tardat més de 20 minuts. Intelligent Terminal ha deixat d'esperar, però pot ser que l'instal·lador encara s'estiga executant en segon pla. Consulteu Task Manager, o torneu a provar més tard. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ L'Administrador de paquets de Windows (winget) no està instal·lat o no està disponible. Instal·leu-lo primer i torneu a provar. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ No s'ha pogut instal·lar Node.js. Comproveu la connexió de xarxa i torneu a provar. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Actiu diff --git a/src/cascadia/TerminalApp/Resources/cs-CZ/Resources.resw b/src/cascadia/TerminalApp/Resources/cs-CZ/Resources.resw index 418fac90a..fbbe92dbd 100644 --- a/src/cascadia/TerminalApp/Resources/cs-CZ/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/cs-CZ/Resources.resw @@ -220,18 +220,51 @@ Nastavování... - - ⚠ Nepodařilo se nainstalovat GitHub Copilot. Zkontrolujte síťové připojení a zkuste to znovu. - {Locked="GitHub Copilot"} + + ⚠ Instalace {0} byla zablokována zásadami Správce balíčků systému Windows. Pokud používáte spravované zařízení, kontaktujte správce IT. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Nepodařilo se nainstalovat {0} (kód chyby {1}). Podrobnosti najdete v protokolu, nebo nainstalujte {0} ručně. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Nepodařilo se nainstalovat {0}. Podrobnosti najdete v protokolu, nebo nainstalujte {0} ručně. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Instalační program {0} oznámil chybu (kód {1}). Podrobnosti najdete v protokolu, nebo nainstalujte {0} ručně. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Při instalaci {0} se nepodařilo spojit se Správcem balíčků systému Windows. Zkontrolujte připojení k internetu (VPN, proxy server nebo brána firewall ho můžou blokovat) a zkuste to znovu. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ V tomto systému není k dispozici žádný kompatibilní instalační program pro {0} (verze operačního systému nebo architektura nemusí být podporovaná). Nainstalujte {0} ručně. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} se nenašel v katalogu Správce balíčků systému Windows. Zkuste aktualizovat zdroje winget nebo nainstalujte {0} ručně. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Instalace {0} trvala déle než 20 minut. Intelligent Terminal přestal čekat, ale instalační program může stále běžet na pozadí. Zkontrolujte Task Manager, nebo to zkuste znovu později. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Správce balíčků systému Windows (winget) není nainstalovaný nebo není dostupný. Nejdřív ho nainstalujte a pak to zkuste znovu. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Nepodařilo se nainstalovat Node.js. Zkontrolujte síťové připojení a zkuste to znovu. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + Zapnuto diff --git a/src/cascadia/TerminalApp/Resources/cy-GB/Resources.resw b/src/cascadia/TerminalApp/Resources/cy-GB/Resources.resw index 202e46c8d..aa693b068 100644 --- a/src/cascadia/TerminalApp/Resources/cy-GB/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/cy-GB/Resources.resw @@ -107,17 +107,49 @@ Yn gosod... - - ⚠ Methodd gosod GitHub Copilot. Gwiriwch eich cysylltiad rhwydwaith a cheisiwch eto. - {Locked="GitHub Copilot"} + + ⚠ Cafodd gosod {0} ei rwystro gan bolisi Rheolwr Pecynnau Windows. Os ydych ar ddyfais a reolir, cysylltwch â'ch gweinyddwr TG. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Methu gosod {0} (cod gwall {1}). Gweler y log am fanylion, neu gosodwch {0} â llaw. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Methu gosod {0}. Gweler y log am fanylion, neu gosodwch {0} â llaw. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Adroddodd gosodwr {0} wall (cod {1}). Gwiriwch y log am fanylion, neu gosodwch {0} â llaw. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Methu cyrraedd Rheolwr Pecynnau Windows wrth osod {0}. Gwiriwch eich cysylltiad â'r rhyngrwyd (gallai VPN, dirprwy neu fur gwarchod fod yn ei rwystro) a cheisiwch eto. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Nid oes gosodwr cydnaws ar gyfer {0} ar gael ar y system hon (efallai nad yw fersiwn y system weithredu neu'r bensaernïaeth yn cael ei chefnogi). Gosodwch {0} â llaw. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Ni chafwyd hyd i {0} yng nghatalog Rheolwr Pecynnau Windows. Ceisiwch adnewyddu ffynonellau winget, neu gosodwch {0} â llaw. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Cymerodd gosod {0} fwy na 20 munud. Rhoddodd Intelligent Terminal y gorau i aros, ond gallai'r gosodwr fod yn rhedeg yn y cefndir o hyd. Gwiriwch Task Manager, neu ceisiwch eto'n nes ymlaen. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Nid yw Rheolwr Pecynnau Windows (winget) wedi'i osod neu nid yw ar gael. Gosodwch ef yn gyntaf, ac yna ceisiwch eto. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Methodd gosod Node.js. Gwiriwch eich cysylltiad rhwydwaith a cheisiwch eto. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Ymlaen diff --git a/src/cascadia/TerminalApp/Resources/da-DK/Resources.resw b/src/cascadia/TerminalApp/Resources/da-DK/Resources.resw index 19ff4054b..861f39886 100644 --- a/src/cascadia/TerminalApp/Resources/da-DK/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/da-DK/Resources.resw @@ -221,17 +221,49 @@ In this context, "agent" refers to an AI agent (e.g. Copilot, Claude, Gemini), n Konfigurerer... - - ⚠ Installation af GitHub Copilot mislykkedes. Kontroller din netværksforbindelse, og prøv igen. - {Locked="GitHub Copilot"} + + ⚠ Installation af {0} blev blokeret af en Windows Package Manager-politik. Hvis du bruger en administreret enhed, skal du kontakte din it-administrator. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Kunne ikke installere {0} (fejlkode {1}). Kontroller loggen for detaljer, eller installer {0} manuelt. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Kunne ikke installere {0}. Kontroller loggen for detaljer, eller installer {0} manuelt. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Installationsprogrammet til {0} rapporterede en fejl (kode {1}). Kontroller loggen for detaljer, eller installer {0} manuelt. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Kunne ikke oprette forbindelse til Windows Package Manager under installation af {0}. Kontroller din internetforbindelse (VPN, proxy eller firewall blokerer den muligvis), og prøv igen. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Der findes ikke et kompatibelt installationsprogram til {0} på dette system (OS-versionen eller arkitekturen understøttes muligvis ikke). Installer {0} manuelt. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} blev ikke fundet i Windows Package Manager-kataloget. Prøv at opdatere winget-kilderne, eller installer {0} manuelt. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Installation af {0} tog mere end 20 minutter. Intelligent Terminal holdt op med at vente, men installationsprogrammet kører muligvis stadig i baggrunden. Kontroller Task Manager, eller prøv igen senere. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) er ikke installeret eller er ikke tilgængelig. Installer den først, og prøv igen. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Installation af Node.js mislykkedes. Kontroller din netværksforbindelse, og prøv igen. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Til diff --git a/src/cascadia/TerminalApp/Resources/de-DE/Resources.resw b/src/cascadia/TerminalApp/Resources/de-DE/Resources.resw index 2fbd825e3..35cae6750 100644 --- a/src/cascadia/TerminalApp/Resources/de-DE/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/de-DE/Resources.resw @@ -1078,17 +1078,49 @@ Wird eingerichtet... - - ⚠ GitHub Copilot konnte nicht installiert werden. Überprüfen Sie Ihre Netzwerkverbindung und versuchen Sie es erneut. - {Locked="GitHub Copilot"} + + ⚠ Die Installation von {0} wurde durch eine Windows-Paket-Manager-Richtlinie blockiert. Wenn Sie ein verwaltetes Gerät verwenden, wenden Sie sich an Ihren IT-Administrator. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ {0} konnte nicht installiert werden (Fehlercode {1}). Überprüfen Sie das Protokoll auf Details, oder installieren Sie {0} manuell. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ {0} konnte nicht installiert werden. Überprüfen Sie das Protokoll auf Details, oder installieren Sie {0} manuell. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Das Installationsprogramm für {0} hat einen Fehler gemeldet (Code {1}). Überprüfen Sie das Protokoll auf Details, oder installieren Sie {0} manuell. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Der Windows-Paket-Manager konnte während der Installation von {0} nicht erreicht werden. Überprüfen Sie Ihre Internetverbindung (VPN, Proxy oder Firewall blockieren sie möglicherweise), und versuchen Sie es erneut. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Auf diesem System ist kein kompatibles Installationsprogramm für {0} verfügbar (Betriebssystemversion oder Architektur wird möglicherweise nicht unterstützt). Installieren Sie {0} manuell. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} wurde im Katalog des Windows-Paket-Managers nicht gefunden. Versuchen Sie, die winget-Quellen zu aktualisieren, oder installieren Sie {0} manuell. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Die Installation von {0} hat länger als 20 Minuten gedauert. Intelligent Terminal wartet nicht mehr, aber das Installationsprogramm wird möglicherweise noch im Hintergrund ausgeführt. Überprüfen Sie Task Manager, oder versuchen Sie es später erneut. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Der Windows-Paket-Manager (winget) ist nicht installiert oder nicht verfügbar. Installieren Sie ihn zuerst, und versuchen Sie es dann erneut. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Node.js konnte nicht installiert werden. Überprüfen Sie Ihre Netzwerkverbindung und versuchen Sie es erneut. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. ⚠ Sitzungs-hooks konnten nicht installiert werden. Die Sitzungsverwaltung wurde deaktiviert. Sie können sie erneut aktivieren und es noch einmal versuchen, oder speichern, um ohne sie fortzufahren. diff --git a/src/cascadia/TerminalApp/Resources/el-GR/Resources.resw b/src/cascadia/TerminalApp/Resources/el-GR/Resources.resw index 35d0c6827..83245a6fb 100644 --- a/src/cascadia/TerminalApp/Resources/el-GR/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/el-GR/Resources.resw @@ -107,18 +107,51 @@ Ρύθμιση... - - ⚠ Η εγκατάσταση του GitHub Copilot απέτυχε. Ελέγξτε τη σύνδεση δικτύου και δοκιμάστε ξανά. - {Locked="GitHub Copilot"} + + ⚠ Η εγκατάσταση του {0} αποκλείστηκε από πολιτική της Διαχείρισης πακέτων των Windows. Αν χρησιμοποιείτε διαχειριζόμενη συσκευή, επικοινωνήστε με τον διαχειριστή IT. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Δεν ήταν δυνατή η εγκατάσταση του {0} (κωδικός σφάλματος {1}). Ανατρέξτε στο αρχείο καταγραφής για λεπτομέρειες ή εγκαταστήστε το {0} με μη αυτόματο τρόπο. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Δεν ήταν δυνατή η εγκατάσταση του {0}. Ανατρέξτε στο αρχείο καταγραφής για λεπτομέρειες ή εγκαταστήστε το {0} με μη αυτόματο τρόπο. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Το πρόγραμμα εγκατάστασης του {0} ανέφερε σφάλμα (κωδικός {1}). Ανατρέξτε στο αρχείο καταγραφής για λεπτομέρειες ή εγκαταστήστε το {0} με μη αυτόματο τρόπο. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Δεν ήταν δυνατή η επικοινωνία με τη Διαχείριση πακέτων των Windows κατά την εγκατάσταση του {0}. Ελέγξτε τη σύνδεσή σας στο Internet (VPN, διακομιστής μεσολάβησης ή τείχος προστασίας ενδέχεται να την αποκλείει) και δοκιμάστε ξανά. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Δεν υπάρχει διαθέσιμο συμβατό πρόγραμμα εγκατάστασης για το {0} σε αυτό το σύστημα (η έκδοση του OS ή η αρχιτεκτονική ενδέχεται να μην υποστηρίζεται). Εγκαταστήστε το {0} με μη αυτόματο τρόπο. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Το {0} δεν βρέθηκε στον κατάλογο της Διαχείρισης πακέτων των Windows. Δοκιμάστε να ανανεώσετε τις προελεύσεις winget ή εγκαταστήστε το {0} με μη αυτόματο τρόπο. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Η εγκατάσταση του {0} διήρκεσε περισσότερο από 20 λεπτά. Το Intelligent Terminal σταμάτησε να περιμένει, αλλά το πρόγραμμα εγκατάστασης μπορεί να εξακολουθεί να εκτελείται στο παρασκήνιο. Ελέγξτε το Task Manager ή δοκιμάστε ξανά αργότερα. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Η Διαχείριση πακέτων των Windows (winget) δεν είναι εγκατεστημένη ή δεν είναι διαθέσιμη. Εγκαταστήστε την πρώτα και, στη συνέχεια, δοκιμάστε ξανά. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Η εγκατάσταση του Node.js απέτυχε. Ελέγξτε τη σύνδεση δικτύου και δοκιμάστε ξανά. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + Ενεργό diff --git a/src/cascadia/TerminalApp/Resources/en-GB/Resources.resw b/src/cascadia/TerminalApp/Resources/en-GB/Resources.resw index cca4c36c6..98d1a49e9 100644 --- a/src/cascadia/TerminalApp/Resources/en-GB/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/en-GB/Resources.resw @@ -215,17 +215,49 @@ Setting up... - - ⚠ Failed to install GitHub Copilot. Check your network and try again. - {Locked="GitHub Copilot"} + + ⚠ Installation of {0} was blocked by a Windows Package Manager policy. If you're on a managed device, contact your IT admin. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Couldn't install {0} (error code {1}). See the log for details, or install {0} manually. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Couldn't install {0}. See the log for details, or install {0} manually. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ The {0} installer reported an error (code {1}). Check the log for details, or install {0} manually. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Couldn't reach the Windows Package Manager while installing {0}. Check your internet connection (VPN, proxy, or firewall may be blocking it) and try again. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ No compatible installer for {0} is available on this system (OS version or architecture may not be supported). Install {0} manually. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} wasn't found in the Windows Package Manager catalog. Try refreshing winget sources, or install {0} manually. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Installing {0} took longer than 20 minutes. Intelligent Terminal stopped waiting, but the installer may still be running in the background. Check Task Manager, or try again later. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) is not installed or not available. Install it first, then try again. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Failed to install Node.js. Check your network and try again. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. On diff --git a/src/cascadia/TerminalApp/Resources/en-US/Resources.resw b/src/cascadia/TerminalApp/Resources/en-US/Resources.resw index 0ed023e24..08966f14c 100644 --- a/src/cascadia/TerminalApp/Resources/en-US/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/en-US/Resources.resw @@ -1149,17 +1149,49 @@ In this context, "agent" refers to an AI agent (e.g. Copilot, Claude, Gemini), n Setting up... - - ⚠ Failed to install GitHub Copilot. Check your network and try again. - {Locked="GitHub Copilot"} - ⚠ Windows Package Manager (winget) is not installed or not available. Install it first, then try again. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + + ⚠ Couldn't reach the Windows Package Manager while installing {0}. Check your internet connection (VPN, proxy, or firewall may be blocking it) and try again. + {Locked="VPN"} FRE setup error. {0} is the package display name (FreOverlay_PackageDisplayName_Copilot or _Node). Shown when winget couldn't reach its catalog or the package download failed with a network-class HRESULT. + + + ⚠ Installation of {0} was blocked by a Windows Package Manager policy. If you're on a managed device, contact your IT admin. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy (group policy disabled the operation). + + + ⚠ {0} wasn't found in the Windows Package Manager catalog. Try refreshing winget sources, or install {0} manually. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). Shown when no manifest with the requested package ID was returned from the catalog search. + + + ⚠ No compatible installer for {0} is available on this system (OS version or architecture may not be supported). Install {0} manually. + FRE setup error. {0} is the package display name (appears twice). Shown when winget returned NoApplicableInstallers — the manifest exists but no installer entry matches this OS/arch/scope. + + + ⚠ The {0} installer reported an error (code {1}). Check the log for details, or install {0} manually. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). Shown when winget reached the install phase but the installer itself failed. + + + ⚠ Installing {0} took longer than 20 minutes. Intelligent Terminal stopped waiting, but the installer may still be running in the background. Check Task Manager, or try again later. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. Shown when our 20-minute hard timeout expired before the install completed. + + + ⚠ Couldn't install {0} (error code {1}). See the log for details, or install {0} manually. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". Shown for failure causes we don't have a more specific message for. - - ⚠ Failed to install Node.js. Check your network and try again. - {Locked="Node.js"} + + ⚠ Couldn't install {0}. See the log for details, or install {0} manually. + FRE setup error fallback used when no actionable error code is available (e.g. the catalog connect/search failed before an installer ever ran). {0} is the package display name (appears twice). ⚠ Failed to install session hooks. Session management has been turned off. You can re-enable it and try again, or save to continue without it. diff --git a/src/cascadia/TerminalApp/Resources/es-ES/Resources.resw b/src/cascadia/TerminalApp/Resources/es-ES/Resources.resw index d72bf889b..008022f4a 100644 --- a/src/cascadia/TerminalApp/Resources/es-ES/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/es-ES/Resources.resw @@ -1075,17 +1075,49 @@ Configurando... - - ⚠ Error al instalar GitHub Copilot. Comprueba tu conexión de red e inténtalo de nuevo. - {Locked="GitHub Copilot"} + + ⚠ La instalación de {0} fue bloqueada por una directiva del Administrador de paquetes de Windows. Si estás en un dispositivo administrado, ponte en contacto con tu administrador de TI. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ No se pudo instalar {0} (código de error {1}). Consulta el registro para obtener más detalles o instala {0} manualmente. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ No se pudo instalar {0}. Consulta el registro para obtener más detalles o instala {0} manualmente. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ El instalador de {0} notificó un error (código {1}). Consulta el registro para obtener más detalles o instala {0} manualmente. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ No se pudo acceder al Administrador de paquetes de Windows al instalar {0}. Comprueba tu conexión a Internet (VPN, proxy o firewall podrían estar bloqueándola) e inténtalo de nuevo. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ No hay disponible ningún instalador compatible para {0} en este sistema (es posible que la versión del sistema operativo o la arquitectura no sean compatibles). Instala {0} manualmente. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} no se encontró en el catálogo del Administrador de paquetes de Windows. Intenta actualizar las fuentes de winget o instala {0} manualmente. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ La instalación de {0} ha tardado más de 20 minutos. Intelligent Terminal dejó de esperar, pero es posible que el instalador siga ejecutándose en segundo plano. Consulta Task Manager o inténtalo de nuevo más tarde. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ El Administrador de paquetes de Windows (winget) no está instalado o no está disponible. Instálalo primero y vuelve a intentarlo. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Error al instalar Node.js. Comprueba tu conexión de red e inténtalo de nuevo. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. ⚠ Error al instalar los hooks de sesión. La gestión de sesiones se ha desactivado. Puedes volver a activarla e intentarlo de nuevo, o guardar para continuar sin ella. diff --git a/src/cascadia/TerminalApp/Resources/es-MX/Resources.resw b/src/cascadia/TerminalApp/Resources/es-MX/Resources.resw index 11d3e02ca..f61e01c49 100644 --- a/src/cascadia/TerminalApp/Resources/es-MX/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/es-MX/Resources.resw @@ -215,17 +215,49 @@ Configurando... - - ⚠ Error al instalar GitHub Copilot. Verifica tu conexión de red e inténtalo de nuevo. - {Locked="GitHub Copilot"} + + ⚠ La instalación de {0} fue bloqueada por una directiva del Administrador de paquetes de Windows. Si estás en un dispositivo administrado, ponte en contacto con tu administrador de TI. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ No se pudo instalar {0} (código de error {1}). Consulta el registro para obtener más detalles o instala {0} manualmente. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ No se pudo instalar {0}. Consulta el registro para obtener más detalles o instala {0} manualmente. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ El instalador de {0} notificó un error (código {1}). Consulta el registro para obtener más detalles o instala {0} manualmente. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ No se pudo acceder al Administrador de paquetes de Windows al instalar {0}. Verifica tu conexión a Internet (VPN, proxy o firewall podrían estar bloqueándola) e inténtalo de nuevo. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ No hay disponible ningún instalador compatible para {0} en este sistema (es posible que la versión del sistema operativo o la arquitectura no sean compatibles). Instala {0} manualmente. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} no se encontró en el catálogo del Administrador de paquetes de Windows. Intenta actualizar las fuentes de winget o instala {0} manualmente. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ La instalación de {0} tardó más de 20 minutos. Intelligent Terminal dejó de esperar, pero es posible que el instalador siga ejecutándose en segundo plano. Consulta Task Manager o inténtalo de nuevo más tarde. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ El Administrador de paquetes de Windows (winget) no está instalado o no está disponible. Instálalo primero y vuelve a intentarlo. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Error al instalar Node.js. Verifica tu conexión de red e inténtalo de nuevo. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Activado diff --git a/src/cascadia/TerminalApp/Resources/et-EE/Resources.resw b/src/cascadia/TerminalApp/Resources/et-EE/Resources.resw index 22aa84d84..2448767d3 100644 --- a/src/cascadia/TerminalApp/Resources/et-EE/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/et-EE/Resources.resw @@ -220,18 +220,51 @@ Seadistamine... - - ⚠ GitHub Copiloti installimine nurjus. Kontrollige võrguühendust ja proovige uuesti. - {Locked="GitHub Copilot"} + + ⚠ Windowsi paketihalduri poliitika blokeeris üksuse {0} installimise. Kui kasutate hallatavat seadet, võtke ühendust oma IT-administraatoriga. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Üksust {0} ei saanud installida (tõrkekood {1}). Vaadake üksikasju logist või installige {0} käsitsi. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Üksust {0} ei saanud installida. Vaadake üksikasju logist või installige {0} käsitsi. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0} installiprogramm teatas tõrkest (kood {1}). Vaadake üksikasju logist või installige {0} käsitsi. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Windowsi paketihalduriga ei saanud {0} installimise ajal ühendust võtta. Kontrollige internetiühendust (VPN, puhverserver või tulemüür võib seda blokeerida) ja proovige uuesti. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Selles süsteemis pole üksuse {0} jaoks ühilduvat installiprogrammi saadaval (OS-i versioon või arhitektuur ei pruugi olla toetatud). Installige {0} käsitsi. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} ei leitud Windowsi paketihalduri kataloogist. Proovige winget-allikaid värskendada või installige {0} käsitsi. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} installimine võttis kauem kui 20 minutit. Intelligent Terminal lõpetas ootamise, kuid installiprogramm võib endiselt taustal töötada. Kontrollige Task Manageri või proovige hiljem uuesti. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windowsi paketihaldur (winget) pole installitud või pole saadaval. Installige see esmalt ja proovige siis uuesti. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Node.js installimine nurjus. Kontrollige võrguühendust ja proovige uuesti. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + Sees diff --git a/src/cascadia/TerminalApp/Resources/eu-ES/Resources.resw b/src/cascadia/TerminalApp/Resources/eu-ES/Resources.resw index 3dba209dc..20962e7a8 100644 --- a/src/cascadia/TerminalApp/Resources/eu-ES/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/eu-ES/Resources.resw @@ -107,17 +107,49 @@ Konfiguratzen... - - ⚠ GitHub Copilot instalatzeak huts egin du. Egiaztatu sare-konexioa eta saiatu berriro. - {Locked="GitHub Copilot"} + + ⚠ {0} instalatzea Windows pakete-kudeatzailearen gidalerro batek blokeatu du. Gailu kudeatu batean bazaude, jarri harremanetan zure IT administratzailearekin. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Ezin izan da {0} instalatu (errore-kodea: {1}). Begiratu erregistroa xehetasunetarako, edo instalatu {0} eskuz. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Ezin izan da {0} instalatu. Begiratu erregistroa xehetasunetarako, edo instalatu {0} eskuz. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0} instalatzaileak errore bat jakinarazi du (kodea: {1}). Begiratu erregistroa xehetasunetarako, edo instalatu {0} eskuz. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Ezin izan da Windows pakete-kudeatzailearekin konektatu {0} instalatzen zen bitartean. Egiaztatu Interneteko konexioa (VPN, proxy edo suebaki batek blokea dezake) eta saiatu berriro. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ {0} instalatzeko ez dago instalatzaile bateragarririk sistema honetan (baliteke SEaren bertsioa edo arkitektura ez onartzea). Instalatu {0} eskuz. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} ez da aurkitu Windows pakete-kudeatzailearen katalogoan. Saiatu winget iturburuak freskatzen, edo instalatu {0} eskuz. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} instalatzeak 20 minutu baino gehiago iraun du. Intelligent Terminal itxaroteari utzi dio, baina baliteke instalatzaileak atzeko planoan exekutatzen jarraitzea. Begiratu Task Manager, edo saiatu berriro geroago. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows pakete-kudeatzailea (winget) ez dago instalatuta edo ez dago erabilgarri. Instalatu lehenik, eta saiatu berriro. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Node.js instalatzeak huts egin du. Egiaztatu sare-konexioa eta saiatu berriro. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Aktibatuta diff --git a/src/cascadia/TerminalApp/Resources/fa-IR/Resources.resw b/src/cascadia/TerminalApp/Resources/fa-IR/Resources.resw index 20a210edf..9a7ebfb77 100644 --- a/src/cascadia/TerminalApp/Resources/fa-IR/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/fa-IR/Resources.resw @@ -221,17 +221,49 @@ در حال تنظیم... - - ⚠ نصب GitHub Copilot ناموفق بود. شبکه خود را بررسی کنید و دوباره تلاش کنید. - {Locked="GitHub Copilot"} + + ⚠ نصب {0} توسط خط‌مشی مدیر بسته Windows مسدود شد. اگر از دستگاه مدیریت‌شده استفاده می‌کنید، با سرپرست IT خود تماس بگیرید. + FRE setup error. {0} is the package display name. + + + ⚠ نصب {0} ممکن نشد (کد خطا {1}). برای جزئیات، گزارش را ببینید، یا {0} را دستی نصب کنید. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string. + + + ⚠ نصب {0} ممکن نشد. برای جزئیات، گزارش را ببینید، یا {0} را دستی نصب کنید. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ نصب‌کننده {0} خطایی گزارش کرد (کد {1}). برای جزئیات، گزارش را بررسی کنید، یا {0} را دستی نصب کنید. + FRE setup error. {0} is the package display name (appears twice). {1} is decimal error code. + + + ⚠ هنگام نصب {0}، دسترسی به مدیر بسته Windows ممکن نشد. اتصال اینترنت خود را بررسی کنید (ممکن است VPN، پراکسی یا فایروال آن را مسدود کرده باشد) و دوباره تلاش کنید. + {Locked="VPN"} FRE setup error. {0} is the package display name. + + + ⚠ نصب‌کننده سازگاری برای {0} در این سیستم در دسترس نیست (ممکن است نسخه سیستم‌عامل یا معماری پشتیبانی نشود). {0} را دستی نصب کنید. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} در کاتالوگ مدیر بسته Windows یافت نشد. سعی کنید منابع winget را تازه‌سازی کنید، یا {0} را دستی نصب کنید. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ نصب {0} بیش از 20 دقیقه طول کشید. Intelligent Terminal دیگر منتظر نماند، اما نصب‌کننده ممکن است همچنان در پس‌زمینه در حال اجرا باشد. Task Manager را بررسی کنید، یا بعداً دوباره تلاش کنید. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ مدیر بسته Windows (winget) نصب نشده یا در دسترس نیست. ابتدا آن را نصب کنید، سپس دوباره تلاش کنید. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ نصب Node.js ناموفق بود. شبکه خود را بررسی کنید و دوباره تلاش کنید. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. روشن diff --git a/src/cascadia/TerminalApp/Resources/fi-FI/Resources.resw b/src/cascadia/TerminalApp/Resources/fi-FI/Resources.resw index 4fa7fd6b2..b16ebf9d8 100644 --- a/src/cascadia/TerminalApp/Resources/fi-FI/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/fi-FI/Resources.resw @@ -220,17 +220,49 @@ Määritetään... - - ⚠ GitHub Copilotin asennus epäonnistui. Tarkista verkkoyhteys ja yritä uudelleen. - {Locked="GitHub Copilot"} + + ⚠ Kohteen {0} asennus estettiin Windowsin paketinhallinnan käytännön vuoksi. Jos käytät hallittua laitetta, ota yhteyttä IT-järjestelmänvalvojaan. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Kohdetta {0} ei voitu asentaa (virhekoodi {1}). Katso lokista lisätiedot tai asenna {0} manuaalisesti. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Kohdetta {0} ei voitu asentaa. Katso lokista lisätiedot tai asenna {0} manuaalisesti. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Kohteen {0} asennusohjelma ilmoitti virheestä (koodi {1}). Tarkista lokista lisätiedot tai asenna {0} manuaalisesti. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Windowsin paketinhallintaan ei saatu yhteyttä asennettaessa kohdetta {0}. Tarkista internetyhteys (VPN, välityspalvelin tai palomuuri voi estää sen) ja yritä uudelleen. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Tälle järjestelmälle ei ole saatavilla yhteensopivaa asennusohjelmaa kohteelle {0} (käyttöjärjestelmän versiota tai arkkitehtuuria ei ehkä tueta). Asenna {0} manuaalisesti. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Kohdetta {0} ei löytynyt Windowsin paketinhallinnan luettelosta. Yritä päivittää winget-lähteet tai asenna {0} manuaalisesti. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Kohteen {0} asennus kesti yli 20 minuuttia. Intelligent Terminal lopetti odottamisen, mutta asennusohjelma saattaa edelleen olla käynnissä taustalla. Tarkista Task Manager tai yritä myöhemmin uudelleen. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windowsin paketinhallintaa (winget) ei ole asennettu tai se ei ole käytettävissä. Asenna se ensin ja yritä sitten uudelleen. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Node.js-asennus epäonnistui. Tarkista verkkoyhteys ja yritä uudelleen. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Päällä diff --git a/src/cascadia/TerminalApp/Resources/fil-PH/Resources.resw b/src/cascadia/TerminalApp/Resources/fil-PH/Resources.resw index 08bf6dad3..4c9127ace 100644 --- a/src/cascadia/TerminalApp/Resources/fil-PH/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/fil-PH/Resources.resw @@ -220,17 +220,49 @@ Sine-set up... - - ⚠ Nabigong i-install ang GitHub Copilot. Suriin ang iyong network at subukang muli. - {Locked="GitHub Copilot"} + + ⚠ Na-block ng patakaran ng Windows Package Manager ang pag-install ng {0}. Kung nasa pinamamahalaang device ka, makipag-ugnayan sa iyong IT admin. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Hindi ma-install ang {0} (error code {1}). Tingnan ang log para sa mga detalye, o manu-manong i-install ang {0}. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Hindi ma-install ang {0}. Tingnan ang log para sa mga detalye, o manu-manong i-install ang {0}. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Nag-ulat ng error ang installer ng {0} (code {1}). Tingnan ang log para sa mga detalye, o manu-manong i-install ang {0}. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Hindi maabot ang Windows Package Manager habang ini-install ang {0}. Suriin ang iyong koneksyon sa internet (maaaring bina-block ito ng VPN, proxy, o firewall) at subukang muli. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Walang compatible na installer para sa {0} na available sa system na ito (maaaring hindi suportado ang bersyon ng OS o architecture). Manu-manong i-install ang {0}. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Hindi natagpuan ang {0} sa catalog ng Windows Package Manager. Subukang i-refresh ang mga source ng winget, o manu-manong i-install ang {0}. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Tumagal nang higit sa 20 minuto ang pag-install ng {0}. Huminto sa paghihintay ang Intelligent Terminal, pero maaaring tumatakbo pa rin sa background ang installer. Suriin ang Task Manager, o subukang muli mamaya. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Hindi naka-install o hindi available ang Windows Package Manager (winget). I-install muna ito, pagkatapos ay subukang muli. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Nabigong i-install ang Node.js. Suriin ang iyong network at subukang muli. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Node.js prerequisite. Bukas diff --git a/src/cascadia/TerminalApp/Resources/fr-CA/Resources.resw b/src/cascadia/TerminalApp/Resources/fr-CA/Resources.resw index 793b11f22..7c1a906d6 100644 --- a/src/cascadia/TerminalApp/Resources/fr-CA/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/fr-CA/Resources.resw @@ -215,17 +215,49 @@ Configuration en cours... - - ⚠ Échec de l'installation de GitHub Copilot. Vérifiez votre connexion réseau et réessayez. - {Locked="GitHub Copilot"} + + ⚠ L'installation de {0} a été bloquée par une stratégie du Gestionnaire de package Windows. Si vous utilisez un appareil géré, contactez votre administrateur informatique. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Impossible d'installer {0} (code d'erreur {1}). Consultez le journal pour plus de détails, ou installez {0} manuellement. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Impossible d'installer {0}. Consultez le journal pour plus de détails, ou installez {0} manuellement. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Le programme d'installation de {0} a signalé une erreur (code {1}). Consultez le journal pour plus de détails, ou installez {0} manuellement. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Impossible de joindre le Gestionnaire de package Windows pendant l'installation de {0}. Vérifiez votre connexion Internet (un VPN, un proxy ou un pare-feu peut la bloquer), puis réessayez. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Aucun programme d'installation compatible pour {0} n'est disponible sur ce système (la version du système d'exploitation ou l'architecture n'est peut-être pas prise en charge). Installez {0} manuellement. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} est introuvable dans le catalogue du Gestionnaire de package Windows. Essayez d'actualiser les sources winget, ou installez {0} manuellement. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ L'installation de {0} a pris plus de 20 minutes. Intelligent Terminal a cessé d'attendre, mais le programme d'installation est peut-être toujours en cours d'exécution en arrière-plan. Consultez Task Manager, ou réessayez plus tard. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Le Gestionnaire de package Windows (winget) n'est pas installé ou n'est pas disponible. Installez-le d'abord, puis réessayez. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Échec de l'installation de Node.js. Vérifiez votre connexion réseau et réessayez. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Activé diff --git a/src/cascadia/TerminalApp/Resources/fr-FR/Resources.resw b/src/cascadia/TerminalApp/Resources/fr-FR/Resources.resw index 5c2703b00..f84b1eb01 100644 --- a/src/cascadia/TerminalApp/Resources/fr-FR/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/fr-FR/Resources.resw @@ -1076,17 +1076,49 @@ Configuration en cours... - - ⚠ Échec de l'installation de GitHub Copilot. Vérifiez votre connexion réseau et réessayez. - {Locked="GitHub Copilot"} + + ⚠ L'installation de {0} a été bloquée par une stratégie du Gestionnaire de package Windows. Si vous utilisez un appareil géré, contactez votre administrateur informatique. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Impossible d'installer {0} (code d'erreur {1}). Consultez le journal pour plus de détails, ou installez {0} manuellement. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Impossible d'installer {0}. Consultez le journal pour plus de détails, ou installez {0} manuellement. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Le programme d'installation de {0} a signalé une erreur (code {1}). Consultez le journal pour plus de détails, ou installez {0} manuellement. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Impossible de joindre le Gestionnaire de package Windows pendant l'installation de {0}. Vérifiez votre connexion Internet (un VPN, un proxy ou un pare-feu peut la bloquer), puis réessayez. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Aucun programme d'installation compatible pour {0} n'est disponible sur ce système (la version du système d'exploitation ou l'architecture n'est peut-être pas prise en charge). Installez {0} manuellement. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} est introuvable dans le catalogue du Gestionnaire de package Windows. Essayez d'actualiser les sources winget, ou installez {0} manuellement. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ L'installation de {0} a pris plus de 20 minutes. Intelligent Terminal a cessé d'attendre, mais le programme d'installation est peut-être toujours en cours d'exécution en arrière-plan. Consultez Task Manager, ou réessayez plus tard. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Le Gestionnaire de package Windows (winget) n'est pas installé ou n'est pas disponible. Installez-le d'abord, puis réessayez. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Échec de l'installation de Node.js. Vérifiez votre connexion réseau et réessayez. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. ⚠ Échec de l'installation des hooks de session. La gestion des sessions a été désactivée. Vous pouvez la réactiver et réessayer, ou enregistrer pour continuer sans elle. diff --git a/src/cascadia/TerminalApp/Resources/ga-IE/Resources.resw b/src/cascadia/TerminalApp/Resources/ga-IE/Resources.resw index 610c7845e..5cf54542f 100644 --- a/src/cascadia/TerminalApp/Resources/ga-IE/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/ga-IE/Resources.resw @@ -107,17 +107,49 @@ Ag socrú... - - ⚠ Theip ar GitHub Copilot a shuiteáil. Seiceáil do cheangal líonra agus bain triail eile as. - {Locked="GitHub Copilot"} + + ⚠ Chuir polasaí de chuid Bhainisteoir Pacáistí Windows bac ar shuiteáil {0}. Má tá gléas bainistithe in úsáid agat, déan teagmháil le do riarthóir TF. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Níorbh fhéidir {0} a shuiteáil (cód earráide {1}). Seiceáil an loga le haghaidh sonraí, nó suiteáil {0} de láimh. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Níorbh fhéidir {0} a shuiteáil. Seiceáil an loga le haghaidh sonraí, nó suiteáil {0} de láimh. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Thuairiscigh suiteálaí {0} earráid (cód {1}). Seiceáil an loga le haghaidh sonraí, nó suiteáil {0} de láimh. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Níorbh fhéidir Bainisteoir Pacáistí Windows a bhaint amach agus {0} á shuiteáil. Seiceáil do cheangal idirlín (d'fhéadfadh VPN, seachfhreastalaí nó balla dóiteáin é a bhlocáil) agus bain triail eile as. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Níl aon suiteálaí comhoiriúnach do {0} ar fáil ar an gcóras seo (seans nach dtacaítear le leagan an chórais oibriúcháin nó leis an ailtireacht). Suiteáil {0} de láimh. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Níor aimsíodh {0} i gcatalóg Bhainisteoir Pacáistí Windows. Bain triail as foinsí winget a athnuachan, nó suiteáil {0} de láimh. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Thóg suiteáil {0} níos mó ná 20 nóiméad. Stop Intelligent Terminal de bheith ag fanacht, ach d'fhéadfadh an suiteálaí a bheith fós ag rith sa chúlra. Seiceáil Task Manager, nó bain triail eile as níos déanaí. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Níl Bainisteoir Pacáistí Windows (winget) suiteáilte nó ar fáil. Suiteáil é ar dtús, ansin bain triail eile as. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Theip ar Node.js a shuiteáil. Seiceáil do cheangal líonra agus bain triail eile as. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Air diff --git a/src/cascadia/TerminalApp/Resources/gd-gb/Resources.resw b/src/cascadia/TerminalApp/Resources/gd-gb/Resources.resw index 0a8ee5f8e..cf8471f39 100644 --- a/src/cascadia/TerminalApp/Resources/gd-gb/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/gd-gb/Resources.resw @@ -107,17 +107,49 @@ Ga shuidheachadh... - - ⚠ Dh'fhàillig stàladh GitHub Copilot. Thoir sùil air do cheangal lìon agus feuch a-rithist. - {Locked="GitHub Copilot"} + + ⚠ Chaidh stàladh {0} a bhacadh le poileasaidh Manaidsear Pacaidean Windows. Ma tha thu air uidheam air a stiùireadh, cuir fios chun rianaire IT agad. + FRE setup error. {0} is the package display name. + + + ⚠ Cha b' urrainn dhuinn {0} a stàladh (còd mearachd {1}). Faic an loga airson mion-fhiosrachadh, no stàlaich {0} le làimh. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string. + + + ⚠ Cha b' urrainn dhuinn {0} a stàladh. Faic an loga airson mion-fhiosrachadh, no stàlaich {0} le làimh. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Dh'aithris stàlaichear {0} mearachd (còd {1}). Thoir sùil air an loga airson mion-fhiosrachadh, no stàlaich {0} le làimh. + FRE setup error. {0} is the package display name (appears twice). {1} is decimal error code. + + + ⚠ Cha b' urrainn dhuinn Manaidsear Pacaidean Windows a ruigsinn fhad 's a bha {0} ga stàladh. Thoir sùil air do cheangal eadar-lìn (dh'fhaodadh VPN, progsaidh no balla-teine a bhith ga bhacadh) agus feuch a-rithist. + {Locked="VPN"} FRE setup error. {0} is the package display name. + + + ⚠ Chan eil stàlaichear co-chòrdail airson {0} ri fhaighinn air an t-siostam seo (dh'fhaodadh nach eil taic ann do dhreach an OS no dhan ailtireachd). Stàlaich {0} le làimh. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Cha deach {0} a lorg ann an catalog Manaidsear Pacaidean Windows. Feuch ri tùsan winget ùrachadh, no stàlaich {0} le làimh. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Thug stàladh {0} nas fhaide na 20 mionaid. Sguir Intelligent Terminal a bhith a' feitheamh, ach dh'fhaodadh an stàlaichear a bhith fhathast a' ruith sa chùlaibh. Thoir sùil air Task Manager, no feuch a-rithist nas fhaide air adhart. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Chan eil Manaidsear Pacaidean Windows (winget) air a stàladh no ri fhaighinn. Stàlaich e an toiseach, agus feuch a-rithist. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Dh'fhàillig stàladh Node.js. Thoir sùil air do cheangal lìon agus feuch a-rithist. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Air diff --git a/src/cascadia/TerminalApp/Resources/gl-ES/Resources.resw b/src/cascadia/TerminalApp/Resources/gl-ES/Resources.resw index 6be23d116..8ad3a9630 100644 --- a/src/cascadia/TerminalApp/Resources/gl-ES/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/gl-ES/Resources.resw @@ -107,17 +107,49 @@ Configurando... - - ⚠ Produciuse un erro ao instalar GitHub Copilot. Comprobe a súa conexión de rede e ténteo de novo. - {Locked="GitHub Copilot"} + + ⚠ A instalación de {0} foi bloqueada por unha directiva do Xestor de paquetes de Windows. Se está nun dispositivo administrado, póñase en contacto co seu administrador de TI. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Non se puido instalar {0} (código de erro {1}). Consulte o rexistro para obter detalles, ou instale {0} manualmente. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Non se puido instalar {0}. Consulte o rexistro para obter detalles, ou instale {0} manualmente. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ O instalador de {0} notificou un erro (código {1}). Consulte o rexistro para obter detalles, ou instale {0} manualmente. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Non se puido contactar co Xestor de paquetes de Windows ao instalar {0}. Comprobe a súa conexión a Internet (VPN, proxy ou firewall poden estar bloqueándoa) e ténteo de novo. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Non hai dispoñible ningún instalador compatible para {0} neste sistema (é posible que a versión do sistema operativo ou a arquitectura non sexan compatibles). Instale {0} manualmente. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} non se atopou no catálogo do Xestor de paquetes de Windows. Tente actualizar as orixes de winget, ou instale {0} manualmente. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ A instalación de {0} tardou máis de 20 minutos. Intelligent Terminal deixou de agardar, pero é posible que o instalador aínda se estea executando en segundo plano. Consulte Task Manager, ou ténteo de novo máis tarde. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ O Xestor de paquetes de Windows (winget) non está instalado ou non está dispoñible. Instáleo primeiro e ténteo de novo. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Produciuse un erro ao instalar Node.js. Comprobe a súa conexión de rede e ténteo de novo. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Activado diff --git a/src/cascadia/TerminalApp/Resources/gu-IN/Resources.resw b/src/cascadia/TerminalApp/Resources/gu-IN/Resources.resw index 5d21e8019..f9a65166c 100644 --- a/src/cascadia/TerminalApp/Resources/gu-IN/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/gu-IN/Resources.resw @@ -220,18 +220,62 @@ સેટ અપ થઈ રહ્યું છે... - - ⚠ GitHub Copilot ઇન્સ્ટોલ કરવામાં નિષ્ફળ. તમારું નેટવર્ક તપાસો અને ફરી પ્રયાસ કરો. - {Locked="GitHub Copilot"} + + ⚠ Windows Package Manager નીતિ દ્વારા {0} નું ઇન્સ્ટોલેશન અવરોધિત કરવામાં આવ્યું હતું. જો તમે મેનેજ્ડ ડિવાઇસ પર હો, તો તમારા IT એડમિનનો સંપર્ક કરો. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy (group policy disabled the operation). + + + ⚠ {0} ઇન્સ્ટોલ કરી શકાયું નહીં (ભૂલ કોડ {1}). વિગતો માટે લૉગ જુઓ, અથવા {0} ને મેન્યુઅલી ઇન્સ્ટોલ કરો. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". Shown for failure causes we don't have a more specific message for. + + + ⚠ {0} ઇન્સ્ટોલ કરી શકાયું નહીં. વિગતો માટે લૉગ જુઓ, અથવા {0} ને મેન્યુઅલી ઇન્સ્ટોલ કરો. + FRE setup error fallback used when no actionable error code is available (e.g. the catalog connect/search failed before an installer ever ran). {0} is the package display name (appears twice). + + + ⚠ {0} ઇન્સ્ટોલરે ભૂલ રિપોર્ટ કરી (કોડ {1}). વિગતો માટે લૉગ તપાસો, અથવા {0} ને મેન્યુઅલી ઇન્સ્ટોલ કરો. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). Shown when winget reached the install phase but the installer itself failed. + + + ⚠ {0} ઇન્સ્ટોલ કરતી વખતે Windows Package Manager સુધી પહોંચી શકાયું નહીં. તમારું ઇન્ટરનેટ કનેક્શન તપાસો (VPN, proxy, અથવા firewall તેને બ્લૉક કરી રહ્યાં હોઈ શકે છે) અને ફરી પ્રયાસ કરો. + {Locked="VPN"} FRE setup error. {0} is the package display name (FreOverlay_PackageDisplayName_Copilot or _Node). Shown when winget couldn't reach its catalog or the package download failed with a network-class HRESULT. + + + ⚠ આ સિસ્ટમ પર {0} માટે કોઈ સુસંગત ઇન્સ્ટોલર ઉપલબ્ધ નથી (OS વર્ઝન અથવા આર્કિટેક્ચર સપોર્ટેડ ન હોઈ શકે). {0} ને મેન્યુઅલી ઇન્સ્ટોલ કરો. + FRE setup error. {0} is the package display name (appears twice). Shown when winget returned NoApplicableInstallers — the manifest exists but no installer entry matches this OS/arch/scope. + + + ⚠ Windows Package Manager કૅટલોગમાં {0} મળ્યું નથી. winget સોર્સ રિફ્રેશ કરવાનો પ્રયાસ કરો, અથવા {0} ને મેન્યુઅલી ઇન્સ્ટોલ કરો. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). Shown when no manifest with the requested package ID was returned from the catalog search. + + + ⚠ {0} ઇન્સ્ટોલ કરવામાં 20 મિનિટથી વધુ સમય લાગ્યો. Intelligent Terminal એ રાહ જોવાનું બંધ કર્યું, પરંતુ ઇન્સ્ટોલર હજી પણ બેકગ્રાઉન્ડમાં ચાલી રહ્યું હોઈ શકે છે. Task Manager તપાસો, અથવા પછીથી ફરી પ્રયાસ કરો. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. Shown when our 20-minute hard timeout expired before the install completed. + + + ⚠ session hooks ઇન્સ્ટોલ કરવામાં નિષ્ફળ. સેશન મેનેજમેન્ટ બંધ કરવામાં આવ્યું છે. તમે તેને ફરીથી સક્ષમ કરીને ફરી પ્રયાસ કરી શકો છો, અથવા તેના વિના ચાલુ રાખવા માટે સાચવો. + {Locked="hooks"} + + + ⚠ શેલ ઇન્ટિગ્રેશન ઇન્સ્ટોલ કરવામાં નિષ્ફળ. ભૂલ શોધ બંધ કરવામાં આવી છે. તમે તેને ફરીથી સક્ષમ કરીને ફરી પ્રયાસ કરી શકો છો, અથવા તેના વિના ચાલુ રાખવા માટે સાચવો. + + + ⚠ PowerShell એક્ઝિક્યુશન પોલિસી સ્ક્રિપ્ટ્સને અવરોધી રહી છે. ભૂલ શોધ બંધ કરી દીધી. + {Locked="PowerShell"} ⚠ Windows Package Manager (winget) ઇન્સ્ટોલ થયેલ નથી અથવા ઉપલબ્ધ નથી. પહેલાં તેને ઇન્સ્ટોલ કરો, પછી ફરી પ્રયાસ કરો. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Node.js ઇન્સ્ટોલ કરવામાં નિષ્ફળ. તમારું નેટવર્ક તપાસો અને ફરી પ્રયાસ કરો. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + ચાલુ @@ -308,12 +352,7 @@ Intelligent Terminal ને તમારા શેલને ઍક્સેસ કરવાની અને ભૂલોને આપમેળે શોધવાની પરવાનગી આપો. - - ⚠ શેલ ઇન્ટિગ્રેશન ઇન્સ્ટોલ કરવામાં નિષ્ફળ. ભૂલ શોધ બંધ કરવામાં આવી છે. તમે તેને ફરીથી સક્ષમ કરીને ફરી પ્રયાસ કરી શકો છો, અથવા તેના વિના ચાલુ રાખવા માટે સાચવો. - - ⚠ session hooks ઇન્સ્ટોલ કરવામાં નિષ્ફળ. સેશન મેનેજમેન્ટ બંધ કરવામાં આવ્યું છે. તમે તેને ફરીથી સક્ષમ કરીને ફરી પ્રયાસ કરી શકો છો, અથવા તેના વિના ચાલુ રાખવા માટે સાચવો. - {Locked="hooks"} - + આને જાતે કેવી રીતે ઠીક કરવું તે જાણો Hyperlink shown below an FRE setup error message. Opens step-by-step manual setup instructions in the browser. @@ -326,8 +365,4 @@ PowerShell એક્ઝિક્યુશન પોલિસી સ્ક્રિપ્ટ્સને અવરોધી રહી છે. Body of an error dialog shown after the user tries to install PowerShell shell integration but their PowerShell execution policy (Restricted or AllSigned) is blocking scripts. A separate "Learn how to fix this manually" hyperlink (FreOverlay_ErrorHelpLink) is rendered on its own line below this sentence. {Locked="PowerShell"} - - ⚠ PowerShell એક્ઝિક્યુશન પોલિસી સ્ક્રિપ્ટ્સને અવરોધી રહી છે. ભૂલ શોધ બંધ કરી દીધી. - {Locked="PowerShell"} - diff --git a/src/cascadia/TerminalApp/Resources/he-IL/Resources.resw b/src/cascadia/TerminalApp/Resources/he-IL/Resources.resw index 2f2b89f4a..d0ec16658 100644 --- a/src/cascadia/TerminalApp/Resources/he-IL/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/he-IL/Resources.resw @@ -221,17 +221,49 @@ מגדיר... - - ⚠ התקנת GitHub Copilot נכשלה. בדוק את הרשת שלך ונסה שוב. - {Locked="GitHub Copilot"} + + ⚠ התקנת {0} נחסמה על-ידי מדיניות של מנהל החבילות של Windows. אם אתה במכשיר מנוהל, פנה למנהל ה-IT שלך. + FRE setup error. {0} is the package display name. + + + ⚠ לא ניתן היה להתקין את {0} (קוד שגיאה {1}). עיין ביומן לקבלת פרטים, או התקן את {0} באופן ידני. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string. + + + ⚠ לא ניתן היה להתקין את {0}. עיין ביומן לקבלת פרטים, או התקן את {0} באופן ידני. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ מתקין {0} דיווח על שגיאה (קוד {1}). בדוק את היומן לקבלת פרטים, או התקן את {0} באופן ידני. + FRE setup error. {0} is the package display name (appears twice). {1} is decimal error code. + + + ⚠ לא ניתן היה להגיע למנהל החבילות של Windows בזמן התקנת {0}. בדוק את החיבור שלך לאינטרנט (VPN, proxy או חומת אש עשויים לחסום אותו) ונסה שוב. + {Locked="VPN"} FRE setup error. {0} is the package display name. + + + ⚠ אין מתקין תואם עבור {0} במערכת זו (ייתכן שגרסת מערכת ההפעלה או הארכיטקטורה אינן נתמכות). התקן את {0} באופן ידני. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} לא נמצא בקטלוג של מנהל החבילות של Windows. נסה לרענן את מקורות winget, או התקן את {0} באופן ידני. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ התקנת {0} ארכה יותר מ-20 דקות. Intelligent Terminal הפסיק להמתין, אך ייתכן שהמתקין עדיין פועל ברקע. בדוק את Task Manager, או נסה שוב מאוחר יותר. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ מנהל החבילות של Windows (winget) אינו מותקן או אינו זמין. התקן אותו תחילה ולאחר מכן נסה שוב. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ התקנת Node.js נכשלה. בדוק את הרשת שלך ונסה שוב. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. פעיל diff --git a/src/cascadia/TerminalApp/Resources/hi-IN/Resources.resw b/src/cascadia/TerminalApp/Resources/hi-IN/Resources.resw index 7faa3966e..f77480b29 100644 --- a/src/cascadia/TerminalApp/Resources/hi-IN/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/hi-IN/Resources.resw @@ -220,18 +220,62 @@ सेट अप हो रहा है... - - ⚠ GitHub Copilot इंस्टॉल करने में विफल। अपना नेटवर्क जाँचें और पुनः प्रयास करें। - {Locked="GitHub Copilot"} + + ⚠ Windows Package Manager नीति द्वारा {0} की स्थापना अवरुद्ध कर दी गई थी। यदि आप किसी प्रबंधित डिवाइस पर हैं, तो अपने IT व्यवस्थापक से संपर्क करें। + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy (group policy disabled the operation). + + + ⚠ {0} इंस्टॉल नहीं कर सके (त्रुटि कोड {1})। विवरण के लिए लॉग देखें, या {0} को मैन्युअल रूप से इंस्टॉल करें। + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". Shown for failure causes we don't have a more specific message for. + + + ⚠ {0} इंस्टॉल नहीं कर सके। विवरण के लिए लॉग देखें, या {0} को मैन्युअल रूप से इंस्टॉल करें। + FRE setup error fallback used when no actionable error code is available (e.g. the catalog connect/search failed before an installer ever ran). {0} is the package display name (appears twice). + + + ⚠ {0} इंस्टॉलर ने त्रुटि रिपोर्ट की (कोड {1})। विवरण के लिए लॉग जाँचें, या {0} को मैन्युअल रूप से इंस्टॉल करें। + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). Shown when winget reached the install phase but the installer itself failed. + + + ⚠ {0} इंस्टॉल करते समय Windows Package Manager तक नहीं पहुँच सके। अपना इंटरनेट कनेक्शन जाँचें (VPN, proxy या firewall इसे ब्लॉक कर सकता है) और पुनः प्रयास करें। + {Locked="VPN"} FRE setup error. {0} is the package display name (FreOverlay_PackageDisplayName_Copilot or _Node). Shown when winget couldn't reach its catalog or the package download failed with a network-class HRESULT. + + + ⚠ इस सिस्टम पर {0} के लिए कोई संगत इंस्टॉलर उपलब्ध नहीं है (OS संस्करण या आर्किटेक्चर समर्थित नहीं हो सकता)। {0} को मैन्युअल रूप से इंस्टॉल करें। + FRE setup error. {0} is the package display name (appears twice). Shown when winget returned NoApplicableInstallers — the manifest exists but no installer entry matches this OS/arch/scope. + + + ⚠ Windows Package Manager कैटलॉग में {0} नहीं मिला। winget स्रोतों को रीफ़्रेश करने का प्रयास करें, या {0} को मैन्युअल रूप से इंस्टॉल करें। + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). Shown when no manifest with the requested package ID was returned from the catalog search. + + + ⚠ {0} इंस्टॉल करने में 20 मिनट से अधिक समय लगा। Intelligent Terminal ने प्रतीक्षा करना बंद कर दिया, लेकिन इंस्टॉलर अभी भी पृष्ठभूमि में चल रहा हो सकता है। Task Manager जाँचें, या बाद में पुनः प्रयास करें। + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. Shown when our 20-minute hard timeout expired before the install completed. + + + ⚠ session hooks इंस्टॉल करने में विफल। सेशन प्रबंधन बंद कर दिया गया है। आप इसे पुनः सक्षम करके दोबारा प्रयास कर सकते हैं, या इसके बिना जारी रखने के लिए सहेजें। + {Locked="hooks"} + + + ⚠ शेल एकीकरण इंस्टॉल करने में विफल। त्रुटि पहचान बंद कर दी गई है। आप इसे पुनः सक्षम करके दोबारा प्रयास कर सकते हैं, या इसके बिना जारी रखने के लिए सहेजें। + + + ⚠ PowerShell निष्पादन नीति स्क्रिप्ट्स को अवरुद्ध कर रही है। त्रुटि पहचान बंद कर दी गई। + {Locked="PowerShell"} ⚠ Windows Package Manager (winget) इंस्टॉल नहीं है या उपलब्ध नहीं है। पहले इसे इंस्टॉल करें, फिर पुनः प्रयास करें। - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Node.js इंस्टॉल करने में विफल। अपना नेटवर्क जाँचें और पुनः प्रयास करें। - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + चालू @@ -308,12 +352,7 @@ Intelligent Terminal को अपने शेल तक पहुंचने और स्वचालित रूप से त्रुटियों का पता लगाने की अनुमति दें। - - ⚠ शेल एकीकरण इंस्टॉल करने में विफल। त्रुटि पहचान बंद कर दी गई है। आप इसे पुनः सक्षम करके दोबारा प्रयास कर सकते हैं, या इसके बिना जारी रखने के लिए सहेजें। - - ⚠ session hooks इंस्टॉल करने में विफल। सेशन प्रबंधन बंद कर दिया गया है। आप इसे पुनः सक्षम करके दोबारा प्रयास कर सकते हैं, या इसके बिना जारी रखने के लिए सहेजें। - {Locked="hooks"} - + मैन्युअल रूप से इसे ठीक करना सीखें Hyperlink shown below an FRE setup error message. Opens step-by-step manual setup instructions in the browser. @@ -326,8 +365,4 @@ PowerShell निष्पादन नीति स्क्रिप्ट्स को अवरुद्ध कर रही है। Body of an error dialog shown after the user tries to install PowerShell shell integration but their PowerShell execution policy (Restricted or AllSigned) is blocking scripts. A separate "Learn how to fix this manually" hyperlink (FreOverlay_ErrorHelpLink) is rendered on its own line below this sentence. {Locked="PowerShell"} - - ⚠ PowerShell निष्पादन नीति स्क्रिप्ट्स को अवरुद्ध कर रही है। त्रुटि पहचान बंद कर दी गई। - {Locked="PowerShell"} - diff --git a/src/cascadia/TerminalApp/Resources/hr-HR/Resources.resw b/src/cascadia/TerminalApp/Resources/hr-HR/Resources.resw index b134d36c4..51a1deb22 100644 --- a/src/cascadia/TerminalApp/Resources/hr-HR/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/hr-HR/Resources.resw @@ -220,18 +220,51 @@ Postavljanje... - - ⚠ Instalacija GitHub Copilot nije uspjela. Provjerite mrežnu vezu i pokušajte ponovno. - {Locked="GitHub Copilot"} + + ⚠ Instalacija {0} blokirana je pravilima Upravitelja paketa za Windows. Ako koristite upravljani uređaj, obratite se administratoru IT-a. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Instalacija {0} nije uspjela (kod pogreške {1}). Pojedinosti potražite u zapisniku ili ručno instalirajte {0}. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Instalacija {0} nije uspjela. Pojedinosti potražite u zapisniku ili ručno instalirajte {0}. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Instalacijski program za {0} prijavio je pogrešku (kod {1}). Pojedinosti potražite u zapisniku ili ručno instalirajte {0}. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Nije bilo moguće pristupiti Upravitelju paketa za Windows tijekom instalacije {0}. Provjerite internetsku vezu (VPN, proxy ili vatrozid možda je blokiraju) i pokušajte ponovno. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Na ovom sustavu nije dostupan kompatibilan instalacijski program za {0} (verzija OS-a ili arhitektura možda nisu podržani). Ručno instalirajte {0}. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} nije pronađen u katalogu Upravitelja paketa za Windows. Pokušajte osvježiti izvore winget ili ručno instalirajte {0}. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Instalacija {0} trajala je dulje od 20 minuta. Intelligent Terminal prestao je čekati, ali instalacijski program možda još radi u pozadini. Provjerite Task Manager ili pokušajte ponovno kasnije. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Upravitelj paketa za Windows (winget) nije instaliran ili nije dostupan. Najprije ga instalirajte, a zatim pokušajte ponovno. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Instalacija Node.js nije uspjela. Provjerite mrežnu vezu i pokušajte ponovno. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + Uključeno diff --git a/src/cascadia/TerminalApp/Resources/hu-HU/Resources.resw b/src/cascadia/TerminalApp/Resources/hu-HU/Resources.resw index 3ebdd1cdd..40bf25e9d 100644 --- a/src/cascadia/TerminalApp/Resources/hu-HU/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/hu-HU/Resources.resw @@ -220,18 +220,51 @@ Beállítás... - - ⚠ A GitHub Copilot telepítése sikertelen. Ellenőrizze a hálózati kapcsolatot, és próbálja újra. - {Locked="GitHub Copilot"} + + ⚠ A(z) {0} telepítését a Windows csomagkezelő egyik házirendje blokkolta. Ha felügyelt eszközt használ, forduljon az IT-rendszergazdához. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Nem sikerült telepíteni a következőt: {0} (hibakód: {1}). A részletekért tekintse meg a naplót, vagy telepítse manuálisan: {0}. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Nem sikerült telepíteni a következőt: {0}. A részletekért tekintse meg a naplót, vagy telepítse manuálisan: {0}. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ A(z) {0} telepítője hibát jelzett (kód: {1}). A részletekért tekintse meg a naplót, vagy telepítse manuálisan: {0}. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Nem sikerült elérni a Windows csomagkezelőt a(z) {0} telepítése közben. Ellenőrizze az internetkapcsolatot (VPN, proxy vagy tűzfal blokkolhatja), és próbálja újra. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Ezen a rendszeren nem érhető el kompatibilis telepítő a(z) {0} számára (előfordulhat, hogy az operációs rendszer verziója vagy az architektúra nem támogatott). Telepítse manuálisan: {0}. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ A(z) {0} nem található a Windows csomagkezelő katalógusában. Próbálja frissíteni a winget-forrásokat, vagy telepítse manuálisan: {0}. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ A(z) {0} telepítése több mint 20 percig tartott. Az Intelligent Terminal leállította a várakozást, de a telepítő továbbra is futhat a háttérben. Ellenőrizze a Task Manager alkalmazást, vagy próbálkozzon újra később. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ A Windows csomagkezelő (winget) nincs telepítve vagy nem érhető el. Először telepítse, majd próbálja újra. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ A Node.js telepítése sikertelen. Ellenőrizze a hálózati kapcsolatot, és próbálja újra. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + Be diff --git a/src/cascadia/TerminalApp/Resources/hy-AM/Resources.resw b/src/cascadia/TerminalApp/Resources/hy-AM/Resources.resw index e9e16b585..3e1ad5df5 100644 --- a/src/cascadia/TerminalApp/Resources/hy-AM/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/hy-AM/Resources.resw @@ -107,17 +107,49 @@ Կարգավորում... - - ⚠ GitHub Copilot-ի տեղադրումը ձախողվեց։ Ստուգեք ցանցի հանգույցը և նորից փորձեք: - {Locked="GitHub Copilot"} + + ⚠ {0}-ի տեղադրումն արգելափակվել է Windows Package Manager-ի քաղաքականության կողմից։ Եթե կառավարելի սարքի վրա եք, կապվեք ձեր IT ադմինիստրատորի հետ։ + FRE setup error. {0} is the package display name. + + + ⚠ Չհաջողվեց տեղադրել {0}-ը (սխալի կոդը՝ {1})։ Մանրամասների համար դիտեք գրանցամատյանը, կամ տեղադրեք {0}-ը ձեռքով։ + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string. + + + ⚠ Չհաջողվեց տեղադրել {0}-ը։ Մանրամասների համար դիտեք գրանցամատյանը, կամ տեղադրեք {0}-ը ձեռքով։ + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0}-ի տեղադրիչը հաղորդեց սխալ (կոդ՝ {1})։ Ստուգեք գրանցամատյանը մանրամասների համար, կամ տեղադրեք {0}-ը ձեռքով։ + FRE setup error. {0} is the package display name (appears twice). {1} is decimal error code. + + + ⚠ {0}-ը տեղադրելիս չհաջողվեց կապ հաստատել Windows Package Manager-ի հետ։ Ստուգեք ինտերնետ կապը (VPN-ը, պրոքսին կամ հրապատը կարող են արգելափակել այն) և նորից փորձեք։ + {Locked="VPN"} FRE setup error. {0} is the package display name. + + + ⚠ Այս համակարգում {0}-ի համար համատեղելի տեղադրիչ հասանելի չէ (OS-ի տարբերակը կամ ճարտարապետությունը կարող է չաջակցվել)։ Տեղադրեք {0}-ը ձեռքով։ + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0}-ը չի գտնվել Windows Package Manager-ի կատալոգում։ Փորձեք թարմացնել winget աղբյուրները, կամ տեղադրեք {0}-ը ձեռքով։ + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0}-ի տեղադրումը տևեց ավելի քան 20 րոպե։ Intelligent Terminal-ը դադարեց սպասել, բայց տեղադրիչը կարող է դեռ աշխատել հետին պլանում։ Ստուգեք Task Manager-ը, կամ փորձեք ավելի ուշ։ + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager-ը (winget) տեղադրված չէ կամ հասանելի չէ։ Նախ տեղադրեք այն, ապա նորից փորձեք: - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Node.js-ի տեղադրումը ձախողվեց։ Ստուգեք ցանցի հանգույցը և նորից փորձեք: - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Միաց diff --git a/src/cascadia/TerminalApp/Resources/id-ID/Resources.resw b/src/cascadia/TerminalApp/Resources/id-ID/Resources.resw index 53cc3de64..a91616401 100644 --- a/src/cascadia/TerminalApp/Resources/id-ID/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/id-ID/Resources.resw @@ -220,17 +220,49 @@ Menyiapkan... - - ⚠ Gagal menginstal GitHub Copilot. Periksa jaringan Anda dan coba lagi. - {Locked="GitHub Copilot"} + + ⚠ Penginstalan {0} diblokir oleh kebijakan Windows Package Manager. Jika Anda menggunakan perangkat terkelola, hubungi admin IT Anda. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Tidak dapat menginstal {0} (kode kesalahan {1}). Lihat log untuk detail, atau instal {0} secara manual. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Tidak dapat menginstal {0}. Lihat log untuk detail, atau instal {0} secara manual. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Penginstal {0} melaporkan kesalahan (kode {1}). Lihat log untuk detail, atau instal {0} secara manual. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Tidak dapat menjangkau Windows Package Manager saat menginstal {0}. Periksa koneksi internet Anda (VPN, proxy, atau firewall mungkin memblokirnya) dan coba lagi. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Tidak ada penginstal yang kompatibel untuk {0} yang tersedia di sistem ini (versi OS atau arsitektur mungkin tidak didukung). Instal {0} secara manual. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} tidak ditemukan di katalog Windows Package Manager. Coba refresh sumber winget, atau instal {0} secara manual. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Menginstal {0} memakan waktu lebih dari 20 menit. Intelligent Terminal berhenti menunggu, tetapi penginstal mungkin masih berjalan di latar belakang. Periksa Task Manager, atau coba lagi nanti. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) tidak terinstal atau tidak tersedia. Instal terlebih dahulu, lalu coba lagi. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Gagal menginstal Node.js. Periksa jaringan Anda dan coba lagi. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Node.js prerequisite. Aktif diff --git a/src/cascadia/TerminalApp/Resources/is-IS/Resources.resw b/src/cascadia/TerminalApp/Resources/is-IS/Resources.resw index b48b1ff22..6d895f6f2 100644 --- a/src/cascadia/TerminalApp/Resources/is-IS/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/is-IS/Resources.resw @@ -220,17 +220,49 @@ Set upp... - - ⚠ Ekki tókst að setja upp GitHub Copilot. Athugaðu nettenginguna og reyndu aftur. - {Locked="GitHub Copilot"} + + ⚠ Uppsetning á {0} var lokuð af stefnu Windows-pakkastjórans. Ef þú ert á stýrðu tæki skaltu hafa samband við upplýsingatæknistjórann þinn. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Ekki tókst að setja upp {0} (villukóði {1}). Skoðaðu annálinn fyrir nánari upplýsingar eða settu {0} upp handvirkt. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Ekki tókst að setja upp {0}. Skoðaðu annálinn fyrir nánari upplýsingar eða settu {0} upp handvirkt. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Uppsetningarforritið fyrir {0} tilkynnti villu (kóði {1}). Skoðaðu annálinn fyrir nánari upplýsingar eða settu {0} upp handvirkt. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Ekki náðist í Windows-pakkastjórann meðan {0} var sett upp. Athugaðu internettenginguna (VPN, proxy eða eldveggur gæti verið að loka á hana) og reyndu aftur. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Ekkert samhæft uppsetningarforrit fyrir {0} er tiltækt á þessu kerfi (útgáfa stýrikerfis eða örgjörvaarkitektúr er hugsanlega ekki studd). Settu {0} upp handvirkt. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} fannst ekki í vörulista Windows-pakkastjórans. Reyndu að endurnýja winget-upprunana eða settu {0} upp handvirkt. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Uppsetning á {0} tók meira en 20 mínútur. Intelligent Terminal hætti að bíða, en uppsetningarforritið gæti enn verið í gangi í bakgrunni. Athugaðu Task Manager eða reyndu aftur síðar. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows-pakkastjórinn (winget) er ekki uppsettur eða ekki tiltækur. Settu hann fyrst upp og reyndu svo aftur. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Ekki tókst að setja upp Node.js. Athugaðu nettenginguna og reyndu aftur. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Kveikt diff --git a/src/cascadia/TerminalApp/Resources/it-IT/Resources.resw b/src/cascadia/TerminalApp/Resources/it-IT/Resources.resw index 01d6f73b0..a2f6a975e 100644 --- a/src/cascadia/TerminalApp/Resources/it-IT/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/it-IT/Resources.resw @@ -1075,17 +1075,49 @@ Configurazione in corso... - - ⚠ Installazione di GitHub Copilot non riuscita. Controlla la connessione di rete e riprova. - {Locked="GitHub Copilot"} + + ⚠ L'installazione di {0} è stata bloccata da un criterio di Gestione pacchetti Windows. Se usi un dispositivo gestito, contatta l'amministratore IT. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Impossibile installare {0} (codice errore {1}). Controlla il log per i dettagli oppure installa {0} manualmente. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Impossibile installare {0}. Controlla il log per i dettagli oppure installa {0} manualmente. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Il programma di installazione di {0} ha segnalato un errore (codice {1}). Controlla il log per i dettagli oppure installa {0} manualmente. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Impossibile raggiungere Gestione pacchetti Windows durante l'installazione di {0}. Controlla la connessione Internet (VPN, proxy o firewall potrebbero bloccarla) e riprova. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Non è disponibile un programma di installazione compatibile per {0} in questo sistema (la versione del sistema operativo o l'architettura potrebbe non essere supportata). Installa {0} manualmente. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} non è stato trovato nel catalogo di Gestione pacchetti Windows. Prova ad aggiornare le origini di winget oppure installa {0} manualmente. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ L'installazione di {0} ha richiesto più di 20 minuti. Intelligent Terminal ha smesso di attendere, ma il programma di installazione potrebbe essere ancora in esecuzione in background. Controlla Task Manager oppure riprova più tardi. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Gestione pacchetti Windows (winget) non è installato o non è disponibile. Installalo prima, quindi riprova. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Installazione di Node.js non riuscita. Controlla la connessione di rete e riprova. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. ⚠ Installazione degli hooks di sessione non riuscita. La gestione delle sessioni è stata disattivata. È possibile riabilitarla e riprovare oppure salvare per continuare senza. diff --git a/src/cascadia/TerminalApp/Resources/ja-JP/Resources.resw b/src/cascadia/TerminalApp/Resources/ja-JP/Resources.resw index a5e891725..2b347ee1c 100644 --- a/src/cascadia/TerminalApp/Resources/ja-JP/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/ja-JP/Resources.resw @@ -1084,17 +1084,49 @@ In this context, "agent" refers to an AI agent (e.g. Copilot, Claude, Gemini), n セットアップ中... - - ⚠ GitHub Copilot のインストールに失敗しました。ネットワークを確認して再試行してください。 - {Locked="GitHub Copilot"} + + ⚠ {0} のインストールは Windows パッケージ マネージャーのポリシーによってブロックされました。管理対象デバイスを使用している場合は、IT 管理者にお問い合わせください。 + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ {0} をインストールできませんでした (エラー コード {1})。詳細についてはログを確認するか、{0} を手動でインストールしてください。 + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ {0} をインストールできませんでした。詳細についてはログを確認するか、{0} を手動でインストールしてください。 + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0} インストーラーからエラーが報告されました (コード {1})。詳細についてはログを確認するか、{0} を手動でインストールしてください。 + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ {0} のインストール中に Windows パッケージ マネージャーに接続できませんでした。インターネット接続 (VPN、プロキシ、ファイアウォールによってブロックされている可能性があります) を確認して、もう一度お試しください。 + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ このシステムで使用できる {0} 用の互換性のあるインストーラーはありません (OS バージョンまたはアーキテクチャがサポートされていない可能性があります)。{0} を手動でインストールしてください。 + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Windows パッケージ マネージャー カタログに {0} が見つかりませんでした。winget ソースを更新するか、{0} を手動でインストールしてください。 + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} のインストールに 20 分以上かかりました。Intelligent Terminal は待機を停止しましたが、インストーラーはまだバックグラウンドで実行されている可能性があります。Task Manager を確認するか、後でもう一度お試しください。 + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows パッケージ マネージャー (winget) がインストールされていないか、利用できません。先にインストールしてから、もう一度お試しください。 - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Node.js のインストールに失敗しました。ネットワークを確認して再試行してください。 - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Node.js prerequisite. ⚠ session hooksのインストールに失敗しました。セッション管理がオフになりました。再度有効にしてやり直すか、保存してセッション管理なしで続行できます。 diff --git a/src/cascadia/TerminalApp/Resources/ka-GE/Resources.resw b/src/cascadia/TerminalApp/Resources/ka-GE/Resources.resw index 55797a5f2..eb0dd5939 100644 --- a/src/cascadia/TerminalApp/Resources/ka-GE/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/ka-GE/Resources.resw @@ -107,17 +107,49 @@ კონფიგურაცია... - - ⚠ GitHub Copilot-ის ინსტალაცია ვერ მოხერხდა. შეამოწმეთ ქსელის კავშირი და სცადეთ თავიდან. - {Locked="GitHub Copilot"} + + ⚠ {0}-ის ინსტალაცია Windows-ის პაკეტების მენეჯერის პოლიტიკამ დაბლოკა. თუ მართული მოწყობილობა გაქვთ, დაუკავშირდით IT ადმინისტრატორს. + FRE setup error. {0} is the package display name. + + + ⚠ {0}-ის ინსტალაცია ვერ მოხერხდა (შეცდომის კოდი {1}). დეტალებისთვის იხილეთ ჟურნალი, ან დააინსტალირეთ {0} ხელით. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string. + + + ⚠ {0}-ის ინსტალაცია ვერ მოხერხდა. დეტალებისთვის იხილეთ ჟურნალი, ან დააინსტალირეთ {0} ხელით. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0}-ის ინსტალატორმა შეცდომა დააბრუნა (კოდი {1}). დეტალებისთვის შეამოწმეთ ჟურნალი, ან დააინსტალირეთ {0} ხელით. + FRE setup error. {0} is the package display name (appears twice). {1} is decimal error code. + + + ⚠ {0}-ის ინსტალაციისას Windows-ის პაკეტების მენეჯერთან დაკავშირება ვერ მოხერხდა. შეამოწმეთ ინტერნეტკავშირი (VPN-მა, პროქსიმ ან ბრანდმაუერმა შეიძლება დაბლოკოს) და სცადეთ თავიდან. + {Locked="VPN"} FRE setup error. {0} is the package display name. + + + ⚠ ამ სისტემაზე {0}-ისთვის თავსებადი ინსტალატორი ხელმისაწვდომი არ არის (შეიძლება OS-ის ვერსია ან არქიტექტურა არ იყოს მხარდაჭერილი). დააინსტალირეთ {0} ხელით. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} Windows-ის პაკეტების მენეჯერის კატალოგში ვერ მოიძებნა. სცადეთ winget წყაროების განახლება, ან დააინსტალირეთ {0} ხელით. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0}-ის ინსტალაციას 20 წუთზე მეტი დასჭირდა. Intelligent Terminal-მა ლოდინი შეწყვიტა, მაგრამ ინსტალატორი შეიძლება კვლავ ფონში მუშაობდეს. შეამოწმეთ Task Manager, ან სცადეთ მოგვიანებით. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows-ის პაკეტების მენეჯერი (winget) არ არის დაინსტალირებული ან ხელმისაწვდომი. ჯერ დააინსტალირეთ, შემდეგ სცადეთ თავიდან. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Node.js-ის ინსტალაცია ვერ მოხერხდა. შეამოწმეთ ქსელის კავშირი და სცადეთ თავიდან. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. ჩართ diff --git a/src/cascadia/TerminalApp/Resources/kk-KZ/Resources.resw b/src/cascadia/TerminalApp/Resources/kk-KZ/Resources.resw index c8cd45bd1..564f6bb65 100644 --- a/src/cascadia/TerminalApp/Resources/kk-KZ/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/kk-KZ/Resources.resw @@ -220,17 +220,49 @@ Орнатылуда... - - ⚠ GitHub Copilot орнату сәтсіз аяқталды. Желіңізді тексеріп, қайталап көріңіз. - {Locked="GitHub Copilot"} + + ⚠ {0} орнатуын Windows Package Manager саясаты бұғаттады. Егер басқарылатын құрылғыда болсаңыз, IT әкімшісіне хабарласыңыз. + FRE setup error. {0} is the package display name. + + + ⚠ {0} орнату мүмкін болмады (қате коды {1}). Мәліметтер үшін журналды қараңыз немесе {0} қолданбасын қолмен орнатыңыз. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string. + + + ⚠ {0} орнату мүмкін болмады. Мәліметтер үшін журналды қараңыз немесе {0} қолданбасын қолмен орнатыңыз. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0} орнатқышы қате туралы хабарлады (код {1}). Мәліметтер үшін журналды тексеріңіз немесе {0} қолданбасын қолмен орнатыңыз. + FRE setup error. {0} is the package display name (appears twice). {1} is decimal error code. + + + ⚠ {0} орнату кезінде Windows Package Manager қызметіне қол жеткізу мүмкін болмады. Интернет қосылымыңызды тексеріңіз (VPN, прокси немесе брандмауэр оны бұғаттауы мүмкін) және қайталап көріңіз. + {Locked="VPN"} FRE setup error. {0} is the package display name. + + + ⚠ Бұл жүйеде {0} үшін үйлесімді орнатқыш жоқ (ОЖ нұсқасына немесе архитектураға қолдау көрсетілмеуі мүмкін). {0} қолданбасын қолмен орнатыңыз. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} Windows Package Manager каталогынан табылмады. winget көздерін жаңартып көріңіз немесе {0} қолданбасын қолмен орнатыңыз. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} орнату 20 минуттан ұзаққа созылды. Intelligent Terminal күтуді тоқтатты, бірақ орнатқыш әлі де фонда жұмыс істеп тұруы мүмкін. Task Manager құралын тексеріңіз немесе кейінірек қайталап көріңіз. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) орнатылмаған немесе қолжетімді емес. Алдымен оны орнатып, содан кейін қайталап көріңіз. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Node.js орнату сәтсіз аяқталды. Желіңізді тексеріп, қайталап көріңіз. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Қосулы diff --git a/src/cascadia/TerminalApp/Resources/km-KH/Resources.resw b/src/cascadia/TerminalApp/Resources/km-KH/Resources.resw index 655d73dd9..4e9862bea 100644 --- a/src/cascadia/TerminalApp/Resources/km-KH/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/km-KH/Resources.resw @@ -107,17 +107,49 @@ កំពុងដំឡើង... - - ⚠ ការតំឡើង GitHub Copilot បានបរាជ័យ។ ពិនិត្យម៉ោងការតភ្ជាប់បណ្តាញ និងសាកល្បងឡើងវិញ។ - {Locked="GitHub Copilot"} + + ⚠ ការដំឡើង {0} ត្រូវបានរារាំងដោយគោលការណ៍ Windows Package Manager។ ប្រសិនបើអ្នកកំពុងប្រើឧបករណ៍ដែលគ្រប់គ្រង សូមទាក់ទងអ្នកគ្រប់គ្រង IT របស់អ្នក។ + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ មិនអាចដំឡើង {0} បានទេ (កូដកំហុស {1})។ មើលកំណត់ហេតុសម្រាប់ព័ត៌មានលម្អិត ឬដំឡើង {0} ដោយដៃ។ + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ មិនអាចដំឡើង {0} បានទេ។ មើលកំណត់ហេតុសម្រាប់ព័ត៌មានលម្អិត ឬដំឡើង {0} ដោយដៃ។ + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ កម្មវិធីដំឡើង {0} បានរាយការណ៍កំហុស (កូដ {1})។ មើលកំណត់ហេតុសម្រាប់ព័ត៌មានលម្អិត ឬដំឡើង {0} ដោយដៃ។ + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ មិនអាចភ្ជាប់ទៅ Windows Package Manager ខណៈពេលដំឡើង {0} បានទេ។ ពិនិត្យការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក (VPN, proxy ឬជញ្ជាំងភ្លើងអាចកំពុងរារាំងវា) ហើយសាកល្បងម្តងទៀត។ + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ មិនមានកម្មវិធីដំឡើងដែលឆបគ្នាសម្រាប់ {0} នៅលើប្រព័ន្ធនេះទេ (អាចមិនគាំទ្រកំណែ OS ឬស្ថាបត្យកម្ម)។ ដំឡើង {0} ដោយដៃ។ + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ រកមិនឃើញ {0} នៅក្នុងកាតាឡុក Windows Package Manager ទេ។ សាកល្បងធ្វើឱ្យប្រភព winget ស្រស់ឡើងវិញ ឬដំឡើង {0} ដោយដៃ។ + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ ការដំឡើង {0} ចំណាយពេលលើសពី 20 នាទី។ Intelligent Terminal បានឈប់រង់ចាំ ប៉ុន្តែកម្មវិធីដំឡើងអាចនៅតែដំណើរការនៅផ្ទៃខាងក្រោយ។ ពិនិត្យ Task Manager ឬសាកល្បងម្តងទៀតនៅពេលក្រោយ។ + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) មិនទាន់បានដំឡើង ឬមិនអាចប្រើបានទេ។ ដំឡើងវាជាមុនសិន បន្ទាប់មកសាកល្បងម្ដងទៀត។ - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ ការតំឡើង Node.js បានបរាជ័យ។ ពិនិត្យម៉ោងការតភ្ជាប់បណ្តាញ និងសាកល្បងឡើងវិញ។ - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Node.js prerequisite. បើក diff --git a/src/cascadia/TerminalApp/Resources/kn-IN/Resources.resw b/src/cascadia/TerminalApp/Resources/kn-IN/Resources.resw index f2f7c5d03..fe7fee9dc 100644 --- a/src/cascadia/TerminalApp/Resources/kn-IN/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/kn-IN/Resources.resw @@ -220,18 +220,62 @@ ಹೊಂದಿಸಲಾಗುತ್ತಿದೆ... - - ⚠ GitHub Copilot ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ. ನಿಮ್ಮ ನೆಟ್‌ವರ್ಕ್ ಪರಿಶೀಲಿಸಿ ಮತ್ತು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ. - {Locked="GitHub Copilot"} + + ⚠ Windows Package Manager ನೀತಿಯಿಂದ {0} ಇನ್‌ಸ್ಟಾಲೇಶನ್ ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ. ನೀವು ನಿರ್ವಹಿತ ಸಾಧನದಲ್ಲಿದ್ದರೆ, ನಿಮ್ಮ IT ನಿರ್ವಾಹಕರನ್ನು ಸಂಪರ್ಕಿಸಿ. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy (group policy disabled the operation). + + + ⚠ {0} ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಲಾಗಲಿಲ್ಲ (ದೋಷ ಕೋಡ್ {1}). ವಿವರಗಳಿಗಾಗಿ ಲಾಗ್ ನೋಡಿ, ಅಥವಾ {0} ಅನ್ನು ಕೈಯಾರೆ ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಿ. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". Shown for failure causes we don't have a more specific message for. + + + ⚠ {0} ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಲಾಗಲಿಲ್ಲ. ವಿವರಗಳಿಗಾಗಿ ಲಾಗ್ ನೋಡಿ, ಅಥವಾ {0} ಅನ್ನು ಕೈಯಾರೆ ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಿ. + FRE setup error fallback used when no actionable error code is available (e.g. the catalog connect/search failed before an installer ever ran). {0} is the package display name (appears twice). + + + ⚠ {0} ಇನ್‌ಸ್ಟಾಲರ್ ದೋಷವನ್ನು ವರದಿ ಮಾಡಿದೆ (ಕೋಡ್ {1}). ವಿವರಗಳಿಗಾಗಿ ಲಾಗ್ ಪರಿಶೀಲಿಸಿ, ಅಥವಾ {0} ಅನ್ನು ಕೈಯಾರೆ ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಿ. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). Shown when winget reached the install phase but the installer itself failed. + + + ⚠ {0} ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡುವಾಗ Windows Package Manager ಅನ್ನು ತಲುಪಲಾಗಲಿಲ್ಲ. ನಿಮ್ಮ ಇಂಟರ್ನೆಟ್ ಸಂಪರ್ಕವನ್ನು ಪರಿಶೀಲಿಸಿ (VPN, proxy, ಅಥವಾ firewall ಅದನ್ನು ನಿರ್ಬಂಧಿಸುತ್ತಿರಬಹುದು) ಮತ್ತು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ. + {Locked="VPN"} FRE setup error. {0} is the package display name (FreOverlay_PackageDisplayName_Copilot or _Node). Shown when winget couldn't reach its catalog or the package download failed with a network-class HRESULT. + + + ⚠ ಈ ಸಿಸ್ಟಮ್‌ನಲ್ಲಿ {0} ಗಾಗಿ ಹೊಂದಾಣಿಕೆಯ ಇನ್‌ಸ್ಟಾಲರ್ ಲಭ್ಯವಿಲ್ಲ (OS ಆವೃತ್ತಿ ಅಥವಾ ಆರ್ಕಿಟೆಕ್ಚರ್ ಬೆಂಬಲಿತವಾಗಿರದಿರಬಹುದು). {0} ಅನ್ನು ಕೈಯಾರೆ ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಿ. + FRE setup error. {0} is the package display name (appears twice). Shown when winget returned NoApplicableInstallers — the manifest exists but no installer entry matches this OS/arch/scope. + + + ⚠ Windows Package Manager ಕ್ಯಾಟಲಾಗ್‌ನಲ್ಲಿ {0} ಕಂಡುಬಂದಿಲ್ಲ. winget ಮೂಲಗಳನ್ನು ರಿಫ್ರೆಶ್ ಮಾಡಲು ಪ್ರಯತ್ನಿಸಿ, ಅಥವಾ {0} ಅನ್ನು ಕೈಯಾರೆ ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಿ. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). Shown when no manifest with the requested package ID was returned from the catalog search. + + + ⚠ {0} ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಲು 20 ನಿಮಿಷಗಳಿಗಿಂತ ಹೆಚ್ಚು ಸಮಯ ತೆಗೆದುಕೊಂಡಿತು. Intelligent Terminal ಕಾಯುವುದನ್ನು ನಿಲ್ಲಿಸಿದೆ, ಆದರೆ ಇನ್‌ಸ್ಟಾಲರ್ ಇನ್ನೂ ಹಿನ್ನೆಲೆಯಲ್ಲಿರಬಹುದು. Task Manager ಪರಿಶೀಲಿಸಿ, ಅಥವಾ ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. Shown when our 20-minute hard timeout expired before the install completed. + + + ⚠ session hooks ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ. ಸೆಶನ್ ನಿರ್ವಹಣೆಯನ್ನು ಆಫ್ ಮಾಡಲಾಗಿದೆ. ನೀವು ಅದನ್ನು ಮರು-ಸಕ್ರಿಯಗೊಳಿಸಿ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಬಹುದು, ಅಥವಾ ಅದಿಲ್ಲದೆ ಮುಂದುವರಿಸಲು ಉಳಿಸಿ. + {Locked="hooks"} + + + ⚠ ಶೆಲ್ ಏಕೀಕರಣವನ್ನು ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ. ದೋಷ ಪತ್ತೆಯನ್ನು ಆಫ್ ಮಾಡಲಾಗಿದೆ. ನೀವು ಅದನ್ನು ಮರು-ಸಕ್ರಿಯಗೊಳಿಸಿ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಬಹುದು, ಅಥವಾ ಅದಿಲ್ಲದೆ ಮುಂದುವರಿಸಲು ಉಳಿಸಿ. + + + ⚠ PowerShell ಎಕ್ಸಿಕ್ಯೂಷನ್ ನೀತಿಯು ಸ್ಕ್ರಿಪ್ಟ್‌ಗಳನ್ನು ನಿರ್ಬಂಧಿಸುತ್ತಿದೆ. ದೋಷ ಪತ್ತೆ ಆಫ್ ಮಾಡಲಾಗಿದೆ. + {Locked="PowerShell"} ⚠ Windows Package Manager (winget) ಇನ್‌ಸ್ಟಾಲ್ ಆಗಿಲ್ಲ ಅಥವಾ ಲಭ್ಯವಿಲ್ಲ. ಮೊದಲು ಅದನ್ನು ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಿ, ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Node.js ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ. ನಿಮ್ಮ ನೆಟ್‌ವರ್ಕ್ ಪರಿಶೀಲಿಸಿ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + ಆನ್ @@ -308,12 +352,7 @@ ನಿಮ್ಮ ಶೆಲ್ ಅನ್ನು ಪ್ರವೇಶಿಸಲು ಮತ್ತು ದೋಷಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಪತ್ತೆಹಚ್ಚಲು Intelligent Terminal ಗೆ ಅನುಮತಿ ನೀಡಿ. - - ⚠ ಶೆಲ್ ಏಕೀಕರಣವನ್ನು ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ. ದೋಷ ಪತ್ತೆಯನ್ನು ಆಫ್ ಮಾಡಲಾಗಿದೆ. ನೀವು ಅದನ್ನು ಮರು-ಸಕ್ರಿಯಗೊಳಿಸಿ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಬಹುದು, ಅಥವಾ ಅದಿಲ್ಲದೆ ಮುಂದುವರಿಸಲು ಉಳಿಸಿ. - - ⚠ session hooks ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ. ಸೆಶನ್ ನಿರ್ವಹಣೆಯನ್ನು ಆಫ್ ಮಾಡಲಾಗಿದೆ. ನೀವು ಅದನ್ನು ಮರು-ಸಕ್ರಿಯಗೊಳಿಸಿ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಬಹುದು, ಅಥವಾ ಅದಿಲ್ಲದೆ ಮುಂದುವರಿಸಲು ಉಳಿಸಿ. - {Locked="hooks"} - + ಇದನ್ನು ಹಸ್ತಚಾಲಿತವಾಗಿ ಸರಿಪಡಿಸುವುದು ಹೇಗೆ ಎಂದು ತಿಳಿಯಿರಿ Hyperlink shown below an FRE setup error message. Opens step-by-step manual setup instructions in the browser. @@ -326,8 +365,4 @@ PowerShell ಎಕ್ಸಿಕ್ಯೂಷನ್ ನೀತಿಯು ಸ್ಕ್ರಿಪ್ಟ್‌ಗಳನ್ನು ನಿರ್ಬಂಧಿಸುತ್ತಿದೆ. Body of an error dialog shown after the user tries to install PowerShell shell integration but their PowerShell execution policy (Restricted or AllSigned) is blocking scripts. A separate "Learn how to fix this manually" hyperlink (FreOverlay_ErrorHelpLink) is rendered on its own line below this sentence. {Locked="PowerShell"} - - ⚠ PowerShell ಎಕ್ಸಿಕ್ಯೂಷನ್ ನೀತಿಯು ಸ್ಕ್ರಿಪ್ಟ್‌ಗಳನ್ನು ನಿರ್ಬಂಧಿಸುತ್ತಿದೆ. ದೋಷ ಪತ್ತೆ ಆಫ್ ಮಾಡಲಾಗಿದೆ. - {Locked="PowerShell"} - diff --git a/src/cascadia/TerminalApp/Resources/ko-KR/Resources.resw b/src/cascadia/TerminalApp/Resources/ko-KR/Resources.resw index 26b85d6d1..9f5150a7e 100644 --- a/src/cascadia/TerminalApp/Resources/ko-KR/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/ko-KR/Resources.resw @@ -1111,17 +1111,49 @@ In this context, "agent" refers to an AI agent (e.g. Copilot, Claude, Gemini), n 설정 중... - - ⚠ GitHub Copilot 설치에 실패했습니다. 네트워크를 확인하고 다시 시도하세요. - {Locked="GitHub Copilot"} + + ⚠ Windows 패키지 관리자 정책에 의해 {0} 설치가 차단되었습니다. 관리되는 디바이스를 사용 중인 경우 IT 관리자에게 문의하세요. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ {0}을(를) 설치할 수 없습니다(오류 코드 {1}). 자세한 내용은 로그를 확인하거나 {0}을(를) 수동으로 설치하세요. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ {0}을(를) 설치할 수 없습니다. 자세한 내용은 로그를 확인하거나 {0}을(를) 수동으로 설치하세요. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0} 설치 관리자가 오류를 보고했습니다(코드 {1}). 자세한 내용은 로그를 확인하거나 {0}을(를) 수동으로 설치하세요. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ {0}을(를) 설치하는 동안 Windows 패키지 관리자에 연결할 수 없습니다. 인터넷 연결(VPN, 프록시 또는 방화벽이 차단하고 있을 수 있음)을 확인하고 다시 시도하세요. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ 이 시스템에서 {0}에 사용할 수 있는 호환 설치 관리자가 없습니다(OS 버전 또는 아키텍처가 지원되지 않을 수 있음). {0}을(를) 수동으로 설치하세요. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Windows 패키지 관리자 카탈로그에서 {0}을(를) 찾을 수 없습니다. winget 원본을 새로 고치거나 {0}을(를) 수동으로 설치하세요. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} 설치에 20분 넘게 걸렸습니다. Intelligent Terminal은 대기를 중지했지만 설치 관리자가 여전히 백그라운드에서 실행 중일 수 있습니다. Task Manager를 확인하거나 나중에 다시 시도하세요. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows 패키지 관리자(winget)가 설치되어 있지 않거나 사용할 수 없습니다. 먼저 설치한 다음 다시 시도하세요. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Node.js 설치에 실패했습니다. 네트워크를 확인하고 다시 시도하세요. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Node.js prerequisite. ⚠ session hooks를 설치하지 못했습니다. 세션 관리가 꺼졌습니다. 다시 사용하도록 설정하고 다시 시도하거나, 저장하여 이 기능 없이 계속할 수 있습니다. diff --git a/src/cascadia/TerminalApp/Resources/kok-IN/Resources.resw b/src/cascadia/TerminalApp/Resources/kok-IN/Resources.resw index 34323ce10..83d5f1bb7 100644 --- a/src/cascadia/TerminalApp/Resources/kok-IN/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/kok-IN/Resources.resw @@ -221,18 +221,62 @@ सेट अप जाता... - - ⚠ GitHub Copilot इन्स्टॉल करपाक अपेशी. तुमचें नेटवर्क तपासात आनी परतून यत्न करात. - {Locked="GitHub Copilot"} + + ⚠ Windows Package Manager धोरणान {0} ची स्थापना आडायल्या. तुमी वेवस्थापित डिव्हाइसाचेर आसल्यार, तुमच्या IT प्रशासकाक संपर्क करात. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy (group policy disabled the operation). + + + ⚠ {0} इन्स्टॉल करपाक जमलें ना (चूक कोड {1}). तपशीलां खातीर लॉग पळयात, वा {0} मॅन्युअली इन्स्टॉल करात. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". Shown for failure causes we don't have a more specific message for. + + + ⚠ {0} इन्स्टॉल करपाक जमलें ना. तपशीलां खातीर लॉग पळयात, वा {0} मॅन्युअली इन्स्टॉल करात. + FRE setup error fallback used when no actionable error code is available (e.g. the catalog connect/search failed before an installer ever ran). {0} is the package display name (appears twice). + + + ⚠ {0} इन्स्टॉलरान चूक कळयल्या (कोड {1}). तपशीलां खातीर लॉग तपासात, वा {0} मॅन्युअली इन्स्टॉल करात. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). Shown when winget reached the install phase but the installer itself failed. + + + ⚠ {0} इन्स्टॉल करतना Windows Package Manager मेरेन पावपाक जमलें ना. तुमचें इंटरनेट कनेक्शन तपासात (VPN, proxy, वा firewall तें आडावपी आसूं येता) आनी परतून यत्न करात. + {Locked="VPN"} FRE setup error. {0} is the package display name (FreOverlay_PackageDisplayName_Copilot or _Node). Shown when winget couldn't reach its catalog or the package download failed with a network-class HRESULT. + + + ⚠ ह्या सिस्टिमाचेर {0} खातीर कसोय सुसंगत इन्स्टॉलर उपलब्ध ना (OS आवृत्ती वा आर्किटेक्चर समर्थित आसूं न शकता). {0} मॅन्युअली इन्स्टॉल करात. + FRE setup error. {0} is the package display name (appears twice). Shown when winget returned NoApplicableInstallers — the manifest exists but no installer entry matches this OS/arch/scope. + + + ⚠ Windows Package Manager कॅटलॉगांत {0} मेळूंक ना. winget स्रोत रिफ्रेश करपाचो यत्न करात, वा {0} मॅन्युअली इन्स्टॉल करात. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). Shown when no manifest with the requested package ID was returned from the catalog search. + + + ⚠ {0} इन्स्टॉल करपाक 20 मिनिटांपरस चड वेळ लागलो. Intelligent Terminal-ान वाट पळोवप बंद केलें, पूण इन्स्टॉलर अजूनय पाटभूंयेर चलू आसूं येता. Task Manager तपासात, वा उपरांत परतून यत्न करात. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. Shown when our 20-minute hard timeout expired before the install completed. + + + ⚠ session hooks इन्स्टॉल करपाक अपेशी. सत्र वेवस्थापन बंद केलां. तुमी तें परतून सक्षम करून परतून यत्न करूं येता, वा ताचे बगर फुडें वचपाक सांबाळात. + {Locked="hooks"} + + + ⚠ शेल एकीकरण इन्स्टॉल करपाक अपेशी. चूक सोद बंद केल्या. तुमी तें परतून सक्षम करून परतून यत्न करूं येता, वा ताचे बगर फुडें वचपाक सांबाळात. + + + ⚠ PowerShell एक्झिक्यूशन धोरणान स्क्रिप्ट्स आडावपी आसा. चूक सोद बंद केल्या. + {Locked="PowerShell"} ⚠ Windows Package Manager (winget) इन्स्टॉल केल्लो ना वा उपलब्ध ना. पयलीं तो इन्स्टॉल करात, मागीर परतून यत्न करात. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Node.js इन्स्टॉल करपाक अपेशी. तुमचें नेटवर्क तपासात आनी परतून यत्न करात. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + चालू @@ -309,12 +353,7 @@ Intelligent Terminal क तुमच्या शेलांत प्रवेश करपाक आनी त्रुटी आपशीच सोदपाक परवानगी दियात. - - ⚠ शेल एकीकरण इन्स्टॉल करपाक अपेशी. चूक सोद बंद केल्या. तुमी तें परतून सक्षम करून परतून यत्न करूं येता, वा ताचे बगर फुडें वचपाक सांबाळात. - - ⚠ session hooks इन्स्टॉल करपाक अपेशी. सत्र वेवस्थापन बंद केलां. तुमी तें परतून सक्षम करून परतून यत्न करूं येता, वा ताचे बगर फुडें वचपाक सांबाळात. - {Locked="hooks"} - + हें मेन्युअल रितीन कशें दुरुस्त करचें तें शिका Hyperlink shown below an FRE setup error message. Opens step-by-step manual setup instructions in the browser. @@ -327,8 +366,4 @@ PowerShell एक्झिक्यूशन धोरणान स्क्रिप्ट्स आडावपी आसा. Body of an error dialog shown after the user tries to install PowerShell shell integration but their PowerShell execution policy (Restricted or AllSigned) is blocking scripts. A separate "Learn how to fix this manually" hyperlink (FreOverlay_ErrorHelpLink) is rendered on its own line below this sentence. {Locked="PowerShell"} - - ⚠ PowerShell एक्झिक्यूशन धोरणान स्क्रिप्ट्स आडावपी आसा. चूक सोद बंद केल्या. - {Locked="PowerShell"} - diff --git a/src/cascadia/TerminalApp/Resources/lb-LU/Resources.resw b/src/cascadia/TerminalApp/Resources/lb-LU/Resources.resw index edff0b834..3f4ec7117 100644 --- a/src/cascadia/TerminalApp/Resources/lb-LU/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/lb-LU/Resources.resw @@ -107,17 +107,49 @@ Gëtt agestallt... - - ⚠ GitHub Copilot konnt net installéiert ginn. Iwwerpréift Är Netzwierkverbindung a probéiert et nach eng Kéier. - {Locked="GitHub Copilot"} + + ⚠ D'Installatioun vu {0} gouf duerch eng Windows Package Manager-Politik blockéiert. Wann Dir op engem geréierte Gerät sidd, kontaktéiert Ären IT-Administrateur. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ {0} konnt net installéiert ginn (Feelercode {1}). Kuckt am Log fir Detailer, oder installéiert {0} manuell. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ {0} konnt net installéiert ginn. Kuckt am Log fir Detailer, oder installéiert {0} manuell. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Den Installateur vu {0} huet e Feeler gemellt (Code {1}). Kuckt am Log fir Detailer, oder installéiert {0} manuell. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ De Windows Package Manager konnt wärend der Installatioun vu {0} net erreecht ginn. Iwwerpréift Är Internetverbindung (VPN, Proxy oder Firewall kéint se blockéieren) a probéiert et nach eng Kéier. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Kee kompatibelen Installateur fir {0} ass op dësem System verfügbar (d'Versioun vum Betribssystem oder d'Architektur gëtt eventuell net ënnerstëtzt). Installéiert {0} manuell. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} gouf net am Katalog vum Windows Package Manager fonnt. Probéiert d'winget-Quellen ze aktualiséieren, oder installéiert {0} manuell. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ D'Installatioun vu {0} huet méi laang wéi 20 Minutte gedauert. Intelligent Terminal huet opgehalen ze waarden, mee den Installateur leeft eventuell nach am Hannergrond. Kuckt am Task Manager, oder probéiert et méi spéit nach eng Kéier. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ De Windows Package Manager (winget) ass net installéiert oder net verfügbar. Installéiert en als éischt a probéiert et dann nach eng Kéier. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Node.js konnt net installéiert ginn. Iwwerpréift Är Netzwierkverbindung a probéiert et nach eng Kéier. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Un diff --git a/src/cascadia/TerminalApp/Resources/lo-LA/Resources.resw b/src/cascadia/TerminalApp/Resources/lo-LA/Resources.resw index fd9ea0b2d..a3aa6c5a6 100644 --- a/src/cascadia/TerminalApp/Resources/lo-LA/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/lo-LA/Resources.resw @@ -107,17 +107,49 @@ ກຳລັງຕັ້ງຄ່າ... - - ⚠ ການຕິດຕັ້ງ GitHub Copilot ລົ້ມເຫລວ. ກວດເບິ່ງການເຊື່ອມຕໍ່ເຄືອຂ່າຍແລະລອງໃຫມ່. - {Locked="GitHub Copilot"} + + ⚠ ການຕິດຕັ້ງ {0} ຖືກບລັອກໂດຍນະໂຍບາຍ Windows Package Manager. ຖ້າທ່ານໃຊ້ອຸປະກອນທີ່ຖືກຈັດການ, ຕິດຕໍ່ຜູ້ດູແລ IT ຂອງທ່ານ. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ ບໍ່ສາມາດຕິດຕັ້ງ {0} ໄດ້ (ລະຫັດຂໍ້ຜິດພາດ {1}). ເບິ່ງບັນທຶກສຳລັບລາຍລະອຽດ ຫຼືຕິດຕັ້ງ {0} ດ້ວຍຕົນເອງ. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ ບໍ່ສາມາດຕິດຕັ້ງ {0} ໄດ້. ເບິ່ງບັນທຶກສຳລັບລາຍລະອຽດ ຫຼືຕິດຕັ້ງ {0} ດ້ວຍຕົນເອງ. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ ໂຕຕິດຕັ້ງ {0} ໄດ້ລາຍງານຂໍ້ຜິດພາດ (ລະຫັດ {1}). ເບິ່ງບັນທຶກສຳລັບລາຍລະອຽດ ຫຼືຕິດຕັ້ງ {0} ດ້ວຍຕົນເອງ. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ ບໍ່ສາມາດເຊື່ອມຕໍ່ Windows Package Manager ຂະນະຕິດຕັ້ງ {0}. ກວດເບິ່ງການເຊື່ອມຕໍ່ອິນເຕີເນັດຂອງທ່ານ (VPN, proxy ຫຼືໄຟວໍອາດຈະບລັອກຢູ່) ແລ້ວລອງໃໝ່. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ ບໍ່ມີໂຕຕິດຕັ້ງທີ່ເຂົ້າກັນໄດ້ສຳລັບ {0} ໃນລະບົບນີ້ (ອາດບໍ່ຮອງຮັບລຸ້ນ OS ຫຼືສະຖາປັດຕະຍະກຳ). ຕິດຕັ້ງ {0} ດ້ວຍຕົນເອງ. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ ບໍ່ພົບ {0} ໃນແຄັດຕາລັອກ Windows Package Manager. ລອງຣີເຟຣດແຫຼ່ງ winget ຫຼືຕິດຕັ້ງ {0} ດ້ວຍຕົນເອງ. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ ການຕິດຕັ້ງ {0} ໃຊ້ເວລາເກີນ 20 ນາທີ. Intelligent Terminal ຢຸດລໍຖ້າແລ້ວ, ແຕ່ໂຕຕິດຕັ້ງອາດຍັງເຮັດວຽກໃນພື້ນຫຼັງ. ກວດເບິ່ງ Task Manager ຫຼືລອງໃໝ່ພາຍຫຼັງ. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) ຍັງບໍ່ໄດ້ຕິດຕັ້ງ ຫຼື ບໍ່ພ້ອມໃຊ້ງານ. ຕິດຕັ້ງມັນກ່ອນ ແລ້ວລອງໃໝ່. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ ການຕິດຕັ້ງ Node.js ລົ້ມເຫລວ. ກວດເບິ່ງການເຊື່ອມຕໍ່ເຄືອຂ່າຍແລະລອງໃຫມ່. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Node.js prerequisite. ເປີດ diff --git a/src/cascadia/TerminalApp/Resources/lt-LT/Resources.resw b/src/cascadia/TerminalApp/Resources/lt-LT/Resources.resw index 6c019ffb6..92e711119 100644 --- a/src/cascadia/TerminalApp/Resources/lt-LT/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/lt-LT/Resources.resw @@ -220,18 +220,51 @@ Nustatoma... - - ⚠ Nepavyko įdiegti GitHub Copilot. Patikrinkite tinklo ryšį ir bandykite dar kartą. - {Locked="GitHub Copilot"} + + ⚠ „Windows“ paketų tvarkytuvo strategija užblokavo {0} diegimą. Jei naudojate valdomą įrenginį, kreipkitės į savo IT administratorių. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Nepavyko įdiegti {0} (klaidos kodas {1}). Daugiau informacijos žr. žurnale arba įdiekite {0} rankiniu būdu. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Nepavyko įdiegti {0}. Daugiau informacijos žr. žurnale arba įdiekite {0} rankiniu būdu. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0} diegyklė pranešė apie klaidą (kodas {1}). Daugiau informacijos žr. žurnale arba įdiekite {0} rankiniu būdu. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Nepavyko pasiekti „Windows“ paketų tvarkytuvo diegiant {0}. Patikrinkite interneto ryšį (VPN, tarpinis serveris arba užkarda gali jį blokuoti) ir bandykite dar kartą. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Šioje sistemoje nėra suderinamos {0} diegyklės (OS versija arba architektūra gali būti nepalaikoma). Įdiekite {0} rankiniu būdu. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} nerasta „Windows“ paketų tvarkytuvo kataloge. Pabandykite atnaujinti winget šaltinius arba įdiekite {0} rankiniu būdu. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Diegiant {0} užtrukta ilgiau nei 20 minučių. Intelligent Terminal nustojo laukti, bet diegyklė vis dar gali veikti fone. Patikrinkite Task Manager arba bandykite dar kartą vėliau. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ „Windows“ paketų tvarkytuvas (winget) neįdiegtas arba nepasiekiamas. Pirmiausia jį įdiekite, tada bandykite dar kartą. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Nepavyko įdiegti Node.js. Patikrinkite tinklo ryšį ir bandykite dar kartą. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + Įjungta diff --git a/src/cascadia/TerminalApp/Resources/lv-LV/Resources.resw b/src/cascadia/TerminalApp/Resources/lv-LV/Resources.resw index 7b7d05cdf..74c613163 100644 --- a/src/cascadia/TerminalApp/Resources/lv-LV/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/lv-LV/Resources.resw @@ -220,18 +220,51 @@ Iestata... - - ⚠ Neizdevās instalēt GitHub Copilot. Pārbaudiet tīkla savienojumu un mēģiniet vēlreiz. - {Locked="GitHub Copilot"} + + ⚠ {0} instalēšanu bloķēja Windows pakotņu pārvaldnieka politika. Ja izmantojat pārvaldītu ierīci, sazinieties ar savu IT administratoru. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Neizdevās instalēt {0} (kļūdas kods {1}). Skatiet žurnālu, lai iegūtu detalizētu informāciju, vai instalējiet {0} manuāli. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Neizdevās instalēt {0}. Skatiet žurnālu, lai iegūtu detalizētu informāciju, vai instalējiet {0} manuāli. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0} instalētājs ziņoja par kļūdu (kods {1}). Skatiet žurnālu, lai iegūtu detalizētu informāciju, vai instalējiet {0} manuāli. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Neizdevās sasniegt Windows pakotņu pārvaldnieku, instalējot {0}. Pārbaudiet interneta savienojumu (VPN, starpniekserveris vai ugunsmūris to var bloķēt) un mēģiniet vēlreiz. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Šajā sistēmā nav pieejams saderīgs instalētājs pakotnei {0} (OS versija vai arhitektūra var netikt atbalstīta). Instalējiet {0} manuāli. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} netika atrasts Windows pakotņu pārvaldnieka katalogā. Mēģiniet atsvaidzināt winget avotus vai instalējiet {0} manuāli. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} instalēšana ilga vairāk nekā 20 minūtes. Intelligent Terminal pārtrauca gaidīt, bet instalētājs, iespējams, joprojām darbojas fonā. Pārbaudiet Task Manager vai mēģiniet vēlreiz vēlāk. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows pakotņu pārvaldnieks (winget) nav instalēts vai nav pieejams. Vispirms instalējiet to un pēc tam mēģiniet vēlreiz. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Neizdevās instalēt Node.js. Pārbaudiet tīkla savienojumu un mēģiniet vēlreiz. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + Ieslēgts diff --git a/src/cascadia/TerminalApp/Resources/mi-NZ/Resources.resw b/src/cascadia/TerminalApp/Resources/mi-NZ/Resources.resw index f499f4deb..16fed1438 100644 --- a/src/cascadia/TerminalApp/Resources/mi-NZ/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/mi-NZ/Resources.resw @@ -107,17 +107,49 @@ Kei te whakarite... - - ⚠ I rahua te tāuta i a GitHub Copilot. Tirohia tō hononga whatuao ka ngana anō. - {Locked="GitHub Copilot"} + + ⚠ I āraia te tāutanga o {0} e tētahi kaupapahere Kaiwhakahaere Mōkī Windows. Mēnā kei runga koe i tētahi pūrere whakahaere, whakapā atu ki tō kaiwhakahaere IT. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Kāore i taea te tāuta i a {0} (waehere hapa {1}). Tirohia te rangitaki mō ngā taipitopito, tāutahia rānei a {0} ā-ringa. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Kāore i taea te tāuta i a {0}. Tirohia te rangitaki mō ngā taipitopito, tāutahia rānei a {0} ā-ringa. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ I pūrongo te kaitāuta o {0} i tētahi hapa (waehere {1}). Tirohia te rangitaki mō ngā taipitopito, tāutahia rānei a {0} ā-ringa. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Kāore i taea te toro atu ki te Kaiwhakahaere Mōkī Windows i te wā e tāuta ana i a {0}. Tirohia tō hononga ipurangi (tērā pea kei te āraia e VPN, takawaenga, pātūahi rānei), kātahi ka ngana anō. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Kāore he kaitāuta hototahi mō {0} e wātea ana i tēnei pūnaha (kāore pea te putanga OS, te hoahoanga rānei e tautokona). Tāutahia a {0} ā-ringa. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Kāore a {0} i kitea i te putumōhio Kaiwhakahaere Mōkī Windows. Whakamātauria te whakahou i ngā pūtake winget, tāutahia rānei a {0} ā-ringa. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Neke atu i te 20 meneti te tāuta i a {0}. Kua mutu te tatari a Intelligent Terminal, engari tērā pea kei te rere tonu te kaitāuta i muri. Tirohia te Task Manager, ngana anō rānei ā muri ake. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Kāore anō te Kaiwhakahaere Mōkī Windows (winget) kia tāutatia, kāore rānei i te wātea. Tāutahia i te tuatahi, kātahi ka ngana anō. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ I rahua te tāuta i a Node.js. Tirohia tō hononga whatuao ka ngana anō. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Node.js prerequisite. diff --git a/src/cascadia/TerminalApp/Resources/mk-MK/Resources.resw b/src/cascadia/TerminalApp/Resources/mk-MK/Resources.resw index e73ce0261..6aaf384ca 100644 --- a/src/cascadia/TerminalApp/Resources/mk-MK/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/mk-MK/Resources.resw @@ -220,18 +220,51 @@ Се поставува... - - ⚠ Инсталирањето на GitHub Copilot не успеа. Проверете ја мрежната врска и обидете се повторно. - {Locked="GitHub Copilot"} + + ⚠ Инсталирањето на {0} беше блокирано од политика на Windows Package Manager. Ако користите управуван уред, контактирајте со IT администраторот. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Инсталирањето на {0} не успеа (код на грешка {1}). Проверете го дневникот за детали или инсталирајте {0} рачно. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Инсталирањето на {0} не успеа. Проверете го дневникот за детали или инсталирајте {0} рачно. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Инсталаторот за {0} пријави грешка (код {1}). Проверете го дневникот за детали или инсталирајте {0} рачно. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Не можеше да се пристапи до Windows Package Manager при инсталирањето на {0}. Проверете ја интернет-врската (VPN, прокси или заштитен ѕид може да ја блокира) и обидете се повторно. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ На овој систем нема достапен компатибилен инсталатор за {0} (верзијата на ОС или архитектурата можеби не се поддржани). Инсталирајте {0} рачно. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} не беше пронајден во каталогот на Windows Package Manager. Обидете се да ги освежите изворите на winget или инсталирајте {0} рачно. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Инсталирањето на {0} траеше подолго од 20 минути. Intelligent Terminal престана да чека, но инсталаторот можеби сè уште работи во заднина. Проверете Task Manager или обидете се повторно подоцна. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) не е инсталиран или не е достапен. Прво инсталирајте го, а потоа обидете се повторно. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Инсталирањето на Node.js не успеа. Проверете ја мрежната врска и обидете се повторно. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + Вкл. diff --git a/src/cascadia/TerminalApp/Resources/ml-IN/Resources.resw b/src/cascadia/TerminalApp/Resources/ml-IN/Resources.resw index 1eb4b301a..5ab325707 100644 --- a/src/cascadia/TerminalApp/Resources/ml-IN/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/ml-IN/Resources.resw @@ -220,18 +220,62 @@ സജ്ജമാക്കുന്നു... - - ⚠ GitHub Copilot ഇൻസ്റ്റാൾ ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു. നിങ്ങളുടെ നെറ്റ്‌വർക്ക് പരിശോധിച്ച് വീണ്ടും ശ്രമിക്കുക. - {Locked="GitHub Copilot"} + + ⚠ Windows Package Manager പോളിസി {0} ഇൻസ്റ്റാളേഷൻ തടഞ്ഞു. നിങ്ങൾ മാനേജുചെയ്യുന്ന ഉപകരണത്തിലാണ് എങ്കിൽ, നിങ്ങളുടെ IT അഡ്മിനുമായി ബന്ധപ്പെടുക. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy (group policy disabled the operation). + + + ⚠ {0} ഇൻസ്റ്റാൾ ചെയ്യാനായില്ല (പിശക് കോഡ് {1}). വിശദാംശങ്ങൾക്ക് ലോഗ് കാണുക, അല്ലെങ്കിൽ {0} മാനുവലായി ഇൻസ്റ്റാൾ ചെയ്യുക. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". Shown for failure causes we don't have a more specific message for. + + + ⚠ {0} ഇൻസ്റ്റാൾ ചെയ്യാനായില്ല. വിശദാംശങ്ങൾക്ക് ലോഗ് കാണുക, അല്ലെങ്കിൽ {0} മാനുവലായി ഇൻസ്റ്റാൾ ചെയ്യുക. + FRE setup error fallback used when no actionable error code is available (e.g. the catalog connect/search failed before an installer ever ran). {0} is the package display name (appears twice). + + + ⚠ {0} ഇൻസ്റ്റാളർ ഒരു പിശക് റിപ്പോർട്ട് ചെയ്തു (കോഡ് {1}). വിശദാംശങ്ങൾക്ക് ലോഗ് പരിശോധിക്കുക, അല്ലെങ്കിൽ {0} മാനുവലായി ഇൻസ്റ്റാൾ ചെയ്യുക. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). Shown when winget reached the install phase but the installer itself failed. + + + ⚠ {0} ഇൻസ്റ്റാൾ ചെയ്യുമ്പോൾ Windows Package Manager-ലേക്ക് എത്താനായില്ല. നിങ്ങളുടെ ഇന്റർനെറ്റ് കണക്ഷൻ പരിശോധിക്കുക (VPN, proxy, അല്ലെങ്കിൽ firewall ഇത് തടയുന്നുണ്ടാകാം) വീണ്ടും ശ്രമിക്കുക. + {Locked="VPN"} FRE setup error. {0} is the package display name (FreOverlay_PackageDisplayName_Copilot or _Node). Shown when winget couldn't reach its catalog or the package download failed with a network-class HRESULT. + + + ⚠ ഈ സിസ്റ്റത്തിൽ {0}-നായി അനുയോജ്യമായ ഇൻസ്റ്റാളർ ലഭ്യമല്ല (OS പതിപ്പ് അല്ലെങ്കിൽ ആർക്കിടെക്ചർ പിന്തുണയ്ക്കുന്നില്ലായിരിക്കാം). {0} മാനുവലായി ഇൻസ്റ്റാൾ ചെയ്യുക. + FRE setup error. {0} is the package display name (appears twice). Shown when winget returned NoApplicableInstallers — the manifest exists but no installer entry matches this OS/arch/scope. + + + ⚠ Windows Package Manager കാറ്റലോഗിൽ {0} കണ്ടെത്താനായില്ല. winget സോഴ്സുകൾ റിഫ്രെഷ് ചെയ്യാൻ ശ്രമിക്കുക, അല്ലെങ്കിൽ {0} മാനുവലായി ഇൻസ്റ്റാൾ ചെയ്യുക. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). Shown when no manifest with the requested package ID was returned from the catalog search. + + + ⚠ {0} ഇൻസ്റ്റാൾ ചെയ്യാൻ 20 മിനിറ്റിൽ കൂടുതൽ എടുത്തു. Intelligent Terminal കാത്തിരിപ്പ് നിർത്തി, പക്ഷേ ഇൻസ്റ്റാളർ ഇപ്പോഴും പശ്ചാത്തലത്തിൽ പ്രവർത്തിക്കുകയായിരിക്കാം. Task Manager പരിശോധിക്കുക, അല്ലെങ്കിൽ പിന്നീട് വീണ്ടും ശ്രമിക്കുക. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. Shown when our 20-minute hard timeout expired before the install completed. + + + ⚠ session hooks ഇൻസ്റ്റാൾ ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു. സെഷൻ മാനേജ്മെന്റ് ഓഫ് ചെയ്തിരിക്കുന്നു. നിങ്ങൾക്ക് ഇത് വീണ്ടും പ്രവർത്തനക്ഷമമാക്കി വീണ്ടും ശ്രമിക്കാം, അല്ലെങ്കിൽ ഇത് ഇല്ലാതെ തുടരാൻ സേവ് ചെയ്യാം. + {Locked="hooks"} + + + ⚠ ഷെൽ ഇന്റഗ്രേഷൻ ഇൻസ്റ്റാൾ ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു. പിശക് കണ്ടെത്തൽ ഓഫ് ചെയ്തിരിക്കുന്നു. നിങ്ങൾക്ക് ഇത് വീണ്ടും പ്രവർത്തനക്ഷമമാക്കി വീണ്ടും ശ്രമിക്കാം, അല്ലെങ്കിൽ ഇത് ഇല്ലാതെ തുടരാൻ സേവ് ചെയ്യാം. + + + ⚠ PowerShell എക്സിക്യൂഷൻ പോളിസി സ്ക്രിപ്റ്റുകളെ തടയുന്നു. പിശക് കണ്ടെത്തൽ ഓഫ് ചെയ്തു. + {Locked="PowerShell"} ⚠ Windows Package Manager (winget) ഇൻസ്റ്റാൾ ചെയ്തിട്ടില്ല അല്ലെങ്കിൽ ലഭ്യമല്ല. ആദ്യം അത് ഇൻസ്റ്റാൾ ചെയ്യുക, തുടർന്ന് വീണ്ടും ശ്രമിക്കുക. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Node.js ഇൻസ്റ്റാൾ ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു. നിങ്ങളുടെ നെറ്റ്‌വർക്ക് പരിശോധിച്ച് വീണ്ടും ശ്രമിക്കുക. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + ഓൺ @@ -308,12 +352,7 @@ നിങ്ങളുടെ ഷെല്ലിലേക്ക് പ്രവേശിക്കാനും പിശകുകൾ സ്വയമേവ കണ്ടെത്താനും Intelligent Terminal-നെ അനുവദിക്കുക. - - ⚠ ഷെൽ ഇന്റഗ്രേഷൻ ഇൻസ്റ്റാൾ ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു. പിശക് കണ്ടെത്തൽ ഓഫ് ചെയ്തിരിക്കുന്നു. നിങ്ങൾക്ക് ഇത് വീണ്ടും പ്രവർത്തനക്ഷമമാക്കി വീണ്ടും ശ്രമിക്കാം, അല്ലെങ്കിൽ ഇത് ഇല്ലാതെ തുടരാൻ സേവ് ചെയ്യാം. - - ⚠ session hooks ഇൻസ്റ്റാൾ ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു. സെഷൻ മാനേജ്മെന്റ് ഓഫ് ചെയ്തിരിക്കുന്നു. നിങ്ങൾക്ക് ഇത് വീണ്ടും പ്രവർത്തനക്ഷമമാക്കി വീണ്ടും ശ്രമിക്കാം, അല്ലെങ്കിൽ ഇത് ഇല്ലാതെ തുടരാൻ സേവ് ചെയ്യാം. - {Locked="hooks"} - + ഇത് സ്വമേധയാ എങ്ങനെ പരിഹരിക്കാമെന്ന് അറിയുക Hyperlink shown below an FRE setup error message. Opens step-by-step manual setup instructions in the browser. @@ -326,8 +365,4 @@ PowerShell എക്സിക്യൂഷൻ പോളിസി സ്ക്രിപ്റ്റുകളെ തടയുന്നു. Body of an error dialog shown after the user tries to install PowerShell shell integration but their PowerShell execution policy (Restricted or AllSigned) is blocking scripts. A separate "Learn how to fix this manually" hyperlink (FreOverlay_ErrorHelpLink) is rendered on its own line below this sentence. {Locked="PowerShell"} - - ⚠ PowerShell എക്സിക്യൂഷൻ പോളിസി സ്ക്രിപ്റ്റുകളെ തടയുന്നു. പിശക് കണ്ടെത്തൽ ഓഫ് ചെയ്തു. - {Locked="PowerShell"} - diff --git a/src/cascadia/TerminalApp/Resources/mr-IN/Resources.resw b/src/cascadia/TerminalApp/Resources/mr-IN/Resources.resw index 4b4425c34..c6bb8432e 100644 --- a/src/cascadia/TerminalApp/Resources/mr-IN/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/mr-IN/Resources.resw @@ -220,18 +220,62 @@ सेट अप होत आहे... - - ⚠ GitHub Copilot इंस्टॉल करणे अयशस्वी. तुमचे नेटवर्क तपासा आणि पुन्हा प्रयत्न करा. - {Locked="GitHub Copilot"} + + ⚠ Windows Package Manager धोरणामुळे {0} ची स्थापना अवरोधित झाली. तुम्ही व्यवस्थापित डिव्हाइसवर असल्यास, तुमच्या IT प्रशासकाशी संपर्क साधा. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy (group policy disabled the operation). + + + ⚠ {0} इंस्टॉल करता आले नाही (त्रुटी कोड {1}). तपशीलांसाठी लॉग पहा, किंवा {0} मॅन्युअली इंस्टॉल करा. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". Shown for failure causes we don't have a more specific message for. + + + ⚠ {0} इंस्टॉल करता आले नाही. तपशीलांसाठी लॉग पहा, किंवा {0} मॅन्युअली इंस्टॉल करा. + FRE setup error fallback used when no actionable error code is available (e.g. the catalog connect/search failed before an installer ever ran). {0} is the package display name (appears twice). + + + ⚠ {0} इंस्टॉलरने त्रुटी नोंदवली (कोड {1}). तपशीलांसाठी लॉग तपासा, किंवा {0} मॅन्युअली इंस्टॉल करा. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). Shown when winget reached the install phase but the installer itself failed. + + + ⚠ {0} इंस्टॉल करताना Windows Package Manager पर्यंत पोहोचता आले नाही. तुमचे इंटरनेट कनेक्शन तपासा (VPN, proxy किंवा firewall ते अवरोधित करत असू शकते) आणि पुन्हा प्रयत्न करा. + {Locked="VPN"} FRE setup error. {0} is the package display name (FreOverlay_PackageDisplayName_Copilot or _Node). Shown when winget couldn't reach its catalog or the package download failed with a network-class HRESULT. + + + ⚠ या सिस्टमवर {0} साठी कोणताही सुसंगत इंस्टॉलर उपलब्ध नाही (OS आवृत्ती किंवा आर्किटेक्चर समर्थित नसू शकते). {0} मॅन्युअली इंस्टॉल करा. + FRE setup error. {0} is the package display name (appears twice). Shown when winget returned NoApplicableInstallers — the manifest exists but no installer entry matches this OS/arch/scope. + + + ⚠ Windows Package Manager कॅटलॉगमध्ये {0} सापडले नाही. winget स्रोत रिफ्रेश करण्याचा प्रयत्न करा, किंवा {0} मॅन्युअली इंस्टॉल करा. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). Shown when no manifest with the requested package ID was returned from the catalog search. + + + ⚠ {0} इंस्टॉल करण्यास 20 मिनिटांपेक्षा जास्त वेळ लागला. Intelligent Terminal ने प्रतीक्षा करणे थांबवले, पण इंस्टॉलर अजूनही पार्श्वभूमीत चालू असू शकतो. Task Manager तपासा, किंवा नंतर पुन्हा प्रयत्न करा. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. Shown when our 20-minute hard timeout expired before the install completed. + + + ⚠ session hooks इंस्टॉल करणे अयशस्वी. सत्र व्यवस्थापन बंद केले गेले आहे. तुम्ही ते पुन्हा सक्षम करू शकता आणि पुन्हा प्रयत्न करू शकता, किंवा त्याशिवाय सुरू ठेवण्यासाठी सेव्ह करू शकता. + {Locked="hooks"} + + + ⚠ शेल इंटिग्रेशन इंस्टॉल करणे अयशस्वी. त्रुटी शोध बंद केले गेले आहे. तुम्ही ते पुन्हा सक्षम करू शकता आणि पुन्हा प्रयत्न करू शकता, किंवा त्याशिवाय सुरू ठेवण्यासाठी सेव्ह करू शकता. + + + ⚠ PowerShell कार्यान्वयन धोरण स्क्रिप्ट्स अवरोधित करत आहे. त्रुटी शोध बंद केले. + {Locked="PowerShell"} ⚠ Windows Package Manager (winget) इंस्टॉल केलेले नाही किंवा उपलब्ध नाही. प्रथम ते इंस्टॉल करा, नंतर पुन्हा प्रयत्न करा. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Node.js इंस्टॉल करणे अयशस्वी. तुमचे नेटवर्क तपासा आणि पुन्हा प्रयत्न करा. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + चालू @@ -308,12 +352,7 @@ Intelligent Terminal ला तुमच्या शेलमध्ये प्रवेश करण्याची आणि त्रुटी स्वयंचलितपणे शोधण्याची परवानगी द्या. - - ⚠ शेल इंटिग्रेशन इंस्टॉल करणे अयशस्वी. त्रुटी शोध बंद केले गेले आहे. तुम्ही ते पुन्हा सक्षम करू शकता आणि पुन्हा प्रयत्न करू शकता, किंवा त्याशिवाय सुरू ठेवण्यासाठी सेव्ह करू शकता. - - ⚠ session hooks इंस्टॉल करणे अयशस्वी. सत्र व्यवस्थापन बंद केले गेले आहे. तुम्ही ते पुन्हा सक्षम करू शकता आणि पुन्हा प्रयत्न करू शकता, किंवा त्याशिवाय सुरू ठेवण्यासाठी सेव्ह करू शकता. - {Locked="hooks"} - + हे व्यक्तिचलितरीत्या कसे निराकरण करायचे ते जाणून घ्या Hyperlink shown below an FRE setup error message. Opens step-by-step manual setup instructions in the browser. @@ -326,8 +365,4 @@ PowerShell कार्यान्वयन धोरण स्क्रिप्ट्स अवरोधित करत आहे. Body of an error dialog shown after the user tries to install PowerShell shell integration but their PowerShell execution policy (Restricted or AllSigned) is blocking scripts. A separate "Learn how to fix this manually" hyperlink (FreOverlay_ErrorHelpLink) is rendered on its own line below this sentence. {Locked="PowerShell"} - - ⚠ PowerShell कार्यान्वयन धोरण स्क्रिप्ट्स अवरोधित करत आहे. त्रुटी शोध बंद केले. - {Locked="PowerShell"} - diff --git a/src/cascadia/TerminalApp/Resources/ms-MY/Resources.resw b/src/cascadia/TerminalApp/Resources/ms-MY/Resources.resw index 0449474ce..f117fe066 100644 --- a/src/cascadia/TerminalApp/Resources/ms-MY/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/ms-MY/Resources.resw @@ -220,17 +220,49 @@ Menyediakan... - - ⚠ Gagal memasang GitHub Copilot. Semak rangkaian anda dan cuba lagi. - {Locked="GitHub Copilot"} + + ⚠ Pemasangan {0} disekat oleh dasar Windows Package Manager. Jika anda menggunakan peranti terurus, hubungi pentadbir IT anda. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Tidak dapat memasang {0} (kod ralat {1}). Lihat log untuk butiran, atau pasang {0} secara manual. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Tidak dapat memasang {0}. Lihat log untuk butiran, atau pasang {0} secara manual. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Pemasang {0} melaporkan ralat (kod {1}). Lihat log untuk butiran, atau pasang {0} secara manual. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Tidak dapat mencapai Windows Package Manager semasa memasang {0}. Semak sambungan internet anda (VPN, proksi atau tembok api mungkin menyekatnya) dan cuba lagi. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Tiada pemasang yang serasi untuk {0} tersedia pada sistem ini (versi OS atau seni bina mungkin tidak disokong). Pasang {0} secara manual. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} tidak ditemui dalam katalog Windows Package Manager. Cuba segarkan semula sumber winget, atau pasang {0} secara manual. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Memasang {0} mengambil masa lebih daripada 20 minit. Intelligent Terminal berhenti menunggu, tetapi pemasang mungkin masih berjalan di latar belakang. Semak Task Manager, atau cuba lagi kemudian. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) tidak dipasang atau tidak tersedia. Pasang dahulu, kemudian cuba lagi. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Gagal memasang Node.js. Semak rangkaian anda dan cuba lagi. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Node.js prerequisite. Hidup diff --git a/src/cascadia/TerminalApp/Resources/mt-MT/Resources.resw b/src/cascadia/TerminalApp/Resources/mt-MT/Resources.resw index 635bd3b31..8b29a7e83 100644 --- a/src/cascadia/TerminalApp/Resources/mt-MT/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/mt-MT/Resources.resw @@ -107,17 +107,49 @@ Qed jiġi ssettjat... - - ⚠ L-installazzjoni ta' GitHub Copilot falliet. Iċċekja l-konnessjoni tan-netwerk tiegħek u erġa' pprova. - {Locked="GitHub Copilot"} + + ⚠ L-installazzjoni ta' {0} ġiet imblukkata minn politika tal-Maniġer tal-Pakketti ta' Windows. Jekk qiegħed fuq apparat immaniġġjat, ikkuntattja lill-amministratur tal-IT tiegħek. + FRE setup error. {0} is the package display name. + + + ⚠ Ma setax jiġi installat {0} (kodiċi tal-iżball {1}). Ara l-log għad-dettalji, jew installa {0} manwalment. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string. + + + ⚠ Ma setax jiġi installat {0}. Ara l-log għad-dettalji, jew installa {0} manwalment. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ L-installatur ta' {0} irrapporta żball (kodiċi {1}). Iċċekkja l-log għad-dettalji, jew installa {0} manwalment. + FRE setup error. {0} is the package display name (appears twice). {1} is decimal error code. + + + ⚠ Ma setax jintlaħaq il-Maniġer tal-Pakketti ta' Windows waqt l-installazzjoni ta' {0}. Iċċekkja l-konnessjoni tal-internet tiegħek (VPN, proxy jew firewall jistgħu jkunu qed jimblukkawha) u erġa' pprova. + {Locked="VPN"} FRE setup error. {0} is the package display name. + + + ⚠ L-ebda installatur kompatibbli għal {0} mhu disponibbli fuq din is-sistema (il-verżjoni tal-OS jew l-arkitettura jistgħu ma jkunux appoġġjati). Installa {0} manwalment. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} ma nstabx fil-katalgu tal-Maniġer tal-Pakketti ta' Windows. Ipprova aġġorna s-sorsi ta' winget, jew installa {0} manwalment. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ L-installazzjoni ta' {0} ħadet aktar minn 20 minuta. Intelligent Terminal waqaf jistenna, iżda l-installatur jista' jkun għadu għaddej fl-isfond. Iċċekkja Task Manager, jew erġa' pprova aktar tard. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Il-Maniġer tal-Pakketti ta' Windows (winget) mhuwiex installat jew mhux disponibbli. Installah l-ewwel, imbagħad erġa' pprova. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ L-installazzjoni ta' Node.js falliet. Iċċekja l-konnessjoni tan-netwerk tiegħek u erġa' pprova. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Mixgħul diff --git a/src/cascadia/TerminalApp/Resources/nb-NO/Resources.resw b/src/cascadia/TerminalApp/Resources/nb-NO/Resources.resw index a27d74a47..2ad3876f8 100644 --- a/src/cascadia/TerminalApp/Resources/nb-NO/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/nb-NO/Resources.resw @@ -221,17 +221,49 @@ In this context, "agent" refers to an AI agent (e.g. Copilot, Claude, Gemini), n Konfigurerer... - - ⚠ Kunne ikke installere GitHub Copilot. Sjekk nettverkstilkoblingen og prøv igjen. - {Locked="GitHub Copilot"} + + ⚠ Installasjon av {0} ble blokkert av en Windows Pakkebehandling-policy. Hvis du bruker en administrert enhet, kontakter du IT-administratoren. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Kunne ikke installere {0} (feilkode {1}). Sjekk loggen for detaljer, eller installer {0} manuelt. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Kunne ikke installere {0}. Sjekk loggen for detaljer, eller installer {0} manuelt. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Installasjonsprogrammet for {0} rapporterte en feil (kode {1}). Sjekk loggen for detaljer, eller installer {0} manuelt. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Fikk ikke kontakt med Windows Pakkebehandling under installasjon av {0}. Sjekk internettkoblingen (VPN, proxy eller brannmur kan blokkere den) og prøv igjen. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Det finnes ikke noe kompatibelt installasjonsprogram for {0} på dette systemet (OS-versjonen eller arkitekturen støttes kanskje ikke). Installer {0} manuelt. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} ble ikke funnet i katalogen til Windows Pakkebehandling. Prøv å oppdatere winget-kildene, eller installer {0} manuelt. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Installasjon av {0} tok mer enn 20 minutter. Intelligent Terminal sluttet å vente, men installasjonsprogrammet kan fortsatt kjøre i bakgrunnen. Sjekk Task Manager, eller prøv igjen senere. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Pakkebehandling (winget) er ikke installert eller ikke tilgjengelig. Installer den først, og prøv deretter på nytt. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Kunne ikke installere Node.js. Sjekk nettverkstilkoblingen og prøv igjen. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. diff --git a/src/cascadia/TerminalApp/Resources/ne-NP/Resources.resw b/src/cascadia/TerminalApp/Resources/ne-NP/Resources.resw index 4e5208c15..c20f28f55 100644 --- a/src/cascadia/TerminalApp/Resources/ne-NP/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/ne-NP/Resources.resw @@ -221,18 +221,62 @@ सेटअप हुँदैछ... - - ⚠ GitHub Copilot स्थापना गर्न विफल भयो। आफ्नो नेटवर्क जाँच गर्नुहोस् र पुनः प्रयास गर्नुहोस्। - {Locked="GitHub Copilot"} + + ⚠ Windows Package Manager नीतिले {0} को स्थापना रोक्यो। तपाईं व्यवस्थापित उपकरणमा हुनुहुन्छ भने, आफ्नो IT प्रशासकलाई सम्पर्क गर्नुहोस्। + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy (group policy disabled the operation). + + + ⚠ {0} स्थापना गर्न सकिएन (त्रुटि कोड {1})। विवरणका लागि लग हेर्नुहोस्, वा {0} म्यानुअल रूपमा स्थापना गर्नुहोस्। + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". Shown for failure causes we don't have a more specific message for. + + + ⚠ {0} स्थापना गर्न सकिएन। विवरणका लागि लग हेर्नुहोस्, वा {0} म्यानुअल रूपमा स्थापना गर्नुहोस्। + FRE setup error fallback used when no actionable error code is available (e.g. the catalog connect/search failed before an installer ever ran). {0} is the package display name (appears twice). + + + ⚠ {0} स्थापनाकर्ताले त्रुटि रिपोर्ट गर्‍यो (कोड {1})। विवरणका लागि लग जाँच गर्नुहोस्, वा {0} म्यानुअल रूपमा स्थापना गर्नुहोस्। + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). Shown when winget reached the install phase but the installer itself failed. + + + ⚠ {0} स्थापना गर्दा Windows Package Manager मा पुग्न सकिएन। आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् (VPN, proxy, वा firewall ले यसलाई रोकिरहेको हुन सक्छ) र पुनः प्रयास गर्नुहोस्। + {Locked="VPN"} FRE setup error. {0} is the package display name (FreOverlay_PackageDisplayName_Copilot or _Node). Shown when winget couldn't reach its catalog or the package download failed with a network-class HRESULT. + + + ⚠ यो प्रणालीमा {0} का लागि कुनै उपयुक्त स्थापनाकर्ता उपलब्ध छैन (OS संस्करण वा आर्किटेक्चर समर्थित नहुन सक्छ)। {0} म्यानुअल रूपमा स्थापना गर्नुहोस्। + FRE setup error. {0} is the package display name (appears twice). Shown when winget returned NoApplicableInstallers — the manifest exists but no installer entry matches this OS/arch/scope. + + + ⚠ Windows Package Manager क्याटलगमा {0} फेला परेन। winget स्रोतहरू रिफ्रेस गर्ने प्रयास गर्नुहोस्, वा {0} म्यानुअल रूपमा स्थापना गर्नुहोस्। + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). Shown when no manifest with the requested package ID was returned from the catalog search. + + + ⚠ {0} स्थापना गर्न 20 मिनेटभन्दा बढी समय लाग्यो। Intelligent Terminal ले पर्खन बन्द गर्‍यो, तर स्थापनाकर्ता अझै पनि पृष्ठभूमिमा चलिरहेको हुन सक्छ। Task Manager जाँच गर्नुहोस्, वा पछि पुनः प्रयास गर्नुहोस्। + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. Shown when our 20-minute hard timeout expired before the install completed. + + + ⚠ session hooks स्थापना गर्न विफल भयो। सत्र व्यवस्थापन बन्द गरिएको छ। तपाईं यसलाई पुनः सक्षम गर्न सक्नुहुन्छ र पुनः प्रयास गर्न सक्नुहुन्छ, वा यसबिना जारी राख्न सेभ गर्नुहोस्। + {Locked="hooks"} + + + ⚠ शेल एकीकरण स्थापना गर्न विफल भयो। त्रुटि पत्ता लगाउने बन्द गरिएको छ। तपाईं यसलाई पुनः सक्षम गर्न सक्नुहुन्छ र पुनः प्रयास गर्न सक्नुहुन्छ, वा यसबिना जारी राख्न सेभ गर्नुहोस्। + + + ⚠ PowerShell कार्यान्वयन नीतिले स्क्रिप्टहरू रोक्दैछ। त्रुटि पत्ता लगाउने बन्द गरियो। + {Locked="PowerShell"} ⚠ Windows Package Manager (winget) स्थापना गरिएको छैन वा उपलब्ध छैन। पहिले यसलाई स्थापना गर्नुहोस्, त्यसपछि पुनः प्रयास गर्नुहोस्। - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Node.js स्थापना गर्न विफल भयो। आफ्नो नेटवर्क जाँच गर्नुहोस् र पुनः प्रयास गर्नुहोस्। - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + चालु @@ -309,12 +353,7 @@ Intelligent Terminal लाई तपाईंको सेलमा पहुँच गर्न र त्रुटिहरू स्वचालित रूपमा पत्ता लगाउन अनुमति दिनुहोस्। - - ⚠ शेल एकीकरण स्थापना गर्न विफल भयो। त्रुटि पत्ता लगाउने बन्द गरिएको छ। तपाईं यसलाई पुनः सक्षम गर्न सक्नुहुन्छ र पुनः प्रयास गर्न सक्नुहुन्छ, वा यसबिना जारी राख्न सेभ गर्नुहोस्। - - ⚠ session hooks स्थापना गर्न विफल भयो। सत्र व्यवस्थापन बन्द गरिएको छ। तपाईं यसलाई पुनः सक्षम गर्न सक्नुहुन्छ र पुनः प्रयास गर्न सक्नुहुन्छ, वा यसबिना जारी राख्न सेभ गर्नुहोस्। - {Locked="hooks"} - + यो म्यानुअल रूपमा कसरी ठीक गर्ने भनेर सिक्नुहोस् Hyperlink shown below an FRE setup error message. Opens step-by-step manual setup instructions in the browser. @@ -327,8 +366,4 @@ PowerShell कार्यान्वयन नीतिले स्क्रिप्टहरू रोक्दैछ। Body of an error dialog shown after the user tries to install PowerShell shell integration but their PowerShell execution policy (Restricted or AllSigned) is blocking scripts. A separate "Learn how to fix this manually" hyperlink (FreOverlay_ErrorHelpLink) is rendered on its own line below this sentence. {Locked="PowerShell"} - - ⚠ PowerShell कार्यान्वयन नीतिले स्क्रिप्टहरू रोक्दैछ। त्रुटि पत्ता लगाउने बन्द गरियो। - {Locked="PowerShell"} - diff --git a/src/cascadia/TerminalApp/Resources/nl-NL/Resources.resw b/src/cascadia/TerminalApp/Resources/nl-NL/Resources.resw index 2163fdf68..d8fe3b74e 100644 --- a/src/cascadia/TerminalApp/Resources/nl-NL/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/nl-NL/Resources.resw @@ -215,17 +215,49 @@ Instellen... - - ⚠ Installatie van GitHub Copilot is mislukt. Controleer uw netwerkverbinding en probeer het opnieuw. - {Locked="GitHub Copilot"} + + ⚠ Installatie van {0} is geblokkeerd door een beleid van Windows Pakketbeheer. Als u een beheerd apparaat gebruikt, neemt u contact op met uw IT-beheerder. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Kan {0} niet installeren (foutcode {1}). Raadpleeg het logboek voor details of installeer {0} handmatig. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Kan {0} niet installeren. Raadpleeg het logboek voor details of installeer {0} handmatig. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Het installatieprogramma voor {0} heeft een fout gerapporteerd (code {1}). Raadpleeg het logboek voor details of installeer {0} handmatig. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Windows Pakketbeheer kon niet worden bereikt tijdens het installeren van {0}. Controleer uw internetverbinding (VPN, proxy of firewall blokkeert deze mogelijk) en probeer het opnieuw. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Er is geen compatibel installatieprogramma voor {0} beschikbaar op dit systeem (de versie van het besturingssysteem of de architectuur wordt mogelijk niet ondersteund). Installeer {0} handmatig. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} is niet gevonden in de catalogus van Windows Pakketbeheer. Probeer de winget-bronnen te vernieuwen of installeer {0} handmatig. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Het installeren van {0} duurde langer dan 20 minuten. Intelligent Terminal is gestopt met wachten, maar het installatieprogramma wordt mogelijk nog op de achtergrond uitgevoerd. Controleer Task Manager of probeer het later opnieuw. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Pakketbeheer (winget) is niet geïnstalleerd of niet beschikbaar. Installeer het eerst en probeer het daarna opnieuw. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Installatie van Node.js is mislukt. Controleer uw netwerkverbinding en probeer het opnieuw. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Aan diff --git a/src/cascadia/TerminalApp/Resources/nn-NO/Resources.resw b/src/cascadia/TerminalApp/Resources/nn-NO/Resources.resw index 1600e5731..01221f69a 100644 --- a/src/cascadia/TerminalApp/Resources/nn-NO/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/nn-NO/Resources.resw @@ -221,17 +221,49 @@ In this context, "agent" refers to an AI agent (e.g. Copilot, Claude, Gemini), n Konfigurerer... - - ⚠ Kunne ikkje installere GitHub Copilot. Sjekk nettverkstilkoplinga og prøv igjen. - {Locked="GitHub Copilot"} + + ⚠ Installasjon av {0} vart blokkert av ein Windows Pakkebehandling-policy. Viss du brukar ei administrert eining, kontaktar du IT-administratoren. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Kunne ikkje installere {0} (feilkode {1}). Sjekk loggen for detaljar, eller installer {0} manuelt. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Kunne ikkje installere {0}. Sjekk loggen for detaljar, eller installer {0} manuelt. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Installasjonsprogrammet for {0} rapporterte ein feil (kode {1}). Sjekk loggen for detaljar, eller installer {0} manuelt. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Fekk ikkje kontakt med Windows Pakkebehandling under installasjon av {0}. Sjekk internettilkoplinga (VPN, proxy eller brannmur kan blokkere henne) og prøv igjen. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Det finst ikkje noko kompatibelt installasjonsprogram for {0} på dette systemet (OS-versjonen eller arkitekturen er kanskje ikkje støtta). Installer {0} manuelt. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} vart ikkje funnen i katalogen til Windows Pakkebehandling. Prøv å oppdatere winget-kjeldene, eller installer {0} manuelt. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Installasjon av {0} tok meir enn 20 minutt. Intelligent Terminal slutta å vente, men installasjonsprogrammet kan framleis køyre i bakgrunnen. Sjekk Task Manager, eller prøv igjen seinare. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Pakkebehandling (winget) er ikkje installert eller ikkje tilgjengeleg. Installer han først, og prøv deretter på nytt. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Kunne ikkje installere Node.js. Sjekk nettverkstilkoplinga og prøv igjen. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. diff --git a/src/cascadia/TerminalApp/Resources/or-IN/Resources.resw b/src/cascadia/TerminalApp/Resources/or-IN/Resources.resw index 49572481b..6ba856088 100644 --- a/src/cascadia/TerminalApp/Resources/or-IN/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/or-IN/Resources.resw @@ -221,18 +221,62 @@ ସେଟଅପ୍ ହେଉଛି... - - ⚠ GitHub Copilot ଇନ୍‌ଷ୍ଟଲ୍ କରିବାରେ ବିଫଳ। ଆପଣଙ୍କ ନେଟୱର୍କ ଯାଞ୍ଚ କରନ୍ତୁ ଏବଂ ପୁଣି ଚେଷ୍ଟା କରନ୍ତୁ। - {Locked="GitHub Copilot"} + + ⚠ Windows Package Manager ନୀତି ଦ୍ୱାରା {0} ର ଇନ୍‌ଷ୍ଟଲେସନ୍ ଅବରୋଧ କରାଯାଇଛି। ଆପଣ ଯଦି ପରିଚାଳିତ ଡିଭାଇସ୍‌ରେ ଅଛନ୍ତି, ତେବେ ଆପଣଙ୍କ IT ଆଡମିନ୍‌ଙ୍କୁ ସମ୍ପର୍କ କରନ୍ତୁ। + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy (group policy disabled the operation). + + + ⚠ {0} ଇନ୍‌ଷ୍ଟଲ୍ କରିପାରିଲା ନାହିଁ (ତ୍ରୁଟି କୋଡ୍ {1})। ବିବରଣୀ ପାଇଁ ଲଗ୍ ଦେଖନ୍ତୁ, କିମ୍ବା {0} କୁ ମାନୁଆଲ୍ ଭାବେ ଇନ୍‌ଷ୍ଟଲ୍ କରନ୍ତୁ। + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". Shown for failure causes we don't have a more specific message for. + + + ⚠ {0} ଇନ୍‌ଷ୍ଟଲ୍ କରିପାରିଲା ନାହିଁ। ବିବରଣୀ ପାଇଁ ଲଗ୍ ଦେଖନ୍ତୁ, କିମ୍ବା {0} କୁ ମାନୁଆଲ୍ ଭାବେ ଇନ୍‌ଷ୍ଟଲ୍ କରନ୍ତୁ। + FRE setup error fallback used when no actionable error code is available (e.g. the catalog connect/search failed before an installer ever ran). {0} is the package display name (appears twice). + + + ⚠ {0} ଇନ୍‌ଷ୍ଟଲର୍ ଏକ ତ୍ରୁଟି ରିପୋର୍ଟ୍ କରିଛି (କୋଡ୍ {1})। ବିବରଣୀ ପାଇଁ ଲଗ୍ ଯାଞ୍ଚ କରନ୍ତୁ, କିମ୍ବା {0} କୁ ମାନୁଆଲ୍ ଭାବେ ଇନ୍‌ଷ୍ଟଲ୍ କରନ୍ତୁ। + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). Shown when winget reached the install phase but the installer itself failed. + + + ⚠ {0} ଇନ୍‌ଷ୍ଟଲ୍ କରୁଥିବାବେଳେ Windows Package Manager ସହିତ ସଂଯୋଗ ହୋଇପାରିଲା ନାହିଁ। ଆପଣଙ୍କ ଇଣ୍ଟରନେଟ୍ ସଂଯୋଗ ଯାଞ୍ଚ କରନ୍ତୁ (VPN, proxy, କିମ୍ବା firewall ଏହାକୁ ଅବରୋଧ କରୁଥାଇପାରେ) ଏବଂ ପୁଣି ଚେଷ୍ଟା କରନ୍ତୁ। + {Locked="VPN"} FRE setup error. {0} is the package display name (FreOverlay_PackageDisplayName_Copilot or _Node). Shown when winget couldn't reach its catalog or the package download failed with a network-class HRESULT. + + + ⚠ ଏହି ସିଷ୍ଟମ୍‌ରେ {0} ପାଇଁ କୌଣସି ସୁସଙ୍ଗତ ଇନ୍‌ଷ୍ଟଲର୍ ଉପଲବ୍ଧ ନାହିଁ (OS ସଂସ୍କରଣ କିମ୍ବା ଆର୍କିଟେକ୍ଚର ସମର୍ଥିତ ନ ହୋଇପାରେ)। {0} କୁ ମାନୁଆଲ୍ ଭାବେ ଇନ୍‌ଷ୍ଟଲ୍ କରନ୍ତୁ। + FRE setup error. {0} is the package display name (appears twice). Shown when winget returned NoApplicableInstallers — the manifest exists but no installer entry matches this OS/arch/scope. + + + ⚠ Windows Package Manager କ୍ୟାଟାଲଗ୍‌ରେ {0} ମିଳିଲା ନାହିଁ। winget ସ୍ରୋତଗୁଡ଼ିକୁ ରିଫ୍ରେଶ୍ କରିବାକୁ ଚେଷ୍ଟା କରନ୍ତୁ, କିମ୍ବା {0} କୁ ମାନୁଆଲ୍ ଭାବେ ଇନ୍‌ଷ୍ଟଲ୍ କରନ୍ତୁ। + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). Shown when no manifest with the requested package ID was returned from the catalog search. + + + ⚠ {0} ଇନ୍‌ଷ୍ଟଲ୍ କରିବାକୁ 20 ମିନିଟ୍‌ରୁ ଅଧିକ ସମୟ ଲାଗିଲା। Intelligent Terminal ଅପେକ୍ଷା କରିବା ବନ୍ଦ କଲା, କିନ୍ତୁ ଇନ୍‌ଷ୍ଟଲର୍ ଏପର୍ଯ୍ୟନ୍ତ ପୃଷ୍ଠଭୂମିରେ ଚାଲୁଥାଇପାରେ। Task Manager ଯାଞ୍ଚ କରନ୍ତୁ, କିମ୍ବା ପରେ ପୁଣି ଚେଷ୍ଟା କରନ୍ତୁ। + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. Shown when our 20-minute hard timeout expired before the install completed. + + + ⚠ session hooks ଇନ୍‌ଷ୍ଟଲ୍ କରିବାରେ ବିଫଳ। ସେସନ୍ ପରିଚାଳନା ବନ୍ଦ କରାଯାଇଛି। ଆପଣ ଏହାକୁ ପୁଣି ସକ୍ରିୟ କରି ପୁଣି ଚେଷ୍ଟା କରିପାରିବେ, କିମ୍ବା ଏହା ବିନା ଜାରି ରଖିବାକୁ ସେଭ୍ କରନ୍ତୁ। + {Locked="hooks"} + + + ⚠ ସେଲ୍ ଏକୀକରଣ ଇନ୍‌ଷ୍ଟଲ୍ କରିବାରେ ବିଫଳ। ତ୍ରୁଟି ଚିହ୍ନଟ ବନ୍ଦ କରାଯାଇଛି। ଆପଣ ଏହାକୁ ପୁଣି ସକ୍ରିୟ କରି ପୁଣି ଚେଷ୍ଟା କରିପାରିବେ, କିମ୍ବା ଏହା ବିନା ଜାରି ରଖିବାକୁ ସେଭ୍ କରନ୍ତୁ। + + + ⚠ PowerShell କାର୍ଯ୍ୟକାରୀ ନୀତି ସ୍କ୍ରିପ୍ଟ୍‌କୁ ଅବରୋଧ କରୁଛି। ତ୍ରୁଟି ଚିହ୍ନଟ ବନ୍ଦ କରାଗଲା। + {Locked="PowerShell"} ⚠ Windows Package Manager (winget) ଇନ୍‌ଷ୍ଟଲ୍ ହୋଇନାହିଁ କିମ୍ବା ଉପଲବ୍ଧ ନୁହେଁ। ପ୍ରଥମେ ଏହାକୁ ଇନ୍‌ଷ୍ଟଲ୍ କରନ୍ତୁ, ତାପରେ ପୁଣି ଚେଷ୍ଟା କରନ୍ତୁ। - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Node.js ଇନ୍‌ଷ୍ଟଲ୍ କରିବାରେ ବିଫଳ। ଆପଣଙ୍କ ନେଟୱର୍କ ଯାଞ୍ଚ କରନ୍ତୁ ଏବଂ ପୁଣି ଚେଷ୍ଟା କରନ୍ତୁ। - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + ଚାଲୁ @@ -309,12 +353,7 @@ Intelligent Terminal କୁ ଆପଣଙ୍କ ଶେଲ୍ ଆକ୍ସେସ୍ କରିବାକୁ ଏବଂ ତ୍ରୁଟିଗୁଡ଼ିକୁ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଚିହ୍ନଟ କରିବାକୁ ଅନୁମତି ଦିଅନ୍ତୁ। - - ⚠ ସେଲ୍ ଏକୀକରଣ ଇନ୍‌ଷ୍ଟଲ୍ କରିବାରେ ବିଫଳ। ତ୍ରୁଟି ଚିହ୍ନଟ ବନ୍ଦ କରାଯାଇଛି। ଆପଣ ଏହାକୁ ପୁଣି ସକ୍ରିୟ କରି ପୁଣି ଚେଷ୍ଟା କରିପାରିବେ, କିମ୍ବା ଏହା ବିନା ଜାରି ରଖିବାକୁ ସେଭ୍ କରନ୍ତୁ। - - ⚠ session hooks ଇନ୍‌ଷ୍ଟଲ୍ କରିବାରେ ବିଫଳ। ସେସନ୍ ପରିଚାଳନା ବନ୍ଦ କରାଯାଇଛି। ଆପଣ ଏହାକୁ ପୁଣି ସକ୍ରିୟ କରି ପୁଣି ଚେଷ୍ଟା କରିପାରିବେ, କିମ୍ବା ଏହା ବିନା ଜାରି ରଖିବାକୁ ସେଭ୍ କରନ୍ତୁ। - {Locked="hooks"} - + ଏହାକୁ ମାନୁଆଲ୍ ଭାବରେ କିପରି ଠିକ୍ କରିବେ ତାହା ଶିଖନ୍ତୁ Hyperlink shown below an FRE setup error message. Opens step-by-step manual setup instructions in the browser. @@ -327,8 +366,4 @@ PowerShell କାର୍ଯ୍ୟକାରୀ ନୀତି ସ୍କ୍ରିପ୍ଟ୍‌କୁ ଅବରୋଧ କରୁଛି। Body of an error dialog shown after the user tries to install PowerShell shell integration but their PowerShell execution policy (Restricted or AllSigned) is blocking scripts. A separate "Learn how to fix this manually" hyperlink (FreOverlay_ErrorHelpLink) is rendered on its own line below this sentence. {Locked="PowerShell"} - - ⚠ PowerShell କାର୍ଯ୍ୟକାରୀ ନୀତି ସ୍କ୍ରିପ୍ଟ୍‌କୁ ଅବରୋଧ କରୁଛି। ତ୍ରୁଟି ଚିହ୍ନଟ ବନ୍ଦ କରାଗଲା। - {Locked="PowerShell"} - diff --git a/src/cascadia/TerminalApp/Resources/pa-IN/Resources.resw b/src/cascadia/TerminalApp/Resources/pa-IN/Resources.resw index f5eac6d62..903f58c02 100644 --- a/src/cascadia/TerminalApp/Resources/pa-IN/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/pa-IN/Resources.resw @@ -220,18 +220,62 @@ ਸੈੱਟ ਅੱਪ ਹੋ ਰਿਹਾ ਹੈ... - - ⚠ GitHub Copilot ਇੰਸਟਾਲ ਕਰਨ ਵਿੱਚ ਅਸਫਲ। ਆਪਣਾ ਨੈੱਟਵਰਕ ਜਾਂਚੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ। - {Locked="GitHub Copilot"} + + ⚠ Windows Package Manager ਨੀਤੀ ਦੁਆਰਾ {0} ਦੀ ਇੰਸਟਾਲੇਸ਼ਨ ਬਲੌਕ ਕੀਤੀ ਗਈ। ਜੇਕਰ ਤੁਸੀਂ ਪ੍ਰਬੰਧਿਤ ਡਿਵਾਈਸ 'ਤੇ ਹੋ, ਤਾਂ ਆਪਣੇ IT ਐਡਮਿਨ ਨਾਲ ਸੰਪਰਕ ਕਰੋ। + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy (group policy disabled the operation). + + + ⚠ {0} ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ (ਗਲਤੀ ਕੋਡ {1})। ਵੇਰਵਿਆਂ ਲਈ ਲੌਗ ਵੇਖੋ, ਜਾਂ {0} ਨੂੰ ਮੈਨੂਅਲੀ ਇੰਸਟਾਲ ਕਰੋ। + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". Shown for failure causes we don't have a more specific message for. + + + ⚠ {0} ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ। ਵੇਰਵਿਆਂ ਲਈ ਲੌਗ ਵੇਖੋ, ਜਾਂ {0} ਨੂੰ ਮੈਨੂਅਲੀ ਇੰਸਟਾਲ ਕਰੋ। + FRE setup error fallback used when no actionable error code is available (e.g. the catalog connect/search failed before an installer ever ran). {0} is the package display name (appears twice). + + + ⚠ {0} ਇੰਸਟਾਲਰ ਨੇ ਗਲਤੀ ਰਿਪੋਰਟ ਕੀਤੀ (ਕੋਡ {1})। ਵੇਰਵਿਆਂ ਲਈ ਲੌਗ ਜਾਂਚੋ, ਜਾਂ {0} ਨੂੰ ਮੈਨੂਅਲੀ ਇੰਸਟਾਲ ਕਰੋ। + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). Shown when winget reached the install phase but the installer itself failed. + + + ⚠ {0} ਇੰਸਟਾਲ ਕਰਦੇ ਸਮੇਂ Windows Package Manager ਤੱਕ ਨਹੀਂ ਪਹੁੰਚਿਆ ਜਾ ਸਕਿਆ। ਆਪਣਾ ਇੰਟਰਨੈੱਟ ਕਨੈਕਸ਼ਨ ਜਾਂਚੋ (VPN, proxy ਜਾਂ firewall ਇਸਨੂੰ ਬਲੌਕ ਕਰ ਸਕਦੇ ਹਨ) ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ। + {Locked="VPN"} FRE setup error. {0} is the package display name (FreOverlay_PackageDisplayName_Copilot or _Node). Shown when winget couldn't reach its catalog or the package download failed with a network-class HRESULT. + + + ⚠ ਇਸ ਸਿਸਟਮ 'ਤੇ {0} ਲਈ ਕੋਈ ਅਨੁਕੂਲ ਇੰਸਟਾਲਰ ਉਪਲਬਧ ਨਹੀਂ ਹੈ (OS ਵਰਜਨ ਜਾਂ ਆਰਕੀਟੈਕਚਰ ਸਮਰਥਿਤ ਨਹੀਂ ਹੋ ਸਕਦਾ)। {0} ਨੂੰ ਮੈਨੂਅਲੀ ਇੰਸਟਾਲ ਕਰੋ। + FRE setup error. {0} is the package display name (appears twice). Shown when winget returned NoApplicableInstallers — the manifest exists but no installer entry matches this OS/arch/scope. + + + ⚠ Windows Package Manager ਕੈਟਾਲੌਗ ਵਿੱਚ {0} ਨਹੀਂ ਮਿਲਿਆ। winget ਸਰੋਤਾਂ ਨੂੰ ਰਿਫ੍ਰੈਸ਼ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰੋ, ਜਾਂ {0} ਨੂੰ ਮੈਨੂਅਲੀ ਇੰਸਟਾਲ ਕਰੋ। + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). Shown when no manifest with the requested package ID was returned from the catalog search. + + + ⚠ {0} ਇੰਸਟਾਲ ਕਰਨ ਵਿੱਚ 20 ਮਿੰਟ ਤੋਂ ਵੱਧ ਸਮਾਂ ਲੱਗਿਆ। Intelligent Terminal ਨੇ ਉਡੀਕ ਕਰਨੀ ਬੰਦ ਕਰ ਦਿੱਤੀ, ਪਰ ਇੰਸਟਾਲਰ ਹਾਲੇ ਵੀ ਬੈਕਗ੍ਰਾਊਂਡ ਵਿੱਚ ਚੱਲ ਰਿਹਾ ਹੋ ਸਕਦਾ ਹੈ। Task Manager ਜਾਂਚੋ, ਜਾਂ ਬਾਅਦ ਵਿੱਚ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ। + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. Shown when our 20-minute hard timeout expired before the install completed. + + + ⚠ session hooks ਇੰਸਟਾਲ ਕਰਨ ਵਿੱਚ ਅਸਫਲ। ਸੈਸ਼ਨ ਪ੍ਰਬੰਧਨ ਬੰਦ ਕਰ ਦਿੱਤਾ ਗਿਆ ਹੈ। ਤੁਸੀਂ ਇਸਨੂੰ ਦੁਬਾਰਾ ਚਾਲੂ ਕਰ ਸਕਦੇ ਹੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰ ਸਕਦੇ ਹੋ, ਜਾਂ ਇਸ ਤੋਂ ਬਿਨਾਂ ਜਾਰੀ ਰੱਖਣ ਲਈ ਸੇਵ ਕਰੋ। + {Locked="hooks"} + + + ⚠ ਸ਼ੈੱਲ ਏਕੀਕਰਣ ਇੰਸਟਾਲ ਕਰਨ ਵਿੱਚ ਅਸਫਲ। ਗਲਤੀ ਖੋਜ ਬੰਦ ਕਰ ਦਿੱਤੀ ਗਈ ਹੈ। ਤੁਸੀਂ ਇਸਨੂੰ ਦੁਬਾਰਾ ਚਾਲੂ ਕਰ ਸਕਦੇ ਹੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰ ਸਕਦੇ ਹੋ, ਜਾਂ ਇਸ ਤੋਂ ਬਿਨਾਂ ਜਾਰੀ ਰੱਖਣ ਲਈ ਸੇਵ ਕਰੋ। + + + ⚠ PowerShell ਐਗਜ਼ੀਕਿਊਸ਼ਨ ਨੀਤੀ ਸਕ੍ਰਿਪਟਾਂ ਨੂੰ ਬਲੌਕ ਕਰ ਰਹੀ ਹੈ। ਗਲਤੀ ਖੋਜ ਬੰਦ ਕਰ ਦਿੱਤੀ। + {Locked="PowerShell"} ⚠ Windows Package Manager (winget) ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ ਜਾਂ ਉਪਲਬਧ ਨਹੀਂ ਹੈ। ਪਹਿਲਾਂ ਇਸਨੂੰ ਇੰਸਟਾਲ ਕਰੋ, ਫਿਰ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ। - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Node.js ਇੰਸਟਾਲ ਕਰਨ ਵਿੱਚ ਅਸਫਲ। ਆਪਣਾ ਨੈੱਟਵਰਕ ਜਾਂਚੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ। - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + ਚਾਲੂ @@ -308,12 +352,7 @@ Intelligent Terminal ਨੂੰ ਤੁਹਾਡੇ ਸ਼ੈੱਲ ਤੱਕ ਪਹੁੰਚ ਕਰਨ ਅਤੇ ਗਲਤੀਆਂ ਨੂੰ ਆਪਣੇ ਆਪ ਖੋਜਣ ਦੀ ਇਜਾਜ਼ਤ ਦਿਓ। - - ⚠ ਸ਼ੈੱਲ ਏਕੀਕਰਣ ਇੰਸਟਾਲ ਕਰਨ ਵਿੱਚ ਅਸਫਲ। ਗਲਤੀ ਖੋਜ ਬੰਦ ਕਰ ਦਿੱਤੀ ਗਈ ਹੈ। ਤੁਸੀਂ ਇਸਨੂੰ ਦੁਬਾਰਾ ਚਾਲੂ ਕਰ ਸਕਦੇ ਹੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰ ਸਕਦੇ ਹੋ, ਜਾਂ ਇਸ ਤੋਂ ਬਿਨਾਂ ਜਾਰੀ ਰੱਖਣ ਲਈ ਸੇਵ ਕਰੋ। - - ⚠ session hooks ਇੰਸਟਾਲ ਕਰਨ ਵਿੱਚ ਅਸਫਲ। ਸੈਸ਼ਨ ਪ੍ਰਬੰਧਨ ਬੰਦ ਕਰ ਦਿੱਤਾ ਗਿਆ ਹੈ। ਤੁਸੀਂ ਇਸਨੂੰ ਦੁਬਾਰਾ ਚਾਲੂ ਕਰ ਸਕਦੇ ਹੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰ ਸਕਦੇ ਹੋ, ਜਾਂ ਇਸ ਤੋਂ ਬਿਨਾਂ ਜਾਰੀ ਰੱਖਣ ਲਈ ਸੇਵ ਕਰੋ। - {Locked="hooks"} - + ਇਸ ਨੂੰ ਹੱਥੀਂ ਠੀਕ ਕਰਨ ਦਾ ਤਰੀਕਾ ਜਾਣੋ Hyperlink shown below an FRE setup error message. Opens step-by-step manual setup instructions in the browser. @@ -326,8 +365,4 @@ PowerShell ਐਗਜ਼ੀਕਿਊਸ਼ਨ ਨੀਤੀ ਸਕ੍ਰਿਪਟਾਂ ਨੂੰ ਬਲੌਕ ਕਰ ਰਹੀ ਹੈ। Body of an error dialog shown after the user tries to install PowerShell shell integration but their PowerShell execution policy (Restricted or AllSigned) is blocking scripts. A separate "Learn how to fix this manually" hyperlink (FreOverlay_ErrorHelpLink) is rendered on its own line below this sentence. {Locked="PowerShell"} - - ⚠ PowerShell ਐਗਜ਼ੀਕਿਊਸ਼ਨ ਨੀਤੀ ਸਕ੍ਰਿਪਟਾਂ ਨੂੰ ਬਲੌਕ ਕਰ ਰਹੀ ਹੈ। ਗਲਤੀ ਖੋਜ ਬੰਦ ਕਰ ਦਿੱਤੀ। - {Locked="PowerShell"} - diff --git a/src/cascadia/TerminalApp/Resources/pl-PL/Resources.resw b/src/cascadia/TerminalApp/Resources/pl-PL/Resources.resw index c0977d7eb..fb8d9741c 100644 --- a/src/cascadia/TerminalApp/Resources/pl-PL/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/pl-PL/Resources.resw @@ -220,18 +220,51 @@ Konfigurowanie... - - ⚠ Nie udało się zainstalować GitHub Copilot. Sprawdź połączenie sieciowe i spróbuj ponownie. - {Locked="GitHub Copilot"} + + ⚠ Instalacja {0} została zablokowana przez zasady Menedżera pakietów systemu Windows. Jeśli używasz urządzenia zarządzanego, skontaktuj się z administratorem IT. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Nie udało się zainstalować {0} (kod błędu {1}). Szczegóły znajdziesz w dzienniku albo zainstaluj {0} ręcznie. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Nie udało się zainstalować {0}. Szczegóły znajdziesz w dzienniku albo zainstaluj {0} ręcznie. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Instalator {0} zgłosił błąd (kod {1}). Szczegóły znajdziesz w dzienniku albo zainstaluj {0} ręcznie. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Nie udało się połączyć z Menedżerem pakietów systemu Windows podczas instalowania {0}. Sprawdź połączenie internetowe (VPN, serwer proxy lub zapora mogą je blokować) i spróbuj ponownie. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Na tym systemie nie jest dostępny zgodny instalator dla {0} (wersja systemu operacyjnego lub architektura może nie być obsługiwana). Zainstaluj {0} ręcznie. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Nie znaleziono {0} w katalogu Menedżera pakietów systemu Windows. Spróbuj odświeżyć źródła winget albo zainstaluj {0} ręcznie. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Instalowanie {0} trwało dłużej niż 20 minut. Intelligent Terminal przestał czekać, ale instalator może nadal działać w tle. Sprawdź Task Manager albo spróbuj ponownie później. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Menedżer pakietów systemu Windows (winget) nie jest zainstalowany lub nie jest dostępny. Najpierw go zainstaluj, a następnie spróbuj ponownie. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Nie udało się zainstalować Node.js. Sprawdź połączenie sieciowe i spróbuj ponownie. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + Wł. diff --git a/src/cascadia/TerminalApp/Resources/pt-BR/Resources.resw b/src/cascadia/TerminalApp/Resources/pt-BR/Resources.resw index f4e2bb2fc..2a19190a5 100644 --- a/src/cascadia/TerminalApp/Resources/pt-BR/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/pt-BR/Resources.resw @@ -1099,17 +1099,49 @@ Configurando... - - ⚠ Falha ao instalar o GitHub Copilot. Verifique sua conexão de rede e tente novamente. - {Locked="GitHub Copilot"} + + ⚠ A instalação de {0} foi bloqueada por uma política do Gerenciador de Pacotes do Windows. Se você estiver em um dispositivo gerenciado, entre em contato com seu administrador de TI. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Não foi possível instalar {0} (código de erro {1}). Confira o log para obter detalhes ou instale {0} manualmente. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Não foi possível instalar {0}. Confira o log para obter detalhes ou instale {0} manualmente. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ O instalador de {0} relatou um erro (código {1}). Confira o log para obter detalhes ou instale {0} manualmente. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Não foi possível acessar o Gerenciador de Pacotes do Windows ao instalar {0}. Verifique sua conexão com a Internet (VPN, proxy ou firewall podem estar bloqueando) e tente novamente. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Nenhum instalador compatível para {0} está disponível neste sistema (talvez a versão do sistema operacional ou a arquitetura não tenha suporte). Instale {0} manualmente. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} não foi encontrado no catálogo do Gerenciador de Pacotes do Windows. Tente atualizar as fontes do winget ou instale {0} manualmente. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ A instalação de {0} levou mais de 20 minutos. Intelligent Terminal parou de aguardar, mas o instalador ainda pode estar em execução em segundo plano. Verifique Task Manager ou tente novamente mais tarde. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ O Gerenciador de Pacotes do Windows (winget) não está instalado ou não está disponível. Instale-o primeiro e tente novamente. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Falha ao instalar o Node.js. Verifique sua conexão de rede e tente novamente. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. ⚠ Falha ao instalar os hooks de sessão. O gerenciamento de sessões foi desativado. Você pode reativá-lo e tentar novamente, ou salvar para continuar sem ele. diff --git a/src/cascadia/TerminalApp/Resources/pt-PT/Resources.resw b/src/cascadia/TerminalApp/Resources/pt-PT/Resources.resw index 81a57e10c..f39f9aa2c 100644 --- a/src/cascadia/TerminalApp/Resources/pt-PT/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/pt-PT/Resources.resw @@ -215,17 +215,49 @@ A configurar... - - ⚠ Falha ao instalar o GitHub Copilot. Verifique a sua ligação de rede e tente novamente. - {Locked="GitHub Copilot"} + + ⚠ A instalação de {0} foi bloqueada por uma política do Gestor de Pacotes do Windows. Se estiver num dispositivo gerido, contacte o seu administrador de TI. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Não foi possível instalar {0} (código de erro {1}). Consulte o registo para obter detalhes, ou instale {0} manualmente. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Não foi possível instalar {0}. Consulte o registo para obter detalhes, ou instale {0} manualmente. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ O instalador de {0} comunicou um erro (código {1}). Consulte o registo para obter detalhes, ou instale {0} manualmente. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Não foi possível aceder ao Gestor de Pacotes do Windows ao instalar {0}. Verifique a sua ligação à Internet (VPN, proxy ou firewall podem estar a bloquear) e tente novamente. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Nenhum instalador compatível para {0} está disponível neste sistema (a versão do sistema operativo ou a arquitetura poderá não ser suportada). Instale {0} manualmente. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} não foi encontrado no catálogo do Gestor de Pacotes do Windows. Tente atualizar as origens do winget, ou instale {0} manualmente. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ A instalação de {0} demorou mais de 20 minutos. Intelligent Terminal deixou de aguardar, mas o instalador poderá ainda estar em execução em segundo plano. Consulte Task Manager, ou tente novamente mais tarde. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ O Gestor de Pacotes do Windows (winget) não está instalado ou não está disponível. Instale-o primeiro e tente novamente. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Falha ao instalar o Node.js. Verifique a sua ligação de rede e tente novamente. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Ativado diff --git a/src/cascadia/TerminalApp/Resources/qps-ploc/Resources.resw b/src/cascadia/TerminalApp/Resources/qps-ploc/Resources.resw index ca5769ab9..156360933 100644 --- a/src/cascadia/TerminalApp/Resources/qps-ploc/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/qps-ploc/Resources.resw @@ -1068,17 +1068,49 @@ In this context, "agent" refers to an AI agent (e.g. Copilot, Claude, Gemini), n Setting up... - - ⚠ Failed to install GitHub Copilot. Check your network and try again. - {Locked="GitHub Copilot"} + + ⚠ Installation of {0} was blocked by a Windows Package Manager policy. If you're on a managed device, contact your IT admin. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Couldn't install {0} (error code {1}). See the log for details, or install {0} manually. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Couldn't install {0}. See the log for details, or install {0} manually. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ The {0} installer reported an error (code {1}). Check the log for details, or install {0} manually. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Couldn't reach the Windows Package Manager while installing {0}. Check your internet connection (VPN, proxy, or firewall may be blocking it) and try again. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ No compatible installer for {0} is available on this system (OS version or architecture may not be supported). Install {0} manually. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} wasn't found in the Windows Package Manager catalog. Try refreshing winget sources, or install {0} manually. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Installing {0} took longer than 20 minutes. Intelligent Terminal stopped waiting, but the installer may still be running in the background. Check Task Manager, or try again later. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) is not installed or not available. Install it first, then try again. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Failed to install Node.js. Check your network and try again. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Node.js prerequisite. ⚠ Failed to install session hooks. Session management has been turned off. You can re-enable it and try again, or save to continue without it. diff --git a/src/cascadia/TerminalApp/Resources/qps-ploca/Resources.resw b/src/cascadia/TerminalApp/Resources/qps-ploca/Resources.resw index ca5769ab9..156360933 100644 --- a/src/cascadia/TerminalApp/Resources/qps-ploca/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/qps-ploca/Resources.resw @@ -1068,17 +1068,49 @@ In this context, "agent" refers to an AI agent (e.g. Copilot, Claude, Gemini), n Setting up... - - ⚠ Failed to install GitHub Copilot. Check your network and try again. - {Locked="GitHub Copilot"} + + ⚠ Installation of {0} was blocked by a Windows Package Manager policy. If you're on a managed device, contact your IT admin. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Couldn't install {0} (error code {1}). See the log for details, or install {0} manually. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Couldn't install {0}. See the log for details, or install {0} manually. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ The {0} installer reported an error (code {1}). Check the log for details, or install {0} manually. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Couldn't reach the Windows Package Manager while installing {0}. Check your internet connection (VPN, proxy, or firewall may be blocking it) and try again. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ No compatible installer for {0} is available on this system (OS version or architecture may not be supported). Install {0} manually. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} wasn't found in the Windows Package Manager catalog. Try refreshing winget sources, or install {0} manually. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Installing {0} took longer than 20 minutes. Intelligent Terminal stopped waiting, but the installer may still be running in the background. Check Task Manager, or try again later. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) is not installed or not available. Install it first, then try again. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Failed to install Node.js. Check your network and try again. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Node.js prerequisite. ⚠ Failed to install session hooks. Session management has been turned off. You can re-enable it and try again, or save to continue without it. diff --git a/src/cascadia/TerminalApp/Resources/qps-plocm/Resources.resw b/src/cascadia/TerminalApp/Resources/qps-plocm/Resources.resw index ca5769ab9..156360933 100644 --- a/src/cascadia/TerminalApp/Resources/qps-plocm/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/qps-plocm/Resources.resw @@ -1068,17 +1068,49 @@ In this context, "agent" refers to an AI agent (e.g. Copilot, Claude, Gemini), n Setting up... - - ⚠ Failed to install GitHub Copilot. Check your network and try again. - {Locked="GitHub Copilot"} + + ⚠ Installation of {0} was blocked by a Windows Package Manager policy. If you're on a managed device, contact your IT admin. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Couldn't install {0} (error code {1}). See the log for details, or install {0} manually. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Couldn't install {0}. See the log for details, or install {0} manually. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ The {0} installer reported an error (code {1}). Check the log for details, or install {0} manually. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Couldn't reach the Windows Package Manager while installing {0}. Check your internet connection (VPN, proxy, or firewall may be blocking it) and try again. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ No compatible installer for {0} is available on this system (OS version or architecture may not be supported). Install {0} manually. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} wasn't found in the Windows Package Manager catalog. Try refreshing winget sources, or install {0} manually. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Installing {0} took longer than 20 minutes. Intelligent Terminal stopped waiting, but the installer may still be running in the background. Check Task Manager, or try again later. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) is not installed or not available. Install it first, then try again. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Failed to install Node.js. Check your network and try again. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Node.js prerequisite. ⚠ Failed to install session hooks. Session management has been turned off. You can re-enable it and try again, or save to continue without it. diff --git a/src/cascadia/TerminalApp/Resources/quz-PE/Resources.resw b/src/cascadia/TerminalApp/Resources/quz-PE/Resources.resw index 648ecd2ba..19a54d940 100644 --- a/src/cascadia/TerminalApp/Resources/quz-PE/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/quz-PE/Resources.resw @@ -107,17 +107,49 @@ Churachkan... - - ⚠ GitHub Copilot churay mana allinchu karqa. Ñit'i llika t'inkiykita qhaway chaymanta watiqmanta ruwarinapaq. - {Locked="GitHub Copilot"} + + ⚠ {0} churay Windows Package Manager kamachiywan hark'asqa karqa. Kamachisqa dispositivopi kaspa, IT admin-niykiman rimay. + FRE setup error. {0} is the package display name. + + + ⚠ {0} mana churayta atirqanchu (pantay código {1}). Aswan sut'inkunapaq log nisqata qhaway, utaq {0} makillawan churay. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string. + + + ⚠ {0} mana churayta atirqanchu. Aswan sut'inkunapaq log nisqata qhaway, utaq {0} makillawan churay. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0} installer pantayta willarqa (código {1}). Aswan sut'inkunapaq log nisqata qhaway, utaq {0} makillawan churay. + FRE setup error. {0} is the package display name (appears twice). {1} is decimal error code. + + + ⚠ {0} churachkaspa Windows Package Manager-man mana chayakuyta atirqanchu. Internet tinkisqaykita qhaway (VPN, proxy utaq firewall hark'achkanman), chaymanta watiqmanta ruwarinapaq. + {Locked="VPN"} FRE setup error. {0} is the package display name. + + + ⚠ Kay sistemapi {0}paq tinkuq installer mana kachkanchu (OS version utaq architecture yanapasqa mana kanmanchu). {0} makillawan churay. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} Windows Package Manager catalog nisqapi mana tarikusqachu. Ñawpaqta winget sources nisqakunata musuqyachiy, utaq {0} makillawan churay. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} churay 20 minutomanta aswan unayta apakurqa. Intelligent Terminal suyayta saqirqa, ichaqa installerqa qhipa llamk'aypi hina purichkanman. Task Manager qhaway, utaq qhipaman watiqmanta ruwariy. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) mana churasqachu icha mana tarikuqchu. Ñawpaqta churaruy, chaymanta watiqmanta ruwarinapaq. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Node.js churay mana allinchu karqa. Ñit'i llika t'inkiykita qhaway chaymanta watiqmanta ruwarinapaq. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Kachkan diff --git a/src/cascadia/TerminalApp/Resources/ro-RO/Resources.resw b/src/cascadia/TerminalApp/Resources/ro-RO/Resources.resw index 40bcf23de..d679201f2 100644 --- a/src/cascadia/TerminalApp/Resources/ro-RO/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/ro-RO/Resources.resw @@ -220,17 +220,49 @@ Se configurează... - - ⚠ Instalarea GitHub Copilot a eșuat. Verificați conexiunea la rețea și încercați din nou. - {Locked="GitHub Copilot"} + + ⚠ Instalarea {0} a fost blocată de o politică a Managerului de pachete Windows. Dacă sunteți pe un dispozitiv gestionat, contactați administratorul IT. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Nu s-a putut instala {0} (cod de eroare {1}). Consultați jurnalul pentru detalii sau instalați {0} manual. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Nu s-a putut instala {0}. Consultați jurnalul pentru detalii sau instalați {0} manual. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Programul de instalare pentru {0} a raportat o eroare (cod {1}). Consultați jurnalul pentru detalii sau instalați {0} manual. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Nu s-a putut contacta Managerul de pachete Windows în timpul instalării {0}. Verificați conexiunea la internet (VPN, proxy sau firewall o pot bloca) și încercați din nou. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Nu este disponibil niciun program de instalare compatibil pentru {0} pe acest sistem (este posibil ca versiunea sistemului de operare sau arhitectura să nu fie acceptată). Instalați {0} manual. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} nu a fost găsit în catalogul Managerului de pachete Windows. Încercați să reîmprospătați sursele winget sau instalați {0} manual. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Instalarea {0} a durat mai mult de 20 de minute. Intelligent Terminal a încetat să mai aștepte, dar programul de instalare poate rula încă în fundal. Verificați Task Manager sau încercați din nou mai târziu. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Managerul de pachete Windows (winget) nu este instalat sau nu este disponibil. Instalați-l mai întâi, apoi încercați din nou. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Instalarea Node.js a eșuat. Verificați conexiunea la rețea și încercați din nou. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Activat diff --git a/src/cascadia/TerminalApp/Resources/ru-RU/Resources.resw b/src/cascadia/TerminalApp/Resources/ru-RU/Resources.resw index 5a85a3b54..578d0de78 100644 --- a/src/cascadia/TerminalApp/Resources/ru-RU/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/ru-RU/Resources.resw @@ -1105,18 +1105,51 @@ In this context, "agent" refers to an AI agent (e.g. Copilot, Claude, Gemini), n Настройка... - - ⚠ Не удалось установить GitHub Copilot. Проверьте подключение к сети и попробуйте снова. - {Locked="GitHub Copilot"} + + ⚠ Установка {0} заблокирована политикой Диспетчера пакетов Windows. Если вы используете управляемое устройство, обратитесь к ИТ-администратору. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Не удалось установить {0} (код ошибки {1}). Подробности см. в журнале или установите {0} вручную. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Не удалось установить {0}. Подробности см. в журнале или установите {0} вручную. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Установщик {0} сообщил об ошибке (код {1}). Подробности см. в журнале или установите {0} вручную. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Не удалось связаться с Диспетчером пакетов Windows при установке {0}. Проверьте подключение к Интернету (VPN, прокси-сервер или брандмауэр могут его блокировать) и повторите попытку. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ В этой системе нет совместимого установщика для {0} (версия ОС или архитектура могут не поддерживаться). Установите {0} вручную. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} не найден в каталоге Диспетчера пакетов Windows. Попробуйте обновить источники winget или установите {0} вручную. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Установка {0} заняла более 20 минут. Intelligent Terminal перестал ожидать, но установщик может по-прежнему выполняться в фоновом режиме. Проверьте Task Manager или повторите попытку позже. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Диспетчер пакетов Windows (winget) не установлен или недоступен. Сначала установите его, а затем повторите попытку. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Не удалось установить Node.js. Проверьте подключение к сети и попробуйте снова. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + ⚠ Не удалось установить session hooks. Управление сеансами отключено. Вы можете повторно включить его и попробовать снова или сохранить, чтобы продолжить без него. {Locked="hooks"} diff --git a/src/cascadia/TerminalApp/Resources/sk-SK/Resources.resw b/src/cascadia/TerminalApp/Resources/sk-SK/Resources.resw index 8ac878863..4e494810e 100644 --- a/src/cascadia/TerminalApp/Resources/sk-SK/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/sk-SK/Resources.resw @@ -220,18 +220,51 @@ Nastavovanie... - - ⚠ Nepodarilo sa nainštalovať GitHub Copilot. Skontrolujte sieťové pripojenie a skúste to znova. - {Locked="GitHub Copilot"} + + ⚠ Inštalácia {0} bola zablokovaná politikou Správcu balíkov Windows. Ak používate spravované zariadenie, obráťte sa na správcu IT. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Nepodarilo sa nainštalovať {0} (kód chyby {1}). Podrobnosti nájdete v denníku, alebo nainštalujte {0} manuálne. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Nepodarilo sa nainštalovať {0}. Podrobnosti nájdete v denníku, alebo nainštalujte {0} manuálne. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Inštalátor {0} nahlásil chybu (kód {1}). Podrobnosti nájdete v denníku, alebo nainštalujte {0} manuálne. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Počas inštalácie {0} sa nepodarilo spojiť so Správcom balíkov Windows. Skontrolujte internetové pripojenie (VPN, proxy server alebo brána firewall ho môžu blokovať) a skúste to znova. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ V tomto systéme nie je k dispozícii žiadny kompatibilný inštalátor pre {0} (verzia operačného systému alebo architektúra nemusí byť podporovaná). Nainštalujte {0} manuálne. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} sa nenašiel v katalógu Správcu balíkov Windows. Skúste obnoviť zdroje winget alebo nainštalujte {0} manuálne. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Inštalácia {0} trvala dlhšie ako 20 minút. Intelligent Terminal prestal čakať, ale inštalátor môže stále bežať na pozadí. Skontrolujte Task Manager alebo to skúste znova neskôr. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Správca balíkov Windows (winget) nie je nainštalovaný alebo nie je k dispozícii. Najskôr ho nainštalujte a potom to skúste znova. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Nepodarilo sa nainštalovať Node.js. Skontrolujte sieťové pripojenie a skúste to znova. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + Zapnuté diff --git a/src/cascadia/TerminalApp/Resources/sl-SI/Resources.resw b/src/cascadia/TerminalApp/Resources/sl-SI/Resources.resw index 3e3a47908..512b15786 100644 --- a/src/cascadia/TerminalApp/Resources/sl-SI/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/sl-SI/Resources.resw @@ -220,18 +220,51 @@ Nastavljanje... - - ⚠ Namestitev GitHub Copilot ni uspela. Preverite omrežno povezavo in poskusite znova. - {Locked="GitHub Copilot"} + + ⚠ Namestitev {0} je blokiral pravilnik Upravitelja paketov za Windows. Če uporabljate upravljano napravo, se obrnite na skrbnika za IT. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Ni bilo mogoče namestiti {0} (koda napake {1}). Za podrobnosti preverite dnevnik ali namestite {0} ročno. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Ni bilo mogoče namestiti {0}. Za podrobnosti preverite dnevnik ali namestite {0} ročno. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Namestitveni program za {0} je sporočil napako (koda {1}). Za podrobnosti preverite dnevnik ali namestite {0} ročno. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Med nameščanjem {0} ni bilo mogoče vzpostaviti stika z Upraviteljem paketov za Windows. Preverite internetno povezavo (VPN, posredniški strežnik ali požarni zid jo morda blokira) in poskusite znova. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ V tem sistemu ni na voljo združljivega namestitvenega programa za {0} (različica OS ali arhitektura morda ni podprta). Namestite {0} ročno. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} ni bilo mogoče najti v katalogu Upravitelja paketov za Windows. Poskusite osvežiti vire winget ali namestite {0} ročno. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Namestitev {0} je trajala dlje kot 20 minut. Intelligent Terminal je nehal čakati, vendar se namestitveni program morda še vedno izvaja v ozadju. Preverite Task Manager ali poskusite znova pozneje. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Upravitelj paketov za Windows (winget) ni nameščen ali ni na voljo. Najprej ga namestite, nato poskusite znova. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Namestitev Node.js ni uspela. Preverite omrežno povezavo in poskusite znova. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + Vklopljeno diff --git a/src/cascadia/TerminalApp/Resources/sq-AL/Resources.resw b/src/cascadia/TerminalApp/Resources/sq-AL/Resources.resw index c7f496fba..4a16ee50a 100644 --- a/src/cascadia/TerminalApp/Resources/sq-AL/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/sq-AL/Resources.resw @@ -220,18 +220,51 @@ Po konfigurohet... - - ⚠ Instalimi i GitHub Copilot dështoi. Kontrolloni lidhjen e rrjetit dhe provoni përsëri. - {Locked="GitHub Copilot"} + + ⚠ Instalimi i {0} u bllokua nga një politikë e Menaxherit të paketave të Windows. Nëse jeni në një pajisje të menaxhuar, kontaktoni administratorin tuaj të IT-së. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Nuk mund të instalohej {0} (kodi i gabimit {1}). Shikoni regjistrin për hollësi ose instaloni {0} manualisht. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Nuk mund të instalohej {0}. Shikoni regjistrin për hollësi ose instaloni {0} manualisht. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Instaluesi i {0} raportoi një gabim (kodi {1}). Shikoni regjistrin për hollësi ose instaloni {0} manualisht. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Nuk u arrit të kontaktohej Menaxheri i paketave të Windows gjatë instalimit të {0}. Kontrolloni lidhjen e internetit (VPN, proxy ose muri mbrojtës mund ta bllokojë) dhe provoni përsëri. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Nuk disponohet asnjë instalues i përputhshëm për {0} në këtë sistem (versioni i OS ose arkitektura mund të mos mbështeten). Instaloni {0} manualisht. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} nuk u gjet në katalogun e Menaxherit të paketave të Windows. Provoni të rifreskoni burimet e winget ose instaloni {0} manualisht. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Instalimi i {0} zgjati më shumë se 20 minuta. Intelligent Terminal ndaloi së prituri, por instaluesi mund të jetë ende duke u ekzekutuar në sfond. Kontrolloni Task Manager ose provoni përsëri më vonë. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Menaxheri i paketave të Windows (winget) nuk është i instaluar ose nuk është i disponueshëm. Instalojeni fillimisht, pastaj provoni përsëri. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Instalimi i Node.js dështoi. Kontrolloni lidhjen e rrjetit dhe provoni përsëri. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + Aktiv diff --git a/src/cascadia/TerminalApp/Resources/sr-Cyrl-BA/Resources.resw b/src/cascadia/TerminalApp/Resources/sr-Cyrl-BA/Resources.resw index c83d2fd64..c8e1392eb 100644 --- a/src/cascadia/TerminalApp/Resources/sr-Cyrl-BA/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/sr-Cyrl-BA/Resources.resw @@ -107,18 +107,51 @@ Подешавање... - - ⚠ Инсталација GitHub Copilot није успјела. Провјерите мрежну везу и покушајте поново. - {Locked="GitHub Copilot"} + + ⚠ Инсталацију {0} блокирала је политика Windows Package Manager-а. Ако користите управљани уређај, обратите се IT администратору. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Инсталација {0} није успјела (код грешке {1}). Детаље потражите у евиденцији или ручно инсталирајте {0}. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Инсталација {0} није успјела. Детаље потражите у евиденцији или ручно инсталирајте {0}. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Инсталатор за {0} је пријавио грешку (код {1}). Детаље потражите у евиденцији или ручно инсталирајте {0}. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Није било могуће приступити Windows Package Manager-у током инсталације {0}. Провјерите интернетску везу (VPN, прокси или заштитни зид је можда блокирају) и покушајте поново. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ На овом систему није доступан компатибилан инсталатор за {0} (верзија ОС-а или архитектура можда нису подржани). Ручно инсталирајте {0}. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} није пронађен у каталогу Windows Package Manager-а. Покушајте освјежити изворе winget или ручно инсталирајте {0}. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Инсталација {0} трајала је дуже од 20 минута. Intelligent Terminal је престао да чека, али инсталатор можда још ради у позадини. Провјерите Task Manager или покушајте поново касније. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) није инсталиран или није доступан. Прво га инсталирајте, а затим покушајте поново. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Инсталација Node.js није успјела. Провјерите мрежну везу и покушајте поново. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + Укљ diff --git a/src/cascadia/TerminalApp/Resources/sr-Cyrl-RS/Resources.resw b/src/cascadia/TerminalApp/Resources/sr-Cyrl-RS/Resources.resw index d4ab8f75b..7e6971128 100644 --- a/src/cascadia/TerminalApp/Resources/sr-Cyrl-RS/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/sr-Cyrl-RS/Resources.resw @@ -1101,18 +1101,51 @@ In this context, "agent" refers to an AI agent (e.g. Copilot, Claude, Gemini), n Подешавање... - - ⚠ Инсталација GitHub Copilot није успела. Проверите мрежну везу и покушајте поново. - {Locked="GitHub Copilot"} + + ⚠ Инсталацију {0} блокирала је политика Windows Package Manager-а. Ако користите управљани уређај, обратите се IT администратору. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Инсталација {0} није успела (код грешке {1}). Детаље потражите у евиденцији или ручно инсталирајте {0}. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Инсталација {0} није успела. Детаље потражите у евиденцији или ручно инсталирајте {0}. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Инсталатор за {0} је пријавио грешку (код {1}). Детаље потражите у евиденцији или ручно инсталирајте {0}. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Није било могуће приступити Windows Package Manager-у током инсталације {0}. Проверите интернетску везу (VPN, прокси или заштитни зид је можда блокирају) и покушајте поново. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ На овом систему није доступан компатибилан инсталатор за {0} (верзија ОС-а или архитектура можда нису подржани). Ручно инсталирајте {0}. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} није пронађен у каталогу Windows Package Manager-а. Покушајте да освежите изворе winget или ручно инсталирајте {0}. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Инсталација {0} трајала је дуже од 20 минута. Intelligent Terminal је престао да чека, али инсталатор можда још ради у позадини. Проверите Task Manager или покушајте поново касније. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) није инсталиран или није доступан. Прво га инсталирајте, а затим покушајте поново. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Инсталација Node.js није успела. Проверите мрежну везу и покушајте поново. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + ⚠ Инсталација session hooks није успела. Управљање сесијама је искључено. Можете га поново укључити и покушати поново, или сачувати да наставите без њега. {Locked="hooks"} diff --git a/src/cascadia/TerminalApp/Resources/sr-Latn-RS/Resources.resw b/src/cascadia/TerminalApp/Resources/sr-Latn-RS/Resources.resw index ad3771352..d669576de 100644 --- a/src/cascadia/TerminalApp/Resources/sr-Latn-RS/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/sr-Latn-RS/Resources.resw @@ -107,18 +107,51 @@ Podešavanje... - - ⚠ Instalacija GitHub Copilot nije uspela. Proverite mrežnu vezu i pokušajte ponovo. - {Locked="GitHub Copilot"} + + ⚠ Instalaciju {0} blokirala je politika Windows Package Manager-a. Ako koristite upravljani uređaj, obratite se IT administratoru. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Instalacija {0} nije uspela (kod greške {1}). Detalje potražite u evidenciji ili ručno instalirajte {0}. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Instalacija {0} nije uspela. Detalje potražite u evidenciji ili ručno instalirajte {0}. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Instalator za {0} je prijavio grešku (kod {1}). Detalje potražite u evidenciji ili ručno instalirajte {0}. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Nije bilo moguće pristupiti Windows Package Manager-u tokom instalacije {0}. Proverite internet vezu (VPN, proksi ili zaštitni zid je možda blokiraju) i pokušajte ponovo. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Na ovom sistemu nije dostupan kompatibilan instalator za {0} (verzija OS-a ili arhitektura možda nisu podržani). Ručno instalirajte {0}. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} nije pronađen u katalogu Windows Package Manager-a. Pokušajte da osvežite izvore winget ili ručno instalirajte {0}. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Instalacija {0} trajala je duže od 20 minuta. Intelligent Terminal je prestao da čeka, ali instalator možda još radi u pozadini. Proverite Task Manager ili pokušajte ponovo kasnije. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) nije instaliran ili nije dostupan. Prvo ga instalirajte, a zatim pokušajte ponovo. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Instalacija Node.js nije uspela. Proverite mrežnu vezu i pokušajte ponovo. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + Uklj diff --git a/src/cascadia/TerminalApp/Resources/sv-SE/Resources.resw b/src/cascadia/TerminalApp/Resources/sv-SE/Resources.resw index 842ce897a..347720d4f 100644 --- a/src/cascadia/TerminalApp/Resources/sv-SE/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/sv-SE/Resources.resw @@ -221,17 +221,49 @@ In this context, "agent" refers to an AI agent (e.g. Copilot, Claude, Gemini), n Konfigurerar... - - ⚠ Det gick inte att installera GitHub Copilot. Kontrollera din nätverksanslutning och försök igen. - {Locked="GitHub Copilot"} + + ⚠ Installationen av {0} blockerades av en princip för Windows Paketshanterare. Om du använder en hanterad enhet kontaktar du IT-administratören. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Det gick inte att installera {0} (felkod {1}). Se loggen för information eller installera {0} manuellt. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Det gick inte att installera {0}. Se loggen för information eller installera {0} manuellt. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Installationsprogrammet för {0} rapporterade ett fel (kod {1}). Se loggen för information eller installera {0} manuellt. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Det gick inte att nå Windows Paketshanterare när {0} installerades. Kontrollera din internetanslutning (VPN, proxy eller brandvägg kan blockera den) och försök igen. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Det finns inget kompatibelt installationsprogram för {0} på det här systemet (OS-versionen eller arkitekturen kanske inte stöds). Installera {0} manuellt. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} hittades inte i katalogen för Windows Paketshanterare. Försök att uppdatera winget-källorna eller installera {0} manuellt. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Installationen av {0} tog längre än 20 minuter. Intelligent Terminal slutade vänta, men installationsprogrammet kan fortfarande köras i bakgrunden. Kontrollera Task Manager eller försök igen senare. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Paketshanterare (winget) är inte installerad eller inte tillgänglig. Installera den först och försök sedan igen. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Det gick inte att installera Node.js. Kontrollera din nätverksanslutning och försök igen. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. diff --git a/src/cascadia/TerminalApp/Resources/ta-IN/Resources.resw b/src/cascadia/TerminalApp/Resources/ta-IN/Resources.resw index bcbbd62a9..078407f99 100644 --- a/src/cascadia/TerminalApp/Resources/ta-IN/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/ta-IN/Resources.resw @@ -220,18 +220,62 @@ அமைக்கப்படுகிறது... - - ⚠ GitHub Copilot நிறுவல் தோல்வியடைந்தது. உங்கள் நெட்வொர்க்கைச் சரிபார்த்து மீண்டும் முயற்சிக்கவும். - {Locked="GitHub Copilot"} + + ⚠ Windows Package Manager கொள்கையால் {0} நிறுவல் தடுக்கப்பட்டது. நீங்கள் நிர்வகிக்கப்படும் சாதனத்தில் இருந்தால், உங்கள் IT நிர்வாகியைத் தொடர்புகொள்ளவும். + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy (group policy disabled the operation). + + + ⚠ {0} ஐ நிறுவ முடியவில்லை (பிழை குறியீடு {1}). விவரங்களுக்கு பதிவைப் பார்க்கவும், அல்லது {0} ஐ கைமுறையாக நிறுவவும். + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". Shown for failure causes we don't have a more specific message for. + + + ⚠ {0} ஐ நிறுவ முடியவில்லை. விவரங்களுக்கு பதிவைப் பார்க்கவும், அல்லது {0} ஐ கைமுறையாக நிறுவவும். + FRE setup error fallback used when no actionable error code is available (e.g. the catalog connect/search failed before an installer ever ran). {0} is the package display name (appears twice). + + + ⚠ {0} நிறுவி பிழையை அறிவித்தது (குறியீடு {1}). விவரங்களுக்கு பதிவைச் சரிபார்க்கவும், அல்லது {0} ஐ கைமுறையாக நிறுவவும். + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). Shown when winget reached the install phase but the installer itself failed. + + + ⚠ {0} நிறுவும் போது Windows Package Manager-ஐ அணுக முடியவில்லை. உங்கள் இணைய இணைப்பைச் சரிபார்க்கவும் (VPN, proxy அல்லது firewall இதைத் தடுக்கலாம்) பின்னர் மீண்டும் முயற்சிக்கவும். + {Locked="VPN"} FRE setup error. {0} is the package display name (FreOverlay_PackageDisplayName_Copilot or _Node). Shown when winget couldn't reach its catalog or the package download failed with a network-class HRESULT. + + + ⚠ இந்த கணினியில் {0} க்கு இணக்கமான நிறுவி எதுவும் கிடைக்கவில்லை (OS பதிப்பு அல்லது கட்டமைப்பு ஆதரிக்கப்படாமல் இருக்கலாம்). {0} ஐ கைமுறையாக நிறுவவும். + FRE setup error. {0} is the package display name (appears twice). Shown when winget returned NoApplicableInstallers — the manifest exists but no installer entry matches this OS/arch/scope. + + + ⚠ Windows Package Manager பட்டியலில் {0} காணப்படவில்லை. winget மூலங்களைப் புதுப்பிக்க முயற்சிக்கவும், அல்லது {0} ஐ கைமுறையாக நிறுவவும். + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). Shown when no manifest with the requested package ID was returned from the catalog search. + + + ⚠ {0} நிறுவுவதற்கு 20 நிமிடங்களுக்கு மேல் எடுத்துக்கொண்டது. Intelligent Terminal காத்திருப்பதை நிறுத்தியது, ஆனால் நிறுவி இன்னும் பின்னணியில் இயங்கிக்கொண்டிருக்கலாம். Task Manager ஐச் சரிபார்க்கவும், அல்லது பின்னர் மீண்டும் முயற்சிக்கவும். + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. Shown when our 20-minute hard timeout expired before the install completed. + + + ⚠ session hooks நிறுவுவதில் தோல்வி. அமர்வு மேலாண்மை முடக்கப்பட்டுள்ளது. நீங்கள் அதை மீண்டும் இயக்கி மீண்டும் முயற்சிக்கலாம், அல்லது அது இல்லாமல் தொடர சேமிக்கலாம். + {Locked="hooks"} + + + ⚠ ஷெல் ஒருங்கிணைப்பை நிறுவுவதில் தோல்வி. பிழை கண்டறிதல் முடக்கப்பட்டுள்ளது. நீங்கள் அதை மீண்டும் இயக்கி மீண்டும் முயற்சிக்கலாம், அல்லது அது இல்லாமல் தொடர சேமிக்கலாம். + + + ⚠ PowerShell செயல்படுத்தல் கொள்கை ஸ்கிரிப்ட்களைத் தடுக்கிறது. பிழை கண்டறிதல் முடக்கப்பட்டது. + {Locked="PowerShell"} ⚠ Windows Package Manager (winget) நிறுவப்படவில்லை அல்லது கிடைக்கவில்லை. முதலில் அதை நிறுவி, பின்னர் மீண்டும் முயற்சிக்கவும். - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Node.js நிறுவல் தோல்வியடைந்தது. உங்கள் நெட்வொர்க்கைச் சரிபார்த்து மீண்டும் முயற்சிக்கவும். - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + இயக்கு @@ -308,12 +352,7 @@ உங்கள் ஷெல்லை அணுகவும் பிழைகளைத் தானாகவே கண்டறியவும் Intelligent Terminal-ஐ அனுமதிக்கவும். - - ⚠ ஷெல் ஒருங்கிணைப்பை நிறுவுவதில் தோல்வி. பிழை கண்டறிதல் முடக்கப்பட்டுள்ளது. நீங்கள் அதை மீண்டும் இயக்கி மீண்டும் முயற்சிக்கலாம், அல்லது அது இல்லாமல் தொடர சேமிக்கலாம். - - ⚠ session hooks நிறுவுவதில் தோல்வி. அமர்வு மேலாண்மை முடக்கப்பட்டுள்ளது. நீங்கள் அதை மீண்டும் இயக்கி மீண்டும் முயற்சிக்கலாம், அல்லது அது இல்லாமல் தொடர சேமிக்கலாம். - {Locked="hooks"} - + இதை கைமுறையாக சரிசெய்வது எப்படி என்பதை அறிக Hyperlink shown below an FRE setup error message. Opens step-by-step manual setup instructions in the browser. @@ -326,8 +365,4 @@ PowerShell செயல்படுத்தல் கொள்கை ஸ்கிரிப்ட்களைத் தடுக்கிறது. Body of an error dialog shown after the user tries to install PowerShell shell integration but their PowerShell execution policy (Restricted or AllSigned) is blocking scripts. A separate "Learn how to fix this manually" hyperlink (FreOverlay_ErrorHelpLink) is rendered on its own line below this sentence. {Locked="PowerShell"} - - ⚠ PowerShell செயல்படுத்தல் கொள்கை ஸ்கிரிப்ட்களைத் தடுக்கிறது. பிழை கண்டறிதல் முடக்கப்பட்டது. - {Locked="PowerShell"} - diff --git a/src/cascadia/TerminalApp/Resources/te-IN/Resources.resw b/src/cascadia/TerminalApp/Resources/te-IN/Resources.resw index 9f8d1a419..b307a3aad 100644 --- a/src/cascadia/TerminalApp/Resources/te-IN/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/te-IN/Resources.resw @@ -220,18 +220,62 @@ సెటప్ అవుతోంది... - - ⚠ GitHub Copilot ఇన్‌స్టాల్ చేయడం విఫలమైంది. మీ నెట్‌వర్క్‌ను తనిఖీ చేసి మళ్ళీ ప్రయత్నించండి. - {Locked="GitHub Copilot"} + + ⚠ Windows Package Manager విధానం ద్వారా {0} ఇన్‌స్టాలేషన్ నిరోధించబడింది. మీరు నిర్వహిత పరికరంలో ఉంటే, మీ IT అడ్మిన్‌ను సంప్రదించండి. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy (group policy disabled the operation). + + + ⚠ {0} ఇన్‌స్టాల్ చేయలేకపోయాం (లోపం కోడ్ {1}). వివరాల కోసం లాగ్‌ను చూడండి, లేదా {0} ను మాన్యువల్‌గా ఇన్‌స్టాల్ చేయండి. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". Shown for failure causes we don't have a more specific message for. + + + ⚠ {0} ఇన్‌స్టాల్ చేయలేకపోయాం. వివరాల కోసం లాగ్‌ను చూడండి, లేదా {0} ను మాన్యువల్‌గా ఇన్‌స్టాల్ చేయండి. + FRE setup error fallback used when no actionable error code is available (e.g. the catalog connect/search failed before an installer ever ran). {0} is the package display name (appears twice). + + + ⚠ {0} ఇన్‌స్టాలర్ లోపాన్ని నివేదించింది (కోడ్ {1}). వివరాల కోసం లాగ్‌ను తనిఖీ చేయండి, లేదా {0} ను మాన్యువల్‌గా ఇన్‌స్టాల్ చేయండి. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). Shown when winget reached the install phase but the installer itself failed. + + + ⚠ {0} ఇన్‌స్టాల్ చేస్తున్నప్పుడు Windows Package Manager‌ను చేరుకోలేకపోయాం. మీ ఇంటర్నెట్ కనెక్షన్‌ను తనిఖీ చేయండి (VPN, proxy, లేదా firewall దీన్ని నిరోధిస్తుండవచ్చు) మరియు మళ్లీ ప్రయత్నించండి. + {Locked="VPN"} FRE setup error. {0} is the package display name (FreOverlay_PackageDisplayName_Copilot or _Node). Shown when winget couldn't reach its catalog or the package download failed with a network-class HRESULT. + + + ⚠ ఈ సిస్టమ్‌లో {0} కోసం అనుకూల ఇన్‌స్టాలర్ అందుబాటులో లేదు (OS వెర్షన్ లేదా ఆర్కిటెక్చర్‌కు మద్దతు లేకపోవచ్చు). {0} ను మాన్యువల్‌గా ఇన్‌స్టాల్ చేయండి. + FRE setup error. {0} is the package display name (appears twice). Shown when winget returned NoApplicableInstallers — the manifest exists but no installer entry matches this OS/arch/scope. + + + ⚠ Windows Package Manager కాటలాగ్‌లో {0} కనుగొనబడలేదు. winget మూలాలను రిఫ్రెష్ చేయడానికి ప్రయత్నించండి, లేదా {0} ను మాన్యువల్‌గా ఇన్‌స్టాల్ చేయండి. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). Shown when no manifest with the requested package ID was returned from the catalog search. + + + ⚠ {0} ఇన్‌స్టాల్ చేయడానికి 20 నిమిషాలకంటే ఎక్కువ సమయం పట్టింది. Intelligent Terminal వేచి ఉండటం ఆపింది, కానీ ఇన్‌స్టాలర్ ఇంకా నేపథ్యంలో నడుస్తుండవచ్చు. Task Manager‌ను తనిఖీ చేయండి, లేదా తరువాత మళ్లీ ప్రయత్నించండి. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. Shown when our 20-minute hard timeout expired before the install completed. + + + ⚠ session hooks ఇన్‌స్టాల్ చేయడం విఫలమైంది. సెషన్ నిర్వహణ ఆపివేయబడింది. మీరు దాన్ని మళ్ళీ ప్రారంభించి మళ్ళీ ప్రయత్నించవచ్చు, లేదా అది లేకుండా కొనసాగించడానికి సేవ్ చేయవచ్చు. + {Locked="hooks"} + + + ⚠ షెల్ ఇంటిగ్రేషన్‌ను ఇన్‌స్టాల్ చేయడం విఫలమైంది. లోపం గుర్తింపు ఆపివేయబడింది. మీరు దాన్ని మళ్ళీ ప్రారంభించి మళ్ళీ ప్రయత్నించవచ్చు, లేదా అది లేకుండా కొనసాగించడానికి సేవ్ చేయవచ్చు. + + + ⚠ PowerShell ఎగ్జిక్యూషన్ విధానం స్క్రిప్ట్‌లను నిరోధిస్తోంది. లోపం గుర్తింపు ఆపివేయబడింది. + {Locked="PowerShell"} ⚠ Windows Package Manager (winget) ఇన్‌స్టాల్ చేయబడలేదు లేదా అందుబాటులో లేదు. ముందుగా దాన్ని ఇన్‌స్టాల్ చేసి, తరువాత మళ్లీ ప్రయత్నించండి. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Node.js ఇన్‌స్టాల్ చేయడం విఫలమైంది. మీ నెట్‌వర్క్‌ను తనిఖీ చేసి మళ్ళీ ప్రయత్నించండి. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + ఆన్ @@ -308,12 +352,7 @@ మీ షెల్‌ను యాక్సెస్ చేయడానికి మరియు లోపాలను స్వయంచాలకంగా గుర్తించడానికి Intelligent Terminal‌ను అనుమతించండి. - - ⚠ షెల్ ఇంటిగ్రేషన్‌ను ఇన్‌స్టాల్ చేయడం విఫలమైంది. లోపం గుర్తింపు ఆపివేయబడింది. మీరు దాన్ని మళ్ళీ ప్రారంభించి మళ్ళీ ప్రయత్నించవచ్చు, లేదా అది లేకుండా కొనసాగించడానికి సేవ్ చేయవచ్చు. - - ⚠ session hooks ఇన్‌స్టాల్ చేయడం విఫలమైంది. సెషన్ నిర్వహణ ఆపివేయబడింది. మీరు దాన్ని మళ్ళీ ప్రారంభించి మళ్ళీ ప్రయత్నించవచ్చు, లేదా అది లేకుండా కొనసాగించడానికి సేవ్ చేయవచ్చు. - {Locked="hooks"} - + దీన్ని మాన్యువల్‌గా ఎలా పరిష్కరించాలో తెలుసుకోండి Hyperlink shown below an FRE setup error message. Opens step-by-step manual setup instructions in the browser. @@ -326,8 +365,4 @@ PowerShell ఎగ్జిక్యూషన్ విధానం స్క్రిప్ట్‌లను నిరోధిస్తోంది. Body of an error dialog shown after the user tries to install PowerShell shell integration but their PowerShell execution policy (Restricted or AllSigned) is blocking scripts. A separate "Learn how to fix this manually" hyperlink (FreOverlay_ErrorHelpLink) is rendered on its own line below this sentence. {Locked="PowerShell"} - - ⚠ PowerShell ఎగ్జిక్యూషన్ విధానం స్క్రిప్ట్‌లను నిరోధిస్తోంది. లోపం గుర్తింపు ఆపివేయబడింది. - {Locked="PowerShell"} - diff --git a/src/cascadia/TerminalApp/Resources/th-TH/Resources.resw b/src/cascadia/TerminalApp/Resources/th-TH/Resources.resw index 8a8121e85..41a837999 100644 --- a/src/cascadia/TerminalApp/Resources/th-TH/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/th-TH/Resources.resw @@ -220,17 +220,49 @@ กำลังตั้งค่า... - - ⚠ ติดตั้ง GitHub Copilot ล้มเหลว ตรวจสอบเครือข่ายของคุณแล้วลองอีกครั้ง - {Locked="GitHub Copilot"} + + ⚠ การติดตั้ง {0} ถูกบล็อกโดยนโยบาย Windows Package Manager หากคุณใช้อุปกรณ์ที่มีการจัดการ โปรดติดต่อผู้ดูแลระบบ IT ของคุณ + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ ไม่สามารถติดตั้ง {0} ได้ (รหัสข้อผิดพลาด {1}) ตรวจสอบบันทึกเพื่อดูรายละเอียด หรือติดตั้ง {0} ด้วยตนเอง + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ ไม่สามารถติดตั้ง {0} ได้ ตรวจสอบบันทึกเพื่อดูรายละเอียด หรือติดตั้ง {0} ด้วยตนเอง + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ ตัวติดตั้ง {0} รายงานข้อผิดพลาด (รหัส {1}) ตรวจสอบบันทึกเพื่อดูรายละเอียด หรือติดตั้ง {0} ด้วยตนเอง + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ ไม่สามารถเชื่อมต่อกับ Windows Package Manager ขณะติดตั้ง {0} ได้ ตรวจสอบการเชื่อมต่ออินเทอร์เน็ตของคุณ (VPN, proxy หรือไฟร์วอลล์อาจบล็อกอยู่) แล้วลองอีกครั้ง + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ ไม่มีตัวติดตั้งที่เข้ากันได้สำหรับ {0} บนระบบนี้ (อาจไม่รองรับเวอร์ชัน OS หรือสถาปัตยกรรม) ติดตั้ง {0} ด้วยตนเอง + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ ไม่พบ {0} ในแค็ตตาล็อก Windows Package Manager ลองรีเฟรชแหล่งที่มาของ winget หรือติดตั้ง {0} ด้วยตนเอง + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ การติดตั้ง {0} ใช้เวลานานกว่า 20 นาที Intelligent Terminal หยุดรอแล้ว แต่ตัวติดตั้งอาจยังคงทำงานอยู่เบื้องหลัง ตรวจสอบ Task Manager หรือลองอีกครั้งในภายหลัง + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) ไม่ได้ติดตั้งหรือไม่พร้อมใช้งาน ติดตั้งก่อน แล้วลองอีกครั้ง - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ ติดตั้ง Node.js ล้มเหลว ตรวจสอบเครือข่ายของคุณแล้วลองอีกครั้ง - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Node.js prerequisite. เปิด diff --git a/src/cascadia/TerminalApp/Resources/tr-TR/Resources.resw b/src/cascadia/TerminalApp/Resources/tr-TR/Resources.resw index bff525f56..bd73d1994 100644 --- a/src/cascadia/TerminalApp/Resources/tr-TR/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/tr-TR/Resources.resw @@ -220,18 +220,51 @@ Ayarlanıyor... - - ⚠ GitHub Copilot yüklenemedi. Ağınızı kontrol edin ve tekrar deneyin. - {Locked="GitHub Copilot"} + + ⚠ {0} yüklemesi bir Windows Paket Yöneticisi ilkesi tarafından engellendi. Yönetilen bir cihaz kullanıyorsanız IT yöneticinizle iletişime geçin. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ {0} yüklenemedi (hata kodu {1}). Ayrıntılar için günlüğe bakın veya {0} paketini el ile yükleyin. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ {0} yüklenemedi. Ayrıntılar için günlüğe bakın veya {0} paketini el ile yükleyin. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0} yükleyicisi bir hata bildirdi (kod {1}). Ayrıntılar için günlüğe bakın veya {0} paketini el ile yükleyin. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Windows Paket Yöneticisi'ne {0} yüklenirken ulaşılamadı. İnternet bağlantınızı kontrol edin (VPN, proxy veya güvenlik duvarı engelliyor olabilir) ve tekrar deneyin. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Bu sistemde {0} için uyumlu bir yükleyici yok (OS sürümü veya mimari desteklenmiyor olabilir). {0} paketini el ile yükleyin. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0}, Windows Paket Yöneticisi kataloğunda bulunamadı. winget kaynaklarını yenilemeyi deneyin veya {0} paketini el ile yükleyin. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} yüklemesi 20 dakikadan uzun sürdü. Intelligent Terminal beklemeyi durdurdu, ancak yükleyici arka planda hâlâ çalışıyor olabilir. Task Manager uygulamasını kontrol edin veya daha sonra tekrar deneyin. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Paket Yöneticisi (winget) yüklü değil veya kullanılamıyor. Önce yükleyin, ardından tekrar deneyin. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Node.js yüklenemedi. Ağınızı kontrol edin ve tekrar deneyin. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + Açık diff --git a/src/cascadia/TerminalApp/Resources/tt-RU/Resources.resw b/src/cascadia/TerminalApp/Resources/tt-RU/Resources.resw index 1f0ae77a7..660e960b9 100644 --- a/src/cascadia/TerminalApp/Resources/tt-RU/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/tt-RU/Resources.resw @@ -220,17 +220,49 @@ Көйләнә... - - ⚠ GitHub Copilot урнату уңышсыз булды. Челтәрегезне тикшерегез һәм яңадан тырышыгыз. - {Locked="GitHub Copilot"} + + ⚠ {0} урнату Windows Package Manager сәясәте тарафыннан блокланды. Әгәр идарә ителә торган җайланмада булсагыз, IT администраторыгызга мөрәҗәгать итегез. + FRE setup error. {0} is the package display name. + + + ⚠ {0} урнатып булмады (хата коды {1}). Тулырак мәгълүмат өчен журналны карагыз яки {0} кулдан урнатыгыз. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string. + + + ⚠ {0} урнатып булмады. Тулырак мәгълүмат өчен журналны карагыз яки {0} кулдан урнатыгыз. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0} урнаткычы хата турында хәбәр итте (код {1}). Тулырак мәгълүмат өчен журналны тикшерегез яки {0} кулдан урнатыгыз. + FRE setup error. {0} is the package display name (appears twice). {1} is decimal error code. + + + ⚠ {0} урнатканда Windows Package Manager белән бәйләнеп булмады. Интернет тоташуын тикшерегез (VPN, прокси яки брандмауэр аны блоклый ала) һәм яңадан тырышыгыз. + {Locked="VPN"} FRE setup error. {0} is the package display name. + + + ⚠ Бу системада {0} өчен туры килә торган урнаткыч юк (OS версиясе яки архитектура хупланмаска мөмкин). {0} кулдан урнатыгыз. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} Windows Package Manager каталогында табылмады. winget чыганакларын яңартып карагыз яки {0} кулдан урнатыгыз. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} урнату 20 минуттан озагракка сузылды. Intelligent Terminal көтүдән туктады, ләкин урнаткыч әле дә фонда эшли торган булырга мөмкин. Task Manager-ны тикшерегез яки соңрак яңадан тырышыгыз. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) урнатылмаган яки мөмкин түгел. Башта аны урнатыгыз, аннары яңадан тырышыгыз. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Node.js урнату уңышсыз булды. Челтәрегезне тикшерегез һәм яңадан тырышыгыз. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Кушулган diff --git a/src/cascadia/TerminalApp/Resources/ug-CN/Resources.resw b/src/cascadia/TerminalApp/Resources/ug-CN/Resources.resw index 0a527f004..ffdff5fba 100644 --- a/src/cascadia/TerminalApp/Resources/ug-CN/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/ug-CN/Resources.resw @@ -107,17 +107,49 @@ تەڭشەلىۋاتىدۇ... - - ⚠ GitHub Copilot ئورنىتىش مەغلۇب بولدى. تور باغلىنىشىڭىزنى تەكشۈرۈڭ ۋە قايتا سىناڭ. - {Locked="GitHub Copilot"} + + ⚠ {0} نى ئورنىتىش Windows Package Manager سىياسىتى تەرىپىدىن چەكلەندى. ئەگەر باشقۇرۇلىدىغان ئۈسكۈنىدە بولسىڭىز، IT باشقۇرغۇچىڭىز بىلەن ئالاقىلىشىڭ. + FRE setup error. {0} is the package display name. + + + ⚠ {0} نى ئورنىتالمىدى (خاتالىق كودى {1}). تەپسىلاتلار ئۈچۈن خاتىرىنى كۆرۈڭ، ياكى {0} نى قولدا ئورنىتىڭ. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string. + + + ⚠ {0} نى ئورنىتالمىدى. تەپسىلاتلار ئۈچۈن خاتىرىنى كۆرۈڭ، ياكى {0} نى قولدا ئورنىتىڭ. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0} ئورنىتىش پروگراممىسى خاتالىق مەلۇم قىلدى (كود {1}). تەپسىلاتلار ئۈچۈن خاتىرىنى تەكشۈرۈڭ، ياكى {0} نى قولدا ئورنىتىڭ. + FRE setup error. {0} is the package display name (appears twice). {1} is decimal error code. + + + ⚠ {0} نى ئورنىتىۋاتقاندا Windows Package Manager غا يېتىپ بارالمىدى. ئىنتېرنېت باغلىنىشىڭىزنى تەكشۈرۈڭ (VPN، ۋاكالەتچى ياكى مۇداپىئە تېمى ئۇنى توسۇۋاتقان بولۇشى مۇمكىن) ۋە قايتا سىناڭ. + {Locked="VPN"} FRE setup error. {0} is the package display name. + + + ⚠ بۇ سىستېمىدا {0} ئۈچۈن ماس كېلىدىغان ئورنىتىش پروگراممىسى يوق (OS نەشرى ياكى قۇرۇلما قوللىماسلىقى مۇمكىن). {0} نى قولدا ئورنىتىڭ. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} Windows Package Manager كاتالوگىدىن تېپىلمىدى. winget مەنبەلىرىنى يېڭىلاپ بېقىڭ، ياكى {0} نى قولدا ئورنىتىڭ. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} نى ئورنىتىش 20 مىنۇتتىن ئۇزۇن داۋاملاشتى. Intelligent Terminal كۈتۈشنى توختاتتى، لېكىن ئورنىتىش پروگراممىسى يەنىلا ئارقا سۇپىدا ئىجرا بولۇۋاتقان بولۇشى مۇمكىن. Task Manager نى تەكشۈرۈڭ، ياكى كېيىن قايتا سىناڭ. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) ئورنىتىلمىغان ياكى ئىشلەتكىلى بولمايدۇ. ئالدى بىلەن ئۇنى ئورنىتىڭ، ئاندىن قايتا سىناڭ. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Node.js ئورنىتىش مەغلۇب بولدى. تور باغلىنىشىڭىزنى تەكشۈرۈڭ ۋە قايتا سىناڭ. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. ئاچىق diff --git a/src/cascadia/TerminalApp/Resources/uk-UA/Resources.resw b/src/cascadia/TerminalApp/Resources/uk-UA/Resources.resw index 9ecdb15b4..3b703cfbf 100644 --- a/src/cascadia/TerminalApp/Resources/uk-UA/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/uk-UA/Resources.resw @@ -1112,18 +1112,51 @@ Налаштування... - - ⚠ Не вдалося встановити GitHub Copilot. Перевірте мережеве підключення та спробуйте знову. - {Locked="GitHub Copilot"} + + ⚠ Інсталяцію {0} заблоковано політикою Диспетчера пакетів Windows. Якщо ви використовуєте керований пристрій, зверніться до ІТ-адміністратора. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Не вдалося інсталювати {0} (код помилки {1}). Перегляньте журнал, щоб дізнатися подробиці, або інсталюйте {0} вручну. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Не вдалося інсталювати {0}. Перегляньте журнал, щоб дізнатися подробиці, або інсталюйте {0} вручну. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Інсталятор {0} повідомив про помилку (код {1}). Перегляньте журнал, щоб дізнатися подробиці, або інсталюйте {0} вручну. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number. + + + ⚠ Не вдалося зв’язатися з Диспетчером пакетів Windows під час інсталяції {0}. Перевірте підключення до Інтернету (VPN, проксі або брандмауер можуть його блокувати) і спробуйте знову. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ У цій системі немає сумісного інсталятора для {0} (версія ОС або архітектура може не підтримуватися). Інсталюйте {0} вручну. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} не знайдено в каталозі Диспетчера пакетів Windows. Спробуйте оновити джерела winget або інсталюйте {0} вручну. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Інсталяція {0} тривала довше ніж 20 хвилин. Intelligent Terminal припинив очікування, але інсталятор може й досі працювати у фоновому режимі. Перевірте Task Manager або спробуйте знову пізніше. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Диспетчер пакетів Windows (winget) не інстальовано або він недоступний. Спочатку інсталюйте його, а потім спробуйте знову. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Не вдалося встановити Node.js. Перевірте мережеве підключення та спробуйте знову. - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + Увімк diff --git a/src/cascadia/TerminalApp/Resources/ur-PK/Resources.resw b/src/cascadia/TerminalApp/Resources/ur-PK/Resources.resw index 0375d4637..96830b9e8 100644 --- a/src/cascadia/TerminalApp/Resources/ur-PK/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/ur-PK/Resources.resw @@ -221,18 +221,62 @@ سیٹ اپ ہو رہا ہے... - - ⚠ GitHub Copilot انسٹال کرنے میں ناکامی۔ اپنا نیٹ ورک چیک کریں اور دوبارہ کوشش کریں۔ - {Locked="GitHub Copilot"} + + ⚠ Windows Package Manager پالیسی نے {0} کی انسٹالیشن کو بلاک کر دیا۔ اگر آپ مینیجڈ ڈیوائس پر ہیں، تو اپنے IT ایڈمن سے رابطہ کریں۔ + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy (group policy disabled the operation). + + + ⚠ {0} انسٹال نہیں ہو سکا (خرابی کوڈ {1})۔ تفصیلات کے لیے لاگ دیکھیں، یا {0} کو دستی طور پر انسٹال کریں۔ + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". Shown for failure causes we don't have a more specific message for. + + + ⚠ {0} انسٹال نہیں ہو سکا۔ تفصیلات کے لیے لاگ دیکھیں، یا {0} کو دستی طور پر انسٹال کریں۔ + FRE setup error fallback used when no actionable error code is available (e.g. the catalog connect/search failed before an installer ever ran). {0} is the package display name (appears twice). + + + ⚠ {0} انسٹالر نے ایک خرابی رپورٹ کی (کوڈ {1})۔ تفصیلات کے لیے لاگ چیک کریں، یا {0} کو دستی طور پر انسٹال کریں۔ + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). Shown when winget reached the install phase but the installer itself failed. + + + ⚠ {0} انسٹال کرتے وقت Windows Package Manager تک رسائی نہیں ہو سکی۔ اپنا انٹرنیٹ کنکشن چیک کریں (VPN، proxy، یا firewall اسے بلاک کر رہے ہو سکتے ہیں) اور دوبارہ کوشش کریں۔ + {Locked="VPN"} FRE setup error. {0} is the package display name (FreOverlay_PackageDisplayName_Copilot or _Node). Shown when winget couldn't reach its catalog or the package download failed with a network-class HRESULT. + + + ⚠ اس سسٹم پر {0} کے لیے کوئی مطابقت پذیر انسٹالر دستیاب نہیں ہے (OS ورژن یا آرکیٹیکچر سپورٹڈ نہیں ہو سکتا)۔ {0} کو دستی طور پر انسٹال کریں۔ + FRE setup error. {0} is the package display name (appears twice). Shown when winget returned NoApplicableInstallers — the manifest exists but no installer entry matches this OS/arch/scope. + + + ⚠ Windows Package Manager کیٹلاگ میں {0} نہیں ملا۔ winget سورسز ریفریش کرنے کی کوشش کریں، یا {0} کو دستی طور پر انسٹال کریں۔ + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). Shown when no manifest with the requested package ID was returned from the catalog search. + + + ⚠ {0} انسٹال ہونے میں 20 منٹ سے زیادہ وقت لگا۔ Intelligent Terminal نے انتظار کرنا بند کر دیا، لیکن انسٹالر اب بھی پس منظر میں چل رہا ہو سکتا ہے۔ Task Manager چیک کریں، یا بعد میں دوبارہ کوشش کریں۔ + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. Shown when our 20-minute hard timeout expired before the install completed. + + + ⚠ session hooks انسٹال کرنے میں ناکامی۔ سیشن کا انتظام بند کر دیا گیا ہے۔ آپ اسے دوبارہ فعال کر کے دوبارہ کوشش کر سکتے ہیں، یا اس کے بغیر جاری رکھنے کے لیے محفوظ کر سکتے ہیں۔ + {Locked="hooks"} + + + ⚠ شیل انضمام انسٹال کرنے میں ناکامی۔ خرابی کی نشاندہی بند کر دی گئی ہے۔ آپ اسے دوبارہ فعال کر کے دوبارہ کوشش کر سکتے ہیں، یا اس کے بغیر جاری رکھنے کے لیے محفوظ کر سکتے ہیں۔ + + + ⚠ PowerShell ایگزیکیوشن پالیسی اسکرپٹس کو بلاک کر رہی ہے۔ خرابی کی نشاندہی بند کر دی گئی۔ + {Locked="PowerShell"} ⚠ Windows Package Manager (winget) انسٹال نہیں ہے یا دستیاب نہیں ہے۔ پہلے اسے انسٹال کریں، پھر دوبارہ کوشش کریں۔ - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. - - ⚠ Node.js انسٹال کرنے میں ناکامی۔ اپنا نیٹ ورک چیک کریں اور دوبارہ کوشش کریں۔ - {Locked="Node.js"} + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. + + آن @@ -309,12 +353,7 @@ Intelligent Terminal کو اپنے شیل تک رسائی اور خودکار طور پر خرابیوں کا پتہ لگانے کی اجازت دیں۔ - - ⚠ شیل انضمام انسٹال کرنے میں ناکامی۔ خرابی کی نشاندہی بند کر دی گئی ہے۔ آپ اسے دوبارہ فعال کر کے دوبارہ کوشش کر سکتے ہیں، یا اس کے بغیر جاری رکھنے کے لیے محفوظ کر سکتے ہیں۔ - - ⚠ session hooks انسٹال کرنے میں ناکامی۔ سیشن کا انتظام بند کر دیا گیا ہے۔ آپ اسے دوبارہ فعال کر کے دوبارہ کوشش کر سکتے ہیں، یا اس کے بغیر جاری رکھنے کے لیے محفوظ کر سکتے ہیں۔ - {Locked="hooks"} - + دستی طور پر اسے ٹھیک کرنے کا طریقہ سیکھیں Hyperlink shown below an FRE setup error message. Opens step-by-step manual setup instructions in the browser. @@ -327,8 +366,4 @@ PowerShell ایگزیکیوشن پالیسی اسکرپٹس کو بلاک کر رہی ہے۔ Body of an error dialog shown after the user tries to install PowerShell shell integration but their PowerShell execution policy (Restricted or AllSigned) is blocking scripts. A separate "Learn how to fix this manually" hyperlink (FreOverlay_ErrorHelpLink) is rendered on its own line below this sentence. {Locked="PowerShell"} - - ⚠ PowerShell ایگزیکیوشن پالیسی اسکرپٹس کو بلاک کر رہی ہے۔ خرابی کی نشاندہی بند کر دی گئی۔ - {Locked="PowerShell"} - diff --git a/src/cascadia/TerminalApp/Resources/uz-Latn-UZ/Resources.resw b/src/cascadia/TerminalApp/Resources/uz-Latn-UZ/Resources.resw index bf0f3e5a6..99e339c8d 100644 --- a/src/cascadia/TerminalApp/Resources/uz-Latn-UZ/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/uz-Latn-UZ/Resources.resw @@ -220,17 +220,49 @@ Sozlanmoqda... - - ⚠ GitHub Copilot oʻrnatish amalga oshmadi. Tarmoqingizni tekshiring va qayta urinib koʻring. - {Locked="GitHub Copilot"} + + ⚠ {0} oʻrnatilishi Windows Package Manager siyosati tomonidan bloklandi. Agar boshqariladigan qurilmada boʻlsangiz, IT administratoringizga murojaat qiling. + FRE setup error. {0} is the package display name. + + + ⚠ {0} oʻrnatib boʻlmadi (xato kodi {1}). Tafsilotlar uchun jurnalni koʻring yoki {0} paketini qoʻlda oʻrnating. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string. + + + ⚠ {0} oʻrnatib boʻlmadi. Tafsilotlar uchun jurnalni koʻring yoki {0} paketini qoʻlda oʻrnating. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0} oʻrnatuvchisi xato haqida xabar berdi (kod {1}). Tafsilotlar uchun jurnalni tekshiring yoki {0} paketini qoʻlda oʻrnating. + FRE setup error. {0} is the package display name (appears twice). {1} is decimal error code. + + + ⚠ {0} oʻrnatilayotganda Windows Package Manager bilan bogʻlanib boʻlmadi. Internet ulanishingizni tekshiring (VPN, proksi yoki xavfsizlik devori uni bloklayotgan boʻlishi mumkin) va qayta urinib koʻring. + {Locked="VPN"} FRE setup error. {0} is the package display name. + + + ⚠ Bu tizimda {0} uchun mos oʻrnatuvchi mavjud emas (OS versiyasi yoki arxitektura qoʻllab-quvvatlanmasligi mumkin). {0} paketini qoʻlda oʻrnating. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} Windows Package Manager katalogida topilmadi. winget manbalarini yangilab koʻring yoki {0} paketini qoʻlda oʻrnating. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ {0} oʻrnatilishi 20 daqiqadan uzoq davom etdi. Intelligent Terminal kutishni toʻxtatdi, lekin oʻrnatuvchi hali ham fonda ishlayotgan boʻlishi mumkin. Task Manager-ni tekshiring yoki keyinroq qayta urinib koʻring. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) oʻrnatilmagan yoki mavjud emas. Avval uni oʻrnating, soʻng qayta urinib koʻring. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Node.js oʻrnatish amalga oshmadi. Tarmoqingizni tekshiring va qayta urinib koʻring. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FreOverlay_InstallError_* templates when reporting a winget install failure for the Node.js prerequisite. Yoniq diff --git a/src/cascadia/TerminalApp/Resources/vi-VN/Resources.resw b/src/cascadia/TerminalApp/Resources/vi-VN/Resources.resw index 5577ce56e..7ca2b1eac 100644 --- a/src/cascadia/TerminalApp/Resources/vi-VN/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/vi-VN/Resources.resw @@ -220,17 +220,49 @@ Đang thiết lập... - - ⚠ Cài đặt GitHub Copilot thất bại. Kiểm tra mạng của bạn và thử lại. - {Locked="GitHub Copilot"} + + ⚠ Việc cài đặt {0} đã bị chặn bởi chính sách Windows Package Manager. Nếu bạn đang dùng thiết bị được quản lý, hãy liên hệ với quản trị viên IT. + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ Không thể cài đặt {0} (mã lỗi {1}). Xem nhật ký để biết chi tiết, hoặc cài đặt {0} theo cách thủ công. + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ Không thể cài đặt {0}. Xem nhật ký để biết chi tiết, hoặc cài đặt {0} theo cách thủ công. + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ Trình cài đặt {0} đã báo cáo lỗi (mã {1}). Xem nhật ký để biết chi tiết, hoặc cài đặt {0} theo cách thủ công. + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ Không thể kết nối với Windows Package Manager trong khi cài đặt {0}. Kiểm tra kết nối Internet của bạn (VPN, proxy hoặc tường lửa có thể đang chặn) rồi thử lại. + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ Không có trình cài đặt tương thích cho {0} trên hệ thống này (phiên bản OS hoặc kiến trúc có thể không được hỗ trợ). Cài đặt {0} theo cách thủ công. + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Không tìm thấy {0} trong danh mục Windows Package Manager. Hãy thử làm mới các nguồn winget, hoặc cài đặt {0} theo cách thủ công. + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ Cài đặt {0} mất hơn 20 phút. Intelligent Terminal đã ngừng chờ, nhưng trình cài đặt vẫn có thể đang chạy trong nền. Kiểm tra Task Manager, hoặc thử lại sau. + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows Package Manager (winget) chưa được cài đặt hoặc không khả dụng. Hãy cài đặt trước, rồi thử lại. - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ Cài đặt Node.js thất bại. Kiểm tra mạng của bạn và thử lại. - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Node.js prerequisite. Bật diff --git a/src/cascadia/TerminalApp/Resources/zh-CN/Resources.resw b/src/cascadia/TerminalApp/Resources/zh-CN/Resources.resw index 1e27a25a7..b525f75ad 100644 --- a/src/cascadia/TerminalApp/Resources/zh-CN/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/zh-CN/Resources.resw @@ -1113,17 +1113,49 @@ In this context, "agent" refers to an AI agent (e.g. Copilot, Claude, Gemini), n 正在设置... - - ⚠ 安装 GitHub Copilot 失败。请检查网络并重试。 - {Locked="GitHub Copilot"} + + ⚠ Windows 程序包管理器策略阻止了 {0} 的安装。如果你使用的是受管理设备,请联系 IT 管理员。 + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ 无法安装 {0}(错误代码 {1})。请查看日志了解详细信息,或手动安装 {0}。 + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ 无法安装 {0}。请查看日志了解详细信息,或手动安装 {0}。 + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0} 安装程序报告了错误(代码 {1})。请查看日志了解详细信息,或手动安装 {0}。 + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ 安装 {0} 时无法访问 Windows 程序包管理器。请检查 Internet 连接(VPN、代理或防火墙可能会阻止连接),然后重试。 + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ 此系统上没有可用的 {0} 兼容安装程序(可能不支持 OS 版本或体系结构)。请手动安装 {0}。 + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ 在 Windows 程序包管理器目录中找不到 {0}。请尝试刷新 winget 源,或手动安装 {0}。 + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ 安装 {0} 花费的时间超过 20 分钟。Intelligent Terminal 已停止等待,但安装程序可能仍在后台运行。请查看 Task Manager,或稍后重试。 + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows 程序包管理器 (winget) 未安装或不可用。请先安装它,然后重试。 - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ 安装 Node.js 失败。请检查网络并重试。 - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Node.js prerequisite. ⚠ 安装 session hooks 失败。会话管理已关闭。您可以重新启用并重试,或保存以继续而不使用它。 diff --git a/src/cascadia/TerminalApp/Resources/zh-TW/Resources.resw b/src/cascadia/TerminalApp/Resources/zh-TW/Resources.resw index 8b73b86db..15fd16e3b 100644 --- a/src/cascadia/TerminalApp/Resources/zh-TW/Resources.resw +++ b/src/cascadia/TerminalApp/Resources/zh-TW/Resources.resw @@ -1083,17 +1083,49 @@ In this context, "agent" refers to an AI agent (e.g. Copilot, Claude, Gemini), n 正在設定... - - ⚠ 安裝 GitHub Copilot 失敗。請檢查您的網路並重試。 - {Locked="GitHub Copilot"} + + ⚠ Windows 套件管理員原則封鎖了 {0} 的安裝。如果您使用的是受管理裝置,請連絡您的 IT 管理員。 + FRE setup error. {0} is the package display name. Shown when winget returned BlockedByPolicy. + + + ⚠ 無法安裝 {0} (錯誤碼 {1})。請查看記錄檔以取得詳細資料,或手動安裝 {0}。 + FRE setup error fallback. {0} is the package display name (appears twice). {1} is a pre-formatted HRESULT string like "0x80190194". + + + ⚠ 無法安裝 {0}。請查看記錄檔以取得詳細資料,或手動安裝 {0}。 + FRE setup error fallback used when no actionable error code is available. {0} is the package display name (appears twice). + + + ⚠ {0} 安裝程式回報錯誤 (代碼 {1})。請查看記錄檔以取得詳細資料,或手動安裝 {0}。 + FRE setup error. {0} is the package display name (appears twice). {1} is the installer-reported error code as a decimal number (e.g. MSI 1603). + + + ⚠ 安裝 {0} 時無法連線到 Windows 套件管理員。請檢查您的網際網路連線 (VPN、Proxy 或防火牆可能封鎖它),然後再試一次。 + {Locked="VPN"} FRE setup error. {0} is the package display name. Shown when winget couldn't reach its catalog or download failed with a network-class HRESULT. + + + ⚠ 此系統上沒有可用的 {0} 相容安裝程式 (可能不支援 OS 版本或架構)。請手動安裝 {0}。 + FRE setup error. {0} is the package display name (appears twice). + + + ⚠ 在 Windows 套件管理員目錄中找不到 {0}。請嘗試重新整理 winget 來源,或手動安裝 {0}。 + {Locked="winget"} FRE setup error. {0} is the package display name (appears twice). + + + ⚠ 安裝 {0} 花費的時間超過 20 分鐘。Intelligent Terminal 已停止等待,但安裝程式可能仍在背景執行。請查看 Task Manager,或稍後再試。 + {Locked="Intelligent Terminal","Task Manager"} FRE setup error. {0} is the package display name. ⚠ Windows 套件管理員 (winget) 未安裝或無法使用。請先安裝,然後再試一次。 - {Locked="winget","PATH"} Error shown in the FRE setup overlay when a prerequisite install was attempted but the winget command is not on PATH. + {Locked="winget"} Error shown in the FRE setup overlay when a prerequisite install was attempted but winget itself is not available on this system. + + + GitHub Copilot + {Locked="GitHub Copilot"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Copilot CLI prerequisite. - - ⚠ 安裝 Node.js 失敗。請檢查您的網路並重試。 - {Locked="Node.js"} + + Node.js (LTS) + {Locked="Node.js","LTS"} Product display name substituted into the FRE install error templates when reporting a winget install failure for the Node.js prerequisite. ⚠ 安裝 session hooks 失敗。工作階段管理已關閉。您可以重新啟用並重試,或儲存以繼續而不使用它。