# Functions
No description provided by the author
Translate 模板转换字符串 eg1: str="aaa:bbb:@ccc" data={ccc:100} ==> "aaa:bbb:100" eg2: str="aaa:bbb:@{ccc}" data={ccc:200} ==> "aaa:bbb:200" eg3: str="aaa:@bbb:@{ccc}" data={bbb:"abcd",ccc:200} ==> "aaa:abcd:200" eg4: str="@aaa:@bbb:@{ccc}" data={bbb:"abcd",ccc:200} ==> ":abcd:200".
No description provided by the author
Deprecated: As of Go v0.2.0, this function simply calls [GenericTranslate].