mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
Fix translation script to use ejabberd_regexp (EJAB-921)
This commit is contained in:
parent
49859683b0
commit
017ce4e092
@ -281,14 +281,14 @@ build_additional_translators(List) ->
|
|||||||
List).
|
List).
|
||||||
|
|
||||||
print_translation(File, Line, Str, StrT) ->
|
print_translation(File, Line, Str, StrT) ->
|
||||||
{ok, StrQ, _} = regexp:gsub(Str, "\"", "\\\""),
|
StrQ = ejabberd_regexp:greplace(Str, "\\\"", "\\\\\""),
|
||||||
{ok, StrTQ, _} = regexp:gsub(StrT, "\"", "\\\""),
|
StrTQ = ejabberd_regexp:greplace(StrT, "\\\"", "\\\\\""),
|
||||||
io:format("#: ~s:~p~nmsgid \"~s\"~nmsgstr \"~s\"~n~n", [File, Line, StrQ, StrTQ]).
|
io:format("#: ~s:~p~nmsgid \"~s\"~nmsgstr \"~s\"~n~n", [File, Line, StrQ, StrTQ]).
|
||||||
|
|
||||||
print_translation_obsolete(Str, StrT) ->
|
print_translation_obsolete(Str, StrT) ->
|
||||||
File = "unknown.erl",
|
File = "unknown.erl",
|
||||||
Line = 1,
|
Line = 1,
|
||||||
{ok, StrQ, _} = regexp:gsub(Str, "\"", "\\\""),
|
StrQ = ejabberd_regexp:greplace(Str, "\\\"", "\\\\\""),
|
||||||
{ok, StrTQ, _} = regexp:gsub(StrT, "\"", "\\\""),
|
StrTQ = ejabberd_regexp:greplace(StrT, "\\\"", "\\\\\""),
|
||||||
io:format("#: ~s:~p~n#~~ msgid \"~s\"~n#~~ msgstr \"~s\"~n~n", [File, Line, StrQ, StrTQ]).
|
io:format("#: ~s:~p~n#~~ msgid \"~s\"~n#~~ msgstr \"~s\"~n~n", [File, Line, StrQ, StrTQ]).
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user