redundant message in builtin/rm.c
From: Jiang Xin <hidden>
Date: 2016-06-15 22:58:15
Hi,
Commit v1.8.3-1-g914dc02 (rm: better error message on failure for
multiple files)
introduced many messages need to be translated. I found two similar messages
each has a slight typo, and the differences cause redundant works for
l10n translators.
# builtin/rm.c, line: 90
Q_("the following submodule (or one of its nested "
"submodules)\n uses a .git directory:",
"the following submodules (or one of its nested "
"submodules)\n use a .git directory:",
( no space before "use(s) a .git directory" ?)
# builtin/rm.c, line: 240
Q_("the following submodule (or one of its nested "
"submodule)\nuses a .git directory:",
"the following submodules (or one of its nested "
"submodule)\nuse a .git directory:",
( "nested submodule" should be "nested submodules" ?)
--
Jiang Xin