mirror of
https://github.com/hyper-neptune/yuuki.git
synced 2024-11-15 19:04:37 +08:00
28 lines
1,005 B
Python
28 lines
1,005 B
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 English:
|
||
|
||
i18nText = {
|
||
"Helllo^^\nMy name is Yuuki ><\nNice to meet you OwO": "Helllo^^\nMy name is Yuuki ><\nNice to meet you OwO",
|
||
"Admin of the Group:\n%s": "Admin of the Group:\n%s",
|
||
"Sorry...\nThe number of members is not satisfied (%s needed)": "Sorry...\nThe number of members is not satisfied (%s needed)",
|
||
"LINE System UserID:\n": "LINE System UserID:\n",
|
||
"Kick Limit.": "Kick Limit.",
|
||
"Testing...": "Testing...",
|
||
"Speed:\n%ss": "Speed:\n%ss",
|
||
"Bye Bye": "Bye Bye",
|
||
"Exit.": "Exit."
|
||
}
|