~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/errors.c

  • Committer: Monty Taylor
  • Date: 2008-08-04 19:37:18 UTC
  • mto: (261.2.2 codestyle)
  • mto: This revision was merged to the branch mainline in revision 262.
  • Revision ID: monty@inaugust.com-20080804193718-f0rz13uli4429ozb
Changed gettext_noop() to N_()

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
#include "mysys_priv.h"
17
17
#include "mysys_err.h"
18
 
#include <drizzled/gettext.h>
 
18
#include <libdrizzle/gettext.h>
19
19
 
20
20
/* Error message numbers in global map */
21
21
const char * globerrs[GLOBERRS];
25
25
  EE(EE_CANTCREATEFILE) = N_("Can't create/write to file '%s' (Errcode: %d)");
26
26
  EE(EE_READ)           = N_("Error reading file '%s' (Errcode: %d)");
27
27
  EE(EE_WRITE)          = N_("Error writing file '%s' (Errcode: %d)");
28
 
  EE(EE_BADCLOSE)       = N_("Error on close of '%s' (Errcode: %d)");
 
28
  EE(EE_BADCLOSE)       = N_("Error on close of '%'s (Errcode: %d)");
29
29
  EE(EE_OUTOFMEMORY)    = N_("Out of memory (Needed %u bytes)");
30
30
  EE(EE_DELETE)         = N_("Error on delete of '%s' (Errcode: %d)");
31
31
  EE(EE_LINK)           = N_("Error on rename of '%s' to '%s' (Errcode: %d)");