Module:Library/mathroman/I18N

La documentation pour ce module peut être créée à Module:Library/mathroman/I18N/Documentation

-- Sub-module of translations for Module:MathRoman
-- Sub-módulo de traducciones para Module:MathRoman
-- Sous-module de traductions pour Module:MathRoman
-- local I18N = require "Module:MathRoman/I18N"
 
local p = { }

p.i18n = {} -- translations tables known in the module Module:MathRoman

p.i18n.en = {
	err_errors_head				= "Error: ",
	err_roman_error				= "Roman error: ",
	err_value_error				= "Value error: ",
	err_J_before_end			= "character J before the end",
	err_char_X_in_N				= "character %1 in %2",
	err_char_increasing			= "3 increasing characters",
	err_more_than_4999			= "value > 4999",
	err_null_value				= "null value",
	roman_to_digital_test_title	= "Test from roman to digital numbers",
	digital_to_roman_test_title	= "Test from digital to roman numbers",
} -- p.i18n.en

p.i18n.es = {
	err_errors_head				= "Error: ",            
	err_roman_error				= "Error de romano: ",
	err_value_error				= "Error de valor: ",
	err_J_before_end			= "carácter J antes del fin",
	err_char_X_in_N				= "carácter 1% en %2",
	err_char_increasing			= "3 crecientes caracteres",
	err_more_than_4999			= "valor > 4999",
	err_null_value				= "valor null",
	roman_to_digital_test_title	= "Prueba de números romanos a números decimales",
	digital_to_roman_test_title	= "Prueba de números decimales a números romanos",
} -- p.i18n.es

p.i18n.fr = {
	err_errors_head				= "Erreur : ",
	err_roman_error				= "Erreur de romain : ",
	err_value_error				= "Erreur de valeur : ",
	err_J_before_end			= "caractère J avant la fin",
	err_char_X_in_N				= "caractère %1 en %2",
	err_char_increasing			= "3 caractères croissants",
	err_more_than_4999			= "valeur > 4999",
	err_null_value				= "valeur nulle",
	roman_to_digital_test_title	= "Test des nombres romains en nombres décimaux",
	digital_to_roman_test_title	= "Test des nombres décimaux en nombres romains",
} -- p.i18n.fr

return p