모듈:Submit an edit request/config

위키백과, 우리 모두의 백과사전.

-- This module contains configuration data for [[Module:Submit an edit request]].

return {

--------------------------------------------------------------------------------
-- Messages
--------------------------------------------------------------------------------

-- The default display value for edit requests.
['default-display-value'] = '편집 요청 제출하기',

-- The template that stores the edit request preload text
['preload-template'] = '틀:편집 요청 제출하기/preload',

-- The section heading that is generated when a user clicks on an edit request
-- link. $1 is the protection level text, e.g. "Semi-protected" or
-- "Template-protected". $2 is the current date, in the format specified by the
-- "preload-title-date-format" message.
['preload-title-text'] = '$1 편집 요청 ($2)',

-- The date format for the automatically-generated section heading. The format
-- must be valid input for the #time parser function.
['preload-title-date-format'] = 'Y년 F j일',

-- What do do with the generated section header if another header with the same section already exists
-- $1 is the original section header. $2 is an automatically generated number, starting at 2 and increasing
-- by one until a unique header is found.
['preload-title-dedup-suffix'] = '$1 ($2)',

-- The names of pages (and their subpages) that make up the content of the main page for this wiki
['main-page-content'] = {
	['위키백과:오늘의 알찬 글'] = true,
	['틀:새로 들어온 소식'] = true,
	['틀:알고 계십니까'] = true,
	['위키백과:오늘의 역사'] = true
	--['Template:POTD protected'] = true,
	--['Wikipedia:Today\'s featured list'] = true
},

-- The page used to request changes to things on the Main Page.
['main-page-request-page'] = '위키백과:대문/오류', -- Wikipedia:Main Page/Errors

-- The page used to request edits to protected talk pages.
['protected-talk-page-request-page'] = '위키백과:문서 관리 요청/편집', -- Wikipedia:Requests for page protection/Edit

-- The names of the templates to be used as wrappers for the "link" and "button"
-- functions. These are passed as arguments to the "wrappers" option of
-- [[Module:Arguments]].
['link-wrapper-template'] = '틀:편집 요청 제출하기/link',
['button-wrapper-template'] = '틀:편집 요청 제출하기',

--------------------------------------------------------------------------------
-- Protection level config
--------------------------------------------------------------------------------

protectionLevels = {

--[[
-- These settings are for the different protection levels which the module can
-- output edit request links for.
--
-- editintro:
-- The template to use as the edit intro users see when they click on an edit
-- request link.
--
-- request-template:
-- The name of the edit request template for that protection level. Do not
-- include the "Template:" text.
--
-- protectionlevel:
-- The name of the protection level, used for formatting the automatically-
-- generated section headings.
--]]

-- Semi-protection
semi = {
	editintro = '틀:준보호 편집 요청/editintro',
	requestTemplate = '준보호 편집 요청',
	levelText = '준보호',
},

-- Extended-confirmed-protection
extended = {
	editintro = '틀:장기인증보호 편집 요청/editintro',
	requestTemplate = '장기인증보호 편집 요청',
	levelText = '장기인증보호',
},

-- Template-protection
template = {
	editintro = '틀:틀 보호 편집 요청/editintro',
	requestTemplate = '틀 보호 편집 요청',
	levelText = '틀 보호',
},

-- Full protection
full = {
	editintro = '틀:보호 편집 요청/editintro',
	requestTemplate = '보호 편집 요청',
	levelText = '보호',
},

-- Interface-protection
interface = {
	editintro = '틀:인터페이스 보호 편집 요청/editintro',
	requestTemplate = '인터페이스 보호 편집 요청',
	levelText = '인터페이스 보호',
},

}

}