On Thu, Jan 28, 2016 at 12:01:07PM +0100, Bert Huijben wrote: > > + /* Add postpone option. */ > > + option = apr_pcalloc(result_pool, sizeof(*option)); > > + option->id = svn_client_conflict_option_postpone; > > + option->description = N_("skip this conflict and leave it unresolved"); > > I think description should now use _() to localize the option here, instead > of in the callee. >
Indeed, that was an oversight. I copied these strings from over from 'svn' where they were part of a static array. Fixed in r1727329. Thanks!