Module:Version 2/l10n

Lua
CodeDiscussionLinksLink count SubpagesDocumentationTestsResultsSandboxLive code All modules

Documentation for this module may be created at Module:Version 2/l10n/doc

Code

local p = {}

-- start optional parameters

-- p.MissingLabelTrackingCategory = '[[Kategorie:Údržba:Doplnit štítek na Wikidatech]]' -- only on cswiki
-- p.MissingLabelTrackingCategory = '[[Category:Vikidatos trūkst nosaukuma latviešu valodā]]' -- only on lvwiki
p.langcode = "de" -- default: mw.language.getContentLanguage()
p.no_country_in_victories = false -- if country column should be shown in victory table
p.width_stageinfobox = '500px' -- width of stage infobox, default=320px

-- dawiki
-- p.classification_showcountry = false -- show country column in classification boxes

-- cawiki
-- p.jersey_pink_color = 'lightpink' -- standard is 'pink'

-- mkwiki, jawiki, ruwiki
-- p.WDlink_on = true -- WDlink_on is used to decide if a Wikidata flag will be shown
-- p.note = 'q' -- either q or f; Wikidata logos associated with cyclists in the infobox

-- dewiki
p.black_list = {'Ryan Anderson', 'Chris Butler', 'Josef Černý', 'Brad Evans', 'Robert Fontaine',
		'Carlos Giménez', 'George Harper', 'Mathias Jørgensen', 'Luis Lemus', 'David Lozano', 'Jan Maas',
		'James McLaughlin', 'Nikolaj Michajlow', 'Antonio Molina', 'Ben O\'Connor', 'Andrea Peron', 'Cristian Rodríguez',
		'Nick Schultz', 'Adam Stachowiak', 'Michel Vermote', 'Johannes Weber', 'Martin Weiss', 'Christopher Williams',
		'Samuel Williams', 'Peter Williams', 'Stephen Williams', 'Michael Woods', 'Michael Wright', 'Edoardo Zardini',
		'Georg Zimmermann'}
--[=[         
-- enwiki
p.black_list = {'Tiago da Silva', 'Jan Maas', 'Alexander Meier', 'James McLaughlin', 'Andrea Nencini', 'Johannes Weber'}
-- frwiki
p.black_list = {'Pierre Barbier', 'Jessica Cutler', 'Fernanda da Silva', 'Guillaume Delvaux', 'Willy De Waele',
		'Jules Dubois', 'Jean Dupont', 'Robert Fontaine', 'René Fournier', 'Pierre Gauthier', 'Marc Goossens',
		'Claude Guyot', 'Amy Hill', 'Liang Hongyu', 'Marcus Johansson', 'Mathias Jørgensen', 'José Mendoza',
		'Daniel Müller', 'Henri Parmentier', 'Jean Raynal', 'Pascal Robert', 'Jean-Yves Roy', 'Michael Shermer',
		'Juris Silovs', 'Jacques Simon', 'Guy Thomas', 'Ryan Thomas', 'Hans Vonk', 'Jan Wijnants' }
]=]

-- end optional parameters

-- start optional functions
--[=[   
function p.numeration(number, gender) -- numeration format, default is: number+'. '
-- cawiki
	if gender == 'm' then
		if number==1 then return number .. "r" end
		if number==2 then return number .. "n" end
		if number==3 then return number .. "r" end
		if number==4 then return number .. "t" end
		if number>4  then return number .. "è" end
	else 
		return number .. "a"
	end

-- eswiki
	if gender == 'm' then
		return number .. ".º"
	else
		return number .. ".ª"
	end
-- nlwiki
	return number .. "e"
-- ruwiki
	return number .. "-й"
-- eowik
	return number .. "-a"
-- frwiki
	if number == 1  then
		return "1<sup>er</sup>"
	else
		return number .. "<sup>e</sup>"
	end
-- huwiki
	return number .. "-ik"
end	
]=]
-- end optional functions


-- default
--full = 'j F Y'
--reference = full+'.'
--monthyear = 'F Y'
--daymonth_short = 'j M'
--daymonth_long = 'j F'
--day = 'j'

--[=[ 
-- arwiki
p.formatDate = {
    full = 'd F Y',
    reference = 'j F Y.',
    daymonth_short = 'd F',
    daymonth_long = 'd F',
    day = 'd F'
}

-- brwiki
p.formatDate = {
    full = 'j "a viz" F Y',
    daymonth_short = 'j "a viz" M',
    daymonth_long = 'j "a viz" F',
    day = 'j '
}

-- cawiki, eswiki
p.formatDate = {
    full = 'j "de" F "de" Y',
    daymonth_short = 'j "de" M',
    daymonth_long = 'j "de" F',
    day = 'j '
}

-- cswiki
p.formatDate = {
    full = 'j. xg Y',
    daymonth_short = 'j. xg',
    daymonth_long = 'j. xg',
}

-- dawiki, fiwiki, fowiki, nowiki
p.formatDate = {
    full = 'j. F Y',
    daymonth_short = 'j. M'
    daymonth_long = 'j. F'
    day = 'j.'
}
]=]
-- dewiki
p.formatDate = {
    full = 'j. F Y',
    reference = 'j. F Y',
    monthyear = 'F Y',
    daymonth_short = 'j. M',
    daymonth_long = 'j. F',
    day = 'j.'
}
--[=[ 
-- enwiki
p.formatDate = {
    full = 'F d, Y',
    reference = 'Y F, j.',
    monthyear = 'Y F',
    daymonth_short = 'M d',
    daymonth_long = 'F d'
    day = 'F d'
}

-- eowiki
p.formatDate = {
    full = 'j"-a de" F Y',
    daymonth_short = 'j"-a de" M',
    daymonth_long = 'j"-a de" F',
    day = 'j"-a "'
}

-- euwiki
p.formatDate = {
    full = 'Y".eko" F"k" j',
    daymonth_short = 'M"k" j',
    daymonth_long = 'F"k" j',   
    day = 'F"k "j'
}

-- fiwiki
p.formatDate = {
    full = 'j. F"ta" Y',
    daymonth_short = 'j. M'
}

-- frwiki
p.formatDate = {
    full = 'j F Y'
    reference = 'j F Y',
    monthyear = 'F Y'
}

-- huwiki
p.formatDate = {
    full = 'Y. F j',
    daymonth_short = 'M. j',
    daymonth_long = 'F j.',
    day = 'F j.'
}

-- jawiki
p.formatDate = {
    full = 'Y年m月d日',
    daymonth_short = 'm月d日',
    daymonth_long = 'm月d日',
    day = 'Y年m月d日'
}

-- lvwiki
p.formatDate = {
    full = 'Y. "gada" j. F',
    daymonth_long = 'Y. "gada" j. F',
    day = 'Y "gada" j.'
}

-- plwiki
p.formatDate = {
    full = 'j xg Y',
    daymonth_short = 'j M',
    daymonth_long = 'j xg'
}
]=]

