모듈:UserLinks/config
보이기
모듈 설명문서[만들기]
이 모듈에 대한 설명문서를 생성할 수 있습니다. 연습장 (생성 | 복제) 및 시험장 (생성) 문서에서 이 모듈을 실험할 수 있습니다. 분류는 /설명문서 하위 문서에 넣어주세요. 이 모듈에 딸린 문서. |
--------------------------------------------------------------------------------
-- UserLinks configuration --
-- This module provides configuration and localisation messages for --
-- [[Module:UserLinks]]. See the comments in the code below for explanations --
-- of what each message does. --
--------------------------------------------------------------------------------
local cfg = {} -- Don't edit this line.
--------------------------------------------------------------------------------
-- Display values --
-- These messages are the display values for the user links. These are the --
-- most visible messages in the module. They should be short, but --
-- descriptive. Spaces are automatically escaped with , so there is no --
-- need to add any &nsbp; values here. --
--------------------------------------------------------------------------------
-- The user talk page.
cfg['display-talk'] = '토론'
-- The user's contributions.
cfg['display-contributions'] = '기여'
-- The user's edit count, using the edit count tool on WMF Labs.
cfg['display-count'] = '횟수'
-- Log of the user's page moves.
cfg['display-moves'] = '문서 이동'
-- All the user's logged actions.
cfg['display-logs'] = '기록'
-- The user's block log.
cfg['display-blocklog'] = '차단 기록'
-- Blocks that the user has performed.
cfg['display-blocks'] = '차단한 내역'
-- Link to the interface where the user can be blocked.
cfg['display-blockuser'] = '사용자 차단'
-- CentralAuth, the global account manager for the user.
cfg['display-centralauth'] = '통합 계정'
-- The user's deleted contributions.
cfg['display-deletedcontributions'] = '삭제된 기여'
-- Likn to email the user.
cfg['display-email'] = '이메일'
-- Analysis of the user's edit summaries, using the tool on WMF Labs.
cfg['display-editsummaries'] = '편집 요약'
-- Deletions that the user has performed.
cfg['display-deletions'] = '삭제'
-- The user's entry on [[Special:ListUsers]].
cfg['display-listuser'] = '사용자 목록'
-- A display of the user's global contributions, using the sulutil: interwiki
-- prefix.
cfg['display-sul'] = '글로벌 기여'
-- All logs of actions performed on the user or their user page.
cfg['display-targetlogs'] = '대상 기록'
-- Log of times the user has triggered the AbuseFilter (also known as the
-- edit filter).
cfg['display-abuselog'] = '필터 기록'
-- Page protections that the user has performed.
cfg['display-protections'] = '보호'
-- Log of rights changes that the user has performed.
cfg['display-rights'] = '권한'
-- Log of username changes that the user has performed.
cfg['display-renames'] = '이름 변경'
-- Link to a list of the user's requests for adminship.
cfg['display-rfa'] = '관리자 선거'
-- Data about the user from the MediaWiki Web API.
cfg['display-api'] = 'api'
-- List of the user's local file uploads.
cfg['display-uploads'] = '올리기'
--------------------------------------------------------------------------------
-- Page names --
-- Page names used in formatting some of the user links. --
--------------------------------------------------------------------------------
-- The base page for a request for adminship link. This assumes that the link
-- is of the format [[Base page/username]]. If your wiki uses a different
-- format, consider adding a new link at [[Module:UserLinks/extra]], or you can
-- leave a message at [[w:en:Template talk:User-multi]] to ask the module
-- developers how best to deal with it.
cfg['page-rfa'] = '위키문헌:관리자 선거'
--------------------------------------------------------------------------------
-- Error messages --
-- The following are error messages that may occur when the module is run. --
-- These are the more common error messages that are localisable; other, --
-- rarer error messages may be raised from other modules or directly from --
-- Lua. The messages ending with "section" are the section names on a help --
-- page that give advice to users who encounter the error. The help page is --
-- defined in the 'error-config-message-help' message. --
--------------------------------------------------------------------------------
-- The module didn't detect a username from the "user" or "User" parameters.
-- This could be because no username was specified, or because the user used a
-- positional parameter and their username contains an equals sign,
-- e.g. {{user|John=Smith}}, rather than {{user|1=John=Smith}}.
cfg['error-nousername'] = '사용자 이름을 찾지 못했습니다'
cfg['error-nousername-section'] = ''
-- The input to the "project" or "Project" arguments wasn't a valid interwiki
-- prefix or a valid language code. $1 is the code that was input to the module.
cfg['error-invalidproject'] = '올바른 프로젝트 또는 언어 코드가 아닙니다: "$1"'
cfg['error-invalidproject-section'] = ''
-- The input to the "lang" or "Lang" arguments wasn't a valid interwiki
-- prefix or a valid language code. $1 is the code that was input to the module.
cfg['error-invalidlanguage'] = '올바른 언어 코드가 아닙니다: "$1"'
cfg['error-invalidlanguage-section'] = ''
-- The user didn't specify any link codes. This is only an error when using the
-- "single" function to return a single link; the "main" function includes a
-- user page link by default.
cfg['error-nolinkcode'] = '링크 코드가 지정되지 않았습니다'
cfg['error-nolinkcode-section'] = ''
-- The link code passed to the module was malformed. This means it was either
-- not a string value or it was the blank string.
cfg['error-malformedlinkcode'] = '잘못된 링크 코드가 감지되었습니다.'
cfg['error-malformedlinkcode-section'] = ''
-- No link function exists for the code specified, so the module cannot make
-- the link. $1 is the code that was passed to the module.
cfg['error-invalidlinkcode'] = '올바른 링크 코드가 아닙니다: "$1"'
cfg['error-invalidlinkcode-section'] = ''
-- The snippets table was accessed, but there was no value for the key it was
-- accessed with. This is not usually visible by end users; it is probably a
-- mistake in one of the link functions in [[Module:UserLinks/extra]]. $1 is the
-- key that was passed to the module.
cfg['error-nosnippet'] = '해당 키에 대한 정보가 없습니다: "$1"'
cfg['error-nosnippet-section'] = ''
--------------------------------------------------------------------------------
-- Error configuration --
-- Configuration for the display of the error messages. --
--------------------------------------------------------------------------------
-- The error message used when a section link is available. $1 is the error
-- message, and $2 is the name of the section.
cfg['error-config-message-help'] = '사용자 링크 오류:'
.. ' $1.'
-- The error message used when ano section link is available. $1 is the error
-- message.
cfg['error-config-message-nohelp'] = '사용자 링크 오류:'
.. ' $1.'
-- The name of the error category. Pages are put in this category if any errors
-- are encountered.
cfg['error-config-category'] = '사용자 링크 끼워넣기 오류'
--------------------------------------------------------------------------------
-- Snippet defaults --
-- Some of the snippets require default values when the user doesn't specify --
-- "project" or "lang" arguments. Those default values are stored here. --
--------------------------------------------------------------------------------
-- The short project interwiki prefix.
cfg['snippet-project-default'] = 'w'
-- The long project interwiki prefix.
cfg['snippet-projectlong-default'] = 'wikipedia'
-- The MediaWiki language code for the wiki.
cfg['snippet-lang-default'] = 'ko'
--------------------------------------------------------------------------------
-- Link table headers --
-- The headers used in the table of links used on documentation pages. --
--------------------------------------------------------------------------------
-- The link code.
cfg['linktable-codeheader'] = '코드'
-- The link preview.
cfg['linktable-previewheader'] = '미리보기'
--------------------------------------------------------------------------------
-- End configuration --
--------------------------------------------------------------------------------
return cfg -- Don't edit this line.