Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

修复关闭"实时竞拍倒计时"显示即将到期物品出错的问题 #8

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AH_Base/lang/zhcn.tab
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ STR_HELPER_ITEMNAME
STR_HELPER_ANYLEVEL �κ�Ʒ��
STR_HELPER_ALLSTATE ����״̬
STR_HELPER_NOBODY ���˳���
STR_HELPER_NEAR_DUE ��������
STR_HELPER_SECOND %s��
STR_HELPER_SETTLEMENT ������
STR_HELPER_UNITPRICE ����
Expand Down
1 change: 1 addition & 0 deletions AH_Base/lang/zhtw.tab
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ STR_HELPER_ITEMNAME 物品名稱
STR_HELPER_ANYLEVEL 任何品質
STR_HELPER_ALLSTATE 所有狀態
STR_HELPER_NOBODY 無人出價
STR_HELPER_NEAR_DUE 即將到期
STR_HELPER_SECOND %s秒
STR_HELPER_SETTLEMENT 結算中
STR_HELPER_UNITPRICE 單價
Expand Down
2 changes: 1 addition & 1 deletion AH_Helper/AH_Helper.lua
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ end

function AuctionPanel.FormatAuctionTime(nTime)
if not AH_Helper.bRealTime and nTime < 600 then
return g_tAuctionString.STR_AUCTION_NEAR_DUE
return L("STR_HELPER_NEAR_DUE")
end

local szText = ""
Expand Down