mirror of
https://github.com/hyper-neptune/yuuki.git
synced 2024-11-16 03:14:36 +08:00
48 lines
2.9 KiB
Python
48 lines
2.9 KiB
Python
#!/usr/bin/python3
|
||
# coding=UTF-8
|
||
"""
|
||
Star Yuuki Bot - Yuuki_i18n
|
||
~~~~~~~~~~~
|
||
This is a Language Package in SYB.
|
||
It`s belong to Star Yuuki(pYthon) Bot Project of Star Neptune Bot
|
||
|
||
The Language Package Contributor:
|
||
supersonictw <https://github.com/supersonictw>
|
||
|
||
Copyright(c) 2019 Star Inc. All Rights Reserved.
|
||
The software licensed under Mozilla Public License Version 2.0
|
||
"""
|
||
|
||
class Traditional_Chinese:
|
||
|
||
i18nText = {
|
||
"Helllo^^\nMy name is %s ><\nNice to meet you OwO": "安安^^\n我是%s呦><\n請多多指教OwO",
|
||
"Type:\n\t%s/Help\nto get more information\n\nMain Admin of the Group:\n%s": "請輸入:\n\t%s/Help\n以獲得更多資訊\n\n本群組主管理員為:\n%s",
|
||
"%s\n\t%s\n\nCommands Info:\n%s\n\nPrivacy:\n%s\n\nMore Information:\n%s\n\n%s": "%s\n\t%s\n\n指令資訊:\n%s\n\n隱私權政策:\n%s\n\n更多資訊:\n%s\n\n%s",
|
||
"SecurityService is Listening on\n\nURL:%s\nInvite:%s\nJoin:%s\nMembers:%s\n\nMain Admin of the Group:\n%s": "安全防護模式正在監控\n\n網址:%s\n邀請:%s\n加入:%s\n成員:%s\n\n本群組主管理員為:\n%s",
|
||
"Wrong UserID or the guy is not in Group": "錯誤的用戶識別碼或這傢伙不在群組",
|
||
"Default without Initialize\nMain Admin of the Group:\n%s": "使用系統預設值,並未初始化\n本群組主管理員為:\n%s",
|
||
"Sorry...\nThe number of members is not satisfied (%s needed)": "抱歉...\n這個群尚未達到可安裝人數 (需要%s人)",
|
||
"Name:%s\nPicture URL:%s/%s\nStatusMessage:\n%s\nLINE System UserID:%s": "名字:%s\n頭像網址:%s/%s\n個性簽名:\n%s\nLINE用戶識別碼:%s",
|
||
"LINE System UserID:\n": "LINE用戶識別碼:\n",
|
||
"SecurityService of %s was disable": "%s的安全防護模式被已關閉",
|
||
"DO NOT KICK, thank you ^^": "請不要踢人,謝謝 =3=",
|
||
"Notice: Unknown command line argument(s)": "提醒:未知的指令參數",
|
||
"DO NOT ENABLE THE GROUP URL STATUS, see you...": "請不要開啟群組網址,再見了 0.0",
|
||
"Do not invite anyone...thanks": "請不要邀請任何人,感謝配合 OwO",
|
||
"The User(s) was in our blacklist database.": "這個臭小子在我們的黑名單中 =.=",
|
||
"You are our blacklist. Bye~": "再見了~黑名單用戶。",
|
||
"You had been blocked by our database.": "您目前已被本程序封鎖。",
|
||
"\nExtend Administrator(s)": "\n延伸管理員",
|
||
"The one who was been kicked:": "這是那個被踢的可憐孩子:",
|
||
"Kick Limit.": "踢人次數已達上限",
|
||
"Cancel Limit.": "取消次數已達上限",
|
||
"Testing...": "測試中...",
|
||
"Speed:\n %s com/s": "速度為:\n%s 指令/秒",
|
||
"Bye Bye": "掰掰 ><",
|
||
"Not Found": "404 不存在 0.0...",
|
||
"Okay": "好的",
|
||
"Unknown": "未知",
|
||
"Exit.": "已退出",
|
||
"Added": "已增加"
|
||
}
|