Extract translatable strings also from the xmpp library

This commit is contained in:
Badlop 2020-05-04 16:16:51 +02:00
parent df66fa6a48
commit e6a3b1fa68
2 changed files with 4 additions and 5 deletions

View File

@ -4,8 +4,7 @@
main(Paths) -> main(Paths) ->
Dict = fold_erls( Dict = fold_erls(
fun(File, Tokens, Acc) -> fun(File, Tokens, Acc) ->
File1 = filename:rootname(filename:basename(File)), extract_tr(File, Tokens, Acc)
extract_tr(File1, Tokens, Acc)
end, dict:new(), Paths), end, dict:new(), Paths),
generate_pot(Dict). generate_pot(Dict).
@ -114,7 +113,7 @@ format_location_list(L) ->
"#: " ++ string:join( "#: " ++ string:join(
lists:map( lists:map(
fun({File, Pos}) -> fun({File, Pos}) ->
io_lib:format("~s.erl:~B", [File, Pos]) io_lib:format("~s:~B", [File, Pos])
end, L), end, L),
" ") ++ io_lib:nl(). " ") ++ io_lib:nl().
@ -137,7 +136,7 @@ pot_header() ->
"\"MIME-Version: 1.0\\n\"", "\"MIME-Version: 1.0\\n\"",
"\"Content-Type: text/plain; charset=UTF-8\\n\"", "\"Content-Type: text/plain; charset=UTF-8\\n\"",
"\"Content-Transfer-Encoding: 8bit\\n\"", "\"Content-Transfer-Encoding: 8bit\\n\"",
"\"X-Poedit-Basepath: ../../src\\n\"", "\"X-Poedit-Basepath: ../..\\n\"",
"\"X-Poedit-SearchPath-0: .\\n\""], "\"X-Poedit-SearchPath-0: .\\n\""],
io_lib:nl()). io_lib:nl()).

View File

@ -10,7 +10,7 @@
extract_lang_src2pot () extract_lang_src2pot ()
{ {
./tools/extract-tr.sh src > priv/msgs/ejabberd.pot ./tools/extract-tr.sh src deps/xmpp/src > priv/msgs/ejabberd.pot
} }
extract_lang_popot2po () extract_lang_popot2po ()