24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-18 22:15:20 +02:00

* contrib/extract_translations/extract_translations.erl: Don't

report [] to be translated. Identify unusued strings.

SVN Revision: 1022
This commit is contained in:
Badlop 2007-12-04 23:41:52 +00:00
parent 2e1bb5f0e6
commit c30ddd3a07
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2007-12-05 Badlop <badlop@process-one.net>
* contrib/extract_translations/extract_translations.erl: Don't
report [] to be translated. Identify unusued strings.
2007-12-04 Badlop <badlop@process-one.net>
* .gitignore: Removed (EJAB-441)

View File

@ -49,7 +49,7 @@ process(Dir, File, Used) ->
case Used of
unused ->
ets:foldl(fun({Key, _}, _) ->
io:format("~p~n", [Key])
io:format("Unused string: ~p~n", [Key])
end, ok, translations);
_ ->
ok
@ -122,7 +122,10 @@ process_string(_Dir, File, Str, Used) ->
io:format("~n% ~s~n", [File]),
ets:insert(files, {File})
end,
io:format("{~p, \"\"}.~n", [Str]),
case Str of
[] -> ok;
_ -> io:format("{~p, \"\"}.~n", [Str])
end,
ets:insert(translations, {Str, ""});
_ ->
ok