summaryrefslogtreecommitdiff
path: root/progress.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2014-02-21 12:50:18 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-02-24 17:08:37 (GMT)
commit754dbc43f078625f38c7908f19dc71a0c617ec85 (patch)
tree9c651c22e9763c9999871e3d9e3052dfc5e48e6e /progress.c
parent5f95c9f850b19b368c43ae399cc831b17a26a5ac (diff)
downloadgit-754dbc43f078625f38c7908f19dc71a0c617ec85.zip
git-754dbc43f078625f38c7908f19dc71a0c617ec85.tar.gz
git-754dbc43f078625f38c7908f19dc71a0c617ec85.tar.bz2
i18n: mark all progress lines for translation
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'progress.c')
-rw-r--r--progress.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/progress.c b/progress.c
index 10652b1..261314e 100644
--- a/progress.c
+++ b/progress.c
@@ -9,6 +9,7 @@
*/
#include "git-compat-util.h"
+#include "gettext.h"
#include "progress.h"
#include "strbuf.h"
@@ -220,7 +221,7 @@ struct progress *start_progress(const char *title, unsigned total)
void stop_progress(struct progress **p_progress)
{
- stop_progress_msg(p_progress, "done");
+ stop_progress_msg(p_progress, _("done"));
}
void stop_progress_msg(struct progress **p_progress, const char *msg)