~mysql/mysql-utilities/1.3.2

« back to all changes in this revision

Viewing changes to mysql/utilities/common/messages.py

  • Committer: Paulo Jesus
  • Date: 2013-04-19 18:31:54 UTC
  • mfrom: (289.1.47 mysql-utilities-1.2.2)
  • Revision ID: paulo.jesus@oracle.com-20130419183154-g8rkvs2oezbdvrud
Release-1.3.1 Merge

This patch merges version 1.2.2 to 1.3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
                            "{db_no_obj_label} '{db_no_obj_value}', while "
58
58
                            "object '{only_obj_value}' was specified for "
59
59
                            "{db_obj_label} '{db_obj_value}'.")
 
60
 
 
61
PARSE_ERR_OPT_INVALID_CMD = ("Invalid {opt} option for '{cmd}'.")
 
62
 
 
63
PARSE_ERR_OPT_INVALID_CMD_TIP = ("%s Use {opt_tip} instead."
 
64
                                 % PARSE_ERR_OPT_INVALID_CMD)
 
65
 
 
66
PARSE_ERR_OPTS_REQ_BY_CMD = ("'{cmd}' requires the following option(s): "
 
67
                             "{opts}.")
 
68
 
 
69
PARSE_ERR_SLAVE_DISCO_REQ = ("Option --discover-slaves-login or --slaves is "
 
70
                             "required.")
 
71
 
 
72
PARSE_ERR_SLAVE_DISCO_EXC = ("Options --discover-slaves-login and --slaves "
 
73
                             "cannot be used simultaneously.")
 
74
 
 
75
WARN_OPT_NOT_REQUIRED = ("WARNING: The {opt} option is not required for "
 
76
                         "'{cmd}' (option ignored).")
 
77
 
 
78
WARN_OPT_NOT_REQUIRED_ONLY_FOR = ("%s Only used with the {only_cmd} command."
 
79
                                   % WARN_OPT_NOT_REQUIRED)
 
80
 
 
81
ERROR_SAME_MASTER = ("The specified new master {n_master_host}:{n_master_port}"
 
82
                     " is the same as the "
 
83
                     "actual master {master_host}:{master_port}.")
 
84
 
 
85
SLAVES = "slaves"
 
86
 
 
87
CANDIDATES = "candidates"
 
88
 
 
89
ERROR_MASTER_IN_SLAVES = ("The master {master_host}:{master_port} "
 
90
                          "and one of the specified {slaves_candidates} "
 
91
                          "are the same {slave_host}:{slave_port}.")