whats changed
translate method can now accept arguments to be replaced with passed values
translator.translate("word",{"{a1}":"value1","{a2}","value2"})
examples
///we well use translator.translate("word",{"{a1}":"banana","{a2}":"orange"})
"word":"This is {a1} and {a2}" => This is banana and orange
"word":"This is {a1} and {a2}, {a1} is good" => This is banana and orange, banana is good
note as this is a package not a plugin i removed android and ios code to avoid version conflicts
whats changed translate method can now accept arguments to be replaced with passed values
translator.translate("word",{"{a1}":"value1","{a2}","value2"})
examples