| 207 |
207 |
| 208 secondary = g_strdup_printf(_("File %s could not be imported.\nMake sure that the file is readable and in PEM format.\n"), filename); |
208 secondary = g_strdup_printf(_("File %s could not be imported.\nMake sure that the file is readable and in PEM format.\n"), filename); |
| 209 purple_notify_error(NULL, |
209 purple_notify_error(NULL, |
| 210 _("Certificate Import Error"), |
210 _("Certificate Import Error"), |
| 211 _("X.509 certificate import failed"), |
211 _("X.509 certificate import failed"), |
| 212 secondary); |
212 secondary, NULL); |
| 213 g_free(secondary); |
213 g_free(secondary); |
| 214 } |
214 } |
| 215 } |
215 } |
| 216 |
216 |
| 217 static void |
217 static void |
| 242 |
242 |
| 243 secondary = g_strdup_printf(_("Export to file %s failed.\nCheck that you have write permission to the target path\n"), filename); |
243 secondary = g_strdup_printf(_("Export to file %s failed.\nCheck that you have write permission to the target path\n"), filename); |
| 244 purple_notify_error(NULL, |
244 purple_notify_error(NULL, |
| 245 _("Certificate Export Error"), |
245 _("Certificate Export Error"), |
| 246 _("X.509 certificate export failed"), |
246 _("X.509 certificate export failed"), |
| 247 secondary); |
247 secondary, NULL); |
| 248 g_free(secondary); |
248 g_free(secondary); |
| 249 } |
249 } |
| 250 |
250 |
| 251 purple_certificate_destroy(crt); |
251 purple_certificate_destroy(crt); |
| 252 } |
252 } |