aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2019-02-22 11:57:47 +0100
committerBadlop <badlop@process-one.net>2019-02-22 12:31:02 +0100
commit4947e97ccd12db487c2ae59d12769a9e416d95d6 (patch)
tree5e17215f794ba055af5db70ae7f55e77bd7fdc5a
parentFix "make translations", got broken in 446e6e6f3 (diff)
Provide source code filename in *.po, so editors can show the source code
-rwxr-xr-xtools/extract-tr.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/extract-tr.sh b/tools/extract-tr.sh
index a37b36474..ef0ae60b4 100755
--- a/tools/extract-tr.sh
+++ b/tools/extract-tr.sh
@@ -217,7 +217,7 @@ format_location_list(L) ->
"#: " ++ string:join(
lists:map(
fun({File, Pos}) ->
- io_lib:format("~s:~B", [File, Pos])
+ io_lib:format("~s.erl:~B", [File, Pos])
end, L),
" ") ++ io_lib:nl().