mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-20 16:15:59 +01:00
* contrib/extract_translations/extract_translations.erl: Don't
report [] to be translated. Identify unusued strings. SVN Revision: 1022
This commit is contained in:
parent
2e1bb5f0e6
commit
c30ddd3a07
@ -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)
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user