From ccabc01900fad7dbb144886f77d468f25e120407 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Dr=C4=85g?= Date: Tue, 2 May 2017 21:21:04 +0200 Subject: [PATCH] lib: fix translator comment extraction MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit gettext won’t pick up a comment if it’s not exactly one line above the string. --- libtransmission/torrent.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libtransmission/torrent.c b/libtransmission/torrent.c index 5ac2000c8..fe819d83b 100644 --- a/libtransmission/torrent.c +++ b/libtransmission/torrent.c @@ -2150,12 +2150,12 @@ static char const* getCompletionString(int type) { switch (type) { - /* Translators: this is a minor point that's safe to skip over, but FYI: - "Complete" and "Done" are specific, different terms in Transmission: - "Complete" means we've downloaded every file in the torrent. - "Done" means we're done downloading the files we wanted, but NOT all - that exist */ case TR_PARTIAL_SEED: + /* Translators: this is a minor point that's safe to skip over, but FYI: + "Complete" and "Done" are specific, different terms in Transmission: + "Complete" means we've downloaded every file in the torrent. + "Done" means we're done downloading the files we wanted, but NOT all + that exist */ return _("Done"); case TR_SEED: