پودمان:AlborzInfoBox/Data/Geography
توضیحات این پودمان میتواند در پودمان:AlborzInfoBox/Data/Geography/توضیحات قرار گیرد.
local p = {}
p.fields = {
country = { label = "کشور", arg = "کشور", default = "ایران" },
province = { label = "استان", arg = "استان", default = "البرز" },
county = { label = "شهرستان", arg = "شهرستان" },
district = { label = "بخش", arg = "بخش" },
ruraldistrict = { label = "دهستان", arg = "دهستان" },
city = { label = "شهر", arg = "شهر" },
capital = { label = "مرکز", arg = "مرکز" },
population = { label = "جمعیت", arg = "جمعیت" },
area = { label = "مساحت", arg = "مساحت" },
elevation = { label = "ارتفاع", arg = "ارتفاع" },
mayor = { label = "شهردار", arg = "شهردار" },
phone = { label = "پیششماره", arg = "پیششماره" },
plate = { label = "پلاک خودرو", arg = "پلاک خودرو" },
website = { label = "وبگاه", arg = "وبگاه" },
established = { label = "سال تأسیس", arg = "سال تأسیس" },
river = { label = "رودخانه", arg = "رودخانه" },
source = { label = "سرچشمه", arg = "سرچشمه" },
mouth = { label = "ریزشگاه", arg = "ریزشگاه" },
length = { label = "طول", arg = "طول" },
depth = { label = "عمق", arg = "عمق" },
mountainrange = { label = "رشتهکوه", arg = "رشتهکوه" },
waterfallheight = { label = "ارتفاع آبشار", arg = "ارتفاع آبشار" },
footnotes = { label = "پانویس", arg = "پانویس" }
}
p.layouts = {
city = {
"country",
"province",
"county",
"district",
"population",
"area",
"elevation",
"mayor",
"phone",
"plate",
"website",
"footnotes"
},
village = {
"country",
"province",
"county",
"district",
"ruraldistrict",
"population",
"elevation",
"website",
"footnotes"
},
county = {
"country",
"province",
"capital",
"population",
"area",
"website",
"footnotes"
},
district = {
"country",
"province",
"county",
"capital",
"population",
"website",
"footnotes"
},
ruraldistrict = {
"country",
"province",
"county",
"district",
"capital",
"population",
"website",
"footnotes"
},
mountain = {
"province",
"county",
"elevation",
"mountainrange",
"footnotes"
},
cave = {
"province",
"county",
"length",
"depth",
"footnotes"
},
waterfall = {
"province",
"county",
"river",
"waterfallheight",
"footnotes"
},
river = {
"province",
"length",
"source",
"mouth",
"footnotes"
},
park = {
"province",
"county",
"area",
"established",
"website",
"footnotes"
}
}
return p