From 60176f6d28bd1326be9761a484b56f5f3538adff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Br=C3=B6tzmann?= Date: Mon, 11 May 2020 09:30:07 +0200 Subject: [PATCH] [birthday_reminder] Make string translatable --- birthday_reminder/plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/birthday_reminder/plugin.py b/birthday_reminder/plugin.py index 3dd149c..8fafb24 100644 --- a/birthday_reminder/plugin.py +++ b/birthday_reminder/plugin.py @@ -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) }