"Derrick Stolee via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: [jc: bogus CC addressses stripped and retyped; did something change at GGG recently?] > From: Derrick Stolee <derrickstolee@xxxxxxxxxx> > > These two messages differ only by the config key name, which should not > be translated. Extract those keys so the messages can be translated from > the same string. Makes sense. Not just the reusing the same string is good, but this will also make sure that translators have no chance of making a typo on the variable names themselves, which is an added benefit. > Reported-by: Jean-Noël AVILA <jn.avila@xxxxxxx> > Signed-off-by: Derrick Stolee <derrickstolee@xxxxxxxxxx> > --- > builtin/worktree.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/builtin/worktree.c b/builtin/worktree.c > index c6eb636329a..7c272078dc9 100644 > --- a/builtin/worktree.c > +++ b/builtin/worktree.c > @@ -384,11 +384,13 @@ static int add_worktree(const char *path, const char *refname, > bare && > git_config_set_multivar_in_file_gently( > to_file, "core.bare", NULL, "true", 0)) > - error(_("failed to unset 'core.bare' in '%s'"), to_file); > + error(_("failed to unset '%s' in '%s'"), > + "core.bare", to_file); > if (!git_configset_get_value(&cs, "core.worktree", &core_worktree) && > git_config_set_in_file_gently(to_file, > "core.worktree", NULL)) > - error(_("failed to unset 'core.worktree' in '%s'"), to_file); > + error(_("failed to unset '%s' in '%s'"), > + "core.worktree", to_file); > > git_configset_clear(&cs); > }