~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/configvar.cc

  • Committer: Lee
  • Date: 2009-01-06 20:24:58 UTC
  • mfrom: (759 drizzle)
  • mto: This revision was merged to the branch mainline in revision 763.
  • Revision ID: lbieber@lbieber-desktop-20090106202458-82n4kyftrnakvl4r
merge with latest from the trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    {
39
39
      /* TRANSLATORS: The leading word "configvar" is the name
40
40
         of the plugin api, and so should not be translated. */
41
 
      sql_print_error(_("configvar plugin '%s' init() failed"),
 
41
      errmsg_printf(ERRMSG_LVL_ERROR, _("configvar plugin '%s' init() failed"),
42
42
                      plugin->name.str);
43
43
      goto err;
44
44
    }
60
60
    {
61
61
      /* TRANSLATORS: The leading word "configvar" is the name
62
62
         of the plugin api, and so should not be translated. */
63
 
      sql_print_error(_("configvar plugin '%s' deinit() failed"),
 
63
      errmsg_printf(ERRMSG_LVL_ERROR, _("configvar plugin '%s' deinit() failed"),
64
64
                      plugin->name.str);
65
65
    }
66
66
  }
96
96
    {
97
97
      /* TRANSLATORS: The leading word "configvar" is the name
98
98
         of the plugin api, and so should not be translated. */
99
 
      sql_print_error(_("configvar plugin '%s' configvar_func1() failed"),
 
99
      errmsg_printf(ERRMSG_LVL_ERROR, _("configvar plugin '%s' configvar_func1() failed"),
100
100
                      (char *)plugin_name(plugin));
101
101
      return true;
102
102
    }
150
150
    {
151
151
      /* TRANSLATORS: The leading word "configvar" is the name
152
152
         of the plugin api, and so should not be translated. */
153
 
      sql_print_error(_("configvar plugin '%s' configvar_func2() failed"),
 
153
      errmsg_printf(ERRMSG_LVL_ERROR, _("configvar plugin '%s' configvar_func2() failed"),
154
154
                      (char *)plugin_name(plugin));
155
155
 
156
156
      return true;