کاربر ناشناس
+convert to fa
Hasaninasab (بحث | مشارکتها) (صفحهای تازه حاوی «local p = {} -- Use this function from templates. function p.convert_template(frame) -- Third argument is optional; If true given, signs...» ایجاد کرد) |
(+convert to fa) |
||
خط ۸: | خط ۸: | ||
end | end | ||
-- Use | -- Use these function directly in modules. | ||
function p.convert_cordination_template(frame) | |||
return p.convert('en',p.convert_cordination(frame.args[1])) | |||
end | |||
function p.convert_cordination(text) | |||
text = tostring(text) | |||
text = mw.ustring.gsub(text, "شمالی", "N") | |||
text = mw.ustring.gsub(text, "شرقی", "E") | |||
text = mw.ustring.gsub(text, "جنوبی", "S") | |||
text = mw.ustring.gsub(text, "غربی", "W") | |||
return text | |||
end | |||
function p.convert_Fa_cordination(text) | |||
text = tostring(text) | |||
text = mw.ustring.gsub(text,"N", "شمالی") | |||
text = mw.ustring.gsub(text,"E", "شرقی") | |||
text = mw.ustring.gsub(text, "S","جنوبی") | |||
text = mw.ustring.gsub(text, "W","غربی") | |||
return text | |||
end | |||
function p.convert(lang, text, signs, virgule) | function p.convert(lang, text, signs, virgule) | ||
text = tostring(text) | text = tostring(text) | ||
خط ۲۵: | خط ۴۸: | ||
text = mw.ustring.gsub(text, "[8٨]", "۸") | text = mw.ustring.gsub(text, "[8٨]", "۸") | ||
text = mw.ustring.gsub(text, "[9٩]", "۹") | text = mw.ustring.gsub(text, "[9٩]", "۹") | ||
text = mw.ustring.gsub(text, "[.]", "٫") | |||
if type(signs) ~= "nil" then | if type(signs) ~= "nil" then | ||
text = mw.ustring.gsub(text, "%.", "٫") | text = mw.ustring.gsub(text, "%.", "٫") | ||
--تبدیل % به درصد فارسی ٪ را نگذاشتم چون ممکن است کدهای درصدی وارد شده به پودمان را خراب کند. | |||
end | end | ||
elseif lang == "ar" or lang == "ckb" or lang == "ks" then -- برای عربی، کردی سورانی، کشمیری | elseif lang == "ar" or lang == "ckb" or lang == "ks" then -- برای عربی، کردی سورانی، کشمیری | ||
خط ۵۱: | خط ۷۶: | ||
text = mw.ustring.gsub(text, "[۹٩]", "9") | text = mw.ustring.gsub(text, "[۹٩]", "9") | ||
text = mw.ustring.gsub(text, "٫", ".") | text = mw.ustring.gsub(text, "٫", ".") | ||
text = mw.ustring.gsub(text, "٪", "%") | |||
if type(virgule) ~= "nil" then | if type(virgule) ~= "nil" then | ||
text = mw.ustring.gsub(text, "،", ",") | text = mw.ustring.gsub(text, "،", ",") | ||
text = mw.ustring.gsub(text, "٪", "%") | |||
end | end | ||
end | end |