وحدة:Wikidata2/monolingualtext
وسيط |textformat=text
يستخدم اظهار النص فقط دون استخدام قوالب قالب:رمز لغة واسمها أو قالب:رمز لغة:
توصيف | وحدة:Wikidata2 | وحدة:Wikidata2/ملعب | مطابق؟ |
---|---|---|---|
{{#invoke:Wikidata2 |formatStatements |noref=t |textformat=text |property=P1448 |entityId=Q1065 }} | United Nations، 联合国، Organización de las Naciones Unidas، Организация Объединённых Наций، منظمة الأمم المتحدة و Organisation des Nations unies | United Nations، 联合国، Organización de las Naciones Unidas، Организация Объединённых Наций، منظمة الأمم المتحدة و Organisation des Nations unies | true |
وسيط |showlang=t
يستخدم لإظهار النص حسب تنسيق قالب:رمز لغة واسمها: ملاحظة (لا يستخدم القالب في النص العربي)
توصيف | وحدة:Wikidata2 | وحدة:Wikidata2/ملعب | مطابق؟ |
---|---|---|---|
{{#invoke:Wikidata2 |formatStatements |showlang=t |noref=t |property=P1448 |entityId=Q1065 }} | (بالإنجليزية: United Nations)، (بالصينية: 联合国)، (بالإسبانية: Organización de las Naciones Unidas)، (بالروسية: Организация Объединённых Наций)، منظمة الأمم المتحدة و (بالفرنسية: Organisation des Nations unies) | (بالإنجليزية: United Nations)، (بالصينية: 联合国)، (بالإسبانية: Organización de las Naciones Unidas)، (بالروسية: Организация Объединённых Наций)، منظمة الأمم المتحدة و (بالفرنسية: Organisation des Nations unies) | true |
وسيط |nolang=ar
يستخدم لإخفاء لغة معينة من الناتج، مثلًا لا نريد ظهور الاسم العربي كون المقالة بالعربية فلن يضيف أي قيمة!:
توصيف | وحدة:Wikidata2 | وحدة:Wikidata2/ملعب | مطابق؟ |
---|---|---|---|
{{#invoke:Wikidata2 |formatStatements |showlang=t |entityId=Q1065 |noref=t |nolang=ar |property=P1448 }} | (بالإنجليزية: United Nations)، (بالصينية: 联合国)، (بالإسبانية: Organización de las Naciones Unidas)، (بالروسية: Организация Объединённых Наций) و (بالفرنسية: Organisation des Nations unies) | (بالإنجليزية: United Nations)، (بالصينية: 联合国)، (بالإسبانية: Organización de las Naciones Unidas)، (بالروسية: Организация Объединённых Наций) و (بالفرنسية: Organisation des Nations unies) | true |
وسيط |langpref=
يستخدم لتحديد اللغة المطلوب عرضها وتجاهل البقية:
توصيف | وحدة:Wikidata2 | وحدة:Wikidata2/ملعب | مطابق؟ |
---|---|---|---|
{{#invoke:Wikidata2|formatStatements| showlang=t| langpref=ar| noref=t| property=P1448| entityId=Q1065}} | منظمة الأمم المتحدة | منظمة الأمم المتحدة | true |
توصيف | وحدة:Wikidata2 | وحدة:Wikidata2/ملعب | مطابق؟ |
---|---|---|---|
{{#invoke:Wikidata2|formatStatements| showlang=t| langpref=en| noref=t| property=P1448| entityId=Q1065}} | (بالإنجليزية: United Nations) | (بالإنجليزية: United Nations) | true |
القيم المقبولة الأخرى هي : justlang وlangcode
- مثال
|langpref=justlang
توصيف | وحدة:Wikidata2 | وحدة:Wikidata2/ملعب | مطابق؟ |
---|---|---|---|
{{#invoke:Wikidata2|formatStatements| langpref=justlang| noref=t| property=P1448| entityId=Q1065| firstvalue=1}} | الإنجليزية | الإنجليزية | true |
- مثال
|langpref=langcode
توصيف | وحدة:Wikidata2 | وحدة:Wikidata2/ملعب | مطابق؟ |
---|---|---|---|
{{#invoke:Wikidata2|formatStatements| langpref=langcode| noref=t| property=P1448| entityId=Q1065| firstvalue=1}} | en | en | true |
local p = {}
local lang_module = require("وحدة:لغات")
local function isvalid(value)
return value and value ~= "" and value or nil
end
local function full_temp(lang_code, lang_name, text)
-- local template = mw.getCurrentFrame():expandTemplate { title = "رمز لغة واسمها", args = { lang_code, "", text } }
local lang_name = lang_module["اسم لغة"]({ args = { lang_code, "ال" } })
local temp_text = lang_module["قالب رمز لغة"]({ args = { lang_code, text } })
local template = string.format("([[اللغة %s|ب%s]]: %s)",
lang_name,
lang_name,
temp_text
)
mw.log(template)
return template
end
local function short_temp(lang_code, text)
local template = lang_module["قالب رمز لغة"]({ args = { lang_code, text } })
-- local template = mw.getCurrentFrame():expandTemplate { title = "رمز لغة", args = { lang_code, text } }
return template
end
function p._main(datavalue, datatype, options)
local lang_code = datavalue.value.language
local text = datavalue.value.text
local lang_name = mw.language.fetchLanguageName(lang_code, "ar")
if lang_code == "mis" or lang_code == "mul" then -- Unsupported language
return text
end
local nolang = isvalid(options.nolang)
if nolang == lang_code then
return ""
end
if isvalid(options.langpref) then
if options.langpref == "justlang" then
return lang_name
elseif options.langpref == "langcode" then
return lang_code
else
if lang_code == options.langpref then
if isvalid(options.formatting) == "text" or lang_name == "العربية" or lang_code == "ar" then
return text
elseif isvalid(options.showlang) then
return full_temp(lang_code, lang_name, text)
else
return short_temp(lang_code, text)
end
end
end
else
if lang_name == "العربية" or lang_code == "ar" then
return text
elseif isvalid(options.showlang) then
return full_temp(lang_code, lang_name, text)
else
return short_temp(lang_code, text)
end
end
return ""
end
function p.main(frame)
local datavalue = {
value = {
language = frame.args["language"],
text = frame.args["text"]
}
}
local datatype = frame.args["datatype"]
local options = frame.args
return p._main(datavalue, datatype, options)
end
return p