mirror of
https://github.com/minetest-mods/skinsdb.git
synced 2025-07-23 09:40:17 +02:00
Compare commits
3 Commits
166489597a
...
8054293c2c
Author | SHA1 | Date | |
---|---|---|---|
8054293c2c | |||
2d39375bc2 | |||
2673afa087 |
18
locale/zh_CN.txt
Normal file
18
locale/zh_CN.txt
Normal file
@ -0,0 +1,18 @@
|
||||
#Translation by IFRFSX(BingFengFSX)
|
||||
|
||||
Raw texture = 自然状态的纹理
|
||||
Name = 名称
|
||||
Author = 作者
|
||||
Change = 更换
|
||||
Page = 页面
|
||||
License = 许可证
|
||||
Description = 说明
|
||||
Show, list or set player's skin = 显示,列出或者设置玩家的皮肤
|
||||
Player not found = 玩家未找到
|
||||
unknown command = 未知命令
|
||||
see /help skinsdb for supported parameters = 有关skinsdb支持的参数,参见 /help
|
||||
skin set to = 皮肤设置为
|
||||
invalid skin = 无效皮肤
|
||||
unknown parameter = 未知参数
|
||||
unknown skin = 未知皮肤
|
||||
Downloads the specified range of skins and shuts down the server = 下载指定范围的皮肤并关闭服务器
|
@ -71,8 +71,8 @@ end
|
||||
|
||||
local function skins_sort(skinslist)
|
||||
table.sort(skinslist, function(a,b)
|
||||
local a_id = a:get_meta("_sort_id")
|
||||
local b_id = b:get_meta("_sort_id")
|
||||
local a_id = a:get_meta("_sort_id") or 10000
|
||||
local b_id = b:get_meta("_sort_id") or 10000
|
||||
if a_id ~= b_id then
|
||||
return a:get_meta("_sort_id") < b:get_meta("_sort_id")
|
||||
else
|
||||
|
Reference in New Issue
Block a user