پودمان:AlborzOrganization/Data

نسخهٔ تاریخ ‏۵ اوت ۲۰۲۶، ساعت ۱۶:۵۵ توسط Modir (بحث | مشارکت‌ها) (صفحه‌ای تازه حاوی «-------------------------------------------------------------------------------- -- Module:AlborzOrganization/Data -- Wiki Alborz Organization Information System -- Version 1.0 -------------------------------------------------------------------------------- local p = {} -------------------------------------------------------------------------------- -- META -----------------------------------------------------------------------------...» ایجاد کرد)
(تفاوت) → نسخهٔ قدیمی‌تر | نمایش نسخهٔ فعلی (تفاوت) | نسخهٔ جدیدتر ← (تفاوت)

توضیحات این پودمان می‌تواند در پودمان:AlborzOrganization/Data/توضیحات قرار گیرد.

--------------------------------------------------------------------------------
-- Module:AlborzOrganization/Data
-- Wiki Alborz Organization Information System
-- Version 1.0
--------------------------------------------------------------------------------

local p = {}

--------------------------------------------------------------------------------
-- META
--------------------------------------------------------------------------------

p.meta = {

	title = "سازمان",
	imageWidth = "250px"

}

--------------------------------------------------------------------------------
-- LOOKUP
--------------------------------------------------------------------------------

p.lookup = {

	------------------------------------------------------------
	-- Title
	------------------------------------------------------------

	name            = "name",
	["نام"]         = "name",

	fullname        = "fullname",
	["نام کامل"]    = "fullname",

	shortname       = "shortname",
	["نام کوتاه"]   = "shortname",

	enname          = "enname",
	["نام انگلیسی"] = "enname",

	logo            = "logo",
	["نشان"]        = "logo",

	image           = "image",
	["تصویر"]       = "image",

	caption         = "caption",
	["توضیح تصویر"] = "caption",

	------------------------------------------------------------
	-- Classification
	------------------------------------------------------------

	type            = "type",
	["نوع"]         = "type",

	category        = "category",
	["گونه"]        = "category",

	industry        = "industry",
	["صنعت"]        = "industry",

	field           = "field",
	["حوزه فعالیت"] = "field",

	status          = "status",
	["وضعیت"]       = "status",

	------------------------------------------------------------
	-- Dates
	------------------------------------------------------------

	established     = "established",
	["تأسیس"]       = "established",

	founder         = "founder",
	["بنیانگذار"]   = "founder",
	["بنیان‌گذار"]  = "founder",

	------------------------------------------------------------
	-- Management
	------------------------------------------------------------

	owner           = "owner",
	["مالک"]        = "owner",

	parent          = "parent",
	["سازمان مادر"] = "parent",

	chairman        = "chairman",
	["رئیس"]        = "chairman",

	ceo             = "ceo",
	["مدیرعامل"]    = "ceo",

	manager         = "manager",
	["مدیر"]        = "manager",

	------------------------------------------------------------
	-- Location
	------------------------------------------------------------

	country         = "country",
	["کشور"]        = "country",

	province        = "province",
	["استان"]       = "province",

	city            = "city",
	["شهر"]         = "city",

	district        = "district",
	["منطقه"]       = "district",

	address         = "address",
	["نشانی"]       = "address",

	coordinates     = "coordinates",
	["مختصات"]      = "coordinates",

	------------------------------------------------------------
	-- Statistics
	------------------------------------------------------------

	employees       = "employees",
	["کارکنان"]     = "employees",

	branches        = "branches",
	["شعب"]         = "branches",

	area            = "area",
	["مساحت"]       = "area",

	------------------------------------------------------------
	-- Activity
	------------------------------------------------------------

	products        = "products",
	["محصولات"]     = "products",

	services        = "services",
	["خدمات"]       = "services",

	research        = "research",
	["زمینه پژوهش"] = "research",

	------------------------------------------------------------
	-- Contact
	------------------------------------------------------------

	phone           = "phone",
	["تلفن"]        = "phone",

	fax             = "fax",
	["فکس"]         = "fax",

	email           = "email",
	["ایمیل"]       = "email",

	website         = "website",
	["وبگاه"]       = "website",

	instagram       = "instagram",
	["اینستاگرام"]  = "instagram",

	telegram        = "telegram",
	["تلگرام"]      = "telegram"

}

--------------------------------------------------------------------------------
-- GROUPS
--------------------------------------------------------------------------------

p.groups = {

	{
		title = "مشخصات",

		fields = {

			{"نام کامل","fullname"},
			{"نام کوتاه","shortname"},
			{"نام انگلیسی","enname"},
			{"نوع","type"},
			{"گونه","category"},
			{"حوزه فعالیت","field"},
			{"صنعت","industry"},
			{"وضعیت","status"}

		}

	},

	{
		title = "موقعیت",

		fields = {

			{"کشور","country"},
			{"استان","province"},
			{"شهر","city"},
			{"منطقه","district"},
			{"نشانی","address"},
			{"مختصات","coordinates"}

		}

	},

	{
		title = "مدیریت",

		fields = {

			{"بنیان‌گذار","founder"},
			{"مالک","owner"},
			{"سازمان مادر","parent"},
			{"رئیس","chairman"},
			{"مدیرعامل","ceo"},
			{"مدیر","manager"}

		}

	},

	{
		title = "اطلاعات",

		fields = {

			{"سال تأسیس","established"},
			{"کارکنان","employees"},
			{"شعب","branches"},
			{"مساحت","area"}

		}

	},

	{
		title = "فعالیت",

		fields = {

			{"محصولات","products"},
			{"خدمات","services"},
			{"زمینه پژوهش","research"}

		}

	},

	{
		title = "ارتباطات",

		fields = {

			{"تلفن","phone"},
			{"فکس","fax"},
			{"ایمیل","email"},
			{"وبگاه","website"},
			{"اینستاگرام","instagram"},
			{"تلگرام","telegram"}

		}

	}

}

--------------------------------------------------------------------------------

return p