2019-08-23 18:12:41 +08:00
#!/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 = {
2019-08-27 00:13:46 +08:00
" Helllo^^ \n My name is %s >< \n Nice to meet you OwO " : " Helllo^^ \n My name is %s >< \n Nice to meet you OwO " ,
2019-09-01 10:51:45 +08:00
" Type: \n \t %s /Help \n to get more information \n \n Main Admin of the Group: \n %s " : " Type: \n \t %s /Help \n to get more information \n \n Main Admin of the Group: \n %s " ,
2019-08-27 00:22:20 +08:00
" %s \n \t %s \n \n Commands Info: \n %s \n \n Privacy: \n %s \n \n More Information: \n %s \n \n %s " : " %s \n \t %s \n \n Commands Info: \n %s \n \n Privacy: \n %s \n \n More Information: \n %s \n \n %s " ,
2019-09-01 10:51:45 +08:00
" SecurityService is Listening on \n \n URL: %s \n Invite: %s \n Join: %s \n Members: %s \n \n Main Admin of the Group: \n %s " : " SecurityService is Listening on \n \n URL: %s \n Invite: %s \n Join: %s \n Members: %s \n \n Main Admin of the Group: \n %s " ,
2019-08-25 09:44:10 +08:00
" Wrong UserID or the guy is not in Group " : " Wrong UserID or the guy is not in Group " ,
2019-09-01 10:51:45 +08:00
" Default without Initialize \n Main Admin of the Group: \n %s " : " Default without Initialize \n Main Admin of the Group: \n %s " ,
2019-08-24 21:07:55 +08:00
" Sorry... \n The number of members is not satisfied ( %s needed) " : " Sorry... \n The number of members is not satisfied ( %s needed) " ,
2019-08-26 23:06:11 +08:00
" Name: %s \n Picture URL: %s / %s \n StatusMessage: \n %s \n LINE System UserID: %s " : " Name: %s \n Picture URL: %s / %s \n StatusMessage: \n %s \n LINE System UserID: %s " ,
2019-08-28 00:42:35 +08:00
" LINE System UserID: \n " : " LINE System UserID: \n " ,
2019-09-01 10:51:45 +08:00
" SecurityService of %s was disable " : " SecurityService of %s was disable " ,
2019-08-25 13:54:25 +08:00
" DO NOT KICK, thank you ^^ " : " DO NOT KICK, thank you ^^ " ,
2019-09-07 16:43:11 +08:00
" Notice: Unknown command line argument(s) " : " Notice: Unknown command line argument(s) " ,
2019-09-01 10:51:45 +08:00
" DO NOT ENABLE THE GROUP URL STATUS, see you... " : " DO NOT ENABLE THE GROUP URL STATUS, see you... " ,
2019-08-25 13:54:25 +08:00
" Do not invite anyone...thanks " : " Do not invite anyone...thanks " ,
" The User(s) was in our blacklist database. " : " The User(s) was in our blacklist database. " ,
" You are our blacklist. Bye~ " : " You are our blacklist. Bye~ " ,
2019-08-25 14:23:34 +08:00
" You had been blocked by our database. " : " You had been blocked by our database. " ,
2019-09-01 10:51:45 +08:00
" \n Extend Administrator(s) " : " \n Extend Administrator(s) " ,
2019-08-24 22:19:26 +08:00
" Kick Limit. " : " Kick Limit. " ,
2019-08-25 14:28:26 +08:00
" Cancel Limit. " : " Cancel Limit. " ,
2019-08-23 18:12:41 +08:00
" Testing... " : " Testing... " ,
2019-09-07 16:43:11 +08:00
" Speed: \n %s com/s " : " Speed: \n %s com/s " ,
2019-08-24 15:29:49 +08:00
" Bye Bye " : " Bye Bye " ,
2019-08-25 14:57:15 +08:00
" Not Found " : " Not Found " ,
2019-08-24 23:06:28 +08:00
" Okay " : " Okay " ,
2019-09-07 16:43:11 +08:00
" Unknown " : " Unknown " ,
2019-08-25 15:30:07 +08:00
" Exit. " : " Exit. " ,
" Added " : " Added "
2019-08-24 12:21:50 +08:00
}