Mercurial > pidgin
comparison libgaim/plugin.c @ 14856:8a0c3cb93de8
[gaim-migrate @ 17625]
Mark a newish string as translatable
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Mon, 30 Oct 2006 03:54:24 +0000 |
| parents | 2b369cd04576 |
| children | 7d6bd7a4994f |
comparison
equal
deleted
inserted
replaced
| 14855:48afaede250e | 14856:8a0c3cb93de8 |
|---|---|
| 360 return NULL; | 360 return NULL; |
| 361 } | 361 } |
| 362 else if (plugin->info->ui_requirement && | 362 else if (plugin->info->ui_requirement && |
| 363 strcmp(plugin->info->ui_requirement, gaim_core_get_ui())) | 363 strcmp(plugin->info->ui_requirement, gaim_core_get_ui())) |
| 364 { | 364 { |
| 365 plugin->error = g_strdup_printf("You are using %s, but this plugin requires %s.", | 365 plugin->error = g_strdup_printf(_("You are using %s, but this plugin requires %s."), |
| 366 gaim_core_get_ui(), plugin->info->ui_requirement); | 366 gaim_core_get_ui(), plugin->info->ui_requirement); |
| 367 gaim_debug_error("plugins", "%s is not loadable: The UI requirement is not met.\n", plugin->path); | 367 gaim_debug_error("plugins", "%s is not loadable: The UI requirement is not met.\n", plugin->path); |
| 368 plugin->unloadable = TRUE; | 368 plugin->unloadable = TRUE; |
| 369 return plugin; | 369 return plugin; |
| 370 } | 370 } |
