Модуль:Не переведено: различия между версиями
Перейти к навигации
Перейти к поиску
м (Защитил Модуль:Не переведено: критический шаблон или модуль ([Редактирование=только администраторы] (бессрочно) [Переименование=только…) |
(+ всплывающие подсказки; оф) |
||
Строка 6: | Строка 6: | ||
end | end | ||
− | local function wikilink( | + | local function wikilink(title, text, tooltip, lang) |
if is_empty(text) then | if is_empty(text) then | ||
text = title | text = title | ||
end | end | ||
− | if lang ~= 'ru' then | + | if lang ~= nil and lang ~= 'ru' then |
title = string.format(':%s:%s', lang, title) | title = string.format(':%s:%s', lang, title) | ||
+ | end | ||
+ | if tooltip ~= nil then | ||
+ | text = tostring( | ||
+ | mw.html.create('span') | ||
+ | :attr('title', tooltip) | ||
+ | :wikitext(text) | ||
+ | ) | ||
end | end | ||
return string.format('[[%s|%s]]', title, text) | return string.format('[[%s|%s]]', title, text) | ||
Строка 29: | Строка 36: | ||
local languages = mw.loadData('Module:Languages/data') | local languages = mw.loadData('Module:Languages/data') | ||
local error = require('Module:Error').error | local error = require('Module:Error').error | ||
+ | local prepositional = require('Module:Languages').transform_lang | ||
− | local | + | local leave_always = yesno(args['l']) |
+ | local leave_if_redirect = yesno(args['r']) | ||
local categories = '' | local categories = '' | ||
Строка 57: | Строка 66: | ||
args[1] = args['надо'] or args['нужно'] or args[2] or '' | args[1] = args['надо'] or args['нужно'] or args[2] or '' | ||
args[2] = args['текст'] or args[3] | args[2] = args['текст'] or args[3] | ||
− | args[3] = | + | args[3] = temp:gsub('^:([a-z-]+):(.+)$', '%1') |
− | args[4] = | + | args[4] = temp:gsub('^:([a-z-]+):(.+)$', '%2') |
if is_empty(args[1]) then | if is_empty(args[1]) then | ||
args[1] = args[4] | args[1] = args[4] | ||
Строка 64: | Строка 73: | ||
end | end | ||
− | local title = args[1] | + | local page_title = mw.title.new(args[1]) |
+ | if leave_if_redirect and not page_title.isRedirect then | ||
+ | leave_if_redirect = false | ||
+ | end | ||
+ | local exists = page_title.exists and not ( leave_always or leave_if_redirect ) | ||
+ | if leave_if_redirect and allow_cat then | ||
+ | categories = categories .. orphan_categories['redirect'] | ||
+ | end | ||
+ | |||
+ | local title = mw.getContentLanguage():ucfirst(args[1]) | ||
local text = args[2] | local text = args[2] | ||
− | + | local ru_link = wikilink(title, text) | |
− | local ru_link = wikilink( | ||
if exists and not mw.isSubsting() then | if exists and not mw.isSubsting() then | ||
ru_link = tostring( | ru_link = tostring( | ||
Строка 74: | Строка 91: | ||
:wikitext(ru_link) | :wikitext(ru_link) | ||
) | ) | ||
− | |||
− | |||
− | |||
end | end | ||
local post_text_list = {} | local post_text_list = {} | ||
local addition = args['a'] | local addition = args['a'] | ||
− | local | + | local show_originals = yesno(args['o']) or addition ~= nil |
local wikidata_link = '' | local wikidata_link = '' | ||
local i, j = 4, 1 | local i, j = 4, 1 | ||
while args[i] or args[i - 1] or i <= 4 do | while args[i] or args[i - 1] or i <= 4 do | ||
− | + | ||
local lang = args[i - 1] | local lang = args[i - 1] | ||
local iw_title = args[i] | local iw_title = args[i] | ||
Строка 98: | Строка 112: | ||
iw_text = iw_title | iw_text = iw_title | ||
end | end | ||
+ | |||
+ | local show_original = show_originals and lang ~= 'd' | ||
local lang_text | local lang_text | ||
Строка 103: | Строка 119: | ||
local lang_link | local lang_link | ||
if lang == 'd' then | if lang == 'd' then | ||
− | + | lang_text = 'd' | |
elseif languages[lang] == nil then | elseif languages[lang] == nil then | ||
if allow_cat then | if allow_cat then | ||
Строка 112: | Строка 128: | ||
lang_text = languages[lang][1] | lang_text = languages[lang][1] | ||
lang_title = languages[lang][2] | lang_title = languages[lang][2] | ||
− | lang_link = wikilink( | + | lang_link = wikilink(lang_title, lang_text) |
end | end | ||
− | + | ||
+ | local tooltip | ||
+ | if lang == 'd' then | ||
+ | tooltip = string.format('Элемент статьи «%s» в Викиданных', title) | ||
+ | else | ||
+ | tooltip = string.format('Версия статьи «%s» на %s', title, prepositional(lang)) | ||
+ | end | ||
+ | |||
local iw_link | local iw_link | ||
− | if show_original | + | if show_original then |
− | iw_link = wikilink( | + | iw_link = wikilink(iw_title, iw_text, tooltip, lang) |
else | else | ||
− | iw_link = wikilink( | + | iw_link = wikilink(iw_title, lang_text, tooltip, lang) |
end | end | ||
− | if lang == ' | + | if show_original then |
− | + | if mw.isSubsting() then | |
+ | post_text_list[j] = string.format('{{l6e|%s|%s}}', lang, iw_text) | ||
+ | elseif exists then | ||
+ | post_text_list[j] = string.format('%s %s', lang_link, italic(iw_text)) | ||
+ | else | ||
+ | post_text_list[j] = string.format('%s %s', lang_link, italic(iw_link)) | ||
+ | end | ||
+ | elseif not ( mw.isSubsting() or exists ) then | ||
+ | if lang == 'd' then | ||
wikidata_link = iw_link | wikidata_link = iw_link | ||
+ | else | ||
+ | post_text_list[j] = iw_link | ||
end | end | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
end | end | ||
− | if show_original | + | if show_original then |
i = i + 3 | i = i + 3 | ||
else | else | ||
Строка 157: | Строка 182: | ||
if next(post_text_list) ~= nil or not is_empty(wikidata_link) then | if next(post_text_list) ~= nil or not is_empty(wikidata_link) then | ||
post_text = string.format(' (%s%s%s)', wikidata_link, table.concat(post_text_list, ', '), addition) | post_text = string.format(' (%s%s%s)', wikidata_link, table.concat(post_text_list, ', '), addition) | ||
− | if not | + | if not show_originals or ( next(post_text_list) == nil and is_empty(addition) ) then |
post_text = tostring( | post_text = tostring( | ||
mw.html.create('span') | mw.html.create('span') | ||
:addClass('noprint') | :addClass('noprint') | ||
+ | :css('white-space', 'nowrap') | ||
:css('font-size', '85%') | :css('font-size', '85%') | ||
:wikitext(post_text) | :wikitext(post_text) | ||
Строка 175: | Строка 201: | ||
mw.html.create('sup') | mw.html.create('sup') | ||
:addClass('noprint') | :addClass('noprint') | ||
− | :wikitext(' | + | :wikitext( |
+ | string.format( | ||
+ | '[%s]', | ||
+ | wikilink( | ||
+ | 'Шаблон:Не переведено#Действия после появления перевода', | ||
+ | italic('убрать шаблон'), | ||
+ | 'Пожалуйста, удалите шаблон, заменив «{{не переведено» на «{{подст:не переведено»' | ||
+ | ) | ||
+ | ) | ||
+ | ) | ||
) | ) | ||
end | end |
Версия от 00:50, 15 декабря 2017
Для документации этого модуля может быть создана страница Модуль:Не переведено/doc
local getArgs = require('Module:Arguments').getArgs
local p = {}
local function is_empty(param)
return param == nil or param == ''
end
local function wikilink(title, text, tooltip, lang)
if is_empty(text) then
text = title
end
if lang ~= nil and lang ~= 'ru' then
title = string.format(':%s:%s', lang, title)
end
if tooltip ~= nil then
text = tostring(
mw.html.create('span')
:attr('title', tooltip)
:wikitext(text)
)
end
return string.format('[[%s|%s]]', title, text)
end
local function italic(s)
return tostring(
mw.html.create('span')
:css('font-style', 'italic')
:wikitext(s)
)
end
function p.main(frame)
local yesno = require('Module:Yesno')
local args = getArgs(frame)
local languages = mw.loadData('Module:Languages/data')
local error = require('Module:Error').error
local prepositional = require('Module:Languages').transform_lang
local leave_always = yesno(args['l'])
local leave_if_redirect = yesno(args['r'])
local categories = ''
local nocat = yesno(args['nocat'])
local allow_cat = mw.title.getCurrentTitle().namespace == 0 and not nocat
local orphan_categories = {
['error'] = '[[Категория:Википедия:Статьи с некорректно заполненным шаблоном Не переведено]]',
['outdated'] = '[[Категория:Википедия:Статьи с неактуальным шаблоном Не переведено]]',
['redirect'] = '[[Категория:Википедия:Запросы на замену перенаправлений переводами]]'
}
if is_empty(args[1]) and not args['есть']:match('^:[a-z-]+:') then
if allow_cat then
categories = categories .. orphan_categories['error']
end
return error{'не указано название статьи'} .. categories
end
if not is_empty(args['есть']) or args[1]:match('^:[a-z-]+:') then
local temp
if is_empty(args['есть']) then
temp = args[1]
else
temp = args['есть']
end
args[1] = args['надо'] or args['нужно'] or args[2] or ''
args[2] = args['текст'] or args[3]
args[3] = temp:gsub('^:([a-z-]+):(.+)$', '%1')
args[4] = temp:gsub('^:([a-z-]+):(.+)$', '%2')
if is_empty(args[1]) then
args[1] = args[4]
end
end
local page_title = mw.title.new(args[1])
if leave_if_redirect and not page_title.isRedirect then
leave_if_redirect = false
end
local exists = page_title.exists and not ( leave_always or leave_if_redirect )
if leave_if_redirect and allow_cat then
categories = categories .. orphan_categories['redirect']
end
local title = mw.getContentLanguage():ucfirst(args[1])
local text = args[2]
local ru_link = wikilink(title, text)
if exists and not mw.isSubsting() then
ru_link = tostring(
mw.html.create('span')
:css('background', '#FFFF00')
:wikitext(ru_link)
)
end
local post_text_list = {}
local addition = args['a']
local show_originals = yesno(args['o']) or addition ~= nil
local wikidata_link = ''
local i, j = 4, 1
while args[i] or args[i - 1] or i <= 4 do
local lang = args[i - 1]
local iw_title = args[i]
local iw_text = args[i + 1]
if is_empty(lang) then
lang = 'en'
end
if is_empty(iw_title) then
iw_title = title
end
if is_empty(iw_text) then
iw_text = iw_title
end
local show_original = show_originals and lang ~= 'd'
local lang_text
local lang_title
local lang_link
if lang == 'd' then
lang_text = 'd'
elseif languages[lang] == nil then
if allow_cat then
categories = categories .. orphan_categories['error']
end
return error{'некорректный ISO-код «' .. lang .. '»'} .. categories
else
lang_text = languages[lang][1]
lang_title = languages[lang][2]
lang_link = wikilink(lang_title, lang_text)
end
local tooltip
if lang == 'd' then
tooltip = string.format('Элемент статьи «%s» в Викиданных', title)
else
tooltip = string.format('Версия статьи «%s» на %s', title, prepositional(lang))
end
local iw_link
if show_original then
iw_link = wikilink(iw_title, iw_text, tooltip, lang)
else
iw_link = wikilink(iw_title, lang_text, tooltip, lang)
end
if show_original then
if mw.isSubsting() then
post_text_list[j] = string.format('{{l6e|%s|%s}}', lang, iw_text)
elseif exists then
post_text_list[j] = string.format('%s %s', lang_link, italic(iw_text))
else
post_text_list[j] = string.format('%s %s', lang_link, italic(iw_link))
end
elseif not ( mw.isSubsting() or exists ) then
if lang == 'd' then
wikidata_link = iw_link
else
post_text_list[j] = iw_link
end
end
if show_original then
i = i + 3
else
i = i + 2
end
if lang ~= 'd' then
j = j + 1
end
end
local post_text = ''
if not is_empty(addition) then
addition = '; ' .. addition
else
addition = ''
end
if not is_empty(wikidata_link) and next(post_text_list) ~= nil then
wikidata_link = wikidata_link .. '; '
end
if next(post_text_list) ~= nil or not is_empty(wikidata_link) then
post_text = string.format(' (%s%s%s)', wikidata_link, table.concat(post_text_list, ', '), addition)
if not show_originals or ( next(post_text_list) == nil and is_empty(addition) ) then
post_text = tostring(
mw.html.create('span')
:addClass('noprint')
:css('white-space', 'nowrap')
:css('font-size', '85%')
:wikitext(post_text)
)
end
end
local exist_message = ''
if exists then
if allow_cat then
categories = categories .. orphan_categories['outdated']
end
exist_message = tostring(
mw.html.create('sup')
:addClass('noprint')
:wikitext(
string.format(
'[%s]',
wikilink(
'Шаблон:Не переведено#Действия после появления перевода',
italic('убрать шаблон'),
'Пожалуйста, удалите шаблон, заменив «{{не переведено» на «{{подст:не переведено»'
)
)
)
)
end
local result
result = ru_link .. post_text
if not mw.isSubsting() then
result = result .. exist_message .. categories
end
return result
end
return p