mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
i18n: update-server-info: mark parseopt strings for translation
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
82269505b9
commit
fb52a452ff
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
||||||
#include "parse-options.h"
|
#include "parse-options.h"
|
||||||
|
|
||||||
static const char * const update_server_info_usage[] = {
|
static const char * const update_server_info_usage[] = {
|
||||||
"git update-server-info [--force]",
|
N_("git update-server-info [--force]"),
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ int cmd_update_server_info(int argc, const char **argv, const char *prefix)
|
||||||
{
|
{
|
||||||
int force = 0;
|
int force = 0;
|
||||||
struct option options[] = {
|
struct option options[] = {
|
||||||
OPT__FORCE(&force, "update the info files from scratch"),
|
OPT__FORCE(&force, N_("update the info files from scratch")),
|
||||||
OPT_END()
|
OPT_END()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue