From c37f779e20e6de7b475ae97f2286060a6f79de14 Mon Sep 17 00:00:00 2001 From: ZHAY10086 Date: Thu, 18 Jun 2026 09:05:51 +0800 Subject: [PATCH 1/4] Update zh_cn.lang --- src/main/resources/assets/cells/lang/zh_cn.lang | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/resources/assets/cells/lang/zh_cn.lang b/src/main/resources/assets/cells/lang/zh_cn.lang index 82c765e..b73d83d 100644 --- a/src/main/resources/assets/cells/lang/zh_cn.lang +++ b/src/main/resources/assets/cells/lang/zh_cn.lang @@ -659,6 +659,7 @@ item.cells.part.subnet_proxy_front.name=ME子网络代理(前端) item.cells.part.subnet_proxy_back.tooltip=将前端部件放置在后端部件上以创建子网络,可将多个ME网络连接在一起。 item.cells.part.subnet_proxy_front.tooltip=将后端部件放置在前端部件上以创建子网络,可将多个ME网络连接在一起。 item.cells.part.subnet_proxy_direction.tooltip=内容从后端部件流向前端部件。请确保放置方向正确。 +item.cells.part.subnet_proxy_filters.tooltip=可以通过快速添加按键、JEI拖拽,或JEI配方填充(“+”号按钮),来添加过滤项。 gui.cells.subnet_proxy.title=子网络代理 gui.cells.subnet_proxy.filter_mode=过滤模式:%s gui.cells.subnet_proxy.filter_mode.description=添加过滤项时,会转换为此类型。 From 1ada23e4f4efbefa5bb40d08576c1882efc21e32 Mon Sep 17 00:00:00 2001 From: ZHAY10086 Date: Sun, 26 Jul 2026 19:04:15 +0800 Subject: [PATCH 2/4] Update zh_cn.lang --- .../resources/assets/cells/lang/zh_cn.lang | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/src/main/resources/assets/cells/lang/zh_cn.lang b/src/main/resources/assets/cells/lang/zh_cn.lang index b73d83d..2062ccb 100644 --- a/src/main/resources/assets/cells/lang/zh_cn.lang +++ b/src/main/resources/assets/cells/lang/zh_cn.lang @@ -62,6 +62,19 @@ tooltip.cells.polling_rate.import=输入的固定间隔(0 = 自适应,设置 tooltip.cells.polling_rate.export=输出的固定间隔(0 = 自适应,设置为非零值时以刻为单位) cells.polling_rate.custom.import=轮询率:§r每§b%s§r输入一次 cells.polling_rate.custom.export=轮询率:§r每§b%s§r输出一次 +tooltip.cells.probe.type_prefix=%s:%s +tooltip.cells.probe.network.import.fixed=向AE2网络输入:每§a%s§r一次%s +tooltip.cells.probe.network.import.adaptive=向AE2网络输入:自适应(每§a%s§r到§a%s§r一次)%s +tooltip.cells.probe.network.export.fixed=从AE2网络输出:每§a%s§r一次%s +tooltip.cells.probe.network.export.adaptive=从AE2网络输出:自适应(每§a%s§r到§a%s§r一次)%s +tooltip.cells.probe.network.io.fixed=向/从AE2网络输入/输出:每§a%s§r一次%s +tooltip.cells.probe.network.io.adaptive=向/从AE2网络输入/输出:自适应(每§a%s§r到§a%s§r一次)%s +tooltip.cells.probe.card.pull=从%s拉取:每§a%s§r一次%s +tooltip.cells.probe.card.push=向%s推送:每§a%s§r一次%s +tooltip.cells.probe.quantity.single=(最多§b%s§r) +tooltip.cells.probe.quantity.io=(输入§b%s§r / 输入§b%s§r) +tooltip.cells.probe.scope.adjacent=每个相邻容器 +tooltip.cells.probe.scope.facing=面向的容器 # Clear filters - direction-specific (different behavior) tooltip.cells.clear_filters.import=清除所有过滤槽位。将跳过存有内容的过滤槽位。 @@ -226,8 +239,8 @@ item.cells.equal_distribution_card.16x.name=均分卡(16x) item.cells.equal_distribution_card.32x.name=均分卡(32x) item.cells.equal_distribution_card.63x.name=均分卡(63x) item.cells.equal_distribution_card.infinite.name=均分卡(无限制) -tooltip.cells.equal_distribution_card.desc=将元件可容纳类型限制为%d,并均分容量(每种类型占用元件的%d)。将元件的一半容量预留给类型开销。 -tooltip.cells.equal_distribution_card.desc.infinite=将容量均分给所有类型。如果你在配置中增加了“最大类型数”,使用该升级卡。 +tooltip.cells.equal_distribution_card.desc=将元件可容纳类型限制为%d种,并均分容量(每种类型上限为元件总容量的%d)。会预先预留类型开销(即元件的一半容量),而不是在添加每种类型时才预留。 +tooltip.cells.equal_distribution_card.desc.infinite=将容量均分给所有类型。仅在配置中增加了“最大类型数”时,才应使用该升级卡。 # Compression Tier Card item.cells.compression_tier_card.3x.name=压缩等级卡(3x) @@ -365,7 +378,7 @@ tooltip.cells.upgrade.oredict_active=矿物词典转换已激活 item.cells.configurable_cell.name=可配置ME存储元件 item.cells.configurable_cell.name_configured=可配置ME存储元件(%s) tooltip.cells.configurable_cell.no_component=未安装组件!放入ME存储组件来定义容量。 -tooltip.cells.configurable_cell.info=可接受任意ME存储组件以定义容量和类型。自带内置的均分功能。 +tooltip.cells.configurable_cell.info=可接受任意ME存储组件以定义容量和类型。自带内置的均分卡。 tooltip.cells.component.configurable_compatible=§b兼容可配置元件§r tooltip.cells.configurable_cell.capacity_per_type=每种类型上限:%s %s From 2272a8124e6ede3fe3f082d9821208e72fb60769 Mon Sep 17 00:00:00 2001 From: ZHAY10086 Date: Wed, 29 Jul 2026 07:54:57 +0800 Subject: [PATCH 3/4] Update zh_cn.lang --- src/main/resources/assets/cells/lang/zh_cn.lang | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/resources/assets/cells/lang/zh_cn.lang b/src/main/resources/assets/cells/lang/zh_cn.lang index 2062ccb..101460f 100644 --- a/src/main/resources/assets/cells/lang/zh_cn.lang +++ b/src/main/resources/assets/cells/lang/zh_cn.lang @@ -269,6 +269,10 @@ tooltip.cells.emc_cell.unbound=未绑定:重新放入以绑定至玩家 tooltip.cells.emc_cell.buffered=缓存的EMC:%s tooltip.cells.emc_cell.unlearned=未学习的分区过滤项:%s tooltip.cells.emc_cell.unlearned_hint=按住Shift列出被阻止的过滤项 +message.cells.emc_cell.link_copy=从EMC接口复制了%s个新的分区过滤项 +message.cells.emc_cell.link_copy_full=从EMC接口复制了%s个新的分区过滤项;另有%s个唯一过滤项无法容纳 +message.cells.emc_cell.link_copy_full_none=EMC元件分区已满;另有%s个唯一过滤项无法容纳 +message.cells.emc_cell.link_copy_none=未从EMC接口复制任何新的分区过滤项 tooltip.cells.emc_capacity_card.desc=允许元件提供%s种不同的分区物品 From a71ca4358d7504ea84c646ed5fd29698472ec2c0 Mon Sep 17 00:00:00 2001 From: ZHAY10086 Date: Mon, 3 Aug 2026 10:17:39 +0800 Subject: [PATCH 4/4] Update zh_cn.lang --- .../resources/assets/cells/lang/zh_cn.lang | 53 +++++++++++++++---- 1 file changed, 44 insertions(+), 9 deletions(-) diff --git a/src/main/resources/assets/cells/lang/zh_cn.lang b/src/main/resources/assets/cells/lang/zh_cn.lang index 101460f..ed17430 100644 --- a/src/main/resources/assets/cells/lang/zh_cn.lang +++ b/src/main/resources/assets/cells/lang/zh_cn.lang @@ -63,18 +63,53 @@ tooltip.cells.polling_rate.export=输出的固定间隔(0 = 自适应,设置 cells.polling_rate.custom.import=轮询率:§r每§b%s§r输入一次 cells.polling_rate.custom.export=轮询率:§r每§b%s§r输出一次 tooltip.cells.probe.type_prefix=%s:%s -tooltip.cells.probe.network.import.fixed=向AE2网络输入:每§a%s§r一次%s -tooltip.cells.probe.network.import.adaptive=向AE2网络输入:自适应(每§a%s§r到§a%s§r一次)%s -tooltip.cells.probe.network.export.fixed=从AE2网络输出:每§a%s§r一次%s -tooltip.cells.probe.network.export.adaptive=从AE2网络输出:自适应(每§a%s§r到§a%s§r一次)%s -tooltip.cells.probe.network.io.fixed=向/从AE2网络输入/输出:每§a%s§r一次%s -tooltip.cells.probe.network.io.adaptive=向/从AE2网络输入/输出:自适应(每§a%s§r到§a%s§r一次)%s -tooltip.cells.probe.card.pull=从%s拉取:每§a%s§r一次%s -tooltip.cells.probe.card.push=向%s推送:每§a%s§r一次%s + +# WAILA/TOP probe tooltips +tooltip.cells.probe.network.import.fixed=%s输入:每§a%s§r一次%s +tooltip.cells.probe.network.import.adaptive=%s输入:自适应(每§a%s§r到§a%s§r一次)%s +tooltip.cells.probe.network.export.fixed=%s输出:每§a%s§r一次%s +tooltip.cells.probe.network.export.adaptive=%s输出:自适应(每§a%s§r到§a%s§r一次)%s +tooltip.cells.probe.network.io.fixed=%s输入/输出:每§a%s§r一次%s +tooltip.cells.probe.network.io.adaptive=%s输入/输出:自适应(每§a%s§r到§a%s§r一次)%s +tooltip.cells.probe.card.pull=从相连容器拉取%s:每§a%s§r一次%s +tooltip.cells.probe.card.push=向相连容器推送%s:每§a%s§r一次%s +tooltip.cells.probe.card.sides.pull=%s的拉取方向:%s +tooltip.cells.probe.card.sides.push=%s的推送方向:%s +tooltip.cells.probe.card.sides.io=%s的拉取/推送方向:%s tooltip.cells.probe.quantity.single=(最多§b%s§r) -tooltip.cells.probe.quantity.io=(输入§b%s§r / 输入§b%s§r) +tooltip.cells.probe.quantity.io=(§b%s§r输入 / §b%s§r输出) +tooltip.cells.probe.scope.none=无相连容器 tooltip.cells.probe.scope.adjacent=每个相邻容器 tooltip.cells.probe.scope.facing=面向的容器 +tooltip.cells.probe.list_separator=%s、%s +tooltip.cells.probe.side.north=§a北§r +tooltip.cells.probe.side.south=§a南§r +tooltip.cells.probe.side.west=§a西§r +tooltip.cells.probe.side.east=§a东§r +tooltip.cells.probe.side.up=§a上§r +tooltip.cells.probe.side.down=§a下§r +tooltip.cells.probe.filters=已配置过滤项:§a%s§r / §a%s§r +tooltip.cells.probe.filters.import=已配置的%s输入过滤项:§a%s§r / §a%s§r +tooltip.cells.probe.filters.export=已配置的%s输出过滤项:§a%s§r / §a%s§r +tooltip.cells.probe.state.enabled=已启用 +tooltip.cells.probe.state.disabled=已禁用 +tooltip.cells.probe.state.installed=已安装 +tooltip.cells.probe.state.not_installed=未安装 +tooltip.cells.probe.state.none=§c无§r +tooltip.cells.probe.interface.behavior.import=输入行为:%s +tooltip.cells.probe.interface.behavior.export=输出行为:%s +tooltip.cells.probe.interface.behavior.overflow=溢出销毁 +tooltip.cells.probe.interface.behavior.trash_unselected=过滤销毁 +tooltip.cells.probe.compacting.summary=公开的样板:§b%s§r,自定义乘数:§a%s§r +tooltip.cells.probe.subnet_proxy.unpaired_front=§e前端部件未与后端部件配对。 +tooltip.cells.probe.subnet_proxy.unpaired_back=§e后端部件未与前端部件配对。 +tooltip.cells.probe.subnet_proxy.channels=公开的频道:%s +tooltip.cells.probe.subnet_proxy.behavior=优先级:§b%s§r,传入卡:%s +tooltip.cells.probe.subnet_proxy.matching=匹配:%s +tooltip.cells.probe.matching.exact=精确 +tooltip.cells.probe.matching.fuzzy=模糊 +tooltip.cells.probe.matching.whitelist=白名单 +tooltip.cells.probe.matching.blacklist=黑名单 # Clear filters - direction-specific (different behavior) tooltip.cells.clear_filters.import=清除所有过滤槽位。将跳过存有内容的过滤槽位。