پودمان:List: تفاوت میان نسخه‌ها

fa>Paine Ellsworth
xfer from sandbox per edit request on talk page
 
جز ۱ نسخه واردشده
 
(۶ نسخهٔ میانی ویرایش شده توسط ۴ کاربر نشان داده نشد)
خط ۱: خط ۱:
-- برای فارسی‌سازی بهتر، بخشی از این پودمان تغییریافته است که در همان‌جا به فارسی ذکر شده‌است. لطفاً هنگام تغییر پودمان دقت کنید.
-- This module outputs different kinds of lists. At the moment, bulleted,
-- This module outputs different kinds of lists. At the moment, bulleted,
-- unbulleted, horizontal, ordered, and horizontal ordered lists are supported.
-- unbulleted, horizontal, ordered, and horizontal ordered lists are supported.
خط ۷: خط ۸:


local p = {}
local p = {}
local num_con = require('Module:Numeral converter').convert


local listTypes = {
local listTypes = {
خط ۲۰: خط ۲۳:
local data = {}
local data = {}


-- Classes
-- Classes and TemplateStyles فهرست ساده/styles.css باید فارسی باشد
data.classes = {}
data.classes = {}
data.templatestyles = ''
if listType == 'horizontal' or listType == 'horizontal_ordered' then
if listType == 'horizontal' or listType == 'horizontal_ordered' then
table.insert(data.classes, 'hlist hlist-separated')
table.insert(data.classes, 'hlist')
data.templatestyles = mw.getCurrentFrame():extensionTag{
name = 'templatestyles', args = { src = 'Hlist/styles.css' }
}
elseif listType == 'unbulleted' then
elseif listType == 'unbulleted' then
table.insert(data.classes, 'plainlist')
table.insert(data.classes, 'plainlist')
data.templatestyles = mw.getCurrentFrame():extensionTag{
name = 'templatestyles', args = { src = 'فهرست ساده/styles.css' }
}
end
end
table.insert(data.classes, args.class)
table.insert(data.classes, args.class)
خط ۳۷: خط ۴۷:
indent = indent and indent * 1.6 or 0
indent = indent and indent * 1.6 or 0
if indent > 0 then
if indent > 0 then
data.marginLeft = indent .. 'em'
-- برای فارسی‌سازی بهتر، نام متغیر زیر از marginLeft به marginRight تغییر داده شده‌است
data.marginRight = indent .. 'em'
end
end
end
end
خط ۶۵: خط ۷۶:
else
else
data.listTag = 'ul'
data.listTag = 'ul'
end
-- Start number for ordered lists
data.start = num_con("en", args.start)
-- Two new persian translation for the start parameter
if args['آغاز'] then
data.start = num_con("en", args['آغاز'])
end
if args['شروع'] then
data.start = num_con("en", args['شروع'])
end
end


-- Start number for ordered lists
data.start = args.start
if listType == 'horizontal_ordered' then
if listType == 'horizontal_ordered' then
-- Apply fix to get start numbers working with horizontal ordered lists.
-- Apply fix to get start numbers working with horizontal ordered lists.
خط ۸۷: خط ۱۰۸:
data.itemStyle = args.item_style or args.li_style
data.itemStyle = args.item_style or args.li_style
data.items = {}
data.items = {}
for i, num in ipairs(mTableTools.numKeys(args)) do
for _, num in ipairs(mTableTools.numKeys(args)) do
local item = {}
local item = {}
item.content = args[num]
item.content = args[num]
خط ۱۱۰: خط ۱۳۱:
-- Render the main div tag.
-- Render the main div tag.
local root = mw.html.create('div')
local root = mw.html.create('div')
for i, class in ipairs(data.classes or {}) do
for _, class in ipairs(data.classes or {}) do
root:addClass(class)
root:addClass(class)
end
end
root:css{['margin-left'] = data.marginLeft}
-- برای فارسی‌سازی بهتر، نام متغیر زیر از marginLeft به marginRight تغییر داده شده‌است
root:css{['margin-right'] = data.marginRight}
if data.style then
if data.style then
root:cssText(data.style)
root:cssText(data.style)
خط ۱۳۱: خط ۱۵۳:


-- Render the list items
-- Render the list items
for i, t in ipairs(data.items or {}) do
for _, t in ipairs(data.items or {}) do
local item = list:tag('li')
local item = list:tag('li')
if data.itemStyle then
if data.itemStyle then
خط ۱۴۴: خط ۱۶۶:
end
end


return tostring(root)
return data.templatestyles .. tostring(root)
end
end


خط ۱۵۸: خط ۱۸۰:
local ret = ''
local ret = ''
if isDeprecated then
if isDeprecated then
ret = ret .. '[[Category:List templates with deprecated parameters]]'
ret = ret .. '[[رده:الگو:همراه پارامترهای بددانسته]]'
end
end
return ret
return ret
خط ۱۶۶: خط ۱۸۸:
if not listType or not listTypes[listType] then
if not listType or not listTypes[listType] then
error(string.format(
error(string.format(
"bad argument #1 to 'makeList' ('%s' is not a valid list type)",
"آرگومان بد #1 برای «makeList» («%s» نوع فهرست معتبر نمی‌باشد)",
tostring(listType)
tostring(listType)
), 2)
), 2)