mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-24 17:29:28 +01:00
* contrib/extract_translations/README: Better phrasing (thanks to
Sergei Golovan) * contrib/extract_translations/extract_translations.erl: Fix to avoid duplication of lines (thanks to Sergei Golovan) SVN Revision: 334
This commit is contained in:
parent
08c8d19e14
commit
58450aaaf2
@ -1,6 +1,13 @@
|
|||||||
2005-05-01 Alexey Shchepin <alexey@sevcom.net>
|
2005-05-01 Alexey Shchepin <alexey@sevcom.net>
|
||||||
|
|
||||||
* src/msgs/sw.msg: New Swedish translation (thanks to (Magnus Henoch)
|
* contrib/extract_translations/README: Better phrasing (thanks to
|
||||||
|
Sergei Golovan)
|
||||||
|
|
||||||
|
* contrib/extract_translations/extract_translations.erl: Fix to
|
||||||
|
avoid duplication of lines (thanks to Sergei Golovan)
|
||||||
|
|
||||||
|
* src/msgs/sw.msg: New Swedish translation (thanks to (Magnus
|
||||||
|
Henoch)
|
||||||
|
|
||||||
* src/msgs/pt.msg: New Portuguese translation (thanks to iceburn)
|
* src/msgs/pt.msg: New Portuguese translation (thanks to iceburn)
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ Building:
|
|||||||
Invoking 1:
|
Invoking 1:
|
||||||
erl -noinput -s extract_translations -extra dirname message_file
|
erl -noinput -s extract_translations -extra dirname message_file
|
||||||
|
|
||||||
where dirname is src dir of ejabberd source tree, message_file is a file
|
where dirname is the directory "src" in ejabberd's source tree root,
|
||||||
with translated messages (src/msgs/*.msg).
|
message_file is a file with translated messages (src/msgs/*.msg).
|
||||||
|
|
||||||
Result is a list of messages from source files which aren't contained in
|
Result is a list of messages from source files which aren't contained in
|
||||||
message file.
|
message file.
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
%%% Author : Sergei Golovan <sgolovan@nes.ru>
|
%%% Author : Sergei Golovan <sgolovan@nes.ru>
|
||||||
%%% Purpose : Auxiliary tool for interface/messages translators
|
%%% Purpose : Auxiliary tool for interface/messages translators
|
||||||
%%% Created : 23 Apr 2005 by Sergei Golovan <sgolovan@nes.ru>
|
%%% Created : 23 Apr 2005 by Sergei Golovan <sgolovan@nes.ru>
|
||||||
%%% Id : $Id: extract_translations.erl
|
%%% Id : $Id$
|
||||||
%%%----------------------------------------------------------------------
|
%%%----------------------------------------------------------------------
|
||||||
|
|
||||||
-module(extract_translations).
|
-module(extract_translations).
|
||||||
@ -122,7 +122,8 @@ process_string(Dir, File, Str, Used) ->
|
|||||||
io:format("~n% ~s~n", [File]),
|
io:format("~n% ~s~n", [File]),
|
||||||
ets:insert(files, {File})
|
ets:insert(files, {File})
|
||||||
end,
|
end,
|
||||||
io:format("{~p, \"\"}.~n", [Str]);
|
io:format("{~p, \"\"}.~n", [Str]),
|
||||||
|
ets:insert(translations, {Str, ""});
|
||||||
_ ->
|
_ ->
|
||||||
ok
|
ok
|
||||||
end.
|
end.
|
||||||
|
Loading…
Reference in New Issue
Block a user