vpn.email
Version:
vpn.email client
1,039 lines (985 loc) • 177 kB
text/typescript
/// <reference path="./../../typings/tsd.d.ts" />
interface iCer {
KeyBitLength: string;
email: string;
userID: string;
creatdate: string;
}
interface IMenuItem {
LanguageJsonName: string
showName: string
icon: string
}
interface emailSupplier{
name:string;
title:string;
imageHtml:string;
linkButton:string;
canAccess:KnockoutObservable<boolean>;
note:Array<string>;
bkColor:string;
starNumber:number;
freeAccount:boolean;
appHelpLink?: string[];
}
interface StringValidator {
isAcceptable(s: string): boolean;
}
interface IemailProvider{
name: string;
img: string;
index: number;
spanClass: string;
}
/**
* getImapSmtpHost
* @param email <string>
* @return Imap & Smtp info
*/
const getImapSmtpHost = ( email: string ) => {
const yahoo = ( domain: string ) => {
if ( /yahoo.co.jp$/.test ( domain ))
return 'yahoo.co.jp';
if ( /((.*\.){0,1}yahoo|yahoogroups|yahooxtra|yahoogruppi|yahoogrupper)(\..{2,3}){1,2}$/.test ( domain ))
return 'yahoo.com';
if ( /(^hotmail|^outlook|^live|^msn)(\..{2,3}){1,2}$/.test ( domain ))
return 'hotmail.com';
if ( /^(me|^icould|^mac)\.com/.test ( domain ))
return 'me.com'
return domain
}
const emailSplit = email.split ( '@' );
if ( emailSplit.length !== 2 )
return null
const domain = yahoo ( emailSplit [1] )
const ret = {
imap: 'imap.' + domain,
smtp: 'smtp.' + domain,
SmtpPort: [587,465],
ImapPort: 993,
imapSsl: true,
smtpSsl: true,
haveAppPassword: false,
ApplicationPasswordInformationUrl: [
]
}
switch ( domain ) {
// yahoo domain have two different
// the yahoo.co.jp is different other yahoo.*
case 'yahoo.co.jp': {
ret.imap = 'imap.mail.yahoo.co.jp';
ret.smtp = 'smtp.mail.yahoo.co.jp'
ret.SmtpPort = [465]
}
break;
// gmail
case 'google.com':
case 'googlemail.com':
case 'gmail': {
ret.haveAppPassword = true;
ret.ApplicationPasswordInformationUrl = [
'https://support.google.com/accounts/answer/185833?hl=zh-Hans',
'https://support.google.com/accounts/answer/185833?hl=ja',
'https://support.google.com/accounts/answer/185833?hl=en'
]
}
break;
// yahoo.com
case 'rocketmail.com':
case 'y7mail.com':
case 'ymail.com':
case 'yahoo.com': {
ret.imap = 'imap.mail.yahoo.com'
ret.smtp = (/^bizmail.yahoo.com$/.test(emailSplit[1]))
? 'smtp.bizmail.yahoo.com'
: 'smtp.mail.yahoo.com'
ret.haveAppPassword = true;
ret.ApplicationPasswordInformationUrl = [
'https://help.yahoo.com/kb/SLN15241.html',
'https://help.yahoo.com/kb/SLN15241.html',
'https://help.yahoo.com/kb/SLN15241.html'
]
}
break;
// gmx.com
case 'gmx.com' : {
ret.smtp = 'mail.gmx.com'
}
break;
// aim.com
case 'aim.com': {
ret.imap = 'imap.aol.com'
}
break;
// outlook.com
case 'windowslive.com':
case 'hotmail.com':
case 'outlook.com': {
ret.imap = 'imap-mail.outlook.com'
ret.smtp = 'smtp-mail.outlook.com'
}
break;
// apple mail
case 'me.com': {
ret.imap = 'imap.mail.me.com'
ret.smtp = 'smtp.mail.me.com'
}
break;
// 163.com
case '126.com':
case '163.com': {
ret.imap = 'appleimap.' + domain
ret.smtp = 'applesmtp.' + domain
ret.SmtpPort = [465]
}
break;
case 'sina.com':
case 'yeah.net': {
ret.SmtpPort = [465]
ret.smtpSsl = false
}
break;
}
return ret
}
const uuid_generate = () => {
let lut: Array < string > = [];
for ( let i = 0; i < 256; i++ ) {
lut [i] = ( i < 16 ? '0' : '') + ( i ).toString ( 16 );
}
let d0 = Math.random () * 0xffffffff | 0;
let d1 = Math.random () * 0xffffffff | 0;
let d2 = Math.random () * 0xffffffff | 0;
let d3 = Math.random () * 0xffffffff | 0;
return lut[ d0 & 0xff ]+ lut [d0 >> 8 & 0xff ] + lut [ d0 >> 16 & 0xff ] + lut [ d0 >> 24 & 0xff ] + '-' +
lut [ d1 & 0xff ]+ lut [ d1 >> 8 & 0xff ] +'-'+ lut [ d1 >> 16 & 0x0f | 0x40 ] + lut[ d1 >> 24& 0xff ] + '-' +
lut [ d2 & 0x3f | 0x80 ]+ lut [ d2 >> 8 & 0xff ] + '-' + lut [ d2 >> 16 & 0xff]+ lut [ d2 >> 24 & 0xff ] +
lut [ d3 & 0xff ]+ lut [ d3 >> 8 & 0xff ] + lut [ d3 >> 16 & 0xff] + lut [ d3 >> 24 & 0xff ];
}
const getNickName = ( email: string ) => {
var ret = '';
if ( email.length ){
ret = email.split ('@')[0];
ret = ret.charAt (0).toUpperCase () + ret.slice(1);
}
return ret;
}
/**
* check email address
* @param email <string>
* @param return <string> Valid = '' Err = errorMessage
*/
const checkEmail = ( email: string ) => {
if ( testVal.isAcceptable ( email )) {
return 'required'
}
if ( ! testEmail.isAcceptable ( email ))
{
return 'EmailAddress'
}
return ''
}
class IsNullValidator implements StringValidator {
isAcceptable ( s: string ) {
if ( s === undefined ) {
return true;
}
if ( s === null ) {
return true;
}
if ( s.length == 0 ) {
return true;
}
}
}
class LettersOnlyValidator implements StringValidator {
isAcceptable ( s: string ) {
return lettersRegexp.test ( s );
}
}
class EmailValidator implements StringValidator {
isAcceptable ( s: string ) {
return EmailRegexp.test( s );
}
}
class ZipCodeValidator implements StringValidator {
isAcceptable ( s: string ) {
return s.length === 5 && numberRegexp.test (s);
}
}
class numberValidator implements StringValidator{
isAcceptable ( s: string ) {
return numberRegexp.test ( s );
}
}
const testVal = new IsNullValidator()
const testEmail = new EmailValidator()
const testNumber = new numberValidator()
//********************************************************************************************
/// <reference path="./../../typings/tsd.d.ts" />
const cookieName = 'langEH'
const EmailSuppliers:Array<emailSupplier> =[
{
name:'Yahoo',
bkColor:'op-amber',
starNumber:5,
title:'Yahoo mail',
imageHtml:'/images/Yahoo_Logo.svg',
linkButton:'http://login.yahoo.com/config/mail',
canAccess:ko.observable(false),
freeAccount:true,
appHelpLink:[
'https://help.yahoo.com/kb/SLN15241.html'
],
note:['雅虎的免费Email服务,每个用户无限Email容量,单个Email附件最大25MB。',
'Yahooフリーメールサービス、無制限ボックス容量、添付ファイルは25MBまで',
'Free mail from Yahoo, unlimited inbox, a 25 MB limit on attachments.'
]
},
{
name:'gmx',
bkColor:'op-olive',
starNumber:4,
title:'GMX mail',
imageHtml:'/images/Gmx_email_logo_2.svg',
linkButton:'http://www.gmx.com/mail',
canAccess:ko.observable(false),
appHelpLink:[
'',
'',
''
],
freeAccount:true,
note:['GMX公司提供的免费Email服务, 每个用户2GB Email容量, IMAP单日上下流量不详, 单个Email附件最大50MB。不支持中文。',
'マイクロソフトフリーメールサービス、2GBボックス容量、IMAP帯域幅制限はわからない、添付ファイルは50MBまで、英語オンリー。',
'Free mail from GMX, 2GB inbox, Bandwidth limit is unknow. A 50 MB limit on attachments.'
]
},
{
name: 'google',
bkColor: 'op-default',
starNumber: 5,
title: 'Google mail',
imageHtml: '/images/Logo_Google_2013_Official.svg',
linkButton: 'https://www.gmail.com',
canAccess: ko.observable(false),
freeAccount: true,
appHelpLink: [
'https://support.google.com/accounts/answer/185833?hl=zh-Hans',
'https://support.google.com/accounts/answer/185833?hl=ja',
'https://support.google.com/accounts/answer/185833?hl=en'
],
note: ['Google的免费Email服务,每个用户15GBEmail容量, IMAP单日上下流量限制为3GB,单个Email附件最大25MB。',
'Gmailフリーメールサービス、15GBボックス容量、IMAP帯域幅制限は1日あたり3GBまで、添付ファイルは25MBまで',
'Free mail from Google, 15GB inbox, Bandwidth limit is 3GB every day. A 25 MB limit on attachments.'
]
},
{
name:'Aol',
bkColor:'op-red',
starNumber:4,
title:'Aol mail',
imageHtml:'/images/AOL_logo.svg',
linkButton:'https://mail.aol.com',
canAccess:ko.observable(false),
freeAccount:true,
note:['美国在线提供的免费Email服务,每个用户无限Email容量,单个Email附件最大25MB。不支持中文。',
'AOLフリーメールサービス、無制限ボックス容量、添付ファイルは25MBまで、英語オンリー。',
'Free mail from Aol, unlimite inbox, a 25 MB limit on attachments.'
]
},
{
name:'outlook',
bkColor:'op-indigo',
starNumber:5,
title:'Microsoft mail',
imageHtml:'/images/Outlook.com_logo_and_wordmark.svg',
linkButton:'https://signup.live.com/signup',
canAccess:ko.observable(false),
freeAccount:true,
appHelpLink:['http://windows.microsoft.com/zh-cn/windows/app-passwords-two-step-verification',
'http://windows.microsoft.com/ja-jp/windows/app-passwords-two-step-verification',
'http://windows.microsoft.com/en-us/windows/app-passwords-two-step-verification'],
note:['微软的免费Email服务,每个用户无限Email容量,单个Email附件最大20MB。中国用户如果使用本系统来翻墙,请注意不要选择居住地为中国来注册账户。',
'マイクロソフトフリーメールサービス、無制限ボックス容量、添付ファイルは20MBまで、中国に住むユーザは、お住まい国を中国以外を選んでください。',
'Free mail from Microsoft, unlimited inbox, a 20 MB limit on attachments. Do not choose China when signup at Country/region. '
]
},
{
name:'iCloud',
bkColor:'op-orange',
starNumber:5,
title:'Apple mail',
imageHtml:'/images/iCloud.svg',
linkButton:'https://www.icloud.com/',
canAccess:ko.observable(false),
freeAccount:true,
note:['Apple的免费Email服务,每个用户无限Email容量,单个Email附件最大20MB。中国用户如果使用本系统来翻墙,请注意不要选择居住地为中国来注册账户。',
'アップルフリーメールサービス、無制限ボックス容量、添付ファイルは20MBまで、中国に住むユーザは、お住まい国を中国以外を選んでください。',
'Free mail from Apple, unlimited inbox, a 20 MB limit on attachments. Do not choose China when signup at Country/region. '
]
}
]
const infoDefine = [
{
'components_ProxyViaEmail_addAnEmail': {
'smtpDomain': '送信服务器域名:',
'semtpConnect': '尝试连接送信服务器:',
'smtpAuth':'登陆送信服务器:'
},
'errorMessage': {
'required': '请填写此字段',
'EmailAddress': '请按以下格式输入你的电子邮件地址: someone@example.com.',
'SameEmailAddress': '重复的Email地址',
'smtpServerDomainErrer': 'Email发送服务器域名错误!, 请核对Email地址@字符以后的服务器信息,或手工填入送信服务器网址。',
'smtpServerConnectError': 'Email发送服务器不能被连接, 大部分情况下是通讯端口号错误, 请填写正确SMTP端口号,或联系Email服务供应商来获得正确的端口号。',
'smtpAuthError': '登陆Email发送服务器错误,您的用户名和密码有误!',
'htmlServerError_notSuccess': '和本地服务器通讯错误,请检查网络连接和本地服务器状态',
'SystemPasswordError': '密码错误,请重试!如果您已忘记您的系统密码,请删除现有的密钥对,重新生成新的密钥对。但您的原有设定将全部丢失!',
'deleteKeyPairInfo': '注意:删除现有的密钥对您的设定将全部丢失!',
'SystemResetMessage': 'Vpn.Email系统已发送一封系统重置的邮件到您的邮箱,请检查您的邮箱,按邮件里的[重置系统]按钮来重新设置系统。',
'fileCreateError': '文件创建错误,请检查您的操作系统。',
'ProxyViaEmailError': '本系统出现未知错误!请重新安装本系统',
'PasswordlengthError': '必须设定密码为5个字符以上。',
'SystemPasswordDelete':'密码已删除,请重新设置系统。',
'portNumberError':'请输入从1到65535之间的数字。',
'sameEmailAddress':'相同Email重复登记。',
'titleNotSave':'警 告!',
'imapPortErr':'指定的端口无法链接Imap服务器,请核对端口号。',
'haveNotSave':'您还没有保存您的设定,请先保存您的信息。',
'emailSetupDataFormat':'您的设定有误,请检查您的email设置。',
'iMapServerAuthenticationFailed':'IMAP用户名或密码错误,请检查。%ImapServiceOpen%',
'detail':'<a href="%1",target="_blank">详情请点击</a>',
'iMapServerAuthenticationFailed_IMAPservice':'有可能您的%1邮箱未开启IMAP服务。%2。',
'iMapServerAuthenticationFailed_AppPassword':'有可能您没有设定%1密码。%2',
'smtpServerAuthenticationFailed':'SMTP用户名或密码错误,请检查。',
'cantConnectImapServer':'不能连接IMAP服务器,请检查IMAP服务器名。',
'needPasswordForContinue':'请输入您的密钥对密码,解锁系统继续完成设定。',
'smtpPortErr':'指定的端口无法链接Smtp服务器,请核对端口号。',
'SmtpCertErr':'指定的SMTP服务器提示错误的证书,连接终止!',
'smtpServerLimit':'邮箱服务器提示您的邮箱今天可发Email数量已用完。',
'ImapCertErr':'指定的IMAP服务器提示错误的证书,连接终止!',
'imapServerDomainErr':'Imap服务器不能到达,请检查Imap服务器网址,如果服务器网址设定无误,则该服务器有可能被防火墙屏蔽,请联系您的网络管理员或直接使用IP地址,您也可选择使用其他的Email服务商。',
'smtpServerDomainErr':'Smtp服务器不能到达,请检查Smtp服务器网址,如果服务器网址设定无误,则该服务器有可能被防火墙屏蔽,请联系您的网络管理员或直接使用IP地址,您也可选择使用其他的Email服务商。'
},
"legal": {
'title': "产品及服务使用协议",
'item': '欢迎使用Vpn.Email, 感谢您使用我们的产品和服务(下称“服务”)。 服务由 Vpn.Email network technolog Canada Ltd. 下称“Vpn.Email”提供, ' +
'您使用我们的服务即表示您已同意本条款。 请仔细阅读。',
'title1': '使用服务',
'item1': [
{ 'text': '您必须遵守服务中提供的所有政策。' },
{ 'text': '请勿滥用我们的服务, 举例而言: 请勿干扰我们的服务或尝试使用除我们提供的界面和指示以外的方法访问这些服务。您仅能在法律(包括适用的出口和再出口管制法律和法规)允许的范围内使用我们的服务。'+
'如果您不同意或遵守我们的条款或政策, 请不要使用我们所提供的服务, 或者我们在调查可疑的不当行为, 我们可以暂停或终止向您提供服务。' },
{ 'text': '连接日志的保管和披露政策: 为了反击滥用及政府反恐需要, 我们始终保留3个月或以上的中继服务器的连接日志,日志内容仅限于: (日期和时间, 目标服务器DNS及IP地址, 链接协议, '+
'客户端的email地址和通讯字节数。我们不保存客户端的IP地址。) 除此之外, 没有其他任何信息将被记录在我们的日志服务器上。您使用我们的服务, 就意味着您同意我们可以使用这些信息, ' +
'进行各类统计和分析工作, 以帮助我们改进并提供更好的服务。' },
{ 'text': '我们从不保存每次通讯的具体内容, 所以我们不能回复这样的要求。连接日志的披露以加拿大法律为准。3个月以上的日志有可能已被删除。为了反恐的需要, 我们会向持有加拿大法院令的执法机构提供日志文件。' +
'如果您是加拿大以外地区的执法机构,有这方面信息披露的需求, 请联系加拿大外交部, http://www.international.gc.ca/' },
{ 'text': '如果您是被授权的加拿大执法机构, 请通过以下Email联系我们: info@Vpn.Email。' },
],
'title2': '关于我们服务中的软件',
'item2': [
{ 'text': 'Vpn.Email授予您免许可使用费、不可转让的、非独占的全球性个人许可, 允许您使用由 Vpn.Email 提供的、包含在服务中的软件。' +
'本许可仅旨在让您通过本条款允许的方式使用由 Vpn.Email 提供的服务并从中受益。您不得复制、修改、发布、出售或出租我们的服务, 或所含软件的任何部分。' },
],
'title3': '修改和终止服务',
'item3': [
{ 'text': '我们始终在不断更改和改进我们的服务。我们可能会增加或删除功能, 也可能暂停或彻底停止某项服务。' },
{ 'text': '您可以随时停止使用我们的服务, 尽管我们对此表示非常遗憾, 我们不会退还已付的服务费。Vpn.Email 也可能随时停止向您提供服务, 或随时对我们的服务增加或设置新的限制。' },
],
'title4': '保证和免责声明',
'item4': [
{ 'text': '我们在提供服务时将会尽到商业上合理水平的技能和注意义务, 希望您会喜欢使用它们。但有些关于服务的事项恕我们无法作出承诺。' },
{ 'text': '某些司法管辖区域会规定特定保证, 例如适销性、特定目的适用性及不侵权的默示保证。在法律允许的范围内, 我们排除所有保证。' },
{ 'text':'在法律允许的范围内, Vpn.Email 不承担利润损失、收入损失或数据、财务损失或间接、特殊、后果性、惩戒性或惩罚性损害赔偿的责任。对于本条款项下任何索赔, ' +
'包括任何默示保证的全部赔偿责任限于您因使用服务而向我们支付的金额, 或我们亦可选择, 再次向您提供该服务。在所有情况下, Vpn.Email对于任何不能合理预见的损失或损害不承担责任。'},
],
'title5': '服务的商业使用',
'item5': [
{ 'text': '如果您代表某家企业使用我们的服务, 该企业必须接受本条款。对于因使用本服务或违反本条款而导致的或与之相关的任何索赔、起诉或诉讼, 包括因索赔、损失、损害赔偿、起诉、判决、' +
'诉讼费和律师费而产生的任何责任或费用, 该企业应对 Vpn.Email 及其关联机构、管理人员、代理机构和员工进行赔偿并使之免受损害。' },
],
'title6': '关于本协议',
'item6': [
{ 'text': '我们可以修改上述条款或任何适用于某项服务的附加条款, 例如为反映法律的变更或我们服务的变化而进行的修改。您应当定期查阅本协议。我们会在网页上公布这些条款的修改通知。' +
'我们会在适用的服务中公布附加条款的修改通知。所有修改的适用不具有追溯力, 修改将立即生效。如果您不同意服务的修改条款, 应立即停止使用本服务。' },
{'text': '本条款约束 Vpn.Email 与您之间的关系, 且不创设任何第三方受益权。如果您不遵守本条款, 且我们未立即采取行动, 并不意味我们放弃我们可能享有的任何权利, ' +
'例如在将来采取行动。如果某一条款不能被强制执行, 这不会影响其他条款的效力。' },
{ 'text': '请通过以下Email联系我们: info@Vpn.Email。' }
],
},
"info": {
"finished": "完成",
"failed":"故障"
},
"btn": {
"next": "下一步",
'allow':'同意协议并继续',
"home": "返回系统主页",
"eMailServiceList": "推荐的Email服务商列表",
"ok": '提交',
'checking': '验证中...',
'portName': '通讯端口号:',
'AutoSetup': '自动设定' ,
'customSetup': '手动设定',
'join':'加入',
'CANTreach':'不能到达',
'cancel':'放弃操作',
'creatKeyPair':'创建密钥对...',
'delete':'删除',
'delete_check':'确认删除',
'signUpTitle':'加 入',
'serverdetail':'手动输入详细设定:',
'otherSelect':'其他Port:',
'unlockKeyPair':'密钥对解锁',
'deleteKeyPair':'删除密钥对',
'Ssl':'使用加密信息传输:',
'logout':'退出登录',
'checkout':'信用卡或支付宝支付',
'stopCreateKeyPair': '停止生成密钥对',
'continueCreateKeyPair': '继续生成',
},
'input': {
'emailAddress': 'Email地址(必填)',
'systemPassword':'系统密码',
'password': '密码',
'smtpServer': "SMTP送信服务器设定",
"imapServer": 'IMAP服务器设定',
'smtpServerInput': '送信服务器(smtp)网址',
'imapServerinput': '收件服务器(IMAP)网址',
'UserName': '用户名',
"ServerUserSelect":"使用上述Email和密码作为登陆凭据",
"SystemAdministratorNickName":"昵称或组织名(必填)",
'portNumber':'端口号'
},
"problem_view": {
"info_problem": "糟糕,看起来系统出了点小问题,让我们一起来试着解决它吧!"
},
"home_index_view": {
"welcome": '从此您将可以勇敢地开始您的冒险!',
"info": 'Vpn.Email是一个安全通讯手段,利用VPN和Email协议相结合,最大限度的保护您的网络通讯不被检测和干扰,建立一个私密的网络安全通道。',
'title1': 'Vpn.Email的特点: ',
'node1': '使用加密Email作为载体, 由中继服务器替代您访问您所需的网络资源。',
'title2':'Vpn.Email要解决的问题:',
'node2': '1. 匿名上网: 当您访问网络时, 您的IP地址即被记录在被访问的服务器上, 而IP地址通常是可以被用来跟踪您的个人信息。所以大家都选择VPN服务来保护自己。而您不要忘了,你其实把全部秘密告诉了VPN服务商,只是瞒着被你访问的网站而已。' +
'如果您遇到一个蜜罐,你对他们就没有秘密可言。他们可以集中掌握你的一切,包括你当前在哪里,都去访问了些什么。而Vpn.Email因为使用Email的IMAP通讯协议,所以Vpn.Email不需要您的IP地址,就可以为您服务。',
'node2_1': '2. 穿越防火墙: 某些防火墙限制了您访问网络的自由。您只要可以收发Email,就可以使用我们的服务,即便您处在防火墙内。',
'node2_2': '3. 抗干扰, 高可靠性。因为传统的VPN和Tor等技术都首先由客户端向VPN主机发出链接请求,服务商必须提供主机的IP地址给客户端,而且在通讯的过程中通讯指纹明显,很容易被'+
'具有学习功能的现代防火墙所区别,从而进行干扰和截断,所以VPN用户会感觉速度不稳定,主机链接不上等通讯故障。而服务商也需要不断变化主机IP来适应防火墙的屏蔽,'+
'Vpn.Email技术是让服务器主动链接到您的EMail邮箱,您只需连接到您的Email邮箱即可开启一条VPN通讯管道,而防火墙技术目前还不能区分正常Email通讯和VPN的Email之间有何区别。',
'node2_3': '4. 安全网络通讯: 由于使用加密OpenGPG技术, 使您的访问内容不易被监听及泄露。',
'node2_4': '5. 高速通讯: Vpn.Email由于采用最新的NodeJS技术,程序轻量且高速。',
'node2_5': '6. 定制代码优化的Lunix代理服务器,流量要求高的商用客户可选用Vpn.Email提供的独立服务器,独占GB带宽。',
'title3': 'Vpn.Email的优点:',
'node3': '1. 由于可并联多条IMAP线路同时通讯, 通讯速度快, 高稳定性和可靠性, 能安装在目前的任何计算机平台, 而且安装简单, 使用方便。' +
'目前终端软件对应Mac OSX, Windows, Linux, SunOS等平台, 今后会陆续推出手机应用和方便携带的无线路由设备。',
'node3_1': '2. 主机会24小时不间断的链接着您的EMail邮箱,随时随刻服务于您(限付费用户)。',
'node3_2': '3. 相比传统的VPN链接, 本系统减少了信息泄漏的风险。 因为当您使用传统的VPN时, 您必须提供您所目前使用的IP地址, 这样您对VPN服务商而言, '+
'您并不是匿名的。Vpn.Email由于使用IMAP通讯, 所以中继服务器不需要您现在的IP地址, 而且Vpn.Email也没有有效的技术来获得您目前位置。',
'node3_3': '4. 本系统的中继服务器分布在世界各地, 您可以挑选您喜爱的地方的中继服务器, 来访问您的目标主机。',
'node3_4': '5. 本系统设定完成后, 您的其他设备包括手机,可以通过VPN拨号或Proxy代理设定,来共享本系统, 甚至您出门在外都可以通过家里的本系统访问网络。',
'title4': 'Vpn.Email的劣势:',
'node4': '受Email服务商的服务制约, 如IMAP同时连接数限制和每天IMAP通讯数据限制。Email服务提供商会保存IAMP连接日志,和您的邮件(当然,Email服务提供商没法阅读Vpn.Email通讯时加密的Email)的风险。',
"stat": "系统概括:",
"item": "项目",
"subStat": "状态",
"item1": "系统初始化",
"item2": "互联网",
"item3": "代理服务器设定帮助",
"item4": "已连接代理服务器设备数",
"item5": "Vpn.Email网关状态"
},
"config_index_view": {
"title": "系统设置",
"item1": "初始化设定文件",
},
"error_404_view": {
"title":"出错啦!无此服务"
},
"password_view": {
'appPasswordInfo':'如果你已启用双重验证,并在Vpn.Email看到了密码不正确的错误,则你需要获取并输入一个唯一的应用密码,以进行登录。 使用应用密码进行登录后,你便可以照常使用该应用或设备。 对于每个无法提示你输入安全代码的应用或设备,你都需要创建一个新的应用密码并使用该密码进行登录。',
'appInfoTitle':'关于APP密码',
'info1': '让我们来完成最后几步的设定吧',
'inputEmail': '<span>首先完成系统加密用密匙生成, 这个Email地址, 应使用您的常用Email地址, 它将被用作您的Vpn.Email账号。</span><h6 class="fg-red">由于Vpn.Email在某些国家和地区被防火墙屏蔽而不能正常收发Vpn.Email的Email,如果您不幸是处于防火墙内的用户,建议使用自由世界的邮件服务商如雅虎邮箱或Outlook,苹果公司的邮箱作为注册用户。</h6>',
'inputEmailTitle': '通讯专用Email邮箱',
'activeViewTitle': '验证您的注册邮箱',
'info2': '请输入系统用来通讯的Email邮箱。这个邮箱是Vpn.Email和您通讯时使用的,它会产生大量通讯信息,并且这个邮箱的设定信息会提交Vpn.Email。' +
'为了防止您的个人信息被泄漏,这里请不要使用您的常用邮箱。请在Outlook或Yahoo等免费邮箱供应商,申请一个新的邮箱。',
'info2_1':'<p><dt>警告:</dt></p>当您按下提交按钮时,意味着您已经确认:这个邮箱并不是您常用的邮箱,这是为了使用Vpn.Email系统而特别申请的临时邮箱,您同意承担由此带来的风险,并授权Vpn.Email系统可以使用这个Email邮箱传送信息!',
'info5':'您的邮箱还未完成验证,Vpn.Email已向您的注册邮箱[',
'info6':']发送了一封加密邮件,请检查您的邮箱。如果存在多封从Vpn.Email过来的邮件时,以最后一封为准,打开信件并复制邮件内容从“-----BEGIN PGP MESSAGE----- (开始,一直到)-----END PGP MESSAGE-----” 结束的完整内容,粘贴到下面的输入框中。',
'info3': 'Vpn.Email推荐的免费邮箱供应商',
'info9':'您的email地址还未获得Vpn.Email的验证。',
'info10':'您的email地址已验证。',
'info4':'关于APP密码',
'info8':'正在验证收到的邮件。',
'info7':'<p class="fg-red">格式错误:正确的示例如下:</p><span class="fg-cyan"><p>-----BEGIN PGP MESSAGE-----</p><p>Version: GnuPG v1</p><p></p><p>xsBNBFcOxUgBB/9Vx9vpSKrrBq0C6aJDZAXqiTMEbaPAdwd+yjQCKb8aCZVl</p><p>Xe0CdSEPedDOuGcNKv3cCZ+1WsprEgGPWg5Yvqge1eMIiD0rmkjNLWDFXrxq</p><p>zeUiYfsuq66WIje4DNwUjgiuG6Kf1RgB3+e9VlUb2FfmkYIfnm6ol4R1XeZk</p></span><span class="fg-red"><p>.</p><p>[示例省略了若干行]</p><p>.</p></span><span class="fg-cyan"><p>jy4y56RrIhimCZNh2Y/4mmp8FzVwBBg95wWwICoqfphvbb4PUZh4pCu6REPI</p><p>4YZYheb2RIo1z+/bzg==</p><p>=ogvx</p><p>-----END PGP MESSAGE-----</p></span>',
'placeholder1':'请粘贴从“-----BEGIN PGP MESSAGE----- ・・・・・・・ -----END PGP MESSAGE-----” 结束的完整内容',
'selectService': '从推荐的服务商中新建Email',
'SystemPasswordTitle': '请设置管理员密码',
'systemPasswordInfo': '这个密码用来加密您的系统设置, 必须4个以上字符, 请妥善保管!',
'eMailFormInfo': '系统用来传送网络信息的Email, 您可以添加任意多个Email, 供本系统使用, 来加快网络传送速度。',
'newEmailAccount':'请申请一个专用Email来使用本系统。如果您需要用本系统来翻墙,则建议使用防火墙外Email。',
'systemAlreadyInit':'密 钥',
'deleteSystemPasswordWarning':'按「下一步」您将删除整个系统设定!',
'systemAdministratorEmail':'系统管理员信息输入',
'AdministratorEmailTitle':'请输入您常用的Email地址,这个地址是注册Vpn.Email用户和系统重置时使用的。',
'GenerateKeypair':'<em>系统正在生成用于通讯和签名的RSA加密密钥对,计算机需要运行产生大量的随机数字有,可能需要几分钟时间,尤其是长度为4096的密钥对,需要特别长的时间,请耐心等待。关于RSA加密算法的机制和原理,您可以访问维基百科:' +
'<a href="https://zh.wikipedia.org/wiki/RSA加密演算法" target="_blank ">https://zh.wikipedia.org/wiki/RSA加密演算法</a></em>',
'passwordStrength':'密码强度 : ',
'passwordStrengthWeek':'弱',
'passwordStrengthGood':'好',
'passwordStrengthStrong':'强',
'passwordStrengthVeryStrong':'超强',
'KeypairLength':'请选择加密通讯用密钥对长度:这个数字越大,越难被破解,但会增加通讯量和运算时间。',
'creatDate':'加密密钥创建日期:',
'keyLength':'密钥强度:',
'keyPairNickName':'创建人称谓:',
'emailAccountpassword':'邮箱密码,注意:Gmail或hotmail要输入应用程序密码。',
'accountRegistration':'注册Vpn.Email账户',
'accountRegistrationInformation':'请选择注册Vpn.Email账户类型。',
'accountTypeTitle':'请选择注册账户类型',
'mouthly':'每月支付us$',
'saveMoney':'节省:us$',
'free':'免费',
'yearly':'支付一年us$',
'discount':'折扣',
'mouth':'月',
'year':'年',
'everyDayTransfer':'24小时内最大通讯量:',
'noMaxTransferEachDay':'无限制',
'overBandWidthPrice':'月度通讯量超过部分每GB收取us$',
'paymentByCard':'信用卡支付',
'cardNumber':'信用卡卡号',
'cardNumberLabel':'请输入您的信用卡号码',
'cardNumberERROR':'非常抱歉,目前暂不接受此类信用卡',
'cardDateInput':'有效期限格式:月/年',
'cardDateERROR':'此卡已过有効期限!',
'cardNumberCvcError': '信用卡安全码长度应该是3位或4位数字',
'cardNumberCvc': '信用卡背面的签名栏处的CVC安全码3或4位数字',
'cardNumberCvcHold': '安全码CVC',
'cardNumberFormatError': '信用卡号码位数有误。',
'cardNameHold': '持卡人名称',
'cardNameLable': '请按照信用卡上英文字母顺序键入。',
'cardPostCode': '邮政编码',
'cardAddress': '持卡人地址',
'cardTelphone': '持卡人电话号码'
}
}, {
'components_ProxyViaEmail_addAnEmail': {
'smtpDomain': 'SMTPドメイン名:',
'semtpConnect': 'SMTPサーバーへ接続:',
'smtpAuth': 'SMTPサーバーへ登録:'
},
'errorMessage': {
'required': 'このフィールドを入力してください。',
'EmailAddress': 'メール アドレスを someone@example.com の形式で入力してください。',
'SameEmailAddress': '重複しているメールアドレス',
'smtpServerDomainErrer': '送信ホストが見つかりません!Emailアドレスのサーバー名を確認してください、または送信ホスト名を入れてください。',
'smtpServerConnectError': '送信ホストへ接続ができません。多分ポート番号が間違っています、Emailプロバイダーへ連絡して正しいポート番号を入れてください。',
'smtpAuthError':'送信ホストへ登録ができません、Emailアドレス又はパースワードが間違っています!',
'htmlServerError_notSuccess':'ローカルサーバーへの通信は故障があります、ネットワークまたはローカルサーバーをチェックしてください。',
'SystemPasswordError':'パスワードが違います。パースワードが忘れた場合、現在の鍵ペアを削除してください。この場合は、現有の設定は全部なくなって、一からシステム設定をやり直しが必要です。',
'deleteKeyPairInfo': '鍵ペアを削除することで、現有の設定は全部なくなって、一からシステム設定をやり直しが必要です。',
'SystemResetMessage':'システムリセットメールを送りました。メールをチェックして、メールにある「リセット」ボタンを押してください。',
'fileCreateError':'新規ファイルができません、OSをチェックしてください。',
'ProxyViaEmailError':'本システムはハンドルできないエラーが発生しました、大変申し訳ないですが一から再インストールしてください。',
'PasswordlengthError':'5文字以上の長さのパスワードが必要。',
'SystemPasswordDelete':'パースワード削除しました。システムを再設置をしてください。',
'portNumberError':'ポード番号は1から65535までの範囲でです',
'sameEmailAddress':'同じEmail重複入力',
'titleNotSave':'警 告',
'smtpServerLimit':'EMAILプロバイダーは今日の発信数が1日に送信可能な数(閾値)を超えて、送信制限になっている模様です。',
'certErr':'接続先のサーバは提示した証書が問題がありました。接続中止をします。',
'imapPortErr':'指定したポートに、Imap接続ができません。ポート番号を確認してからもう一回実行をください。',
'smtpPortErr':'指定したポートに、Smtp接続ができません。ポート番号を確認してからもう一回実行をください。',
'haveNotSave':'未保存している設定データがございますが、セーブをしてください。',
'emailSetupDataFormat':'間違いEMAIL設置がありますからチェックをしてください。',
'iMapServerAuthenticationFailed':'IMAP登録名またはパースワードに間違いがあります。登録ができません!',
'smtpServerAuthenticationFailed':'SMTP登録名またはパースワードに間違いがあります。登録ができません!',
'cantConnectImapServer':'IMAPサーバーへ接続ができません。IMAPサーバー名間違ったかをチェックをください。',
'needPasswordForContinue':'暗号鍵ペアがロックしていましが、鍵ペアパースワードを入力して、設定をし続きてください。',
'imapServerDomainErr':'Imapサーバのドメイン名が見つかりません。もしドメイン名が正いければ、ファイアウォールなどでブロックされているかもしれません。ネットワーク管理者に連絡し、又はダイレクトIPアドレスを使うか、その他のEmailサービスを変更してください。',
'smtpServerDomainErr':'Smtpサーバのドメイン名が見つかりません。もしドメイン名が正いければ、ファイアウォールなどでブロックされているかもしれません。ネットワーク管理者に連絡し、又はダイレクトIPアドレスを使うか、その他のEmailサービスを変更してください。'
},
"legal": {
'title': "产品使用协议",
'item': '欢迎使用Vpn.Email,感谢您使用我们的产品和服务(下称“服务”)。服务由 Coco network technolog Canada Ltd.下称“Coco CA”提供' +
'您使用我们的服务即表示您已同意本条款。请仔细阅读。',
'title1': '使用服务',
'item1': [
{ 'text': 'J您必须遵守服务中提供的所有政策。' },
{ 'text': 'J请勿滥用我们的服务。' },
{ 'text': 'J' }]
},
"info": {
"finished": "完了",
"failed": "故障"
},
"btn": {
"next": "次へ",
'allow': '協議を合意し、次へ',
"home": "システムホームに戻る",
"eMailServiceList": "お勧め無料Emailサービスリスト",
"ok": '送信',
'checking': '検証中...',
'portName': 'ポート:',
'AutoSetup': '自動設定',
'customSetup':'カスタム',
'join':'加わる',
'CANTreach':'到達できない',
'cancel':'操作停止',
'creatKeyPair':'暗号鍵ペアを生成...',
'delete':'削除',
'delete_check':'削除確認',
'signUpTitle':'選択する',
'serverdetail':'詳細設定:',
'otherSelect':'その他ポート番号:',
'unlockKeyPair':'暗号鍵ペアをアンロック',
'deleteKeyPair':'暗号鍵ペアを削除',
'logout':'ログアウト',
'Ssl':'暗号化通信:',
'checkout':'カード及びアリペイで決済',
'stopCreateKeyPair': '暗号鍵ペア生成をキャンセル',
'continueCreateKeyPair': '生成を続きします',
},
'input': {
'emailAddress': 'Emailアドレス(必須)',
'systemPassword':'システムパスワード',
'password': 'パスワード',
'smtpServer': "smtp設定",
"imapServer": 'IMAP設定',
'smtpServerInput': 'smtpサーバー名',
'imapServerinput': 'IMAPサーバー名',
'UserName': 'ユーザー名',
"ServerUserSelect": "",
"SystemAdministratorNickName":'ニックネーム(必須)',
'portNumber':'ポート番号'
},
"problem_view": {
"info_problem": "ちょっと待ってください!トラブル発生、チェックをしましょう!"
},
"home_index_view": {
"welcome": 'これから、勇気づけられたネットワークのエクスプレス旅にしましょう。',
"info": 'Vpn.Emailはカナダ Vpn.Email network security 株式会社運営する実験的なシステムです。目的としてはインターネットの通信自由とセキュリティのために、技術的な道を探しているものであります。',
'title1':'Vpn.Emailの特徴。',
"stat": "システム概要:",
"item": "アイテム",
"subStat": "ステータス",
"item1": "システム初始化",
"item2": "インターネット",
"item3": "プロキシサーバ情報",
"item4": "クライアント接続数",
"item5": "Vpn.Emailゲートウェイ状態",
},
"config_index_view": {
"title": "システム設置",
"item1": "パラメータファイルの初期化",
},
"error_404_view": {
"title": "ご請求されたページは無いです"
},
"password_view": {
'appInfoTitle':'APPパースワードについて',
'info1': 'さって、最後の設定を完成させよう。',
'info2': 'Vpn.Email通信専用emailを入力。そのemailアカウント情報はVpn.Emailへ提供して、ローカルネットワークとVpn.Emailお互い通信します。' +
'個人情報漏洩の恐れとそのemailアカウントに大量なダミ情報を生成するので、OutlookやYahooなどフリーメールに、新たなemailアカウントをつくてください。',
'info2_1':'<p><dt>以下の事項を確認してから送信ボタンを押してください:</dt></p>このEmailアカンウトはあなたのよく使っているEmailアカンウトと違って、Vpn.Emailシステムを使用するのために、'+
'一時的新たに作ったEmailアカンウトです。あなたはVpn.EmailにこのEmailアカンウトを使用して、ネットワーク通信することを了承しました。',
'info3': 'Vpn.Emailおすすめのフリーメール',
'info4':'APPパースワードについて',
'info8':'メールを検証中。',
'info5':'emailアドレスを検証は未完成です。Vpn.Emailは宛先「',
'info11':'emailアドレスを検証中',
'info6':'」に検証メールをしました。メールボックスをチェックして、Vpn.Emailから多数メールの場合は、最後のを選んでください。その検証メールの内容「-----BEGIN PGP MESSAGE-----」から「-----END PGP MESSAGE-----」'+
'までの全てをコピーして、以下の入力フィルターにペーストをしてください。',
'info7':'<p class="fg-red">フォーマットエラー、以下のは正しい表示例です:</p><span class="fg-cyan"><p>-----BEGIN PGP MESSAGE-----</p><p>Version: GnuPG v1</p><p>xsBNBFcOxUgBB/9Vx9vpSKrrBq0C6aJDZAXqiTMEbaPAdwd+yjQCKb8aCZVl</p><p>Xe0CdSEPedDOuGcNKv3cCZ+1WsprEgGPWg5Yvqge1eMIiD0rmkjNLWDFXrxq</p><p>zeUiYfsuq66WIje4DNwUjgiuG6Kf1RgB3+e9VlUb2FfmkYIfnm6ol4R1XeZk</p></span><span class="fg-red"><p>.</p><p>[n行列略]</p><p>.</p></span><span class="fg-cyan"><p>jy4y56RrIhimCZNh2Y/4mmp8FzVwBBg95wWwICoqfphvbb4PUZh4pCu6REPI</p><p>4YZYheb2RIo1z+/bzg==</p><p>=ogvx</p><p>-----END PGP MESSAGE-----</p></span>',
'info9':'そのemailアドレスはまだ検証されていません。',
'info10':'アドレスは検証しました。',
'placeholder1':'メールの内容「-----BEGIN PGP MESSAGE----- ・・・・・・・ -----END PGP MESSAGE-----」までの全て、ペーストをしてください。 ',
'appPasswordInfo':'2段階認証を有効にしていて、Vpn.Emailで無効なパスワードのエラーが表示される場合は、一意のアプリパスワードを取得し、それを入力してサインインする必要があります。',
'inputEmail': '<span>管理員Emailの入力。このEmailはVpn.Emailへユーザ登録やシステムリセットなどの時使います。</span><h6 class="fg-red">Vpn.Emailドメイン名は、ファイヤウォールがある国または地域にブラックリストに入って行って、Vpn.Emailシステムへ登録完了することができませんので、ユーザの通信自由な地域にあるEmailプロバイダを利用することがお勧めです。</h6>',
'inputEmailTitle': '通信専用Emailアカーンドを登録',
'activeViewTitle':'管理員Email検証',
'selectService': 'お勧めリストから新規Email',
'SystemPasswordTitle': 'システム管理者パースワードを設置',
'systemPasswordInfo': 'このシステムセキュリティ用パースワード、大切にしてください。',
'newEmailAccount':'以下のメールサービスからこのシステム専用メールを新規してください。特にこのシステムを使ってファイヤウォールを通す場合なら、ファイヤウォールの外側のメールシステムを使った方がおすすめです。',
'systemAlreadyInit':'鍵ペア',
'deleteSystemPasswordWarning':'警告!「次へ」するとシステムの設定が無くなります。',
'systemAdministratorEmail':'システム管理者インフォーメーション',
'AdministratorEmailTitle':'よく使うEmailを入力してください。Vpn.Emailへユーザ登録やシステムリセットする際このメールアドレスを使います。',
'GenerateKeypair':'<em>強秘匿性通信するのために、RSA暗号鍵ペアを生成中、大量なランダム数字が発生し、数分かかる場合もあります、4096ビットの場合、特に時間がかかります、しばらくお待ち下さい。RSA暗号技術について、ウィキペディア百科辞典を参考してください:' +
'<a href="https://ja.wikipedia.org/wiki/RSA暗号" target="_blank">https://ja.wikipedia.org/wiki/RSA暗号</a></em>',
'passwordStrength':'パスワード強度 : ',
'passwordStrengthWeek':'弱',
'passwordStrengthGood':'良い',
'passwordStrengthStrong':'強い',
'passwordStrengthVeryStrong':'超強い',
'KeypairLength':'RSA暗号鍵ペアの長度を選んでください。この数字が長ければ、長いほど秘匿性によいですが、スピードが遅くなります。',
'creatDate':'暗号鍵ペア生成日:',
'keyLength':'強度の長さ:',
'keyPairNickName':' ニックネーム:',
'emailAccountpassword':'メールアカーンドパスワード。GmailやHotmailなどを使う時、2段階認証プロセスをして、アプリパスワードを入力してください。',
'accountRegistration':'Vpn.Emailアカーンド',
'accountRegistrationInformation':'Vpn.Emailへようこそ!',
'keyPairPassword':'鍵ペアパスワード:',
'accountTypeTitle':'アカンウトを選択',
'mouth':'月',
'saveMoney':'割引:us$',
'year':'年',
'free':'フリー',
'mouthly':'毎月のお支払いus$',
'yearly':'年払いus$',
'everyDayTransfer':'24時間内通信量制限:',
'noMaxTransferEachDay':'無制限',
'overBandWidthPrice':'月通信量制限を超えた分GB毎にus$',
'paymentByCard':'クレジットカードで決済',
'cardNumber':'クレジットカード番号',
'cardNumberFormatError':'クレジットカード番号桁数が足りないです。',
'cardNumberLabel':'あなたのクレジットカード番号入力をください',
'cardNumberERROR':'ごめんなさい、暫くこの種類のカードでのご決済ができません。',
'cardDateInput':'有効期限フォーマットは:月/年です',
'cardDateERROR':'このカードは有効期限切れです',
'cardNumberCvc':'カードの裏面にある3又は4桁のセキュリティコード',
'cardNumberCvcError': 'クレジットカードのセキュリティコードは3又は4桁です。',
'cardNumberCvcHold':'セキュリティコードCVC',
'cardNameHold': 'カード名義人の名前',
'cardNameLable': 'カードに載せている順番で入力してください。',
'cardPostCode': 'カード名義人の郵便番号',
'cardAddress': 'カード名義人の住所',
'cardTelphone': 'カード名義人の電話番号'
}
}, {
'components_ProxyViaEmail_addAnEmail': {
'smtpDomain': 'SMTP server name:',
'semtpConnect': 'Try connect to server:',
'smtpAuth': 'Login to Smtp server:'
},
'errorMessage': {
'required': 'Please fill in this field.',
'EmailAddress': 'Please enter your email address in the format someone@example.com.',
'SameEmailAddress': 'Duplicate email address!',
'smtpServerDomainErrer': 'Smtp server name mistake! Please check the part of after @. Or enter the SMTP server name and try again.',
'smtpServerConnectError': "Can't connect to SMTP server, Please check the port number, ",
'smtpAuthError':'SMTP server login error, Please check your Email address and password.',
'htmlServerError_notSuccess':"Can't connect to local server, please check your network or local server status.",
'SystemPasswordError':'Your password did not match. Please try again. If you forgot your password, pless delete this key pair. That will let you lost all setup.',
'deleteKeyPairInfo': 'Note: Delete key pair will lost all your system setup.',
'SystemResetMessage':'A email sent to your mail address. Please click [Reset] to reset System.',
'fileCreateError':"Can't create file! Please check your OS.",
'ProxyViaEmailError':'Vpn.Email had unhandle error, please re-install Vpn.Email.',
'PasswordlengthError':'Passwords must have at least 5 characters.',
'SystemPasswordDelete':'System password has been delete. Please return to setup.',
'portNumberError':'Port number is from 1 to 65535.',
'sameEmailAddress':'Same email address duplicate.',
'titleNotSave':'Warning!',
'smtpServerLimit':'Oppps! The email provate looks outbound email was limited.',
'certErr':"Server's certificate error, connect stoped.",
'haveNotSave':'Looks your setup data have not save to server yet, Please save its before liver the page.',
'emailSetupDataFormat':'Please check your email setup.',
'smtpPortErr':"The Smtp port can't connect. Please verify that and try it again.",
'imapPortErr':"The imap port can't connect. Please verify that and try it again.",
'iMapServerAuthenticationFailed':'IMAP user name or password was incorrect, please check its.',
'smtpServerAuthenticationFailed':'SMTP user name or password was incorrect, please check its.',
'cantConnectImapServer':"Ooops! cann't connect to IMAP server. Please check your IMAP name.",
'needPasswordForContinue':'Please unlock the key pair, continue system setup.',
'imapServerDomainErr':'Imap domain cannot be contacted. If that domain name is correct, maybe blocked by firewall. Please contact your network administrator, or use direct IP address, or change to other email privade.',
'smtpServerDomainErr':'Smtp domain cannot be contacted. If that domain name is correct, maybe blocked by firewall. Please contact your network administrator, or use direct IP address, or change to other email privade.'
},
"legal": {
'title': "产品使用协议",
'item': '欢迎使用Vpn.Email,感谢您使用我们的产品和服务(下称“服务”)。服务由 Coco network technolog Canada Ltd.下称“Coco CA”提供' +
'您使用我们的服务即表示您已同意本条款。请仔细阅读。',
'title1': '使用服务',
'item1': [
{ 'text': 'E您必须遵守服务中提供的所有政策。' },
{ 'text': 'E请勿滥用我们的服务。' },
{ 'text': 'E' }]
},
"info": {
"finished": "Completed",
"failed": "failed"
},
"btn": {
"next": "Next",
'allow': 'I AGREE',
"home": "return to home",
"eMailServiceList": "Free Email service list",
"ok": 'Submit',
'checking': 'Checking...',
'portName': 'Port:',
'AutoSetup': 'Auto',
'customSetup': 'Custom setup',
'join':'join',
'CANTreach':"Can't reach",
'cancel':'Cancel',
'creatKeyPair':'Generate key pair...',
'delete':'Delete',
'delete_check':'Yes, delete it',
'signUpTitle':'Chooese',
'serverdetail':"Settings.",
'otherSelect':'Other port:',
'unlockKeyPair':'Unlock key Pair',
'deleteKeyPair':'Delete key pair.',
'Ssl':'secure: ',
'logout':'Logout',
'checkout':'Pay with Card or Alipay',
'stopCreateKeyPair': 'Cancel generate key pair',
'continueCreateKeyPair': 'Keep generate',
},
'input': {
'emailAddress': 'Email Address (Required)',
'systemPassword':'System Password',
'password': 'Password',
'smtpServer': "SMTP setup",
"imapServer": 'IMAP setup',
'smtpServerInput': 'SMTP server name',
'imapServerinput': 'IMAP server name',
'UserName': 'user name',
'SystemAdministratorNickName':'Nick name (Required)',
'portNumber':'Port number'
},
"problem_view": {
"info_problem": "Oops! System looks have some problems, let us clear that!",
},
"home_index_view": {
"welcome": 'Welcome to Vpn.Email',
"info": 'Vpn.Email实验项目是一个在线服务,由加拿大Vpn 公司为学术研究目的运营。' +
'本研究的目的是保护个人隐私,维护网络自由。',
'title1': 'Vpn.Email的特点',
"stat": "Summary:",
"item": "Items",
"subStat": "status",
"item1": "System initialization process",
"item2": "Internet access",
"item3": "Proxy Server information",
"item4": "connected clients",
"item5": "Vpn.Email gateway status",
},
"config_index_view": {
"title": "System Setup",
"item1": "Setup initialization file",
},
"error_404_view": {
"title": "Error, page not found!"
},
"password_view": {
'appPasswordInfo': "If you've turned on two-step verification and you see an incorrect password error with Vpn.Email, you'll need to get and enter a unique app password to sign in. Once you've signed in with your app password, you're all set to use that app or device. You'll need to create and sign in with a new app password for each app or device that can't prompt you for a security code.",
'appInfoTitle': 'About APP password',
'info1': 'Let us finishe setup.',
'info2_1':'<p><dt>By clicking submit you are agreeing to this:</dt></p>This is a temporary email account for use Vpn.Email system. ' +
'You agree Vpn.Email can use this email account for transfer data. ',
'info2':"This email account will use for communicate between Vpn.Email and your local network." +
"For your personal information privacy, please register a new account at Yahoo or Gmail.",
'info3': 'The best email services.',
'info4':'About APP password.',
'info8':'Validating...',
'info9':'This email address have not be validated with Vpn.Email',
'info10':'This email address has been verified.' ,
'info5':'Verify email have not complete. A verification email from Vpn.Email sent to your [',
'info6':'] email box. Please check your mailbox. If one more mail from Vpn.Email in your mailbox, Please open the latest one. Copy all content from [-----BEGIN PGP MESSAGE-----] ... to [-----END PGP MESSAGE-----]. Paste into the text box.',
'info7':'<p class="fg-red">Format mistake:The correct is:</p><span class="fg-cyan"><p>-----BEGIN PGP MESSAGE-----</p><p>Version: GnuPG v1</p><p>xsBNBFcOxUgBB/9Vx9vpSKrrBq0C6aJDZAXqiTMEbaPAdwd+yjQCKb8aCZVl</p><p>Xe0CdSEPedDOuGcNKv3cCZ+1WsprEgGPWg5Yvqge1eMIiD0rmkjNLWDFXrxq</p><p>zeUiYfsuq66WIje4DNwUjgiuG6Kf1RgB3+e9VlUb2FfmkYIfnm6ol4R1XeZk</p></span><span class="fg-red"><p>.</p><p>[omission]</p><p>.</p></span><span class="fg-cyan"><p>jy4y56RrIhimCZNh2Y/4mmp8FzVwBBg95wWwICoqfphvbb4PUZh4pCu6REPI</p><p>4YZYheb2RIo1z+/bzg==</p><p>=ogvx</p><p>-----END PGP MESSAGE-----</p></span>',
'placeholder1':'please paste all content from -----BEGIN PGP MESSAGE----- ... to -----END PGP MESSAGE-----',
'inputEmail': `<span>The Email address will use to regiest a Vpn.Email user account.</span><h6 class="fg-red">Because Vpn.Email looks in firewall's black list at some area. The best way is chooess your Yahoo mail or Outlook, iCloud email address. </h6>`,
'inputEmailTitle': 'Transfer email account.',
'activeViewTitle':'Verify your email address',
'selectService': 'Sinup via email service list',
'SystemPasswordTitle': 'Please setup the root password',
'systemPasswordInfo': 'This is system security protocol password. Please take care it',
'newEmailAccount':'Chooses an email provide to regulation a new email address for use our system. Note: You should be use a email provide that in outside firewall when you use our service to over firewall.',
'systemAlreadyInit':'Key pair',
'deleteSystemPasswordWarning':'WARNING!. YOU WILL LOST ALL SETUP WHEN PLESS NEXT.',
'systemAdministratorEmail':'Administrator information.',
'AdministratorEmailTitle':'Use your favorite email address, for create a account of Vpn.Email and when you want reset system.',
'GenerateKeypair':'<em>Generate RSA Key pair. It may take a few minutes. It will need more long time when you chooess 4096 bit key length. About RSA keypair system can be found here: ' +
'<a href="http://en.wikipedia.org/wiki/RSA_(cryptosystem)" target="_blank">http://en.wikipedia.org/wiki/RSA_(cryptosystem)</a></em>',
'passwordStrength':'Password strength : ',
'passwordStrengthWeek':'Week.',
'passwordStrengthGood':'Good.',
'passwordStrengthStrong':'Strong.',
'passwordStrengthVeryStrong':'Very strong.',
'KeypairLength':'Please select the bit length of your key pair. longest will hard be broken, also hard for network transfer speeds.',
'creatDate':'Created date: ',
'keyLength':'Key pair length: ',
'keyPairNickName':'Nick name: ',
'emailAccountpassword':"Enter email account's password. Should be application password when your account as Gmail or Hotmail.",
'accountRegistration':'Vpn.Email Account',
'accountRegistrationInformation':'Welcome to Vpn.Email. ',
'accountTypeTitle':'Account Type',
'mouth': 'Month',
'year': 'Year',
'saveMoney': 'save:',
'free': 'Free',
'mouthly': 'Mouthly pay us$',
'yearly': 'Yearly pay us$',
'everyDayTransfer': 'Max bandwidth in 24 hours:',
'noMaxTransferEachDay': 'No limit',
'overBandWidthPrice': 'Over bandwidth each MB price us$',
'paymentByCard': 'Pay by credit card.',
'cardNumber': 'Credit card number',
'cardNumberLabel': 'Your credit number',
'cardNumberERROR': 'Sorry. We do not accept this kind credit card payments yet.',
'cardDateInput': 'Valid thru fromat is: MM/YY',
'cardDateERROR': 'The card has expired!',
'cardNumberCvc': 'The CVV/CVC number in the signature area of the back of your card.',
'cardNumberCvcError': 'The CVV/CVC number must be 3 or 4 digits code.',
'cardNumberCvcHold': 'CVV/CVC number',
'cardNumberFormatError': 'credit card numbers must be 15 digits or 16 digits code.',
'cardNameHold': 'Card holder name',
'cardNameLable': 'Card holder name',
'cardPostCode': 'Post code',
'cardAddress': 'Address',
'cardTelphone': 'Telphone number'
}
},{
'components_ProxyViaEmail_addAnEmail': {
'smtpDomain': '送信服務器域名:',
'semtpConnect': '嘗試連接送信服務器:',
'smtpAuth':'登入送信服務器:'
},
'errorMessage': {
'required': '請填寫此字段',
'EmailAddress': '請按照下列格式輸入你的電子郵件地址: someone@example.com.',
'SameEmailAddress': '重複的Email地址',
'smtpServerDomainErrer': 'Email發送服務器域名錯誤! , 請核對Email地址@字符以後的服務器信息,或手工填入送信服務器網址。',
'smtpServerConnectError': 'Email發送服務器不能被連接, 大部分情況下是通訊端口號錯誤, 請填寫正確SMTP端口號,或聯繫Email服務供應商來獲得正確的端口號。',
'smtpAuthError': '登入Gmail發送服務器錯誤,您的用戶名和密碼有誤!',
'htmlServerError_notSuccess': '和本地服務器通訊錯誤,請檢查網絡連接和本地服務器狀態',
'SystemPasswordError': '密碼錯誤,請重試!如果您已忘記您的系統密碼,請刪除現有的密鑰對,重新生成新的密鑰對。但您的原有設定將全部丟失!',
'deleteKeyPairInfo': '注意:删除现有的密钥对您的设定将全部丢失!',
'SystemResetMessage': 'Vpn.Email系統已發送一封系統重置的郵件到您的郵箱,請檢查您的郵箱,按郵件裡的[重置系統]按鈕來重新設置系統。',
'fileCreateError': '文件創建錯誤,請檢查您的操作系統。',
'ProxyViaEmailError': '本系統出現未知錯誤!請重新安裝本系統。',
'PasswordlengthError': '密碼必須設定為5個字符以上。',
'SystemPasswordDelete':'密碼已刪除,請重新設置系統。',
'portNumberError':'請輸入從1到65535之間的數字。',
'sameEmailAddress':'相同Email重複登記。',
'titleNotSave':'警 告!',
'imapPortErr':'指定的端口无法连接Imap服务器,请審核端口号。',
'haveNotSave':'您還沒有保存您的設定,請先保存您的信息。',
'emailSetupDataFormat':'您的設定有誤,請檢查您的email設置。',
'iMapServerAuthenticationFailed':'IMAP用戶名或密碼錯誤,請檢查。%ImapServiceOpen%',
'detail':'<a href="%1",target="_blank">詳情請點擊</a>',
'iMapServerAuthenticationFailed_IMAPservice':'有可能您的%1郵箱未開啟IMAP服務。%2。',
'iMapServerAuthenticationFailed_AppPassword':'有可能您沒有設定%1密碼。%2',
'smtpServerAuthenticationFailed':'SMTP用戶名或密碼錯誤,請檢查。',
'cantConnectImapServer':'不能連接IMAP服務器,請檢查IMAP服務器名。',
'needPasswordForContinue':'請輸入您的密鑰對密碼,解鎖系統繼續完成設定。',
'smtpPortErr':'在指定的端口無法連接Smtp服務器,請核對端口號。',
'SmtpCertErr':'指定的SMTP服務器提示錯誤的證書,連接終止!',
'smtpServerLimit':'郵箱服務器提示您的郵箱今天可發Email數量已用完。',
'ImapCertErr':'指定的IMAP服務器提示錯誤的證書,連接終止!',
'imapServerDomainErr':'Imap服務器不能到達,請檢查Imap服務器網址,如果服務器網址設定無誤,則該服務器有可能被防火牆屏蔽,請聯繫您的網絡管理員或直接使用IP地址,您也可選擇使用其他的Email服務商。',
'smtpServerDomainErr':'Smtp服務器不能到達,請檢查Smtp服務器網址,如果服務器網址設定無誤,則該服務器有可能被防火牆屏蔽,請聯繫您的網絡管理員或直接使用IP地址,您也可選擇使用其他的Email服務商。'
},
"legal": {
'title': "產品及服務使用協議",
'item': '歡迎使用Vpn.Email, 感謝您使用我們的產品和服務(下稱“服務”)。服務由 Vpn.Email network technolog Canada Ltd. 簡称“Vpn.Email”提供, ' +
'您使用我們的服務即表示您已同意本條款。請仔細閱讀。',
'title1': '使用服務',
'item1': [
{ 'text': '您必須遵守服務中提供的所有政策。' },
{ 'text': '請勿濫用我們的服務, 舉例而言: 請勿干擾我們的服務或嘗試使用除我們提供的界面和指示以外的方法訪問這些服務。您僅能在法律(包括適用的出口和再出口管制法律和法規)允許的範圍內使用我們的服務。'+
'如果您不同意或遵守我們的條款或政策, 請不要使用我們所提供的服務, 或者我們在調查可疑的