From 965d5c851ac8cea3521e805a3370c587fed78143 Mon Sep 17 00:00:00 2001 From: Vasco Almeida Date: Fri, 14 Oct 2016 11:43:35 +0000 Subject: i18n: apply: mark plural string for translation Mark plural string for translation using Q_(). Signed-off-by: Vasco Almeida Signed-off-by: Junio C Hamano --- apply.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'apply.c') diff --git a/apply.c b/apply.c index b03d274b5..201d3a735 100644 --- a/apply.c +++ b/apply.c @@ -4869,10 +4869,12 @@ int apply_all_patches(struct apply_state *state, goto end; } if (state->applied_after_fixing_ws && state->apply) - warning("%d line%s applied after" - " fixing whitespace errors.", - state->applied_after_fixing_ws, - state->applied_after_fixing_ws == 1 ? "" : "s"); + warning(Q_("%d line applied after" + " fixing whitespace errors.", + "%d lines applied after" + " fixing whitespace errors.", + state->applied_after_fixing_ws), + state->applied_after_fixing_ws); else if (state->whitespace_error) warning(Q_("%d line adds whitespace errors.", "%d lines add whitespace errors.", -- cgit v1.2.1