感謝您對維基百科的興趣與貢獻,希望您會喜歡這裡。除了歡迎辭以外,也請您了解以下重要文章:
有问题?請到互助客栈询问,或在我的对话页提出。别忘記:討論後要簽名,方式之一是留下4個波浪紋「 ~~~~ 」。 If you have any questions about the Chinese Wikipedia, please leave a message here. Thank you for visiting!
|
- 閱讀新手应该注意的七种常见错误、理解維基百科的立場與常見注意事項。
- 有任何编辑上的问题?请试试IRC即时讨论。
- 不知道有甚麼可写?条目请求、最多语言版本的待撰条目、缺少的传统百科全书条目和首页的缺失条目中列出了许多维基百科目前还没有的条目,欢迎您来撰寫!
- 希望您能享受共同编写百科的樂趣,成为一名充實的维基百科人。
您好,阁下今日对该系列模版做出的编辑导致其他页面如2018年双溪甘迪斯补选受到影响。我曾经依照英文维基的进行更新,并进行本地化,然而这些编辑全数遭您改回,包括颜色、格式等。若阁下坚持要使用自己的模板,可以新创一个模板,谢谢。 angys →讨留奖 2018年8月17日 (五) 05:05 (UTC)
2018年8月
歡迎来到維基百科。我們歡迎每一位用戶對維基百科作出建設性編輯,惟閣下最近編輯中最少有一項(如閣下在Template:Election box系列模板中的編輯)並不具建設性且已被回退或移除。請使用沙盒進行編輯測試,並參閱歡迎頁面以了解更多關於貢獻維基百科的事宜。祝編安。-- angys →讨留奖 2018年8月17日 (五) 05:19 (UTC)
請停止一切無建設性編輯(如閣下於Template:Election box candidate的編輯)。閣下的編輯已對維基百科構成破壞,亦已遭回退。如果您仍需要進行測試,請使用沙盒。请不要再次回退至之前的版本,过时参数是可以更新的-- angys →讨留奖 2018年8月18日 (六) 04:40 (UTC)
請立即停止一切擾亂性編輯。如果閣下繼續破壞維基百科(如閣下於Template:港島巴士簡單列表的編輯),閣下將會遭受封禁。敬請合作。--Cohaf(留言) 2018年8月21日 (二) 12:33 (UTC)
這是對閣下的最後警告!
如果閣下再次破壞維基百科(如閣下於Template:過海隧道巴士簡單列表的編輯),就會被即時禁止編輯!--Cohaf(留言) 2018年8月21日 (二) 12:40 (UTC)
最后警告!
这是对閣下的惟一一次警告!如果再有任何破壞維基百科的行为(如閣下於Template:九龍新界巴士簡單列表的編輯),閣下將会被立即封禁!--Cohaf(留言) 2018年8月21日 (二) 12:41 (UTC)
这是对您的最後警告。
如果您再次進行編輯測試(包括閣下曾經於模板:Election box candidate with party link的測試),閣下將被禁止編輯維基百科。恢复稳定版本,看看香港选区的条目,参数不能用,也不能显示候选人--Cohaf(留言) 2018年8月22日 (三) 12:23 (UTC)
求更改模板
function pp.status(Args) -- Declare status options -- ------------------------------------------------------------ -- NOTE: If you add to status_code, also add to status_called and status_letters!! -- Or functionality will be compromised -- ------------------------------------------------------------ local status_code, status_called = {} status_code = { A='晉級下一圈', C='冠軍', D='取消資格', E='確定淘汰出局',G='特邀嘉賓', H='東道主', O='附加賽勝者', P='升班', Q='獲得指定賽事參賽權', R='降班', S='衛冕球隊', T='晉級,但未定指定輪次', X='?', Y='?', Z='?'} status_called = { A=false, C=false, D=false, E=false, H=false, O=false, P=false, Q=false, R=false, S=false, T=false, X=false, Y=false, Z=false} local status_letters = 'ACDEHOPQRSTXYZ'
-- Status position (before or after read and default) local stat_pos_val = Args['status_pos'] or local status_position = 'after' -- Default location stat_pos_val = string.lower(stat_pos_val) if stat_pos_val=='before' then status_position = 'before' elseif stat_pos_val=='after' then status_position = 'after' end
-- Read in custom status options if Args['status_text_X'] then status_code.X = Args['status_text_X'] end if Args['status_text_Y'] then status_code.Y = Args['status_text_Y'] end if Args['status_text_Z'] then status_code.Z = Args['status_text_Z'] end
return {code=status_code, called=status_called, letters=status_letters, position=status_position} end
return pp
修改為
function pp.status(Args) -- Declare status options -- ------------------------------------------------------------ -- NOTE: If you add to status_code, also add to status_called and status_letters!! -- Or functionality will be compromised -- ------------------------------------------------------------ local status_code, status_called = {}, {} status_code = { A='晉級下一圈', C='冠軍', D='取消資格', E='確定淘汰出局',G='特邀嘉賓', H='東道主', O='附加賽勝者', P='升班', Q='獲得指定賽事參賽權', R='降班', S='衛冕球隊', T='晉級,但未定指定輪次'} local status_letters = (Args['status_order'] or ) .. 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-- Status position (before or after read and default) local stat_pos_val = Args['status_pos'] or local status_position = 'after' -- Default location stat_pos_val = string.lower(stat_pos_val) if stat_pos_val=='before' then status_position = 'before' elseif stat_pos_val=='after' then status_position = 'after' end -- Read in custom status options for l in mw.text.gsplit(status_letters, ) do status_called[l] = false status_code[l] = status_code[l] or '?' status_letters = mw.ustring.gsub(status_letters, '(' .. l ..'.-)' .. l, '%1')
if Args['status_text_' .. l] then status_code[l] = Args['status_text_' .. l] end end
return {code=status_code, called=status_called, letters=status_letters, position=status_position} end
return pp
或者
function pp.status(Args) -- Declare status options -- ------------------------------------------------------------ -- NOTE: If you add to status_code, also add to status_called and status_letters!! -- Or functionality will be compromised -- ------------------------------------------------------------ local status_code, status_called = {} status_code = { A='晉級下一圈', C='冠軍', D='取消資格', E='確定淘汰出局',G='特邀嘉賓', H='東道主', O='附加賽勝者', P='升班', Q='獲得指定賽事參賽權', R='降班', S='衛冕球隊', T='晉級,但未定指定輪次', X='?', Y='?', Z='?'} status_called = { A=false, C=false, D=false, E=false, H=false, O=false, P=false, Q=false, R=false, S=false, T=false, X=false, Y=false, Z=false} local status_letters = 'ACDEHOPQRSTXYZ'
-- Status position (before or after read and default) local stat_pos_val = Args['status_pos'] or local status_position = 'after' -- Default location stat_pos_val = string.lower(stat_pos_val) if stat_pos_val=='before' then status_position = 'before' elseif stat_pos_val=='after' then status_position = 'after' end
-- Read in custom status options
if Args['status_text_A'] then status_code.A = Args['status_text_A'] end if Args['status_text_B'] then status_code.B = Args['status_text_B'] end if Args['status_text_C'] then status_code.C = Args['status_text_C'] end if Args['status_text_D'] then status_code.D = Args['status_text_D'] end if Args['status_text_E'] then status_code.E = Args['status_text_E'] end if Args['status_text_F'] then status_code.F = Args['status_text_F'] end if Args['status_text_G'] then status_code.G = Args['status_text_G'] end if Args['status_text_H'] then status_code.H = Args['status_text_H'] end if Args['status_text_I'] then status_code.I = Args['status_text_I'] end if Args['status_text_J'] then status_code.J = Args['status_text_J'] end if Args['status_text_K'] then status_code.K = Args['status_text_K'] end if Args['status_text_L'] then status_code.L = Args['status_text_L'] end
if Args['status_text_M'] then status_code.M = Args['status_text_M'] end
if Args['status_text_N'] then status_code.N = Args['status_text_N'] end
if Args['status_text_O'] then status_code.O = Args['status_text_O'] end
if Args['status_text_P'] then status_code.P = Args['status_text_P'] end
if Args['status_text_Q'] then status_code.Q = Args['status_text_Q'] end
if Args['status_text_R'] then status_code.R = Args['status_text_R'] end
if Args['status_text_S'] then status_code.S = Args['status_text_S'] end
if Args['status_text_T'] then status_code.T = Args['status_text_T'] end
if Args['status_text_U'] then status_code.U = Args['status_text_U'] end
if Args['status_text_V'] then status_code.V = Args['status_text_V'] end
if Args['status_text_W'] then status_code.W = Args['status_text_W'] end
if Args['status_text_X'] then status_code.X = Args['status_text_X'] end if Args['status_text_Y'] then status_code.Y = Args['status_text_Y'] end if Args['status_text_Z'] then status_code.Z = Args['status_text_Z'] end
return {code=status_code, called=status_called, letters=status_letters, position=status_position} end
return pp
邀請您參與管理人員任免及仲裁委員會制度討論
您好!中文維基百科社群現正檢討管理人員任免制度,並籌劃仲裁委員會首屆委員選舉方案。歡迎參與相關討論,並踴躍提出意見。 |
- 註:此通告由MediaWiki message delivery(留言)於2024年9月21日 (六) 13:45 (UTC)寄送。若您未來長期或目前暫時不欲接收任何類似訊息,可考慮婉拒消息發送。