aboutsummaryrefslogtreecommitdiff
path: root/src/common/helper.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/helper.c')
-rw-r--r--src/common/helper.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/helper.c b/src/common/helper.c
index f311f7cd..5bbb2586 100644
--- a/src/common/helper.c
+++ b/src/common/helper.c
@@ -276,7 +276,7 @@ static void connector(const gchar *handler_name,
276 } 276 }
277 if (method == NULL) { 277 if (method == NULL) {
278 LOG(LOG_DEBUG, 278 LOG(LOG_DEBUG,
279 _("Failed to find handler for '%s'\n"), 279 _("Failed to find handler for `%s'\n"),
280 handler_name); 280 handler_name);
281 return; 281 return;
282 } 282 }
@@ -302,7 +302,7 @@ static void loadPlugin(const char * name) {
302 name); 302 name);
303 if (lib == NULL) { 303 if (lib == NULL) {
304 LOG(LOG_WARNING, 304 LOG(LOG_WARNING,
305 _("Failed to load plugin '%s'\n"), 305 _("Failed to load plugin `%s'\n"),
306 name); 306 name);
307 return; 307 return;
308 } 308 }
@@ -343,7 +343,7 @@ static void loadPlugins(const char * names) {
343 } 343 }
344 if (strlen(pos) > 0) { 344 if (strlen(pos) > 0) {
345 LOG(LOG_DEBUG, 345 LOG(LOG_DEBUG,
346 "Loading plugin '%s'\n", 346 "Loading plugin `%s'\n",
347 pos); 347 pos);
348 loadPlugin(pos); 348 loadPlugin(pos);
349 } 349 }
@@ -384,7 +384,7 @@ void initGNUnetGTKCommon() {
384 "mainWindow", 384 "mainWindow",
385 PACKAGE_NAME); 385 PACKAGE_NAME);
386 if (mainXML == NULL) 386 if (mainXML == NULL)
387 errexit(_("Failed to open '%s'.\n"), 387 errexit(_("Failed to open `%s'.\n"),
388 gladeFile); 388 gladeFile);
389 statusXML 389 statusXML
390 = glade_xml_new(getGladeFileName(), 390 = glade_xml_new(getGladeFileName(),