// ======================================================================================
// GENERAL LANGUAGE SETTINGS
// ======================================================================================
define('PAGE_TITLE_META', 'Locaserver'); // Title to be used in META tag within HEADER
define('META_CHARSET', 'iso-8859-1'); // Charset to be used in META tags
define('META_LANGUAGE', 'pt_BR'); // Language to be used in META tags
// ======================================================================================
// FRONT PAGE LANGUAGE SETTINGS
// ======================================================================================
define('MAIN_COMMAND', 'Por favor, informe o domínio desejado sem www'); // Command in a main window
define('CHECK_BUTTON', 'Veriricar'); // Check button text
define('ALL_TEXT', 'todos'); // Text to display for all domains checking
define('FOOTER_TEXT', 'Please wait for the answer -
due to whois servers overload it may take a while to lookup all names.
Sometimes you may need to reload the page and repeat lookup.'); // bottom text
define('FOOTER_RELOAD_TEXT', 'Recarregar'); // text of the link to reload the page
define('POWERED_BY', 'Copyright 2001-2010, Marek Rozanski'); // Text to display in a footer, please do not change if you don't have to
// ======================================================================================
// MIDDLE PAGE LAYER LANGUAGE SETTINGS (only if enabled in "mrwhois_config.php")
// ======================================================================================
define('WAIT_TITLE', 'Por favor, espere...');
define('WAIT_MESSAGE', 'Se a pesquisa de domínio demorar muito(mais que um minuto), clique aqui para recarregar a págin e tentar novamente.');
// ======================================================================================
// RESULT PAGE LANGUAGE SETTINGS
// ======================================================================================
define('LINK_REGISTER_TEXT', 'Registrar'); // Register link text
define('STATUS_BAR_REGISTER_TEXT', 'Registrar'); // Status bar register message - when hovered over the "Register" link
define('STATUS_BAR_DETAILS', 'Destalhes Desligado'); // Status bar "Details of" - when hovered over "Details" link
define('LINK_TAKEN_DETAILS', 'Detalhes'); // "Details" text
define('LINK_TAKEN_GOTO', 'Visitar'); // "Goto" text
define('BUTTON_NEXT', 'Próximo >>'); // "Next" button - used with FORM/POST submitting. Used with PROCESSING_TYPE = "2" in "mrwhois_config.php"
define('CLOSE_BUTTON_TEXT', 'Fechar janela'); // "Close" button text in a details window
define('AVAILABLE_TEXT', 'Disponível'); // Text displayed if the domain is available
define('NOT_AVAILABLE_TEXT', 'Indisponível'); // Text displayed if the domain is not available
define('CANONICAL_TEXT', '(canonical)'); // Displayed when domain name is a canonical name, but may still be available
define('RESTRICTION_TEXT', 'Se existir alguma restrição com o servidor de pesquisa, você não poderá visualizar qualquer detalhe sobre este domínio.');
// ======================================================================================
// ERROR MESSAGES LANGUAGE SETTINGS
// ======================================================================================
define('ERROR_TOO_SHORT', 'O domínio que você informou é muito pequeno - deve conter pelo menos 3 caracteres'); // Error message if the domain name is too short
define('ERROR_TOO_LONG', 'O domínio que você informou é muito longo - deve conter no máximo 63 caracteres'); // Error message if the domain name is too long
define('ERROR_HYPHEN', 'Os nomes de domínios não podem começar ou terminar com hifem ou conter hifens duplos'); // Error message if the domain starts with hyphen or contains double hyphen
define('ERROR_CHARACTERS', 'Os nomes de domínios só podem conter caracteres alfanuméricos e hifens'); // Error message if the domain contains other characters than letters, digits or hyphens
// This is the message displayed when someone performs a search for 'all' tld's, including ".name".
// There are different rules for .name domains, they have to include "." (a dot) within the name
// while other domains must not include ".". Your visitor is warned to perform a separate search.
define('NAME_WARNING', '.name tld has not been checked, please perform a separate search');
// and potential errors:
define('ERROR_NAME_DOT', '.name tld must include . (a dot) in its name, eg. john.smith');
define('ERROR_NAME_LEN', 'A second part of .name tld (after dot) must be at least 3 characters long');
?>
if (DISPLAY_FRONT_HEADER) include_once (FILE_NAME_HEADER);
if ($_POST['type']!="") define('TYPE', $_POST['type']); else define('TYPE', '');
if ($_POST['ddomain']!="") { $_ddomain = trim($_POST['ddomain']); define('DDOMAIN', $_ddomain); }
else define('DDOMAIN', '');
?>