【dockerdesktop 汉化 for mac,汉化脚本,理论可永久使用,不会因版本变化而失效】

dockerdesktop 汉化 for mac,汉化脚本,理论可永久使用,不会因版本变化而失效,基于4.31.0

代码注释写的非常清楚了

一直不用win了,所以没有写win的,你们可以根据这个改一个。就是通过 python 对文件进行替换的脚本,这个脚本理论可以对任何你想汉化的任何软件或者你想替换的任何文本进行替换操作,通过json 文件键值对,对文本进行替换。

简单展示

界面展示
界面展示
上代码:

import os
import json
import subprocess

# npx 安装
# 1. 卸载旧版 asar: npm uninstall asar
# 2. 安装新版 @electron/asar: npm install -g @electron/asar
# 3. 使用 @electron/asar 打包应用程序: npx asar pack <app_directory> <output_file>
# 4. 读取 asar 文件: npx asar extract <input_file> <output_directory>


# 在 JSON 格式中,需要转义的特殊字符包括双引号(")、反斜杠(\)、换行符(\n)、回车符(\r)、制表符(\t)、退格符(\b)和换页符(\f)。为了转义这些特殊字符,可以使用反斜杠(\)进行转义
# pycharm 替换 json 时会自动校验正确性。非常的好。 复制黏贴 pycharm 会自动转义


"""
# 1、首次安装 Dockerdesktop 先打开一次 APP ,否则 安全警告
open -a "Docker Desktop"

# 2、更改权限
隐私与安全--》APP管理--》允许 vs、cusor、pycharm 权限
在目录里修改一个 或 复制一个文件 ,为了打破系统防护,大概这个意思吧。

# 3、手动在终端进入目录,不能复制粘贴
cd "/Applications/Docker.app/Contents/MacOS/Docker\ Desktop.app/Contents/Resources/

# 4、打开目录查看文件
open /Applications/Docker.app/Contents/MacOS/Docker\ Desktop.app/Contents/Resources/

# 5、解包 asar 文件 并备份,然后检查 Resource 里的文件是否确实比解包前多了。
sudo cp app.asar app.asar_bak&npx asar extract app.asar app.asar.unpacked&sudo pkill "docker"&pkill "Docker"&pkill "Docker"

# 6、运行本程序 并备份 app.asar.unpacked 目录,执行此脚本大概有 247 个js 文件被搜索到才对,要是3个就是系统保护了。
python3 "/Users/king/Documents/Gitee/myproject/PycharmProjects/汉化/Docker/Docker_replace.py"

# 7、打包 asar 文件 并启动 APP ,依然手动进入目录
cd "/Applications/Docker.app/Contents/MacOS/Docker\ Desktop.app/Contents/Resources/
sudo rm app.asar&npx asar pack app.asar.unpacked app.asar&sudo pkill "docker"&pkill "Docker"&pkill "Docker"&sleep 5&&open -a "Docker Desktop"

"""

current_file_path = os.path.abspath(__file__)
current_directory = os.path.dirname(current_file_path)
print(current_directory)
# 替换对应表文件路径
REPLACE_TABLE = f"{current_directory}/docker_replace_table.json"
# 目标文件夹路径
# TARGET_FOLDER = "/Users/king/Desktop/app.asar.unpacked" # 用于测试
TARGET_FOLDER = "/Applications/Docker.app/Contents/MacOS/Docker Desktop.app/Contents/Resources/app.asar.unpacked"
# 备份文件夹路径
BACKUP_FOLDER = f"{TARGET_FOLDER}_backup"
# 提示命令(在macos13 可能不能完全杀死 docker desktop 进程,macos14 大部分时候可以,不知道原因,脚本里杀死进程的方法并不能完全杀死,还是要用户用终端执行。)
TIPSCOMMAND = '在终端执行以下打包命令,观察是否白屏:\nsudo cd "/Applications/Docker.app/Contents/MacOS/Docker\ Desktop.app/Contents/Resources/"&rm app.asar&npx asar pack app.asar.unpacked app.asar&sudo pkill "docker"&pkill "Docker"&pkill "Docker"&sleep 5&&open -a "Docker Desktop"'
# 是否启用调试(0不启用,1启用),调试则每次替换比如50个js文件("替换1:50"),看有没有问题,没问题再加50个("替换1:100"),直到找到问题文件范围
# 比如 140—— 145 个中其中一个或多个文件有问题,则 用 DEBUGFILE 控制调试 ,1的话就是每替换一个文件就暂停,2的话,每替换2个文件就暂停让用户测试是否白屏。
# 注意每次都必须结束docker desktop 的全部进程(可以用活动监视器确认),再打开应用测试才有效。
DEBUG = 1
# 调试第几个文件到第几个文件 130
debug_input = "替换1:250"
# 每次替换几个文件暂停,当大范围测试时这个数字写大就可以了
DEBUGFILE = 10000

# 处理目录路径中的空格
TARGET_FOLDER2 = TARGET_FOLDER.replace(" ", "\ ")
TARGET_FOLDER2 = TARGET_FOLDER2 + "/"
BACKUP_FOLDER2 = BACKUP_FOLDER.replace(" ", "\ ")

print("开始脚本执行...")
# 检查备份目录是否存在
if not os.path.exists(BACKUP_FOLDER):
    print("备份文件夹不存在。正在创建备份...")
    os.makedirs(BACKUP_FOLDER)
    os.system(f"cp -r {TARGET_FOLDER2} {BACKUP_FOLDER2}")
    print("备份已创建在", BACKUP_FOLDER)
else:
    print("备份文件夹已存在。正在恢复原始文件...")
    os.system(f"rm -rf '{TARGET_FOLDER}'")
    print(f"BACKUP_FOLDER:{BACKUP_FOLDER}")
    print(f"TARGET_FOLDER:{TARGET_FOLDER}")
    os.system(f"cp -r '{BACKUP_FOLDER}' '{TARGET_FOLDER}'")
    if os.path.exists(TARGET_FOLDER):
        backup_subdir = os.path.join(TARGET_FOLDER, "app.asar.unpacked_backup")
        if os.path.exists(backup_subdir):
            os.system(f"rm -rf '{backup_subdir}'")
            print(f"删除了目录: {backup_subdir}")
        else:
            print(f"目录不存在: {backup_subdir}")
    print("已从备份中恢复原始文件.")


# 统计目标目录下所有.js文件并返回文件列表
def count_js_files(directory):
    js_files = []
    for root, _, files in os.walk(directory):
        for file in files:
            if file.endswith(".js"):
                js_files.append(os.path.join(root, file))
    return js_files


# 定义函数用于替换文件中的内容
def replace_content(file, replace_table):
    with open(replace_table) as f:
        replacements = json.load(f)["replacements"]
        content = open(file).read()
        print(f"处理文件: {file}")
        replaced = 0
        for replacement in replacements:
            original = replacement["original"]
            replacement_text = replacement["replacement"]
            if original in content:
                print(f"正在替换: {original} -> {replacement_text}")
                content = content.replace(original, replacement_text)
                replaced += 1
        with open(file, "w") as f:
            f.write(content)
        print(f"替换完成. 此文件替换了 {replaced} 处.")
        return replaced


# 搜索包含"docker"的进程并终止,这个方法不完善,可以不用
def kill_docker_processes():
    p = subprocess.Popen(["pgrep", "-f", "docker"], stdout=subprocess.PIPE)
    out, _ = p.communicate()
    pids = out.decode().splitlines()
    for pid in pids:
        subprocess.run(["kill", "-9", pid])
    for pid in pids:
        p = subprocess.Popen(["ps", "-p", pid], stdout=subprocess.PIPE)
        out, _ = p.communicate()
        if "docker" in out.decode():
            print(f"进程 {pid} 未成功终止.")


# 启动Docker Desktop ,这个方法可以不用。
def start_docker_desktop():
    os.system("open -a 'Docker Desktop'")


# 获取所有.js文件列表
all_js_files = count_js_files(TARGET_FOLDER)
total_js_files = len(all_js_files)
print(f"目标目录下共有 {total_js_files} 个 .js 文件.")

# 如果调试模式下指定了范围
if DEBUG == 1:
    if debug_input.startswith("替换"):
        try:
            start, end = map(int, debug_input[2:].split(":"))
            if end > total_js_files:
                end = total_js_files
            debug_js_files = all_js_files[start - 1 : end]
        except ValueError:
            print("输入格式错误,退出程序。")
            exit()

processed_files = []
files_replaced_count = 0
files_to_restore = []

# 是否调试
if DEBUG == 0:
    debug_js_files = all_js_files

for file_path in debug_js_files:
    try:
        replaced_count = replace_content(file_path, REPLACE_TABLE)
        files_replaced_count += 1
        processed_files.append(file_path)
        # print(f"文件 {file_path} 替换完成.")

        # 是否调试
        if DEBUG == 1:
            # 每处理完n个文件后,暂停并确认是否继续
            if files_replaced_count % int(DEBUGFILE) == 0:
                # 打印替换的文件列表
                print("已替换的文件列表:")
                for processed_file in processed_files[-int(DEBUGFILE) :]:
                    print(processed_file)
                # 搜索并终止包含"docker"的进程
                kill_docker_processes()
                # 终端提示命令
                print(f"{TIPSCOMMAND}")
                user_input = input(
                    "已处理n个文件,是否继续?(输入 'y' 回车继续,其他任意输入后回车取消): "
                )
                if user_input.lower() != "y":
                    print("处理已取消。恢复替换的文件...")
                    files_to_restore = processed_files[-int(DEBUGFILE) :]
                    for file_path in files_to_restore:
                        backup_file_path = file_path.replace(
                            TARGET_FOLDER, BACKUP_FOLDER
                        )
                        backup_file_path_escaped = backup_file_path.replace(" ", "\ ")
                        file_path_escaped = file_path.replace(" ", "\ ")
                        os.system(
                            f"cp -p {backup_file_path_escaped} {file_path_escaped}"
                        )
                        # print(f'cp -p {backup_file_path_escaped} {file_path_escaped}')
                    print(f"已从备份恢复刚才替换的 {len(files_to_restore)} 个文件。")
                    exit()
    except Exception as e:
        print(f"替换文件 {file_path} 出错:")
        print(f"错误信息: {e}")
        print("替换内容:")
        for replacement in json.load(open(REPLACE_TABLE))["replacements"]:
            print(f"{replacement['original']} -> {replacement['replacement']}")

print("被处理的文件列表:")
for file_path in processed_files:
    print(file_path)

# 获取所有.js文件列表
all_js_files = count_js_files(TARGET_FOLDER)
total_js_files = len(all_js_files)
print(f"目标目录下共有 {total_js_files} 个 .js 文件.")

# 是否调试
if DEBUG == 1:
    # 此次调试多少个
    debug_js_files = len(debug_js_files)
    print(
        f"此次调试替换 {debug_js_files} 个 .js 文件.在 {total_js_files} 中的 {debug_input} 个"
    )
    # 成功替换了多少个
    print(f"脚本执行完成. 总共替换了 {files_replaced_count} 个js文件.")
# 终端提示命令
print(f"{TIPSCOMMAND}")

