summaryrefslogtreecommitdiff
path: root/builtin/replace.c
diff options
context:
space:
mode:
authorAnas Nashif <anas.nashif@intel.com>2012-11-05 06:38:22 -0800
committerAnas Nashif <anas.nashif@intel.com>2012-11-05 06:38:22 -0800
commit264628a2b3a5cb6c7671ea87ceecab941ec290e9 (patch)
tree1ff25b95990273abc7d5b902baf4ae0c7cbe822a /builtin/replace.c
parent189627cd588c2937de7b655595b8ed777f445c85 (diff)
downloadgit-264628a2b3a5cb6c7671ea87ceecab941ec290e9.tar.gz
git-264628a2b3a5cb6c7671ea87ceecab941ec290e9.tar.bz2
git-264628a2b3a5cb6c7671ea87ceecab941ec290e9.zip
Imported Upstream version 1.8.0upstream/1.8.0
Diffstat (limited to 'builtin/replace.c')
-rw-r--r--builtin/replace.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/builtin/replace.c b/builtin/replace.c
index 4a8970e9..e3aaf702 100644
--- a/builtin/replace.c
+++ b/builtin/replace.c
@@ -14,9 +14,9 @@
#include "parse-options.h"
static const char * const git_replace_usage[] = {
- "git replace [-f] <object> <replacement>",
- "git replace -d <object>...",
- "git replace -l [<pattern>]",
+ N_("git replace [-f] <object> <replacement>"),
+ N_("git replace -d <object>..."),
+ N_("git replace -l [<pattern>]"),
NULL
};
@@ -115,9 +115,9 @@ int cmd_replace(int argc, const char **argv, const char *prefix)
{
int list = 0, delete = 0, force = 0;
struct option options[] = {
- OPT_BOOLEAN('l', NULL, &list, "list replace refs"),
- OPT_BOOLEAN('d', NULL, &delete, "delete replace refs"),
- OPT_BOOLEAN('f', NULL, &force, "replace the ref if it exists"),
+ OPT_BOOLEAN('l', NULL, &list, N_("list replace refs")),
+ OPT_BOOLEAN('d', NULL, &delete, N_("delete replace refs")),
+ OPT_BOOLEAN('f', NULL, &force, N_("replace the ref if it exists")),
OPT_END()
};