~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/slave.cc

  • 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:
88
88
static const char *reconnect_messages[SLAVE_RECON_ACT_MAX][SLAVE_RECON_MSG_MAX]=
89
89
{
90
90
  {
91
 
    gettext_noop("Waiting to reconnect after a failed registration on master"),
92
 
    gettext_noop("Slave I/O thread killed while waitnig to reconnect after a "
 
91
    N_("Waiting to reconnect after a failed registration on master"),
 
92
    N_("Slave I/O thread killed while waitnig to reconnect after a "
93
93
                 "failed registration on master"),
94
 
    gettext_noop("Reconnecting after a failed registration on master"),
95
 
    gettext_noop("failed registering on master, reconnecting to try again, "
 
94
    N_("Reconnecting after a failed registration on master"),
 
95
    N_("failed registering on master, reconnecting to try again, "
96
96
                 "log '%s' at postion %s"),
97
97
    "COM_REGISTER_SLAVE",
98
 
    gettext_noop("Slave I/O thread killed during or after reconnect")
 
98
    N_("Slave I/O thread killed during or after reconnect")
99
99
  },
100
100
  {
101
 
    gettext_noop("Waiting to reconnect after a failed binlog dump request"),
102
 
    gettext_noop("Slave I/O thread killed while retrying master dump"),
103
 
    gettext_noop("Reconnecting after a failed binlog dump request"),
104
 
    gettext_noop("failed dump request, reconnecting to try again, "
 
101
    N_("Waiting to reconnect after a failed binlog dump request"),
 
102
    N_("Slave I/O thread killed while retrying master dump"),
 
103
    N_("Reconnecting after a failed binlog dump request"),
 
104
    N_("failed dump request, reconnecting to try again, "
105
105
                 "log '%s' at postion %s"),
106
106
    "COM_BINLOG_DUMP",
107
 
    gettext_noop("Slave I/O thread killed during or after reconnect")
 
107
    N_("Slave I/O thread killed during or after reconnect")
108
108
  },
109
109
  {
110
 
    gettext_noop("Waiting to reconnect after a failed master event read"),
111
 
    gettext_noop("Slave I/O thread killed while waiting to reconnect "
 
110
    N_("Waiting to reconnect after a failed master event read"),
 
111
    N_("Slave I/O thread killed while waiting to reconnect "
112
112
                 "after a failed read"),
113
 
    gettext_noop("Reconnecting after a failed master event read"),
114
 
    gettext_noop("Slave I/O thread: Failed reading log event, "
 
113
    N_("Reconnecting after a failed master event read"),
 
114
    N_("Slave I/O thread: Failed reading log event, "
115
115
                 "reconnecting to retry, log '%s' at postion %s"),
116
116
    "",
117
 
    gettext_noop("Slave I/O thread killed during or after a "
 
117
    N_("Slave I/O thread killed during or after a "
118
118
                 "reconnect done to recover from failed read")
119
119
  }
120
120
};