From 1b568f6593c203a84f14872f34475a1b9f50e647 Mon Sep 17 00:00:00 2001 From: Wong Wing Chun Date: Fri, 16 Jan 2026 21:48:02 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20Voxy=20=E7=BF=BB?= =?UTF-8?q?=E8=AF=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../assets/modrinth-voxy/voxy/lang/en_us.json | 36 +++++++++++++++++++ .../assets/modrinth-voxy/voxy/lang/zh_cn.json | 36 +++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/en_us.json create mode 100644 projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json diff --git a/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/en_us.json b/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/en_us.json new file mode 100644 index 000000000000..4fba3d8eff92 --- /dev/null +++ b/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/en_us.json @@ -0,0 +1,36 @@ +{ + "voxy.config.title": "Voxy", + + "voxy.config.general": "General", + "voxy.config.rendering": "Rendering", + + "voxy.config.general.enabled": "Enable Voxy", + "voxy.config.general.enabled.tooltip": "Fully enables or disables voxy", + + "voxy.config.general.serviceThreads": "Service threads", + "voxy.config.general.serviceThreads.tooltip": "Number of threads the ServiceThreadPool can use", + + "voxy.config.general.useSodiumBuilder": "Use sodium threads", + "voxy.config.general.useSodiumBuilder.tooltip": "Uses sodium builder threads as part of voxys thread pool, can reduce stuttering and lag when moving quickly at high render distance", + + "voxy.config.general.ingest": "Chunk Ingest", + "voxy.config.general.ingest.tooltip": "Enables or disables voxies ability to convert new chunks into LoDs", + + "voxy.config.general.rendering": "Voxy Rendering", + "voxy.config.general.rendering.tooltip": "Enables or disables voxy rendering", + + "voxy.config.general.subDivisionSize": "Pixels^2 of subdivision size", + "voxy.config.general.subDivisionSize.tooltip": "Maximum size in pixels (squared) of screenspace AABB before subdiving to smaller LoDs (Smaller being higher quality)", + + "voxy.config.general.renderDistance": "Render distance", + "voxy.config.general.renderDistance.tooltip": "Render distance of voxy in chunks", + + "voxy.config.general.environmental_fog": "Enable environmental fog", + "voxy.config.general.environmental_fog.tooltip": "Enables or disables voxy rendering environmental fog", + + "voxy.config.general.render_fog": "Enable render fog", + "voxy.config.general.render_fog.tooltip": "Enables or disables render fog effect", + + "voxy.config.general.render_statistics": "Enable render statistics", + "voxy.config.general.render_statistics.tooltip": "Enable render statistics in F3 menu, useful for debugging" +} \ No newline at end of file diff --git a/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json b/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json new file mode 100644 index 000000000000..2fd800900d16 --- /dev/null +++ b/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json @@ -0,0 +1,36 @@ +{ + "voxy.config.title": "Voxy", + + "voxy.config.general": "通用", + "voxy.config.rendering": "渲染", + + "voxy.config.general.enabled": "启用 Voxy", + "voxy.config.general.enabled.tooltip": "完全启用或禁用 Voxy", + + "voxy.config.general.serviceThreads": "服务线程数", + "voxy.config.general.serviceThreads.tooltip": "服务线程池可使用的线程数量", + + "voxy.config.general.useSodiumBuilder": "使用 Sodium 线程", + "voxy.config.general.useSodiumBuilder.tooltip": "将 Sodium 的构建器线程加入 Voxy 线程池,高渲染距离下快速移动时可减少卡顿", + + "voxy.config.general.ingest": "区块载入", + "voxy.config.general.ingest.tooltip": "启用或禁用 Voxy 将新区块转换为细节层次(LoD)的功能", + + "voxy.config.general.rendering": "Voxy 渲染", + "voxy.config.general.rendering.tooltip": "启用或禁用 Voxy 渲染", + + "voxy.config.general.subDivisionSize": "细分像素面积阈值", + "voxy.config.general.subDivisionSize.tooltip": "屏幕空间 AABB 的最大像素面积(平方),超过此值将细分至更精细的 LoD(数值越小,质量越高)", + + "voxy.config.general.renderDistance": "渲染距离", + "voxy.config.general.renderDistance.tooltip": "Voxy 的渲染距离(单位:区块)", + + "voxy.config.general.environmental_fog": "启用环境雾效", + "voxy.config.general.environmental_fog.tooltip": "启用或禁用 Voxy 的环境雾效渲染", + + "voxy.config.general.render_fog": "启用渲染雾效", + "voxy.config.general.render_fog.tooltip": "启用或禁用渲染雾效效果", + + "voxy.config.general.render_statistics": "启用渲染统计", + "voxy.config.general.render_statistics.tooltip": "在 F3 调试界面中显示渲染统计信息,便于调试" +} \ No newline at end of file From 1dabf531c387c48e830c8082af7b7bdb1dcad032 Mon Sep 17 00:00:00 2001 From: Wong Wing Chun Date: Fri, 16 Jan 2026 21:54:37 +0800 Subject: [PATCH 2/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20`=E6=B8=B2=E6=9F=93?= =?UTF-8?q?=E7=BB=9F=E8=AE=A1`=20=E8=87=B3=20`=E6=B8=B2=E6=9F=93=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1=E4=BF=A1=E6=81=AF`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json b/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json index 2fd800900d16..f297b63f2214 100644 --- a/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json +++ b/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json @@ -31,6 +31,6 @@ "voxy.config.general.render_fog": "启用渲染雾效", "voxy.config.general.render_fog.tooltip": "启用或禁用渲染雾效效果", - "voxy.config.general.render_statistics": "启用渲染统计", + "voxy.config.general.render_statistics": "启用渲染统计信息", "voxy.config.general.render_statistics.tooltip": "在 F3 调试界面中显示渲染统计信息,便于调试" } \ No newline at end of file From 2a48c04dc21798adb4cd9823caeecd4fff1369a4 Mon Sep 17 00:00:00 2001 From: Wong Wing Chun Date: Wed, 21 Jan 2026 19:50:49 +0800 Subject: [PATCH 3/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20`=E9=9B=BE=E6=95=88`?= =?UTF-8?q?=20=E4=B8=BA=20`=E8=BF=B7=E9=9B=BE`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../assets/modrinth-voxy/voxy/lang/zh_cn.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json b/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json index f297b63f2214..1004240cd598 100644 --- a/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json +++ b/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json @@ -25,12 +25,13 @@ "voxy.config.general.renderDistance": "渲染距离", "voxy.config.general.renderDistance.tooltip": "Voxy 的渲染距离(单位:区块)", - "voxy.config.general.environmental_fog": "启用环境雾效", - "voxy.config.general.environmental_fog.tooltip": "启用或禁用 Voxy 的环境雾效渲染", + "voxy.config.general.environmental_fog": "启用环境迷雾", + "voxy.config.general.environmental_fog.tooltip": "启用或禁用 Voxy 的环境迷雾渲染", - "voxy.config.general.render_fog": "启用渲染雾效", - "voxy.config.general.render_fog.tooltip": "启用或禁用渲染雾效效果", + "voxy.config.general.render_fog": "启用渲染迷雾", + "voxy.config.general.render_fog.tooltip": "启用或禁用渲染迷雾效果", "voxy.config.general.render_statistics": "启用渲染统计信息", "voxy.config.general.render_statistics.tooltip": "在 F3 调试界面中显示渲染统计信息,便于调试" -} \ No newline at end of file + +} From 0544544c6cb34fbb63ab386a177beaecbac8b94c Mon Sep 17 00:00:00 2001 From: Wong Wing Chun Date: Sat, 24 Jan 2026 21:32:29 +0800 Subject: [PATCH 4/4] Update projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json Co-authored-by: SlimeSB <86453765+SlimeSB@users.noreply.github.com> --- projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json b/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json index 1004240cd598..c36a909ed083 100644 --- a/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json +++ b/projects/1.21-fabric/assets/modrinth-voxy/voxy/lang/zh_cn.json @@ -13,7 +13,7 @@ "voxy.config.general.useSodiumBuilder": "使用 Sodium 线程", "voxy.config.general.useSodiumBuilder.tooltip": "将 Sodium 的构建器线程加入 Voxy 线程池,高渲染距离下快速移动时可减少卡顿", - "voxy.config.general.ingest": "区块载入", + "voxy.config.general.ingest": "区块摄取", "voxy.config.general.ingest.tooltip": "启用或禁用 Voxy 将新区块转换为细节层次(LoD)的功能", "voxy.config.general.rendering": "Voxy 渲染",