aboutsummaryrefslogtreecommitdiff
path: root/contrib/extract_translations/extract_translations.erl
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2011-10-20 16:28:53 +0200
committerBadlop <badlop@process-one.net>2011-10-20 16:28:53 +0200
commit1a419972d265f7aa099a486ad446e8a43e938f21 (patch)
treebf70947231a00b1d1dbca9f215f0203e4e3094e4 /contrib/extract_translations/extract_translations.erl
parentFix extraction of language name from PO files (diff)
Fix previous commit about language name
Diffstat (limited to 'contrib/extract_translations/extract_translations.erl')
-rw-r--r--contrib/extract_translations/extract_translations.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/extract_translations/extract_translations.erl b/contrib/extract_translations/extract_translations.erl
index 3efaace85..488357ba6 100644
--- a/contrib/extract_translations/extract_translations.erl
+++ b/contrib/extract_translations/extract_translations.erl
@@ -254,7 +254,7 @@ get_msg_header_props(F, Lines) ->
end.
prepare_props(MsgProps) ->
- Language = proplists:get_value("X-Language:", MsgProps),
+ Language = proplists:get_value("Language:", MsgProps),
Authors = proplists:get_all_values("Author:", MsgProps),
{Language, Authors}.