echosprintf(__('This server is not configured as master in a replication process. Would you like to <a href="%s">configure</a> it?'), PMA_generate_common_url($_url_params));
echo__('This server is not configured as master server in a replication process. You can choose from either replicating all databases and ignoring certain (useful if you want to replicate majority of databases) or you can choose to ignore all databases by default and allow only certain databases to be replicated. Please select the mode:') . '<br /><br />';
echo'<select name="db_type" id="db_type">';
echo'<option value="all">' . __('Replicate all databases; Ignore:') . '</option>';
echo'<option value="ign">' . __('Ignore all databases; Replicate:') . '</option>';
echo'</select>';
echo'<br /><br />';
echo__('Please select databases:') . '<br />';
echoPMA_replication_db_multibox();
echo'<br /><br />';
echo__('Now, add the following lines at the end of [mysqld] section in your my.cnf and please restart the MySQL server afterwards.') . '<br />';
echo'<pre id="rep"></pre>';
echo__('Once you restarted MySQL server, please click on Go button. Afterwards, you should see a message informing you, that this server <b>is</b> configured as master');
echo' <input type="checkbox" name="repl_struc" value="1" checked="checked" disabled="disabled" /> ' . __('Structure') . '<br />'; // this is just for vizualization, it has no other purpose
echosprintf(__('This server is not configured as slave in a replication process. Would you like to <a href="%s">configure</a> it?'), PMA_generate_common_url($_url_params));