モジュールの解説[表示] [編集] [履歴] [キャッシュを破棄]

{{ }}

-- This module provides configuration data for [[Module:Protection banner]].  return {  -------------------------------------------------------------------------------- -- --                                BANNER DATA -- --------------------------------------------------------------------------------  --[[ -- Banner data consists of six fields: -- * text - the main protection text that appears at the top of protection --   banners. -- * explanation - the text that appears below the main protection text, used --   to explain the details of the protection. -- * tooltip - the tooltip text you see when you move the mouse over a small --   padlock icon. -- * link - the page that the small padlock icon links to. -- * alt - the alt text for the small padlock icon. This is also used as tooltip --   text for the large protection banners. -- * image - the padlock image used in both protection banners and small padlock --   icons. -- -- The module checks in three separate tables to find a value for each field. -- First it checks the banners table, which has values specific to the reason -- for the page being protected. Then the module checks the defaultBanners -- table, which has values specific to each protection level. Finally, the -- module checks the masterBanner table, which holds data for protection -- templates to use if no data has been found in the previous two tables. -- -- The values in the banner data can take parameters. These are specified -- using ${TEXTLIKETHIS} (a dollar sign preceding a parameter name -- enclosed in curly braces). -- --                          Available parameters: -- -- ${CURRENTVERSION} - a link to the page history or the move log, with the -- display message "current-version-edit-display" or -- "current-version-move-display". -- -- ${EDITREQUEST} - a link to create an edit request for the current page. -- -- ${EXPLANATIONBLURB} - an explanation blurb, e.g. "Please discuss any changes -- on the talk page; you may submit a request to ask an administrator to make -- an edit if it is minor or supported by consensus." -- -- ${IMAGELINK} - a link to set the image to, depending on the protection -- action and protection level. -- -- ${INTROBLURB} - the PROTECTIONBLURB parameter, plus the expiry if an expiry -- is set. E.g. "Editing of this page by new or unregistered users is currently  -- disabled until dd Month YYYY." -- -- ${INTROFRAGMENT} - the same as ${INTROBLURB}, but without final punctuation -- so that it can be used in run-on sentences. -- -- ${PAGETYPE} - the type of the page, e.g. "article" or "template". -- Defined in the cfg.pagetypes table. -- -- ${PROTECTIONBLURB} - a blurb explaining the protection level of the page, e.g. -- "Editing of this page by new or unregistered users is currently disabled" -- -- ${PROTECTIONDATE} - the protection date, if it has been supplied to the -- template. -- -- ${PROTECTIONLEVEL} - the protection level, e.g. "fully protected" or -- "semi-protected". -- -- ${PROTECTIONLOG} - a link to the protection log or the pending changes log, -- depending on the protection action. -- -- ${TALKPAGE} - a link to the talk page. If a section is specified, links -- straight to that talk page section. -- -- ${TOOLTIPBLURB} - uses the PAGETYPE, PROTECTIONTYPE and EXPIRY parameters to -- create a blurb like "This template is semi-protected", or "This article is -- move-protected until DD Month YYYY". -- -- ${VANDAL} - links for the specified username (or the root page name) -- using Module:Vandal-m. -- --                                 Functions -- -- For advanced users, it is possible to use Lua functions instead of strings -- in the banner config tables. Using functions gives flexibility that is not -- possible just by using parameters. Functions take two arguments, the -- protection object and the template arguments, and they must output a string. -- -- For example: -- -- text = function (protectionObj, args) --     if protectionObj.level == 'autoconfirmed' then --         return 'foo' --     else --         return 'bar' --     end -- end -- -- Some protection object properties and methods that may be useful: -- protectionObj.action - the protection action -- protectionObj.level - the protection level -- protectionObj.reason - the protection reason -- protectionObj.expiry - the expiry. Nil if unset, the string "indef" if set --     to indefinite, and the protection time in unix time if temporary. -- protectionObj.protectionDate - the protection date in unix time, or nil if --     unspecified. -- protectionObj.bannerConfig - the banner config found by the module. Beware --     of editing the config field used by the function, as it could create an --     infinite loop. -- protectionObj:isProtected - returns a boolean showing whether the page is --     protected. -- protectionObj:isTemporary - returns a boolean showing whether the expiry is --     temporary. -- protectionObj:isIncorrect - returns a boolean showing whether the protection --     template is incorrect. --]]  -- The master banner data, used if no values have been found in banners or -- defaultBanners. masterBanner = { 	text = '${INTROBLURB}', 	explanation = '${EXPLANATIONBLURB}', 	tooltip = '${TOOLTIPBLURB}', 	link = '${IMAGELINK}', 	alt = '${PROTECTIONLEVEL}されたページ' },  -- The default banner data. This holds banner data for different protection -- levels. -- *required* - this table needs edit, move, autoreview and upload subtables. defaultBanners = { 	edit = {}, 	move = {}, 	autoreview = { 		default = { 			alt = 'Page protected with pending changes', 			tooltip = 'All edits by unregistered and new users are subject to review prior to becoming visible to unregistered users', 			image = 'Pending-protection-shackle.svg' 		} 	}, 	upload = {} },  -- The banner data. This holds banner data for different protection reasons. -- In fact, the reasons specified in this table control which reasons are -- valid inputs to the first positional parameter. -- -- There is also a non-standard "description" field that can be used for items -- in this table. This is a description of the protection reason for use in the -- module documentation. -- -- *required* - this table needs edit, move, autoreview and upload subtables. banners = { 	edit = { 		--blp = { 		--	description = 'For pages protected to promote compliance with the' 		--		.. ' [[Wikipedia:Biographies of living persons' 		--		.. '|biographies of living persons]] policy', 		--	text = '${INTROFRAGMENT} to promote compliance with' 		--		.. ' [[Wikipedia:Biographies of living persons' 		--		.. "|Wikipedia's&nbsp;policy on&nbsp;the&nbsp;biographies" 		--		.. ' of&nbsp;living&nbsp;people]].', 		--	tooltip = '${TOOLTIPFRAGMENT} to promote compliance with the policy on' 		--		.. ' biographies of living persons', 		--}, 		dmca = { 			description = '[[w:デジタルミレニアム著作権法]]に基づく削除要求があったため、' 				.. '保護されたページ', 			explanation = function (protectionObj, args) 				local ret = 'この${PAGETYPE}の内容に関して、[[w:デジタルミレニアム著作権法]]' 					.. '(DMCA)に基づく権利所有者への通知があったため、' 					.. 'ウィキメディア財団は問題となった個所を削除した上で、' 					.. 'このページの編集を制限しました。' 				if args.notice then 					ret = ret .. '財団が受理した通知のコピーは ' 						.. args.notice .. ' にあります。' 				end 				ret = ret .. '異議申し立て方法など詳細な情報については' 					.. '[[w:Wikipedia:事務局行動]]および${TALKPAGE}をご覧ください。<br />' 					.. "'''編集制限が解除されるまで、" 					.. "このお知らせを除去しないでください。'''" 				return ret 			end, 			image = 'Office-protection-shackle-WMFlogo.svg', 		}, 		dispute = { 			description = '[[Wikivoyage:編集合戦|編集合戦]]により保護されたページ', 			text = '[[Wikivoyage:編集合戦|編集合戦]]が発生したため、${INTROBLURB}', 			explanation = "${CURRENTVERSION}の内容が'''適切とは限りません'''。" 				.. '詳しくは[[Wikivoyage:保護の方針|保護の方針]]および' 				.. '${PROTECTIONLOG}をご覧ください。' 				.. '問題となった個所について意見がある場合は、' 				.. '${TALKPAGE}で議論するよう心がけてください。' 				.. '[[Wikivoyage:合意形成|合意が形成]]され、保護を解除できる状態になった場合は' 				.. '[[Wikivoyage:保護依頼#解除|保護の解除を依頼]]してください。', 			tooltip = '編集合戦が発生したため、${TOOLTIPBLURB}', 		}, 		--ecp = { 		--	description = 'For articles in topic areas authorized by' 		--		.. ' [[Wikipedia:Arbitration Committee|ArbCom]] or' 		--		.. ' meets the criteria for community use', 		--	tooltip = 'This ${PAGETYPE} is extended-confirmed protected', 		--	alt = 'Extended-protected ${PAGETYPE}', 		--}, 		--mainpage = { 		--	description = 'For pages protected for being displayed on the [[Main Page]]', 		--	text = 'This file is currently' 		--		.. ' [[Wikipedia:This page is protected|protected]] from' 		--		.. ' editing because it is currently or will soon be displayed' 		--		.. ' on the [[Main Page]].', 		--	explanation = 'Images on the Main Page are protected due to their high' 		--		.. ' visibility. Please discuss any necessary changes on the ${TALKPAGE}.' 		--		.. '<br /><span style="font-size:90%;">' 		--		.. "'''Administrators:''' Once this image is definitely off the Main Page," 		--		.. ' please unprotect this file, or reduce to semi-protection,' 		--		.. ' as appropriate.</span>', 		--}, 		office = { 			description = '[[w:Wikipedia:事務局行動|事務局行動]]により保護されたページ', 			text = function (protectionObj, args) 				local ret = '現在この${PAGETYPE}は[[w:Wikipedia:事務局行動|' 					.. 'ウィキメディア財団事務局]]の監視下にあり、' 				if protectionObj.protectionDate then 					ret = ret .. '${PROTECTIONDATE}以降、' 				end 				return ret .. '保護されています。' 			end, 			explanation = "もしあなたがこのページを編集できたとしても、加筆・修正を行う前に" 				.. "${TALKPAGE}で議論するよう心がけてください。<br />" 				.. "'''ウィキメディア財団の許可があるまで、このページの保護を" 				.. "解除しないでください。'''", 			image = 'Office-protection-shackle-WMFlogo.svg', 		}, 		permanent = { 			description = '半永久的に保護されているページ', 			text = function (protectionObj, args) 				if protectionObj.level == 'sysop' then 					return 'この${PAGETYPE}は、半永久的に編集[[Wikivoyage:保護|保護]]されています。' 				elseif protectionObj.level == 'extendedconfirmed' then 					return 'この${PAGETYPE}は、[[Wikivoyage:利用者#拡張承認された利用者|' 					.. '拡張承認された利用者]]以外の編集を半永久的に[[Wikivoyage:保護|禁止]]しています。' 				else 					return 'この${PAGETYPE}は、[[Wikivoyage:利用者#新規利用者|新規利用者]]' 					.. 'および[[Wikivoyage:利用者#IP利用者|未登録利用者]]からの編集を' 					.. '半永久的に[[Wikivoyage:保護|禁止]]しています。' 				end 			end, 			explanation = function (protectionObj, args) 				if protectionObj.level == 'sysop' then 					return '詳しくは[[Wikivoyage:保護の方針#保護の期間|保護の方針]]および' 					.. '${PROTECTIONLOG}をご覧ください。' 					.. '変更が必要なときは${TALKPAGE}で議論し、[[Wikivoyage:合意形成|合意形成]]後に' 					.. '[[Wikivoyage:管理者伝言板#保護されているページの編集依頼|保護編集依頼]]を行ってください。' 				--Wikivoyage日本語版では拡張半保護が導入されていないためコメントアウト 				--elseif protectionObj.level == 'extendedconfirmed' then 					--return '詳しくは[[Wikivoyage:拡張半保護の方針#半永久的な拡張半保護|拡張半保護の方針]]および' 					--.. '${PROTECTIONLOG}をご覧ください。' 					--.. 'この${PAGETYPE}を編集することができない場合、${TALKPAGE}にて' 					--.. '<code class="nowrap">{{[[Template:拡張半保護編集依頼|拡張半保護編集依頼]]}}</code>' 					--.. 'を用いて[[Wikivoyage:拡張半保護の方針#拡張半保護されたページの編集|編集を依頼]]するか、' 					--.. '[[Wikivoyage:管理者伝言板#拡張承認の申請|拡張承認の申請]]をしてください。' 				else 					return '詳しくは[[Wikivoyage:保護の方針護|保護の方針]]および' 					.. '${PROTECTIONLOG}をご覧ください。' 					.. 'この${PAGETYPE}を編集することができない場合、${TALKPAGE}にて' 					.. '<code class="nowrap">{{[[Template:半保護編集依頼|半保護編集依頼]]}}</code>' 					.. 'を用いて[[Wikivoyage:保護の方針#保護期間中の修正|編集を依頼]]してください。' 				end 			end, 			tooltip = '半永久的に${PROTECTIONLEVEL}されている${PAGETYPE}', 			alt = '半永久的に${PROTECTIONLEVEL}されている${PAGETYPE}', 			image = function (protectionObj) 				if protectionObj.level == 'sysop' then 					return 'Edit Semi-permanent Protection.svg' 				elseif protectionObj.level == 'extendedconfirmed' then 					return 'Edit Semi-permanent Extended Semi-protection.svg' 				else 					return 'Edit Semi-permanent Semi-protection.svg' 				end 			end, 		}, 		reset = { 			description = '[[Wikipedia:事務局行動|事務局行動]]により、内容が' 				.. '縮小された上で保護されたページ',  			text = function (protectionObj, args) 				local ret = '現在この${PAGETYPE}は[[w:Wikipedia:事務局行動|' 					.. 'ウィキメディア財団事務局]]の監視下にあり、' 				if protectionObj.protectionDate then 					ret = ret .. '${PROTECTIONDATE}以降、' 				end 				return ret .. '保護されています。' 			end, 			explanation = 'この${PAGETYPE}には最小限の内容しかないため、' 				.. '[[Wikivoyage:中立的に書く|中立的な観点]]といった方針に' 				.. '適合する形で、全面的に改稿されることが望まれています。' 				.. "もしあなたがこのページを編集できたとしても、加筆・修正を行う前に" 				.. "${TALKPAGE}で議論するよう心がけてください。<br />" 				.. 'この${PAGETYPE}が保護される以前の版に書かれていた内容は' 				.. '復帰させないでください。' 				.. 'ノートページで議論を行う際も同様です。<br />' 				.. "'''ウィキメディア財団の許可があるまで、このページの保護を" 				.. "解除したり、このお知らせを除去しないでください。'''", 			image = 'Office-protection-shackle-WMFlogo.svg', 		}, 		--sock = { 		--	description = 'For pages protected due to' 		--		.. ' [[Wikipedia:Sock puppetry|sock puppetry]]', 		--	text = '${INTROFRAGMENT} to prevent [[Wikipedia:Sock puppetry|sock puppets]] of' 		--		.. ' [[Wikipedia:Blocking policy|blocked]] or' 		--		.. ' [[Wikipedia:Banning policy|banned users]]' 		--		.. ' from editing it.', 		--	tooltip = '${TOOLTIPFRAGMENT} to prevent sock puppets of blocked or banned users from' 		--		.. ' editing it', 		--}, 		template = { 			description = '[[Wikivoyage:影響が特に大きいテンプレート|' 				.. '影響が特に大きいテンプレート・モジュール]]', 			text = 'この[[Wikivoyage:影響が特に大きいテンプレート|' 				.. '影響が特に大きい${PAGETYPE}]]は、[[Wikivoyage:荒らし|荒らし]]を予防するために' 				.. '${PROTECTIONLEVEL}されています。', 			explanation = function (protectionObj, args) 				if protectionObj.level == 'sysop' then 					return '詳しくは[[Wikivoyage:保護の方針#保護の期間|保護の方針]]および' 					.. '${PROTECTIONLOG}をご覧ください。' 					.. '変更が必要なときは${TALKPAGE}で議論し、[[Wikivoyage:合意形成|合意形成]]後に' 					.. '[[Wikivoyage:管理者伝言板#保護ページ編集|保護編集依頼]]を行ってください。' 				--日本語版Wikivoyageでは拡張半保護は導入されていないのでコメントアウト 				--elseif protectionObj.level == 'extendedconfirmed' then 					--return '詳しくは[[Wikivoyage:拡張半保護の方針#半永久的な拡張半保護|拡張半保護の方針]]および' 					--.. '${PROTECTIONLOG}をご覧ください。' 					--.. 'この${PAGETYPE}を編集することができない場合、${TALKPAGE}にて' 					--.. '<code class="nowrap">{{[[Template:拡張半保護編集依頼|拡張半保護編集依頼]]}}</code>' 					--.. 'を用いて[[Wikivoyage:拡張半保護の方針#拡張半保護されたページの編集|編集を依頼]]するか、' 					--.. '[[Wikivoyage:管理者伝言板/拡張承認の申請|拡張承認の申請]]をしてください。' 				else 					return '詳しくは[[Wikivoyage:保護の方針#保護の期間|保護の方針]]および' 					.. '${PROTECTIONLOG}をご覧ください。' 					.. 'この${PAGETYPE}を編集することができない場合、${TALKPAGE}にて' 					.. '<code class="nowrap">{{[[Template:半保護編集依頼|半保護編集依頼]]}}</code>' 					.. 'を用いて[[Wikivoyage:保護の方針#保護期間中の修正|編集を依頼]]してください。' 				end 			end, 			tooltip = 'この影響が特に大きい${PAGETYPE}は、' 				.. '荒らしを予防するために${PROTECTIONLEVEL}されています。', 			alt = '半永久的に${PROTECTIONLEVEL}されている${PAGETYPE}', 			image = function (protectionObj) 				if protectionObj.level == 'sysop' then 					return 'Edit Semi-permanent Protection.svg' 				elseif protectionObj.level == 'extendedconfirmed' then 					return 'Edit Semi-permanent Extended Semi-protection.svg' 				else 					return 'Edit Semi-permanent Semi-protection.svg' 				end 			end, 		}, 		--usertalk = { 		--	description = 'For pages protected against disruptive edits by a' 		--		.. ' particular user', 		--	text = '${INTROFRAGMENT} to prevent ${VANDAL} from using it to make disruptive edits,' 		--		.. ' such as abusing the' 		--		.. ' &#123;&#123;[[Template:unblock|unblock]]&#125;&#125; template.', 		--	explanation = 'If you cannot edit this user talk page and you need to' 		--		.. ' make a change or leave a message, you can' 		--		.. ' [[Wikipedia:Requests for page protection' 		--		.. '#Current requests for edits to a protected page' 		--		.. '|request an edit]],' 		--		.. ' [[Wikipedia:Requests for page protection' 		--		.. '#Current requests for reduction in protection level' 		--		.. '|request unprotection]],' 		--		.. ' [[Special:Userlogin|log in]],' 		--		.. ' or [[Special:UserLogin/signup|create an account]].', 		--}, 		vandalism = { 			description = '[[Wikivoyage:荒らし|荒らし]]行為により保護されたページ', 			text = '度重なる[[Wikivoyage:荒らし|荒らし]]行為のため、${INTROBLURB}', 			tooltip = '度重なる荒らし行為のため、${TOOLTIPBLURB}' 		} 	}, 	move = { 		dispute = { 			description = '[[w:Wikipedia:編集合戦#移動合戦|移動合戦]]により保護されたページ', 			text = '[[w:Wikipedia:編集合戦#移動合戦|移動合戦]]が発生したため、${INTROFRAGMENT}', 			explanation = "${CURRENTVERSION}が'''適切とは限りません'''。" 				.. '詳しくは[[Wikivoyage:保護の方針|保護の方針]]および' 				.. '${PROTECTIONLOG}をご覧ください。' 				.. 'ページ名について意見がある場合は${TALKPAGE}で議論し、' 				.. '必要に応じて[[Wikivoyage:記事の改訂#改名]]に従い、' 				.. '[[Wikivoyage:記事の改訂/提案#改名提案|改名の提案]]をしてください。' 				.. '[[Wikivoyage:合意形成|合意が形成]]され、保護を解除できる状態になった場合は' 				.. '[[Wikivoyage:保護依頼#解除|保護の解除を依頼]]してください。', 			tooltip = '移動合戦が発生したため、${TOOLTIPBLURB}', 		}, 		vandalism = { 			description = '[[w:Wikipedia:荒らし#移動荒らし|移動荒らし]]行為により保護されたページ', 			text = '度重なる[[w:Wikipedia:荒らし#移動荒らし|移動荒らし]]行為のため、${INTROFRAGMENT}', 			tooltip = '度重なる移動荒らし行為のため、${TOOLTIPBLURB}' 		} 	}, 	autoreview = {}, 	upload = {} },  -------------------------------------------------------------------------------- -- --                            GENERAL DATA TABLES -- --------------------------------------------------------------------------------  -------------------------------------------------------------------------------- -- Protection blurbs --------------------------------------------------------------------------------  -- This table produces the protection blurbs available with the -- ${PROTECTIONBLURB} parameter. It is sorted by protection action and -- protection level, and is checked by the module in the following order: -- 1. page's protection action, page's protection level -- 2. page's protection action, default protection level -- 3. "edit" protection action, default protection level -- -- It is possible to use banner parameters inside this table. -- *required* - this table needs edit, move, autoreview and upload subtables. protectionBlurbs = { 	edit = { 		default = 'この${PAGETYPE}は編集[[Wikivoyage:保護|保護]]されています', 		autoconfirmed = 'この${PAGETYPE}は[[Wikivoyage:利用者#新規利用者|新規利用者]]' 			.. 'および[[Wikivoyage:利用者#IP利用者|未登録利用者]]からの編集を[[Wikivoyage:保護|禁止]]しています', 		--日本語版Wikivoyageには拡張半保護が導入されていないのでコメントアウト 		--extendedconfirmed = 'この${PAGETYPE}は[[Wikipedia:利用者#拡張承認された利用者|' 			--.. '拡張承認された利用者]]以外の編集を[[Wikipedia:保護|禁止]]しています', 	}, 	move = { 		default = 'この${PAGETYPE}は[[Help:ページの移動|移動]][[Wikipedia:保護|保護]]されています', 		--日本語版Wikivoyageには拡張半保護が導入されていないのでコメントアウト 		--extendedconfirmed = 'この${PAGETYPE}は[[Wikipedia:利用者#拡張承認された利用者|' 			--.. '拡張承認された利用者]]以外の[[Help:ページの移動|移動]]を[[Wikipedia:保護|禁止]]しています', 	}, 	autoreview = { 		default = 'All edits made to this ${PAGETYPE} by' 			.. ' [[Wikipedia:User access levels#New users|new]] or' 			.. ' [[Wikipedia:User access levels#Unregistered users|unregistered]]' 			.. ' users are currently' 			.. ' [[Wikipedia:Pending changes|subject to review]]' 	}, 	upload = { 		default = 'この${PAGETYPE}は[[Wikivoyage:ファイルのアップロード|アップロード]]' 			.. '[[Wikivoyage:保護|保護]]されています', 		--日本語版Wikivoyageには拡張半保護が導入されていないのでコメントアウト 		--extendedconfirmed = 'この${PAGETYPE}は[[Wikipedia:利用者#拡張承認された利用者|' 			--.. '拡張承認された利用者]]以外の[[Wikipedia:ファイルのアップロード|アップロード]]を' 			--.. '[[Wikipedia:保護|禁止]]しています', 	} },   -------------------------------------------------------------------------------- -- Explanation blurbs --------------------------------------------------------------------------------  -- This table produces the explanation blurbs available with the -- ${EXPLANATIONBLURB} parameter. It is sorted by protection action, -- protection level, and whether the page is a talk page or not. If the page is -- a talk page it will have a talk key of "talk"; otherwise it will have a talk -- key of "subject". The table is checked in the following order: -- 1. page's protection action, page's protection level, page's talk key -- 2. page's protection action, page's protection level, default talk key -- 3. page's protection action, default protection level, page's talk key -- 4. page's protection action, default protection level, default talk key -- -- It is possible to use banner parameters inside this table. -- *required* - this table needs edit, move, autoreview and upload subtables. explanationBlurbs = { 	edit = { 		autoconfirmed = { 			subject = '詳しくは[[Wikivoyage:保護の方針|保護の方針]]および' 				.. '${PROTECTIONLOG}をご覧ください。この${PAGETYPE}を編集することができない場合、${TALKPAGE}' 				.. 'にて<code class="nowrap">{{[[Template:半保護編集依頼|半保護編集依頼]]}}</code>' 				.. 'を用いて[[Wikivoyage:保護の方針#保護期間中の修正|編集を依頼]]してください。' 				.. '半保護を解除しても問題ない状態になった場合、' 				.. '[[Wikivoyage:保護依頼#解除|半保護の解除を依頼]]してください。', 			default = '詳しくは[[Wikivoyage:保護の方針|保護の方針]]および' 				.. '${PROTECTIONLOG}をご覧ください。' 				.. '半保護を解除しても問題ない状態になった場合、' 				.. '[[Wikivoyagee:保護依頼#解除|半保護の解除を依頼]]してください。', 		}, 		--日本語版wikivoyageには拡張半保護が実装されていないためコメントアウト 		--extendedconfirmed = { 			--subject = '詳しくは[[Wikipedia:拡張半保護の方針|拡張半保護の方針]]および' 				--.. '${PROTECTIONLOG}をご覧ください。この${PAGETYPE}を編集することができない場合、${TALKPAGE}' 				--.. 'にて<code class="nowrap">{{[[Template:拡張半保護編集依頼|拡張半保護編集依頼]]}}</code>' 				--.. 'を用いて[[Wikipedia:拡張半保護の方針#拡張半保護されたページの編集|編集を依頼]]するか、' 				--.. '[[Wikipedia:管理者伝言板/拡張承認の申請|拡張承認の申請]]を' 				--.. 'してください。拡張半保護を解除しても問題ない状態になった場合、' 				--.. '[[Wikipedia:保護解除依頼|拡張半保護の解除を依頼]]してください。', 			--default = '詳しくは[[Wikipedia:拡張半保護の方針|拡張半保護の方針]]および' 				--.. '${PROTECTIONLOG}をご覧ください。' 				--.. '拡張半保護を解除しても問題ない状態になった場合、' 				--.. '[[Wikipedia:保護解除依頼|拡張半保護の解除を依頼]]してください。' 		--}, 		default = { 			subject = '詳しくは[[Wikivoyage:保護の方針|保護の方針]]および' 				.. '${PROTECTIONLOG}をご覧ください。' 				.. '変更が必要なときは${TALKPAGE}で議論し、[[Wikivoyage:合意形成|合意形成]]後に' 				.. '[[Wikivoyage:管理者伝言板#保護されているページの編集依頼|保護編集依頼]]を行ってください。' 				.. '合意が形成されるなど、保護を解除できる状態になった場合は' 				.. '[[Wikivoyage:保護依頼#解除|保護の解除を依頼]]してください。', 			default = '詳しくは[[Wikivoyage:保護の方針|保護の方針]]および' 				.. '${PROTECTIONLOG}をご覧ください。' 				.. '合意が形成されるなど、保護を解除できる状態になった場合は' 				.. '[[Wikivoyage:保護依頼#解除|保護の解除を依頼]]してください。' 		} 	}, 	move = { 		--日本語版Wikivoyageには移動拡張半保護は実装されていないのでコメントアウト 		--extendedconfirmed = { 			--subject = '詳しくは[[Wikipedia:拡張半保護の方針|拡張半保護の方針]]および' 				--.. '${PROTECTIONLOG}をご覧ください。' 				--.. 'ページを移動できない場合は、${TALKPAGE}にて' 				--.. '<code class="nowrap">{{[[Template:拡張半保護編集依頼|拡張半保護編集依頼]]}}</code>' 				--.. 'を用いて[[Wikipedia:拡張半保護の方針#拡張半保護されたページの編集|移動を依頼]]するか、' 				--.. '[[Wikipedia:管理者伝言板/拡張承認の申請|拡張承認の申請]]を' 				--.. 'してください。移動拡張半保護を解除しても問題ない状態になった場合、' 				--.. '[[Wikipedia:保護解除依頼|移動拡張半保護の解除を依頼]]してください。', 			--default = '詳しくは[[Wikipedia:拡張半保護の方針|拡張半保護の方針]]および' 				--.. '${PROTECTIONLOG}をご覧ください。' 				--.. '移動拡張半保護を解除しても問題ない状態になった場合、' 				--.. '[[Wikipedia:保護解除依頼|移動拡張半保護の解除を依頼]]してください。' 		--}, 		default = { 			subject = '詳しくは[[Wikivoyage:保護の方針|保護の方針]]および' 				.. '${PROTECTIONLOG}をご覧ください。' 				.. '移動が必要なときは${TALKPAGE}で議論し、' 				.. '[[Wikivoyage:合意形成|合意形成]]後に' 				.. '[[Wikivoyage:管理者伝言板#その他の依頼|管理者伝言板]]で依頼してください。' 				.. '合意が形成されるなど、移動保護を解除できる状態になった場合は' 				.. '[[Wikivoyage:保護依頼#解除|移動保護の解除を依頼]]してください。', 			default = '詳しくは[[Wikivoyage:保護の方針|保護の方針]]および' 				.. '${PROTECTIONLOG}をご覧ください。' 				.. '合意が形成されるなど、移動保護を解除できる状態になった場合は' 				.. '[[Wikivoyage:保護依頼#解除|移動保護の解除を依頼]]してください。' 		} 	}, 	--autoreview = { 		--default = { 			--default = 'See the [[Wikipedia:Protection policy|' 				--.. 'protection policy]] and ${PROTECTIONLOG} for more details.' 				--.. ' Edits to this ${PAGETYPE} by new and unregistered users' 				--.. ' will not be visible to readers until they are accepted by' 				--.. ' a reviewer. To avoid the need for your edits to be' 				--.. ' reviewed, you may' 				--.. ' [[Wikipedia:Requests for page protection' 				--.. '#Current requests for reduction in protection level' 				--.. '|request unprotection]], [[Special:Userlogin|log in]], or' 				--.. ' [[Special:UserLogin/signup|create an account]].' 		--}, 	--}, 	upload = { 		default = { 			default = '詳しくは${PROTECTIONLOG}をご覧ください。' 				.. '編集保護されていない場合は、' 				.. 'ファイルの説明を編集することができます。' 				.. 'アップロード保護を解除しても問題ない状態になった場合、' 				.. '[[Wikivoyage:保護依頼#解除|アップロード保護の解除を依頼]]してください。' 		} 	} },  -------------------------------------------------------------------------------- -- Protection levels --------------------------------------------------------------------------------  -- This table provides the data for the ${PROTECTIONLEVEL} parameter, which -- produces a short label for different protection levels. It is sorted by -- protection action and protection level, and is checked in the following -- order: -- 1. page's protection action, page's protection level -- 2. page's protection action, default protection level -- 3. "edit" protection action, default protection level -- -- It is possible to use banner parameters inside this table. -- *required* - this table needs edit, move, autoreview and upload subtables. --jawyに実装されていないものはコメントアウト protectionLevels = { 	edit = { 		default = '保護', 		--templateeditor = 'template-protected', 		--extendedconfirmed = '拡張半保護', 		autoconfirmed = '半保護', 	}, 	move = { 		default = '移動保護', 		--extendedconfirmed = '移動拡張半保護' 	}, 	--autoreview = { 	--}, 	upload = { 		default = 'アップロード保護', 		--extendedconfirmed = 'アップロード拡張半保護' 	} },  -------------------------------------------------------------------------------- -- Images --------------------------------------------------------------------------------  -- This table lists different padlock images for each protection action and -- protection level. It is used if an image is not specified in any of the -- banner data tables, and if the page does not satisfy the conditions for using -- the ['image-filename-indef'] image. It is checked in the following order: -- 1. page's protection action, page's protection level -- 2. page's protection action, default protection level --保護の表示ガジェットに合わせる images = { 	edit = { 		default = 'Padlock.svg', 		--templateeditor = 'Template-protection-shackle.svg', 		--extendedconfirmed = 'Edit Extended Semi-protection.svg', 		autoconfirmed = 'Edit Semi-protection.svg' 	}, 	move = { 		default = 'Move-protection-shackle.svg', 		--extendedconfirmed = 'Move Extended Semi-protection.svg', 	}, 	autoreview = { 		default = 'Pending-protection-shackle.svg' 	}, 	upload = { 		default = 'Upload Protection.svg', 		extendedconfirmed = 'Upload Extended Semi-protection.svg', 	} },  -- Pages with a reason specified in this table will show the special "indef" -- padlock, defined in the 'image-filename-indef' message, if no expiry is set. indefImageReasons = { 	template = true },  -------------------------------------------------------------------------------- -- Image links --------------------------------------------------------------------------------  -- This table provides the data for the ${IMAGELINK} parameter, which gets -- the image link for small padlock icons based on the page's protection action -- and protection level. It is checked in the following order: -- 1. page's protection action, page's protection level -- 2. page's protection action, default protection level -- 3. "edit" protection action, default protection level -- -- It is possible to use banner parameters inside this table. -- *required* - this table needs edit, move, autoreview and upload subtables. imageLinks = { 	edit = { 		default = 'Wikipedia:保護の方針', 		templateeditor = 'Wikipedia:Protection policy#template', 		extendedconfirmed = 'Wikipedia:拡張半保護の方針', 		autoconfirmed = 'Wikipedia:半保護の方針' 	}, 	move = { 		default = 'Wikipedia:保護の方針', 		extendedconfirmed = 'Wikipedia:拡張半保護の方針' 	}, 	autoreview = { 		default = 'Wikipedia:Protection policy#pending' 	}, 	upload = { 		default = '' 	} },  -------------------------------------------------------------------------------- -- Padlock indicator names --------------------------------------------------------------------------------  -- This table provides the "name" attribute for the <indicator> extension tag -- with which small padlock icons are generated. All indicator tags on a page -- are displayed in alphabetical order based on this attribute, and with -- indicator tags with duplicate names, the last tag on the page wins. -- The attribute is chosen based on the protection action; table keys must be a -- protection action name or the string "default". padlockIndicatorNames = { 	move = 'pp-move', 	autoreview = 'pp-autoreview', 	upload = 'pp-upload', 	default = 'pp-default' },  -------------------------------------------------------------------------------- -- Protection categories --------------------------------------------------------------------------------  --[[ -- The protection categories are stored in the protectionCategories table. -- Keys to this table are made up of the following strings: -- -- 1. the expiry date -- 2. the namespace -- 3. the protection reason (e.g. "dispute" or "vandalism") -- 4. the protection level (e.g. "sysop" or "autoconfirmed") -- 5. the action (e.g. "edit" or "move") --  -- When the module looks up a category in the table, first it will will check to -- see a key exists that corresponds to all five parameters. For example, a -- user page semi-protected from vandalism for two weeks would have the key -- "temp-user-vandalism-autoconfirmed-edit". If no match is found, the module -- changes the first part of the key to "all" and checks the table again. It -- keeps checking increasingly generic key combinations until it finds the -- field, or until it reaches the key "all-all-all-all-all". -- -- The module uses a binary matrix to determine the order in which to search. -- This is best demonstrated by a table. In this table, the "0" values -- represent "all", and the "1" values represent the original data (e.g. -- "indef" or "file" or "vandalism"). -- --        expiry    namespace reason   level     action -- order -- 1      1         1         1        1         1 -- 2      0         1         1        1         1 -- 3      1         0         1        1         1 -- 4      0         0         1        1         1 -- 5      1         1         0        1         1 -- 6      0         1         0        1         1 -- 7      1         0         0        1         1 -- 8      0         0         0        1         1 -- 9      1         1         1        0         1 -- 10     0         1         1        0         1 -- 11     1         0         1        0         1 -- 12     0         0         1        0         1 -- 13     1         1         0        0         1 -- 14     0         1         0        0         1 -- 15     1         0         0        0         1 -- 16     0         0         0        0         1 -- 17     1         1         1        1         0 -- 18     0         1         1        1         0 -- 19     1         0         1        1         0 -- 20     0         0         1        1         0 -- 21     1         1         0        1         0 -- 22     0         1         0        1         0 -- 23     1         0         0        1         0 -- 24     0         0         0        1         0 -- 25     1         1         1        0         0 -- 26     0         1         1        0         0 -- 27     1         0         1        0         0 -- 28     0         0         1        0         0 -- 29     1         1         0        0         0 -- 30     0         1         0        0         0 -- 31     1         0         0        0         0 -- 32     0         0         0        0         0 -- -- In this scheme the action has the highest priority, as it is the last -- to change, and the expiry has the least priority, as it changes the most. -- The priorities of the expiry, the protection level and the action are -- fixed, but the priorities of the reason and the namespace can be swapped -- through the use of the cfg.bannerDataNamespaceHasPriority table. --]]  -- If the reason specified to the template is listed in this table, -- namespace data will take priority over reason data in the protectionCategories -- table. reasonsWithNamespacePriority = { 	vandalism = true, },  -- The string to use as a namespace key for the protectionCategories table for each -- namespace number. categoryNamespaceKeys = { 	[  2] = 'user', 	[  3] = 'user', 	[  4] = 'project', 	[  6] = 'file', 	[  8] = 'mediawiki', 	[ 10] = 'template', 	[ 12] = 'project', 	[ 14] = 'category', 	[100] = 'portal', 	[828] = 'module', },  protectionCategories = { 	['all|all|all|all|all']                  = '編集保護中のページ', 	--['all|all|office|all|all']               = 'Wikipedia Office-protected pages', 	--['all|all|reset|all|all']                = 'Wikipedia Office-protected pages', 	--['all|all|dmca|all|all']                 = 'Wikipedia Office-protected pages', 	['all|all|permanent|all|all']            = '保護運用中のページ', 	--['all|all|mainpage|all|all']             = 'Wikipedia fully-protected main page files', 	--['all|all|ecp|extendedconfirmed|all']    = '編集拡張半保護中のページ', 	['all|all|all|extendedconfirmed|edit']    = '編集拡張半保護中のページ', 	['all|all|all|autoconfirmed|edit']       = '編集半保護中のページ', 	--['indef|all|all|autoconfirmed|edit']     = 'Wikipedia indefinitely semi-protected pages', 	--['all|all|blp|autoconfirmed|edit']       = 'Wikipedia indefinitely semi-protected biographies of living people', 	--['temp|all|blp|autoconfirmed|edit']      = 'Wikipedia temporarily semi-protected biographies of living people', 	--['all|all|dispute|autoconfirmed|edit']   = 'Wikipedia pages semi-protected due to dispute', 	--['all|all|sock|autoconfirmed|edit']      = 'Wikipedia pages semi-protected from banned users', 	--['all|all|vandalism|autoconfirmed|edit'] = 'Wikipedia pages semi-protected against vandalism', 	--['all|category|all|autoconfirmed|edit']  = 'Wikipedia semi-protected categories', 	--['all|file|all|autoconfirmed|edit']      = 'Wikipedia semi-protected files', 	--['all|portal|all|autoconfirmed|edit']    = 'Wikipedia semi-protected portals', 	--['all|project|all|autoconfirmed|edit']   = 'Wikipedia semi-protected project pages', 	--['all|talk|all|autoconfirmed|edit']      = 'Wikipedia semi-protected talk pages', 	['all|template|all|sysop|edit']          = '編集保護中のテンプレート', 	['all|template|all|autoconfirmed|edit']  = '編集半保護中のテンプレート', 	--['all|user|all|autoconfirmed|edit']      = 'Wikipedia semi-protected user and user talk pages', 	--['all|template|all|templateeditor|edit'] = 'Wikipedia template-protected templates', 	--['all|all|blp|sysop|edit']               = 'Wikipedia indefinitely protected biographies of living people', 	--['temp|all|blp|sysop|edit']              = 'Wikipedia temporarily protected biographies of living people', 	--['all|all|dispute|sysop|edit']           = 'Wikipedia pages protected due to dispute', 	--['all|all|sock|sysop|edit']              = 'Wikipedia pages protected from banned users', 	--['all|all|vandalism|sysop|edit']         = 'Wikipedia pages protected against vandalism', 	--['all|category|all|sysop|edit']          = 'Wikipedia fully protected categories', 	--['all|file|all|sysop|edit']              = 'Wikipedia fully-protected files', 	--['all|project|all|sysop|edit']           = 'Wikipedia fully-protected project pages', 	--['all|talk|all|sysop|edit']              = 'Wikipedia fully-protected talk pages', 	--['all|user|all|sysop|edit']              = 'Wikipedia fully protected user and user talk pages', 	['all|module|all|sysop|edit']            = '編集保護中のモジュール', 	--['all|module|all|templateeditor|edit']   = 'Wikipedia template-protected modules', 	['all|module|all|autoconfirmed|edit']    = '編集半保護中のモジュール', 	['all|all|all|sysop|move']               = '移動保護中のページ', 	['all|all|all|extendedconfirmed|move']   = '移動拡張半保護中のページ', 	--['indef|all|all|sysop|move']             = 'Wikipedia indefinitely move-protected pages', 	--['all|all|dispute|sysop|move']           = 'Wikipedia pages move-protected due to dispute', 	--['all|all|vandalism|sysop|move']         = 'Wikipedia pages move-protected due to vandalism', 	--['all|portal|all|sysop|move']            = 'Wikipedia move-protected portals', 	--['all|portal|all|sysop|move']            = 'Wikipedia move-protected portals', 	--['all|project|all|sysop|move']           = 'Wikipedia move-protected project pages', 	--['all|talk|all|sysop|move']              = 'Wikipedia move-protected talk pages', 	['all|template|all|sysop|move']          = '移動保護中のテンプレート', 	--['all|user|all|sysop|move']              = 'Wikipedia move-protected user and user talk pages', 	--['all|all|all|autoconfirmed|autoreview'] = 'Wikipedia pending changes protected pages', 	['all|file|all|all|upload']              = 'アップロード保護中のファイル', 	['all|file|all|extendedconfirmed|upload']= 'アップロード拡張半保護中のファイル', },  -------------------------------------------------------------------------------- -- Expiry category config --------------------------------------------------------------------------------  -- This table configures the expiry category behaviour for each protection -- action. -- * If set to true, setting that action will always categorise the page if --   an expiry parameter is not set. -- * If set to false, setting that action will never categorise the page. -- * If set to nil, the module will categorise the page if: --   1) an expiry parameter is not set, and --   2) a reason is provided, and --   3) the specified reason is not blacklisted in the reasonsWithoutExpiryCheck --      table.  expiryCheckActions = { 	edit = nil, 	move = false, 	autoreview = true, 	upload = false },  reasonsWithoutExpiryCheck = { 	blp = true, 	template = true, },  -------------------------------------------------------------------------------- -- Pagetypes --------------------------------------------------------------------------------  -- This table produces the page types available with the ${PAGETYPE} parameter. -- Keys are namespace numbers, or the string "default" for the default value. pagetypes = { 	-- [0] = '記事', 	[6] = 'ファイル', 	[10] = 'テンプレート', 	[14] = 'カテゴリ', 	[828] = 'モジュール', 	[1] = 'ノートページ', 	[3] = '会話ページ', 	[5] = 'ノートページ', 	[7] = 'ノートページ', 	[9] = 'ノートページ', 	[11] = 'ノートページ', 	[13] = 'ノートページ', 	[15] = 'ノートページ', 	[101] = 'ノートページ', 	[103] = 'ノートページ', 	[829] = 'ノートページ', 	[2301] = 'ノートページ', 	[2303] = 'ノートページ', 	default = 'ページ' },  -------------------------------------------------------------------------------- -- Strings marking indefinite protection --------------------------------------------------------------------------------  -- This table contains values passed to the expiry parameter that mean the page -- is protected indefinitely. indefStrings = { 	['indef'] = true, 	['indefinite'] = true, 	['indefinitely'] = true, 	['infinite'] = true, },  -------------------------------------------------------------------------------- -- Group hierarchy --------------------------------------------------------------------------------  -- This table maps each group to all groups that have a superset of the original -- group's page editing permissions. hierarchy = { 	sysop = {}, 	eliminator = {'sysop'}, 	reviewer = {'sysop'}, 	filemover = {'sysop'}, 	templateeditor = {'sysop'}, 	extendedconfirmed = {'sysop'}, 	autoconfirmed = {'eliminator', 'reviewer', 'filemover', 'templateeditor', 'extendedconfirmed'}, 	user = {'autoconfirmed'}, 	['*'] = {'user'} },  -------------------------------------------------------------------------------- -- Wrapper templates and their default arguments --------------------------------------------------------------------------------  -- This table contains wrapper templates used with the module, and their -- default arguments. Templates specified in this table should contain the -- following invocation, and no other template content: -- -- {{#invoke:Protection banner|main}} -- -- If other content is desired, it can be added between -- <noinclude>...</noinclude> tags. -- -- When a user calls one of these wrapper templates, they will use the -- default arguments automatically. However, users can override any of the -- arguments. wrappers = { 	['Template:Pp']                         = {}, 	['Template:Pp-extended']                = {'ecp'}, 	['Template:Pp-blp']                     = {'blp'}, 	-- we don't need Template:Pp-create 	['Template:Pp-dispute']                 = {'dispute'}, 	['Template:Pp-main-page']               = {'mainpage'}, 	['Template:Pp-move']                    = {action = 'move'}, 	['Template:Pp-move-dispute']            = {'dispute', action = 'move'}, 	-- we don't need Template:Pp-move-indef 	['Template:Pp-move-vandalism']          = {'vandalism', action = 'move'}, 	['Template:Pp-office']                  = {'office'}, 	['Template:Pp-office-dmca']             = {'dmca'}, 	['Template:Pp-pc']                      = {action = 'autoreview', small = true}, 	['Template:Pp-pc1']                     = {action = 'autoreview', small = true}, 	['Template:保護運用']                   = {'permanent', small = true}, 	['Template:Pp-reset']                   = {'reset'}, 	['Template:Pp-semi-indef']              = {small = true}, 	['Template:Pp-sock']                    = {'sock'}, 	['Template:Pp-template']                = {'template', small = true}, 	['Template:Pp-upload']                  = {action = 'upload'}, 	['Template:Pp-usertalk']                = {'usertalk'}, 	['Template:Pp-vandalism']               = {'vandalism'}, },  -------------------------------------------------------------------------------- --  --                                 MESSAGES --  --------------------------------------------------------------------------------  msg = {  -------------------------------------------------------------------------------- -- Intro blurb and intro fragment --------------------------------------------------------------------------------  -- These messages specify what is produced by the ${INTROBLURB} and -- ${INTROFRAGMENT} parameters. If the protection is temporary they use the -- intro-blurb-expiry or intro-fragment-expiry, and if not they use -- intro-blurb-noexpiry or intro-fragment-noexpiry. -- It is possible to use banner parameters in these messages. ['intro-blurb-expiry'] = '${PROTECTIONBLURB}(${EXPIRY}まで)。', ['intro-blurb-noexpiry'] = '${PROTECTIONBLURB}。', ['intro-fragment-expiry'] = '${PROTECTIONBLURB}(${EXPIRY}まで)。', ['intro-fragment-noexpiry'] = '${PROTECTIONBLURB}。',  -------------------------------------------------------------------------------- -- Tooltip blurb --------------------------------------------------------------------------------  -- These messages specify what is produced by the ${TOOLTIPBLURB} parameter. -- If the protection is temporary the tooltip-blurb-expiry message is used, and -- if not the tooltip-blurb-noexpiry message is used. -- It is possible to use banner parameters in these messages. ['tooltip-blurb-expiry'] = 'この${PAGETYPE}は${EXPIRY}まで${PROTECTIONLEVEL}されています。', ['tooltip-blurb-noexpiry'] = 'この${PAGETYPE}は${PROTECTIONLEVEL}されています。', ['tooltip-fragment-expiry'] = 'この${PAGETYPE}は${EXPIRY}まで${PROTECTIONLEVEL}されており、', ['tooltip-fragment-noexpiry'] = 'この${PAGETYPE}は${PROTECTIONLEVEL}されており、',  -------------------------------------------------------------------------------- -- Special explanation blurb --------------------------------------------------------------------------------  -- An explanation blurb for pages that cannot be unprotected, e.g. for pages -- in the MediaWiki namespace. -- It is possible to use banner parameters in this message. ['explanation-blurb-nounprotect'] = 'See the [[Wikipedia:Protection policy|' 	.. 'protection policy]] and ${PROTECTIONLOG} for more details.' 	.. ' Please discuss any changes on the ${TALKPAGE}; you' 	.. ' may ${EDITREQUEST} to ask an' 	.. ' [[Wikipedia:Administrators|administrator]] to make an edit if it' 	.. ' is [[Help:Minor edit#When to mark an edit as a minor edit' 	.. '|uncontroversial]] or supported by [[Wikipedia:Consensus' 	.. '|consensus]].',  -------------------------------------------------------------------------------- -- Protection log display values --------------------------------------------------------------------------------  -- These messages determine the display values for the protection log link -- or the pending changes log link produced by the ${PROTECTIONLOG} parameter. -- It is possible to use banner parameters in these messages. ['protection-log-display'] = '保護記録', ['pc-log-display'] = 'pending changes log',  -------------------------------------------------------------------------------- -- Current version display values --------------------------------------------------------------------------------  -- These messages determine the display values for the page history link -- or the move log link produced by the ${CURRENTVERSION} parameter. -- It is possible to use banner parameters in these messages. ['current-version-move-display'] = '現在のページ名', ['current-version-edit-display'] = '現行版',  -------------------------------------------------------------------------------- -- Talk page --------------------------------------------------------------------------------  -- This message determines the display value of the talk page link produced -- with the ${TALKPAGE} parameter. -- It is possible to use banner parameters in this message. ['talk-page-link-display'] = 'ノートページ',  -------------------------------------------------------------------------------- -- Edit requests --------------------------------------------------------------------------------  -- This message determines the display value of the edit request link produced -- with the ${EDITREQUEST} parameter. -- It is possible to use banner parameters in this message. ['edit-request-display'] = 'submit an edit request',  -------------------------------------------------------------------------------- -- Expiry date format --------------------------------------------------------------------------------  -- This is the format for the blurb expiry date. It should be valid input for -- the first parameter of the #time parser function. ['expiry-date-format'] = 'Y年Fj日" ("D") "H:i" ("e")"',  -------------------------------------------------------------------------------- -- Tracking categories --------------------------------------------------------------------------------  -- These messages determine which tracking categories the module outputs. ['tracking-category-incorrect'] = '不適切な保護テンプレートのあるページ', ['tracking-category-mismatch'] = '保護理由と保護レベルが合致していないページ',	-- 日本語版独自 ['tracking-category-template'] = 'Wikipedia template-protected pages other than templates and modules',  -------------------------------------------------------------------------------- -- Images --------------------------------------------------------------------------------  -- These are images that are not defined by their protection action and protection level. ['image-filename-indef'] = 'Edit Protection.svg', ['image-filename-default'] = 'Transparent.gif',  -------------------------------------------------------------------------------- -- End messages -------------------------------------------------------------------------------- }  -------------------------------------------------------------------------------- -- End configuration -------------------------------------------------------------------------------- }