bi: Fix some inconsistent spelling

This commit is contained in:
Ignacio R. Morelle 2015-07-14 01:10:02 -03:00
parent 93a544e584
commit 0ed6815296

View file

@ -212,18 +212,18 @@ version_table_manager::version_table_manager()
#ifdef _WIN32
// Always compiled in.
features.push_back(N_("feature^Win32 notifications back-end"));
features.push_back(N_("feature^Win32 notifications back end"));
features.back().enabled = true;
#endif
#ifdef __APPLE__
features.push_back(N_("feature^Cocoa notifications back-end"));
features.push_back(N_("feature^Cocoa notifications back end"));
#ifdef HAVE_NS_USER_NOTIFICATION
features.back().enabled = true;
#endif
features.push_back(N_("feature^Growl notifications back-end"));
features.push_back(N_("feature^Growl notifications back end"));
#ifdef HAVE_GROWL
features.back().enabled = true;
#endif