HostVise supports a wide variety of languages.

The file responsible for the domain plugin is hostvise/language.php – if you wish to install a new plugin, the new plugin should replace the existing one.
 

English


Download English Plugin

Spanish


Download Spanish Plugin

Italian


Download Italian Plugin

 


For Developers

Translate HostVise into another language and receive 50% off the license of your choice. The language pack is approximately 500 lines and will take a native speaker approximately 1 hour to translate correctly.

Structure of language.php


// THIS IS THE NAME OF THE LANGUAGE THAT IS BEING INSTALLED!!!!!
// PLEASE CHANGE IT ACCORDINGLY BASED ON WHAT LANGUAGE THIS IS
define(LANG_WHAT_LANGUAGE_IS_THIS, "english");

######################################################################

// these are language variables used for the installation file.
// it doesnt make very much sense to keep them in memory if the install file does not exist.
if( file_exists("install2.php") )
{
	define(LANG_INSTALL_WELCOME, "Thank you for purchasing your copy of HostVise. To install the software please enter the product key you received in your welcome email.");
	define(LANG_INSTALL_BUTTON, "Install HostVise");
	define(LANG_INSTALL_KEY, "Product Key");
	define(LANG_INSTALL_VER, "Verification Key");
	define(LANG_INSTALL_TB_ADD, "Fresh table installed");
	define(LANG_INSTALL_TB_REM, "Existing table removed");
	define(LANG_INSTALL_SUCCESS, "Installation complete! Please remove the install.php file from your hostvise directory. This file must be removed in order for HostVise to run properly!");
	define(LANG_INSTALL_DBNAME, "Database Name");
	define(LANG_INSTALL_INVALID_KEY, "The product key or verification key that you entered do not match an existing license.");