use I18N() replace $LANG

This commit is contained in:
doudoudzj 2019-07-11 17:04:44 +08:00
parent da7cbcb1c2
commit f6fcbd4a70
20 changed files with 136 additions and 197 deletions

View file

@ -39,7 +39,7 @@ if (!defined('IN_SYS')) {
<td><?php echo $value["password"]; ?></td>
<td><?php echo implode(",", $value["nameserver"]); ?></td>
<td style="width: 206px;">
<a class="btn btn-default btn-xs" href="#" role="button"><?php echo $LANG['login']; ?></a>
<a class="btn btn-default btn-xs" href="#" role="button"><?php echo I18N('login'); ?></a>
<button class="btn btn-default btn-xs" type="submit">View</button>
<button class="btn btn-default btn-xs" type="submit">Active</button>
<button class="btn btn-default btn-xs" type="submit">Disable</button>

View file

@ -28,7 +28,7 @@ if (!defined('IN_SYS')) {
<span>Captcha:</span>
<input type="text" name="captcha" class="form-control" maxlength="18" placeholder="CAPTCHA" required autocomplete="off" style="background-image: url(library/captcha.php);">
</label>
<button type="submit" name="do_login" class="btn btn-primary"><?php echo $LANG['login']; ?></button>
<button type="submit" name="do_login" class="btn btn-primary"><?php echo I18N('login'); ?></button>
</form>
<?php } elseif (isAdminLoggedIn() && !isset($message[0])) { ?>
<div class="alert alert-success">You have logged in</div>

View file

@ -56,7 +56,7 @@ if (!defined('IN_SYS')) {
</ul>
</li>
<?php } else { ?>
<li><a href="<?php echo setRouter('admin'); ?>"><?php echo I18N('ControlArea'); ?></a></li>
<li><a href="<?php echo setRouter('admin'); ?>"><?php echo I18N('managearea'); ?></a></li>
<li><a href="<?php echo setRouter('clientarea'); ?>"><?php echo I18N('clientarea'); ?></a></li>
<?php } ?>
</ul>

View file

@ -7,7 +7,7 @@
<html lang="<?php echo $current_lang; ?>">
<head>
<meta charset="utf-8">
<title><?php echo $title; ?> - <?php echo $LANG['register']; ?></title>
<title><?php echo $title; ?> - <?php echo I18N('register'); ?></title>
<?php include ("headmate.php"); ?>
</head>
@ -18,37 +18,37 @@
<div class="form-group form-horizontal form-account">
<input type="hidden" name="plan_name" value="free webhosting">
<div class="form-group">
<label for="inputUsername" class="control-label"><?php echo $LANG['username']; ?></label>
<input type="text" name="username" class="form-control" id="inputUsername" placeholder="<?php echo $LANG['input_username']; ?>" value="<?php if (isset($_GET['username'])) { echo $_GET['username']; }?>">
<label for="inputUsername" class="control-label"><?php echo I18N('username'); ?></label>
<input type="text" name="username" class="form-control" id="inputUsername" placeholder="<?php echo I18N('input_username'); ?>" value="<?php if (isset($_GET['username'])) { echo $_GET['username']; }?>">
</div>
<div class="form-group">
<label for="inputDomain" class="control-label"><?php echo $LANG['domain']; ?></label>
<input type="text" name="domain" class="form-control" id="inputDomain" placeholder="<?php echo $LANG['input-domain']; ?>" value="<?php if (isset($_GET['domain'])) { echo $_GET['domain']; }?>">
<label for="inputDomain" class="control-label"><?php echo I18N('domain'); ?></label>
<input type="text" name="domain" class="form-control" id="inputDomain" placeholder="<?php echo I18N('input-domain'); ?>" value="<?php if (isset($_GET['domain'])) { echo $_GET['domain']; }?>">
</div>
<div class="form-group">
<label for="inputPassword" class="control-label"><?php echo $LANG['password']; ?></label>
<input type="password" name="password" class="form-control" id="inputPassword" placeholder="<?php echo $LANG['input_password']; ?>">
<label for="inputPassword" class="control-label"><?php echo I18N('password'); ?></label>
<input type="password" name="password" class="form-control" id="inputPassword" placeholder="<?php echo I18N('input_password'); ?>">
</div>
<div class="form-group">
<label for="inputEmail" class="control-label"><?php echo $LANG['email']; ?></label>
<input type="email" name="email" class="form-control" id="inputEmail" placeholder="<?php echo $LANG['input_email']; ?>" value="<?php if (isset($_GET['email'])) { echo $_GET['email']; }?>">
<label for="inputEmail" class="control-label"><?php echo I18N('email'); ?></label>
<input type="email" name="email" class="form-control" id="inputEmail" placeholder="<?php echo I18N('input_email'); ?>" value="<?php if (isset($_GET['email'])) { echo $_GET['email']; }?>">
</div>
<div class="form-group">
<label for="inputCategory" class="control-label"><?php echo $LANG['site_category']; ?></label>
<label for="inputCategory" class="control-label"><?php echo I18N('site_category'); ?></label>
<select class="form-control" name="website_category" id="inputCategory">
<option><?php echo $LANG['choose_from_below']; ?></option>
<option><?php echo $LANG['personal']; ?></option>
<option><?php echo $LANG['business']; ?></option>
<option><?php echo $LANG['hobby']; ?></option>
<option><?php echo $LANG['forum']; ?></option>
<option><?php echo $LANG['dating']; ?></option>
<option><?php echo $LANG['software_download']; ?></option>
<option><?php echo I18N('choose_from_below'); ?></option>
<option><?php echo I18N('personal'); ?></option>
<option><?php echo I18N('business'); ?></option>
<option><?php echo I18N('hobby'); ?></option>
<option><?php echo I18N('forum'); ?></option>
<option><?php echo I18N('dating'); ?></option>
<option><?php echo I18N('software_download'); ?></option>
</select>
</div>
<div class="form-group">
<label for="inputLanguage" class="control-label"><?php echo $LANG['site_language']; ?></label>
<label for="inputLanguage" class="control-label"><?php echo I18N('site_language'); ?></label>
<select class="form-control" name="website_language" id="inputLanguage">
<option><?php echo $LANG['choose_from_below']; ?></option>
<option><?php echo I18N('choose_from_below'); ?></option>
<!-- <option data-i18n="english">English</option> -->
<!-- <option data-i18n="non_english">Non-English</option> -->
<option selected="selected" value="English">Auto: English</option>
@ -160,16 +160,16 @@
</select>
</div>
<div class="form-group">
<label for="inputID" class="control-label"><?php echo $LANG['security_code']; ?></label>
<label for="inputID" class="control-label"><?php echo I18N('security_code'); ?></label>
<img width="90px" height="25px" src="./security_code.php?id=<?=$security_id?>">
<input type="hidden" name="id" class="form-control" id="inputID" value="<?=$security_id?>">
</div>
<div class="form-group">
<label for="inputSecurityCode" class="control-label"><?php echo $LANG['input_security_code']; ?></label>
<input type="text" name="number" class="form-control" id="inputSecurityCode" placeholder="<?php echo $LANG['input_security_code_above']; ?>">
<label for="inputSecurityCode" class="control-label"><?php echo I18N('input_security_code'); ?></label>
<input type="text" name="number" class="form-control" id="inputSecurityCode" placeholder="<?php echo I18N('input_security_code_above'); ?>">
</div>
<div class="form-group">
<button type="submit" name="submit" class="btn btn-primary"><?php echo $LANG['register']; ?></button>
<button type="submit" name="submit" class="btn btn-primary"><?php echo I18N('register'); ?></button>
</div>
</div>
</div>

View file

@ -30,7 +30,7 @@
</div>
<div class="form-group">
<label>Not yet have an account ?</label>
<label><a href="register.php"><?php echo $LANG['register']; ?></a></label>
<label><a href="register.php"><?php echo I18N('register'); ?></a></label>
</div>
<div class="form-group">
<button type="submit" name="submit" class="btn btn-primary btn-block">Submit</button>

View file

@ -5,4 +5,4 @@ if (!defined('IN_SYS')) {
exit;
}
$security_id = md5(rand(6000, getrandmax())); // $security_id = md5(rand(6000,PHP_INT_MAX));
$title = $title . ' - ' . $LANG['register'];
$title = $title . ' - ' . I18N('register');

View file

@ -10,7 +10,7 @@ if (!defined('IN_SYS')) {
<div class="container">
<div class="page-header">
<h1 class="text-center"><?php echo $LANG['cancellation_refund']; ?></a></h1>
<h1 class="text-center"><?php echo I18N('cancellation_refund'); ?></a></h1>
<p class="text-center">Cancelation &amp; refund information</p>
</div>
</div>

View file

@ -8,7 +8,7 @@ if (!defined('IN_SYS')) {
<div class="container">
<div class="page-header">
<h1><?php echo $LANG['contact_us']; ?></h1>
<h1><?php echo I18N('contact_us'); ?></h1>
</div>
</div>
<div class="container">
@ -21,7 +21,7 @@ if (!defined('IN_SYS')) {
<p>For technical support please look at the <a href="http://byet.net" target="_blank">Knowledge Base</a></p>
</div>
<div class="col-sm-12 col-md-12">
<h2><?php echo $LANG['address']; ?></h2>
<h2><?php echo I18N('address'); ?></h2>
<p>Shanghai China.</p>
</div>
<div class="col-sm-12 col-md-12">

View file

@ -11,7 +11,7 @@ if (!defined('IN_SYS')) {
<div class="container">
<div class="page-header">
<h1 class="text-center"><?php echo $LANG['privacy_policy']; ?></a></h1>
<h1 class="text-center"><?php echo I18N('privacy_policy'); ?></a></h1>
<p class="text-center">Privacy policy information</p>
</div>
</div>

View file

@ -11,19 +11,19 @@ if (!defined('IN_SYS')) {
<div class="col-md-6 col-sm-6 margin-auto">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><?php echo $LANG['please_login']; ?></h3>
<h3 class="panel-title"><?php echo I18N('please_login'); ?></h3>
</div>
<div class="panel-body">
<form class="form-group form-horizontal form-account" role="form" action="//cpanel.<?= $domain ?>/login.php" method="post" name="login">
<div class="form-group">
<input type="text" name="uname" class="form-control" placeholder="<?php echo $LANG['input_username']; ?>" required autofocus autocomplete="off">
<input type="text" name="uname" class="form-control" placeholder="<?php echo I18N('input_username'); ?>" required autofocus autocomplete="off">
</div>
<div class="form-group">
<input type="password" name="passwd" class="form-control" placeholder="<?php echo $LANG['input_password']; ?>" required autocomplete="off">
<input type="password" name="passwd" class="form-control" placeholder="<?php echo I18N('input_password'); ?>" required autocomplete="off">
</div>
<div class="form-group">
<select class="form-control" name="language" id="inputLanguage">
<option disabled><?php echo $LANG['choose_from_below']; ?></option>
<option disabled><?php echo I18N('choose_from_below'); ?></option>
<?php foreach ($languages as $key => $value) {
$selected = $key == $current_lang ? 'selected="selected"' : '';
echo '<option value="' . $languages[$key][1] . '" ' . $selected . '>' . $languages[$key][0] . '</option>';
@ -33,13 +33,13 @@ if (!defined('IN_SYS')) {
<div class="form-group">
<div class="checkbox">
<label>
<input type="checkbox" value="remember-me"><span><?php echo $LANG['remember_me']; ?></span>
<a href="//cpanel.<?= $domain ?>/lostpassword.php"><?php echo $LANG['lost_password']; ?></a>
<input type="checkbox" value="remember-me"><span><?php echo I18N('remember_me'); ?></span>
<a href="//cpanel.<?= $domain ?>/lostpassword.php"><?php echo I18N('lost_password'); ?></a>
</label>
</div>
</div>
<div class="form-group">
<button type="submit" name="submit" class="btn btn-primary btn-block"><?php echo $LANG['login']; ?></button>
<button type="submit" name="submit" class="btn btn-primary btn-block"><?php echo I18N('login'); ?></button>
</div>
</form>
</div>

View file

@ -20,34 +20,34 @@ if (!defined('IN_SYS')) {
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="<?php echo setRouter('index');?>"><?php echo $LANG['home']; ?></a></li>
<li><a href="<?php echo setRouter('solution');?>"><?php echo $LANG['solution']; ?></a></li>
<li><a href="<?php echo setRouter('support');?>"><?php echo $LANG['support']; ?></a></li>
<li><a href="<?php echo setRouter('index');?>"><?php echo I18N('home'); ?></a></li>
<li><a href="<?php echo setRouter('solution');?>"><?php echo I18N('solution'); ?></a></li>
<li><a href="<?php echo setRouter('support');?>"><?php echo I18N('support'); ?></a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropdown-toggle" data-toggle="dropdown"><?php echo $LANG['more']; ?>&nbsp;<span class="caret"></span></a>
<a href="javascript:void(0)" class="dropdown-toggle" data-toggle="dropdown"><?php echo I18N('more'); ?>&nbsp;<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="contact.php"><?php echo $LANG['contact']; ?></a></li>
<li><a href="help.php"><?php echo $LANG['help']; ?></a></li>
<li><a href="support.php"><?php echo $LANG['support']; ?></a></li>
<li><a href="contact.php"><?php echo I18N('contact'); ?></a></li>
<li><a href="help.php"><?php echo I18N('help'); ?></a></li>
<li><a href="support.php"><?php echo I18N('support'); ?></a></li>
<li><a href="<?php echo setRouter('forum'); ?>"><?php echo I18N('forum'); ?></a></li>
<li class="divider"></li>
<li class="dropdown-header"><?php echo $LANG['aboutus']; ?></li>
<li><a href="about.php"><?php echo $LANG['about']; ?> UIISC</a></li>
<li><a href="about.php?s=crogram"><?php echo $LANG['about']; ?> Crogram,Inc.</a></li>
<li><a href="about.php?s=ifastnet"><?php echo $LANG['about']; ?> iFastNet</a></li>
<li class="dropdown-header"><?php echo I18N('aboutus'); ?></li>
<li><a href="about.php"><?php echo I18N('about'); ?> UIISC</a></li>
<li><a href="about.php?s=crogram"><?php echo I18N('about'); ?> Crogram,Inc.</a></li>
<li><a href="about.php?s=ifastnet"><?php echo I18N('about'); ?> iFastNet</a></li>
<li class="divider"></li>
<li><a href="cancellation-refund.php"><?php echo $LANG['cancellation_refund']; ?></a></li>
<li><a href="payment-methods.php"><?php echo $LANG['payment_methods']; ?></a></li>
<li><a href="cancellation-refund.php"><?php echo I18N('cancellation_refund'); ?></a></li>
<li><a href="payment-methods.php"><?php echo I18N('payment_methods'); ?></a></li>
<li class="divider"></li>
<li class="dropdown-header"><?php echo $LANG['legal_information']; ?></li>
<li><a href="legal.php?s=terms"><?php echo $LANG['tos']; ?></a></li>
<li><a href="legal.php?s=privacy"><?php echo $LANG['privacy_policy']; ?></a></li>
<li class="dropdown-header"><?php echo I18N('legal_information'); ?></li>
<li><a href="legal.php?s=terms"><?php echo I18N('tos'); ?></a></li>
<li><a href="legal.php?s=privacy"><?php echo I18N('privacy_policy'); ?></a></li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="<?php echo setRouter('login');?>"><?php echo $LANG['login']; ?></a></li>
<li><a href="<?php echo setRouter('register');?>"><?php echo $LANG['register']; ?></a></li>
<li><a href="<?php echo setRouter('login');?>"><?php echo I18N('login'); ?></a></li>
<li><a href="<?php echo setRouter('register');?>"><?php echo I18N('register'); ?></a></li>
<li><a href="<?php echo setRouter('clientarea'); ?>"><?php echo I18N('clientarea'); ?></a></li>
</ul>
</div>

View file

@ -10,7 +10,7 @@ if (!defined('IN_SYS')) {
<div class="container">
<div class="page-header">
<h1 class="text-center"><?php echo $LANG['payment_methods']; ?></a></h1>
<h1 class="text-center"><?php echo I18N('payment_methods'); ?></a></h1>
<p class="text-center">Payment methods information</p>
</div>
</div>
@ -18,7 +18,7 @@ if (!defined('IN_SYS')) {
<div class="container">
<div class="row">
<div class="hidden-xs col-sm-12 col-md-12">
<h2><?php echo $LANG['payment_methods']; ?></h2>
<h2><?php echo I18N('payment_methods'); ?></h2>
</div>
<div class="col-sm-12 col-md-12">
<p>We currently accept payments using 3 major payment gateways:</p>

View file

@ -11,74 +11,74 @@ if (!defined('IN_SYS')) {
<div class="col-md-6 col-sm-6 margin-auto">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><?php echo $LANG['signup_free_hosting']; ?></h3>
<h3 class="panel-title"><?php echo I18N('signup_free_hosting'); ?></h3>
</div>
<div class="panel-body">
<form class="form-horizontal" role="form" method=post action="//order.<?php echo $domain; ?>/register.php">
<!--remote_reg.php-->
<input type="hidden" name="plan_name" value="free webhosting">
<div class="form-group">
<label for="inputUsername" class="col-sm-4 control-label"><?php echo $LANG['username']; ?></label>
<label for="inputUsername" class="col-sm-4 control-label"><?php echo I18N('username'); ?></label>
<div class="col-sm-5">
<input type="text" name="username" class="form-control" id="inputUsername" placeholder="<?php echo $LANG['input_username']; ?>" value="<?php if (isset($_GET['username'])) {
<input type="text" name="username" class="form-control" id="inputUsername" placeholder="<?php echo I18N('input_username'); ?>" value="<?php if (isset($_GET['username'])) {
echo $_GET['username'];
} ?>">
</div>
</div>
<div class="form-group">
<label for="inputPassword" class="col-sm-4 control-label"><?php echo $LANG['password']; ?></label>
<label for="inputPassword" class="col-sm-4 control-label"><?php echo I18N('password'); ?></label>
<div class="col-sm-5">
<input type="password" name="password" class="form-control" id="inputPassword" placeholder="<?php echo $LANG['input_password']; ?>">
<input type="password" name="password" class="form-control" id="inputPassword" placeholder="<?php echo I18N('input_password'); ?>">
</div>
</div>
<div class="form-group">
<label for="inputEmail" class="col-sm-4 control-label"><?php echo $LANG['email']; ?></label>
<label for="inputEmail" class="col-sm-4 control-label"><?php echo I18N('email'); ?></label>
<div class="col-sm-5">
<input type="email" name="email" class="form-control" id="inputEmail" placeholder="<?php echo $LANG['input_email']; ?>" value="<?php if (isset($_GET['email'])) {
<input type="email" name="email" class="form-control" id="inputEmail" placeholder="<?php echo I18N('input_email'); ?>" value="<?php if (isset($_GET['email'])) {
echo $_GET['email'];
} ?>">
</div>
</div>
<div class="form-group">
<label for="inputCategory" class="col-sm-4 control-label"><?php echo $LANG['site_category']; ?></label>
<label for="inputCategory" class="col-sm-4 control-label"><?php echo I18N('site_category'); ?></label>
<div class="col-sm-5">
<select class="form-control" name="website_category" id="inputCategory">
<option value=""><?php echo $LANG['choose_from_below']; ?></option>
<option value="personal"><?php echo $LANG['personal']; ?></option>
<option value="business"><?php echo $LANG['business']; ?></option>
<option value="hobby"><?php echo $LANG['hobby']; ?></option>
<option value="forum"><?php echo $LANG['forum']; ?></option>
<option value="dating"><?php echo $LANG['dating']; ?></option>
<option value="software_download"><?php echo $LANG['software_download']; ?></option>
<option value=""><?php echo I18N('choose_from_below'); ?></option>
<option value="personal"><?php echo I18N('personal'); ?></option>
<option value="business"><?php echo I18N('business'); ?></option>
<option value="hobby"><?php echo I18N('hobby'); ?></option>
<option value="forum"><?php echo I18N('forum'); ?></option>
<option value="dating"><?php echo I18N('dating'); ?></option>
<option value="software_download"><?php echo I18N('software_download'); ?></option>
</select>
</div>
</div>
<div class="form-group">
<label for="inputLanguage" class="col-sm-4 control-label"><?php echo $LANG['site_language']; ?></label>
<label for="inputLanguage" class="col-sm-4 control-label"><?php echo I18N('site_language'); ?></label>
<div class="col-sm-5">
<select class="form-control" name="website_language" id="inputLanguage">
<option value=""><?php echo $LANG['choose_from_below']; ?></option>
<option value=""><?php echo I18N('choose_from_below'); ?></option>
<option value="english" data-i18n="english">English</option>
<option value="non-english" data-i18n="non_english">Non-English</option>
</select>
</div>
</div>
<div class="form-group">
<label for="inputID" class="col-sm-4 control-label"><?php echo $LANG['security_code']; ?></label>
<label for="inputID" class="col-sm-4 control-label"><?php echo I18N('security_code'); ?></label>
<div class="col-sm-5">
<img width="90px" height="25px" src="/security_code.php?id=<?php echo $security_id; ?>">
<input type="hidden" name="id" class="form-control" id="inputID" value="<?php echo $security_id; ?>">
</div>
</div>
<div class="form-group">
<label for="inputSecurityCode" class="col-sm-4 control-label"><?php echo $LANG['input_security_code']; ?></label>
<label for="inputSecurityCode" class="col-sm-4 control-label"><?php echo I18N('input_security_code'); ?></label>
<div class="col-sm-5">
<input type="text" name="number" class="form-control" id="inputSecurityCode" placeholder="<?php echo $LANG['input_security_code_above']; ?>">
<input type="text" name="number" class="form-control" id="inputSecurityCode" placeholder="<?php echo I18N('input_security_code_above'); ?>">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-4 col-sm-6">
<button type="submit" name="submit" class="btn btn-default"><?php echo $LANG['register']; ?></button>
<button type="submit" name="submit" class="btn btn-default"><?php echo I18N('register'); ?></button>
</div>
</div>
</form>

View file

@ -8,7 +8,7 @@ if (!defined('IN_SYS')) {
<div class="container">
<div class="page-header">
<h1><?php echo $LANG['solution']; ?></h1>
<h1><?php echo I18N('solution'); ?></h1>
</div>
</div>
@ -17,49 +17,49 @@ if (!defined('IN_SYS')) {
<div class="col-sm-4">
<div class="list-group">
<div class="list-group-item">
<a class="btn btn-link btn-xs pull-right" href="register.php" role="button"><?php echo $LANG['register']; ?></a>
<?php echo $LANG['host-plan-free']; ?>
<a class="btn btn-link btn-xs pull-right" href="register.php" role="button"><?php echo I18N('register'); ?></a>
<?php echo I18N('host-plan-free'); ?>
</div>
<div class="list-group-item"><span class="badge">1</span><?php echo $LANG['ftp-accounts']; ?></div>
<div class="list-group-item disabled"><span class="badge"><?php echo $LANG['not-support']; ?></span><?php echo $LANG['free-domains']; ?></div>
<div class="list-group-item"><span class="badge">10</span><?php echo $LANG['sub-domains']; ?></div>
<div class="list-group-item"><span class="badge">10</span><?php echo $LANG['add-on-domains']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['parked-domains']; ?></div>
<div class="list-group-item"><span class="badge">10</span><?php echo $LANG['mysql-databases']; ?></div>
<div class="list-group-item"><span class="badge">10 GB</span><?php echo $LANG['disk-quota']; ?></div>
<div class="list-group-item"><span class="badge">100 GB</span><?php echo $LANG['monthly-bandwidth']; ?></div>
<div class="list-group-item"><span class="badge">50000</span><?php echo $LANG['daily-hits']; ?></div>
<div class="list-group-item"><span class="badge">30019</span><?php echo $LANG['host-inodes']; ?></div>
<div class="list-group-item"><span class="badge">1</span><?php echo I18N('ftp-accounts'); ?></div>
<div class="list-group-item disabled"><span class="badge"><?php echo I18N('not-support'); ?></span><?php echo I18N('free-domains'); ?></div>
<div class="list-group-item"><span class="badge">10</span><?php echo I18N('sub-domains'); ?></div>
<div class="list-group-item"><span class="badge">10</span><?php echo I18N('add-on-domains'); ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('parked-domains'); ?></div>
<div class="list-group-item"><span class="badge">10</span><?php echo I18N('mysql-databases'); ?></div>
<div class="list-group-item"><span class="badge">10 GB</span><?php echo I18N('disk-quota'); ?></div>
<div class="list-group-item"><span class="badge">100 GB</span><?php echo I18N('monthly-bandwidth'); ?></div>
<div class="list-group-item"><span class="badge">50000</span><?php echo I18N('daily-hits'); ?></div>
<div class="list-group-item"><span class="badge">30019</span><?php echo I18N('host-inodes'); ?></div>
<div class="list-group-item">Latest vPanel with Softaculous</div>
<div class="list-group-item">Latest PHP and mySQL</div>
<div class="list-group-item">SiteBuilder</div>
<div class="list-group-item">1 Click Script Installer</div>
<div class="list-group-item disabled"><span class="badge"><?php echo $LANG['not-support']; ?></span>Node.JS</div>
<div class="list-group-item disabled"><span class="badge"><?php echo $LANG['not-support']; ?></span>Postgres</div>
<div class="list-group-item disabled"><span class="badge"><?php echo $LANG['not-support']; ?></span>Free SSL Certificate</div>
<div class="list-group-item disabled"><span class="badge"><?php echo $LANG['not-support']; ?></span>Custom CRON Jobs</div>
<div class="list-group-item disabled"><span class="badge"><?php echo I18N('not-support'); ?></span>Node.JS</div>
<div class="list-group-item disabled"><span class="badge"><?php echo I18N('not-support'); ?></span>Postgres</div>
<div class="list-group-item disabled"><span class="badge"><?php echo I18N('not-support'); ?></span>Free SSL Certificate</div>
<div class="list-group-item disabled"><span class="badge"><?php echo I18N('not-support'); ?></span>Custom CRON Jobs</div>
<div class="list-group-item text-center">
<!-- <a class="btn btn-default" href="plan/free.php" role="button">详情</a> -->
<a class="btn btn-primary" href="register.php" role="button"><?php echo $LANG['register']; ?></a>
<a class="btn btn-primary" href="register.php" role="button"><?php echo I18N('register'); ?></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="list-group">
<div class="list-group-item">
<a class="btn btn-link btn-xs pull-right" href="register.php" role="button"><?php echo $LANG['register']; ?></a>
<?php echo $LANG['host-plan-super']; ?>
<a class="btn btn-link btn-xs pull-right" href="register.php" role="button"><?php echo I18N('register'); ?></a>
<?php echo I18N('host-plan-super'); ?>
</div>
<div class="list-group-item"><span class="badge">100</span><?php echo $LANG['ftp-accounts']; ?></div>
<div class="list-group-item"><span class="badge">6</span><?php echo $LANG['free-domains']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['sub-domains']; ?></div>
<div class="list-group-item"><span class="badge">20</span><?php echo $LANG['add-on-domains']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['parked-domains']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['mysql-databases']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['disk-quota']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['monthly-bandwidth']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['daily-hits']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['host-inodes']; ?></div>
<div class="list-group-item"><span class="badge">100</span><?php echo I18N('ftp-accounts'); ?></div>
<div class="list-group-item"><span class="badge">6</span><?php echo I18N('free-domains'); ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('sub-domains'); ?></div>
<div class="list-group-item"><span class="badge">20</span><?php echo I18N('add-on-domains'); ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('parked-domains'); ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('mysql-databases'); ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('disk-quota'); ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('monthly-bandwidth'); ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('daily-hits'); ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('host-inodes'); ?></div>
<div class="list-group-item">Latest cPanel with Softaculous</div>
<div class="list-group-item">Latest PHP and mySQL</div>
<div class="list-group-item">SiteBuilder</div>
@ -69,26 +69,26 @@ if (!defined('IN_SYS')) {
<div class="list-group-item">Free SSL Certificate</div>
<div class="list-group-item">Custom CRON Jobs</div>
<div class="list-group-item text-center">
<a class="btn btn-primary" href="register.php" role="button"><?php echo $LANG['register']; ?></a>
<a class="btn btn-primary" href="register.php" role="button"><?php echo I18N('register'); ?></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="list-group">
<div class="list-group-item">
<a class="btn btn-link btn-xs pull-right" href="register.php" role="button"><?php echo $LANG['register']; ?></a>
<?php echo $LANG['host-plan-ultimate']; ?>
<a class="btn btn-link btn-xs pull-right" href="register.php" role="button"><?php echo I18N('register'); ?></a>
<?php echo I18N('host-plan-ultimate'); ?>
</div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['ftp-accounts']; ?></div>
<div class="list-group-item"><span class="badge">21</span><?php echo $LANG['free-domains']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['sub-domains']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['add-on-domains']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['parked-domains']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['mysql-databases']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['disk-quota']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['monthly-bandwidth']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['daily-hits']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['host-inodes']; ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('ftp-accounts'); ?></div>
<div class="list-group-item"><span class="badge">21</span><?php echo I18N('free-domains'); ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('sub-domains'); ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('add-on-domains'); ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('parked-domains'); ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('mysql-databases'); ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('disk-quota'); ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('monthly-bandwidth'); ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('daily-hits'); ?></div>
<div class="list-group-item"><span class="badge"><?php echo I18N('unlimited'); ?></span><?php echo I18N('host-inodes'); ?></div>
<div class="list-group-item">Latest cPanel with Softaculous</div>
<div class="list-group-item">Latest PHP and mySQL</div>
<div class="list-group-item">SiteBuilder</div>
@ -97,7 +97,7 @@ if (!defined('IN_SYS')) {
<div class="list-group-item">Postgres</div>
<div class="list-group-item">Free SSL Certificate</div>
<div class="list-group-item">Custom CRON Jobs</div>
<div class="list-group-item text-center"><a class="btn btn-primary" href="register.php" role="button"><?php echo $LANG['register']; ?></a></div>
<div class="list-group-item text-center"><a class="btn btn-primary" href="register.php" role="button"><?php echo I18N('register'); ?></a></div>
</div>
</div>
</div>

View file

@ -65,5 +65,6 @@ $LANG = [
'aboutus' => 'About',
'clientarea' => 'Client Area',
'add' => 'Add',
'list' => 'List'
'list' => 'List',
'managearea' => 'Manage Area'
];

View file

@ -65,5 +65,6 @@ $LANG = [
'aboutus' => '회사 소개',
'clientarea' => '고객센터',
'add' => '더하다',
'list' => '명부'
'list' => '명부',
'managearea' => '관리센터',
];

View file

@ -65,5 +65,6 @@ $LANG = [
'aboutus' => '关于我们',
'clientarea' => '客户中心',
'add' => '新增',
'list' => '列表'
'list' => '列表',
'managearea' => '管理中心'
];

View file

@ -65,5 +65,6 @@ $LANG = [
'aboutus' => '關於我們',
'clientarea' => '客戶中心',
'add' => '新增',
'list' => '列表'
'list' => '列表',
'managearea' => '管理中心'
];

View file

@ -1,69 +1,3 @@
<?php
$LANG = [
"home" => "主页",
"solution" => "方案",
"news" => "新闻",
"contact" => "联系",
"contact_us" => "联系我们",
"help" => "帮助",
"login" => "登录",
"register" => "注册",
"username" => "用户名",
"input_username" => "请输入用户名",
"password" => "密码",
"input_password" => "请输入密码",
"email" => "电子邮箱地址",
"input_email" => "请输入电子邮箱地址",
"site_category" => "网站类型",
"personal" => "个人",
"business" => "商业",
"hobby" => "爱好",
"forum" => "论坛",
"adult" => "成人",
"dating" => "约会",
"software_download" => "软件/下载",
"choose_from_below" => "下拉选择",
"site_language" => "网站语言",
"english" => "英文",
"non_english" => "非英文",
"security_code" => "验证码",
"input_security_code" => "输入验证码",
"input_security_code_above" => "请输入上面图中验证码",
"legal_information" => "法律信息",
"privacy_policy" => "隐私政策",
"tos" => "服务条款",
"cancellation_refund" => "取消与退款",
"payment_methods" => "支付方式",
"signup_free_hosting" => "注册免费空间",
"remember_me" => "记住我",
"please_login" => "请登录",
"lost_password" => "忘记密码了?",
"address" => "地址",
"host-plan" => "主机方案",
"host-plan-free" => "免费主机",
"host-plan-paid" => "收费主机",
'host-plan-super' => '高级主机',
'host-plan-ultimate' => '顶级主机',
"ftp-accounts" => "FTP账号",
'free-domains' => '免费域名',
"sub-domains" => "子域名",
"add-on-domains" => "绑定域名",
"parked-domains" => "停放域名",
"mysql-databases" => "MySQL数据库",
"disk-quota" => "总空间配额",
"monthly-bandwidth" => "每月流量限制",
"daily-hits" => "每日点击配额",
"host-inodes" => "使用Inode配额",
"unlimited" => "无限",
"reset-password" => "重置密码",
"domain" => "域名",
"input-domain" => "请输入域名",
'support' => '支持',
'not-support' => '不支持',
'more' => '更多',
'about' => '关于',
'aboutus' => '关于我们',
'clientarea' => '客户中心',
'add' => '新增',
'list' => '列表'
];
include('../zh-CN/language.php');

View file

@ -65,5 +65,6 @@ $LANG = [
'aboutus' => '關於我們',
'clientarea' => '客戶中心',
'add' => '新增',
'list' => '列表'
'list' => '列表',
'managearea' => '管理中心'
];