##// END OF EJS Templates
obsolete: mark warning for translation...
Matt Mackall -
r24414:f247fbfe default
parent child Browse files
Show More
@@ -428,9 +428,9 b' class localrepository(object):'
428 428 store = obsolete.obsstore(self.svfs, readonly=readonly,
429 429 **kwargs)
430 430 if store and readonly:
431 # message is rare enough to not be translated
432 msg = 'obsolete feature not enabled but %i markers found!\n'
433 self.ui.warn(msg % len(list(store)))
431 self.ui.warn(
432 _('obsolete feature not enabled but %i markers found!\n')
433 % len(list(store)))
434 434 return store
435 435
436 436 @storecache('00changelog.i')
General Comments 0
You need to be logged in to leave comments. Login now