Skip to content

Commit

Permalink
Showing 3 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .Framework/lang/zhcn.jx3dat
Original file line number Diff line number Diff line change
@@ -99,6 +99,8 @@ data = {
["unable to append handle item from string."] = "���ַ���׷���������ʧ�ܡ�",
['Font %d'] = '���� %d',

['author\'s weibo'] = '���� @һ��լ',

-- MY_CheckUpdate.lua
['new version found.'] = '�����°汾��',
['new version found, would you want to download immediately?'] = '�����°汾���Ƿ�����ǰ�����أ�',
2 changes: 2 additions & 0 deletions .Framework/lang/zhtw.jx3dat
Original file line number Diff line number Diff line change
@@ -99,6 +99,8 @@ data = {
["unable to append handle item from string."] = "從字符串追加容器組件失敗。",
['Font %d'] = '字體 %d',

['author\'s weibo'] = '作者 @一名宅',

-- MY_CheckUpdate.lua
['new version found.'] = '發現新版本!',
['new version found, would you want to download immediately?'] = '發現新版本!是否立即前往下載?',
8 changes: 8 additions & 0 deletions .Framework/src/MY.lua
Original file line number Diff line number Diff line change
@@ -216,6 +216,14 @@ _MY.Init = function()
else
_MY.frame:Show()
end

-- 显示作者信息
MY.UI(MY.GetFrame()):children("#Window_Tabs"):append("Text_Weibo", "Text"):item("#Text_Weibo")
:pos(10, 450):size(100, 30):color(255,255,0):alpha(100):text(_L['author\'s weibo'])
:hover(function(bIn) MY.UI(this):alpha((bIn and 255) or 100) end)
:click(function()
MY.UI.OpenInternetExplorer("http://weibo.com/zymah")
end)
end

--[[

0 comments on commit 1550697

Please sign in to comment.