Skip to content

Commit

Permalink
fix translations
Browse files Browse the repository at this point in the history
git-svn-id: https://xchat.svn.sourceforge.net/svnroot/xchat@873 893a96be-7f27-4fdf-9d1e-6aeec9d3cce1
  • Loading branch information
zdra committed Oct 27, 2005
1 parent df58b90 commit c6353fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/dbus/dbus-plugin.c
Expand Up @@ -157,7 +157,7 @@ init_dbus(void)
G_TYPE_UINT, &request_name_result,
G_TYPE_INVALID))
{
xchat_printf (ph, _("Failed to acquire "DBUS_SERVICE" : %s\n"), error->message);
xchat_printf (ph, _("Failed to acquire %s: %s\n"), DBUS_SERVICE, error->message);
g_error_free (error);
return FALSE;
}
Expand Down Expand Up @@ -191,6 +191,6 @@ xchat_plugin_init(xchat_plugin *plugin_handle,
*plugin_version = PVERSION;
success = init_dbus();
if (success)
xchat_print(ph, _(PNAME " loaded successfully!\n"));
xchat_printf(ph, _("%s loaded successfully!\n"), PNAME);
return success;
}

0 comments on commit c6353fc

Please sign in to comment.