Fix translatable string in kobo driver

This commit is contained in:
Kovid Goyal 2013-10-05 13:48:46 +05:30
parent b498743bc1
commit f55b13aeb0

View File

@ -2834,10 +2834,10 @@ class KOBOTOUCH(KOBO):
' selecting "Configure this device" and then the ' ' selecting "Configure this device" and then the '
' "Attempt to support newer firmware" option.' ' "Attempt to support newer firmware" option.'
' Doing so may require you to perform a factory reset of' ' Doing so may require you to perform a factory reset of'
' your Kobo.' ' your Kobo.') + (
'\nDevice database version: %s.' '\nDevice database version: %s.'
'\nDevice firmware version: %s' % (self.dbversion, self.fwversion) '\nDevice firmware version: %s'
), ) % (self.dbversion, self.fwversion),
UserFeedback.WARN) UserFeedback.WARN)
return False return False