{"replacements": [
{"original": "不要对此文件格式化,否则你会后悔","replacement": "**************************************"},
{"original": "以下就是没有双引号的","replacement": "**************************************"},
{"original": "CPUs available","replacement": "CPUs 可用"},
{"original": "avail. of","replacement": "可用。共"},
{"original": "Engine total disk usage. This includes containers plus overheads.","replacement": "docker引擎总磁盘使用率。这包括容器和日常开销磁盘大小。"},
{"original": "Last refresh: ","replacement": "最后刷新:"},
{"original": "以下是按降序排列","replacement": "**************************************"},
{"original": "u=`Manage","replacement": "u=`管理"},
{"original": "u=\"Manage\"","replacement": "u=\"管理\""},
{"original": "tooltipTitle:\"Copy your port's public URL to share with your teammates.\"","replacement": "tooltipTitle:\"复制您端口的公共URL以与您的队友共享。\""},
{"original": "title:\"Zoom in\"","replacement": "title:\"放大\""},
{"original": "title:\"YouTube video player\"","replacement": "title:\"YouTube视频播放器\""},
{"original": "title:\"Your running containers show up here\"","replacement": "title:\"这里显示您正在运行的容器\""},
{"original": "title:\"You are offline\"","replacement": "title:\"你离线了\""},
{"original": "title:\"WSL integration\"","replacement": "title:\"WSL集成\""},
{"original": "title:\"What's next?\"","replacement": "title:\"下一步是什么?\""},
{"original": "title:\"What is a container?\"","replacement": "title:\"什么是容器?\""},
{"original": "title:\"Welcome\"","replacement": "title:\"欢迎\""},
{"original": "title:\"Watch\"","replacement": "title:\"查看\""},
{"original": "title:\"Wasm Runtimes Installation\"","replacement": "title:\"Wasm运行时安装\""},
{"original": "title:\"Waiting for the Docker Engine...\"","replacement": "title:\"等待Docker引擎…\""},
{"original": "title:\"VsCode\"","replacement": "title:\"VsCode\""},
{"original": "title:\"Volumes\"","replacement": "title:\"卷\""},
{"original": "title:\"Visit scout.docker.com to regain access.\"","replacement": "title:\"访问scout.docker.com以重新获得访问权限。\""},
{"original": "title:\"Virtualization framework must be enabled when you use VirtioFS or Rosetta\"","replacement": "title:\"使用VirtioFS或Rosetta时必须启用虚拟化框架\""},
{"original": "title:\"View vulnerability in Docker Scout Dashboard\"","replacement": "title:\"查看Docker Scout仪表板中的漏洞\""},
{"original": "title:\"View the frontend\"","replacement": "title:\"查看前端\""},
{"original": "title:\"View Scout dashboard\"","replacement": "title:\"查看仪表板\""},
{"original": "title:\"View repository in Scout\"","replacement": "title:\"在Scout中查看存储库\""},
{"original": "title:\"View repository in Docker Scout Dashboard\"","replacement": "title:\"在Docker Scout仪表板中查看存储库\""},
{"original": "title:\"View policy trends and vulnerabilities for your images, packages, and dependencies.\"","replacement": "title:\"查看您的镜像、包和依赖项的策略趋势和漏洞。\""},
{"original": "title:\"View image in Docker Scout Dashboard\"","replacement": "title:\"在Docker Scout仪表板中查看镜像\""},
{"original": "title:\"Verify your Dockerfile\"","replacement": "title:\"验证您的Dockerfile\""},
{"original": "title:\"validateSteps\"","replacement": "title:\"验证步骤\""},
{"original": "title:\"Use containerd for pulling and storing images\"","replacement": "title:\"使用容器提取和存储镜像\""},
{"original": "title:\"Unsaved changes\"","replacement": "title:\"未保存的更改\""},
{"original": "title:\"Uninstall Docker Desktop\"","replacement": "title:\"卸载Docker桌面\""},
{"original": "title:\"Unable to load the terminal\"","replacement": "title:\"无法加载终端\""},
{"original": "title:\"Unable to connect to Docker Engine\"","replacement": "title:\"无法连接到Docker引擎\""},
{"original": "title:\"Turning off the Docker Engine...\"","replacement": "title:\"关闭Docker引擎…\""},
{"original": "title:\"Troubleshoot\"","replacement": "title:\"故障排除\""},
{"original": "title:\"Top Level Attributes\"","replacement": "title:\"顶级属性\""},
{"original": "title:\"Toggle regex search\"","replacement": "title:\"切换正则表达式搜索\""},
{"original": "title:\"This layer belongs to the selected image\"","replacement": "title:\"该层属于所选镜像\""},
{"original": "title:\"This layer belongs to a base image of the selected image\"","replacement": "title:\"该层属于所选镜像的基础镜像\""},
{"original": "title:\"This image will be removed from the image list once the new image is pulled.\"","replacement": "title:\"一旦拉取新镜像,此镜像将从镜像列表中删除。\""},
{"original": "title:\"This image has not been analyzed\"","replacement": "title:\"此镜像尚未分析\""},
{"original": "title:\"This builder node is inactive\"","replacement": "title:\"此构建器节点处于非活动状态\""},
{"original": "title:\"There was an error loading shared ports.\"","replacement": "title:\"加载共享端口时出错。\""},
{"original": "title:\"Terminal\"","replacement": "title:\"终端\""},
{"original": "title:\"Synchronized file shares\"","replacement": "title:\"同步文件共享\""},
{"original": "title:\"Switch to Linux containers to enable Extensions\"","replacement": "title:\"切换到Linux容器以启用扩展\""},
{"original": "title:\"Support\"","replacement": "title:\"技术支持\""},
{"original": "title:\"Stored data\"","replacement": "title:\"存储数据\""},
{"original": "title:\"Storage error\"","replacement": "title:\"存储错误\""},
{"original": "title:\"Stop\"","replacement": "title:\"停止\""},
{"original": "title:\"Stop your container\"","replacement": "title:\"停止你的容器\""},
{"original": "title:\"Stats\"","replacement": "title:\"统计\""},
{"original": "title:\"Starting the Docker Engine...\"","replacement": "title:\"启动Docker引擎…\""},
{"original": "title:\"Start\"","replacement": "title:\"开始\""},
{"original": "title:\"Start typing to search\"","replacement": "title:\"开始输入搜索\""},
{"original": "title:\"Source not found\"","replacement": "title:\"未找到来源\""},
{"original": "title:\"Sorry, something went wrong when uninstalling Docker\"","replacement": "title:\"抱歉,卸载Docker时出了问题\""},
{"original": "title:\"Some assembly required\"","replacement": "title:\"需要一些组装\""},
{"original": "title:\"Slack community\"","replacement": "title:\"Slack社区\""},
{"original": "title:\"Sign in to use Volume backup and share\"","replacement": "title:\"登录使用卷备份和共享\""},
{"original": "title:\"Sign in to Docker\"","replacement": "title:\"登录Docker\""},
{"original": "title:\"Sign in required\"","replacement": "title:\"需要登录\""},
{"original": "title:\"Shrink disk image\"","replacement": "title:\"收缩磁盘映像\""},
{"original": "title:\"Show package details\"","replacement": "title:\"显示包详细信息\""},
{"original": "title:\"Settings\"","replacement": "title:\"设置\""},
{"original": "title:\"Setting up your guide\"","replacement": "title:\"设置您的向导\""},
{"original": "title:\"Sensible defaults\"","replacement": "title:\"合理的默认值\""},
{"original": "title:\"Selected context requires sign in\"","replacement": "title:\"选定的context需要登录\""},
{"original": "title:\"Selected context is unsupported\"","replacement": "title:\"所选context不受支持\""},
{"original": "title:\"Select location(s)\"","replacement": "title:\"选择位置(s)\""},
{"original": "title:\"Secrets\"","replacement": "title:\"秘密\""},
{"original": "title:\"Search terminal\"","replacement": "title:\"搜索终端\""},
{"original": "title:\"Search for the image\"","replacement": "title:\"搜索镜像\""},
{"original": "title:\"Scroll to bottom\"","replacement": "title:\"滚动到底\""},
{"original": "title:\"Running the application\"","replacement": "title:\"运行应用程序\""},
{"original": "title:\"Running containers\"","replacement": "title:\"运行中的容器\""},
{"original": "title:\"Run your container\"","replacement": "title:\"运行你的容器\""},
{"original": "title:\"Run the image\"","replacement": "title:\"运行镜像\""},
{"original": "title:\"Run Docker Hub images\"","replacement": "title:\"运行Docker Hub映像\""},
{"original": "title:\"Restart\"","replacement": "title:\"重启\""},
{"original": "title:\"Restart Docker Desktop\"","replacement": "title:\"重启Docker桌面\""},
{"original": "title:\"Reset zoom\"","replacement": "title:\"重置缩放\""},
{"original": "title:\"Reset Kubernetes cluster\"","replacement": "title:\"重置 Kubernetes 集群\""},
{"original": "title:\"Reset Docker Desktop to factory defaults\"","replacement": "title:\"将Docker桌面重置为出厂默认值\""},
{"original": "title:\"Rename your image\"","replacement": "title:\"重命名您的镜像\""},
{"original": "title:\"Remove dev environment\"","replacement": "title:\"删除开发环境\""},
{"original": "title:\"Remove container\"","replacement": "title:\"删除容器\""},
{"original": "title:\"Remove application\"","replacement": "title:\"删除应用程序\""},
{"original": "title:\"Refresh\"","replacement": "title:\"刷新\""},
{"original": "title:\"Recents\"","replacement": "title:\"最近\""},
{"original": "title:\"React, ExpressJS, and MongoDB\"","replacement": "title:\"React、ExpressJS和MongoDB\""},
{"original": "title:\"Quit Docker Desktop?\"","replacement": "title:\"退出Docker桌面?\""},
{"original": "title:\"Push your image to Docker Hub\"","replacement": "title:\"将您的镜像推送到Docker Hub\""},
{"original": "title:\"Publish your image\"","replacement": "title:\"发布你的形象\""},
{"original": "title:\"Publish an extension\"","replacement": "title:\"发布扩展\""},
{"original": "title:\"Public roadmap\"","replacement": "title:\"公共路线图\""},
{"original": "title:\"Proxies\"","replacement": "title:\"代理\""},
{"original": "title:\"Projects\"","replacement": "title:\"项目\""},
{"original": "title:\"Previous match\"","replacement": "title:\"上一匹配\""},
{"original": "title:\"Ports\"","replacement": "title:\"端口\""},
{"original": "title:\"Plain-text view\"","replacement": "title:\"纯文本视图\""},
{"original": "title:\"Open\"","replacement": "title:\"打开\""},
{"original": "title:\"Open Project Folder\"","replacement": "title:\"打开项目文件夹\""},
{"original": "title:\"Open a project folder\"","replacement": "title:\"打开项目文件夹\""},
{"original": "title:\"Only show running containers\"","replacement": "title:\"只显示正在运行的容器\""},
{"original": "title:\"Not enough builds\"","replacement": "title:\"不足以构建\""},
{"original": "title:\"Not available\"","replacement": "title:\"不可用\""},
{"original": "title:\"No VEX statements in use\"","replacement": "title:\"没有使用VEX语句\""},
{"original": "title:\"No running terminals\"","replacement": "title:\"无运行终端\""},
{"original": "title:\"No results\"","replacement": "title:\"没有结果\""},
{"original": "title:\"No results found\"","replacement": "title:\"未找到结果\""},
{"original": "title:\"No response received\"","replacement": "title:\"未收到回复\""},
{"original": "title:\"No IPC events have been logged so far\"","replacement": "title:\"到目前为止还没有记录IPC事件\""},
{"original": "title:\"No extensions installed yet\"","replacement": "title:\"尚未安装扩展\""},
{"original": "title:\"No existing Compose projects\"","replacement": "title:\"没有现有的Compose项目\""},
{"original": "title:\"No Compose file selected\"","replacement": "title:\"未选择撰写文件\""},
{"original": "title:\"No Cloud Engines created\"","replacement": "title:\"没有创建云引擎\""},
{"original": "title:\"No Cloud Engines created\"","replacement": "title:\"没有创建云引擎\""},
{"original": "title:\"No build record found\"","replacement": "title:\"未找到构建记录\""},
{"original": "title:\"No active builds\"","replacement": "title:\"没有活动的构建\""},
{"original": "title:\"Next match\"","replacement": "title:\"下一匹配\""},
{"original": "title:\"Networks\"","replacement": "title:\"网络\""},
{"original": "title:\"Networks\"","replacement": "title:\"网络\""},
{"original": "title:\"Network\"","replacement": "title:\"网络\""},
{"original": "title:\"Multi-stage builds\"","replacement": "title:\"多阶段构建\""},
{"original": "title:\"Multi-container applications\"","replacement": "title:\"多容器应用\""},
{"original": "title:\"mouseLeave\"","replacement": "title:\"鼠标离开\""},
{"original": "title:\"More volume actions\"","replacement": "title:\"更多卷动作\""},
{"original": "title:\"Logs\"","replacement": "title:\"日志\""},
{"original": "title:\"Locked by your administrator\"","replacement": "title:\"被您的管理员锁定\""},
{"original": "title:\"Loading extensions\"","replacement": "title:\"加载扩展\""},
{"original": "title:\"Loading build history\"","replacement": "title:\"加载构建历史\""},
{"original": "title:\"List view\"","replacement": "title:\"列表视图\""},
{"original": "title:\"Learning center\"","replacement": "title:\"学习中心\""},
{"original": "title:\"Invalid path\"","replacement": "title:\"无效路径\""},
{"original": "title:\"Introducing Docker init\"","replacement": "title:\"介绍Docker init\""},
{"original": "title:\"Internal test page\"","replacement": "title:\"内测页面\""},
{"original": "title:\"Inspect\"","replacement": "title:\"检查\""},
{"original": "title:\"init\"","replacement": "title:\"初始化\""},
{"original": "title:\"Info\"","replacement": "title:\"信息\""},
{"original": "title:\"In Use\"","replacement": "title:\"使用中\""},
{"original": "title:\"Import\"","replacement": "title:\"导入\""},
{"original": "title:\"Images\"","replacement": "title:\"镜像\""},
{"original": "title:\"Images are used to run containers\"","replacement": "title:\"镜像用于运行容器\""},
{"original": "title:\"Image may have poor performance, or fail, if run via emulation\"","replacement": "title:\"如果通过仿真运行,镜像可能性能不佳或失败\""},
{"original": "title:\"How do I run a container?\"","replacement": "title:\"如何运行容器?\""},
{"original": "title:\"How bind mounts work\"","replacement": "title:\"绑定挂载是如何工作的\""},
{"original": "title:\"History\"","replacement": "title:\"历史\""},
{"original": "title:\"Healthcheck\"","replacement": "title:\"健康检查\""},
{"original": "title:\"Global Search\"","replacement": "title:\"全局搜索\""},
{"original": "title:\"Getting started\"","replacement": "title:\"入门\""},
{"original": "title:\"Get the sample application\"","replacement": "title:\"获取示例应用程序\""},
{"original": "title:\"Get an image\"","replacement": "title:\"获取镜像\""},
{"original": "title:\"Files\"","replacement": "title:\"文件\""},
{"original": "title:\"File sharing\"","replacement": "title:\"文件共享\""},
{"original": "title:\"Failed to stop the Docker Engine\"","replacement": "title:\"未能停止Docker引擎\""},
{"original": "title:\"Failed to start the Docker Engine\"","replacement": "title:\"启动Docker引擎失败\""},
{"original": "title:\"Failed to retrieve latest volume size.\"","replacement": "title:\"检索最新卷大小失败。\""},
{"original": "title:\"Failed to load layers\"","replacement": "title:\"加载层失败\""},
{"original": "title:\"Failed to fetch image analysis\"","replacement": "title:\"获取镜像分析失败\""},
{"original": "title:\"Extensions\"","replacement": "title:\"扩展\""},
{"original": "title:\"extension\"","replacement": "title:\"扩展\""},
{"original": "title:\"Explore the container\"","replacement": "title:\"浏览容器\""},
{"original": "title:\"Explore image on GitHub\"","replacement": "title:\"在GitHub上探索镜像\""},
{"original": "title:\"Exploit Prediction Scoring System predicts the likelihood of a vulnerability being exploited, helping you prioritize security fixes\"","replacement": "title:\"漏洞利用预测评分系统预测漏洞被利用的可能性,帮助您确定安全修复的优先级\""},
{"original": "title:\"Experimental Features\"","replacement": "title:\"实验特征\""},
{"original": "title:\"Expand\"","replacement": "title:\"扩展\""},
{"original": "title:\"Error\"","replacement": "title:\"错误\""},
{"original": "title:\"Error while fetching extensions\"","replacement": "title:\"获取扩展时出错\""},
{"original": "title:\"Environment\"","replacement": "title:\"环境\""},
{"original": "title:\"Environment Files\"","replacement": "title:\"环境文件\""},
{"original": "title:\"Enhanced Container Isolation on WSL requires WSL 2 version 1.1.3.0 or above\"","replacement": "title:\"WSL上增强的容器隔离需要WSL 2版本1.1.3.0或以上\""},
{"original": "title:\"Engine total disk usage. This includes containers plus overheads.\"","replacement": "title:\"引擎总磁盘使用量。这包括容器和开销。\""},
{"original": "title:\"Engine total CPU usage. This includes containers plus overheads.\"","replacement": "title:\"引擎总CPU使用率。这包括容器和开销。\""},
{"original": "title:\"Enable extensions in Settings\"","replacement": "title:\"在设置中启用扩展\""},
{"original": "title:\"Documentation\"","replacement": "title:\"文档\""},
{"original": "title:\"Docker Project\"","replacement": "title:\"Docker项目\""},
{"original": "title:\"Docker forums\"","replacement": "title:\"Docker论坛\""},
{"original": "title:\"Docker Engine stopped\"","replacement": "title:\"Docker引擎停止\""},
{"original": "title:\"Docker Engine is paused\"","replacement": "title:\"Docker引擎暂停\""},
{"original": "title:\"Docker Desktop\"","replacement": "title:\"Docker桌面\""},
{"original": "title:\"Docker Desktop uninstalled successfully\"","replacement": "title:\"Docker Desktop卸载成功\""},
{"original": "title:\"Docker community forum\"","replacement": "title:\"Docker社区论坛\""},
{"original": "title:\"Docker blog\"","replacement": "title:\"Docker博客\""},
{"original": "title:\"Dismiss\"","replacement": "title:\"解散\""},
{"original": "title:\"Digging into the compose.yaml\"","replacement": "title:\"深入挖掘comp.yaml\""},
{"original": "title:\"Develop\"","replacement": "title:\"发展\""},
{"original": "title:\"Develop the app\"","replacement": "title:\"开发应用\""},
{"original": "title:\"Dev Environments\"","replacement": "title:\"开发环境\""},
{"original": "title:\"Deploy\"","replacement": "title:\"部署\""},
{"original": "title:\"Depends On\"","replacement": "title:\"取决于\""},
{"original": "title:\"Delete\"","replacement": "title:\"删除\""},
{"original": "title:\"Delete volume\"","replacement": "title:\"删除卷\""},
{"original": "title:\"Delete everything and restart\"","replacement": "title:\"删除一切重启\""},
{"original": "title:\"Delete build history for this builder?\"","replacement": "title:\"删除此构建器的构建历史记录?\""},
{"original": "title:\"Delete and restart\"","replacement": "title:\"删除并重新启动\""},
{"original": "title:\"Data\"","replacement": "title:\"数据\""},
{"original": "title:\"Data limit exceeded\"","replacement": "title:\"超出数据限制\""},
{"original": "title:\"Create exception\"","replacement": "title:\"创建异常\""},
{"original": "title:\"Could not display information\"","replacement": "title:\"无法显示信息\""},
{"original": "title:\"Copied to clipboard!\"","replacement": "title:\"复制到剪贴板!\""},
{"original": "title:\"Containers\"","replacement": "title:\"容器\""},
{"original": "title:\"Containers on Docker Desktop\"","replacement": "title:\"Docker桌面上的容器\""},
{"original": "title:\"Containers can use volumes to store data\"","replacement": "title:\"容器可以使用卷来存储数据\""},
{"original": "title:\"Container in-use\"","replacement": "title:\"容器 使用中\""},
{"original": "title:\"Container data is isolated from your local folders\"","replacement": "title:\"容器数据与您的本地文件夹隔离\""},
{"original": "title:\"Compose Concepts\"","replacement": "title:\"构图概念\""},
{"original": "title:\"Community extensions\"","replacement": "title:\"社区扩展\""},
{"original": "title:\"Close search\"","replacement": "title:\"关闭搜索\""},
{"original": "title:\"Close file\"","replacement": "title:\"关闭文件\""},
{"original": "title:\"Clone project to folder\"","replacement": "title:\"将项目克隆到文件夹\""},
{"original": "title:\"click\"","replacement": "title:\"点击\""},
{"original": "title:\"Clear\"","replacement": "title:\"清除\""},
{"original": "title:\"Clear terminal\"","replacement": "title:\"清空终端\""},
{"original": "title:\"Clean / Purge data\"","replacement": "title:\"清理/清除数据\""},
{"original": "title:\"Change selected builder\"","replacement": "title:\"更改选定的构建器\""},
{"original": "title:\"Can't compute history\"","replacement": "title:\"无法计算历史\""},
{"original": "title:\"Cannot connect to builder\"","replacement": "title:\"无法连接到构建器\""},
{"original": "title:\"Cannot change shared directories\"","replacement": "title:\"无法更改共享目录\""},
{"original": "title:\"Builds\"","replacement": "title:\"构建\""},
{"original": "title:\"Building images\"","replacement": "title:\"构建镜像\""},
{"original": "title:\"Builder Node Error\"","replacement": "title:\"构建器节点错误\""},
{"original": "title:\"Builder error\"","replacement": "title:\"生成器错误\""},
{"original": "title:\"buildDetailsErrorScreen\"","replacement": "title:\"构建错误细节截图\""},
{"original": "title:\"Build\"","replacement": "title:\"构建\""},
{"original": "title:\"Build your first image\"","replacement": "title:\"构建你的第一个形象\""},
{"original": "title:\"Build in progress\"","replacement": "title:\"在建\""},
{"original": "title:\"Build history\"","replacement": "title:\"构建历史\""},
{"original": "title:\"Build error\"","replacement": "title:\"构建错误\""},
{"original": "title:\"Bind mounts\"","replacement": "title:\"映射目录\""},
{"original": "title:\"Attributes\"","replacement": "title:\"属性\""},
{"original": "title:\"Application Error\"","replacement": "title:\"应用程序错误\""},
{"original": "title:\"Analyzing images is not yet supported in combination with the experimental containerd image store\"","replacement": "title:\"尚不支持结合实验性容器镜像存储分析镜像\""},
{"original": "title:\"Analyzing image\"","replacement": "title:\"分析镜像\""},
{"original": "title:\"An unexpected error occurred\"","replacement": "title:\"发生意外错误\""},
{"original": "title:\"Allow Docker Scout to notify you about vulnerabilities in your images\"","replacement": "title:\"允许Docker Scout通知您镜像中的漏洞\""},
{"original": "title:\"Advanced\"","replacement": "title:\"高级\""},
{"original": "title:\"Adding volumes to Compose\"","replacement": "title:\"添加卷以撰写\""},
{"original": "title:\"Adding bind mounts to Compose\"","replacement": "title:\"向Compose添加绑定挂载\""},
{"original": "title:\"Add Extensions\"","replacement": "title:\"添加扩展\""},
{"original": "title:\"Active builds\"","replacement": "title:\"执行构建\""},
{"original": "title:\"Actions\"","replacement": "title:\"执行\""},
{"original": "title:\"Access your local folder from a container\"","replacement": "title:\"从容器访问本地文件夹\""},
{"original": "title:\"About Docker Desktop\"","replacement": "title:\"关于Docker桌面\""},
{"original": "title:\"A terminal directly within Docker Desktop\"","replacement": "title:\"直接在Docker Desktop中的终端\""},
{"original": "text:\"Build history\"","replacement": "text:\"构建历史\""},
{"original": "text:\"Browse the list\"","replacement": "text:\"浏览列表\""},
{"original": "t=\"desktop-linux\"","replacement": "t=\"桌面Linux\""},
{"original": "subtitle:\"Unfortunately, something went wrong.\"","replacement": "副title:\"不幸的是,出了点问题。\""},
{"original": "status:\"loading\"","replacement": "status:\"载入\""},
{"original": "status:\"inactive\"","replacement": "status:\"不活动的\""},
{"original": "screen:\"buildersSettings\"","replacement": "screen:\"构建器设置\""},
{"original": "return:\"produce can only be called on things that are draftable: plain objects, arrays, Map, Set or classes that are marked with\"","replacement": "return:\"只能在可起草的事物上调用产品:普通对象、数组、Map、Set或标有\""},
{"original": "notificationTitle:\"Volume import\"","replacement": "notificationTitle:\"导入卷\""},
{"original": "notificationTitle:\"Volume Export\"","replacement": "notificationTitle:\"批量导出\""},
{"original": "notificationTitle:\"Volume empty\"","replacement": "notificationTitle:\"清空卷\""},
{"original": "notificationTitle:\"Volume backup\"","replacement": "notificationTitle:\"备份卷\""},
{"original": "message:\"Restart Docker Desktop\"","replacement": "message:\"重新启动Docker桌面\""},
{"original": "memory:\"Total amount of memory consumed by running container processes. Note that Docker will use available free memory for caching but this cache will be released when memory is needed by containers.\"","replacement": "memory:\"正在运行的容器进程消耗的内存总量。请注意,Docker将使用可用的可用内存进行缓存,但当容器需要内存时,此缓存将被释放。\""},
{"original": "mainTitle:\"Successful\"","replacement": "mainTitle:\"成功\""},
{"original": "mainTitle:\"Preparing\"","replacement": "mainTitle:\"准备\""},
{"original": "mainTitle:\"Error\"","replacement": "mainTitle:\"错误\""},
{"original": "label:'Volumes'","replacement": "label:'存储卷'"},
{"original": "label:'Images'","replacement": "label:'镜像'"},
{"original": "label:'Containers'","replacement": "label:'容器'"},
{"original": "label:`Volumes`","replacement": "label:`存储卷`"},
{"original": "label:`Images`","replacement": "label:`镜像`"},
{"original": "label:`Containers`","replacement": "label:\"容器\""},
{"original": "label:\"Yes\"","replacement": "label:\"是\""},
{"original": "label:\"Yes, reset anyway\"","replacement": "label:\"是的,无论如何都要重置\""},
{"original": "label:\"Yes, reset anyway\"","replacement": "label:\"是的,无论如何都要重置\""},
{"original": "label:\"Windows Containers\"","replacement": "label:\"Windows容器\""},
{"original": "label:\"Weekly\"","replacement": "label:\"每周\""},
{"original": "label:\"Vulnerabilities\"","replacement": "label:\"漏洞\""},
{"original": "label:\"Vulnerabilities \"","replacement": "label:\"漏洞 \""},
{"original": "label:\"Volumes\"","replacement": "label:\"存储卷\""},
{"original": "label:\"Virtual disk limit:\"","replacement": "label:\"虚拟磁盘限制:\""},
{"original": "label:\"View\"","replacement": "label:\"查看\""},
{"original": "label:\"Value\"","replacement": "label:\"值\""},
{"original": "label:\"Use system settings\"","replacement": "label:\"使用系统设置\""},
{"original": "label:\"Use only IPv6 networking\"","replacement": "label:\"仅使用IPv6网络\""},
{"original": "label:\"Use kernel networking for UDP\"","replacement": "label:\"为内核网络使用UDP协议\""},
{"original": "label:\"Use kernel networking for UDP\"","replacement": "label:\"为UDP使用内核网络\""},
{"original": "label:\"Use Enhanced Container Isolation\"","replacement": "label:\"使用增强的容器隔离\""},
{"original": "label:\"Use containerd for pulling and storing images\"","replacement": "label:\"使用容器提取和存储镜像\""},
{"original": "label:\"Upgrade\"","replacement": "label:\"升级\""},
{"original": "label:\"Update and restart\"","replacement": "label:\"更新并重启\""},
{"original": "label:\"Uninstall\"","replacement": "label:\"卸载\""},
{"original": "label:\"Undo\"","replacement": "label:\"撤消\""},
{"original": "label:\"Troubleshoot\"","replacement": "label:\"故障排除\""},
{"original": "label:\"Time\"","replacement": "label:\"时间\""},
{"original": "label:\"Swap:\"","replacement": "label:\"交换:\""},
{"original": "label:\"Status updates on tasks and processes\"","replacement": "label:\"任务和流程的状态更新\""},
{"original": "label:\"Start Docker Desktop when you sign in to your computer\"","replacement": "label:\"登录计算机时启动Docker Desktop\""},
{"original": "label:\"Specify time\"","replacement": "label:\"指定时间\""},
{"original": "label:\"Software updates\"","replacement": "label:\"软件更新\""},
{"original": "label:\"Sign Out\"","replacement": "label:\"退出\""},
{"original": "label:\"Show system containers (advanced)\"","replacement": "label:\"显示系统容器(高级)\""},
{"original": "label:\"Show Docker Extensions system containers\"","replacement": "label:\"显示Docker扩展系统容器\""},
{"original": "label:\"Show CLI hints\"","replacement": "label:\"显示CLI提示\""},
{"original": "label:\"Severity\"","replacement": "label:\"严重性\""},
{"original": "label:\"Settings\"","replacement": "label:\"设置\""},
{"original": "label:\"Send usage statistics\"","replacement": "label:\"发送使用统计信息\""},
{"original": "label:\"Select All\"","replacement": "label:\"全选\""},
{"original": "label:\"SBOM indexing\"","replacement": "label:\"SBOM索引\""},
{"original": "label:\"Restart\"","replacement": "label:\"重启\""},
{"original": "label:\"Resources\"","replacement": "label:\"资源\""},
{"original": "label:\"Remove\"","replacement": "label:\"删除\""},
{"original": "label:\"Registry\"","replacement": "label:\"注册表\""},
{"original": "label:\"Redo\"","replacement": "label:\"重做\""},
{"original": "label:\"Recommendations from Docker\"","replacement": "label:\"来自Docker的建议\""},
{"original": "label:\"Re-apply configurations\"","replacement": "label:\"重新应用配置\""},
{"original": "label:\"Raw JSON\"","replacement": "label:\"原始JSON\""},
{"original": "label:\"Quit\"","replacement": "label:\"退出\""},
{"original": "label:\"Quit Docker Desktop\"","replacement": "label:\"退出Docker桌面\""},
{"original": "label:\"Proxies\"","replacement": "label:\"代理\""},
{"original": "label:\"Paste\"","replacement": "label:\"粘贴\""},
{"original": "label:\"Packages \"","replacement": "label:\"包 \""},
{"original": "label:\"Package type\"","replacement": "label:\"包装类型\""},
{"original": "label:\"Open Settings\"","replacement": "label:\"打开设置\""},
{"original": "label:\"Open IPC dev tools\"","replacement": "label:\"开放IPC开发工具\""},
{"original": "label:\"Open Internal Test Page\"","replacement": "label:\"打开内部测试页面\""},
{"original": "label:\"Open Global Search\"","replacement": "label:\"打开全局搜索\""},
{"original": "label:\"Open Extensions DevTools\"","replacement": "label:\"开放扩展开发工具\""},
{"original": "label:\"Open Docker Dashboard when Docker Desktop starts\"","replacement": "label:\"Docker Desktop启动时打开Docker仪表板\""},
{"original": "label:\"Notifications\"","replacement": "label:\"通知\""},
{"original": "label:\"New image\"","replacement": "label:\"新形象\""},
{"original": "label:\"Network\"","replacement": "label:\"网络\""},
{"original": "label:\"My Contexts\"","replacement": "label:\"我的背景\""},
{"original": "label:\"Monthly\"","replacement": "label:\"每月\""},
{"original": "label:\"Memory limit:\"","replacement": "label:\"内存限制:\""},
{"original": "label:\"Manage Synchronized file shares with Compose\"","replacement": "label:\"使用Compose管理同步文件共享\""},
{"original": "label:\"Manage Synchronized file shares with Compose\"","replacement": "label:\"使用 Compose 管理同步文件共享\""},
{"original": "label:\"Local image\"","replacement": "label:\"本地镜像\""},
{"original": "label:\"Local file\"","replacement": "label:\"本地文件\""},
{"original": "label:\"Light\"","replacement": "label:\"亮\""},
{"original": "label:\"Kubernetes Context\"","replacement": "label:\"Kubernetes 上下文\""},
{"original": "label:\"is at most\"","replacement": "label:\"最多是\""},
{"original": "label:\"Include VM in Time Machine backups\"","replacement": "label:\"在Time Machine备份中包含虚拟机\""},
{"original": "label:\"Images\"","replacement": "label:\"镜像\""},
{"original": "label:\"Images \"","replacement": "label:\"镜像 \""},
{"original": "label:\"Image name\"","replacement": "label:\"图title称\""},
{"original": "label:\"Give feedback\"","replacement": "label:\"提供反馈\""},
{"original": "label:\"General\"","replacement": "label:\"通用\""},
{"original": "label:\"Fixable packages\"","replacement": "label:\"可修复包\""},
{"original": "label:\"Filter\"","replacement": "label:\"过滤器\""},
{"original": "label:\"Filter by platform\"","replacement": "label:\"按平台过滤\""},
{"original": "label:\"File sharing\"","replacement": "label:\"文件共享\""},
{"original": "label:\"Features in development\"","replacement": "label:\"开发中的功能\""},
{"original": "label:\"Extensions\"","replacement": "label:\"扩展\""},
{"original": "label:\"ERROR\"","replacement": "label:\"错误\""},
{"original": "label:\"Enable Resource Saver\"","replacement": "label:\"启用资源保护程序\""},
{"original": "label:\"Enable Kubernetes\"","replacement": "label:\"开启 Kubernetes\""},
{"original": "label:\"Enable host networking\"","replacement": "label:\"启用主机网络\""},
{"original": "label:\"Enable Experimental Features\"","replacement": "label:\"启用实验功能\""},
{"original": "label:\"Enable Docker Extensions\"","replacement": "label:\"启用Docker扩展\""},
{"original": "label:\"Enable Docker Debug by default\"","replacement": "label:\"默认启用Docker调试\""},
{"original": "label:\"Enable background SBOM indexing\"","replacement": "label:\"启用后台SBOM索引\""},
{"original": "label:\"Enable and restart\"","replacement": "label:\"启用并重新启动\""},
{"original": "label:\"Downloading update...\"","replacement": "label:\"正在下载更新…\""},
{"original": "label:\"Download update\"","replacement": "label:\"下载更新\""},
{"original": "label:\"Documentation\"","replacement": "label:\"文档\""},
{"original": "label:\"Docker surveys\"","replacement": "label:\"Docker调查\""},
{"original": "label:\"Docker Engine\"","replacement": "label:\"Docker引擎\""},
{"original": "label:\"Docker Context\"","replacement": "label:\"Docker上下文\""},
{"original": "label:\"Docker announcements\"","replacement": "label:\"Docker公告\""},
{"original": "label:\"Disk image location\"","replacement": "label:\"磁盘映像位置\""},
{"original": "label:\"Dev Environments\"","replacement": "label:\"开发环境\""},
{"original": "label:\"Delete\"","replacement": "label:\"删除\""},
{"original": "label:\"Debug mode\"","replacement": "label:\"调试模式\""},
{"original": "label:\"Data received\"","replacement": "label:\"收到的数据\""},
{"original": "label:\"Dark\"","replacement": "label:\"黑\""},
{"original": "label:\"Daily\"","replacement": "label:\"每日\""},
{"original": "label:\"Cut\"","replacement": "label:\"剪切\""},
{"original": "label:\"Create\"","replacement": "label:\"创建\""},
{"original": "label:\"CPU limit:\"","replacement": "label:\"CPU限制:\""},
{"original": "label:\"Copy\"","replacement": "label:\"复制\""},
{"original": "label:\"Containers\"","replacement": "label:\"容器\""},
{"original": "label:\"Configs changed by another App\"","replacement": "label:\"被另一个应用程序更改的配置\""},
{"original": "label:\"Command\"","replacement": "label:\"命令\""},
{"original": "label:\"Close\"","replacement": "label:\"关闭\""},
{"original": "label:\"Check for updates\"","replacement": "label:\"检查更新\""},
{"original": "label:\"CANCELED\"","replacement": "label:\"已取消\""},
{"original": "label:\"CACHED\"","replacement": "label:\"缓存\""},
{"original": "label:\"Builds\"","replacement": "label:\"构建\""},
{"original": "label:\"Builders\"","replacement": "label:\"构建\""},
{"original": "label:\"Browse\"","replacement": "label:\"浏览\""},
{"original": "label:\"Beta\"","replacement": "label:\"测试版\""},
{"original": "label:\"Automatically check for updates\"","replacement": "label:\"自动检查更新\""},
{"original": "label:\"Automatically check configuration\"","replacement": "label:\"自动检查配置\""},
{"original": "label:\"Always download updates\"","replacement": "label:\"始终下载更新\""},
{"original": "label:\"Allow the default Docker socket to be used (requires password)\"","replacement": "label:\"允许使用默认Docker套接字(需要密码)\""},
{"original": "label:\"Allow privileged port mapping (requires password)\"","replacement": "label:\"允许特权端口映射(需要密码)\""},
{"original": "label:\"Allow only extensions distributed through the Docker Marketplace\"","replacement": "label:\"仅允许通过Docker Marketplace分发的扩展\""},
{"original": "label:\"Age\"","replacement": "label:\"年龄\""},
{"original": "label:\"Advanced\"","replacement": "label:\"高级\""},
{"original": "label:\"Account Settings\"","replacement": "label:\"帐户设置\""},
{"original": "label:\"Access experimental features\"","replacement": "label:\"访问实验功能\""},
{"original": "label:\"About\"","replacement": "label:\"关于\""},
{"original": "label:\"About Docker Desktop\"","replacement": "label:\"关于Docker桌面\""},
{"original": "label:\"6 months\"","replacement": "label:\"6个月\""},
{"original": "label:\"3 months\"","replacement": "label:\"3个月\""},
{"original": "label:\"1 year\"","replacement": "label:\"1年\""},
{"original": "label:\"1 week\"","replacement": "label:\"1周\""},
{"original": "label:\"1 month\"","replacement": "label:\"1个月\""},
{"original": "headerName:\"Status\"","replacement": "headerName:\"状态\""},
{"original": "headerName:\"Size\"","replacement": "headerName:\"文件大小\""},
{"original": "headerName:\"Name\"","replacement": "headerName:\"名称\""},
{"original": "headerName:\"Last started\"","replacement": "headerName:\"开始时间\""},
{"original": "headerName:\"Image\"","replacement": "headerName:\"镜像\""},
{"original": "headerName:\"Actions\"","replacement": "headerName:\"操作\""},
{"original": "detail:\"You are about to restart Docker Desktop. A restart stops all running containers. No data will be lost otherwise.\\n\\nDo you want to continue?\"","replacement": "detail:\"您即将重新启动Docker Desktop。重新启动会停止所有正在运行的容器。否则不会丢失任何数据。\\n\\n你想继续吗?\""},
{"original": "description\":\"Specify network bridge IP.\"","replacement": "description\":\"指定网桥IP。\""},
{"original": "description\":\"Set the default address pool for local node networks.\"","replacement": "description\":\"设置本地节点网络的默认地址池。\""},
{"original": "description\":\"Set the containers network MTU.\"","replacement": "description\":\"设置容器网络MTU。\""},
{"original": "description\":\"Enable inter-container communication.\"","replacement": "description\":\"启用容器间通信。\""},
{"original": "description\":\"Enable insecure registry communication.\"","replacement": "description\":\"启用不安全的注册表通信。\""},
{"original": "description\":\"Enable experimental features.\"","replacement": "description\":\"启用实验功能。\""},
{"original": "description\":\"Enable debug mode.\"","replacement": "description\":\"启用调试模式。\""},
{"original": "description\":\"Attach containers to a network bridge.\"","replacement": "description\":\"将容器附加到网桥。\""},
{"original": "description:\"You can either build an image from a Dockerfile, or download an existing image to run\"","replacement": "description:\"您可以从Dockerfile构建镜像,也可以下载现有镜像运行\""},
{"original": "description:\"Specify your environment files\"","replacement": "description:\"指定您的环境文件\""},
{"original": "description:\"Simple todo list application\"","replacement": "description:\"简单的待办事项列表应用程序\""},
{"original": "description:\"Publish an extension on the Marketplace automatically or request a review from the Docker extension team.\"","replacement": "description:\"自动在Marketplace上发布扩展或请求Docker扩展团队进行审查。\""},
{"original": "description:\"Our documentation walks you through the process of building your own extension. It also provides sample folders with ready-to-go examples.\"","replacement": "description:\"我们的留档将引导您完成构建自己的扩展程序的过程。它还提供带有现成示例的示例文件夹。\""},
{"original": "description:\"Mount any file or directory from your local machine onto a container\"","replacement": "description:\"将本地计算机中的任何文件或目录挂载到容器上\""},
{"original": "description:\"Manage services deployment in Docker Swarm mode\"","replacement": "description:\"在Docker Swarm模式下管理服务部署\""},
{"original": "description:\"Learn how to start building your own Docker Extensions from our DockerCon 2022 talk that walks you through the Docker Extension development process.\"","replacement": "description:\"从我们的DockerCon 2022讨论中了解如何开始构建自己的Docker扩展,该讨论将引导您完成Docker扩展开发过程。\""},
{"original": "description:\"Java application with Spring framework\"","replacement": "description:\"JavaSpring框架的应用程序\""},
{"original": "description:\"Images are defined with the help of a Dockerfile that's usually in your application's root directory\"","replacement": "description:\"镜像是在Dockerfile的帮助下定义的,Dockerfile通常位于应用程序的根目录中\""},
{"original": "description:\"Find a list of Docker extensions curated by the Collabnix community members.\"","replacement": "description:\"查找由Collabnix社区成员策划的Docker扩展列表。\""},
{"original": "description:\"Docker Extensions let you use third-party tools within Docker Desktop to extend its functionality.\"","replacement": "description:\"Docker扩展允许您使用Docker Desktop中的第三方工具来扩展其功能。\""},
{"original": "description:\"Defining and running multi-container Docker applications\"","replacement": "description:\"定义和运行多容器Docker应用程序\""},
{"original": "description:\"Define which network is your service included in\"","replacement": "description:\"定义您的服务包含在哪个网络中\""},
{"original": "description:\"Configure your container ports\"","replacement": "description:\"配置您的容器端口\""},
{"original": "description:\"Associate a volume with your service\"","replacement": "description:\"将卷与您的服务相关联\""},
{"original": "description:\"All data in a container is lost once it is removed. Containers use volumes to persist data.\"","replacement": "description:\"容器中的所有数据一旦被删除就会丢失。容器使用卷来持久化数据。\""},
{"original": "description:\"Add helper configuration for local development\"","replacement": "description:\"为本地开发添加辅助配置\""},
{"original": "cpu:\"% of available CPU currently in use by containers. For example, with 4 available CPUs, the CPU usage can be up to 400%. Note that Docker will use some of the remaining CPU for system services like networking.\"","replacement": "cpu:\"容器当前使用的可用CPU的%。例如,使用4个可用CPU,CPU使用率最高可达400%。请注意,Docker将使用一些剩余的CPU用于网络等系统服务。\""},
{"original": "context=\"Apply settings\"","replacement": "context=\"应用设置\""},
{"original": "context:\"Volumes List\"","replacement": "context:\"卷列表\""},
{"original": "context:\"settingsFeaturesControl\"","replacement": "context:\"设置功能控制\""},
{"original": "context:\"Images List\"","replacement": "context:\"镜像列表\""},
{"original": "context:\"Containers List\"","replacement": "context:\"容器列表\""},
{"original": "context:\"Check for updates\"","replacement": "context:\"检查更新\""},
{"original": "content:\"You can install extensions from the marketplace.\"","replacement": "content:\"您可以从市场安装扩展程序。\""},
{"original": "content:\"Sign into your Docker account to start experiencing the power and convenience of cloud-backed local development today!\"","replacement": "content:\"登录您的Docker帐户,立即开始体验云支持的本地开发的强大功能和便利性!\""},
{"original": "content:\"Import a Docker Compose project to experience a new intuitive way of viewing your Compose configuration files\"","replacement": "content:\"导入Docker Compose项目以体验查看Compose配置文件的新直观方式\""},
{"original": "content:\"Create a cloud-based Docker engine that feels just like your local engine and start harnessing the the power of the cloud today.\"","replacement": "content:\"创建一个基于云的Docker引擎,感觉就像您的本地引擎,并立即开始利用云的力量。\""},
{"original": "content:\"Change your search term and try again.\"","replacement": "content:\"更改您的搜索词,然后重试。\""},
{"original": "children:\"YOUR-USERNAME\"","replacement": "children:\"您的-用户名\""},
{"original": "children:\"You're up to date\"","replacement": "children:\"你是最新的\""},
{"original": "children:\"You're all set\"","replacement": "children:\"你都准备好了\""},
{"original": "children:\"You'll always receive error notifications and notifications about new Docker Desktop releases and updates.\"","replacement": "children:\"您将始终收到错误通知以及有关新Docker Desktop版本和更新的通知。\""},
{"original": "children:\"You now have a running container. If you don't have a name for your container, Docker provides one. View your container live by selecting the link below the container's name.\"","replacement": "children:\"您现在有一个正在运行的容器。如果您没有容器的名称,Docker会提供一个。通过选择容器名称下方的链接实时查看您的容器。\""},
{"original": "children:\"You may need to quit and restart Docker Desktop for changes on this page to take effect.\"","replacement": "children:\"您可能需要退出并重新启动Docker Desktop才能使此页面上的更改生效。\""},
{"original": "children:\"You learned how to run a container from a single image. Next, learn how you can run other people's images from Docker Hub.\"","replacement": "children:\"您学习了如何从单个映像运行容器。接下来,了解如何从Docker Hub运行其他人的映像。\""},
{"original": "children:\"You learned how to persist data in your container. Next, learn how to access a local directory from a container.\"","replacement": "children:\"您学习了如何将数据持久化在容器中。接下来,学习如何从容器访问本地目录。\""},
{"original": "children:\"You learned how to containerize your application. Next, learn how to publish your own image to Docker Hub.\"","replacement": "children:\"您学习了如何将应用程序容器化。接下来,学习如何将自己的映像发布到Docker Hub。\""},
{"original": "children:\"You learned how to access a local directory from a container. Next, learn how you can containerize your application.\"","replacement": "children:\"您学习了如何从容器访问本地目录。接下来,了解如何将应用程序容器化。\""},
{"original": "children:\"You just saw how to run multiple containers at the same time. However, when the db container was deleted and recreated you lost all the todos. Next you can learn how to persist data in the db container.\"","replacement": "children:\"您刚刚看到了如何同时运行多个容器。但是,当db容器被删除并重新创建时,您丢失了所有待办事项。接下来,您可以学习如何将数据持久化到db容器中。\""},
{"original": "children:\"You just saw a container in action. Next, you will learn how to run a container.\"","replacement": "children:\"你刚刚看到了一个容器在运行。接下来,你将学习如何运行一个容器。\""},
{"original": "children:\"You currently have access to the following experimental features:\"","replacement": "children:\"您目前可以访问以下实验功能:\""},
{"original": "children:\"You are using the WSL 2 backend, so resource limits are managed by Windows.\"","replacement": "children:\"您正在使用WSL 2后端,因此资源限制由Windows管理。\""},
{"original": "children:\"Yes\"","replacement": "children:\"是\""},
{"original": "children:\"Would you like to pull this image?\"","replacement": "children:\"你想拉这个镜像吗?\""},
{"original": "children:\"Window focus\"","replacement": "children:\"窗口焦点\""},
{"original": "children:\"When developing with Docker, you may need to automatically update and preview your running services as you edit and save your code. We use docker compose watch for this.\"","replacement": "children:\"使用Docker进行开发时,您可能需要在编辑和保存代码时自动更新和预览正在运行的服务。我们为此使用docker compose watch。\""},
{"original": "children:\"When cloning a Git repository using SSH, ensure you've added your SSH key to the ssh-agent.\"","replacement": "children:\"使用SSH克隆Git存储库时,确保您已将SSH密钥添加到ssh-agent。\""},
{"original": "children:\"What's your role?\"","replacement": "children:\"你的角色是什么?\""},
{"original": "children:\"What will you use Docker for?\"","replacement": "children:\"你会用Docker做什么?\""},
{"original": "children:\"We've reported this to our error tracker.\"","replacement": "children:\"我们已经向错误跟踪器报告了此事。\""},
{"original": "children:\"welcome-to-docker\"","replacement": "children:\"欢迎来到docker\""},
{"original": "children:\"Welcome to Docker Desktop\"","replacement": "children:\"欢迎来到Docker桌面\""},
{"original": "children:\"Welcome Survey\"","replacement": "children:\"欢迎调查\""},
{"original": "children:\"We created a run configuration based on your project folder. You can always configure and add new configurations later.\"","replacement": "children:\"我们根据您的项目文件夹创建了一个运行配置。您可以随时稍后配置和添加新配置。\""},
{"original": "children:\"Watch tutorial\"","replacement": "children:\"查看教程\""},
{"original": "children:\"Wasm workloads\"","replacement": "children:\"Wasm工作负载\""},
{"original": "children:\"Walkthroughs\"","replacement": "children:\"演练\""},
{"original": "children:\"Vulnerability\"","replacement": "children:\"脆弱性\""},
{"original": "children:\"Vulnerabilities\"","replacement": "children:\"漏洞\""},
{"original": "children:\"volumes\"","replacement": "children:\"卷\""},
{"original": "children:\"Volumes\"","replacement": "children:\"存储卷\""},
{"original": "children:\"Virtual file shares\"","replacement": "children:\"虚拟文件共享\""},
{"original": "children:\"VirtioFS brings improved I/O performance for operations on bind mounts. Enabling VirtioFS will automatically enable Virtualization framework. Available in macOS 12.5 and above.\"","replacement": "children:\"VirtioFS为绑定挂载上的操作带来了改进的I/O性能。启用VirtioFS将自动启用虚拟化框架。适用于macOS 12.5及更高版本。\""},
{"original": "children:\"View the language-specific guides in the Docker documentation.\"","replacement": "children:\"在Docker留档中查看特定语言的向导。\""},
{"original": "children:\"View report\"","replacement": "children:\"查看报告\""},
{"original": "children:\"View packages and CVEs\"","replacement": "children:\"查看包和CVEs\""},
{"original": "children:\"View on Hub\"","replacement": "children:\"在Hub上查看\""},
{"original": "children:\"View more in the Learning center\"","replacement": "children:\"在学习中心查看更多\""},
{"original": "children:\"View details\"","replacement": "children:\"查看详情\""},
{"original": "children:\"Very satisfied\"","replacement": "children:\"非常满意\""},
{"original": "children:\"Version\"","replacement": "children:\"版本\""},
{"original": "children:\"Uses Virtualization framework for creating and managing Docker Desktop Linux VM in macOS 12.5 and above.\"","replacement": "children:\"使用虚拟化框架在macOS 12.5及更高版本中创建和管理Docker桌面Linux虚拟机。\""},
{"original": "children:\"Used\"","replacement": "children:\"已用\""},
{"original": "children:\"Use\"","replacement": "children:\"使用\""},
{"original": "children:\"Use this if you need support for multi-platform images, image lazy-loading, or Wasm.\"","replacement": "children:\"如果您需要对多平台镜像、镜像延迟加载或Wasm的支持,请使用它。\""},
{"original": "children:\"Use the slider to set the duration of time between no containers running and Docker Desktop entering Resource Saver mode.\"","replacement": "children:\"使用滑块设置无容器运行和Docker Desktop进入资源保护模式之间的持续时间。\""},
{"original": "children:\"Use IPv6 networking only. Requires Docker Desktop restart.\"","replacement": "children:\"仅使用IPv6网络。需要重新启动Docker Desktop。\""},
{"original": "children:\"Use a more efficient kernel networking path for UDP. This may not be compatible with your VPN software.\"","replacement": "children:\"为内核使用高效的UDP协议。这可能与您的VPN软件不兼容。\""},
{"original": "children:\"Use a container locally as a full development environment.\"","replacement": "children:\"在本地使用容器作为完整的开发环境。\""},
{"original": "children:\"Uploading ...\"","replacement": "children:\"上传中……\""},
{"original": "children:\"Upload to get a Diagnostic ID\"","replacement": "children:\"上传以获取诊断ID\""},
{"original": "children:\"Upload diagnostics\"","replacement": "children:\"上传诊断\""},
{"original": "children:\"Upgrade\"","replacement": "children:\"升级\""},
{"original": "children:\"Update\"","replacement": "children:\"更新\""},
{"original": "children:\"Uninstall\"","replacement": "children:\"卸载\""},
{"original": "children:\"Type\"","replacement": "children:\"类型\""},
{"original": "children:\"Turns on Rosetta to accelerate x86_64/amd64 binary emulation on Apple Silicon. Note: You must have Virtualization framework enabled.\"","replacement": "children:\"打开Rosetta以加速苹果硅上的x86_64/amd64二进制仿真。注意:您必须启用虚拟化框架。\""},
{"original": "children:\"Turning this option off will uninstall all extensions and disable all extension features.\"","replacement": "children:\"关闭此选项将卸载所有扩展并禁用所有扩展功能。\""},
{"original": "children:\"Try our new self-diagnose tool\"","replacement": "children:\"试试我们新的自我诊断工具\""},
{"original": "children:\"troubleshooting page\"","replacement": "children:\"故障排除页面\""},
{"original": "children:\"Total steps\"","replacement": "children:\"总步骤\""},
{"original": "children:\"Total build time\"","replacement": "children:\"总构建时间\""},
{"original": "children:\"todo-database\"","replacement": "children:\"待办事项-数据库\""},
{"original": "children:\"To view results from your remote repositories on Hub, sign in.\"","replacement": "children:\"要在Hub上查看远程存储库的结果,请登录。\""},
{"original": "children:\"to open\"","replacement": "children:\"打开\""},
{"original": "children:\"to navigate\"","replacement": "children:\"导航\""},
{"original": "children:\"To do this, open a terminal and run:\"","replacement": "children:\"为此,打开终端并运行:\""},
{"original": "children:\"to close\"","replacement": "children:\"关闭\""},
{"original": "children:\"Tip: You can also pause the Docker Engine instead of turning it off to free up resources\"","replacement": "children:\"提示:您也可以暂停Docker引擎而不是关闭它以释放资源\""},
{"original": "children:\"This will prevent the ability to install any other extension via the Extension SDK tools.\"","replacement": "children:\"这将阻止通过扩展SDK工具安装任何其他扩展的能力。\""},
{"original": "children:\"This page is used for manual testing, and by E2E tests that verify app-wide functionality. It can be reached via a modified Konami code: ↑↑↓↓←→←→BT\"","replacement": "children:\"此页面用于手动测试,并通过E2E测试验证应用程序范围的功能。可以通过修改后的科美乐代码: ↑↑↓↓←→←→BT访问它\""},
{"original": "children:\"This is a simple todo application built using ExpressJS and Node. All todos are saved in a MongoDB database.\"","replacement": "children:\"这是一个使用ExpressJS和Node构建的简单待办事项应用程序。所有待办事项都保存在MongoDB数据库中。\""},
{"original": "children:\"This image is not available on your local machine. Would you like to pull this image?\"","replacement": "children:\"此镜像在您的本地机器上不可用。你想拉取此镜像吗?\""},
{"original": "children:\"This extension is not published in the Marketplace. Extensions can install binaries, invoke commands and access files on your machine.\"","replacement": "children:\"此扩展程序未在Marketplace中发布。扩展程序可以在您的机器上安装二进制文件、调用命令和访问文件。\""},
{"original": "children:\"This extension has no description\"","replacement": "children:\"这个扩展没有描述\""},
{"original": "children:\"This can prevent Docker from starting. Use at your own risk.\"","replacement": "children:\"这会阻止Docker启动。使用风险自负。\""},
{"original": "children:\"This can prevent Docker from starting, reset your daemon settings if it hangs.\"","replacement": "children:\"这可以阻止Docker启动,如果它挂起,请重置您的守护程序设置。\""},
{"original": "children:\"This button will focus the current window after 2 seconds\"","replacement": "children:\"此按钮将在2秒后聚焦当前窗口\""},
{"original": "children:\"This action cannot be undone.\"","replacement": "children:\"这个动作无法撤销。\""},
{"original": "children:\"These settings are provided for environments with elevated security requirements, such as where local administrative access is prohibited. Changing these options can result in limited functionality or broken integration with other tools.\"","replacement": "children:\"这些设置是为具有更高安全要求的环境提供的,例如禁止本地管理访问的环境。更改这些选项可能会导致功能受限或与其他工具的集成中断。\""},
{"original": "children:\"These locations will be made available to containers using virtual filesystems (such as VirtioFS), which don't require the use of additional VM storage.\"","replacement": "children:\"这些位置将提供给使用虚拟文件系统(例如VirtioFS)的容器,这不需要使用额外的VM存储。\""},
{"original": "children:\"The rest of this guide requires you to run commands in the new project directory. Run the following command before moving on.\"","replacement": "children:\"本向导的其余部分要求您在新项目目录中运行命令。在继续之前运行以下命令。\""},
{"original": "children:\"The Git repository is cloned into a Volume and attaches to your containers so that you can develop directly inside of them using Visual Studio Code.\"","replacement": "children:\"Git存储库被克隆到卷中并附加到您的容器中,以便您可以使用Visual Studio Code直接在其中进行开发。\""},
{"original": "children:\"The extension will be available once the update is complete.\"","replacement": "children:\"更新完成后,扩展程序将可用。\""},
{"original": "children:\"The currently selected Docker context requires you to be signed into your Docker account to use. Log into your Docker account or switch to your local Docker context to continue.\"","replacement": "children:\"当前选择的Dockercontext需要您登录您的Docker帐户才能使用。登录您的Docker帐户或切换到您的本地Dockercontext以继续。\""},
{"original": "children:\"The containerd image store extends the range of image types that the Docker Engine can natively interact with. This unlocks various new use cases, including:\"","replacement": "children:\"容器镜像存储扩展了Docker引擎可以本机交互的镜像类型范围。这解锁了各种新的用例,包括:\""},
{"original": "children:\"The best way to learn about containers is to first see it in action. We have created a welcome container for you.\"","replacement": "children:\"了解容器的最好方法是先看看它的实际情况。我们为您创建了一个欢迎容器。\""},
{"original": "children:\"The accumulated time should ideally be multiple times higher than the real time, indicating good parallelization. It should never be lower.\"","replacement": "children:\"理想情况下,累积时间应该是实际时间的数倍,这表明并行性很好。它永远不应该更低。\""},
{"original": "children:\"Terms of Service\"","replacement": "children:\"用户使用条款\""},
{"original": "children:\"Terminal\"","replacement": "children:\"终端\""},
{"original": "children:\"System Status\"","replacement": "children:\"系统状态\""},
{"original": "children:\"Synchronized file shares\"","replacement": "children:\"同步文件共享\""},
{"original": "children:\"Switch to Linux containers to continue\"","replacement": "children:\"切换到Linux容器以继续\""},
{"original": "children:\"Supported platforms\"","replacement": "children:\"支持的平台\""},
{"original": "children:\"Support\"","replacement": "children:\"技术支持\""},
{"original": "children:\"Suggested\"","replacement": "children:\"建议\""},
{"original": "children:\"Subscription Service Agreement\"","replacement": "children:\"订阅服务协议\""},
{"original": "children:\"Submit feedback\"","replacement": "children:\"提交反馈\""},
{"original": "children:\"Storage limit\"","replacement": "children:\"存储限制\""},
{"original": "children:\"Stopped\"","replacement": "children:\"停止了\""},
{"original": "children:\"Stop\"","replacement": "children:\"停止\""},
{"original": "children:\"Stop watch mode\"","replacement": "children:\"停止观看模式\""},
{"original": "children:\"Status\"","replacement": "children:\"状态\""},
{"original": "children:\"Status:\"","replacement": "children:\"状态:\""},
{"original": "children:\"Starting\"","replacement": "children:\"开始\""},
{"original": "children:\"Start new terminal\"","replacement": "children:\"打开一个新终端\""},
{"original": "children:\"Start building your extension with the following command:\"","replacement": "children:\"使用以下命令开始构建扩展:\""},
{"original": "children:\"Start analysis\"","replacement": "children:\"开始分析\""},
{"original": "children:\"Start a Kubernetes single-node cluster when starting Docker Desktop.\"","replacement": "children:\"启动Docker Desktop时启动Kubernetes单节点集群。\""},
{"original": "children:\"Specific repositories\"","replacement": "children:\"特定存储库\""},
{"original": "children:\"Space to be reclaimed\"","replacement": "children:\"待开垦的空间\""},
{"original": "children:\"Source\"","replacement": "children:\"来源\""},
{"original": "children:\"Source details\"","replacement": "children:\"来源详细信息\""},
{"original": "children:\"Sometimes you may want to persist data that a container generated. This is when you can use volumes.\"","replacement": "children:\"有时您可能希望持久化容器生成的数据。这是您可以使用卷的时候。\""},
{"original": "children:\"Sometimes you may want the container to access a directory on your system. This is when you use bind mounts.\"","replacement": "children:\"有时您可能希望容器访问您系统上的目录。这是您使用绑定挂载的时候。\""},
{"original": "children:\"Something went wrong\"","replacement": "children:\"出了点问题\""},
{"original": "children:\"Some important Docker resources\"","replacement": "children:\"一些重要的Docker资源\""},
{"original": "children:\"Software updates\"","replacement": "children:\"软件更新\""},
{"original": "children:\"Skip the tour\"","replacement": "children:\"跳过旅游\""},
{"original": "children:\"Size\"","replacement": "children:\"文件大小\""},
{"original": "children:\"Signed in\"","replacement": "children:\"已登陆\""},
{"original": "children:\"Sign up\"","replacement": "children:\"退出登录\""},
{"original": "children:\"Sign In\"","replacement": "children:\"签到\""},
{"original": "children:\"Sign in to connect to your Docker Desktop subscription or access online features.\"","replacement": "children:\"登录以连接到您的Docker Desktop订阅或访问在线功能。\""},
{"original": "children:\"Sign in required!\"","replacement": "children:\"需要登陆!\""},
{"original": "children:\"Show less\"","replacement": "children:\"精简展示\""},
{"original": "children:\"Show Kubernetes internal containers when using Docker commands.\"","replacement": "children:\"使用Docker命令时显示Kubernetes内部容器。\""},
{"original": "children:\"Show image actions\"","replacement": "children:\"显示镜像动作\""},
{"original": "children:\"Show Docker Desktop Extensions internal containers when using Docker commands.\"","replacement": "children:\"使用Docker命令时显示Docker Desktop Extension内部容器。\""},
{"original": "children:\"Show charts\"","replacement": "children:\"显示图表\""},
{"original": "children:\"Shared\"","replacement": "children:\"共享\""},
{"original": "children:\"Shared Ports\"","replacement": "children:\"共享端口\""},
{"original": "children:\"Share\"","replacement": "children:\"分享\""},
{"original": "children:\"Share code (including dependencies) with your team members in one click.\"","replacement": "children:\"一键与您的团队成员共享代码(包括依赖项)。\""},
{"original": "children:\"Severity\"","replacement": "children:\"安全\""},
{"original": "children:\"Settings\"","replacement": "children:\"设置\""},
{"original": "children:\"Services\"","replacement": "children:\"服务\""},
{"original": "children:\"Send error reports, system version and language as well as Docker Desktop lifecycle information (e.g., starts, stops, resets).\"","replacement": "children:\"发送错误报告、系统版本和语言以及Docker Desktop生命周期信息(例如,启动、停止、重置)。\""},
{"original": "children:\"Send Bugsnag test event\"","replacement": "children:\"发送Bugsnag测试事件\""},
{"original": "children:\"Send Bugsnag test event with random groupingHash\"","replacement": "children:\"使用随机分组Hash发送Bugsnag测试事件\""},
{"original": "children:\"Selected package\"","replacement": "children:\"选中的包\""},
{"original": "children:\"Selected image\"","replacement": "children:\"选定的镜像\""},
{"original": "children:\"Selected builder\"","replacement": "children:\"选定的建造者\""},
{"original": "children:\"Select all that apply\"","replacement": "children:\"选择所有适用的\""},
{"original": "children:\"Select a remote source, and a local destination to clone to\"","replacement": "children:\"选择一个远程源和一个要克隆到的本地目标\""},
{"original": "children:\"Scope\"","replacement": "children:\"范围\""},
{"original": "children:\"Samples\"","replacement": "children:\"示例\""},
{"original": "children:\"Sample image\"","replacement": "children:\"示例镜像\""},
{"original": "children:\"Running\"","replacement": "children:\"运行中\""},
{"original": "children:\"Run\"","replacement": "children:\"运行\""},
{"original": "children:\"Run the following command to run your project with compose watch.\"","replacement": "children:\"运行以下命令以使用compose watch运行您的项目。\""},
{"original": "children:\"Run a single container\"","replacement": "children:\"运行单个容器\""},
{"original": "children:\"Run a new container\"","replacement": "children:\"运行一个新容器\""},
{"original": "children:\"Run a microservices container\"","replacement": "children:\"运行微服务容器\""},
{"original": "children:\"Revision\"","replacement": "children:\"修订\""},
{"original": "children:\"Retry\"","replacement": "children:\"重试\""},
{"original": "children:\"Restart\"","replacement": "children:\"重启\""},
{"original": "children:\"Restart to update\"","replacement": "children:\"重新启动以更新\""},
{"original": "children:\"Resources\"","replacement": "children:\"资源\""},
{"original": "children:\"Resource usage\"","replacement": "children:\"资源使用\""},
{"original": "children:\"Resource Allocation\"","replacement": "children:\"资源分配\""},
{"original": "children:\"Reset Kubernetes Cluster\"","replacement": "children:\"重置 Kubernetes cluster\""},
{"original": "children:\"Requires paid subscription.\"","replacement": "children:\"需要付费订阅。\""},
{"original": "children:\"Request an extension\"","replacement": "children:\"请求延期\""},
{"original": "children:\"Request a sample\"","replacement": "children:\"请求示例\""},
{"original": "children:\"Report issue on GitHub\"","replacement": "children:\"GitHub上的报告问题\""},
{"original": "children:\"Report a Bug\"","replacement": "children:\"报告错误\""},
{"original": "children:\"Rename\"","replacement": "children:\"重命名\""},
{"original": "children:\"Remove\"","replacement": "children:\"删除\""},
{"original": "children:\"remote\"","replacement": "children:\"远程\""},
{"original": "children:\"Remote source location\"","replacement": "children:\"远程源位置\""},
{"original": "children:\"Release notes\"","replacement": "children:\"发行说明\""},
{"original": "children:\"Regularly checks your configuration to ensure no unexpected changes have been made by another application.\"","replacement": "children:\"定期检查您的配置,以确保其他应用程序没有进行意外更改。\""},
{"original": "children:\"Refresh\"","replacement": "children:\"刷新\""},
{"original": "children:\"Refetch distros\"","replacement": "children:\"重新获取发行版\""},
{"original": "children:\"Reduces CPU and memory utilization when no containers are running. Exit from Resource Saver mode happens automatically when containers are started.\"","replacement": "children:\"在没有容器运行时降低CPU和内存利用率。启动容器时会自动退出资源保护程序模式。\""},
{"original": "children:\"Recommended\"","replacement": "children:\"推荐\""},
{"original": "children:\"Recent searches\"","replacement": "children:\"最近的搜索\""},
{"original": "children:\"Re-apply configurations\"","replacement": "children:\"重新应用配置\""},
{"original": "children:\"Real time:\"","replacement": "children:\"实时:\""},
{"original": "children:\"Ready to be installed. Restart to update.\"","replacement": "children:\"准备安装。重新启动以更新。\""},
{"original": "children:\"Read our policy regarding uploaded diagnostic data\"","replacement": "children:\"阅读我们关于上传诊断数据的政策\""},
{"original": "children:\"Read our policy for uploaded diagnostic data\"","replacement": "children:\"请阅读我们的上传诊断数据政策\""},
{"original": "children:\"Push to Docker Hub\"","replacement": "children:\"推送到Docker Hub\""},
{"original": "children:\"Pulls\"","replacement": "children:\"拉取\""},
{"original": "children:\"Pull\"","replacement": "children:\"拉取\""},
{"original": "children:\"Pull new image\"","replacement": "children:\"拉取镜像\""},
{"original": "children:\"Pull Image\"","replacement": "children:\"拉取镜像\""},
{"original": "children:\"Projects\"","replacement": "children:\"项目\""},
{"original": "children:\"Problems\"","replacement": "children:\"问题\""},
{"original": "children:\"Privacy\"","replacement": "children:\"隐私\""},
{"original": "children:\"Preferences\"","replacement": "children:\"偏好\""},
{"original": "children:\"Ports\"","replacement": "children:\"端口\""},
{"original": "children:\"Port(s)\"","replacement": "children:\"端口(s)\""},
{"original": "children:\"Popular starter projects for you to test out\"","replacement": "children:\"流行的入门项目供您测试\""},
{"original": "children:\"Please sign in to use Docker Desktop.\"","replacement": "children:\"请登录以使用Docker Desktop。\""},
{"original": "children:\"Please contact your administrator.\"","replacement": "children:\"请联系您的管理员。\""},
{"original": "children:\"Platform\"","replacement": "children:\"平台\""},
{"original": "children:\"pending\"","replacement": "children:\"待定\""},
{"original": "children:\"Pause\"","replacement": "children:\"暂停\""},
{"original": "children:\"Paste\"","replacement": "children:\"粘贴\""},
{"original": "children:\"Partners\"","replacement": "children:\"合作伙伴\""},
{"original": "children:\"Parallel execution:\"","replacement": "children:\"并行执行:\""},
{"original": "children:\"Package scope\"","replacement": "children:\"包范围\""},
{"original": "children:\"Other\"","replacement": "children:\"其他\""},
{"original": "children:\"Or try running a sample...\"","replacement": "children:\"或者尝试运行样本……\""},
{"original": "children:\"Or enable \"","replacement": "children:\"或启用 \""},
{"original": "children:\"Or connect to the builder using the CLI:\"","replacement": "children:\"或使用CLI连接到构建器:\""},
{"original": "children:\"Optional settings\"","replacement": "children:\"可选设置\""},
{"original": "children:\"OpenTelemetry traces\"","replacement": "children:\"OpenTelemery跟踪\""},
{"original": "children:\"Open\"","replacement": "children:\"打开\""},
{"original": "children:\"Open your project folder in the terminal and run the following command:\"","replacement": "children:\"在终端中打开您的项目文件夹并运行以下命令:\""},
{"original": "children:\"Open statement\"","replacement": "children:\"公开声明\""},
{"original": "children:\"Open in VSCode\"","replacement": "children:\"在VSCode中打开\""},
{"original": "children:\"Only images and containers in the active image store are visible. All your other containers and images still exist. To see them again, turn off this feature.\"","replacement": "children:\"只有活动镜像存储中的镜像和容器可见。您的所有其他容器和镜像仍然存在。要再次查看它们,请关闭此功能。\""},
{"original": "children:\"Only images and containers in the active image store are visible. All your other containers and images still exist. To see them again, turn off this feature by going to Settings.\"","replacement": "children:\"只有活动镜像存储中的镜像和容器可见。您的所有其他容器和镜像仍然存在。要再次查看它们,请转到设置关闭此功能。\""},
{"original": "children:\"OK\"","replacement": "children:\"好的\""},
{"original": "children:\"Now, no matter how often you delete and restart the container, your data is persisted and accessible to any container on your system by mounting the database volume. Docker will check for a volume and create one if there is none present.\"","replacement": "children:\"现在,无论您删除和重新启动容器的频率如何,您的数据都将通过挂载数据库卷来持久化并可供系统上的任何容器访问。Docker将检查一个卷,如果没有卷,则创建一个。\""},
{"original": "children:\"Notifications\"","replacement": "children:\"通知\""},
{"original": "children:\"Note:\"","replacement": "children:\"注意:\""},
{"original": "children:\"Not signed in\"","replacement": "children:\"未登录\""},
{"original": "children:\"Not Running\"","replacement": "children:\"没有运行\""},
{"original": "children:\"no-score\"","replacement": "children:\"没有分数\""},
{"original": "children:\"Non-cached steps\"","replacement": "children:\"非缓存步骤\""},
{"original": "children:\"No volumes found\"","replacement": "children:\"未找到卷\""},
{"original": "children:\"No README found in project folder.\"","replacement": "children:\"在项目文件夹中找不到自述文件。\""},
{"original": "children:\"No ports exposed in this image\"","replacement": "children:\"此镜像中没有暴露的端口\""},
{"original": "children:\"No images found\"","replacement": "children:\"未找到镜像\""},
{"original": "children:\"No dependencies found.\"","replacement": "children:\"未找到依赖项。\""},
{"original": "children:\"No data to display\"","replacement": "children:\"没有数据要显示\""},
{"original": "children:\"No build results found.\"","replacement": "children:\"未找到构建结果。\""},
{"original": "children:\"Next, learn how to use Docker to run multi-container applications.\"","replacement": "children:\"接下来,学习如何使用Docker运行多容器应用程序。\""},
{"original": "children:\"New version available\"","replacement": "children:\"提供新版本\""},
{"original": "children:\"New version available.\"","replacement": "children:\"有新版本。\""},
{"original": "children:\"New builder(s) available.\"","replacement": "children:\"提供新的构建器(s)。\""},
{"original": "children:\"Network I/O:\"","replacement": "children:\"网络I/O:\""},
{"original": "children:\"Navigate away?\"","replacement": "children:\"导航离开?\""},
{"original": "children:\"Must be signed in with an active subscription\"","replacement": "children:\"必须使用有效订阅登录\""},
{"original": "children:\"Must be signed in with a Business subscription\"","replacement": "children:\"必须使用企业订阅登录\""},
{"original": "children:\"Move quickly between branches or run them side by side in VSCode.\"","replacement": "children:\"在分支之间快速移动或在VSCode中并排运行它们。\""},
{"original": "children:\"more\"","replacement": "children:\"更多\""},
{"original": "children:\"Memory usage:\"","replacement": "children:\"内存使用情况:\""},
{"original": "children:\"Manual proxy configuration\"","replacement": "children:\"手动代理配置\""},
{"original": "children:\"Manage File-syncs\"","replacement": "children:\"管理文件同步\""},
{"original": "children:\"loginRequired\"","replacement": "children:\"需要登录\""},
{"original": "children:\"Loading Volume...\"","replacement": "children:\"加载卷……\""},
{"original": "children:\"Loading tags...\"","replacement": "children:\"正在加载label……\""},
{"original": "children:\"Loading Image...\"","replacement": "children:\"正在加载镜像……\""},
{"original": "children:\"Loading builders...\"","replacement": "children:\"装载建造者……\""},
{"original": "children:\"Legal\"","replacement": "children:\"合法\""},
{"original": "children:\"left\"","replacement": "children:\"左\""},
{"original": "children:\"Learning center\"","replacement": "children:\"学习中心\""},
{"original": "children:\"Learn more\"","replacement": "children:\"了解更多\""},
{"original": "children:\"Learn more about Docker Scout\"","replacement": "children:\"了解更多关于Docker Scout的信息\""},
{"original": "children:\"Justification\"","replacement": "children:\"论证\""},
{"original": "children:\"It seems there were some problems when trying to load Desktop Extensions. Please close the window and try again later.\"","replacement": "children:\"尝试加载桌面扩展时似乎出现了一些问题。请关闭窗口,稍后再试。\""},
{"original": "children:\"Internal test page\"","replacement": "children:\"内测页面\""},
{"original": "children:\"Install tester extension\"","replacement": "children:\"安装测试仪扩展\""},
{"original": "children:\"IN USE\"","replacement": "children:\"使用中\""},
{"original": "children:\"In this guide, you create an image using a Dockerfile and a sample application.\"","replacement": "children:\"在本向导中,您将使用Dockerfile和示例应用程序创建镜像。\""},
{"original": "children:\"In each release, we may add features that we are currently experimenting with. These features are in the early stages of the product development lifecycle. This allows us to get early feedback and adjust the features as we work on them, so that we create experiences that our users love. If you turn this off, you lose access to experimental features.\"","replacement": "children:\"在每个版本中,我们可能会添加我们目前正在试验的功能。这些功能处于产品开发生命周期的早期阶段。这使我们能够在处理功能时获得早期反馈和调整功能,以便我们创建用户喜欢的体验。如果你关闭它,你就无法访问实验功能。\""},
{"original": "children:\"Import\"","replacement": "children:\"导入\""},
{"original": "children:\"Import builds\"","replacement": "children:\"导入构建\""},
{"original": "children:\"Impact statement\"","replacement": "children:\"影响陈述\""},
{"original": "children:\"Images\"","replacement": "children:\"镜像\""},
{"original": "children:\"If you've already built an extension, tell us about your experience\"","replacement": "children:\"如果您已经构建了一个扩展,请告诉我们您的经验\""},
{"original": "children:\"If you want to persist data even after a container is deleted, you can use a volume. A volume is a location in your local filesystem, managed by Docker.\"","replacement": "children:\"如果您想在容器被删除后仍保留数据,您可以使用卷。卷是本地文件系统中的一个位置,由Docker管理。\""},
{"original": "children:\"If you want to access data on your system, you can use a bind mount. A bind mount lets you share a directory from your host's filesystem into the container.\"","replacement": "children:\"如果您想访问系统上的数据,您可以使用绑定挂载。绑定挂载允许您将主机文件系统中的目录共享到容器中。\""},
{"original": "children:\"If you can't see your builds here make sure your builder instances are running.\"","replacement": "children:\"如果您在此处看不到您的构建,请确保您的构建器实例正在运行。\""},
{"original": "children:\"How's everything going?\"","replacement": "children:\"一切都好吗?\""},
{"original": "children:\"How to access Advanced image analysis\"","replacement": "children:\"如何访问高级镜像分析\""},
{"original": "children:\"Host port\"","replacement": "children:\"主机端口\""},
{"original": "children:\"Host networking allows containers that are started with --net=host to use localhost to connect to TCP and UDP services on the host. It will automatically allow software on the host to use localhost to connect to TCP and UDP services in the container. Sign in required.\"","replacement": "children:\"主机联网允许使用--net=host启动的容器使用localhost连接到主机上的TCP和UDP服务,它会自动允许主机上的软件使用localhost连接到容器中的TCP和UDP服务,需要登录。\""},
{"original": "children:\"History\"","replacement": "children:\"历史\""},
{"original": "children:\"Hide all\"","replacement": "children:\"隐藏所有\""},
{"original": "children:\"Go back to dashboard\"","replacement": "children:\"回到仪表板\""},
{"original": "children:\"github repository\"","replacement": "children:\"github存储库\""},
{"original": "children:\"Getting containers stats...\"","replacement": "children:\"获取容器统计信息……\""},
{"original": "children:\"Getting container stats...\"","replacement": "children:\"获取容器统计信息……\""},
{"original": "children:\"Get Started\"","replacement": "children:\"获得标准版\""},
{"original": "children:\"Get personalized support from the Docker Team\"","replacement": "children:\"从Docker团队获得个性化支持\""},
{"original": "children:\"General\"","replacement": "children:\"通用\""},
{"original": "children:\"gather\"","replacement": "children:\"聚集\""},
{"original": "children:\"Gather diagnostics\"","replacement": "children:\"收集诊断\""},
{"original": "children:\"full\"","replacement": "children:\"满\""},
{"original": "children:\"From the Docker Desktop menu, select Switch to Linux containers to make sure Docker talks to the Linux daemon\"","replacement": "children:\"从Docker Desktop菜单中,选择Switch to Linux containers以确保Docker与Linux守护进程通信\""},
{"original": "children:\"for more results\"","replacement": "children:\"为了更多的结果\""},
{"original": "children:\"Focus this window\"","replacement": "children:\"聚焦这个窗口\""},
{"original": "children:\"Flags\"","replacement": "children:\"旗帜\""},
{"original": "children:\"Filter by platform\"","replacement": "children:\"按平台过滤\""},
{"original": "children:\"Files\"","replacement": "children:\"文件\""},
{"original": "children:\"File shares synchronized\"","replacement": "children:\"文件共享同步\""},
{"original": "children:\"File name\"","replacement": "children:\"文件名\""},
{"original": "children:\"Fetching installed WSL 2 distros\"","replacement": "children:\"获取已安装的WSL 2发行版\""},
{"original": "children:\"Features in development\"","replacement": "children:\"发展中的特点\""},
{"original": "children:\"Featured\"","replacement": "children:\"精选\""},
{"original": "children:\"False positive\"","replacement": "children:\"假警报\""},
{"original": "children:\"Failed\"","replacement": "children:\"失败了\""},
{"original": "children:\"Failed to find installed WSL 2 distros.\"","replacement": "children:\"找不到已安装的WSL 2发行版。\""},
{"original": "children:\"External links\"","replacement": "children:\"外部链接\""},
{"original": "children:\"Extensions\"","replacement": "children:\"扩展\""},
{"original": "children:\"Extensions are disabled\"","replacement": "children:\"扩展被禁用\""},
{"original": "children:\"Extensions are disabled when using Windows containers\"","replacement": "children:\"使用Windows容器时禁用扩展\""},
{"original": "children:\"Exposing daemon on TCP without TLS helps legacy clients connect to the daemon. It also makes yourself vulnerable to remote code execution attacks. Use with caution.\"","replacement": "children:\"在没有TLS的TCP上公开守护程序有助于旧客户端连接到守护程序。它还使自己容易受到远程代码执行攻击。谨慎使用。\""},
{"original": "children:\"Experimental features\"","replacement": "children:\"实验功能\""},
{"original": "children:\"Exit Terminal\"","replacement": "children:\"退出终端\""},
{"original": "children:\"Exec in CLI\"","replacement": "children:\"CLI中的执行\""},
{"original": "children:\"Events and Webinars\"","replacement": "children:\"活动和网络研讨会\""},
{"original": "children:\"Error\"","replacement": "children:\"错误\""},
{"original": "children:\"error logs\"","replacement": "children:\"错误日志\""},
{"original": "children:\"Error loading README. Re-open project to try again.\"","replacement": "children:\"加载自述文件时出错。重新打开项目重试。\""},
{"original": "children:\"Environment variables\"","replacement": "children:\"环境变量\""},
{"original": "children:\"Enter your task\"","replacement": "children:\"输入你的任务\""},
{"original": "children:\"Enter \"0\" to assign randomly generated host ports.\"","replacement": "children:\"输入\"0\"以分配随机生成的主机端口。\""},
{"original": "children:\"Endpoint\"","replacement": "children:\"端点\""},
{"original": "children:\"Enable it in Settings.\"","replacement": "children:\"在设置中启用它。\""},
{"original": "children:\"Enable integration with additional distros:\"","replacement": "children:\"启用与其他发行版的集成:\""},
{"original": "children:\"Enable Debug mode\"","replacement": "children:\"启用调试模式\""},
{"original": "children:\"Enable background indexing in Settings\"","replacement": "children:\"在设置中启用后台索引\""},
{"original": "children:\"Empty volume\"","replacement": "children:\"空卷\""},
{"original": "children:\"Edit\"","replacement": "children:\"编辑\""},
{"original": "children:\"Due to filesystem overhead, the real available space might be less.\"","replacement": "children:\"由于文件系统开销,实际可用空间可能会更少。\""},
{"original": "children:\"Driver\"","replacement": "children:\"驱动\""},
{"original": "children:\"Driver Options\"","replacement": "children:\"驱动程序选项\""},
{"original": "children:\"Download\"","replacement": "children:\"下载\""},
{"original": "children:\"Download as OTLP format\"","replacement": "children:\"下载为OTLP格式\""},
{"original": "children:\"Download as Jaeger format\"","replacement": "children:\"下载为Jaeger格式\""},
{"original": "children:\"Done\"","replacement": "children:\"完成\""},
{"original": "children:\"documentation\"","replacement": "children:\"文档\""},
{"original": "children:\"Document vulnerability exceptions\"","replacement": "children:\"记录漏洞例外\""},
{"original": "children:\"Docker Subscription Service Agreement\"","replacement": "children:\"Docker订阅服务协议\""},
{"original": "children:\"Docker Scout wants to send you OS notifications through Docker Desktop.\"","replacement": "children:\"Docker Scout想通过Docker Desktop向您发送操作系统通知。\""},
{"original": "children:\"Docker isolates all content, code, and data in a container from your local filesystem. This means, that when you delete a container within Docker Desktop, all the content within it is deleted.\"","replacement": "children:\"Docker将容器中的所有content、代码和数据与本地文件系统隔离开来。这意味着,当您在Docker Desktop中删除容器时,其中的所有content都会被删除。\""},
{"original": "children:\"docker init\"","replacement": "children:\"初始化docker\""},
{"original": "children:\"Docker Engine\"","replacement": "children:\"Docker引擎\""},
{"original": "children:\"Docker Engine is the underlying technology that runs containers\"","replacement": "children:\"Docker Engine是运行容器的底层技术\""},
{"original": "children:\"Docker documentation\"","replacement": "children:\"Docker 文档\""},
{"original": "children:\"Docker Dev Environment\"","replacement": "children:\"Docker开发环境\""},
{"original": "children:\"Docker Desktop\"","replacement": "children:\"Docker桌面\""},
{"original": "children:\"Docker Desktop app launched\"","replacement": "children:\"Docker桌面应用程序启动\""},
{"original": "children:\"Docker Debug brings the tools you need to debug your container with one click.\"","replacement": "children:\"Docker Debug带来了一键调试容器所需的工具。\""},
{"original": "children:\"docker compose up \"","replacement": "children:\"docker compose up \""},
{"original": "children:\"docker build\"","replacement": "children:\"构建容器\""},
{"original": "children:\"Docker and the Docker logo are trademarks of Docker Inc. registered in the U.S. and other countries.\"","replacement": "children:\"Docker和Docker徽标是Docker Inc.在美国和其他国家/地区注册的商标。\""},
{"original": "children:\"Dismiss\"","replacement": "children:\"解散\""},
{"original": "children:\"Dismiss all\"","replacement": "children:\"全部解散\""},
{"original": "children:\"Digging deeper\"","replacement": "children:\"挖得更深\""},
{"original": "children:\"Digest\"","replacement": "children:\"摘要\""},
{"original": "children:\"DIAGNOSTICS\"","replacement": "children:\"诊断\""},
{"original": "children:\"Diagnostics successfully uploaded\"","replacement": "children:\"诊断成功上传\""},
{"original": "children:\"Diagnostics ID\"","replacement": "children:\"诊断ID\""},
{"original": "children:\"Developer Preview Program\"","replacement": "children:\"开发者预览计划\""},
{"original": "children:\"Dev Environments\"","replacement": "children:\"开发环境\""},
{"original": "children:\"Determines which terminal is launched when opening the terminal from a container.\"","replacement": "children:\"确定从容器中打开终端时启动哪个终端。\""},
{"original": "children:\"Details page for unpublished extension\"","replacement": "children:\"未发布扩展的详细信息页面\""},
{"original": "children:\"Dependencies\"","replacement": "children:\"依赖\""},
{"original": "children:\"Delete\"","replacement": "children:\"删除\""},
{"original": "children:\"Delete current image after pulling new image\"","replacement": "children:\"拉取镜像后删除当前镜像\""},
{"original": "children:\"Delete build history\"","replacement": "children:\"删除构建历史\""},
{"original": "children:\"Define. Distribute. Iterate.\"","replacement": "children:\"定义。分发。迭代。\""},
{"original": "children:\"Define your project's configuration as code, distribute your project easily amongst your team, and have everyone work on the same code and any dependencies with one click.\"","replacement": "children:\"将您的项目配置定义为代码,在您的团队中轻松分发您的项目,并让每个人一键处理相同的代码和任何依赖项。\""},
{"original": "children:\"database\"","replacement": "children:\"数据库\""},
{"original": "children:\"Customers\"","replacement": "children:\"自定义\""},
{"original": "children:\"Created\"","replacement": "children:\"创建\""},
{"original": "children:\"Create\"","replacement": "children:\"创建\""},
{"original": "children:\"Create file-sync\"","replacement": "children:\"创建文件同步\""},
{"original": "children:\"Create Cloud Engine\"","replacement": "children:\"创建云引擎\""},
{"original": "children:\"Create a new environment\"","replacement": "children:\"创建一个新的环境\""},
{"original": "children:\"Create a fresh clone of a Git repository from an HTTPS or SSH URL. Pull Request URLs are also supported.\"","replacement": "children:\"从HTTPS或SSHURL创建Git存储库的新克隆。还支持拉取请求URL。\""},
{"original": "children:\"Create a Dev Environment\"","replacement": "children:\"创建一个开发环境\""},
{"original": "children:\"Copyright © 2015-2024 Docker Inc. All rights reserved.\"","replacement": "children:\"版权所有©2015-2024年Docker Inc.保留所有权利。\""},
{"original": "children:\"Copy\"","replacement": "children:\"复制\""},
{"original": "children:\"Copy diagnostics ID\"","replacement": "children:\"复制诊断ID\""},
{"original": "children:\"Cookies Settings\"","replacement": "children:\"Cookie设置\""},
{"original": "children:\"Continue\"","replacement": "children:\"继续\""},
{"original": "children:\"Continue without signing in\"","replacement": "children:\"继续不登录\""},
{"original": "children:\"Content\"","replacement": "children:\"内容\""},
{"original": "children:\"Containers\"","replacement": "children:\"容器\""},
{"original": "children:\"containerd image store\"","replacement": "children:\"容器镜像存储\""},
{"original": "children:\"container\"","replacement": "children:\"容器\""},
{"original": "children:\"Container memory usage\"","replacement": "children:\"容器内存使用情况\""},
{"original": "children:\"Container CPU usage\"","replacement": "children:\"容器CPU使用率\""},
{"original": "children:\"Contact Us\"","replacement": "children:\"联系我们\""},
{"original": "children:\"Consult Docker Online Documentation\"","replacement": "children:\"咨询Docker在线文档\""},
{"original": "children:\"Connect to builder\"","replacement": "children:\"连接到建设者\""},
{"original": "children:\"Conflicts\"","replacement": "children:\"冲突\""},
{"original": "children:\"Confirm your run command\"","replacement": "children:\"确认你的运行命令\""},
{"original": "children:\"Configure which WSL 2 distros you want to access Docker from.\"","replacement": "children:\"配置您要从哪些WSL 2发行版访问Docker。\""},
{"original": "children:\"Configure the way Docker containers interact with the network\"","replacement": "children:\"配置Docker容器与网络交互的方式\""},
{"original": "children:\"Configure the way Docker containers interact with the network\"","replacement": "children:\"配置Docker容器与网络交互的方式\""},
{"original": "children:\"Configuration\"","replacement": "children:\"配置\""},
{"original": "children:\"compose.yaml\"","replacement": "children:\"compose.yaml\""},
{"original": "children:\"compose watch documentation\"","replacement": "children:\"撰写查看留档\""},
{"original": "children:\"Compose simplifies the control of your entire application stack, making it easy to manage services, networks, and volumes in a single, comprehensible YAML configuration file. Then, with a single command, you create and start all the services from your configuration file.\"","replacement": "children:\"Compose简化了对整个应用程序堆栈的控制,使得在一个简单易懂的YAML配置文件中管理服务、网络和卷变得容易。然后,通过一个命令,您可以从配置文件中创建和启动所有服务。\""},
{"original": "children:\"Completed\"","replacement": "children:\"已完成\""},
{"original": "children:\"Community\"","replacement": "children:\"社区\""},
{"original": "children:\"Close\"","replacement": "children:\"关闭\""},
{"original": "children:\"Close Application\"","replacement": "children:\"关闭应用\""},
{"original": "children:\"Clone Protocol\"","replacement": "children:\"克隆协议\""},
{"original": "children:\"Clone Project\"","replacement": "children:\"克隆项目\""},
{"original": "children:\"Clone & open\"","replacement": "children:\"克隆&打开\""},
{"original": "children:\"CLI plugin\"","replacement": "children:\"CLI插件\""},
{"original": "children:\"Clear search\"","replacement": "children:\"清除搜索\""},
{"original": "children:\"Clear all\"","replacement": "children:\"清除所有\""},
{"original": "children:\"Choose theme for Docker Desktop\"","replacement": "children:\"为Docker桌面选择主题\""},
{"original": "children:\"Choose IDE\"","replacement": "children:\"选择IDE\""},
{"original": "children:\"Choose how to configure the installation of Docker's CLI tools:\"","replacement": "children:\"选择如何配置Docker的CLI工具的安装:\""},
{"original": "children:\"Choose file sharing implementation for your containers\"","replacement": "children:\"为您的容器选择文件共享实现\""},
{"original": "children:\"Choose container terminal\"","replacement": "children:\"选择容器终端\""},
{"original": "children:\"Check for updates\"","replacement": "children:\"检查更新\""},
{"original": "children:\"Check file shares\"","replacement": "children:\"检查文件共享\""},
{"original": "children:\"change your preferences in Settings\"","replacement": "children:\"在设置中更改您的偏好\""},
{"original": "children:\"Change your extensions settings to be able to install extensions not distributed through the Marketplace.\"","replacement": "children:\"更改您的扩展设置,以便能够安装未通过Marketplace分发的扩展。\""},
{"original": "children:\"Careers\"","replacement": "children:\"职业\""},
{"original": "children:\"Cancel\"","replacement": "children:\"取消\""},
{"original": "children:\"Cached steps\"","replacement": "children:\"缓存步骤\""},
{"original": "children:\"Cache usage:\"","replacement": "children:\"缓存用法:\""},
{"original": "children:\"Builds\"","replacement": "children:\"构建\""},
{"original": "children:\"Building\"","replacement": "children:\"构建\""},
{"original": "children:\"Builder settings\"","replacement": "children:\"生成器设置\""},
{"original": "children:\"Build timing\"","replacement": "children:\"构建时机\""},
{"original": "children:\"Build results\"","replacement": "children:\"构建结果\""},
{"original": "children:\"Build multi-platform images and images with attestations\"","replacement": "children:\"构建多平台镜像和带有证书的镜像\""},
{"original": "children:\"Build large and multi-platform Docker images faster in Docker Build Cloud.\"","replacement": "children:\"在Docker Build Cloud中更快地构建大型和多平台Docker映像。\""},
{"original": "children:\"Build end time\"","replacement": "children:\"构建结束时间\""},
{"original": "children:\"Bugsnag\"","replacement": "children:\"臭虫\""},
{"original": "children:\"Browse\"","replacement": "children:\"浏览\""},
{"original": "children:\"Breaking down this command\"","replacement": "children:\"分解这个命令\""},
{"original": "children:\"Breaking down the command\"","replacement": "children:\"分解命令\""},
{"original": "children:\"Blog\"","replacement": "children:\"博客\""},
{"original": "children:\"Beta features\"","replacement": "children:\"测试版功能\""},
{"original": "children:\"Beta features are initial releases of potential future features. Users who participate in our beta programs have the opportunity to validate and provide feedback on future functionality. This helps us focus our efforts on what provides the most value to our users.\"","replacement": "children:\"测试版功能是潜在未来功能的初始版本。参与我们测试版计划的用户有机会验证未来功能并提供反馈。这有助于我们将精力集中在为用户提供最大价值的方面。\""},
{"original": "children:\"Beta features are initial releases of potential future features. Users who participate in our beta programs have the opportunity to validate and provide feedback on future functionality. This helps us focus our efforts on what provides the most value to our users.\"","replacement": "children:\"测试版功能是潜在未来功能的初始版本。参与我们测试版计划的用户有机会验证未来功能并提供反馈。这有助于我们将精力集中在为用户提供最大价值的方面。\""},
{"original": "children:\"Back\"","replacement": "children:\"返回\""},
{"original": "children:\"Back to Images\"","replacement": "children:\"回到镜像\""},
{"original": "children:\"Available builders\"","replacement": "children:\"可用的建设者\""},
{"original": "children:\"Automatically starts SBOM indexing newly built or pulled images, and when an image is inspected.\"","replacement": "children:\"自动启动SBOM索引新构建或拉取的镜像,以及检查镜像时。\""},
{"original": "children:\"Automatically download new updates in background.\"","replacement": "children:\"在后台自动下载新的更新。\""},
{"original": "children:\"Artifactory integration\"","replacement": "children:\"艺术工厂整合\""},
{"original": "children:\"Artifact\"","replacement": "children:\"神器\""},
{"original": "children:\"Another application changed your Desktop configurations. This may cause unexpected behaviour and errors.\"","replacement": "children:\"另一个应用程序更改了您的桌面配置。这可能会导致意外行为和错误。\""},
{"original": "children:\"Analyzing...\"","replacement": "children:\"分析……\""},
{"original": "children:\"Analyze image\"","replacement": "children:\"分析镜像\""},
{"original": "children:\"All stacks and Kubernetes resources will be deleted.\"","replacement": "children:\"所有书库和Kubernetes资源都将被删除。\""},
{"original": "children:\"All images in repository\"","replacement": "children:\"存储库中的所有镜像\""},
{"original": "children:\"All images in my organization\"","replacement": "children:\"我组织中的所有镜像\""},
{"original": "children:\"All Builds\"","replacement": "children:\"构建所有\""},
{"original": "children:\"Advanced Information\"","replacement": "children:\"高级信息\""},
{"original": "children:\"Advanced image analysis with Docker Scout\"","replacement": "children:\"使用Docker Scout进行高级镜像分析\""},
{"original": "children:\"Additional details\"","replacement": "children:\"附加详细信息\""},
{"original": "children:\"Actions\"","replacement": "children:\"行动\""},
{"original": "children:\"Acknowledgments\"","replacement": "children:\"致谢\""},
{"original": "children:\"Accumulated time:\"","replacement": "children:\"累计时间:\""},
{"original": "children:\"Accepted risk\"","replacement": "children:\"可接受的风险\""},
{"original": "children:\"About Us\"","replacement": "children:\"关于我们\""},
{"original": "children:\"Ability to build and run Wasm containers\"","replacement": "children:\"构建和运行Wasm容器的能力\""},
{"original": "children:\".wslconfig file\"","replacement": "children:\". wslconfig文件\""},
{"original": "children:[\"You will be notified about critical and high vulnerabilities that are fixable in your Scout-enabled images.\"","replacement": "children:[\"您将收到有关可在启用Scout的镜像中修复的严重和高度漏洞的通知。\""},
{"original": "children:[\"You don't have any WSL 2 distros installed. Please convert a WSL 1 distro to WSL 2, or install a new distro and it will appear here.\"","replacement": "children:[\"您没有安装任何WSL 2发行版。请将WSL 1发行版转换为WSL 2,或者安装一个新的发行版,它将出现在这里。\""},
{"original": "children:[\"You can explore the following documentation for details about Docker Scout:\"","replacement": "children:[\"您可以浏览以下留档以获取有关Docker Scout的详细信息:\""},
{"original": "children:[\"We are going to run this application with the\"","replacement": "children:[\"我们将使用\""},
{"original": "children:[\"Want to use Docker Scout on your remote repositories?\"","replacement": "children:[\"想在您的远程存储库上使用Docker Scout吗?\""},
{"original": "children:[\"Users on the Pro, Team, or Business tier can send a support request to Docker Support. \"","replacement": "children:[\"专业、团队或业务层的用户可以向Docker支持发送支持请求。\""},
{"original": "children:[\"Users can report bugs on our\"","replacement": "children:[\"用户可以报告我们的错误\""},
{"original": "children:[\"Uninstalling\"","replacement": "children:[\"卸载\""},
{"original": "children:[\"Understand your application's dependencies, analyze the vulnerabilities, and act quickly with suggested remediation options.\"","replacement": "children:[\"了解您的应用程序的依赖关系,分析漏洞,并使用建议的修复选项快速采取行动。\""},
{"original": "children:[\"Turn on Dev Environments\"","replacement": "children:[\"打开开发环境\""},
{"original": "children:[\"Troubleshoot\"","replacement": "children:[\"疑难解答\""},
{"original": "children:[\"To start a new build, run the following command in your source code location:\"","replacement": "children:[\"要开始新构建,请在您的源代码位置运行以下命令:\""},
{"original": "children:[\"To add a volume to this project, simply go to the\"","replacement": "children:[\"要为这个项目添加一个卷,只需转到\""},
{"original": "children:[\"This one is a simple web application. Select\"","replacement": "children:[\"这是一个简单的Web应用程序。选择\""},
{"original": "children:[\"The Extensions Marketplace is managed by your organization. See\"","replacement": "children:[\"扩展市场由您的组织管理。请参阅\""},
{"original": "children:[\"The default builder used when you start a build.\"","replacement": "children:[\"开始构建时使用的默认构建器。\""},
{"original": "children:[\"Starts the privileged helper process which binds privileged ports that are between 1 and 1024.\"","replacement": "children:[\"启动特权帮助进程,绑定1到1024之间的特权端口。\""},
{"original": "children:[\"Simply select the app stack, and then select\"","replacement": "children:[\"只需选择应用堆栈,然后选择\""},
{"original": "children:[\"Settings\"","replacement": "children:[\"设置\""},
{"original": "children:[\"Set your notification preferences for Docker Desktop.\"","replacement": "children:[\"设置Docker Desktop的通知首选项。\""},
{"original": "children:[\"running\"","replacement": "children:[\"运行中\""},
{"original": "children:[\"Resource Saver\"","replacement": "children:[\"资源保护模式\""},
{"original": "children:[\"Please read our\"","replacement": "children:[\"请阅读我们的\""},
{"original": "children:[\"Or enable \"","replacement": "children:[\"或启用 \""},
{"original": "children:[\"My Extensions\"","replacement": "children:[\"我的扩展\""},
{"original": "children:[\"Manage\"","replacement": "children:[\"管理\""},
{"original": "children:[\"Layers\"","replacement": "children:[\"层\""},
{"original": "children:[\"Installs runtimes that lets you run\"","replacement": "children:[\"安装允许您运行的运行时\""},
{"original": "children:[\"Import builds\"","replacement": "children:[\"导入构建\""},
{"original": "children:[\"Import builds to view in Docker Desktop.\"","replacement": "children:[\"导入构建以在Docker Desktop中查看。\""},
{"original": "children:[\"Having your configuration stored in a \"","replacement": "children:[\"将您的配置存储在 \""},
{"original": "children:[\"Give feedback\"","replacement": "children:[\"给出反馈\""},
{"original": "children:[\"For this, you will be reusing the repository at\"","replacement": "children:[\"为此,您将在\""},
{"original": "children:[\"Extensions\"","replacement": "children:[\"扩展\""},
{"original": "children:[\"Experimental features can be discontinued without notice.\"","replacement": "children:[\"实验功能可以在不通知的情况下停止。\""},
{"original": "children:[\"Estimated time: \"","replacement": "children:[\"预计时间: \""},
{"original": "children:[\"Enable Wasm, requires the\"","replacement": "children:[\"启用Wasm,需要\""},
{"original": "children:[\"Docker Scout indexing has been disabled.\"","replacement": "children:[\"Docker Scout索引已被禁用。\""},
{"original": "children:[\"Docker CLI tools are installed under $HOME/.docker/bin. Note: You need to manually add $HOME/.docker/bin to your PATH.\"","replacement": "children:[\"Docker CLI工具安装在 $HOME/. docker/bin下。注意:您需要手动将 $HOME/.docker/bin 添加到您的 PATH 中。\""},
{"original": "children:[\"Display the Dev Environments view in the Docker Dashboard.\"","replacement": "children:[\"在Docker仪表板中显示开发环境视图。\""},
{"original": "children:[\"Current version: \"","replacement": "children:[\"当前版本: \""},
{"original": "children:[\"Configure the Docker daemon by typing a json Docker daemon\"","replacement": "children:[\"通过键入json Docker守护程序来配置Docker守护程序\""},
{"original": "children:[\"Compose automatically uses\"","replacement": "children:[\"撰写自动使用\""},
{"original": "children:[\"Check back for more features soon, or sign up for our\"","replacement": "children:[\"很快回来查看更多功能,或者注册我们的\""},
{"original": "children:[\"Beta features can be discontinued without notice.\"","replacement": "children:[\"测试版功能可以在不通知的情况下停止。\""},
{"original": "children:[\"Beta features can be discontinued without notice.\"","replacement": "children:[\"测试版功能可以在不通知的情况下停止。\""},
{"original": "children:[\"Apply\",a&&\" & restart\"","replacement": "children:[\"应用\",a&&\" & 重启\""},
{"original": "children:[\"Advanced image analysis can be accessed by viewing any of the images on the\"","replacement": "children:[\"可以通过查看上的任何镜像来访问高级镜像分析\""},
{"original": "children:[\"Active subscription required.\"","replacement": "children:[\"需要积极订阅。\""},
{"original": "children:[\"Active builds\"","replacement": "children:[\"活动构建\""},
{"original": "children:[\"A newer version\"","replacement": "children:[\"更新版本\""},
{"original": "children:[\"A new Update is ready to\"","replacement": "children:[\"一个新的更新已准备好\""},
{"original": "checkboxLabel:\"Don't show this message again\"","replacement": "checkboxLabel:\"不再显示此消息\""},
{"original": "checkboxLabel:\"Don't show this message again\"","replacement": "checkboxLabel:\"不再显示此消息\""},
{"original": "caption:\"From the Images view, select an image to view its details\"","replacement": "title:\"从镜像视图中,选择一个镜像以查看其详细信息\""},
{"original": "c=\"Browse\"","replacement": "c=\"浏览\""},
{"original": "buttonTitle:\"Search images to run\"","replacement": "buttonTitle:\"搜索要运行的镜像\""},
{"original": "buttonTitle:\"Create a volume\"","replacement": "buttonTitle:\"创建卷\""},
{"original": "alt:\"Screenshot of the Docker Extensions Publishing form\"","replacement": "alt:\"截图用于Docker扩展发布\""},
{"original": "alt:\"getting started building Docker Extensions\"","replacement": "alt:\"开始构建Docker扩展\""},
{"original": "alt:\"From the Images view, select an image to view its details\"","replacement": "alt:\"从镜像视图中,选择一个镜像以查看其详细信息\""},
{"original": "actionText:\"Restart\"","replacement": "actionText:\"重启\""},
{"original": "`Downloading update","replacement": "`下载更新程序"},
{"original": "`Download size: ","replacement": "`下载大小:"},
{"original": "`:\"Search for images, containers, volumes, extensions and more...\"","replacement": "`:\"搜索镜像、容器、卷、扩展等…\""},
{"original": "\"Your container needs to be started to have access to the statistics.\"","replacement": "\"需要启动容器才能访问统计信息。\""},
{"original": "\"You can use Docker Scout to analyze local images and list its vulnerabilities.\"","replacement": "\"您可以使用Docker Scout分析本地映像并列出其漏洞。\""},
{"original": "\"You can do more when you connect to Hub\"","replacement": "\"连接到Hub时可以执行更多操作\""},
{"original": "\"You are about to uninstall Docker Desktop. Destroys all Docker containers and images local to the machine. Removes all files generated by the application.\"","replacement": "\"您即将卸载Docker Desktop。销毁机器本地的所有Docker容器和映像。删除应用程序生成的所有文件。\""},
{"original": "\"You appear to be offline. Please ensure you are connected to the internet and try again.\"","replacement": "\"您即将下线。请确保您已连接到互联网,然后重试。\""},
{"original": "\"We're sorry to see you go. This completely uninstalls Docker Desktop.\"","replacement": "\"很抱歉看到你离开。这完全卸载了Docker Desktop。\""},
{"original": "\"was released. Refresh to check the newer version. This will remove any pending software update.\"","replacement": "\"已发布。刷新以检查较新的版本。这将删除任何待处理的软件更新。\""},
{"original": "\"View image packages and CVEs\"","replacement": "\"查看镜像包和CVE\""},
{"original": "\"View files\"","replacement": "\"查看文件\""},
{"original": "\"Unlock vulnerability scanning for greater security\"","replacement": "\"解锁漏洞扫描以提高安全性\""},
{"original": "\"Uninstall Docker Desktop\"","replacement": "\"卸载Docker桌面\""},
{"original": "\"Unable to start walkthrough. An unexpected error occurred. Restart Docker Desktop and try again. If the issue persists, contact support.\"","replacement": "\"无法开始。发生意外错误。重新启动Docker Desktop并重试。如果问题仍然存在,请联系支持人员。\""},
{"original": "\"to use synchronized file shares.\"","replacement": "\"使用同步文件共享。\""},
{"original": "\"to Pro, Team, or Business to use synchronized file shares.\"","replacement": "\"到Pro、Team或Business以使用同步文件共享。\""},
{"original": "\"to improve build speeds for you, your team, and even your CI.\"","replacement": "\"提高您、您的团队甚至您的CI的构建速度。\""},
{"original": "\"To execute commands, run the container.\"","replacement": "\"要执行命令,请运行容器。\""},
{"original": "\"This solves problems with disk corruption or Docker Engine not booting etc.\"","replacement": "\"这解决了磁盘损坏或Docker引擎未启动等问题。\""},
{"original": "\"These locations will be made available to containers using synchronized caches of host filesystem contents. Available with Pro, Team, and Business subscriptions.\"","replacement": "\"这些位置将提供给使用主机文件系统content同步缓存的容器。适用于Pro、Team和Business订阅。\""},
{"original": "\"These directories (and their subdirectories) can be bind mounted into Docker containers. You can check the \"","replacement": "\"这些目录(及其子目录)可以绑定安装到Docker容器中。您可以检查 \""},
{"original": "\"The supported proxies are HTTP/HTTPS and SOCKS5.\"","replacement": "\"支持的代理是HTTP/HTTPS和SOCKS5。\""},
{"original": "\"Store and backup your images remotely\"","replacement": "\"远程存储和备份您的镜像\""},
{"original": "\"Speed up your Docker Builds.\"","replacement": "\"加快您的Docker构建。\""},
{"original": "\"so your results are always ready.\"","replacement": "\"所以你的结果总是准备好了。\""},
{"original": "\"Single platform\"","replacement": "\"单一平台\""},
{"original": "\"Sign in\"","replacement": "\"登陆\""},
{"original": "\"Sign in / Sign up\"","replacement": "\"登陆 / 注册\""},
{"original": "\"Settings...\":\"Change settings\"","replacement": "\"设置...\":\"更改设置\""},
{"original": "\"Set up your integrations now\"","replacement": "\"立即设置您的集成\""},
{"original": "\"Secure your supply chain at every level.\"","replacement": "\"在各个级别保护您的供应链。\""},
{"original": "\"Running success rate check\"","replacement": "\"运行成功率检查\""},
{"original": "\"Running in Resource Saver mode\"","replacement": "\"在资源保护模式下运行\""},
{"original": "\"Running failure percentage check. threshold=\"","replacement": "\"正在运行失败百分比检查。阈值=\""},
{"original": "\"Restart Docker Desktop\"","replacement": "\"重启Docker桌面\""},
{"original": "\"Reset to factory defaults\"","replacement": "\"重置为出厂默认值\""},
{"original": "\"Reset Kubernetes cluster\"","replacement": "\"重置 Kubernetes 集群\""},
{"original": "\"Refreshing container files...\"","replacement": "\"刷新容器文件…\""},
{"original": "\"Reduced build times\"","replacement": "\"减少构建时间\""},
{"original": "\"Recommended for PHP and JS\"","replacement": "\"推荐用于PHP和JS\""},
{"original": "\"Recommended fixes\"","replacement": "\"推荐修复\""},
{"original": "\"Quit Docker Desktop\"","replacement": "\"退出Docker桌面\""},
{"original": "\"Overview\"","replacement": "\"概览\""},
{"original": "\"Open with browser\"","replacement": "\"用浏览器打开\""},
{"original": "\"Open in terminal\"","replacement": "\"在终端打开\""},
{"original": "\"Open in external terminal\"","replacement": "\"在外部终端打开\""},
{"original": "\"Only show running containers\"","replacement": "\"只显示正在运行的容器\""},
{"original": "\"Not connected\"","replacement": "\"没有连接\""},
{"original": "\"Not analyzed\"","replacement": "\"未分析\""},
{"original": "\"No containers are running.\"","replacement": "\"没有容器在运行。\""},
{"original": "\"New version: \"","replacement": "\"新版本:\""},
{"original": "\"network or container is not found\"","replacement": "\"找不到网络或容器\""},
{"original": "\"Network Error\"","replacement": "\"网络错误\""},
{"original": "\"Manage users, control access, & set policies.\"","replacement": "\"管理用户、控制访问和设置策略。\""},
{"original": "\"Manage Extensions\"","replacement": "\"管理扩展\""},
{"original": "\"Learn how to use Docker.\"","replacement": "\"了解如何使用Docker。\""},
{"original": "\"is currently the newest version available.\"","replacement": "\"是目前可用的最新版本。\""},
{"original": "\"Inspect and manage your builders.\"","replacement": "\"检查和管理您的建设者。\""},
{"original": "\"Image details view\"","replacement": "\"镜像细节视图\""},
{"original": "\"History not supported\"","replacement": "\"不支持历史\""},
{"original": "\"Go to the Dashboard\"","replacement": "\"转到仪表板\""},
{"original": "\"Get support\"","replacement": "\"获得支持\""},
{"original": "\"Get help with Docker Desktop.\"","replacement": "\"获取有关Docker Desktop的帮助。\""},
{"original": "\"Get help from the community.\"","replacement": "\"从社区获得帮助。\""},
{"original": "\"Full history supported\"","replacement": "\"支持完整历史\""},
{"original": "\"for bind mounts in Compose projects.\"","replacement": "\"用于Compose项目中的绑定挂载。\""},
{"original": "\"Find and share images with your team.\"","replacement": "\"查找镜像并与您的团队共享。\""},
{"original": "\"Faster Git operations\"","replacement": "\"更快的Git操作\""},
{"original": "\"Failed to store displayRestartDialog option\"","replacement": "\"无法存储displayRestartDialog选项\""},
{"original": "\"Failed to start Docker Desktop\"","replacement": "\"启动Docker桌面失败\""},
{"original": "\"Failed to get displayRestartDialog option\"","replacement": "\"无法获得displayRestartDialog选项\""},
{"original": "\"Extensions Marketplace\"","replacement": "\"扩展市场\""},
{"original": "\"executing a cancelled action\"","replacement": "\"执行已取消的操作\""},
{"original": "\"Engine Type\"","replacement": "\"引擎类型\""},
{"original": "\"Engine total memory usage. This includes containers plus overheads.\"","replacement": "\"引擎总内存使用量。这包括容器和开销。\""},
{"original": "\"Engine is not running.\"","replacement": "\"docker引擎没有运行。\""},
{"original": "\"Enable selinux support.\"","replacement": "\"启用selinux支持。\""},
{"original": "\"Enable live restore of docker when containers are still running.\"","replacement": "\"当容器仍在运行时启用docker的实时恢复。\""},
{"original": "\"Enable addition of iptables rules.\"","replacement": "\"启用添加iptables规则。\""},
{"original": "\"Ejection timer running\"","replacement": "\"弹射计时器运行\""},
{"original": "\"Downloading updateupdate…\"","replacement": "\"下载更新程序update…\""},
{"original": "\"Downloading update (","replacement": "\"下载更新程序 ("},
{"original": "\"Docker Desktop is running in Resource Saver mode\"","replacement": "\"Docker Desktop以资源保护模式运行\""},
{"original": "\"Directory sharing is limited to specific directories\"","replacement": "\"目录共享仅限于特定目录\""},
{"original": "\"Debug mode is enabled\"","replacement": "\"调试模式已启用\""},
{"original": "\"Debug mode is enabled\"","replacement": "\"调试模式已启用\""},
{"original": "\"Counting disabled. Cancelling timer.\"","replacement": "\"计数禁用。取消计时器。\""},
{"original": "\"Copy docker run\"","replacement": "\"复制docker运行参数\""},
{"original": "\"Connect for free\"","replacement": "\"免费连接\""},
{"original": "\"Community Forums\"","replacement": "\"社区论坛\""},
{"original": "\"Collaborate with your team\"","replacement": "\"与您的团队合作\""},
{"original": "\"Clean / Purge data\"","replacement": "\"清理/清除数据\""},
{"original": "\"Check the status of Docker services.\"","replacement": "\"检查Docker服务的状态。\""},
{"original": "\"Can't apply a strategy processor before defining an active strategy\"","replacement": "\"在定义活动策略之前无法应用策略处理器\""},
{"original": "\"Cannot use proxies if Proxy, Proxy.revocable or Reflect are not available\"","replacement": "\"如果Proxy、Proxy.revocable或Reflect不可用,则无法使用代理\""},
{"original": "\"Cancelled on client\"","replacement": "\"在客户端取消\""},
{"original": "\"Build container images and artifacts from source code.\"","replacement": "\"从源代码构建容器映像和工件。\""},
{"original": "\"apply derefers refers\"","replacement": "\"应用取消指\""},
{"original": "\"apply assert build buildindex evaluate fail keydiff keypatch loadxml nothor notify output parallel sequential soapcall wait\"","replacement": "\"应用断言构建buildindex评估失败keydiff密钥补丁loadxml nothor通知输出并行顺序soapcall等待\""},
{"original": "\"An unexpected error occurred. Quit Docker Desktop and try again.\"","replacement": "\"发生意外错误。退出Docker Desktop并重试。\""},
{"original": "\"An unexpected error occurred while updating. Restart Docker Desktop to try again.\"","replacement": "\"更新时发生意外错误。重新启动Docker Desktop重试。\""},
{"original": "\"An admin of an organization you belong to has enabled a shared builder from Docker Build Cloud. Choose which builder you'd like to use and then select \"","replacement": "\"您所属组织的管理员已从Docker Build Cloud启用共享构建器。选择您要使用的构建器,然后选择 \""},
{"original": "\"All stacks and Kubernetes resources are deleted.\"","replacement": "\"删除所有堆栈和库伯内特斯资源。\""},
{"original": "\"All settings and data will be removed.\"","replacement": "\"所有设置和数据都将被删除。\""},
{"original": "\"All containers and settings are preserved.\"","replacement": "\"保留所有容器和设置。\""},
{"original": "\"Advanced image analysis\"","replacement": "\"高级镜像分析\""},
{"original": "\"A new version of Docker Desktop is ready to install. Restart Docker Desktop to install.\"","replacement": "\"新版本的Docker Desktop已准备好安装。重新启动Docker Desktop以进行安装。\""},
{"original": "\"A networking error occurred, preventing normal operation.\"","replacement": "\"发生网络错误,无法正常运行。\""},
{"original": "\"*Sign in and an active subscription required\"","replacement": "\"*登录并需要有效订阅\""},
{"original": "\"* to bring the tools you need to debug your container, even when it's not running\"","replacement": "\"* 带上调试容器所需的工具,即使它没有运行\""},
{"original": "\" to create a local instance of the new builder.\"","replacement": "\"创建新构建器的本地实例。\""},
{"original": "\" to bring the tools you need to debug your container, even when it's not running\"","replacement": "\" 带上调试容器所需的工具,即使它没有运行\""},
{"original": "\" in the project folder again. This will restart your application again. Note that when the db container is deleted, any todos created are also lost.\"","replacement": "\"再次在项目文件夹中。这将再次重新启动您的应用程序。请注意,当删除db容器时,创建的任何待办事项也会丢失。\""},
{"original": "\" Be sure to copy the Diagnostics ID report to include in your request.\"","replacement": "\" 请务必复制诊断ID报告以包含在您的请求中。\""},
{"original": "):\"Uninstall\"","replacement": "):\"卸载\""}
]}
  • 4
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
要在Mac上安装Docker Desktop并进行汉化,可以按照以下步骤进行操作: 1. 首先,从Docker官网下载Docker Desktop for Mac的安装文件(.dmg文件)。 2. 双击下载的Docker.dmg文件开始安装,将Docker应用程序拖动到“Applications”文件夹中,等待安装完成。 3. 在启动台找到Docker应用程序并点击启动,稍等片刻直到Docker成功启动。屏幕右上角菜单栏将显示一个鲸鱼图标,点击该图标可以查看Docker的运行状态。 4. 在右上角任务栏中点击Docker Desktop应用图标,选择“Perferences”(首选项),然后在左侧菜单中选择“Docker Engine”(Docker引擎)。 5. 在右侧的JSON编辑器中,找到"registry-mirrors"字段,并在其下面添加以下镜像地址json配置: "registry-mirrors": [ "https://0wg8f6sb.mirror.aliyuncs.com" ]。 6. 添加完成后,点击“Apply & Restart”按钮,Docker将重新启动并应用配置的镜像地址。 7. 现在,您的Docker Desktop已经成功安装并进行了汉化配置。 请注意,以上步骤仅包括安装和汉化Docker Desktop的基本步骤,具体操作可能因版本不同而有所差异。如遇到其他问题,建议查阅Docker官方文档或进行进一步的网络搜索以获取更详细的指导。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* *3* [MacBook Pro M1 安装 Docker](https://blog.csdn.net/qq991658923/article/details/121315504)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

qq464917671

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值