Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
刘韬
/
1069_MIMO_PlUS
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
作业
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit 89f0f5f6
由
LN
编写于
2024-11-20 15:10:01 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
中英文完善
1 个父辈
b20011b1
显示空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
30 行增加
和
3 行删除
Common/CodeResourceControl.cs
TheMachineNView/UC/FrmPassCheck.cs
TheMachineNView/UC/FrmPassCheck.designer.cs
TheMachineNView/resources/en-US.lngres
TheMachineNView/resources/ja-JP.lngres
TheMachineNView/resources/zh-CN.lngres
Common/CodeResourceControl.cs
查看文件 @
89f0f5f
...
@@ -41,7 +41,6 @@ namespace OnlineStore
...
@@ -41,7 +41,6 @@ namespace OnlineStore
var
lngjson
=
JsonHelper
.
SerializeObject
(
LangMap
);
var
lngjson
=
JsonHelper
.
SerializeObject
(
LangMap
);
Task
.
Run
(()
=>
{
Task
.
Run
(()
=>
{
return
;
try
try
{
{
Task
.
Delay
(
10
*
1000
).
Wait
();
Task
.
Delay
(
10
*
1000
).
Wait
();
...
@@ -101,10 +100,15 @@ namespace OnlineStore
...
@@ -101,10 +100,15 @@ namespace OnlineStore
continue
;
continue
;
string
[]
array
=
line
.
Split
(
spilt
);
string
[]
array
=
line
.
Split
(
spilt
);
if
(
array
.
Length
>=
3
)
if
(
array
.
Length
>=
2
)
{
{
string
key
=
array
[
0
].
Trim
();
string
key
=
array
[
0
].
Trim
();
string
value
=
array
[
2
];
string
value
=
array
[
1
];
if
(
array
.
Length
>=
3
)
{
value
=
array
[
2
];
}
if
(
lngMap
.
ContainsKey
(
key
))
if
(
lngMap
.
ContainsKey
(
key
))
lngMap
[
key
]
=
value
;
lngMap
[
key
]
=
value
;
else
else
...
...
TheMachineNView/UC/FrmPassCheck.cs
查看文件 @
89f0f5f
...
@@ -47,5 +47,13 @@ namespace TheMachineNView
...
@@ -47,5 +47,13 @@ namespace TheMachineNView
else
else
MessageBox
.
Show
(
crc
.
GetString
(
"Res0057"
,
"密码不正确请重新输入!"
));
MessageBox
.
Show
(
crc
.
GetString
(
"Res0057"
,
"密码不正确请重新输入!"
));
}
}
private
void
FrmPassCheck_Load
(
object
sender
,
EventArgs
e
)
{
this
.
Text
=
crc
.
GetString
(
"PEnterPwd"
,
"请输入密码"
);
this
.
btn_cancel
.
Text
=
crc
.
GetString
(
"Cancel"
,
"取消"
);
this
.
btn_ok
.
Text
=
crc
.
GetString
(
"Ok"
,
"确定"
);
}
}
}
}
}
\ No newline at end of file
\ No newline at end of file
TheMachineNView/UC/FrmPassCheck.designer.cs
查看文件 @
89f0f5f
...
@@ -45,6 +45,7 @@ namespace TheMachineNView
...
@@ -45,6 +45,7 @@ namespace TheMachineNView
//
//
// btn_ok
// btn_ok
//
//
this
.
btn_ok
.
Font
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
10.5F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Point
,
((
byte
)(
134
)));
this
.
btn_ok
.
Location
=
new
System
.
Drawing
.
Point
(
352
,
189
);
this
.
btn_ok
.
Location
=
new
System
.
Drawing
.
Point
(
352
,
189
);
this
.
btn_ok
.
Name
=
"btn_ok"
;
this
.
btn_ok
.
Name
=
"btn_ok"
;
this
.
btn_ok
.
Size
=
new
System
.
Drawing
.
Size
(
129
,
49
);
this
.
btn_ok
.
Size
=
new
System
.
Drawing
.
Size
(
129
,
49
);
...
@@ -55,6 +56,7 @@ namespace TheMachineNView
...
@@ -55,6 +56,7 @@ namespace TheMachineNView
//
//
// btn_cancel
// btn_cancel
//
//
this
.
btn_cancel
.
Font
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
10.5F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Point
,
((
byte
)(
134
)));
this
.
btn_cancel
.
Location
=
new
System
.
Drawing
.
Point
(
40
,
189
);
this
.
btn_cancel
.
Location
=
new
System
.
Drawing
.
Point
(
40
,
189
);
this
.
btn_cancel
.
Name
=
"btn_cancel"
;
this
.
btn_cancel
.
Name
=
"btn_cancel"
;
this
.
btn_cancel
.
Size
=
new
System
.
Drawing
.
Size
(
129
,
49
);
this
.
btn_cancel
.
Size
=
new
System
.
Drawing
.
Size
(
129
,
49
);
...
@@ -78,6 +80,7 @@ namespace TheMachineNView
...
@@ -78,6 +80,7 @@ namespace TheMachineNView
this
.
ShowIcon
=
false
;
this
.
ShowIcon
=
false
;
this
.
ShowInTaskbar
=
false
;
this
.
ShowInTaskbar
=
false
;
this
.
Text
=
"请输入密码"
;
this
.
Text
=
"请输入密码"
;
this
.
Load
+=
new
System
.
EventHandler
(
this
.
FrmPassCheck_Load
);
this
.
ResumeLayout
(
false
);
this
.
ResumeLayout
(
false
);
this
.
PerformLayout
();
this
.
PerformLayout
();
...
...
TheMachineNView/resources/en-US.lngres
查看文件 @
89f0f5f
...
@@ -463,3 +463,7 @@ Res0068 Old password incorrect
...
@@ -463,3 +463,7 @@ Res0068 Old password incorrect
Res0069 The new password is not the same, please confirm.
Res0069 The new password is not the same, please confirm.
Res0070 The new password cannot be empty!
Res0070 The new password cannot be empty!
Res0071 Password changed successfully!
Res0071 Password changed successfully!
PEnterPwd 请输入密码 Please enter your password
Cancel CANCEL CANCEL
Ok 确定 OK
Res0057 密码不正确请重新输入! Password is not correct, please re-enter!
TheMachineNView/resources/ja-JP.lngres
查看文件 @
89f0f5f
...
@@ -467,3 +467,7 @@ Res0068 旧パスワードの誤り
...
@@ -467,3 +467,7 @@ Res0068 旧パスワードの誤り
Res0069 新しいパスワードが2回入力したパスワードと違います!
Res0069 新しいパスワードが2回入力したパスワードと違います!
Res0070 新しいパスワードを空にすることはできません!
Res0070 新しいパスワードを空にすることはできません!
Res0071 パスワード変更成功!
Res0071 パスワード変更成功!
PEnterPwd 请输入密码 パスワードを入力してください
Cancel 取消 キャンセル
Ok 确定 定義する
Res0057 密码不正确请重新输入! パスワードが間違っています。
\ No newline at end of file
\ No newline at end of file
TheMachineNView/resources/zh-CN.lngres
查看文件 @
89f0f5f
...
@@ -451,3 +451,7 @@ Res0068 旧密码不正确
...
@@ -451,3 +451,7 @@ Res0068 旧密码不正确
Res0069 两次输入的新密码不一致,请确认!
Res0069 两次输入的新密码不一致,请确认!
Res0070 新密码不能为空!
Res0070 新密码不能为空!
Res0071 密码修改成功!
Res0071 密码修改成功!
PEnterPwd 请输入密码
Cancel 取消
Ok 确定
Res0057 密码不正确请重新输入!
\ No newline at end of file
\ No newline at end of file
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论