Adds simplified chinese, courtesy of YKDZ
This commit is contained in:
parent
8a5c094ce1
commit
8c334ff5f0
@ -7,7 +7,7 @@ can share a network or be split into clusters; they can be hidden on a network o
|
|||||||
- **Vault economy support** -- can add costs for create, destroy and use.
|
- **Vault economy support** -- can add costs for create, destroy and use.
|
||||||
- **Ability to create custom gate configurations**. Four different default gate configurations are available.
|
- **Ability to create custom gate configurations**. Four different default gate configurations are available.
|
||||||
- **Message customization**
|
- **Message customization**
|
||||||
- **Multiple built-in languages** (de, en, es, fr, hu, it, nb-no, nl, nn-no, pt-br, ru)
|
- **Multiple built-in languages** (de, en, es, fr, hu, it, nb-no, nl, nn-no, pt-br, ru, zh_cn)
|
||||||
- **Teleport across worlds or servers** (BungeeCord supported)
|
- **Teleport across worlds or servers** (BungeeCord supported)
|
||||||
- **Vehicle teleportation** -- teleport minecarts, boats, horses, pigs and striders
|
- **Vehicle teleportation** -- teleport minecarts, boats, horses, pigs and striders
|
||||||
- **Leashed teleportation** -- teleport any creature in a leash with the player
|
- **Leashed teleportation** -- teleport any creature in a leash with the player
|
||||||
@ -397,6 +397,10 @@ portalInfoServer=Server: %server%
|
|||||||
|
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
#### \[Version 0.9.3.6] EpicKnarvik97 fork
|
||||||
|
|
||||||
|
- Adds the simplified Chinese language file provided by spigot user YKDZ
|
||||||
|
|
||||||
#### \[Version 0.9.3.3] EpicKnarvik97 fork
|
#### \[Version 0.9.3.3] EpicKnarvik97 fork
|
||||||
|
|
||||||
- Prevents Zombified Piglins from randomly spawning at Stargates
|
- Prevents Zombified Piglins from randomly spawning at Stargates
|
||||||
|
2
pom.xml
2
pom.xml
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
<groupId>net.knarcraft</groupId>
|
<groupId>net.knarcraft</groupId>
|
||||||
<artifactId>Stargate</artifactId>
|
<artifactId>Stargate</artifactId>
|
||||||
<version>0.9.3.3</version>
|
<version>0.9.3.6</version>
|
||||||
|
|
||||||
<licenses>
|
<licenses>
|
||||||
<license>
|
<license>
|
||||||
|
@ -23,8 +23,9 @@ public class CommandAbout implements CommandExecutor {
|
|||||||
commandSender.sendMessage(textColor + "Go to " + highlightColor +
|
commandSender.sendMessage(textColor + "Go to " + highlightColor +
|
||||||
"https://git.knarcraft.net/EpicKnarvik97/Stargate " + textColor + "for the official repository");
|
"https://git.knarcraft.net/EpicKnarvik97/Stargate " + textColor + "for the official repository");
|
||||||
String author = Stargate.getStargateConfig().getLanguageLoader().getString("author");
|
String author = Stargate.getStargateConfig().getLanguageLoader().getString("author");
|
||||||
if (!author.isEmpty())
|
if (!author.isEmpty()) {
|
||||||
commandSender.sendMessage(textColor + "Language created by " + highlightColor + author);
|
commandSender.sendMessage(textColor + "Language created by " + highlightColor + author);
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -254,6 +254,7 @@ public class ConfigTabCompleter implements TabCompleter {
|
|||||||
languages.add("nn-no");
|
languages.add("nn-no");
|
||||||
languages.add("pt-br");
|
languages.add("pt-br");
|
||||||
languages.add("ru");
|
languages.add("ru");
|
||||||
|
languages.add("zh_cn");
|
||||||
//TODO: Generate this list dynamically by listing the language files in the jar and adding the user's custom
|
//TODO: Generate this list dynamically by listing the language files in the jar and adding the user's custom
|
||||||
// language files
|
// language files
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# stargate Configuration File
|
# stargate Configuration File
|
||||||
# Main stargate config
|
# Main stargate config
|
||||||
|
|
||||||
# language - The language file to load for messages
|
# language - The language file to load for messages (de,en,es,fr,hu,it,nb-no,nl,nn-no,pt-br,ru,zh_cn)
|
||||||
language: en
|
language: en
|
||||||
# adminUpdateAlert - Whether to alert admins about new plugin updates
|
# adminUpdateAlert - Whether to alert admins about new plugin updates
|
||||||
adminUpdateAlert: true
|
adminUpdateAlert: true
|
||||||
|
39
src/main/resources/lang/zh_cn.txt
Normal file
39
src/main/resources/lang/zh_cn.txt
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
author=YKDZ
|
||||||
|
signRightClick=右键
|
||||||
|
ecoLoadError=Vault 已加载, 但未检测到合适的经济插件
|
||||||
|
createConflict=星门与现有星门冲突
|
||||||
|
invalidMsg=无效的目的地
|
||||||
|
prefix=[星门]
|
||||||
|
ecoObtain=从星门 %portal% 收取了 %cost%
|
||||||
|
vaultLoaded=检测到 Vault v%version%
|
||||||
|
reloaded=星门插件已重载
|
||||||
|
bungeeDeny=你没有创建跨服星门的权限.
|
||||||
|
signToUse=以使用星门
|
||||||
|
signInvalidGate=未知星门
|
||||||
|
bungeeEmpty=跨服星门需要提供目的地和网络.
|
||||||
|
createMsg=星门已创建
|
||||||
|
bungeeDisabled=跨服功能已被禁用.
|
||||||
|
blockMsg=目的地被阻挡
|
||||||
|
ecoInFunds=余额不足
|
||||||
|
createNameLength=名称过短或过长.
|
||||||
|
vaultLoadError=未检测到Vault. 经济模块已禁用
|
||||||
|
denyMsg=访问被拒
|
||||||
|
ecoDeduct=花费 %cost%
|
||||||
|
signDisconnected=已取消链接
|
||||||
|
createNetDeny=你没有这个星门网络的许可
|
||||||
|
bungeeSign=传送到
|
||||||
|
portalInfoName=名称: %name%
|
||||||
|
destroyMsg=星门已被破坏
|
||||||
|
portalInfoTitle=[星门信息]
|
||||||
|
createExists=与已有星门重名
|
||||||
|
teleportMsg=已传送
|
||||||
|
createGateDeny=你没有使用这个星门结构的权限
|
||||||
|
signRandom=随机
|
||||||
|
portalInfoServer=服务器: %server%
|
||||||
|
createWorldDeny=你没有链接这个世界的权限
|
||||||
|
portalInfoDestination=目的地: %destination%
|
||||||
|
portalInfoNetwork=星门网络: %network%
|
||||||
|
destEmpty=目的地列表为空
|
||||||
|
createPersonal=在私人网络中创建星门
|
||||||
|
ecoRefund=退款 %cost%
|
||||||
|
createFull=此星门网络已满
|
@ -1,6 +1,6 @@
|
|||||||
name: Stargate
|
name: Stargate
|
||||||
main: net.knarcraft.stargate.Stargate
|
main: net.knarcraft.stargate.Stargate
|
||||||
version: 0.9.3.3
|
version: 0.9.3.6
|
||||||
description: Stargate mod for Bukkit Revived
|
description: Stargate mod for Bukkit Revived
|
||||||
author: EpicKnarvik97
|
author: EpicKnarvik97
|
||||||
authors: [ Drakia, PseudoKnight, EpicKnarvik97 ]
|
authors: [ Drakia, PseudoKnight, EpicKnarvik97 ]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user