پودمان:High-use: تفاوت میان نسخهها
ترجمه
Nazarzadeh (بحث | مشارکتها) جز (۱ نسخه واردشده) |
(ترجمه) |
||
خط ۱۰: | خط ۱۰: | ||
if count == nil then | if count == nil then | ||
if frame.args[1] == "risk" then | if frame.args[1] == "risk" then | ||
return_value = " | return_value = "تعداد بسیار زیادی" | ||
else | else | ||
return_value = " | return_value = "تعداد زیادی" | ||
end | end | ||
else | else | ||
خط ۳۰: | خط ۳۰: | ||
else | else | ||
-- Round to nearest | -- Round to nearest | ||
return_value = string.format(" | return_value = string.format("نزدیک %s", mw.getContentLanguage():formatNum(math.floor( (count / 10^(f)) + 0.5) * (10^(f))) ) | ||
end | end | ||
خط ۵۵: | خط ۵۵: | ||
function p.text(frame, count) | function p.text(frame, count) | ||
local bot_text = "\n\n----\ | local bot_text = "\n\n----\nآمار کاربردها مکمن است توسط ربات بهروز شود." | ||
if frame.args["nobot"] == true then | if frame.args["nobot"] == "true" then | ||
bot_text = "" | bot_text = "" | ||
end | end | ||
خط ۶۴: | خط ۶۴: | ||
local title = mw.title.getCurrentTitle() | local title = mw.title.getCurrentTitle() | ||
if title.subpageText == " | if title.subpageText == "توضیحات" or title.subpageText == "موقت" then | ||
title = title.basePageTitle | title = title.basePageTitle | ||
end | end | ||
local templatecount = string.format("https://templatecount.toolforge.org/index.php?lang= | local templatecount = string.format("https://templatecount.toolforge.org/index.php?lang=fa&namespace=%s&name=%s",mw.title.getCurrentTitle().namespace,mw.uri.encode(title.text)) | ||
local used_on_text = string.format("''' | local used_on_text = string.format("'''این %s در [%s %s صفحه] به کار رفتهاست'''", | ||
(mw.title.getCurrentTitle().namespace == 828 and " | (mw.title.getCurrentTitle().namespace == 828 and "پودمان" or "الگو"), | ||
templatecount, | templatecount, | ||
p.num(frame, count) | p.num(frame, count) | ||
) | ) | ||
local sandbox_text = string.format(" | local sandbox_text = string.format("زیرصفحهٔ [[%s/موقت|/موقت]] یا [[%s/آزمایش|/آزمایش]] %s بیازمایید %s", | ||
title.fullText, title.fullText, | title.fullText, title.fullText, | ||
(mw.title.getCurrentTitle().namespace == 828 and " | (mw.title.getCurrentTitle().namespace == 828 and "پودمان" or "الگو"), | ||
(mw.title.getCurrentTitle().namespace == 828 and "." or "، یا در یک زیرصفحهٔ کاربری بیازمایید.") | |||
) | ) | ||
خط ۸۷: | خط ۸۷: | ||
info = "<br />" .. frame.args["info"] | info = "<br />" .. frame.args["info"] | ||
end | end | ||
sandbox_text = string.format(".%s<br /> | sandbox_text = string.format(".%s<br /> برای جلوگیری از اخلال ویکی و فشار به سرورها، همهد تغییرات باید اول در %s آزمایش شوند. لطفاً تمام تغییرات را در یک ویرایش به الگوی اصلی بیاورید. ", | ||
info, sandbox_text | info, sandbox_text | ||
) | ) | ||
else | else | ||
sandbox_text = string.format(" | sandbox_text = string.format(" و تغییر آن میتواند تأثیر گستردهای داشته باشد. لطفاً تغییرات را در %s ", | ||
sandbox_text | sandbox_text | ||
) | ) | ||
end | end | ||
local discussion_text = " | local discussion_text = "لطفاً تغییرات را اول در " | ||
if frame.args["2"] and frame.args["2"] ~= "" and frame.args["2"] ~= "yes" then | if frame.args["2"] and frame.args["2"] ~= "" and frame.args["2"] ~= "yes" then | ||
discussion_text = string.format("%sat [[%s]]", discussion_text, frame.args["2"]) | discussion_text = string.format("%sat [[%s]]", discussion_text, frame.args["2"]) | ||
else | else | ||
discussion_text = string.format("% | discussion_text = string.format("%s [[%s|صفحهٔ بحث]]", discussion_text, title.talkPageTitle.fullText ) | ||
end | end | ||
return table.concat({used_on_text, sandbox_text, discussion_text, " | return table.concat({used_on_text, sandbox_text, discussion_text, " طرح کنید و بعد به کار ببندید.", bot_text}) | ||
end | end | ||