विभाग:Convert/text
This page defines text used by Module:Convert. All documentation (from Module:Convert/doc) is at that module. The text includes messages and categories output by the module, and parameters used as input.
This is a separate module to simplify translation for use on another wiki. For example, see translation_table
and the other tables in bn:Module:Convert/text. Documentation is at Template:Convert/Transwiki guide.
Any changes should first be tested at Module:Convert/text/sandbox—see Template:Convert/testcases#Sandbox testcases.
--[[ Text used by Module:Convert, for bn.wikipedia.org (Bangla).
This is a separate module to simplify translation for use on another wiki.
Module:Convert responds to text parameters, and can display text.
Nearly all that text is defined in:
* Module:Convert/data (unit definitions)
* Module:Convert/text (parameter and message definitions)
]]
local translation_table = {
-- Tables to translate digits from/to en.
-- The to_en table can be calculated from the from_en table, but that
-- overhead seems excessive for each convert.
group = 2, -- group numbers 3 digits, then 2 digits
plural_suffix = '', -- disable plural unit names
from_en = {
['0'] = '०',
['1'] = '१',
['2'] = '२',
['3'] = '३',
['4'] = '४',
['5'] = '५',
['6'] = '६',
['7'] = '७',
['8'] = '८',
['9'] = '९',
},
to_en = {
['०'] = '0',
['१'] = '1',
['२'] = '2',
['३'] = '3',
['४'] = '4',
['५'] = '5',
['६'] = '6',
['७'] = '7',
['८'] = '8',
['९'] = '9',
},
}
-- Some units accept an SI prefix before the unit code, such as "kg" for kilogram.
local SIprefixes = {
-- The prefix field is what the prefix should be, if different from the prefix used.
-- Currently, this table defines prefixes like "k" as well as their Bangla equivalent.
-- That is done so units like "km" will work.
4, -- SIprefixes[1] = maximum number of characters (as seen by mw.ustring.sub) in a prefix
-- nano = 'ন্যা' in UTF-8: (e0 a6 a8), (e0 a7 8d), (e0 a6 af), (e0 a6 be)
['Z'] = { exponent = 21, name = 'झेट्टा',prefix = 'झे' },
['E'] = { exponent = 18, name = 'एक्झा',prefix = 'ए' },
['P'] = { exponent = 15, name = 'पेटा' ,prefix = 'पे' },
['T'] = { exponent = 12, name = 'टेरा' ,prefix = 'टे' },
['G'] = { exponent = 9, name = 'गिगा' ,prefix = 'गि' },
['M'] = { exponent = 6, name = 'मेगा' ,prefix = 'मे' },
['k'] = { exponent = 3, name = 'किलो' ,prefix = 'कि' },
['h'] = { exponent = 2, name = 'हेक्टो' , prefix = 'हे' },
['da'] = { exponent = 1, name = 'डेका' ,prefix ='डेका' },
['d'] = { exponent = -1, name = 'डेसी' ,prefix = 'डेसी' },
['c'] = { exponent = -2, name = 'सेंटी' , prefix = 'सें' },
['m'] = { exponent = -3, name = 'मिली' , prefix = 'मि' },
['μ'] = { exponent = -6, name = 'मायक्रो',prefix = 'μ' }, -- key = 'GREEK SMALL LETTER MU' (U+03BC) utf-8 CE BC
['µ'] = { exponent = -6, name = 'मायक्रो',prefix = 'µ' }, -- key = 'MICRO SIGN' (U+00B5) utf-8 C2 B5
['u'] = { exponent = -6, name = 'मायक्रो',prefix = 'u' }, -- not an SI prefix, but allow for people typing this
['n'] = { exponent = -9, name = 'नॅनो' ,prefix = 'नॅ' },
['p'] = { exponent = -12, name = 'पिको' ,prefix = 'पि' },
['f'] = { exponent = -15, name = 'फेम्टो' ,prefix = 'फे' },
['a'] = { exponent = -18, name = 'अॅट्टो',prefix = 'अॅ' },
['z'] = { exponent = -21, name = 'झेप्टो' ,prefix = 'झे' },
['y'] = { exponent = -24, name = 'योक्टो', prefix = 'यो' },
}
-- Some units can be qualified with one of the following prefixes, when linked.
local customary_units = {
{ "US", link = "United States customary units" },
{ "U.S.", link = "United States customary units" },
{ "imperial", link = "Imperial unit" },
{ "imp", link = "Imperial unit" },
}
-- Names when using engineering notation (a prefix of "eN" where N is a number).
-- key = { "name", link = "article title", exponent = key }
-- If lk=on and link is defined, the name of the number will appear as a link.
local eng_scales = {
["3"] = { "हजार", exponent = 3 },
["6"] = { "दशलक्ष", exponent = 6 },
["9"] = { "दहा कोटी", link = "1000000000 (number)", exponent = 9 },
["12"] = { "trillion", link = "1000000000000 (number)", exponent = 12 },
["15"] = { "quadrillion", link = "1000000000000000 (number)", exponent = 15 },
}
-- When appropriate, the following categories can be included in the output.
local all_categories = {
general = "[[वर्ग:रुपांतरण त्रूटी असलेली पाने]]",
mismatch = "[[वर्ग:रुपांतरण मोजमाप जुळत नसणारी पाने]]",
option = "[[वर्ग:रुपांतरण अवैध विकल्प]]",
unknown = "[[वर्ग:रुपांतरण अनोळखी एकक]]",
}
-- Following puts wanted style around each unit code marked like '...%{ft%}...'.
local unitcode_regex = '%%([{}])'
local unitcode_replace = { ['{'] = '<code style="background:transparent;">', ['}'] = '</code>' }
-- All messages that may be displayed if a problem occurs.
local all_messages = {
-- One of the following prefixes is inserted before each message.
cvt_prefix_error = '<span style="color:black; background-color:orange;">[[Module talk:Convert|रुपांतरण त्रूटी]]:',
cvt_prefix_warning = '<span style="color:black; background-color:peachpuff;">[[Module talk:Convert|रुपांतरण सूचना]]:',
-- Each of following messages is a table:
-- { [1] = 'error text',
-- [2] = 'category key',
-- regex = gsub_regex,
-- replace = gsub_table,
-- warning = true, -- omitted for an error message; selects cvt_prefix_error or cvt_prefix_warning
-- }
cvt_bad_default = { '"%s" एककाचे अविचल अवैध आहे', 'unknown' },
cvt_bad_num = { 'मूल्य "%s" अंकातच आवश्यक आहे', 'general' },
cvt_bad_prec = { 'प्राचल अचूकता "%s" हा पूर्णांकच हवा', 'साधारण' },
cvt_bad_sigfig = { 'Parameter sigfig "%s" must be a positive integer', 'general' },
cvt_bad_unit = { '"%s" एकक हे येथे अवैध आहे', 'unknown' },
cvt_big_prec = { 'अचूकता "%s" ही फारच मोठी आहे', 'general' },
cvt_bug_convert = { 'बग: नमूद केलेल्या एककांमध्ये रुपांतरण करु शकत नाही', 'general' },
cvt_empty_option = { 'Ignored empty option "%s"', 'option', warning = true },
cvt_invalid_num = { 'संख्या ही फारच मोठी किंवा छोटी आहे', 'general' },
cvt_lookup = { 'एकक "%s" हे चुकिच्या तर्हेने व्याख्यिकृत आहे', 'साधारण' },
cvt_mismatch = { '"%s" ला "%s" म्हणून बदलवू शकत नाही', 'विजोड' },
cvt_no_default = { 'एकक "%s" ला कोणतेही अविचल बहिर्दान एकक नाही', 'अनोळखी' },
cvt_no_num = { 'किंमत हवी', 'general' },
cvt_no_num2 = { 'वेगळी किंमत हवी', 'general' },
cvt_no_unit = { 'एककाचे नाव हवे', 'unknown' },
cvt_should_be = { '%s', 'general', regex = unitcode_regex, replace = unitcode_replace },
cvt_spell_unavailable = { 'Spelling is not available', 'option', warning = true },
cvt_unknown = { '"%s" एकक अनोळखी आहे', 'अनोळखी' },
cvt_unknown_option = { 'Ignored invalid option "%s"', 'option', warning = true },
}
-- Text to join input value/unit with output value/unit.
local disp_joins = {
["or"] = { " or " , "" },
["sqbr-sp"] = { " [" , "]" },
["sqbr-nbsp"] = { " [" , "]" },
["comma"] = { ", " , "" },
["slash-sp"] = { " / " , "" },
["slash-nbsp"] = { " / ", "" },
["slash-nosp"] = { "/" , "" },
["b"] = { " (" , ")" },
["br"] = { "<br/>" , "" },
}
-- Text to separate values in a range.
local range_types = {
["এবং"] = " এবং ", -- and
["+"] = " + ",
[","] = ", ",
[", and"] = ", and ",
[", or"] = ", or ",
["by"] = " by ",
["-"] = "–",
["to about"] = " to about ",
["and"] = { off = " and ", on = " and ", exception = true },
["or"] = { off = " or " , on = " or " , exception = true },
["to"] = { off = " to " , on = " to " , exception = true },
["to(-)"] = { off = " to ", on = "–" },
["+/-"] = { off = " ± ", on = " ± ", adj = " ± " },
["x"] = { off = " by ", on = " × ", is_range_x = true },
["xx"] = " × ",
["*"] = "×", -- use "*" to replace "x" in {{convert/2}} which is different from "x" in old {{convert}}
}
local range_aliases = {
["and(-)"] = "and",
["&"] = "and",
["–"] = "-",
["–"] = "-",
["to-"] = "to(-)",
["×"] = "x",
["±"] = "+/-",
}
-- Valid option names.
local en_option_name = {
-- ["local text for option name"] = "en name used in this module"
["abbr"] = "abbr",
["adj"] = "adj",
["debug"] = "debug",
["disp"] = "disp",
["comma"] = "comma",
["lang"] = "lang",
["lk"] = "lk",
["near"] = "near",
["order"] = "order",
["sigfig"] = "sigfig",
["sing"] = "adj", -- "sing" is an old alias for "adj"
["sortable"] = "sortable",
["sp"] = "sp",
["spell"] = "spell",
}
-- Valid option values.
-- Convention: parms.opt_xxx refers to an option that is set here
-- (not intended to be set by the template which invokes this module).
-- Example: At en.wiki, "abbr" includes:
-- ["comma"] = "opt_nocomma"
-- As a result, if the template uses abbr=comma, this script sets:
-- parms["opt_nocomma"] = true
-- parms["abbr"] = nil
-- Therefore parms.abbr will be nil, or will have one of the listed values
-- that do not start with "opt_".
local en_option_value = {
["abbr"] = {
-- ["local text for option value"] = "en value used in this module"
["comma"] = "opt_nocomma", -- no numsep in input or output numbers
["in"] = "in", -- use symbol for LHS unit
["mos"] = "mos", -- in a range, repeat the input unit (no longer used)
["none"] = "off", -- old name for "off"
["off"] = "off", -- use name for all units
["on"] = "on", -- use symbol for all units
["out"] = "out", -- use symbol for RHS unit (default)
["values"] = "opt_values", -- show only input and output numbers, not units
["~"] = "opt_also_symbol", -- show input unit symbol as well as name
},
["adj"] = {
["1"] = "opt_singular", -- unit name is singular when value satisfies: (-1 <= v and v < 0) or (0 < v and v <= 1)
["flip"] = "opt_flip", -- reverse order of input/output
["j"] = "opt_use_nbsp", -- "join": use " " instead of " " between value and unit name
["mid"] = "opt_adj_mid", -- adj=on with user-specified text before input unit
["nocomma"] = "opt_nocomma", -- no numsep in input or output numbers
["off"] = "", -- ignored (off is the default)
["on"] = "opt_adjectival", -- unit name is singular and hyphenated
["pre"] = "opt_one_preunit", -- user-specified text before input unit
["ri1"] = "ri1", -- round input with precision = 1
["ri2"] = "ri2", -- round input with precision = 2
["ri3"] = "ri3", -- round input with precision = 3
},
["disp"] = {
["/"] = "slash", -- join: '/'
["2"] = "opt_output_only",
["5"] = "opt_round5", -- round output value to nearest 5
["b"] = "b", -- join: '(...)'
["br"] = "br", -- join: '<br/>'
["comma"] = "comma", -- join: ','
["flip"] = "opt_flip", -- reverse order of input/output
["flip5"] = "opt_flip, opt_round5", -- disp=flip + disp=5
["nocomma"] = "opt_nocomma", -- no numsep in input or output numbers
["number"] = "opt_output_number_only",
["or"] = "or", -- join: 'or'
["out"] = "opt_output_only",
["output number only"] = "opt_output_number_only",
["output only"] = "opt_output_only",
["preunit"] = "opt_two_preunits", -- user-specified text before input and output units
["s"] = "slash", -- join: '/'
["slash"] = "slash", -- join: '/'
["sqbr"] = "sqbr", -- join: '[...]'
["table"] = "opt_table", -- output suitable for a table cell with align="right"
["tablecen"] = "opt_tablecen", -- output suitable for a table cell with align="center"
["u2"] = "opt_output_unit_only",
["unit"] = "opt_input_unit_only",
["unit2"] = "opt_output_unit_only",
["x"] = "x", -- join: 'by...×'
},
["near"] = {
["5"] = "opt_round5", -- round output value to nearest 5
},
["order"] = {
["flip"] = "opt_flip", -- reverse order of input/output
},
["comma"] = {
["5"] = "opt_comma5", -- only use numsep grouping if 5 or more digits
["gaps"] = "opt_gaps", -- use gaps, not numsep, to separate groups of digits
["gaps5"] = "opt_gaps, opt_comma5", -- opt_gaps + opt_comma5
},
["debug"] = {
["yes"] = "opt_sortable_debug", -- make the normally hidden sort key visible
},
["lang"] = {
["en"] = "opt_lang_en", -- use en digits for output, regardless of local language
},
["lk"] = {
["in"] = "in", -- link LHS unit name or symbol
["off"] = "", -- ignored (off is the default)
["on"] = "on", -- link all unit names or symbols
["out"] = "out", -- link RHS unit name or symbol
},
-- sigfig=x is handled as a special case: x must be an integer (possibly in local language) = 1 or more
["sortable"] = {
["off"] = "", -- ignored (off is the default)
["on"] = "opt_sortable", -- output numeric hidden sort field for use in a sortable table
},
["sp"] = {
["us"] = "opt_sp_us", -- use U.S. spelling (like "meter" instead of default "metre")
},
["spell"] = { -- only English spelling is supported; only for input; not scientific notation; only some fractions
["in"] = "opt_spell_in", -- spell input value in words
["In"] = "opt_spell_in, opt_spell_upper", -- spell input value in words with first letter uppercase
},
}
return {
SIprefixes = SIprefixes,
all_categories = all_categories,
all_messages = all_messages,
customary_units = customary_units,
disp_joins = disp_joins,
en_option_name = en_option_name,
en_option_value = en_option_value,
eng_scales = eng_scales,
range_aliases = range_aliases,
range_types = range_types,
translation_table = translation_table,
}