From: Ævar Arnfjörð Bjarmason Date: Tue, 22 Feb 2011 23:42:20 +0000 (+0000) Subject: i18n: git-bundle basic messages X-Git-Tag: v1.7.5-rc1~19^2~12 X-Git-Url: https://git.tokkee.org/?p=git.git;a=commitdiff_plain;h=c7c4efacf1ea100ac1cd5c2f33d1b6d342b39325 i18n: git-bundle basic messages Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- diff --git a/builtin/bundle.c b/builtin/bundle.c index 9b87fb9ac..81046a9cb 100644 --- a/builtin/bundle.c +++ b/builtin/bundle.c @@ -44,7 +44,7 @@ int cmd_bundle(int argc, const char **argv, const char *prefix) close(bundle_fd); if (verify_bundle(&header, 1)) return 1; - fprintf(stderr, "%s is okay\n", bundle_file); + fprintf(stderr, _("%s is okay\n"), bundle_file); return 0; } if (!strcmp(cmd, "list-heads")) { @@ -53,11 +53,11 @@ int cmd_bundle(int argc, const char **argv, const char *prefix) } if (!strcmp(cmd, "create")) { if (!startup_info->have_repository) - die("Need a repository to create a bundle."); + die(_("Need a repository to create a bundle.")); return !!create_bundle(&header, bundle_file, argc, argv); } else if (!strcmp(cmd, "unbundle")) { if (!startup_info->have_repository) - die("Need a repository to unbundle."); + die(_("Need a repository to unbundle.")); return !!unbundle(&header, bundle_fd) || list_bundle_refs(&header, argc, argv); } else