Modul:Coordinates/i18n
Vzhled
Dokumentaci tohoto modulu lze vytvořit na stránce Modul:Coordinates/i18n/Dokumentace
-- Separating code from internationalization
-- kopie z Německých wikicest: https://de.wikivoyage.org/w/index.php?title=Modul:Coordinates/i18n&oldid=1418591
-- copy from dewikivoyage: https://de.wikivoyage.org/w/index.php?title=Modul:Coordinates/i18n&oldid=1418591
return {
-- administration
moduleInterface = {
suite = 'Coordinates',
sub = 'i18n',
serial = '2021-11-15',
},
-- internationalisation
errorMsg = {
'Nebyly zadány žádné parametry', -- 1: no parameter(s)
'Bylo zadáno příliš mnoho parametrů', -- 2: too many parameters
'Nepovolené znaky', -- 3: illegal characters
'Více než tři číselné parametry', -- 4: more than 3 numeric dms parameters
'Stupně mimo rozsah hodnot', -- 5: degree out of range
'Minuty mimo rozsah hodnot', -- 6: minute out of range
'Stupeň není celé číslo', -- 7: degree no integer
'Vteřiny mimo rozsah hodnot', -- 8: second out of range
'Minuty nejsou celé číslo', -- 9: minute no integer
'Směr není posledním parametrem', -- 10: direction not last parameter
'Záporná hodnota není povolena', -- 11: invalid negative value
'Nesprávný směr zeměpisné šířky/délky', -- 12: wrong lat/long direction
'Zeměpisná šířka mimo rozsah hodnot', -- 13: latitude out of range
'Není uveden žádný vzor', -- 14: no pattern given
noError = 'Žádná chyba', -- no Error
unknown = 'Neznámá chyba', -- unknown error
faulty = 'Chybné souřadnice' -- faulty coordinate
},
-- maintenance categories
categories = {
faulty = '[[Kategorie:Údržba:Stránky s nesprávnými souřadnicemi]]',
-- faulty coordinate
-- same as defined in [[MediaWiki:Geodata-broken-tags-category]]
dms = '[[Kategorie:Údržba:DMS souřadnice]]'
-- coordinate given as dms, not as decimal
},
-- for input
-- de: O = E -> +1
-- it, fr: O = W -> -1
inputLetters = {
N = { 1, 'lat' },
S = { -1, 'lat' },
E = { 1, 'long' },
W = { -1, 'long' },
-- S = { 1, 'lat' }, --cs: S označuje south (jih) nebo sever?
J = { -1, 'lat' },
V = { 1, 'long' },
Z = { -1, 'long' }
},
-- for output
outputLetters = { N = 'S', S = 'J', E = 'V', W = 'Z' },
decimalPoint = ',',
-- predefined deg-min-sec output formats
dmsFormats = {
f1 = { delimiter = ' ', leadZeros = false }, -- default
f2 = { delimiter = ' ', leadZeros = true },
f3 = { delimiter = '', leadZeros = false },
f4 = { delimiter = '', leadZeros = true }
}
}