|
|
| 1. satır: |
1. satır: |
| -- This module provides configuration data for [[Module:Protection banner]]. | | -- Module:Protection |
| | -- Sanarşiv uyarlaması |
| | -- Yapı: Wikipedia Module:Protection ile aynıdır |
|
| |
|
| return {
| | local p = {} |
|
| |
|
| --------------------------------------------------------------------------------
| | local getArgs = require('Module:Arguments').getArgs |
| --
| | local yesno = require('Module:Yesno') |
| -- BANNER DATA
| |
| --
| |
| --------------------------------------------------------------------------------
| |
|
| |
|
| --[[
| | local lang = mw.language.getContentLanguage() |
| -- 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.
| |
| --
| |
| -- ${EXPIRY} - the protection expiry date in the format DD Month YYYY. If
| |
| -- protection is indefinite or is not set, this is the blank string.
| |
| --
| |
| -- ${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
| | local imageLinks = { |
| -- defaultBanners.
| |
| masterBanner = {
| |
| text = '${INTROBLURB}',
| |
| explanation = '${EXPLANATIONBLURB}',
| |
| tooltip = '${TOOLTIPBLURB}',
| |
| link = '${IMAGELINK}',
| |
| alt = 'Page ${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 = {
| |
| autoconfirmed = {
| |
| alt = 'Page protected with pending changes level 1',
| |
| tooltip = 'All edits by unregistered and new users are subject to review',
| |
| image = 'Yarı-koruma.svg'
| |
| },
| |
| default = {
| |
| alt = 'Page protected with pending changes level 2',
| |
| tooltip = 'All edits by users who are not reviewers or administrators are'
| |
| .. ' subject to review',
| |
| image = 'Padlock-orange.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 = '[[Sanarşiv:Yaşayan insanların biyografileri|'
| |
| .. 'Yaşayan insanların biyografileri]] ihlallerinin önüne geçilmesi'
| |
| .. ' adına ${INTROFRAGMENT}',
| |
| tooltip = 'Yaşayan insanların biyografileri politikasının ihlallerinin'
| |
| .. ' önüne geçilmesi adına ${TOOLTIPFRAGMENT}',
| |
| },
| |
| dmca = {
| |
| description = 'For pages protected by the Wikimedia Foundation'
| |
| .. ' due to [[Digital Millennium Copyright Act]] takedown requests',
| |
| explanation = function (protectionObj, args)
| |
| local ret = 'Pursuant to a rights owner notice under the Digital'
| |
| .. ' Millennium Copyright Act (DMCA) regarding some content'
| |
| .. ' in this article, the Wikimedia Foundation acted under'
| |
| .. ' applicable law and took down and restricted the content'
| |
| .. ' in question.'
| |
| if args.notice then
| |
| ret = ret .. ' A copy of the received notice can be found here: '
| |
| .. args.notice .. '.'
| |
| end
| |
| ret = ret .. ' For more information, including websites discussing'
| |
| .. ' how to file a counter-notice, please see'
| |
| .. " [[Wikipedia:Office actions]] and the article's ${TALKPAGE}."
| |
| .. "'''Do not remove this template from the article until the"
| |
| .. " restrictions are withdrawn'''."
| |
| return ret
| |
| end,
| |
| image = 'Vakıf-koruması.svg',
| |
| },
| |
| dispute = {
| |
| description = 'For pages protected due to editing disputes',
| |
| text = function (protectionObj, args)
| |
| -- Find the value of "disputes".
| |
| local display = 'anlaşmazlık'
| |
| local disputes
| |
| if args.section then
| |
| disputes = string.format(
| |
| '[[%s:%s#%s|%s]]',
| |
| mw.site.namespaces[protectionObj.title.namespace].talk.name,
| |
| protectionObj.title.text,
| |
| args.section,
| |
| display
| |
| )
| |
| else
| |
| disputes = display
| |
| end
| |
| | |
| -- Make the blurb, depending on the expiry.
| |
| local msg
| |
| if type(protectionObj.expiry) == 'number' then
| |
| msg = '${INTROFRAGMENT} Koruma, içerik anlaşmazlığı çözülene kadar sürebilir.'
| |
| else
| |
| msg = '${INTROFRAGMENT} Koruma, içerik anlaşmazlıkları çözülene dek sürecektir.'
| |
| end
| |
| return string.format(msg, disputes)
| |
| end,
| |
| explanation = "Bu koruma ${CURRENTVERSION} onaylandığı anlamına '''gelmez'''."
| |
| .. ' ${EXPLANATIONBLURB}',
| |
| tooltip = '${TOOLTIPFRAGMENT} içerik anlaşmazlıkları nedeniyle',
| |
| },
| |
| ecp = {
| |
| description = 'For articles in topic areas authorized by'
| |
| .. ' [[Wikipedia:Arbitration Committee|ArbCom]] or'
| |
| .. ' meets the criteria for community use',
| |
| tooltip = 'Bu ${PAGETYPE} ${PROTECTIONLEVEL}'
| |
| .. ' under extended confirmed editing restrictions',
| |
| 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 = 'For pages protected by the Wikimedia Foundation',
| |
| text = function (protectionObj, args)
| |
| local ret = 'This ${PAGETYPE} is currently under the'
| |
| .. ' scrutiny of the'
| |
| .. ' [[Wikipedia:Office actions|Wikimedia Foundation Office]]'
| |
| .. ' and is protected.'
| |
| if protectionObj.protectionDate then
| |
| ret = ret .. ' It has been protected since ${PROTECTIONDATE}.'
| |
| end
| |
| return ret
| |
| end,
| |
| explanation = "If you can edit this page, please discuss all changes and"
| |
| .. " additions on the ${TALKPAGE} first. '''Do not remove protection from this"
| |
| .. " page unless you are authorized by the Wikimedia Foundation to do"
| |
| .. " so.'''",
| |
| image = 'Vakıf-koruması.svg',
| |
| },
| |
| reset = {
| |
| description = 'For pages protected by the Wikimedia Foundation and'
| |
| .. ' "reset" to a bare-bones version',
| |
| text = 'This ${PAGETYPE} is currently under the'
| |
| .. ' scrutiny of the'
| |
| .. ' [[Wikipedia:Office actions|Wikimedia Foundation Office]]'
| |
| .. ' and is protected.',
| |
| explanation = function (protectionObj, args)
| |
| local ret = ''
| |
| if protectionObj.protectionDate then
| |
| ret = ret .. 'On ${PROTECTIONDATE} this ${PAGETYPE} was'
| |
| else
| |
| ret = ret .. 'This ${PAGETYPE} has been'
| |
| end
| |
| ret = ret .. ' reduced to a'
| |
| .. ' simplified, "bare bones" version so that it may be completely'
| |
| .. ' rewritten to ensure it meets the policies of'
| |
| .. ' [[WP:NPOV|Neutral Point of View]] and [[WP:V|Verifiability]].'
| |
| .. ' Standard Wikipedia policies will apply to its rewriting—which'
| |
| .. ' will eventually be open to all editors—and will be strictly'
| |
| .. ' enforced. The ${PAGETYPE} has been ${PROTECTIONLEVEL} while'
| |
| .. ' it is being rebuilt.\n\n'
| |
| .. 'Any insertion of material directly from'
| |
| .. ' pre-protection revisions of the ${PAGETYPE} will be removed, as'
| |
| .. ' will any material added to the ${PAGETYPE} that is not properly'
| |
| .. ' sourced. The associated talk page(s) were also cleared on the'
| |
| .. " same date.\n\n"
| |
| .. "If you can edit this page, please discuss all changes and"
| |
| .. " additions on the ${TALKPAGE} first. '''Do not override"
| |
| .. " this action, and do not remove protection from this page,"
| |
| .. " unless you are authorized by the Wikimedia Foundation"
| |
| .. " to do so. No editor may remove this notice.'''"
| |
| | |
| return ret
| |
| end,
| |
| image = 'Vakıf-koruması.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',
| |
| },
| |
| talk = {
| |
| description = 'For pages protected to promote compliance with the'
| |
| .. ' [[Wikipedia:Biographies of living persons'
| |
| .. '|biographies of living persons]] policy',
| |
| text = '[[Sanarşiv:Yaşayan insanların biyografileri|'
| |
| .. 'Yaşayan insanların biyografileri]] ihlallerinin önüne geçilmesi'
| |
| .. ' adına ${INTROFRAGMENT}',
| |
| tooltip = 'Yaşayan insanların biyografileri politikasının ihlallerinin'
| |
| .. ' önüne geçilmesi adına ${TOOLTIPFRAGMENT}',
| |
| },
| |
| template = {
| |
| description = 'For [[Wikipedia:High-risk templates|high-risk]]'
| |
| .. ' templates and Lua modules',
| |
| text = 'Bu ${PAGETYPE}, [[Sanarşiv:Yüksek riskli şablonlar|yüksek risk]] nedeniyle'
| |
| .. ' süresiz olarak [[Yardım:Koruma|koruma]] altındadır.',
| |
| explanation = 'Lütfen yapılması gerektiğini düşündüğünüz değişiklikleri'
| |
| .. ' ${TALKPAGE}nda tartışın.'
| |
| .. ' Eğer değişiklik talebiniz [[Yardım:Küçük_değişiklik#Ne_zaman_işaretlemeli|'
| |
| .. ' ufak bir konuyla alakalıysa]] ya da alakalı konuda [[Sanarşiv:Fikir birliği|fikir birliği]]'
| |
| .. ' sağlanmışsa [[Sanarşiv:Hizmetliler|hizmetlilerden]] değişiklik yapmasını'
| |
| .. ' isteyebilirsiniz. Ayrıca'
| |
| .. ' [[Sanarşiv:Sayfa_koruma_talepleri#Koruma_kaldırma_talepleri'
| |
| .. '|korumanın kaldırılmasını talep etmeniz]] mümkündür.',
| |
| tooltip = 'Bu yüksek riskli ${PAGETYPE} vandalizm nedeniyle ${PROTECTIONLEVEL}',
| |
| alt = 'Permanently protected ${PAGETYPE}',
| |
| },
| |
| usertalk = {
| |
| description = 'For pages protected against disruptive edits by a'
| |
| .. ' particular user',
| |
| text = 'İşleyişi aksatıcı değişikliklerin engellenmesi için ${INTROFRAGMENT}',
| |
| explanation = 'Eğer bu kullanıcı mesaj sayfasını değiştiremiyorsanız'
| |
| .. ' ancak değişiklik yapmanız veya bir mesaj bırakmanız gerekiyorsa '
| |
| .. ' [[Sanarşiv:Sayfa_koruma_talepleri#Korumalı_sayfada_değişiklik_talepleri'
| |
| .. '|değişiklik talebinde bulunabilir]] ya da'
| |
| .. ' [[Sanarşiv:Sayfa_koruma_talepleri#Koruma_kaldırma_talepleri'
| |
| .. '|korumanın kaldırılmasını talep edebilirsiniz]].',
| |
| },
| |
| vandalism = {
| |
| description = 'For pages protected against'
| |
| .. ' [[Wikipedia:Vandalism|vandalism]]',
| |
| text = '[[VP:Vandalizm|Vandalizm]] nedeniyle ${INTROFRAGMENT}',
| |
| explanation = function (protectionObj, args)
| |
| local ret = ''
| |
| if protectionObj.level == 'sysop' then
| |
| ret = ret .. "Bu koruma ${CURRENTVERSION} onaylandığı anlamına '''gelmez'''."
| |
| end
| |
| return ret .. '${EXPLANATIONBLURB}'
| |
| end,
| |
| tooltip = '${TOOLTIPFRAGMENT} due to vandalism',
| |
| }
| |
| },
| |
| move = {
| |
| dispute = {
| |
| description = 'For pages protected against page moves due to'
| |
| .. ' disputes over the page title',
| |
| explanation = "Bu koruma ${CURRENTVERSION} onaylandığı anlamına '''gelmez'''. ${EXPLANATIONBLURB}",
| |
| image = 'Taşıma-koruması.svg'
| |
| },
| |
| vandalism = {
| |
| description = 'For pages protected against'
| |
| .. ' [[Wikipedia:Vandalism#Page-move vandalism'
| |
| .. ' |page-move vandalism]]'
| |
| }
| |
| },
| |
| 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 = { | | edit = { |
| default = 'değişikliklere karşı [[Yardım:Koruma|koruma]] altına alınmıştır.', | | default = 'Sanarşiv:Koruma_politikası#tam', |
| autoconfirmed = '[[Sanarşiv:Kullanıcılar#Otomatik' | | templateeditor = 'Sanarşiv:Koruma_politikası#şablon', |
| .. ' onaylanmış kullanıcılar|yeni]] ve [[Sanarşiv:Kullanıcılar#Anonim'
| | autoconfirmed = 'Sanarşiv:Koruma_politikası#yarı' |
| .. ' kullanıcılar|anonim]] kullanıcı değişikliklerine karşı [[Yardım:Koruma|koruma]] altına alınmıştır.',
| |
| }, | | }, |
| move = { | | move = { |
| default = 'sayfa taşıma işlemlerine karşı [[Yardım:Koruma|koruma]] altına alınmıştır.' | | default = 'Sanarşiv:Koruma_politikası#taşıma' |
| }, | | }, |
| upload = { | | upload = { |
| default = 'Bu dosya, yeni sürüm yüklenmesine karşı [[Yardım:Koruma|koruma]] altına alınmıştır.' | | default = 'Sanarşiv:Koruma_politikası#yükleme' |
| } | | } |
| }, | | } |
|
| |
|
| | local messages = { |
| | ['explanation-blurb-nounprotect'] = |
| | 'Bkz. [[Sanarşiv:Koruma_politikası|koruma politikası]] ve ${PROTECTIONLOG}.', |
|
| |
|
| --------------------------------------------------------------------------------
| | ['protectionlog'] = '[[Özel:Günlük/protect|koruma günlüğü]]', |
| -- Explanation blurbs
| |
| --------------------------------------------------------------------------------
| |
|
| |
|
| -- This table produces the explanation blurbs available with the
| | ['reason-edit'] = |
| -- ${EXPLANATIONBLURB} parameter. It is sorted by protection action,
| | 'Bu sayfa vandalizm veya politika ihlalleri nedeniyle korunmaktadır.', |
| -- 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 = 'Daha fazla bilgi için [[Sanarşiv:Koruma politikası|'
| |
| .. 'koruma politikası]]na ve ${PROTECTIONLOG} göz atabilirsiniz. Eğer'
| |
| .. ' bir değişiklik yapmak istiyorsanız ancak yapamıyorsanız'
| |
| .. ' [[Sanarşiv:Sayfa_koruma_talepleri#Korumalı_sayfada_değişiklik_talepleri|'
| |
| .. 'değişiklik talebinde bulunmanız]],'
| |
| -- .. ' ${EDITREQUEST} bulunmanız,' --Alakalı modül çalışmıyor
| |
| .. ' ${TALKPAGE}nda değişiklik hakkında tartışma başlatmanız ya da'
| |
| .. ' [[Sanarşiv:Sayfa_koruma_talepleri#Koruma_kaldırma_talepleri'
| |
| .. '|korumanın kaldırılmasını talep etmeniz]] mümkündür.',
| |
| default = 'Daha fazla bilgi için [[Sanarşiv:Koruma politikası|'
| |
| .. 'koruma politikası]] ve ${PROTECTIONLOG} göz atabilirsiniz. Eğer'
| |
| .. ' bir değişiklik yapmak istiyorsanız ancak yapamıyorsanız'
| |
| .. ' [[Sanarşiv:Sayfa_koruma_talepleri#Koruma_kaldırma_talepleri'
| |
| .. '|korumanın kaldırılmasını talep etmeniz]] mümkündür.',
| |
| },
| |
| default = {
| |
| subject = 'Daha fazla bilgi için [[Sanarşiv:Koruma politikası|'
| |
| .. 'koruma politikası]]na ve ${PROTECTIONLOG} göz atabilirsiniz.'
| |
| .. ' Lütfen yapılması gerektiğini düşündüğünüz değişiklikleri ${TALKPAGE} üzerinden bir tartışma başlatın.'
| |
| .. ' Eğer değişiklik talebiniz [[Yardım:Küçük_değişiklik#Ne_zaman_işaretlemeli|'
| |
| .. ' ufak bir konuyla alakalıysa]] ya da alakalı konuda [[Sanarşiv:Fikir birliği|fikir birliği]]'
| |
| .. ' sağlanmışsa [[Sanarşiv:Hizmetliler|hizmetlilerden]] değişiklik yapmasını'
| |
| -- .. ' ${EDITREQUEST} bulunmanız,' --Alakalı modül çalışmıyor
| |
| .. ' [[Sanarşiv:Sayfa_koruma_talepleri#Korumalı_sayfada_değişiklik_talepleri|'
| |
| .. 'talep edebilirsiniz]]. Ayrıca [[Sanarşiv:Sayfa_koruma_talepleri#Koruma_kaldırma_talepleri'
| |
| .. '|korumanın kaldırılmasını talep etmeniz]] de mümkündür.',
| |
| default = 'Daha fazla bilgi için [[Sanarşiv:Koruma politikası|'
| |
| .. 'koruma politikası]]na ve ${PROTECTIONLOG} göz atabilirsiniz.'
| |
| .. ' [[Sanarşiv:Hizmetliler|hizmetlilerden]] '
| |
| .. ' [[Sanarşiv:Sayfa_koruma_talepleri#Korumalı_sayfada_değişiklik_talepleri|'
| |
| .. 'değişiklik yapmasını]] ya da [[Sanarşiv:Sayfa_koruma_talepleri#Koruma_kaldırma_talepleri'
| |
| .. '|korumanın kaldırılmasını]] talep etmeniz mümkündür.',
| |
| }
| |
| },
| |
| move = {
| |
| default = {
| |
| default = 'Daha fazla bilgi için [[Sanarşiv:Koruma politikası|'
| |
| .. 'koruma politikası]]na ve ${PROTECTIONLOG} göz atabilirsiniz.'
| |
| .. ' Bu sayfa hala değiştirilebilir ancak koruması kaldırılana ya da süresi bitene dek'
| |
| .. ' [[Yardım:Sayfanın ismini değiştirmek|taşınamaz]]. Sayfanın taşınması gerektiğini düşünüyorsanız'
| |
| .. ' lütfen ${TALKPAGE} üzeriden bir tartışma başlatın.'
| |
| .. ' [[Sanarşiv:Sayfa taşıma talepleri|Sayfanın taşınmasını]] ya da'
| |
| .. ' [[Sanarşiv:Sayfa_koruma_talepleri#Koruma_kaldırma_talepleri|korumanın kaldırılmasını]]'
| |
| .. ' talep etmeniz mümkündür.'
| |
| }
| |
| },
| |
| upload = {
| |
| default = { | |
| default = 'Daha fazla bilgi için [[Sanarşiv:Koruma politikası|'
| |
| .. 'koruma politikası]]na ve ${PROTECTIONLOG} göz atabilirsiniz.'
| |
| .. ' Bu sayfa hala değiştirilebilir ancak koruması kaldırılana ya da süresi bitene dek'
| |
| .. ' bu dosyanın yeni bir sürümü yüklenemez.'
| |
| .. ' [[Sanarşiv:Sayfa taşıma talepleri|Yeni bir sürüm yüklenmesini]] ya da'
| |
| .. ' [[Sanarşiv:Sayfa_koruma_talepleri#Koruma_kaldırma_talepleri|korumanın kaldırılmasını]]'
| |
| .. ' talep etmeniz mümkündür.'
| |
| }
| |
| }
| |
| },
| |
|
| |
|
| -------------------------------------------------------------------------------- | | ['reason-move'] = |
| -- Protection levels
| | 'Bu sayfa uygunsuz taşıma girişimlerini önlemek için korunmaktadır.', |
| --------------------------------------------------------------------------------
| |
|
| |
|
| -- This table provides the data for the ${PROTECTIONLEVEL} parameter, which
| | ['reason-upload'] = |
| -- produces a short label for different protection levels. It is sorted by
| | 'Bu dosya telif veya lisans sorunları nedeniyle korunmaktadır.' |
| -- 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.
| |
| protectionLevels = {
| |
| edit = {
| |
| default = 'korumaya alındı',
| |
| templateeditor = 'şablon korumasına alındı',
| |
| autoconfirmed = 'yarı korumaya alındı',
| |
| },
| |
| move = {
| |
| default = 'taşıma korumasına alındı'
| |
| },
| |
| autoreview = {
| |
| },
| |
| upload = {
| |
| default = 'yükleme korumasına alındı'
| |
| } | |
| },
| |
| | |
| --------------------------------------------------------------------------------
| |
| -- 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 = 'Tam-koruma.svg',
| |
| templateeditor = 'Şablon-koruması.svg',
| |
| autoconfirmed = 'Yarı-koruma.svg'
| |
| },
| |
| move = {
| |
| default = 'Taşıma-koruması.svg',
| |
| },
| |
| autoreview = {
| |
| autoconfirmed = 'Yarı-koruma.svg',
| |
| default = 'Padlock-orange.svg'
| |
| },
| |
| upload = {
| |
| default = 'Yükleme-koruması.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:Koruma politikası#full',
| |
| templateeditor = 'Wikipedia:Protection policy#template',
| |
| autoconfirmed = 'Wikipedia:Koruma politikası#semi' | |
| },
| |
| move = {
| |
| default = 'Wikipedia:Koruma politikası#move'
| |
| },
| |
| autoreview = {
| |
| autoconfirmed = 'Wikipedia:Protection policy#pc1',
| |
| reviewer = 'Wikipedia:Protection policy#pc2'
| |
| },
| |
| upload = {
| |
| default = 'Wikipedia:Protection policy#upload'
| |
| }
| |
| },
| |
| | |
| --------------------------------------------------------------------------------
| |
| -- 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 = {
| |
| autoreview = 'pp-autoreview',
| |
| 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'] = 'Korumaya alınmış sayfalar',
| |
| --['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|file|all|all|all'] = 'Korumaya alınmış dosyalar',
| |
| ['all|category|all|all|all'] = 'Korumaya alınmış kategoriler',
| |
| ['all|module|all|all|all'] = 'Korumaya alınmış modüller',
| |
| ['all|project|all|all|all'] = 'Korumaya alınmış proje sayfaları',
| |
| ['all|template|all|all|all'] = 'Korumaya alınmış şablonlar',
| |
| ['all|talk|all|all|all'] = 'Korumaya alınmış tartışma sayfaları',
| |
| ['all|user|all|all|all'] = 'Korumaya alınmış kullanıcı ve kullanıcı mesaj sayfaları',
| |
| ['indef|all|all|all|all'] = 'Süresiz olarak korumaya alınmış sayfalar',
| |
| ['all|all|vandalism|all|all'] = 'Vandalizme karşı korumaya alınmış sayfalar',
| |
| --['all|all|mainpage|all|all'] = 'Wikipedia fully-protected main page files',
| |
| --['all|all|all|extendedconfirmed|all'] = 'Wikipedia pages under 30-500 editing restriction',
| |
| --['all|all|ecp|extendedconfirmed|all'] = 'Wikipedia pages under 30-500 editing restriction',
| |
| --['all|template|all|all|edit'] = 'Sanarşiv tam koruma altına alınmış şablonlar',
| |
| ['all|all|all|autoconfirmed|edit'] = 'Yarı korumaya alınmış sayfalar',
| |
| ['indef|all|all|autoconfirmed|edit'] = 'Süresiz olarak yarı korumaya alınmış sayfalar',
| |
| --['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'] = 'Vandalizme karşı yarı korumaya alınmış sayfalar',
| |
| ['all|category|all|autoconfirmed|edit'] = 'Yarı korumaya alınmış kategoriler',
| |
| ['all|file|all|autoconfirmed|edit'] = 'Yarı korumaya alınmış dosyalar',
| |
| ['all|portal|all|autoconfirmed|edit'] = 'Yarı korumaya alınmış portaller',
| |
| ['all|project|all|autoconfirmed|edit'] = 'Yarı korumaya alınmış proje sayfaları',
| |
| ['all|talk|all|autoconfirmed|edit'] = 'Yarı korumaya alınmış tartışma sayfaları',
| |
| ['all|template|all|autoconfirmed|edit'] = 'Yarı korumaya alınmış şablonlar',
| |
| ['all|user|all|autoconfirmed|edit'] = 'Yarı korumaya alınmış kullanıcı ve kullanıcı mesaj sayfaları',
| |
| ['all|file|all|all|upload'] = 'Yükleme korumasına alınmış dosyalar',
| |
| --['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'] = 'Anlaşmazlık nedeniyle korumaya alınmış sayfalar',
| |
| --['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'] = 'Sanarşiv korunan kategoriler',
| |
| --['all|file|all|sysop|edit'] = 'Sanarşiv tam korumalı dosyalar',
| |
| --['all|project|all|sysop|edit'] = 'Sanarşiv tam korumadaki proje sayfaları',
| |
| --['all|talk|all|sysop|edit'] = 'Wikipedia fully-protected talk pages',
| |
| --['all|template|all|sysop|edit'] = 'Korumaya alınmış şablonlar',
| |
| --['all|user|all|sysop|edit'] = 'Korumaya alınmış kullanıcı ve kullanıcı mesaj sayfaları',
| |
| --['all|module|all|all|edit'] = 'Sanarşiv tam korumadaki modüller',
| |
| --['all|module|all|templateeditor|edit'] = 'Wikipedia template-protected modules',
| |
| --['all|module|all|autoconfirmed|edit'] = 'Sanarşiv yarı korumadaki modüller',
| |
| --['all|all|all|sysop|move'] = 'Sanarşiv taşıma korumasındaki sayfalar',
| |
| --['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'] = 'Sanarşiv taşıma korumasındaki şablonlar',
| |
| --['all|user|all|sysop|move'] = 'Wikipedia move-protected user and user talk pages',
| |
| --['all|all|all|autoconfirmed|autoreview'] = 'Wikipedia pending changes protected pages (level 1)',
| |
| --['all|all|all|reviewer|autoreview'] = 'Wikipedia pending changes protected pages (level 2)',
| |
| },
| |
| | |
| --------------------------------------------------------------------------------
| |
| -- 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] = 'madde',
| |
| [6] = 'dosya',
| |
| [10] = 'şablon',
| |
| [14] = 'kategori',
| |
| [828] = 'modül',
| |
| default = 'sayfa'
| |
| },
| |
| | |
| --------------------------------------------------------------------------------
| |
| -- 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 = {},
| |
| reviewer = {'sysop'},
| |
| filemover = {'sysop'},
| |
| templateeditor = {'sysop'},
| |
| autoconfirmed = {'reviewer', 'filemover', 'templateeditor'},
| |
| 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 = {
| |
| ['Şablon:Koruma'] = {small = true},
| |
| ['Şablon:Koruma-yarı-yib'] = {'blp', small = true},
| |
| ['Şablon:Koruma-anlaşmazlık'] = {'dispute', small = false},
| |
| ['Şablon:Koruma-taşıma'] = {action = 'move', small = true},
| |
| ['Şablon:Koruma-taşıma-anlaşmazlık'] = {'dispute', action = 'move', small = false},
| |
| ['Şablon:Koruma-taşıma-vandalizm'] = {'vandalism', action = 'move', small = true},
| |
| ['Şablon:Koruma-yarı-süresiz'] = {expiry = 'indef', small = true},
| |
| ['Şablon:Koruma-şablon'] = {'template', small = true},
| |
| ['Şablon:Koruma-yükleme'] = {action = 'upload', small = false},
| |
| ['Şablon:Koruma-mesaj'] = {'usertalk', small = true},
| |
| ['Şablon:Koruma-vandalizm'] = {'vandalism', small = true},
| |
| --['Şablon:Pp-office'] = {'office'},
| |
| --['Şablon:Pp-office-dmca'] = {'dmca'},
| |
| --['Şablon:Pp-pc1'] = {action = 'autoreview', small = true},
| |
| --['Şablon:Pp-pc2'] = {action = 'autoreview', small = true},
| |
| --['Şablon:Pp-30-500'] = {'ecp'},
| |
| --['Şablon:Pp-main-page'] = {'mainpage'},
| |
| },
| |
| | |
| --------------------------------------------------------------------------------
| |
| --
| |
| -- 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'] = 'Bu ${PAGETYPE}, ${EXPIRY} tarihine kadar ${PROTECTIONBLURB}',
| |
| ['intro-blurb-noexpiry'] = 'Bu ${PAGETYPE}, ${PROTECTIONBLURB}',
| |
| ['intro-fragment-expiry'] = 'Bu ${PAGETYPE}, ${EXPIRY} tarihine kadar ${PROTECTIONBLURB}',
| |
| ['intro-fragment-noexpiry'] = 'Bu ${PAGETYPE}, ${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'] = 'Bu ${PAGETYPE}, ${EXPIRY} tarihine kadar ${PROTECTIONLEVEL}',
| |
| ['tooltip-blurb-noexpiry'] = 'Bu ${PAGETYPE} ${PROTECTIONLEVEL}.',
| |
| ['tooltip-fragment-expiry'] = 'Bu ${PAGETYPE}, ${EXPIRY} tarihine kadar ${PROTECTIONLEVEL}',
| |
| ['tooltip-fragment-noexpiry'] = 'Bu ${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:Koruma politikası|'
| |
| .. 'protection policy]] and ${PROTECTIONLOG} for more details.'
| |
| .. ' Please discuss any changes on the ${TALKPAGE}; you'
| |
| .. ' may ${EDITREQUEST} to ask an'
| |
| .. ' [[Sanarchive: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'] = 'koruma günlüğüne',
| |
| ['pc-log-display'] = 'pending changes log',
| |
| | |
| --------------------------------------------------------------------------------
| |
| -- Current version display values
| |
| --------------------------------------------------------------------------------
| |
|
| |
|
| -- These messages determine the display values for the page history link
| | local function makeWikilink(page, text) |
| -- or the move log link produced by the ${CURRENTVERSION} parameter.
| | if not page then |
| -- It is possible to use banner parameters in these messages.
| | return '' |
| ['current-version-move-display'] = 'mevcut başlığın', | | end |
| ['current-version-edit-display'] = 'mevcut sürümün', | | if text then |
| | return string.format('[[%s|%s]]', page, text) |
| | end |
| | return string.format('[[%s]]', page) |
| | end |
|
| |
|
| --------------------------------------------------------------------------------
| | local function getProtectionLogLink() |
| -- Talk page
| | return messages['protectionlog'] |
| --------------------------------------------------------------------------------
| | end |
|
| |
|
| -- This message determines the display value of the talk page link produced
| | local function getExplanation() |
| -- with the ${TALKPAGE} parameter.
| | return mw.ustring.gsub( |
| -- It is possible to use banner parameters in this message.
| | messages['explanation-blurb-nounprotect'], |
| ['talk-page-link-display'] = 'tartışma sayfası', | | '%${PROTECTIONLOG}', |
| | getProtectionLogLink() |
| | ) |
| | end |
|
| |
|
| --------------------------------------------------------------------------------
| | function p.main(frame) |
| -- Edit requests
| | local args = getArgs(frame) |
| --------------------------------------------------------------------------------
| | local action = args.action or 'edit' |
| | local level = args.level or 'default' |
| | local reason = args.reason |
|
| |
|
| -- This message determines the display value of the edit request link produced
| | local policyLink = |
| -- with the ${EDITREQUEST} parameter.
| | imageLinks[action] |
| -- It is possible to use banner parameters in this message.
| | and imageLinks[action][level] |
| ['edit-request-display'] = 'submit an edit request', | | or imageLinks[action] |
| | and imageLinks[action].default |
|
| |
|
| --------------------------------------------------------------------------------
| | local text = {} |
| -- Expiry date format
| |
| --------------------------------------------------------------------------------
| |
|
| |
|
| -- This is the format for the blurb expiry date. It should be valid input for
| | if policyLink then |
| -- the first parameter of the #time parser function.
| | table.insert(text, makeWikilink(policyLink)) |
| ['expiry-date-format'] = 'j F Y',
| | end |
|
| |
|
| -------------------------------------------------------------------------------- | | if reason and messages['reason-' .. reason] then |
| -- Tracking categories | | table.insert(text, messages['reason-' .. reason]) |
| --------------------------------------------------------------------------------
| | end |
|
| |
|
| -- These messages determine which tracking categories the module outputs.
| | table.insert(text, getExplanation()) |
| ['tracking-category-incorrect'] = 'Hatalı koruma şablonuna sahip sayfalar',
| |
| --['tracking-category-expiry'] = 'Wikipedia protected pages without expiry',
| |
| --['tracking-category-template'] = 'Wikipedia template-protected pages other than templates and modules',
| |
|
| |
|
| --------------------------------------------------------------------------------
| | return table.concat(text, ' ') |
| -- Images
| | end |
| --------------------------------------------------------------------------------
| |
|
| |
|
| -- These are images that are not defined by their protection action and protection level.
| | return p |
| ['image-filename-indef'] = 'Tam-koruma.svg',
| |
| ['image-filename-default'] = 'Transparent.gif',
| |
| | |
| --------------------------------------------------------------------------------
| |
| -- End messages
| |
| --------------------------------------------------------------------------------
| |
| }
| |
| | |
| --------------------------------------------------------------------------------
| |
| -- End configuration
| |
| --------------------------------------------------------------------------------
| |
| }
| |