summaryrefslogtreecommitdiff
path: root/git-send-email.perl
diff options
context:
space:
mode:
authorVasco Almeida <vascomalmeida@sapo.pt>2016-12-14 12:54:38 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-12-14 19:00:06 (GMT)
commit70aedfb3ecef6660962d84cbd1455704cd9be5b8 (patch)
treecd5deb9d1d7657fa6f46084b2b02c39447447775 /git-send-email.perl
parent3c5cd20c7d177f0d93532271f421037c1440a2ff (diff)
downloadgit-70aedfb3ecef6660962d84cbd1455704cd9be5b8.zip
git-70aedfb3ecef6660962d84cbd1455704cd9be5b8.tar.gz
git-70aedfb3ecef6660962d84cbd1455704cd9be5b8.tar.bz2
i18n: send-email: mark composing message for translation
When composing an e-mail, there is a message for the user whose lines begin in "GIT:" that can be marked for translation. Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-send-email.perl')
-rwxr-xr-xgit-send-email.perl16
1 files changed, 9 insertions, 7 deletions
diff --git a/git-send-email.perl b/git-send-email.perl
index 7f3297c..068d60b 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -672,18 +672,20 @@ if ($compose) {
my $tpl_subject = $initial_subject || '';
my $tpl_reply_to = $initial_reply_to || '';
- print $c <<EOT;
+ print $c <<EOT1, Git::prefix_lines("GIT: ", __ <<EOT2), <<EOT3;
From $tpl_sender # This line is ignored.
-GIT: Lines beginning in "GIT:" will be removed.
-GIT: Consider including an overall diffstat or table of contents
-GIT: for the patch you are writing.
-GIT:
-GIT: Clear the body content if you don't wish to send a summary.
+EOT1
+Lines beginning in "GIT:" will be removed.
+Consider including an overall diffstat or table of contents
+for the patch you are writing.
+
+Clear the body content if you don't wish to send a summary.
+EOT2
From: $tpl_sender
Subject: $tpl_subject
In-Reply-To: $tpl_reply_to
-EOT
+EOT3
for my $f (@files) {
print $c get_patch_subject($f);
}