[birthday_reminder] Make string translatable

This commit is contained in:
Daniel Brötzmann
2020-05-11 09:30:07 +02:00
parent 55352e77b4
commit 60176f6d28

View File

@@ -36,8 +36,8 @@ TEXT = _('Send your best wishes to %s')
class BirthDayPlugin(GajimPlugin):
def init(self):
self.config_dialog = None
self.description = ('Checks vCards of your contacts for upcoming '
'birthdays and reminds you on that day.')
self.description = _('Checks vCards of your contacts for upcoming '
'birthdays and reminds you on that day.')
self.events_handlers = {
'vcard-received': (ged.GUI2, self._vcard_received)
}