Mercurial > projects > package-update-indicator
comparison pui-application.c @ 16:6304dbbedb67
Fix typo in notification message
author | Guido Berhoerster <guido+pui@berhoerster.name> |
---|---|
date | Sat, 08 Dec 2018 08:29:20 +0100 |
parents | f783ba95ec4a |
children | 73081cc299f5 |
comparison
equal
deleted
inserted
replaced
15:329aeecdd83a | 16:6304dbbedb67 |
---|---|
235 case PUI_STATE_NORMAL_UPDATES_AVAILABLE: | 235 case PUI_STATE_NORMAL_UPDATES_AVAILABLE: |
236 title = g_strdup(g_dngettext(NULL, "Software Update", | 236 title = g_strdup(g_dngettext(NULL, "Software Update", |
237 "Software Updates", (gulong)normal_updates)); | 237 "Software Updates", (gulong)normal_updates)); |
238 if (normal_updates == 1) { | 238 if (normal_updates == 1) { |
239 body = g_strdup(_("There is a software update " | 239 body = g_strdup(_("There is a software update " |
240 "avaliable.")); | 240 "available.")); |
241 } else { | 241 } else { |
242 body = g_strdup_printf(_("There are %u " | 242 body = g_strdup_printf(_("There are %u " |
243 "software updates avaliable."), normal_updates); | 243 "software updates available."), normal_updates); |
244 } | 244 } |
245 break; | 245 break; |
246 case PUI_STATE_IMPORTANT_UPDATES_AVAILABLE: | 246 case PUI_STATE_IMPORTANT_UPDATES_AVAILABLE: |
247 title = g_strdup(g_dngettext(NULL, "Important Software Update", | 247 title = g_strdup(g_dngettext(NULL, "Important Software Update", |
248 "Important Software Updates", (gulong)important_updates)); | 248 "Important Software Updates", (gulong)important_updates)); |