| 175 history_prefs_check(PurplePlugin *plugin) |
175 history_prefs_check(PurplePlugin *plugin) |
| 176 { |
176 { |
| 177 if (!purple_prefs_get_bool("/purple/logging/log_ims") && |
177 if (!purple_prefs_get_bool("/purple/logging/log_ims") && |
| 178 !purple_prefs_get_bool("/purple/logging/log_chats")) |
178 !purple_prefs_get_bool("/purple/logging/log_chats")) |
| 179 { |
179 { |
| |
180 /* Translators: Please maintain the use of ⇦ or ⇨ to represent the menu hierarchy */ |
| 180 purple_notify_warning(plugin, NULL, _("History Plugin Requires Logging"), |
181 purple_notify_warning(plugin, NULL, _("History Plugin Requires Logging"), |
| 181 _("Logging can be enabled from Tools -> Preferences -> Logging.\n\n" |
182 _("Logging can be enabled from Tools ⇨ Preferences ⇨ Logging.\n\n" |
| 182 "Enabling logs for instant messages and/or chats will activate " |
183 "Enabling logs for instant messages and/or chats will activate " |
| 183 "history for the same conversation type(s)."), NULL); |
184 "history for the same conversation type(s)."), NULL); |
| 184 } |
185 } |
| 185 } |
186 } |
| 186 |
187 |