|
|
第1行: |
第1行: |
| -- 用法: Item('原文', '轉換規則')
| | local z = {} |
| local Item = require('Module:CGroup/core').Item; | | local WikitextLC = require( 'Module:WikitextLC' ) |
|
| |
|
| return { | | function Tcode( args ) |
| | if args.T == nil or args.T == '' then |
| | return '' |
| | end |
| | local div = mw.html.create( 'div' ) |
| | :attr( 'class', 'noteTA-title' ) |
| | :attr( 'data-noteta-code', args.T ) |
| | :wikitext( WikitextLC.title( args.T ) ) |
| | if args.dt ~= nil and args.dt ~= '' then |
| | div:attr( 'data-noteta-desc', args.dt ) |
| | end |
| | return tostring( div ) |
| | end |
|
| |
|
| name = 'MediaWiki special', | | function group( name, frame ) |
| description = 'MediaWiki special',
| | if name == nil or name == '' then |
| content = {
| | return '' |
| | end |
| | local moduleTitle = mw.title.makeTitle( 'Module', 'CGroup/' .. name ) |
| | if moduleTitle and moduleTitle.exists then |
| | local data = mw.loadData( 'Module:CGroup/' .. name ) |
| | local pieces = {} |
| | if data.content then |
| | for i, v in ipairs( data.content ) do |
| | if v.type == 'item' and v.rule then |
| | table.insert( pieces, '-{H|' .. v.rule .. '}-' ) |
| | end |
| | end |
| | return tostring( mw.html.create( 'div' ) |
| | :attr( 'data-noteta-group-source', 'module' ) |
| | :attr( 'data-noteta-group', data.name or name ) |
| | :wikitext( table.concat( pieces ) ) ) |
| | end |
| | end |
| | local templateTitle = mw.title.makeTitle( 'Template', 'CGroup/' .. name ) |
| | if templateTitle and templateTitle.exists then |
| | return frame:expandTemplate{ title = templateTitle } |
| | end |
| | return tostring( mw.html.create( 'div' ) |
| | -- :attr( 'id', 'noteTA-group-' .. mw.uri.anchorEncode( name ) ) |
| | :attr( 'data-noteta-group-source', 'none' ) |
| | :attr( 'data-noteta-group', name ) ) |
| | end |
|
| |
|
| { type = 'text', text = [=[ | | function Gcode( args, frame ) |
| {{NoteTA/MediaWiki}}
| | local code = {} |
| 本转换组为MediaWiki及中文维基百科专有用语分版。
| | for i = 1, 30 do |
| | table.insert( code, group( args['G' .. i], frame ) ) |
| | end |
| | code = table.concat( code ) |
| | if code ~= '' then |
| | code = tostring( mw.html.create( 'div' ) |
| | :attr( 'class', 'noteTA-group' ) |
| | :wikitext( code ) ) |
| | if args.G31 ~= nil then |
| | code = code .. '[[Category:NoteTA模板参数使用数量超过限制的页面|G]]' |
| | end |
| | end |
| | return code |
| | end |
|
| |
|
| 由于早期[[Module:CGroup/MediaWiki]]皆要和[[Module:CGroup/IT]]一同使用,但由於某些IT詞彙會造成轉換錯誤,因此放棄兩個聯合使用。
| | function local_( i, code, desc ) |
| | if code == nil or code == '' then |
| | return '' |
| | end |
| | local div = mw.html.create( 'div' ) |
| | -- :attr( 'id', 'noteTA-local-' .. i ) |
| | :attr( 'data-noteta-code', code ) |
| | :wikitext( WikitextLC.hidden( code ) ) |
| | if desc ~= nil and desc ~= '' then |
| | div:attr( 'data-noteta-desc', desc ) |
| | end |
| | return tostring( div ) |
| | end |
|
| |
|
| 但這樣的結果是部分詞語失效不轉換,因此還要在IT複製一份過來。
| | function Lcode( args ) |
| | local code = {} |
| | for i = 1, 30 do |
| | table.insert( code, local_( i, args[i], args['d' .. i] ) ) |
| | end |
| | code = table.concat( code ) |
| | if code ~= '' then |
| | code = tostring( mw.html.create( 'div' ) |
| | :attr( 'class', 'noteTA-local' ) |
| | :wikitext( code ) ) |
| | if args[31] ~= nil then |
| | code = code .. '[[Category:NoteTA模板参数使用数量超过限制的页面|L]]' |
| | end |
| | end |
| | return code |
| | end |
|
| |
|
| 原先是一起放在[[Module:CGroup/MediaWiki]]中,但因避免舊有格式造成無意義轉換,因此分割開來。
| | function z.main( frame ) |
| | local args |
| | if frame == mw.getCurrentFrame() then |
| | -- Being called from {{noteTA}} |
| | args = frame:getParent().args |
| | else |
| | -- Being called from another module |
| | args = frame |
| | frame = mw.getCurrentFrame() |
| | end |
| | local Tc = Tcode( args ) |
| | local Gc = Gcode( args, frame ) |
| | local Lc = Lcode( args ) |
| | local code = Tc .. Gc .. Lc |
| | if code ~= '' then |
| | local hash = require( 'Module:Crc32lua' ).crc32( mw.dumpObject( args ) ) |
| | code = frame:extensionTag{ |
| | name = 'indicator', |
| | content = '[[File:Zh conversion icon m.svg|35px|本页使用了标题或全文手工转换|link=]]', |
| | args = { name = string.format( 'noteTA-%x', hash ) }, |
| | } .. tostring( mw.html.create( 'div' ) |
| | :attr( 'id', string.format( 'noteTA-%x', hash ) ) |
| | :attr( 'class', 'noteTA' ) |
| | :wikitext( code ) ) |
| | if mw.title.getCurrentTitle():inNamespace( 'Template' ) then |
| | code = code .. '[[Category:放置于模板的noteTA]]' |
| | end |
| | end |
| | return code |
| | end |
|
| |
|
| 本頁應參考[[Module:CGroup/IT]]、[[Module:CGroup/MediaWiki]]、[[Module:CGroup/specialpages]]的更新進行更新
| | return z |
| | |
| 本转换组應由[[Template:NoteTA/MediaWiki]]直接調用。
| |
| | |
| == 專有名稱 ==
| |
| ]=] },
| |
| Item('account', 'zh-cn:账号; zh-tw:帳號;'),
| |
| Item('account', '账户=>zh-cn:账号; 账户=>zh-tw:帳號;'),
| |
| Item('account', '賬戶=>zh-cn:账号; 賬戶=>zh-tw:帳號;'),
| |
| Item('account', '賬號=>zh-cn:账号; 賬號=>zh-tw:帳號;'),
| |
| Item('account', '帐户=>zh-cn:账号; 帐户=>zh-tw:帳號;'),
| |
| Item('account', '帳戶=>zh-cn:账号;'),
| |
| Item('account', '帐号=>zh-cn:账号; 帐号=>zh-tw:帳號;'),
| |
| Item('account creator', 'zh-cn:大量账号创建者; zh-tw:大量帳號建立者; zh-hk:大量帳號建立者;'),
| |
| Item('advanced', 'zh-cn:高级; zh-tw:進階;'),
| |
| Item('authority control', 'zh-cn:规范控制; zh-tw:權威控制;'),
| |
| Item('block', 'zh-cn:封禁; zh-tw:封鎖; zh-hk:封鎖;'),
| |
| Item('change', 'zh-cn:更改; zh-tw:變更;'),
| |
| Item('character', 'zh-cn:字符; zh-tw:字元;'),
| |
| Item('copyright', 'zh-cn:著作权; zh-tw:著作權; zh-hk:版權; zh-mo:著作權;'),
| |
| Item('copyright', '版权=>zh-tw:著作權; 版权=>zh-mo:著作權;'),
| |
| Item('copyright information', '版权信息=>zh-cn:著作权信息; 版权信息=>zh-sg:著作权信息; 版权信息=>zh-my:著作权信息; 版权信息=>zh-tw:著作權資訊; 版权信息=>zh-mo:著作權資訊;'),
| |
| Item('create', 'zh-cn:创建; zh-tw:建立;'),
| |
| Item('create', '創建=>zh-tw:建立; 創建=>zh-hk:建立; 創建=>zh-mo:建立;'),
| |
| Item('custom', 'zh-cn:自定义; zh-tw:自訂;'),
| |
| Item('custom', '自定義=>zh-hk:自訂; 自定義=>zh-tw:自訂;'),
| |
| Item('custom', '自定=>zh-hk:自訂; 自定=>zh-tw:自訂;'),
| |
| Item('default', 'zh-cn:默认; zh-tw:預設;'),
| |
| Item('default', '默認=>zh-tw:預設;'),
| |
| Item('extension', 'zh-hans: 扩展名; zh-hant: 副檔名;'),
| |
| Item('extension', '文件扩展名 => zh-tw: 副檔名; 文件扩展名 => zh-hk: 副檔名; 文件扩展名 => zh-mo: 副檔名; '),
| |
| Item('extension', 'zh-hans: 扩展; zh-hant: 擴充功能;'),
| |
| Item('extension', '扩充功能 => zh-cn: 扩展; 扩充功能 => zh-my: 扩展; 扩充功能 => zh-sg: 扩展;'),
| |
| Item('extension', '擴充套件 => zh-cn: 扩展; 擴充套件 => zh-my: 扩展; 擴充套件 => zh-sg: 扩展;'),
| |
| Item('extension', '擴展 => zh-tw: 擴充功能; 擴展 => zh-hk: 擴充功能; 擴展 => zh-mo: 擴充功能; '),
| |
| Item('file', 'zh-cn:文件; zh-tw:檔案;'),
| |
| Item('file', '档案=>zh-cn:文件; 档案=>zh-sg:文件; 档案=>zh-my:文件;'),
| |
| Item('file name', 'zh-cn:文件名; zh-tw:檔案名稱;'),
| |
| Item('flood', 'zh-hans:机器用户; zh-tw:機器使用者; zh-hk:機械用戶;'),
| |
| Item('footnote', 'zh-cn:脚注; zh-tw:註腳;'),
| |
| Item('Help:', 'zh-cn:帮助:; zh-tw:說明:;'),
| |
| Item('Help talk:', 'zh-cn:帮助讨论:; zh-tw:說明討論:;'),
| |
| Item('import', 'zh-cn:导入; zh-tw:匯入;'),
| |
| Item('import', '汇入=>zh-cn:导入; 汇入=>zh-sg:导入; 汇入=>zh-my:导入;'),
| |
| Item('import', '導入=>zh-tw:匯入; 導入=>zh-hk:匯入; 導入=>zh-mo:匯入;'),
| |
| Item('info (information)', 'zh-cn:信息; zh-tw:資訊;'),
| |
| Item('interface', 'zh-hans:界面; zh-hant:介面;'),
| |
| Item('interface administrators', 'zh-cn:界面管理员; zh-tw:介面管理員;'),
| |
| Item('IP block exemption', 'zh-cn:IP封禁豁免; zh-tw:IP封鎖豁免;'),
| |
| Item('IP block exemption', 'IP封禁例外=>zh-hans:IP封禁豁免; IP封禁例外=>zh-hant:IP封鎖豁免;'),
| |
| Item('IP block exemption', 'IP封鎖例外=>zh-hans:IP封禁豁免; IP封禁例外=>zh-hant:IP封鎖豁免;'),
| |
| Item('line breaker', 'zh-hans:换行符;zh-hant:換行字元;'),
| |
| Item('line breaker', 'zh:換行符;zh-hans:换行符;zh-hant:換行字元;'),
| |
| Item('line breaker', 'zh:换行字元;zh-hans:换行符;zh-hant:換行字元;'),
| |
| Item('link', 'zh-cn:链接; zh-tw:連結;'),
| |
| Item('link', '连结=>zh-cn:链接; 连结=>zh-sg:链接; 连结=>zh-my:链接;'),
| |
| Item('link', '鏈接=>zh-tw:連結; 鏈接=>zh-hk:連結; 鏈接=>zh-mo:連結;'),
| |
| Item('link', '鏈結=>zh-tw:連結; 鏈結=>zh-hk:連結; 鏈結=>zh-mo:連結;'),
| |
| Item('internal link', '内链=>zh-tw:內部連結; 内链=>zh-hk:內部連結; 内链=>zh-mo:內部連結;'),
| |
| Item('internal link', '內鏈=>zh-tw:內部連結; 內鏈=>zh-hk:內部連結; 內鏈=>zh-mo:內部連結;'),
| |
| Item('external link', '外链=>zh-tw:外部連結; 外链=>zh-hk:外部連結; 外链=>zh-mo:外部連結;'),
| |
| Item('external link', '外鏈=>zh-tw:外部連結; 外鏈=>zh-hk:外部連結; 外鏈=>zh-mo:外部連結;'),
| |
| Item('red link', '红链=>zh-tw:紅色連結; 红链=>zh-hk:紅色連結; 红链=>zh-mo:紅色連結;'),
| |
| Item('red link', '紅鏈=>zh-tw:紅色連結; 紅鏈=>zh-hk:紅色連結; 紅鏈=>zh-mo:紅色連結;'),
| |
| Item('green link', '绿链=>zh-tw:綠色連結; 绿链=>zh-hk:綠色連結; 绿链=>zh-mo:綠色連結;'),
| |
| Item('green link', '綠鏈=>zh-tw:綠色連結; 綠鏈=>zh-hk:綠色連結; 綠鏈=>zh-mo:綠色連結;'),
| |
| Item('blue link', '蓝链=>zh-tw:藍色連結; 蓝链=>zh-hk:藍色連結; 蓝链=>zh-mo:藍色連結;'),
| |
| Item('blue link', '藍鏈=>zh-tw:藍色連結; 藍鏈=>zh-hk:藍色連結; 藍鏈=>zh-mo:藍色連結;'),
| |
| Item('link (here)', 'zh-cn:链入; zh-tw:連入;'),
| |
| Item('link (here)', '鏈入=>zh-tw:連入;'),
| |
| Item('log details', 'zh-hans:日志详情; zh-hant:日誌明細;'),
| |
| Item('login', 'zh-hans:登录; zh-hant:登入;'),
| |
| Item('logout', 'zh-hant:登出; zh-hans:退出;'),
| |
| Item('logout', '退出登录 => zh-tw:登出; 退出登录 => zh-hk:登出; 退出登录 => zh-mo:登出; '), -- 你永遠想不到編者怎麼造成轉換錯誤
| |
| Item('module', 'zh-cn:模块; zh-tw:模組;'),
| |
| Item('module', '模组=>zh-cn:模块; 模组=>zh-sg:模块; 模组=>zh-my:模块;'),
| |
| Item('module documentation', 'zh-hans:模块文档; zh-hant:模組文件;'),
| |
| Item('namespace', 'zh-hans:命名空间; zh-hant:命名空間;'),
| |
| Item('namespace', '名字空间=>zh-cn:命名空间; 名字空间=>zh-hk:命名空間; 名字空间=>zh-mo:命名空間; 名字空间=>zh-tw:命名空間; 名字空间=>zh-sg:命名空间; 名字空间=>zh-my:命名空间;'),
| |
| Item('namespace', '名字空間=>zh-cn:命名空间; 名字空間=>zh-hk:命名空間; 名字空間=>zh-mo:命名空間; 名字空間=>zh-tw:命名空間; 名字空間=>zh-sg:命名空间; 名字空間=>zh-my:命名空间;'),
| |
| Item('parser functions', 'zh-cn:解析器函数; zh-hk:解析器函數; zh-tw:解析器函數;'),
| |
| Item('preferences', 'zh-cn:参数设置; zh-tw:偏好設定; zh-hk:參數設置;'),
| |
| Item('project', 'zh-hans:项目; zh-hant:專案; zh-tw:專案;'),
| |
| --[=[
| |
| 誤轉率過高,真的要用請用 项目 代替 項目 即可轉換
| |
| Item('project', '項目=>zh-tw:專案; 項目=>zh-hk:專案; 項目=>zh-mo:專案;'),
| |
| ]=]--
| |
| Item('project', '专案=>zh-cn:项目; 专案=>zh-sg:项目; 专案=>zh-my:项目; 专案=>zh-tw:專案;'),
| |
| Item('project', '計劃=>zh-cn:项目; 計劃=>zh-sg:项目; 計劃=>zh-my:项目; 計劃=>zh-tw:專案; 計劃=>zh-hk:專案; 計劃=>zh-mo:專案;'),
| |
| Item('project page', 'zh-hans:项目页面; zh-hant:專案頁面; zh-tw:專案頁面;'),
| |
| Item('project page', '項目頁面=>zh-tw:計畫頁面; 項目頁面=>zh-hk:專案頁面; 項目=>zh-mo:專案頁面;'),
| |
| Item('recent change', 'zh-hans:最近更改; zh-hant:近期變更;'),
| |
| Item('redirect', 'zh-cn:重定向; zh-tw:重新導向;'),
| |
| Item('redirect page', 'zh-cn:重定向页; zh-tw:重新導向頁面;'),
| |
| Item('redirect page', '重定向页面=>zh-tw:重新導向頁面; 重定向页面=>zh-hk:重新導向頁面; 重定向页面=>zh-mo:重新導向頁面;'),
| |
| Item('report', 'zh-cn:举报; zh-tw:檢舉;'),
| |
| Item('sample', 'zh-cn:示例; zh-tw:範例;'),
| |
| Item('skin', '皮肤=>zh-tw:外觀; 皮肤=>zh-hk:外觀; 皮肤=>zh-mo:外觀;'),
| |
| Item('source code', 'zh-hans:原始码; zh-hant:原始碼; zh-cn:源代码;'),
| |
| Item('source code', '源代碼=>zh-hk:原始碼; 源代碼=>zh-mo:原始碼; 源代碼=>zh-tw:原始碼; 源代碼=>zh-sg:原始码; 源代碼=>zh-my:原始码;'),
| |
| Item('source code', '源码=>zh-hk:原始碼; 源码=>zh-mo:原始碼; 源码=>zh-tw:原始碼; 源码=>zh-sg:原始码; 源码=>zh-my:原始码;'),
| |
| Item('source code', '源碼=>zh-hk:原始碼; 源碼=>zh-mo:原始碼; 源碼=>zh-tw:原始碼; 源碼=>zh-sg:原始码; 源碼=>zh-my:原始码;'),
| |
| Item('string', 'zh-cn:字符串; zh-tw:字串;'),
| |
| Item('template data', 'zh-hans:模板数据; zh-hant:模板資料; zh-tw:模板資料;'),
| |
| Item('template documentation', 'zh-hans:模板文档; zh-hant:模板文件;'),
| |
| Item('through', 'zh-cn:通过; zh-tw:透過;'),
| |
| Item('undo', 'zh-cn:撤销; zh-tw:復原;'),
| |
| Item('undo', '撤消=>zh-tw:復原; 撤消=>zh-hk:復原; 撤消=>zh-mo:復原;'),
| |
| Item('user', 'zh-hans:用户; zh-hant:使用者; zh-tw:使用者; zh-hk:用戶;'),
| |
| Item('user group', 'zh-cn:用户组; zh-tw:使用者群組; zh-hk:用戶組;'),
| |
| Item('user namespace', '用户名字空間=>zh-hk:用戶命名空間; 用户名字空間=>zh-mo:用戶命名空間; 用户名字空間=>zh-tw:使用者命名空間;'),
| |
| Item('user namespace', '用戶名字空间=>zh-hk:用戶命名空間; 用戶名字空间=>zh-mo:用戶命名空間; 用戶名字空间=>zh-tw:使用者命名空間;'),
| |
| Item('user namespace', '用戶名字空間=>zh-hk:用戶命名空間; 用戶名字空間=>zh-mo:用戶命名空間; 用戶名字空間=>zh-tw:使用者命名空間;'),
| |
| Item('user page', 'zh-cn:用户页; zh-tw:使用者頁面; zh-hk:用戶頁;'),
| |
| Item('user page', '用户頁=>zh-tw:使用者頁面;'),
| |
| Item('user page', '用戶页=>zh-tw:使用者頁面;'),
| |
| Item('user page', '用户页面=>zh-tw:使用者頁面;'),
| |
| Item('user page', '使用者頁=>zh-tw:使用者頁面;'),
| |
| Item('user page', '使用者頁面=>zh-tw:使用者頁面;'),
| |
| Item('user right', '用户权限 => zh-tw:使用者權限;用戶權限 => zh-tw:使用者權限;'),
| |
| Item('user right', '用户权 => zh-tw:使用者權限;用戶權 => zh-tw:使用者權限;'),
| |
| Item('userbox', 'zh-cn:用户框; zh-tw:使用者方塊; zh-hk:用戶框;'),
| |
| Item('username', 'zh-hans:用户名; zh-hant:用戶名; zh-tw:使用者名稱;'),
| |
| Item('username', '用户名称=>zh-cn:用户名; 用户名称=>zh-my:用户名; 用户名称=>zh-sg:用户名; 用户名称=>zh-tw:使用者名稱;'),
| |
| Item('username', '用戶名稱=>zh-cn:用户名; 用戶名稱=>zh-my:用户名; 用戶名稱=>zh-sg:用户名; 用戶名稱=>zh-tw:使用者名稱;'),
| |
| Item('view', 'zh-cn:查看; zh-tw:檢視;'),
| |
| Item('visual', 'zh-cn:可视化; zh-tw:視覺化;'), -- VisualEditor
| |
| Item('watchlist', 'zh-cn:监视列表; zh-tw:監視清單;'),
| |
| { type = 'text', text = [=[
| |
| === [[模块:CGroup/IT|資訊科技]]專有名詞 ===
| |
| ]=] },
| |
| Item('computer', '计算机=>zh-sg:电脑; 计算机=>zh-my:电脑; 计算机=>zh-tw:電腦; 计算机=>zh-hk:電腦; 计算机=>zh-mo:電腦;'),
| |
| Item('computer', '計算機=>zh-sg:电脑; 計算機=>zh-my:电脑;'),
| |
| Item('computer', '电子计算机=>zh-sg:电脑; 电子计算机=>zh-my:电脑; 电子计算机=>zh-tw:電腦; 电子计算机=>zh-hk:電腦; 电子计算机=>zh-mo:電腦;'),
| |
| Item('link', 'zh-cn:链接; zh-tw:連結;'),
| |
| Item('link', '连结=>zh-cn:链接; 连结=>zh-sg:链接; 连结=>zh-my:链接;'),
| |
| Item('link (here)', 'zh-cn:链入; zh-tw:連入;'),
| |
| Item('syntax highlighting', 'zh-cn:语法高亮; zh-tw:語法突顯;'),
| |
| Item('syntax highlighting', '語法凸顯=>zh-cn:语法高亮; 語法凸顯=>zh-sg:语法高亮; 語法凸顯=>zh-my:语法高亮;'),
| |
| Item('syntax highlighting', '语法高亮度=>zh-tw:語法突顯; 语法高亮度=>zh-hk:語法突顯; 语法高亮度=>zh-mo:語法突顯;'),
| |
| Item('syntax highlighting', '語法高亮度=>zh-tw:語法突顯; 語法高亮度=>zh-hk:語法突顯; 語法高亮度=>zh-mo:語法突顯;'),
| |
| Item('visual', 'zh-cn:可视化; zh-tw:視覺化;'),--VisualEditor
| |
| Item('record', '紀錄=>zh-cn:记录'),
| |
| { type = 'text', text = [=[
| |
| === [[模块:CGroup/Copyright|版權]]專有名詞 ===
| |
| ]=] },
| |
| Item('Attribution', 'zh-cn:署名; zh-hk:署名; zh-tw:姓名標示; zh-sg:署名;'),
| |
| Item('copyright', 'zh-hans:著作权; zh-hant:著作權; zh-hk:版權;'),
| |
| Item('copyright', '版权=>zh-cn:著作权; 版权=>zh-sg:著作权; 版权=>zh-my:著作权; 版权=>zh-tw:著作權; 版权=>zh-mo:著作權;'),
| |
| Item('copyright information', 'zh-hans:著作权信息;zh-hant:著作權資訊;zh-hk:版權資訊;'),-- information 由於會和[[:Wikipedia:互助客栈/消息]] 的「消息」衝突,故保留此轉換
| |
| Item('copyright information', '版权信息=>zh-cn:著作权信息; 版权信息=>zh-sg:著作权信息; 版权信息=>zh-my:著作权信息; 版权信息=>zh-tw:著作權資訊; 版权信息=>zh-mo:著作權資訊;'),
| |
| Item('Creative Commons', 'zh-cn:知识共享;zh-tw:創用CC;zh-hk:共享創意;'),
| |
| Item('Creative Commons', '知识共享CC => zh-tw: 創用CC; 共享創意CC => zh-tw: 創用CC;'), -- 例如 知识共享CC0许可协议
| |
| Item('Creative Commons Public License', 'zh-cn:知识共享公共许可协议;zh-tw:創用CC公眾授權條款;zh-hk:共享創意公眾特許條款;'),
| |
| Item('Creative Commons Public License', '創用 CC 公眾授權條款=>zh-cn:知识共享公共许可协议;創用 CC 公眾授權條款=>zh-tw:創用 CC 公眾授權條款;創用 CC 公眾授權條款=>zh-hk:共享創意公眾特許條款;創用 CC 公眾授權條款=>zh-mo:共享創意公眾特許條款;'),
| |
| Item('Creative Commons Public License', '創用CC 公眾授權條款=>zh-cn:知识共享公共许可协议;創用CC 公眾授權條款=>zh-tw:創用CC 公眾授權條款;創用CC 公眾授權條款=>zh-hk:共享創意公眾特許條款;創用CC 公眾授權條款=>zh-mo:共享創意公眾特許條款;'),
| |
| Item('Creative Commons Public License', '創作共用公眾授權條款=>zh-cn:知识共享公共许可协议;創用共用公眾授權條款=>zh-tw:創用CC 公眾授權條款;創用共用公眾授權條款=>zh-hk:共享創意公眾特許條款;創用共用公眾授權條款=>zh-mo:共享創意公眾特許條款;'),
| |
| Item('Free software licenses', 'zh-cn:自由软件许可协议;zh-tw:自由軟體授權;zh-hk:自由軟體授權;'),
| |
| Item('information', 'zh-cn:信息; zh-tw:資訊'),
| |
| Item(nil, '授權=>zh-cn:授权; 授權=>zh-hk:授權; 授權=>zh-tw:授權;'), -- 防止常用詞過度轉換
| |
| Item(nil, '授权=>zh-cn:授权; 授權=>zh-hk:授權; 授權=>zh-tw:授權;'), -- (不是所有「授權」都必定是特許、許可的意思)
| |
| Item('license terms', '特許=>zh-cn:許可; 特許=>zh-hk:特許; 特許=>zh-tw:授權;'),
| |
| Item('license terms', '許可=>zh-cn:许可; 許可=>zh-tw:授權; 許可=>zh-hk:特許;'),
| |
| Item('license terms', '许可=>zh-cn:许可; 许可=>zh-tw:授權; 许可=>zh-hk:特許;'),
| |
| Item('license', 'zh-cn:许可条款; zh-tw:授權條款; zh-hk:特許條款;'),
| |
| Item('license', '授权条款=>zh-cn:许可证;授权条款=>zh-hk:特許條款;授权条款=>zh-mo:特許條款;'),
| |
| Item('license', '许可证=>zh-tw:授權條款;许可证=>zh-hk:特許條款;许可证=>zh-mo:特許條款;'),
| |
| Item('license', '許可證=>zh-tw:授權條款;許可證=>zh-hk:特許條款;許可證=>zh-mo:特許條款;'),
| |
| Item('Localization', 'zh-cn:本地化; zh-tw:在地化; zh-hk:本地化; zh-sg:本地化;'),
| |
| Item('NoDerivs', 'zh-cn:禁止演绎; zh-hk:禁止衍生; zh-tw:禁止改作; zh-cn:禁止演绎;'),
| |
| Item('Release', 'zh-cn:发布; zh-tw:釋出;'),
| |
| Item('ShareAlike', 'zh-cn:相同方式共享; zh-hk:相同方式共享; zh-tw:相同方式分享; zh-sg:相同方式共享;'),
| |
| | |
| { type = 'text', text = [=[
| |
| == 特殊頁面 ==
| |
| === 维护报告 ===
| |
| ]=] },
| |
| Item('Maintenance reports', 'zh-hans:维护报告;zh-hant:維護報表'),--title
| |
| Item('UnconnectedPages', 'zh:未连接至项的页面;zh-hans:未连接至项的页面;zh-hant:頁面未連結至任何項目'),
| |
| Item('UnconnectedPages', '未链接页面=>zh:未连接至项的页面;未链接页面=>zh-hans:未连接至项的页面;未链接页面=>zh-hant:頁面未連結至任何項目'),
| |
| { type = 'text', text = [=[
| |
| === 页面列表 ===
| |
| ]=] },
| |
| Item('List of page', 'zh-hans:页面列表;zh-hant:頁面清單'),
| |
| Item('PrefixIndex', '所有带前缀的页面=>zh:前缀索引;所有带前缀的页面=>zh-hans:前缀索引;所有带前缀的页面=>zh-hant:前缀索引'),
| |
| Item('PrefixIndex', '按詞頭查詢頁面=>zh:前缀索引;按詞頭查詢頁面=>zh-hans:前缀索引;按詞頭查詢頁面=>zh-hant:前缀索引'),
| |
| Item('Search', 'zh-cn:搜索; zh-tw:搜尋;'),
| |
| { type = 'text', text = [=[
| |
| === 登录/创建账户 ===
| |
| ]=] },
| |
| Item('GlobalRenameRequest', 'zh:全域用户账户重命名申请;zh-hans:全域用户账户重命名申请;zh-hant:全域使用者帳號重新命名請求'),
| |
| Item('GlobalRenameRequest', '全域重命名申请=>zh:全域用户账户重命名申请;全域重命名申请=>zh-hans:全域用户账户重命名申请;全域重命名申请=>zh-hant:全域使用者帳號重新命名請求'),
| |
| Item('CreateAccount', 'zh:创建账户;zh-hans:创建账户;zh-hant:建立帳號'),
| |
| Item('UserLogin', 'zh:登录;zh-hans:登录;zh-hant:登入'),
| |
| Item('MergeAccount', 'zh:统一登录状态;zh-hans:统一登录状态;zh-hant:帳號整合狀態'),
| |
| Item('MergeAccount', '合并账户=>zh:统一登录状态;合并账户=>zh-hans:统一登录状态;合并账户=>zh-hant:帳號整合狀態'),
| |
| { type = 'text', text = [=[
| |
| === 用户与权限 ===
| |
| ]=] },
| |
| Item('Email', 'zh-hans:电子邮箱;zh-hant:電子郵件;'),
| |
| Item('EmailUser', 'zh-hans:电邮联系;zh-hant:電郵聯絡用戶;zh-tw:電郵聯絡使用者;'),
| |
| Item('Preferences', 'zh-hans:参数设置;zh-hant:偏好設定;'),
| |
| Item('Preferences', '偏好设定=>zh-hans:参数设置;偏好设定=>zh-cn:参数设置;偏好设定=>zh-my:参数设置;偏好设定=>zh-sg:参数设置;'),
| |
| Item('Preferences', '參數設置=>zh-hant:偏好設定;參數設置=>zh-tw:偏好設定;參數設置=>zh-hk:偏好設定;參數設置=>zh-mo:偏好設定;'),
| |
| Item('setting', 'zh-hans:设置;zh-hant:設定;'),
| |
| Item('setting', '设定=>zh-hans:设置;设定=>zh-cn:设置;设定=>zh-my:设置;设定=>zh-sg:设置;'),
| |
| Item('setting', '設置=>zh-hant:設定;設置=>zh-tw:設定;設置=>zh-hk:設定;設置=>zh-mo:設定;'),
| |
| { type = 'text', text = [=[
| |
| === 最近更改与日志 ===
| |
| ]=] },
| |
| Item('RecentChanges', 'zh-hans:最近更改;zh-hant:近期變更;'),
| |
| Item('RecentChanges', '近期变更=>zh-cn:最近更改;近期变更=>zh-my:最近更改;近期变更=>zh-sg:最近更改;'),
| |
| { type = 'text', text = [=[
| |
| === 頁面工具 ===
| |
| ]=] },
| |
| Item('WhatLinksHere', 'zh-hans:链入页面;zh-hant:連結至此的頁面;'),
| |
| Item('WhatLinksHere', '链接至此的页面=>zh-cn:链入页面;链接至此的页面=>zh-my:链入页面;链接至此的页面=>zh-sg:链入页面;'),
| |
| Item('WhatLinksHere', '连结至此的页面=>zh-cn:链入页面;连结至此的页面=>zh-my:链入页面;连结至此的页面=>zh-sg:链入页面;'),
| |
| Item('WhatLinksHere', '鏈入頁面=>zh-tw:連結至此的頁面;鏈入頁面=>zh-hk:連結至此的頁面;鏈入頁面=>zh-mo:連結至此的頁面;'),
| |
| Item('WhatLinksHere', '連入頁面=>zh-tw:連結至此的頁面;連入頁面=>zh-hk:連結至此的頁面;連入頁面=>zh-mo:連結至此的頁面;'),
| |
| { type = 'text', text = [=[
| |
| == 過度轉換 ==
| |
| ]=] },
| |
| Item('archives', 'zh-cn:档案馆; zh-tw:檔案館;'),-- 避免 档案馆->文件馆 的過度轉換
| |
| Item('archives', '档案馆=>zh-cn:档案馆; 档案馆=>zh-sg:档案馆; 档案馆=>zh-my:档案馆;'),-- 避免 档案馆->文件馆 的過度轉換
| |
| Item('log entry', 'zh-cn:日志项目; zh-tw:日誌項目;'), -- 避免 项目->計畫 的過度轉換
| |
| Item('through', 'zh-hant:通過;zh-tw:通過;zh-hk:通過;zh-mo:通過;zh-hans:通过;zh-cn:通过;zh-sg:通过;zh-my:通过;'),-- 避免 通過->透過 的過度轉換
| |
| Item('through', '透過=>zh-hant:透過;zh-hans:通过;'),-- 避免 通過->透過 的過度轉換
| |
| Item('username', '使用者名稱稱=>zh-tw:使用者名稱;'),-- 避免 使用者名稱->使用者名稱稱 的過度轉換
| |
| Item('user namespace', '使用者名稱命名空間 => zh-tw:使用者命名空間;'), -- 避免 用户名->使用者名稱 的過度轉換
| |
| Item('user right', '使用者權限限 => zh-tw:使用者權限;'),-- 避免 使用者權限->使用者權限限 的過度轉換
| |
| Item('user list', '用户名单 => zh-tw:使用者名單; 用戶名單 => zh-tw:使用者名單;'),-- 避免 用戶名單->使用者名稱單 的過度轉換
| |
| Item('user list', '用户名單 => zh-tw:使用者名單; 用户名單 => zh-tw:使用者名單;'),-- 避免 用戶名單->使用者名稱單 的過度轉換
| |
| Item('license terms', 'zh-hans:或许可以;zh-hant:或許可以'),-- 避免 或許可以->或特權以,或授權以
| |
| Item('license terms', 'zh-hans:也许可以;zh-hant:也許可以'),-- 避免 也許可以->也特權以,也授權以
| |
| { type = 'text', text = [=[
| |
| [[Category:公共转换组模块|{{SUBPAGENAME}}]]
| |
| ]=] },
| |
| },
| |
| }
| |