Skip to content

Commit 33b4b0e

Browse files
committed
20220606
1 parent 2188682 commit 33b4b0e

File tree

7 files changed

+8
-3
lines changed

7 files changed

+8
-3
lines changed

main/lang/de/main.php

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
'menu_about' => 'Etwa',
6767
'menu_gologout' => 'Ausloggen',
6868
/* Page index */
69+
'txt-gologout' => 'Bitte warten Sie beim Abmelden ... ',
6970
'txt-SysMsg' => 'System informationen',
7071
'txt-StorageMsg' => 'Speichergerät informationen',
7172
'txt-CPUMsg' => 'CPU-Informationen',

main/lang/en/main.php

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
'menu_about' => 'About',
6767
'menu_gologout' => 'Logout',
6868
/* Page index */
69+
'txt-gologout' => 'Please wait, system logout is in progress ... ',
6970
'txt-SysMsg' => 'System information',
7071
'txt-StorageMsg' => 'Storage information',
7172
'txt-CPUMsg' => 'CPU information',

main/lang/jp/main.php

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
'menu_about' => 'だいたい',
6767
'menu_gologout' => 'ログアウト',
6868
/* Page index */
69+
'txt-gologout' => 'ログアウトするまでお待ちください...',
6970
'txt-SysMsg' => '記憶情報',
7071
'txt-StorageMsg' => 'ストレージ情報',
7172
'txt-CPUMsg' => 'CPU情報',

main/lang/zh-CN/main.php

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
'menu_about' => '关于',
6767
'menu_gologout' => '登出系统',
6868
/* Page index */
69+
'txt-gologout' => '请稍候,系统登出中 ... ',
6970
'txt-SysMsg' => '系统信息',
7071
'txt-StorageMsg' => '存储信息',
7172
'txt-CPUMsg' => 'CPU信息',

main/lang/zh-TW/main.php

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
'menu_about' => '關於',
6767
'menu_gologout' => '登出系統',
6868
/* Page index */
69+
'txt-gologout' => '請稍候,系統登出中 ... ',
6970
'txt-SysMsg' => '系統信息',
7071
'txt-StorageMsg' => '存儲信息',
7172
'txt-CPUMsg' => 'CPU信息',

main/resources/views/gologout.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
<!-- GoLogout 登出系统 -->
44
<script type="text/javascript">
5-
setTimeout( function(){ window.location.href="/logout" }, 3000 );
5+
setTimeout( function(){ window.location.href="/logout" }, 4000 );
66
</script>
77
<div class="login-main" style="height:300px;padding-left:30px;padding-right:25px; transform: translateY(50%);">
88
<table width="100%" height="100%" border=0 rules=none cellspacing=0>
9-
<tr><td style="text-align:center;">{{ __('main.menu_gologout') }} ...</td></tr>
9+
<tr><td style="text-align:center;">{{ __('main.txt-gologout') }}</td></tr>
1010
</table>
1111
</div>
1212

main/routes/web.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ function Get_info_Storage() { //获取存储相关信息
365365
/* ====== 处理路由 Begin ====== */
366366
$Data['xMessage']=trans('main.LogoutMsg');
367367
$Data['xMessage_Center']='T'; //文字中间对齐
368-
$Data['xMessage_UrlTime']=3;
368+
$Data['xMessage_UrlTime']=4;
369369
$Data['xMessage_Url']='/';
370370
Log::info('Logout');
371371
Session::forget(['User','Pass']); return view('message',$Data); //输出页面;

0 commit comments

Comments
 (0)