p.translations = {}
p.translations["eo"] = {
	code = "Kodo",
	points_classification_for_teams = "Klasifiko po teamo",
	rest = "ripoza etapo",
	course = "Bicikla konkurso",
	speed = "Rapido",
	sprints_classification = "Klasifiko por la sprintoj",
	winner = "Venkinto",
	stopover = "Etapa urbo",
	hilly = "malebena etapo",
	date_of_birth = "Naskiĝtago",
	time_indiv = "individua kontraux-la-kronometro",
	unit_min = "min",
	journey_destination = "Alvenloko",
	time_team = "teama kontraux-la-kronometro",
	unit_kmh = "km/h",
	winner_fighting = "Superbatalema",
	stage_winner = "Venkinto de la etapo",
	winner_team = "Plej bona teamo",
	countries = "Landoj",
	team = "Teamo",
	inter = "mezgranda montaro etapo",
	Q23726798_pl = "Naciaj teamoj",
	unit_sec = "s",
	map = "Map",
	competition = "Konkuro",
	second = "Dua pozicio",
	cost = "Kosto",
	winner_regularity = "Regularidad",
	year = "Jaro",
	special_1 = "Special 1",
	team_name = "Nomo de la teamo",
	Q6154783_pl = "Mondaj teamoj",
	Q6154783 = "Monda teamo",
	note_short = "note",
	rider_name = "Antaŭnomo Nomo",
	competitions = "Konkuroj",
	distance_km = "Longo (km)",
	Q20653563_pl = "Sportaj grupoj 1",
	winner_sprint = "Plej bona sprinto",
	Q20638319 = "ProTeamo",
	Q20638319_pl = "ProTeamoj",
	Q20653564_pl = "Sportaj grupoj 2",
	winner_team_points = "Team points",
	Q23726798 = "Nacia teamo",
	nationality = "Lando",
	stage = "Etapo",
	dates = "Datoj",
	arriving_riders = "Alvenantoj",
	Q382927_pl = "Profesiistaj kontinentaj teamoj",
	country = "Lando",
	caption = "Caption",
	mountains_classification = "Klasifiko por la montaro",
	best_young_classification = "Klasifiko de la plej bona juno",
	teams_classifications = "Klasifiko po teamo",
	uphill = "malebena kontraux-la-kronometro",
	mixt_teams = "Miksaj teamoj",
	winner_mountain = "Plej bona grimpanto",
	note_long = "note",
	average_speed = "Averagxa rapido",
	stage_classification = "Etapa klasifiko",
	winner_point = "Klasifiko laux poentoj",
	winner_combination = "Plej bona por kombino",
	time_prologue = "prologo",
	Q2466826_pl = "Inaj teamoj",
	general_classification = "Gxenerala klasifiko",
	palmares = "Rezultoj",
	Q20652655 = "Amatora bicikla teamo",
	unit_pt = "pt",
	distance = "Longo",
	plain = "ebena etapo",
	mount = "montara etapo",
	winner_young = "Plej bona juno",
	Q20652655_pl = "Amatoraj biciklaj teamoj",
	nr_teams = "Teamoj",
	stages = "Etapoj",
	prolog = "Prolog",
	unit_pts = "pts",
	time_gap = "Time Gap",
	Q1756006_pl = "Kontinentaj teamoj",
	starting_riders = "Startantoj",
	Q2466826 = "Ina teamo",
	Q20639848_pl = "Regionaj aux klubaj teamoj",
	unit_h = "h",
	Q1756006 = "Kontinenta teamo",
	points = "Poentoj",
	Q382927 = "Profesiista kontinenta teamo",
	journey_origin = "Komencloko",
	overall_leader = "Estro de la gxeneralo klasado",
	rider = "Kuranto",
	picture = "Picture",
	Q20639848 = "Regiona aux kluba teamo",
	special_2 = "Special 2",
	Q20639847 = "Profesiista bicikla teamo",
	date = "Dato",
	Q20653566_pl = "Sportaj grupoj 3",
	points_classification = "Klasifiko laux poentoj",
	metas_volantes = "Metas volantes",
	third = "Tria pozicio",
	Q20639847_pl = "Profesiistaj biciklaj teamoj",
	documentation = "Dokumentado",
	race_details = "Gxeneralajxo",
	Q20653566 = "Sporta grupo 3",
	Q20653564 = "Sporta grupo 2",
	Q20653563 = "Sporta grupo 1",
	time = "Tempo",
	mixt_team = "Miksa teamo",
}
p.translations["en"] = {
	code = "Code",
	points_classification_for_teams = "Points classification for teams",
	rest = "rest day",
	course = "Course",
	Q20652655 = "Amateur cycling team",
	general_class_stage = "General classification after stage",
	Q664 = "Venezuela",
	speed = "Speed",
	Q142 = "France",
	competitions = "Competitions",
	Q55 = "Netherlands",
	Q145 = "United Kingdom",
	combativity = "Combativity",
	winner = "Winner",
	young = "Young",
	stopover = "Course",
	hilly = "hilly stage",
	date_of_birth = "Date of birth",
	Q26849121 = "Women's amateur cycling team",
	time_indiv = "individual time trial stage",
	unit_min = "'",
	time_gap = "Time Gap",
	race = "Race",
	Q717 = "Colombia",
	time_team = "team time trial stage",
	unit_kmh = "km/h",
	winner_fighting = "Combativity",
	Q408 = "Australia",
	stage_winner = "Stage winner",
	Q159 = "Russia",
	Q39 = "Switzerland",
	winner_team = "Team",
	stage_results = "Stage results",
	countries = "Countries",
	victories = "Victories",
	team = "Team",
	inter = "intermediate stage",
	Q23726798_pl = "National teams",
	error_propmissing = "Property <1> is missing in item '<2>' (<3>)",
	unit_sec = "''",
	map = "Map",
	competition = "Competition",
	second = "Second",
	cost = "Cost",
	year = "Year",
	special_1 = "Special 1",
	team_name = "Team name",
	Q6154783_pl = "WorldTeams",
	Q6154783 = "WorldTeam",
	sprints = "Sprints",
	cima_pantani = "Cima Pantani",
	note_short = "note",
	rider_name = "Rider",
	Q414 = "New Zeeland",
	sprints_classification = "Sprints classification",
	Q32 = "Luxembourg",
	Q31 = "Belgium",
	distance_km = "Distance (km)",
	Q37 = "Lithuania",
	Q36 = "Poland",
	Q35 = "Denmark",
	Q34 = "Sweden",
	Q20653563_pl = "Groupes sportifs I",
	winner_sprint = "Sprints",
	Q20638319 = "ProTeam",
	Q38 = "Italy",
	leader = "Leader",
	Q739 = "Netherlands",
	Q20638319_pl = "ProTeams",
	Q20653564_pl = "Groupes sportifs II",
	combative = "Combative",
	winner_team_points = "Team points",
	U23 = "U23",
	Q23726798 = "National team",
	nationality = "Country",
	endtime = "Endtime",
	legend = "Legend",
	card = "Card",
	stage = "Stage",
	dates = "Dates",
	arriving_riders = "Arriving riders",
	second_class_stage = "Secondary classifications after stage",
	Q382927_pl = "Professional continental teams",
	country = "Country",
	Q20 = "Norway",
	caption = "Caption",
	mountains_classification = "Mountains classification",
	Q29 = "Spain",
	Q33 = "Finland",
	best_young_classification = "Best young classification",
	image = "Image",
	teams_classifications = "Teams classifications",
	uphill = "uphill time trial stage",
	mixt_teams = "Mixt teams",
	winner_mountain = "Mountains",
	cima_coppy = "Cima Coppi",
	note_long = "note",
	Q96 = "Mexico",
	average_speed = "Average speed",
	stage_classification = "Stage classification",
	Q17 = "Japan",
	Q16 = "Canada",
	winner_point = "Points",
	winner_combination = "Combination",
	time_prologue = "time trial stage",
	Q2466826_pl = "Professional women teams",
	type = "Type",
	general_classification = "General classification",
	palmares = "Palmares",
	Q20639847_pl = "Professional cycling teams",
	Q183 = "Germany",
	Q30 = "United States of America",
	unit_pt = "pt",
	distance = "Distance",
	Q214 = "Slovakia",
	plain = "plain stage",
	mount = "mountain stage",
	winner_young = "Youth",
	Q20652655_pl = "Amateur cycling teams",
	Q26849121_pl = "Women's amateur cycling teams",
	nr_teams = "Teams",
	stages = "Stages",
	prolog = "Prologue",
	unit_pts = "pts",
	journey_destination = "Lieu d'arrivée",
	Q1756006_pl = "Continental teams",
	starting_riders = "Starting riders",
	sectional_view = "Sectional view",
	regularity = "Regularity",
	Q2466826 = "Professional woman team",
	fuga_pinarello = "Fuga Pinarello",
	mountain = "Mountain",
	azzuri_d_italia = "Azzurri d'Italia",
	Q20639848_pl = "Regional and club teams",
	combinated = "Combinated",
	unit_h = "h",
	Q1756006 = "Continental team",
	Q20653564 = "Groupe sportif II",
	Q382927 = "Professional continental team",
	journey_origin = "Journey origin",
	Q77 = "Uruguay",
	overall_leader = "Overall leader",
	rider = "Rider",
	picture = "Picture",
	Q20639848 = "Regional and club team",
	special_2 = "Special 2",
	class = "Class",
	Q20639847 = "Professional cycling team",
	unit_km = "km",
	date = "Date",
	Q20653566_pl = "Groupes sportifs III",
	points_classification = "Points classification",
	previous_team = "Previous team",
	metas_volantes = "Metas volantes",
	third = "Third",
	winner_regularity = "Regularidad",
	documentation = "Documentation",
	team_by_points = "Team by points",
	race_details = "Race details",
	Q20653566 = "Groupe sportif III",
	points = "Points",
	Q20653563 = "Groupe sportif I",
	time = "Time",
	mixt_team = "Mixt team",
}
p.translations["zh"] = {
	rider_name = "車手",
	note_short = "脚注",
	date_of_birth = "出生日期",
	note_long = "脚注",
	nationality = "国家",
}
p.translations["ca"] = {
	code = "Codi",
	points_classification_for_teams = "Classificació per equips",
	rest = "etapa de descans",
	course = "Cursa",
	general_class_stage = "Classificació general després de l'etapa",
	speed = "Velocitat",
	competitions = "Competicions",
	combativity = "Combativitat",
	Q20652655 = "Equip ciclista amateur",
	young = "Jove",
	stopover = "Ciutats d'etapa",
	hilly = "etapa accidentada",
	date_of_birth = "Data de naixement",
	time_indiv = "contrarellotge individual",
	time_gap = "Time Gap",
	time_team = "contrarellotge per equips",
	winner_fighting = "Combativitat",
	stage_winner = "Vencedor de l'etapa",
	stage_results = "Resultats de l’etapa",
	countries = "Països",
	race = "Cursa",
	team = "Equip",
	inter = "etapa de mitja muntanya",
	Q23726798_pl = "Equips nacionals",
	map = "Map",
	competition = "Competició",
	second = "Segon",
	cost = "Duració",
	year = "Any",
	special_1 = "Special 1",
	team_name = "Nom de l'equip",
	Q6154783_pl = "WorldTeams",
	Q6154783 = "WorldTeam",
	sprints = "Esprints",
	cima_pantani = "Cima Pantani",
	note_short = "Nota",
	rider_name = "Ciclista",
	sprints_classification = "Classificació dels esprints",
	distance_km = "Distància (km)",
	Q20653563_pl = "Grups esportius I",
	winner_sprint = "Esprints",
	Q20638319 = "ProTeam",
	leader = "Líder",
	Q20638319_pl = "ProTeams",
	Q20653564_pl = "Grups esportius II",
	combative = "Combatiu",
	winner_team_points = "Team points",
	Q23726798 = "Equip nacional",
	nationality = "Pais",
	legend = "Legend",
	card = "Card",
	stage = "Etapa",
	dates = "Dates",
	arriving_riders = "Corredors arrivats",
	second_class_stage = "Classificacions secundàries després de l'etapa",
	Q382927_pl = "Equips continentals professionals",
	country = "País",
	winner = "Guanyador",
	mountains_classification = "Classificació de la muntanya",
	best_young_classification = "Classificació del millor jove",
	Q24645209 = "mallot verd del líder de la classificació per punts",
	image = "Image",
	teams_classifications = "Classificació per equips",
	winner_team = "Equip",
	mixt_teams = "Equips mixtos",
	winner_mountain = "Muntanya",
	cima_coppy = "Cima Coppi",
	note_long = "Nota",
	average_speed = "Velocitat mitjana",
	stage_classification = "Classificació de l'etapa",
	winner_point = "Punts",
	winner_combination = "Combinada",
	time_prologue = "pròleg",
	Q2466826_pl = "Equips femenins",
	type = "Tipus",
	general_classification = "Classificació general",
	palmares = "Palmarès",
	Q20639847_pl = "Equips ciclistes professionals",
	distance = "Distància",
	plain = "etapa plana",
	mount = "etapa de muntanya",
	winner_young = "Joves",
	Q20652655_pl = "Equips ciclistes amateurs",
	nr_teams = "Equips",
	stages = "Etapes",
	prolog = "Pròleg",
	journey_destination = "Lloc d’arribada",
	Q1756006_pl = "Equips continentals",
	starting_riders = "Corredors sortits",
	sectional_view = "Sectional view",
	regularity = "Regularitat",
	Q2466826 = "Equip femení",
	fuga_pinarello = "Fuga Pinarello",
	mountain = "Muntanya",
	azzuri_d_italia = "Azzurri d'Italia",
	caption = "Caption",
	Q20639848_pl = "Equips regionals i de clubs",
	combinated = "Combinada",
	Q1756006 = "Equip continental",
	Q20653564 = "Grup esportiu II",
	Q382927 = "Equip continental professional",
	journey_origin = "Origen de la cursa",
	overall_leader = "Líder de la general",
	rider = "Corredor",
	picture = "Picture",
	Q20639848 = "Equip regional i de club",
	special_2 = "Special 2",
	Q20639847 = "Equip ciclista professional",
	date = "Data",
	Q20653566_pl = "Grups esportius III",
	points_classification = "Classificació per punts",
	previous_team = "Equip previ",
	metas_volantes = "Metes volants",
	third = "Tercer",
	winner_regularity = "Regularidad",
	documentation = "Documentation",
	team_by_points = "Equip per punts",
	race_details = "Detalls de la cursa",
	Q20653566 = "Grup esportiu III",
	points = "Punts",
	Q20653563 = "Grup esportiu I",
	time = "Temps",
	mixt_team = "Equip mixt",
}
p.translations["it"] = {
	unit_sec = "''",
	unit_pts = "pts",
	date = "Data",
	second = "Secondo",
	year = "Anno",
	unit_h = "h",
	note_long = "Nota",
	rider_name = "Ciclista",
	winner = "Vincitore",
	stopover = "Percorso",
	distance_km = "Distanza (km)",
	unit_pt = "pt",
	overall_leader = "Leader cl. generale",
	unit_min = "'",
	unit_kmh = "km/h",
	date_of_birth = "Data di nascita",
	stage_winner = "Vincitore di tappa",
	nationality = "Paese",
	stage = "Tappa",
	previous_team = "Previous team",
	third = "Terzo",
	note_short = "Nota",
	prolog = "Prologo",
}
p.translations["cs"] = {
	map = "Map",
	competition = "Soutěž",
	starting_riders = "Běžci",
	winner_team = "Nejlepší družstvo",
	course = "Závod",
	second = "Druhý",
	cost = "Náklady",
	winner_regularity = "Regularidad",
	year = "Ročník",
	winner_mountain = "Nejlepší vrchař",
	metas_volantes = "Metas volantes",
	date = "Datum",
	caption = "Caption",
	rider_name = "Cyklista",
	winner = "Vítěz",
	average_speed = "Rychlostní průměr",
	stopover = "Trasa",
	competitions = "Soutěže",
	distance_km = "Vzdálenost (km)",
	winner_point = "Vítěz bodovací soutěže",
	journey_origin = "Start",
	time_prologue = "prolog",
	winner_sprint = "Nejlepší sprinter",
	time_indiv = "individuální časovka",
	overall_leader = "Průběžný lídr",
	note_short = "note",
	picture = "Picture",
	journey_destination = "Cíl",
	special_1 = "Special 1",
	special_2 = "Special 2",
	time_team = "týmová časovka",
	palmares = "Konečné pořadí",
	nr_teams = "Týmy",
	winner_team_points = "Team points",
	winner_fighting = "Nejaktivnější jezdec",
	arriving_riders = "Příjezdy",
	stage_winner = "Vítěz",
	note_long = "note",
	nationality = "Stát",
	stage = "Etapa",
	distance = "Celková délka",
	dates = "Datum",
	inter = "kopcovitá etapa",
	third = "Třetí",
	countries = "Země",
	plain = "rovinatá etapa",
	mount = "horská etapa",
	documentation = "Dokumentace",
	winner_young = "Nejlepší mladý jezdec",
	race_details = "Přehled",
	winner_combination = "Nejlepší kombinovaná",
	date_of_birth = "Datum narození",
	country = "Země",
	stages = "Počet etap",
	prolog = "Prolog",
}
p.translations["ar"] = {
	code = "الرمز",
	points_classification_for_teams = "ترتيب الفرق حسب النقاط",
	rest = "يوم راحة",
	course = "سلسلة",
	general_class_stage = "التصنيف العام بعد المرحلة",
	speed = "السرعة",
	competitions = "مسابقات",
	Q20652655 = "فريق هواة دراجات",
	young = "شاب",
	stopover = "الدورة",
	hilly = "مرحلة التلال",
	date_of_birth = "تاريخ الولادة",
	Q26849121 = "فريق هواة دراجات إناث",
	unit_pt = "نقطة",
	unit_min = "دقيقة",
	time_gap = "إزاحة الوقت",
	race = "السباق",
	unit_kmh = "كم/س",
	winner_regularity = "انتظام",
	stage_winner = "الفائز بالمرحلة",
	stage_results = "نتائج المرحلة",
	countries = "بلدان",
	victories = "سجل الفوز",
	team = "فريق",
	inter = "مرحلة متوسطة",
	Q23726798_pl = "فرق وطنية",
	unit_sec = "ث",
	map = "خريطة",
	competition = "منافسة",
	second = "الثاني",
	cost = "الكلفة",
	special_1 = "مميز 1",
	team_name = "اسم الفريق",
	Q6154783_pl = "فرق عالمية",
	Q6154783 = "فريق عالمي",
	sprints = "سباقات السرعة",
	cima_pantani = "Cima Pantani",
	note_short = "ملاحظة",
	rider_name = "المتسابق",
	sprints_classification = "تصنيف السرعة",
	distance_km = "المسافة (كم)",
	Q20653563_pl = "مجموعات رياضية أولى",
	winner_sprint = "سباقات السرعة",
	Q20638319 = "فريق برو",
	leader = "القائد",
	Q20638319_pl = "فرق برو",
	Q20653564_pl = "مجموعات رياضية ثانية",
	combative = "متمرس",
	winner_team_points = "نقاط الفريق",
	Q23726798 = "فريق وطني",
	nationality = "البلد",
	legend = "أسطورة",
	card = "بطاقة",
	stage = "المرحلة",
	dates = "تاريخ",
	arriving_riders = "الدراجين في النهاية",
	second_class_stage = "التصنيفات الثانوية بعد المرحلة",
	Q382927_pl = "فرق قارية محترفة",
	country = "البلد",
	winner = "الفائز",
	mountains_classification = "تصنيف الجبال",
	best_young_classification = "ترتيب النقاط للشباب",
	image = "صورة",
	teams_classifications = "تصنيف الفرق حسب الوقت",
	winner_team = "الفريق",
	mixt_teams = "فرق مختلطة",
	winner_mountain = "تسلق الجبل",
	cima_coppy = "Cima Coppi",
	note_long = "ملاحظة",
	average_speed = "متوسط السرعة",
	stage_classification = "تصنيف الفرق ضد الساعة",
	winner_point = "حسب النقاط",
	winner_combination = "مجموعة",
	Q2466826_pl = "فرق إناث محترفة",
	type = "نوع",
	general_classification = "التصنيف العام",
	palmares = "المنصة",
	Q20639847_pl = "فرق دراجات محترفة",
	distance = "مسافة",
	plain = "مرحلة مستوية",
	mount = "مرحلة جبلية",
	winner_young = "أفضل شاب",
	Q20652655_pl = "فرق هواة دراجات",
	Q26849121_pl = "فرق هواة دراجات إناث",
	nr_teams = "الفرق",
	stages = "مراحل",
	unit_pts = "نقطة",
	journey_destination = "نقطة النهاية",
	Q1756006_pl = "فرق قارية",
	starting_riders = "الدراجين في البداية",
	sectional_view = "عرض الاقسام",
	regularity = "الانتظام",
	Q2466826 = "فريق إناث محترف",
	fuga_pinarello = "Fuga Pinarello",
	mountain = "الجبل",
	azzuri_d_italia = "Azzurri d'Italia",
	caption = "تعليق",
	Q20639848_pl = "فرق إقليمية وأندية",
	combinated = "ممتزجة",
	unit_h = "س",
	Q1756006 = "فريق قاري",
	Q20653564 = "مجموعة رياضية ثانية",
	Q382927 = "فريق قاري محترف",
	journey_origin = "نقطة البداية",
	overall_leader = "القائد العام",
	rider = "العداء",
	picture = "صورة",
	Q20639848 = "فريق إقليمي ونادي",
	special_2 = "مميز 2",
	class = "الصنف",
	Q20639847 = "فريق دراجات محترف",
	unit_km = "كم",
	date = "التاريخ",
	Q20653566_pl = "مجموعات رياضية ثالثة",
	points_classification = "تصنيف النقاط",
	previous_team = "الفريق السابق",
	metas_volantes = "سباقات السرعة",
	third = "الثالث",
	documentation = "توثيق",
	team_by_points = "فريق حسب النقاط",
	race_details = "تفاصيل السباق",
	Q20653566 = "مجموعة رياضية ثالثة",
	points = "النقاط",
	Q20653563 = "مجموعة رياضية أولى",
	time = "الوقت",
	mixt_team = "فريق مختلط",
}
p.translations["fi"] = {
	code = "Koodi",
	points_classification_for_teams = "Joukkuekilpailu",
	rest = "välipäivä",
	course = "Nimi",
	speed = "Nopeus",
	sprints_classification = "Sprinttikilpailu",
	winner = "Voittaja",
	stopover = "Reitti",
	hilly = "Mäkietappi",
	date_of_birth = "Syntymäaika",
	time_indiv = "Henkilökohtainen aika-ajo",
	unit_min = ".",
	journey_destination = "Saapumispaikka",
	time_team = "Joukkueaika-ajo",
	unit_kmh = "km/h",
	winner_regularity = "Regularidad",
	stage_winner = "Voittaja",
	winner_team = "Joukkue",
	countries = "Maat",
	team = "Joukkue",
	inter = "Keskivaikea vuorietappi",
	Q23726798_pl = "Maajoukkueet",
	picture = "Kuva",
	competition = "Kilpailu",
	second = "Toinen",
	cost = "Kustannukset",
	year = "Vuosi",
	special_1 = "Special 1",
	team_name = "Joukkueen nimi",
	Q6154783_pl = "WorldTeams",
	Q6154783 = "WorldTeam",
	note_short = "huomio",
	rider_name = "Ajaja",
	competitions = "Kilpailut",
	distance_km = "Pituus (km)",
	winner_sprint = "Sprintit",
	Q20638319 = "ProTeam",
	Q20638319_pl = "ProTeams",
	winner_team_points = "Team points",
	Q23726798 = "Maajoukkue",
	nationality = "Maa",
	stage = "Etappi",
	dates = "Päivät",
	arriving_riders = "Maaliin saapuneet pyöräilijät",
	Q382927_pl = "Professional continental -joukkueet",
	country = "Maa",
	caption = "Kuvateksti",
	mountains_classification = "Vuoristokilpailu",
	best_young_classification = "Nuorten kilpailu",
	teams_classifications = "Joukkuekilpailu",
	uphill = "mäkiaika-ajo",
	winner_mountain = "Mäkikirikilpailu",
	note_long = "huomio",
	average_speed = "Keskinopeus",
	stage_classification = "Etapin tulokset",
	winner_point = "Pistekilpailu",
	winner_combination = "Yhdistelmä",
	Q2466826_pl = "Naisten ammattilaisjoukkueet",
	general_classification = "Kokonaistilanne",
	palmares = "Lopputilanne",
	Q20652655 = "Amatööripyöräilytalli",
	unit_pt = "pt",
	distance = "Matka",
	plain = "Tasamaaetappi",
	mount = "Vuorietappi",
	winner_young = "Nuoret",
	Q20652655_pl = "Amatööripyöräilytallit",
	nr_teams = "Joukkueet",
	stages = "Etapit",
	prolog = "Prologi",
	unit_pts = "pts",
	time_gap = "Aikaero",
	Q1756006_pl = "Continental-joukkueet",
	starting_riders = "Osallistuneet pyöräilijät",
	Q2466826 = "Naisten ammattilaisjoukkue",
	Q20639848_pl = "Alue- ja seurajoukkueet",
	unit_h = ".",
	Q1756006 = "Continental-joukkue",
	Q382927 = "Professional continental -joukkue",
	journey_origin = "Lähtöpaikka",
	overall_leader = "Kokonaiskilpailun johtaja",
	rider = "Pyöräilijä",
	map = "Kartta",
	Q20639848 = "Alue- ja seurajoukkue",
	special_2 = "Special 2",
	Q20639847 = "Ammattilaispyöräilytalli",
	winner_fighting = "Yritteliäin",
	date = "Päivä",
	points_classification = "Pistekilpailu",
	previous_team = "Edellinen joukkue",
	metas_volantes = "Metas volantes",
	third = "Kolmas",
	Q20639847_pl = "Ammattilaispyöräilytallit",
	documentation = "Ohjesivu",
	race_details = "Kilpailun tiedot",
	points = "Pisteet",
	time = "Aika",
}
p.translations["eu"] = {
	code = "Kodea",
	rest = "atseden eguna",
	course = "Ibilbidea",
	winner = "Irabazlea",
	stopover = "Ibilbidea",
	hilly = "etapa gorabeheratsua",
	date_of_birth = "Jaiotze-data",
	unit_pt = "pt",
	unit_min = "min",
	journey_destination = "Jardunaldiko helmuga",
	time_team = "taldekako erlojupekoa",
	unit_kmh = "km/h",
	winner_regularity = "Regularidad",
	stage_winner = "Irabazlea",
	winner_team = "Taldeak",
	countries = "Herrialdeak",
	inter = "bitarteko etapa",
	Q23726798_pl = "Estatuko taldeak",
	unit_sec = "s",
	picture = "Picture",
	competition = "Lehiaketa",
	second = "Bigarrena",
	cost = "Kostua",
	year = "Urtea",
	Q20639848 = "Eskualdeko eta klubeko taldea",
	team_name = "Taldearen izena",
	Q6154783_pl = "Munduko taldeak",
	Q6154783 = "Munduko taldea",
	note_short = "Oharra",
	rider_name = "Izena",
	competitions = "Lehiaketak",
	distance_km = "Distantzia (km)",
	Q20653563_pl = "I. mailako kirol taldeak",
	winner_sprint = "Esprintak",
	Q20638319 = "Pro taldea",
	Q20638319_pl = "Pro taldeak",
	Q20653564_pl = "II. mailako kirol taldeak",
	winner_team_points = "Team points",
	Q23726798 = "Estatuko taldea",
	nationality = "Herrialdea",
	stage = "Etapa",
	dates = "Datak",
	arriving_riders = "Iritsitako txirrindulariak",
	Q382927_pl = "Kontinenteko talde profesionala",
	country = "Herrialdea",
	caption = "Caption",
	Q20652655 = "Txirrindulari talde amateurra",
	uphill = "erlojupeko igoera",
	mixt_teams = "Talde mistoak",
	winner_mountain = "Mendiak",
	note_long = "Oharra",
	average_speed = "Batez besteko abiadura",
	winner_point = "Puntuak",
	winner_combination = "Konbinatua",
	time_prologue = "aitzinetapa",
	Q2466826_pl = "Emakume taldeak",
	palmares = "Azken sailkapena",
	Q20639847_pl = "Txirrindulari talde profesionalak",
	time_indiv = "banakako erlojupekoa",
	distance = "Distantzia",
	plain = "etapa laua",
	mount = "mendiko etapa",
	winner_young = "Gazteak",
	Q20652655_pl = "Txirrindulari talde amateurrak",
	nr_teams = "Taldeak",
	stages = "Etapak",
	prolog = "Aitzinetapa",
	unit_pts = "pt",
	Q1756006_pl = "Kontinenteko taldeak",
	starting_riders = "Abiatutako txirrindulariak",
	Q2466826 = "Emakume taldea",
	Q20639848_pl = "Eskualdeko eta klubeko taldeak",
	unit_h = "h",
	Q1756006 = "Kontinenteko taldea",
	Q382927 = "Kontinenteko talde profesionala",
	journey_origin = "Jardunaldiko abiapuntua",
	overall_leader = "Liderra",
	map = "Map",
	special_1 = "Special 1",
	special_2 = "Special 2",
	Q20639847 = "Txirrindulari talde profesionala",
	date = "Data",
	Q20653566_pl = "III. mailako kirol taldeak",
	previous_team = "Aurreko taldea",
	metas_volantes = "Metas volantes",
	third = "Hirugarrena",
	winner_fighting = "Saiatuena",
	documentation = "Dokumentazioa",
	race_details = "Lasterketaren xehetasunak",
	Q20653566 = "III. mailako kirol taldea",
	Q20653564 = "II. mailako kirol taldea",
	Q20653563 = "I. mailako kirol taldea",
	mixt_team = "Talde mistoa",
}
p.translations["et"] = {
	time_gap = "Time Gap",
	best_young_classification = "Gazte onenaren sailkapena",
	mountains_classification = "Mendiko sailkapena",
	points_classification_for_teams = "Taldekako sailkapena",
	country = "Herrialdea",
	points_classification = "Puntukako sailkapena",
	team = "Taldea",
	teams_classifications = "Taldekako sailkapena",
	stage_classification = "Etapako sailkapena",
	sprints_classification = "Esprinetako sailkapena",
	points = "Puntua",
	general_classification = "Sailkapen orokorra",
	time = "Denbora",
	speed = "Speed",
	rider = "Txirrindularia",
}
p.translations["es"] = {
	code = "Código",
	points_classification_for_teams = "Clasificación por equipos",
	rest = "jornada de descanso",
	course = "Carrera",
	Q20652655 = "Equipo ciclista aficionado",
	general_class_stage = "Clasificación general después de la etapa",
	speed = "Velocidad media",
	competitions = "Competiciones",
	combativity = "Combatividad",
	winner = "Ganador",
	young = "Joven",
	stopover = "Recorrido",
	hilly = "etapa escarpada",
	date_of_birth = "Fecha de nacimiento",
	time_indiv = "contrarreloj individual",
	time_gap = "Intervalo de tiempo",
	race = "Carrera",
	time_team = "contrarreloj por equipos",
	winner_fighting = "Combatividad",
	stage_winner = "Ganador",
	winner_team = "Equipo",
	stage_results = "Resultados de la etapa",
	countries = "Países",
	victories = "Victories",
	team = "Equipo",
	inter = "etapa de media montaña",
	Q23726798_pl = "Equipos nacionales",
	map = "Mapa",
	competition = "Competición",
	second = "Segundo",
	cost = "Duración",
	year = "Año",
	special_1 = "Especial 1",
	team_name = "Nombre del equipo",
	Q6154783_pl = "WorldTeams",
	Q6154783 = "WorldTeam",
	sprints = "Esprint",
	cima_pantani = "Cima Pantani",
	note_short = "Nota",
	rider_name = "Corredor",
	sprints_classification = "Clasificación de los sprints",
	distance_km = "Distancia (km)",
	Q20653563_pl = "Grupos deportivos I",
	winner_sprint = "Metas volantes",
	Q20638319 = "ProTeam",
	leader = "Líder",
	Q20638319_pl = "ProTeams",
	Q24257871 = "maillot amarillo de líder de la clasificación general",
	Q20653564_pl = "Grupos deportivos II",
	combative = "Combativo",
	winner_team_points = "Team points",
	Q23726798 = "Equipo nacional",
	nationality = "Pais",
	legend = "Leyenda",
	card = "Card",
	stage = "Etapa",
	dates = "Fechas",
	arriving_riders = "Ciclistas finalizados",
	second_class_stage = "Clasificaciones secundarias despúes de la etapa",
	Q382927_pl = "Equipos continentales profesionales",
	country = "País",
	caption = "Leyenda",
	mountains_classification = "Clasificación de la montaña",
	best_young_classification = "Clasificación del mejor joven",
	Q24645209 = "maillot verde de líder de la clasificación por puntos",
	image = "Imagen",
	teams_classifications = "Clasificación por equipos",
	uphill = "cronoescalada",
	mixt_teams = "Equipos mixtos",
	winner_mountain = "Montaña",
	cima_coppy = "Cima Coppi",
	note_long = "Nota",
	average_speed = "Velocidad media",
	stage_classification = "Clasificación de la etapa",
	winner_point = "Puntos",
	winner_combination = "Combinada",
	time_prologue = "prólogo",
	Q2466826_pl = "Equipos femeninos",
	type = "Tipo",
	general_classification = "General classification",
	palmares = "Clasificación final",
	Q20639847_pl = "Equipos ciclistas profesionales",
	Q24645383 = "maillot blanco de líder de la clasificación de los jóvenes",
	distance = "Distancia",
	plain = "etapa llana",
	mount = "etapa de montaña",
	winner_young = "Jóvenes",
	Q20652655_pl = "Equipos ciclistas aficionados",
	nr_teams = "Equipos",
	stages = "Etapas",
	prolog = "Prólogo",
	journey_destination = "Lugar de llegada",
	Q1756006_pl = "Equipos continentales",
	starting_riders = "Ciclistas participantes",
	sectional_view = "Sectional view",
	regularity = "Regularidad",
	Q2466826 = "Equipo femenino",
	fuga_pinarello = "Fuga Pinarello",
	mountain = "Montaña",
	azzuri_d_italia = "Azzurri d'Italia",
	Q20639848_pl = "Equipos regionales y de clubes",
	combinated = "Combinada",
	Q1756006 = "Equipo continental",
	Q20653564 = "Grupo deportivo II",
	Q382927 = "Equipo continental profesional",
	journey_origin = "Lugar de inicio",
	overall_leader = "Líder",
	rider = "Ciclista",
	picture = "Imagen",
	Q20639848 = "Equipo regional y de club",
	special_2 = "Especial 2",
	class = "Clase",
	Q20639847 = "Equipo ciclista profesional",
	date = "Fecha",
	Q20653566_pl = "Grupos deportivos III",
	points_classification = "Clasificación por puntos",
	previous_team = "Equipo previo",
	metas_volantes = "Metas volantes",
	third = "Tercero",
	winner_regularity = "Regularidad",
	documentation = "Documentation",
	team_by_points = "Equipo por puntos",
	race_details = "Detalles de la carrera",
	Q20653566 = "Grupo deportivo III",
	points = "Puntos",
	Q20653563 = "Grupo deportivo I",
	time = "Tiempo",
	mixt_team = "Equipo mixto",
}
p.translations["ru"] = {
	code = "Код",
	points_classification_for_teams = "Командная классификация",
	rest = "день отдыха",
	course = "Маршрут",
	Q20652655 = "Любительская велокоманда",
	general_class_stage = "Генеральная классификация после этапа",
	speed = "Скорость",
	competitions = "Соревнования",
	combativity = "Борцовская",
	winner = "Победитель",
	young = "Молодёжная",
	stopover = "Маршрут",
	hilly = "холмистый",
	date_of_birth = "Дата рождения",
	time_indiv = "индивидуальная разделка",
	unit_min = "'",
	time_gap = "Отставание",
	race = "Гонка",
	time_team = "командная разделка",
	unit_kmh = "км/ч",
	winner_fighting = "Бойцовская",
	stage_winner = "Победитель",
	winner_team = "Командная",
	stage_results = "Результаты этапа",
	countries = "Страны",
	victories = "Victories",
	team = "Команда",
	inter = "горный",
	Q23726798_pl = "Национальные команды",
	map = "Карта",
	competition = "Соревнование",
	second = "Второй",
	cost = "Затраты",
	year = "Год",
	special_1 = "Сектор 1",
	team_name = "Команда",
	Q6154783_pl = "WorldTeams",
	Q6154783 = "WorldTeam",
	sprints = "Спринтерская",
	cima_pantani = "Cima Pantani",
	note_short = "Примечание",
	rider_name = "Гонщик",
	sprints_classification = "Спринтерская классификация",
	distance_km = "Длина (км)",
	winner_sprint = "Спринтерская",
	Q20638319 = "ProTeam",
	leader = "Лидер",
	Q20638319_pl = "ProTeams",
	Q24257871 = "жёлтая майка лидера генеральной классификации",
	combative = "Боец",
	winner_team_points = "Командные очки",
	Q23726798 = "Национальная команда",
	nationality = "Страна",
	legend = "Описание",
	card = "Карта",
	stage = "Этап",
	dates = "Даты",
	arriving_riders = "Финишировало гонщиков",
	second_class_stage = "Классификации после этапа",
	Q382927_pl = "Профессиональные континентальные команды",
	country = "Страна",
	caption = "Описание",
	mountains_classification = "Горная классификация",
	best_young_classification = "Молодёжная классификация",
	Q24645209 = "зелёная майка лидера очковой классификации",
	image = "Изображение",
	teams_classifications = "Командная классификация",
	uphill = "горная разделка",
	mixt_teams = "Смешанные велокоманды",
	winner_mountain = "Горная",
	cima_coppy = "Cima Coppi",
	note_long = "Примечание",
	average_speed = "Средняя скорость",
	stage_classification = "Результаты этапа",
	winner_point = "Очковая",
	winner_combination = "Комбинированная",
	time_prologue = "пролог",
	Q2466826_pl = "Профессиональные женские велокоманды",
	type = "Тип",
	general_classification = "General classification",
	palmares = "Призёры",
	Q20639847_pl = "Профессиональные велокоманды",
	Q24645383 = "белая майка лидера молодёжной классификации",
	unit_pt = "очко",
	distance = "Дистанция",
	plain = "равнинный",
	mount = "высокогорный",
	winner_young = "Молодёжная",
	Q20652655_pl = "Любительские велокоманды",
	nr_teams = "Команды",
	stages = "Этапы",
	prolog = "Пролог",
	unit_pts = "очков",
	journey_destination = "Место финиша",
	Q1756006_pl = "Континентальные команды",
	starting_riders = "Стартовало гонщиков",
	sectional_view = "Сектора",
	regularity = "Регулярность",
	Q2466826 = "Профессиональная женская велокоманда",
	fuga_pinarello = "Fuga Pinarello",
	mountain = "Горная",
	azzuri_d_italia = "Azzurri d'Italia",
	Q20639848_pl = "Региональные команды и клубы",
	combinated = "Комбинированная",
	unit_h = "ч",
	Q1756006 = "Континентальная команда",
	Q382927 = "Профессиональная континентальная команда",
	journey_origin = "Место старта",
	overall_leader = "Лидер генеральной классификации",
	rider = "Гонщик",
	picture = "Вид",
	Q20639848 = "Региональная команда или клуб",
	special_2 = "Сектор 2",
	class = "Класс",
	Q20639847 = "Профессиональная велокоманда",
	unit_km = "км",
	date = "Дата",
	points_classification = "Очковая классификация",
	previous_team = "Предыдущая команда",
	metas_volantes = "Metas volantes",
	third = "Третий",
	winner_regularity = "Регулярность",
	documentation = "Документация",
	team_by_points = "Команда по очкам",
	race_details = "Детали гонки",
	points = "Очки",
	time = "Время",
	mixt_team = "Смешанная велокоманда",
}
p.translations["lb"] = {
	code = "Code",
	points_classification_for_teams = "Equippeklassement",
	rest = "Roudag",
	course = "Course",
	general_class_stage = "Generalklassement no der Etapp",
	speed = "Vitesse",
	competitions = "Kompetitiounen",
	combativity = "Super- combativ",
	Q20652655 = "Amateursequipe",
	young = "Bescht Jonken",
	stopover = "Etappestied",
	hilly = "Hiwweleg Etapp",
	date_of_birth = "Gebuertsdatum",
	time_indiv = "Contre-la-montre (Eenzel)",
	unit_min = "min",
	time_gap = "Time Gap",
	time_team = "Contre-la-montre (Equipe)",
	unit_kmh = "km/h",
	winner_fighting = "Kombativitéit",
	stage_winner = "Gewënner",
	winner_team = "Equipe",
	stage_results = "Résultater vun der Etapp",
	countries = "Land",
	race = "Course",
	team = "Equipe",
	inter = "Mëttelschwéier Etapp",
	Q23726798_pl = "Nationalequippen",
	unit_sec = "s",
	map = "Map",
	competition = "Kompetitioun",
	second = "Zweeten",
	cost = "Käschten",
	year = "Joer",
	special_1 = "Special 1",
	team_name = "Equippennumm",
	Q6154783_pl = "WorldTeams",
	Q6154783 = "WorldTeam",
	sprints = "Sprint",
	cima_pantani = "Cima Pantani",
	note_short = "Nott",
	rider_name = "Coureur",
	sprints_classification = "Sprintklassement",
	distance_km = "Längt (km)",
	Q20653563_pl = "Sportsgruppen I",
	winner_sprint = "Sprinter",
	Q20638319 = "ProTeam",
	leader = "Éischten",
	Q20638319_pl = "ProTeams",
	Q20653564_pl = "Sportsgruppen II",
	combative = "Combativ",
	winner_team_points = "Team points",
	Q23726798 = "Nationalequipe",
	nationality = "Staat",
	legend = "Legend",
	card = "Kaart",
	stage = "Etapp",
	dates = "Datumer",
	arriving_riders = "Ukomm",
	second_class_stage = "Aner Klassementer no der Etapp",
	Q382927_pl = "Professionell Kontinentalequippen",
	country = "Land",
	winner = "Gewënner",
	mountains_classification = "Biergpräis",
	best_young_classification = "Beschte Jonken",
	image = "Fichier",
	teams_classifications = "Equippeklassement",
	uphill = "Biergcourse",
	mixt_teams = "Gemëscht Equippen",
	winner_mountain = "Biergpräis",
	cima_coppy = "Cima Coppi",
	note_long = "Nott",
	average_speed = "Vitess-moyenne",
	stage_classification = "Etappeklassement",
	winner_point = "Beschte Sprinter",
	winner_combination = "Kombinatioun",
	time_prologue = "Prolog",
	Q2466826_pl = "Dammenequippen",
	type = "Typ",
	general_classification = "Generalklassement",
	palmares = "Palmarès",
	Q20639847_pl = "Professionell Vëlosequippen",
	unit_pt = "pt",
	distance = "Distanz",
	plain = "Flaach Etapp",
	mount = "Biergetapp",
	winner_young = "Beschte Jonken",
	Q20652655_pl = "Amateursequippen",
	nr_teams = "Equippen",
	stages = "Etappen",
	prolog = "Prolog",
	unit_pts = "pts",
	journey_destination = "Arrivée",
	Q1756006_pl = "Kontinentalequippen",
	starting_riders = "Um Start",
	sectional_view = "Profil",
	regularity = "Regelméissegkeet",
	Q2466826 = "Dammenequipe",
	fuga_pinarello = "Fuga Pinarello",
	mountain = "Bierg",
	azzuri_d_italia = "Azzurri d'Italia",
	caption = "Caption",
	Q20639848_pl = "Regional- a Klubequippen",
	combinated = "Combiné",
	unit_h = "h",
	Q1756006 = "Kontinentalequipe",
	Q20653564 = "Sportsgrupp II",
	Q382927 = "Professionell Kontinentalequipe",
	journey_origin = "Depart",
	overall_leader = "General&shy;klassement",
	rider = "Coureur",
	picture = "Picture",
	Q20639848 = "Regional- a Klubequipe",
	special_2 = "Special 2",
	Q20639847 = "Professionell Vëlosequipe",
	date = "Datum",
	Q20653566_pl = "Sportsgruppen III",
	points_classification = "Klassement no Punkten",
	previous_team = "Equipe virdrun",
	metas_volantes = "Fligend Etappen",
	third = "Drëtten",
	winner_regularity = "Regularidad",
	documentation = "Dokumentatioun",
	team_by_points = "Equipe no Punkten",
	race_details = "Allgemenges",
	Q20653566 = "Sportsgrupp III",
	points = "Punkten",
	Q20653563 = "Sportsgrupp I",
	time = "Zäit",
	mixt_team = "Gemëscht Equipe",
}
p.translations["pt"] = {
	code = "Código",
	points_classification_for_teams = "Classificação coletiva",
	course = "Corrida",
	general_class_stage = "Classificação geral após a etapa",
	speed = "Rapidez",
	competitions = "Válida para",
	combativity = "Combatividade",
	Q20652655 = "Equipe amadora de ciclismo",
	young = "Jovem",
	stopover = "Percurso",
	date_of_birth = "Data de nascimento",
	time_indiv = "contrarrelógio individual",
	unit_min = "m",
	time_gap = "Intervalo de tempo",
	time_team = "contrarrelógio por equipes",
	unit_kmh = "km/h",
	winner_fighting = "Disputa",
	stage_winner = "Vencedor",
	stage_results = "Resultados da etapa",
	countries = "Países",
	race = "Corrida",
	team = "Equipe",
	inter = "média montanha",
	Q23726798_pl = "Equipes nacionais",
	unit_sec = "s",
	map = "Mapa",
	competition = "Válida para",
	second = "Segundo",
	cost = "Custo",
	year = "Ano",
	special_1 = "Special 1",
	team_name = "Nome da equipe",
	Q6154783_pl = "Equipes WorldTeam",
	Q6154783 = "Equipe WorldTeam",
	sprints = "Corridas de velocidade",
	cima_pantani = "Cima Pantani",
	note_short = "Nota",
	rider_name = "Ciclista",
	sprints_classification = "Classificação por velocidade",
	distance_km = "Distância (km)",
	Q20653563_pl = "Grupos esportivos I",
	winner_sprint = "Sprints",
	Q20638319 = "Equipe ProTeam",
	leader = "Líder",
	Q20638319_pl = "Equipes ProTeam",
	Q20653564_pl = "Grupos esportivos II",
	combative = "Combativo",
	winner_team_points = "Team points",
	Q23726798 = "Equipe nacional",
	nationality = "Pais",
	legend = "Legenda",
	card = "Ficha",
	stage = "Etapa",
	dates = "Datas",
	arriving_riders = "Chegada dos ciclistas",
	second_class_stage = "Classificação secundária após a etapa",
	Q382927_pl = "Equipes profissionais Continentais",
	country = "País",
	winner = "Vencedor",
	mountains_classification = "Classificação de montanha",
	best_young_classification = "Classificação de juventude",
	image = "Imagem",
	teams_classifications = "Classificação coletiva",
	winner_team = "Equipes",
	mixt_teams = "Equipes mistas",
	winner_mountain = "Prêmio de montanha",
	cima_coppy = "Cima Coppi",
	note_long = "Nota",
	average_speed = "Velocidade média",
	stage_classification = "Classificação por etapas",
	winner_point = "Prêmio por pontos",
	winner_combination = "Combinação",
	time_prologue = "prólogo",
	Q2466826_pl = "Equipes femininas profissionais",
	type = "Tipo",
	general_classification = "Classificação geral",
	palmares = "Classificação final",
	Q20639847_pl = "Equipes profissionais de ciclismo",
	unit_pt = "pt",
	distance = "Distância",
	plain = "etapa plana",
	mount = "alta montanha",
	winner_young = "Juventude",
	Q20652655_pl = "Equipes amadoras de ciclismo",
	nr_teams = "Nº de equipes",
	stages = "Etapas",
	prolog = "Prólogo",
	unit_pts = "pts",
	journey_destination = "Local de chegada",
	Q1756006_pl = "Equipes Continentais",
	starting_riders = "Partida dos ciclistas",
	sectional_view = "Vista secional",
	regularity = "Regularidade",
	Q2466826 = "Equipe feminina profissional",
	fuga_pinarello = "Fuga Pinarello",
	mountain = "Montanha",
	azzuri_d_italia = "Azzurri d'Italia",
	caption = "Legenda",
	Q20639848_pl = "Equipes regionais e clubes",
	combinated = "Combinados",
	unit_h = "h",
	Q1756006 = "Equipe Continental",
	Q20653564 = "Grupo esportivo II",
	Q382927 = "Equipe profissional Continental",
	journey_origin = "Origem da viagem",
	overall_leader = "Líder geral",
	rider = "Ciclista",
	picture = "Imagem",
	Q20639848 = "Equipe regional e clube",
	special_2 = "Special 2",
	Q20639847 = "Equipe profissional de ciclismo",
	date = "Data",
	Q20653566_pl = "Grupos esportivos III",
	points_classification = "Classificação por pontos",
	previous_team = "Equipe anterior",
	metas_volantes = "Metas volantes",
	third = "Terceiro",
	winner_regularity = "Regularidad",
	documentation = "Documentação",
	team_by_points = "Equipe por pontos",
	race_details = "Detalhes da corrida",
	Q20653566 = "Grupo esportivo III",
	points = "Pontos",
	Q20653563 = "Grupo esportivo I",
	time = "Tempo",
	mixt_team = "Equipe mista",
}
p.translations["no"] = {
	code = "Kode",
	points_classification_for_teams = "Lagkonkurranse (poeng)",
	rest = "hviledag",
	course = "Ritt",
	Q20652655 = "Amatørlag",
	general_class_stage = "Sammenlagtstilling etter etappen",
	speed = "Fart",
	competitions = "Konkurranser",
	combativity = "Offensiv",
	winner = "Vinner",
	young = "Ungdom",
	stopover = "Start – Målgang",
	hilly = "kupert etappe",
	date_of_birth = "Fødselsdato",
	Q26849121 = "Amatørlag",
	time_indiv = "temporitt",
	unit_min = "'",
	time_gap = "Tidsforskjell",
	race = "Ritt",
	time_team = "lagtempo",
	unit_kmh = "km/t",
	winner_fighting = "Mest offensive",
	stage_winner = "Etappe&shy;vinner",
	winner_team = "Lagkonkurranse",
	stage_results = "Etapperesultat",
	countries = "Land",
	victories = "Seire",
	team = "Lag",
	inter = "middels klatreetappe",
	Q23726798_pl = "Landslag",
	unit_sec = "''",
	map = "Kart",
	competition = "Konkurranse",
	second = "Andre",
	cost = "Omkostninger",
	year = "År",
	special_1 = "Spesial 1",
	team_name = "Lagnavn",
	Q6154783_pl = "WorldTour-lag",
	Q6154783 = "WorldTour-lag",
	sprints = "Spurt",
	cima_pantani = "Cima Pantani",
	note_short = "note",
	rider_name = "Rytter",
	sprints_classification = "Spurtkonkurranse",
	distance_km = "Lengde (km)",
	Q20653563_pl = "Sportsgruppe I",
	winner_sprint = "Spurt",
	Q20638319 = "ProTour-lag",
	leader = "Sammenlagtleder",
	Q20638319_pl = "ProTour-lag",
	Q20653564_pl = "Sportsgruppe II",
	combative = "Offensiv",
	winner_team_points = "Lagkonkurranse (poeng)",
	Q23726798 = "Landslag",
	nationality = "Land",
	legend = "Bildetekst",
	card = "Kart",
	stage = "Etappe",
	dates = "Datoer",
	arriving_riders = "Fullførende ryttere",
	second_class_stage = "Klassifisering etter etappen",
	Q382927_pl = "Profesjonelle kontinentallag",
	country = "Land",
	caption = "Bildetekst",
	mountains_classification = "Klatrekonkurranse",
	best_young_classification = "Ungdomskonkurranse",
	image = "Bilde",
	teams_classifications = "Lagkonkurranse",
	uphill = "klatretempoetappe",
	mixt_teams = "Mix-lag",
	winner_mountain = "Klatring",
	cima_coppy = "Cima Coppi",
	note_long = "note",
	average_speed = "Snittfart",
	stage_classification = "Etappeplassering",
	winner_point = "Poeng",
	winner_combination = "Kombinasjon",
	time_prologue = "prolog",
	Q2466826_pl = "Profflag",
	type = "Type",
	general_classification = "Sammenlagt",
	palmares = "Resultater",
	Q20639847_pl = "Profflag",
	unit_pt = "poeng",
	distance = "Distanse",
	plain = "flat etappe",
	mount = "klatreetappe",
	winner_young = "Ungdom",
	Q20652655_pl = "Amatørlag",
	Q26849121_pl = "Amatørlag",
	nr_teams = "Lag",
	stages = "Etapper",
	prolog = "Prolog",
	unit_pts = "poeng",
	journey_destination = "Målby",
	Q1756006_pl = "Kontinentallag",
	starting_riders = "Startende ryttere",
	sectional_view = "Profil",
	regularity = "Regularitet",
	Q2466826 = "Profflag",
	fuga_pinarello = "Fuga Pinarello",
	mountain = "Klatring",
	azzuri_d_italia = "Azzurri d'Italia",
	Q20639848_pl = "Regional- og klubblag",
	combinated = "Kombinasjon",
	unit_h = "t",
	Q1756006 = "Kontinentallag",
	Q20653564 = "Sportsgruppe II",
	Q382927 = "Profesjonelt kontinentallag",
	journey_origin = "Startby",
	overall_leader = "Sammenlagt&shy;leder",
	rider = "Rytter",
	picture = "Bilde",
	Q20639848 = "Regional- og klubblag",
	special_2 = "Spesial 2",
	class = "Klasse",
	Q20639847 = "Profflag",
	date = "Dato",
	Q20653566_pl = "Sportsgruppe III",
	points_classification = "Poengkonkurranse",
	previous_team = "Tidligere lag",
	metas_volantes = "Étapes volantes",
	third = "Tredje",
	winner_regularity = "Regularitet",
	documentation = "Dokumentasjon",
	team_by_points = "Lag (poeng)",
	race_details = "Etappedetaljer",
	Q20653566 = "Sportsgruppe III",
	points = "Poeng",
	Q20653563 = "Sportsgruppe I",
	time = "Tid",
	mixt_team = "Mix-lag",
}
p.translations["lv"] = {
	code = "Kods",
	points_classification_for_teams = "Komandu klasifikācija",
	rest = "atpūtas diena",
	course = "Sacensības",
	speed = "Ātrums",
	sprints_classification = "Sprinta klasifikācija",
	winner = "Uzvarētājs",
	stopover = "Maršruts",
	hilly = "paugurains posms",
	date_of_birth = "Dzimšanas datums",
	time_indiv = "individuālais brauciens",
	journey_destination = "Finišs",
	time_team = "komandu brauciens",
	winner_fighting = "Cīnītājs",
	stage_winner = "Uzvarētājs",
	winner_team = "Komanda",
	countries = "Valstis",
	team = "Komanda",
	inter = "vidēju kalnu posms",
	Q23726798_pl = "Nacionālās izlases",
	map = "Karte",
	competition = "Kategorija",
	second = "Otrais",
	cost = "Izmaksas",
	winner_regularity = "Regularidad",
	year = "Gads",
	special_1 = "Papildinformācija 1",
	team_name = "Komandas nosaukums",
	Q6154783_pl = "WorldTeam komandas",
	Q6154783 = "WorldTeam",
	note_short = "piezīme",
	rider_name = "Braucējs",
	competitions = "Sacensības",
	distance_km = "Posma garums (km)",
	Q20653563_pl = "1. sporta grupa",
	winner_sprint = "Sprints",
	Q20638319 = "ProTeam",
	Q20638319_pl = "ProTeam komandas",
	Q20653564_pl = "3. sporta grupa",
	winner_team_points = "Team points",
	Q23726798 = "Nacionālā izlase",
	nationality = "Valsts",
	stage = "Posms",
	dates = "Datumi",
	arriving_riders = "Braucēji finišā",
	Q382927_pl = "Profesionālās kontinentālās komandas",
	country = "Valsts",
	caption = "Paraksts",
	mountains_classification = "Kalnu klasifikācija",
	best_young_classification = "Jauno braucēju klasifikācija",
	teams_classifications = "Komandu klasifikācija",
	uphill = "individuālais brauciens kalnā",
	mixt_teams = "Jauktās komandas",
	winner_mountain = "Kalnu karalis",
	note_long = "piezīme",
	average_speed = "Vidējais ātrums",
	stage_classification = "Posma rezultāti",
	winner_point = "Punkti",
	winner_combination = "Kombinācija",
	time_prologue = "individuālais brauciens",
	Q2466826_pl = "Profesionālas sieviešu komandas",
	general_classification = "Kopvērtējums",
	palmares = "Rezultāti",
	Q20652655 = "Amatieru riteņbraukšanas komanda",
	distance = "Distance",
	plain = "līdzenuma posms",
	mount = "kalnu posms",
	winner_young = "Jaunais braucējs",
	Q20652655_pl = "Amatieru riteņbraukšanas komandas",
	nr_teams = "Komandas",
	stages = "Posmi",
	prolog = "Prologs",
	time_gap = "laika atstarpe",
	Q1756006_pl = "Kontinentālās komandas",
	starting_riders = "Braucēji startā",
	Q2466826 = "Profesionāla sieviešu komanda",
	Q20639848_pl = "Reģionālās vai klubu komandas",
	Q1756006 = "Kontinentālā komanda",
	points = "Punkti",
	Q382927 = "Profesionālā kontinentālā komanda",
	journey_origin = "Starts",
	overall_leader = "Kopvērtējuma līderis",
	rider = "Braucējs",
	picture = "Atēls",
	Q20639848 = "Reģionālā vai klubu komanda",
	special_2 = "Papildinformācija 2",
	Q20639847 = "Profesionāla riteņbraukšanas komanda",
	date = "Datums",
	Q20653566_pl = "3. sporta grupa",
	points_classification = "Punktu klasifikācija",
	previous_team = "Iepriekšējā komanda",
	metas_volantes = "Metas volantes",
	third = "Trešais",
	Q20639847_pl = "Profesionālas riteņbraukšanas komandas",
	documentation = "Dokumentācija",
	race_details = "Sacensību informācija",
	Q20653566 = "3. sporta grupa",
	Q20653564 = "2. sporta grupa",
	Q20653563 = "1. sporta grupa",
	time = "Laiks",
	mixt_team = "Jauktā komanda",
}
p.translations["ro"] = {
	code = "Cod",
	points_classification_for_teams = "Clasament pe echipe",
	rest = "zi de repaus",
	course = "Cursă",
	speed = "Viteză",
	sprints_classification = "Clasament sprinteri",
	winner = "Câștigător",
	stopover = "Start – Sosire",
	hilly = "etapă valonată",
	date_of_birth = "Data nașterii",
	time_indiv = "contratimp individual",
	journey_destination = "Sosire",
	time_team = "contratimp pe echipe",
	winner_fighting = "Combativitate",
	stage_winner = "Câștigător",
	countries = "Țări",
	team = "Echipă",
	inter = "etapă intermediară",
	Q23726798_pl = "Echipe naționale",
	map = "Map",
	competition = "Competiție",
	second = "Locul doi",
	cost = "Cost",
	winner_regularity = "Regularidad",
	year = "An",
	special_1 = "Special 1",
	team_name = "Numele echipei",
	Q6154783_pl = "WorldTeams",
	Q6154783 = "WorldTeam",
	note_short = "note",
	rider_name = "Ciclist",
	competitions = "Competiții",
	distance_km = "Distanță (km)",
	Q20653563_pl = "Grupuri sportive I",
	winner_sprint = "Cel mai bun sprinter",
	Q20638319 = "ProTeam",
	Q20638319_pl = "ProTeams",
	Q20653564_pl = "Grupuri sportive II",
	winner_team_points = "Team points",
	Q23726798 = "Echipă națională",
	nationality = "Țară",
	stage = "Etapa",
	dates = "Date",
	arriving_riders = "Cicliști la sosire",
	Q382927_pl = "Echipe continentale profesioniste",
	country = "Țară",
	caption = "Caption",
	mountains_classification = "Clasament cățărători",
	best_young_classification = "Clasamentul celui mai bun tânăr",
	teams_classifications = "Clasament pe echipe",
	winner_team = "Echipă",
	mixt_teams = "Echipe mixte",
	winner_mountain = "Cel mai bun cățărător",
	note_long = "note",
	average_speed = "Viteză medie",
	stage_classification = "Clasamentul etapei",
	winner_point = "Clasament pe puncte",
	winner_combination = "Combinat",
	time_prologue = "prolog",
	Q2466826_pl = "Echipe feminine",
	general_classification = "Clasament general",
	palmares = "Palmares",
	Q20652655 = "Echipă ciclistă de amatori",
	distance = "Distanță",
	plain = "etapă de plat",
	mount = "etapă de munte",
	winner_young = "Cel mai bun tânăr",
	Q20652655_pl = "Echipe cicliste de amatori",
	nr_teams = "Echipe",
	stages = "Etape",
	prolog = "Prolog",
	time_gap = "Time Gap",
	Q1756006_pl = "Echipe continentale",
	starting_riders = "Cicliști la start",
	Q2466826 = "Echipă feminină",
	Q20639848_pl = "Echipe regionale și de club",
	Q1756006 = "Echipă continentală",
	points = "Puncte",
	Q382927 = "Echipă continentală profesionistă",
	journey_origin = "Start",
	overall_leader = "Liderul global",
	rider = "Ciclist",
	picture = "Picture",
	Q20639848 = "Echipă regională și de club",
	special_2 = "Special 2",
	Q20639847 = "Echipă ciclistă profesionistă",
	date = "Dată",
	Q20653566_pl = "Grupuri sportive III",
	points_classification = "Clasament pe puncte",
	previous_team = "Previous team",
	metas_volantes = "Metas volantes",
	third = "Locul trei",
	Q20639847_pl = "Echipe cicliste profesioniste",
	documentation = "Documentație",
	race_details = "Detalii cursă",
	Q20653566 = "Grup sportiv III",
	Q20653564 = "Grup sportiv II",
	Q20653563 = "Grup sportiv I",
	time = "Timp",
	mixt_team = "Echipă mixtă",
}
p.translations["pl"] = {
	map = "Map",
	competition = "Konkurencja",
	starting_riders = "Zgłoszenia",
	winner_team = "Drużynowa",
	course = "Wyścig",
	second = "Drugie",
	cost = "Koszt",
	winner_regularity = "Regularidad",
	year = "Rok",
	winner_mountain = "Górska",
	metas_volantes = "Metas volantes",
	date = "Data",
	caption = "Caption",
	rider_name = "Imię i nazwisko",
	winner = "Pierwsze",
	average_speed = "Średnia prędkość",
	stopover = "Start – Meta",
	competitions = "Konkursy",
	distance_km = "Dystans (km)",
	winner_point = "Punktowa",
	journey_origin = "Odejście",
	time_prologue = "prologu",
	winner_sprint = "Sprinterska",
	time_indiv = "jazda indywidualna na czas",
	overall_leader = "Lider",
	note_short = "Przypis",
	picture = "Picture",
	journey_destination = "Przyjazd",
	special_1 = "Special 1",
	special_2 = "Special 2",
	time_team = "jazda drużynowa na czas",
	palmares = "Podium",
	nr_teams = "Zespoły",
	winner_team_points = "Team points",
	winner_fighting = "Najaktywniejszych",
	arriving_riders = "Ukończyło wyścig",
	stage_winner = "Zwycięzca etapu",
	note_long = "Przypis",
	nationality = "Państwo",
	stage = "Etap",
	distance = "Dystans",
	dates = "Daty",
	inter = "pagórkowaty",
	third = "Trzecie",
	countries = "Państwy",
	plain = "płaski",
	mount = "górski",
	documentation = "Dokumentacja",
	winner_young = "Młodzieżowa",
	race_details = "Wyrażenia ogólne",
	winner_combination = "Kombinowana",
	date_of_birth = "Data urodzenia",
	country = "Państwo",
	stages = "Etapów",
	prolog = "Prologu",
}
p.translations["fr"] = {
	code = "Code",
	points_classification_for_teams = "Classement par équipes aux points",
	rest = "étape de repos",
	course = "Course",
	Q20652655 = "Équipe cycliste amateur",
	general_class_stage = "Classement général à l’issue de l’étape",
	Q664 = "Nouvelle-Zélande",
	speed = "Vitesse moy.",
	Q142 = "France",
	competitions = "Compétitions",
	Q55 = "Pays-Bas",
	Q145 = "Royaume-Uni",
	combativity = "Super- combatif",
	winner = "Vainqueur",
	young = "Jeune",
	stopover = "Villes étapes",
	hilly = "étape vallonnée",
	date_of_birth = "Date de naissance",
	time_indiv = "contre-la-montre individuel",
	unit_min = "min",
	time_gap = "Écart de temps",
	race = "Course",
	Q717 = "Venezuela",
	time_team = "contre-la-montre par équipes",
	unit_kmh = "km/h",
	winner_fighting = "Super-combatif",
	Q408 = "Australie",
	stage_winner = "Vainqueur d'étape",
	Q159 = "Russie",
	Q39 = "Suisse",
	winner_team = "Meilleure équipe",
	stage_results = "Résultats de l’étape",
	countries = "Pays",
	victories = "Victoires",
	team = "Équipe",
	inter = "étape de moyenne montagne",
	Q23726798_pl = "Équipes nationales",
	unit_sec = "s",
	map = "Carte",
	competition = "Compétition",
	second = "Deuxième",
	cost = "Coût",
	year = "Année",
	special_1 = "Special 1",
	team_name = "Nom de l'équipe",
	Q6154783_pl = "WorldTeams",
	Q6154783 = "WorldTeam",
	sprints = "Sprints",
	cima_pantani = "Cima Pantani",
	note_short = "note",
	rider_name = "Cycliste",
	Q414 = "Argentine",
	sprints_classification = "Classement des sprints",
	Q32 = "Luxembourg",
	Q31 = "Belgique",
	distance_km = "Distance (km)",
	Q37 = "Lituanie",
	Q36 = "Pologne",
	Q35 = "Danemark",
	Q34 = "Suède",
	Q20653563_pl = "Groupes sportifs I",
	winner_sprint = "Meilleur sprinteur",
	Q20638319 = "ProTeam",
	Q38 = "Italie",
	leader = "Leader",
	Q739 = "Colombie",
	Q20638319_pl = "ProTeams",
	Q24257871 = "maillot jaune de leader du classement général",
	Q20653564_pl = "Groupes sportifs II",
	combative = "Combatif",
	winner_team_points = "Meilleure équipe aux points",
	U23 = "espoirs",
	Q23726798 = "Équipe nationale",
	nationality = "Pays",
	endtime = "Date de fin",
	legend = "Légende",
	card = "Carte",
	stage = "Étape",
	dates = "Dates",
	arriving_riders = "Arrivants",
	second_class_stage = "Classements annexes à l’issue de l’étape",
	Q382927_pl = "Équipes continentales professionnelles",
	country = "Pays",
	Q20 = "Norvège",
	caption = "Légende",
	mountains_classification = "Classement de la montagne",
	Q29 = "Espagne",
	Q33 = "Finlande",
	best_young_classification = "Classement du meilleur jeune",
	Q24645209 = "maillot vert de leader du classement par points",
	image = "Image",
	teams_classifications = "Classement par équipes",
	uphill = "contre-la-montre en côte",
	mixt_teams = "Équipes mixtes",
	winner_mountain = "Meilleur grimpeur",
	cima_coppy = "Cima Coppi",
	note_long = "note",
	Q96 = "Mexique",
	average_speed = "Vitesse moyenne",
	stage_classification = "Classement de l'étape",
	Q17 = "Japon",
	Q16 = "Canada",
	winner_point = "Classement par points",
	winner_combination = "Meilleur au combiné",
	time_prologue = "prologue",
	Q2466826_pl = "Équipes féminines professionnelles",
	type = "Type",
	general_classification = "Classement général",
	palmares = "Résultats",
	Q20639847_pl = "Équipes cyclistes professionnelles",
	Q183 = "Allemagne",
	Q30 = "États-Unis",
	Q24645383 = "maillot blanc de leader du classement du meilleur jeune",
	unit_pt = "pt",
	distance = "Distance",
	Q214 = "Slovaquie",
	plain = "étape de plaine",
	mount = "étape de montagne",
	winner_young = "Meilleur jeune",
	Q20652655_pl = "Équipes cyclistes amateurs",
	nr_teams = "Équipes",
	stages = "Étapes",
	prolog = "Prologue",
	unit_pts = "pts",
	journey_destination = "Lieu d'arrivée",
	Q1756006_pl = "Équipes continentales",
	starting_riders = "Partants",
	sectional_view = "Vue en coupe",
	regularity = "Régularité",
	Q2466826 = "Équipe féminine professionnelle",
	fuga_pinarello = "Fuga Pinarello",
	mountain = "Montagne",
	azzuri_d_italia = "Azzurri d'Italia",
	Q20639848_pl = "Équipes régionales et de clubs",
	combinated = "Combiné",
	unit_h = "h",
	Q1756006 = "Équipe continentale",
	Q20653564 = "Groupe sportif II",
	Q382927 = "Équipe continentale professionnelle",
	journey_origin = "Lieu de départ",
	Q77 = "Uruguay",
	overall_leader = "Leader du classement général",
	rider = "Coureur",
	picture = "Image",
	Q20639848 = "Équipe régionale et de club",
	special_2 = "Special 2",
	class = "Classe",
	Q20639847 = "Équipe cycliste professionnelle",
	date = "Date",
	Q20653566_pl = "Groupes sportifs III",
	points_classification = "Classement par points",
	previous_team = "Équipe précédente",
	metas_volantes = "Étapes volantes",
	third = "Troisième",
	winner_regularity = "Régularité",
	documentation = "Documentation",
	team_by_points = "Équipe aux points",
	race_details = "Généralités",
	Q20653566 = "Groupe sportif III",
	points = "Points",
	Q20653563 = "Groupe sportif I",
	time = "Temps",
	Q2999 = "Pays-Bas",
	mixt_team = "Équipe mixte",
}
p.translations["de"] = {
	code = "Code",
	points_classification_for_teams = "Mannschaftswertung",
	rest = "Ruhetag",
	course = "Ausgabe",
	Q664 = "Venezuela",
	speed = "Geschw.",
	Q142 = "Frankreich",
	sprints_classification = "Sprintwertung",
	Q55 = "Niederlande",
	Q145 = "Vereinigtes Königreich",
	Q20652655 = "Amateurmannschaft",
	stopover = "Etappenorte",
	hilly = "Hügelige Etappe",
	date_of_birth = "Geburtsdatum",
	Q26849121 = "Sonstiges Frauenteam",
	time_indiv = "Einzelzeitfahren",
	unit_min = "min",
	journey_destination = "Ziel",
	race = "Rennen",
	Q717 = "Kolumbien",
	time_team = "Teamzeitfahren",
	unit_kmh = "km/h",
	winner_fighting = "Kämpferischster Fahrer",
	Q408 = "Australien",
	stage_winner = "Etappen&shy;sieger",
	Q39 = "Schweiz",
	winner_team = "Teamwertung",
	Q159 = "Russland",
	countries = "Austragungsländer",
	victories = "Siege",
	team = "Team",
	inter = "Mittelschwere Etappe",
	Q23726798_pl = "Nationalmannschaften",
	unit_sec = "s",
	map = "Karte",
	competition = "Rennserie",
	second = "Zweiter",
	cost = "Kosten",
	year = "Jahr",
	special_1 = "Special 1",
	team_name = "Team",
	Q6154783_pl = "WorldTeams",
	Q6154783 = "WorldTeam",
	note_short = "Anm.",
	rider_name = "Name",
	Q414 = "Neuseeland",
	competitions = "Wettbewerb",
	Q32 = "Luxemburg",
	Q31 = "Belgien",
	distance_km = "Länge (km)",
	Q37 = "Litauen",
	Q36 = "Polen",
	Q35 = "Dänemark",
	Q34 = "Schweden",
	Q20653563_pl = "Groupes Sportifs I",
	winner_sprint = "Sprintwertung",
	Q20638319 = "ProTeam",
	Q38 = "Italien",
	Q739 = "Niederlande",
	Q20638319_pl = "ProTeams",
	Q20653564_pl = "Groupes Sportifs II",
	winner_team_points = "Teamwertung (Punkte)",
	Q23726798 = "Nationalmannschaft",
	nationality = "Land",
	stage = "Etappe",
	dates = "Datum",
	arriving_riders = "Fahrer im Ziel",
	Q382927_pl = "Professional Continental Teams",
	country = "Staat",
	Q20 = "Norwegen",
	winner = "Sieger",
	mountains_classification = "Bergwertung",
	Q29 = "Spanien",
	Q33 = "Finnland",
	best_young_classification = "Nachwuchswertung",
	teams_classifications = "Mannschaftswertung",
	uphill = "Bergzeitfahren",
	mixt_teams = "Mixed Teams",
	winner_mountain = "Bergwertung",
	note_long = "Anmerkung",
	Q96 = "Mexiko",
	average_speed = "Durchschnitts&#173;geschwindigkeit",
	stage_classification = "Etappenergebnis",
	Q17 = "Japan",
	Q16 = "Kanada",
	winner_point = "Punktewertung",
	winner_combination = "Kombinationswertung",
	time_prologue = "Prolog",
	Q2466826_pl = "UCI Women's Teams",
	general_classification = "Gesamtwertung",
	palmares = "Ergebnis",
	Q20639847_pl = "Profi-Radsportteams",
	Q183 = "Deutschland",
	Q30 = "USA",
	Q24645383 = "weißes Trikot des Führenden der Nachwuchswertung",
	unit_pt = "P.",
	distance = "Gesamtlänge",
	Q214 = "Slowakei",
	plain = "Flachetappe",
	mount = "Hochgebirgsetappe",
	winner_young = "Nachwuchswertung",
	Q20652655_pl = "Amateurmannschaften",
	Q26849121_pl = "Sonstige Frauenteams",
	nr_teams = "Teams",
	stages = "Etappen",
	prolog = "Prolog",
	unit_pts = "P.",
	time_gap = "Zeitabstand",
	Q1756006_pl = "Continental Teams",
	starting_riders = "Fahrer am Start",
	Q2466826 = "UCI Women's Team",
	caption = "Beschriftung",
	Q20639848_pl = "Regionale Teams und Vereine",
	unit_h = "h",
	Q1756006 = "Continental Team",
	Q20653564 = "Groupe Sportif II",
	Q382927 = "Professional Continental Team",
	journey_origin = "Start",
	Q77 = "Uruguay",
	overall_leader = "Gesamt&shy;führender",
	rider = "Fahrer",
	picture = "Bild",
	Q20639848 = "Regionale Teams und Vereine",
	special_2 = "Special 2",
	class = "Klasse",
	Q20639847 = "Profi-Radsportteam",
	date = "Datum",
	Q20653566_pl = "Groupes Sportifs III",
	points_classification = "Punktewertung",
	previous_team = "Vorheriges Team",
	metas_volantes = "Metas volantes",
	third = "Dritter",
	winner_regularity = "Regularidad",
	documentation = "Dokumentation",
	race_details = "Allgemeines",
	Q20653566 = "Groupe Sportif III",
	points = "Punkte",
	Q20653563 = "Groupe Sportif I",
	time = "Zeit",
	mixt_team = "Mixed Team",
}
p.translations["da"] = {
	code = "Kode",
	points_classification_for_teams = "Holdkonkurrence efter point",
	rest = "hviledag",
	course = "Rute",
	Q20652655 = "Amatørhold",
	general_class_stage = "Samlede stilling efter etapen",
	speed = "Gns. fart",
	competitions = "Konkurrencer",
	combativity = "Mest angrebsivrige",
	winner = "Vinder",
	young = "Ungdom",
	stopover = "Start – Mål",
	hilly = "kuperet etape",
	date_of_birth = "Fødselsdag",
	time_indiv = "enkeltstart",
	unit_min = "'",
	time_gap = "Tidsforskel",
	race = "Løb",
	time_team = "holdtidskørsel",
	unit_kmh = "km/t",
	winner_fighting = "Mest angrebsivrige",
	stage_winner = "Etapevinder",
	winner_team = "Holdkonkurrence",
	stage_results = "Etaperesultat",
	countries = "Lande",
	victories = "Victories",
	team = "Hold",
	inter = "middel bjergetape",
	Q23726798_pl = "Landshold",
	unit_sec = "''",
	map = "Kort",
	competition = "Konkurrence",
	second = "Toer",
	cost = "Omkostninger",
	year = "År",
	special_1 = "Special 1",
	team_name = "Holdnavn",
	Q6154783_pl = "WorldTeams",
	Q6154783 = "WorldTeam",
	sprints = "Sprint",
	cima_pantani = "Cima Pantani",
	note_short = "note",
	rider_name = "Rytter",
	sprints_classification = "Sprintkonkurrence",
	distance_km = "Afstand (km)",
	Q20653563_pl = "Sportsgruppe I",
	winner_sprint = "Sprinttrøje",
	Q20638319 = "ProTeam",
	leader = "Førende rytter",
	Q20638319_pl = "ProTeams",
	Q20653564_pl = "Sportsgruppe II",
	combative = "Mest angrebsivrige",
	winner_team_points = "Holdkonkurrence efter point",
	Q23726798 = "Landshold",
	nationality = "Land",
	legend = "Billedtekst",
	card = "Kort",
	stage = "Etape",
	dates = "Datoer",
	arriving_riders = "Fuldførende ryttere",
	second_class_stage = "Klassementerne efter etapen",
	Q382927_pl = "Professionelle kontinentalhold",
	country = "Land",
	caption = "Billedtekst",
	mountains_classification = "Bjergkonkurrence",
	best_young_classification = "Ungdomskonkurrence",
	image = "Billede",
	teams_classifications = "Holdkonkurrence",
	uphill = "bjergenkeltstart",
	mixt_teams = "Mix-hold",
	winner_mountain = "Bjergtrøje",
	cima_coppy = "Cima Coppi",
	note_long = "note",
	average_speed = "Gennemsnitlig fart",
	stage_classification = "Etaperesultat",
	winner_point = "Pointtrøje",
	winner_combination = "Kombinationstrøje",
	time_prologue = "prolog",
	Q2466826_pl = "Kvindehold",
	type = "Type",
	general_classification = "General classification",
	palmares = "Resultater",
	Q20639847_pl = "Prohold",
	unit_pt = "point",
	distance = "Distance",
	plain = "flad etape",
	mount = "bjergetape",
	winner_young = "Ungdomstrøje",
	Q20652655_pl = "Amatørhold",
	nr_teams = "Hold",
	stages = "Etaper",
	prolog = "Prolog",
	unit_pts = "point",
	journey_destination = "Målby",
	Q1756006_pl = "Kontinentalhold",
	starting_riders = "Startende ryttere",
	sectional_view = "Profil",
	regularity = "Regularitet",
	Q2466826 = "Kvindehold",
	fuga_pinarello = "Fuga Pinarello",
	mountain = "Bjerg",
	azzuri_d_italia = "Azzurri d'Italia",
	Q20639848_pl = "Regional- og klubhold",
	combinated = "Kombination",
	unit_h = "t",
	Q1756006 = "Kontinentalhold",
	Q20653564 = "Sportsgruppe II",
	Q382927 = "Professionelt kontinentalhold",
	journey_origin = "Startby",
	overall_leader = "Førende rytter",
	rider = "Rytter",
	picture = "Billede",
	Q20639848 = "Regional- og klubhold",
	special_2 = "Special 2",
	class = "Klasse",
	Q20639847 = "Prohold",
	date = "Dato",
	Q20653566_pl = "Sportsgruppe III",
	points_classification = "Pointkonkurrence",
	previous_team = "Seneste hold",
	metas_volantes = "Indlagt spurt",
	third = "Treer",
	winner_regularity = "Regularitet",
	documentation = "Dokumentation",
	team_by_points = "Hold efter point",
	race_details = "Etapedetaljer",
	Q20653566 = "Sportsgruppe III",
	points = "Point",
	Q20653563 = "Sportsgruppe I",
	time = "Tid",
	mixt_team = "Mix-hold",
}
p.translations["br"] = {
	code = "Kod",
	points_classification_for_teams = "Renkadur a-skipailh",
	rest = "devezh diskuizh",
	course = "Redadeg",
	speed = "Speed",
	sprints_classification = "Renkadur ar sprintoù",
	winner = "1añ",
	stopover = "Kêr loc'hañ ha kêr degouezhout",
	hilly = "tennad digompez",
	date_of_birth = "Deiziad genel",
	time_indiv = "ABEU",
	unit_min = "'",
	journey_destination = "Lec'h degouezhout",
	time_team = "ABEU a-skipailhoù",
	unit_kmh = "km/h",
	winner_fighting = "Stourmer meur",
	stage_winner = "Trec'hour",
	countries = "Broioù",
	team = "Skipailh",
	inter = "tennad damveneziek",
	Q23726798_pl = "Skipailhoù bro",
	unit_sec = "''",
	map = "Map",
	competition = "Kevezadeg",
	second = "2l",
	cost = "Koust",
	winner_regularity = "Regularidad",
	year = "Bloavezh",
	special_1 = "Special 1",
	team_name = "Anv skipailh",
	Q6154783_pl = "WorldTeams",
	Q6154783 = "WorldTeam",
	note_short = "note",
	rider_name = "Reder",
	competitions = "Kevezadegoù",
	distance_km = "Hed (km)",
	Q20653563_pl = "Strolladoù sport I",
	winner_sprint = "Sprinter gwellañ",
	Q20638319 = "ProTeam",
	Q20638319_pl = "ProTeams",
	Q20653564_pl = "Strolladoù sport II",
	winner_team_points = "Team points",
	Q23726798 = "Skipailh bro",
	nationality = "Bro",
	stage = "Tennad",
	dates = "Deiziadoù",
	arriving_riders = "Erruerien",
	Q382927_pl = "Skipailhoù kevandir a-vicher",
	country = "Bro",
	caption = "Caption",
	mountains_classification = "Renkadur ar menez",
	best_young_classification = "Renkadur ar yaouank gwellañ",
	teams_classifications = "Renkadur a-skipailh",
	winner_team = "Skipailh gwellañ",
	mixt_teams = "Skipailhoù kemmesk",
	winner_mountain = "Kraper gwellañ",
	note_long = "note",
	average_speed = "Tizh keitat",
	stage_classification = "Renkadur an tennad",
	winner_point = "Renkadur a-boentoù",
	winner_combination = "Gwellañ el liesrenkadur",
	Q2466826_pl = "Skipailhoù merc'hed",
	general_classification = "Renkadur hollek",
	palmares = "Disoc'hoù",
	Q20652655 = "Skipailh marc'h-houarn amatour",
	unit_pt = "pt",
	distance = "Hed",
	plain = "tennad plaen",
	mount = "tennad meneziek",
	winner_young = "Yaouank gwellañ",
	Q20652655_pl = "Skipailhoù marc'h-houarn amatour",
	nr_teams = "Skipailhoù",
	stages = "Tennadoù",
	prolog = "Prolog",
	unit_pts = "pts",
	time_gap = "Time Gap",
	Q1756006_pl = "Skipailhoù kevandir",
	starting_riders = "Loc'herien",
	Q2466826 = "Skipailh merc'hed",
	Q20639848_pl = "Skipailhoù rannvro ha club",
	unit_h = "e",
	Q1756006 = "Skipailh kevandir",
	points = "Poentoù",
	Q382927 = "Skipailh kevandir a-vicher",
	journey_origin = "Lec'h loc'hañ",
	overall_leader = "E penn ar renkamant hollek",
	rider = "Reder",
	picture = "Picture",
	Q20639848 = "Skipailh rannvro ha klub",
	special_2 = "Special 2",
	Q20639847 = "Skipailh marc'h-houarn a-vicher",
	date = "Deiziad",
	Q20653566_pl = "Strolladoù sport III",
	points_classification = "Renkadur a-boentoù",
	metas_volantes = "Metas volantes",
	third = "3de",
	Q20639847_pl = "Skipailhoù marc'h-houarn a-vicher",
	documentation = "Documentation",
	race_details = "Hollegezhioù",
	Q20653566 = "Strollad sport III",
	Q20653564 = "Strollad sport II",
	Q20653563 = "Strollad sport I",
	time = "Amzer",
	mixt_team = "Skipailh kemmesk",
}
p.translations["nl"] = {
	code = "Code",
	points_classification_for_teams = "Ploegenklassement",
	rest = "rustdag",
	course = "Koers",
	general_class_stage = "Algemeen klassement na de etappe",
	speed = "Snelheid",
	competitions = "Wedstrijden",
	Q20652655 = "Amateurteam",
	young = "Jongeren",
	stopover = "Start – Finish",
	hilly = "heuvelrit",
	date_of_birth = "Geboortedatum",
	time_indiv = "individuele tijdrit",
	unit_min = "'",
	time_gap = "Tijdsverschil",
	time_team = "ploegentijdrit",
	unit_kmh = "km/u",
	winner_fighting = "Aanvalslust",
	stage_winner = "Winnaar",
	winner_team = "Team",
	stage_results = "Etappeuitslag",
	countries = "Landen",
	race = "Wedstrijd",
	team = "Team",
	inter = "heuvelrit",
	Q23726798_pl = "National teams",
	unit_sec = "''",
	map = "Map",
	competition = "Wedstrijd",
	second = "Tweede",
	cost = "Kosten",
	year = "Jaar",
	special_1 = "Special 1",
	team_name = "Teamnaam",
	Q6154783_pl = "WorldTeams",
	Q6154783 = "WorldTeam",
	sprints = "Sprints",
	cima_pantani = "Cima Pantani",
	note_short = "noot",
	rider_name = "Naam",
	sprints_classification = "Sprintklassement",
	distance_km = "Afstand (km)",
	Q20653563_pl = "Groupes sportifs I",
	winner_sprint = "Sprints",
	Q20638319 = "ProTeam",
	leader = "Leider",
	Q20638319_pl = "ProTeams",
	Q20653564_pl = "Groupes sportifs II",
	combative = "Combative",
	winner_team_points = "Teampunten",
	Q23726798 = "National team",
	nationality = "Nationaliteit",
	legend = "Legend",
	card = "Card",
	stage = "Etappe",
	dates = "Datums",
	arriving_riders = "Coureurs bij de finish",
	second_class_stage = "Bijkomende uitslagen na de wedstrijd",
	Q382927_pl = "Professional continental teams",
	country = "Land",
	winner = "Winnaar",
	mountains_classification = "Bergklassement",
	best_young_classification = "Jongerenklassement",
	image = "Afbeelding",
	teams_classifications = "Ploegenklassement",
	uphill = "klimtijdrit",
	mixt_teams = "Gemengde teams",
	winner_mountain = "Bergen",
	cima_coppy = "Cima Coppi",
	note_long = "noot",
	average_speed = "Gemiddelde snelheid",
	stage_classification = "Etappeklassement",
	winner_point = "Punten",
	winner_combination = "Combinatie",
	time_prologue = "proloog",
	Q2466826_pl = "Professionele vrouwenteams",
	type = "Soort",
	general_classification = "Algemeen Klassement",
	palmares = "Palmares",
	Q20639847_pl = "Professional cycling teams",
	unit_pt = "pt",
	distance = "Afstand",
	plain = "vlakke rit",
	mount = "bergrit",
	winner_young = "Jeugd",
	Q20652655_pl = "Amateurteams",
	nr_teams = "Teams",
	stages = "Etappes",
	prolog = "Proloog",
	unit_pts = "pts",
	journey_destination = "Aankomstplaats",
	Q1756006_pl = "Continental teams",
	starting_riders = "Coureurs aan de start",
	Q2466826 = "Professioneel vrouwenteam",
	fuga_pinarello = "Fuga Pinarello",
	mountain = "Berg",
	azzuri_d_italia = "Azzurri d'Italia",
	caption = "Caption",
	Q20639848_pl = "Regional and club teams",
	combinated = "Combinatie",
	unit_h = "u",
	Q1756006 = "Continental team",
	Q20653564 = "Groupe sportif II",
	Q382927 = "Professional continental team",
	journey_origin = "Start van de etappe",
	overall_leader = "Klassements&shy;leider",
	rider = "Renner",
	picture = "Picture",
	Q20639848 = "Regional and club team",
	special_2 = "Special 2",
	Q20639847 = "Professional cycling team",
	date = "Datum",
	Q20653566_pl = "Groupes sportifs III",
	points_classification = "Puntenklassement",
	previous_team = "Vorige ploeg",
	metas_volantes = "Metas volantes",
	third = "Derde",
	winner_regularity = "Regularidad",
	documentation = "Documentatie",
	race_details = "Race details",
	Q20653566 = "Groupe sportif III",
	points = "Punten",
	Q20653563 = "Groupe sportif I",
	time = "Tijd",
	mixt_team = "Gemengd team",
}
p.translations["hu"] = {
	best_young_classification = "Fiatalok versenye",
	points_classification_for_teams = "Csapatverseny",
	unit_pts = "pts",
	teams_classifications = "Csapatverseny",
	uphill = "hegyi időfutam",
	date = "Időpont",
	second = "Második",
	year = "Év",
	speed = "Átlagsebesség",
	unit_h = "óra",
	note_long = "jegyzet",
	unit_pt = "pt",
	rider_name = "Név",
	points_classification = "Pontverseny",
	winner = "Versenyző",
	stopover = "Végpontok",
	hilly = "dombos szakasz",
	sprints_classification = "Gyorsulverseny",
	distance_km = "Hossz (km)",
	time_prologue = "prolog",
	time_indiv = "egyéni időfutam",
	overall_leader = "Általános vezető",
	rider = "Versenyző",
	unit_min = ":",
	time_gap = "Időkülönbség",
	mountains_classification = "Hegyi pontverseny",
	time_team = "csapat időfutam",
	time = "Idő",
	unit_kmh = "km/h",
	date_of_birth = "Születésnap",
	stage_winner = "Szakasz&shy;győztes",
	nationality = "Ország",
	stage_classification = "Szakasz verseny",
	stage = "Szakasz",
	previous_team = "Előző csapat",
	inter = "közepes hegyi szakasz",
	third = "Harmadik",
	plain = "sík szakasz",
	mount = "hegyi szakasz",
	general_classification = "Összetett verseny",
	note_short = "jegyzet",
	points = "Pont",
	team = "Équipe",
	country = "Ország",
	prolog = "Prolog",
}
p.translations["ja"] = {
	code = "コード",
	rest = "休養日",
	course = "コース",
	general_class_stage = "ステージ後クラス",
	combativity = "敢闘賞",
	Q20652655 = "アマ自転車チーム",
	young = "新人賞",
	stopover = "コース",
	hilly = "丘陵ステージ",
	date_of_birth = "生年月日",
	time_indiv = "個人タイムトライアルステージ",
	unit_min = "分",
	journey_destination = "ゴール",
	race = "レース",
	time_team = "チームタイムトライアルステージ",
	unit_kmh = "キロメートル毎時",
	winner_fighting = "敢闘賞",
	stage_winner = "ステージ勝者",
	winner_team = "チーム",
	stage_results = "ステージ結果",
	countries = "国",
	victories = "Victories",
	team = "チーム",
	inter = "中間ステージ",
	Q23726798_pl = "ナショナルチーム",
	unit_sec = "'秒'",
	map = "地図",
	competition = "競技",
	second = "2位",
	cost = "Cost",
	year = "年",
	special_1 = "Special 1",
	team_name = "チーム名",
	Q6154783_pl = "ワールドチーム",
	Q6154783 = "ワールドチーム",
	sprints = "スプリント賞",
	cima_pantani = "Cima Pantani",
	note_short = "脚注",
	rider_name = "選手名",
	competitions = "競技",
	distance_km = "距離 (km)",
	winner_sprint = "スプリント賞",
	Q20638319 = "プロチーム",
	leader = "1位",
	Q20638319_pl = "プロチーム",
	combative = "Combative",
	winner_team_points = "チームポイント",
	Q23726798 = "ナショナルチーム",
	nationality = "国",
	legend = "凡例",
	card = "カード",
	stage = "ステージ",
	dates = "日付",
	arriving_riders = "ゴール選手",
	second_class_stage = "ステージ後副次的クラス",
	Q382927_pl = "プロフェッショナルコンチネンタルチーム",
	country = "国",
	caption = "キャプション",
	winner = "勝者",
	image = "画像",
	uphill = "アップヒルタイムトライアルステージ",
	winner_mountain = "山岳賞",
	cima_coppy = "Cima Coppi",
	note_long = "脚注",
	average_speed = "平均速度",
	winner_point = "ポイント賞",
	winner_combination = "チーム総合時間賞",
	time_prologue = "タイムトライアルステージ",
	Q2466826_pl = "プロ女子チーム",
	type = "種類",
	general_classification = "General classification",
	palmares = "結果",
	Q20639847_pl = "プロ自転車チーム",
	unit_pt = "ポイント",
	distance = "距離",
	plain = "平坦ステージ",
	mount = "山岳ステージ",
	winner_young = "新人賞",
	Q20652655_pl = "アマ自転車チーム",
	nr_teams = "チーム",
	stages = "ステージ",
	prolog = "プロローグ",
	unit_pts = "ポイント",
	Q1756006_pl = "コンチネンタルチーム",
	starting_riders = "スタート選手",
	sectional_view = "断面図",
	regularity = "Regularity",
	Q2466826 = "プロ女子チーム",
	fuga_pinarello = "Fuga Pinarello",
	mountain = "山岳賞",
	azzuri_d_italia = "Azzurri d'Italia",
	Q20639848_pl = "地域・クラブチーム",
	combinated = "コンビネーション賞",
	unit_h = "時間",
	Q1756006 = "コンチネンタルチーム",
	Q382927 = "プロフェッショナルコンチネンタルチーム",
	journey_origin = "スタート",
	overall_leader = "全体リーダー",
	picture = "画像",
	Q20639848 = "地域・クラブチーム",
	special_2 = "Special 2",
	Q20639847 = "プロ自転車チーム",
	unit_km = "キロメートル",
	date = "開催日",
	class = "国",
	previous_team = "前所属",
	metas_volantes = "Metas volantes",
	third = "3位",
	winner_regularity = "Regularidad",
	documentation = "ドキュメンテーション",
	team_by_points = "ポイント順位",
	race_details = "レース詳細",
	points = "ポイント賞",
}
p.translations["fo"] = {
	code = "Kota",
	points_classification_for_teams = "Liðkappingin",
	rest = "Hvílidagur",
	course = "Leið",
	general_class_stage = "Høvuðskappingin eftir teinin",
	speed = "Ferð",
	competitions = "Kappingar",
	combativity = "Álopsheiður",
	Q20652655 = "Amatørlið",
	young = "Ungdóms",
	stopover = "Byrjan – Mál",
	hilly = "Slætt við brúgvasteinum",
	date_of_birth = "Føðingardagur",
	time_indiv = "Einkultstartur",
	unit_min = "'",
	time_gap = "Time Gap",
	time_team = "Liðsúkkling",
	unit_kmh = "km/t",
	winner_fighting = "Mest álopssinnaður",
	stage_winner = "Teina&shy;vinnari",
	stage_results = "Teinaúrslit",
	countries = "Lond",
	race = "Kapping",
	team = "Lið",
	inter = "Óslætt",
	Q23726798_pl = "Landslið",
	unit_sec = "'",
	map = "Map",
	competition = "Kapping",
	second = "Annað pláss",
	cost = "Kostnaður",
	year = "Ár",
	special_1 = "Special 1",
	team_name = "Liðnavn",
	Q6154783_pl = "WorldTeams",
	Q6154783 = "WorldTeam",
	sprints = "Spurtar",
	cima_pantani = "Cima Pantani",
	note_short = "note",
	rider_name = "Súkklari",
	sprints_classification = "Spurtkappingin",
	distance_km = "Vegalongd (km)",
	Q20653563_pl = "Ítróttarbólkur I",
	winner_sprint = "Spurtar",
	Q20638319 = "ProTeam",
	leader = "Førandi súkklari",
	Q20638319_pl = "ProTeams",
	Q20653564_pl = "Ítróttarbólkur II",
	combative = "Álopsheiður",
	winner_team_points = "Team points",
	Q23726798 = "Landslið",
	nationality = "Land",
	legend = "Myndatekstur",
	card = "Kort",
	stage = "Teinur",
	dates = "Dagar",
	arriving_riders = "Fullførandi súkklarar",
	second_class_stage = "Aðrar kappingar eftir teinin",
	Q382927_pl = "Professionel kontinentallið",
	country = "Land",
	winner = "Vinnari",
	mountains_classification = "Fjallakappingin",
	best_young_classification = "Ungdómskappingin",
	image = "Mynd",
	teams_classifications = "Liðkappingin",
	winner_team = "Lið",
	mixt_teams = "Blandaðlið",
	winner_mountain = "Fjøll",
	cima_coppy = "Cima Coppi",
	note_long = "note",
	average_speed = "Miðalferð",
	stage_classification = "Teinaplasering",
	winner_point = "Stig",
	winner_combination = "Kombinatión",
	time_prologue = "Forteinur",
	Q2466826_pl = "Kvinnulið",
	type = "Slag",
	general_classification = "Samlað plasering",
	palmares = "Palmares",
	Q20639847_pl = "Prolið",
	unit_pt = "pt",
	distance = "Fjarstøða",
	plain = "Slætt",
	mount = "Fjallateinur",
	winner_young = "Ungdómur",
	Q20652655_pl = "Amatørlið",
	nr_teams = "Lið",
	stages = "Teinar",
	prolog = "Forteinur",
	unit_pts = "pts",
	journey_destination = "Málbýur",
	Q1756006_pl = "Kontinental lið",
	starting_riders = "Byrjandi súkklarar",
	sectional_view = "Brotpartur",
	regularity = "Regularitetur",
	Q2466826 = "Kvinulið",
	fuga_pinarello = "Fuga Pinarello",
	mountain = "Fjøll",
	azzuri_d_italia = "Azzurri d'Italia",
	caption = "Caption",
	Q20639848_pl = "Regional- og felagslið",
	combinated = "Kombinatiónsheiður",
	unit_h = "t",
	Q1756006 = "Kontinentallið",
	Q20653564 = "Ítróttarbólkur II",
	Q382927 = "Professionelt kontinentallið",
	journey_origin = "Byrjunarbýur",
	overall_leader = "Gula troyggjan",
	rider = "Súkklari",
	picture = "Picture",
	Q20639848 = "Regional- og klublið",
	special_2 = "Special 2",
	Q20639847 = "Prolið",
	date = "Dagur",
	Q20653566_pl = "Ítróttarbólkur III",
	points_classification = "Stigkappingin",
	previous_team = "Undanfarna lið",
	metas_volantes = "Metas volantes",
	third = "Triðja pláss",
	winner_regularity = "Regularidad",
	documentation = "Skjalfesting",
	team_by_points = "Lið eftir stigum",
	race_details = "Smálutir um kapping",
	Q20653566 = "Ítróttarbólkur III",
	points = "Stig",
	Q20653563 = "Ítróttarbólkur I",
	time = "Tíð",
	mixt_team = "Blandaðlið",
}
p.translations["sr"] = {
	second = "Други",
	winner = "Победник",
	third = "Трећи",
	year = "Година",
}
p.translations["la"] = {
	overall_leader = "Altiore princeps",
	stopover = "Iter",
	stage_winner = "Victor",
	distance_km = "Distantia (km)",
	date = "Dies",
	prolog = "Incipit prologus",
	stage = "Statio",
}
p.translations["sv"] = {
	rest = "Vilodag",
	date = "Datum",
	second = "Andra",
	year = "År",
	note_long = "not",
	rider_name = "Namn",
	winner = "Vinnare",
	stopover = "Start – mål",
	date_of_birth = "Födelsedatum",
	time_prologue = "Prolog",
	time_indiv = "Tempoetapp",
	overall_leader = "Övergripande ledare",
	distance_km = "Distans (km)",
	time_team = "Lagtempoetapp",
	stage_winner = "Skede vinnare",
	nationality = "Land",
	stage = "Etapp",
	third = "Tredje",
	plain = "Flack etapp",
	mount = "Bergsetapp",
	note_short = "not",
	inter = "Kuperat",
	prolog = "Prolog",
}
p.translations["mk"] = {
	code = "Код",
	points_classification_for_teams = "Екипен пласман",
	rest = "ден за одмор",
	course = "Издание",
	speed = "Брзина",
	sprints_classification = "Спринтерски пласман",
	Q20652655 = "Аматерска велосипедска екипа",
	stopover = "Тек",
	hilly = "ридеста етапа",
	date_of_birth = "Датум на раѓање",
	time_indiv = "индивидуален хронометар",
	unit_min = "'",
	journey_destination = "Одредиште",
	race = "Трка",
	time_team = "екипен хронометар",
	unit_kmh = "км/ч",
	winner_fighting = "Борбеност",
	stage_winner = "Победник",
	countries = "Држави",
	victories = "Victories",
	team = "Екипа",
	inter = "среднопланинска етапа",
	Q23726798_pl = "Национални екипи",
	map = "местоположбена карта",
	competition = "Натпреварување",
	second = "Второпласиран",
	cost = "Трошоци",
	year = "Година",
	special_1 = "Special 1",
	team_name = "Име на екипата",
	Q6154783_pl = "Екипи од Светската турнеја на UCI",
	Q6154783 = "Екипа од Светската турнеја на UCI",
	note_short = "Фуснота",
	rider_name = "Велосипедист",
	competitions = "Натпреварувања",
	distance_km = "Растојание (км)",
	Q20653563_pl = "Groupes sportifs I",
	winner_sprint = "Спринтерски",
	Q20638319 = "ProTeam",
	Q20638319_pl = "ProTeams",
	Q20653564_pl = "Groupes sportifs II",
	winner_team_points = "Team points",
	U23 = "под 23 години",
	Q23726798 = "Национална екипа",
	nationality = "Држава",
	stage = "Етапа",
	dates = "Датуми",
	arriving_riders = "Возачи на крај",
	Q382927_pl = "Професионални континентални екипи",
	country = "Земја",
	winner = "Победник",
	mountains_classification = "Планински пласман",
	best_young_classification = "Пласман за млад возач",
	teams_classifications = "Екипен пласман",
	winner_team = "Екипен",
	mixt_teams = "Мешани екипи",
	winner_mountain = "Планински",
	note_long = "Фуснота",
	average_speed = "Просечна брзина",
	stage_classification = "Етапен резултат",
	winner_point = "Бодовен",
	winner_combination = "Комбиниран",
	time_prologue = "пролог",
	Q2466826_pl = "Професионални женски екипи",
	general_classification = "General classification",
	palmares = "Добитници на наградите",
	Q20639847_pl = "Професионални велосипедски екипи",
	unit_pt = "pt",
	distance = "Растојание",
	plain = "рамна етапа",
	mount = "планинска етапа",
	winner_young = "Младински",
	Q20652655_pl = "Аматерски велосипедски екипи",
	nr_teams = "Екипи",
	stages = "Етапи",
	prolog = "Пролог",
	unit_pts = "pts",
	time_gap = "Разлика",
	Q1756006_pl = "Континентални екипи",
	starting_riders = "Возачи на почеток",
	Q2466826 = "Професионална женска екипа",
	unit_km = "км",
	caption = "опис",
	Q20639848_pl = "Регионални екипи и клубови",
	unit_h = "ч",
	Q1756006 = "Континентална екипа",
	Q20653564 = "Groupe sportif II",
	Q382927 = "Професионална континентална екипа",
	journey_origin = "Поаѓалиште",
	overall_leader = "Cевкупен лидер",
	rider = "Возач",
	picture = "слика",
	Q20639848 = "Регионална екипа и клуб",
	special_2 = "Special 2",
	class = "Класа",
	Q20639847 = "Професионална велосипедска екипа",
	date = "Датум",
	Q20653566_pl = "Groupes sportifs III",
	points_classification = "Бодовен пласман",
	previous_team = "Претходна екипа",
	metas_volantes = "Metas volantes",
	third = "Третопласиран",
	winner_regularity = "Regularidad",
	documentation = "Документација",
	race_details = "Детали за трката",
	Q20653566 = "Groupe sportif III",
	points = "Бодови",
	Q20653563 = "Groupe sportif I",
	time = "Време",
	mixt_team = "Мешана екипа",
}
p.translations["sk"] = {
	overall_leader = "Priebežný líder",
	stopover = "Trasa",
	stage_winner = "Víťaz",
	distance_km = "Vzdialenosť (km)",
	date = "Dátum",
	prolog = "Prológ",
	stage = "Etapa",
}
return p