nicolas
Junior Member
Posts: 21
Joined: Aug 2008
Reputation: 1
|
Bug: during migration from VHCS to ISPCP language table is not created
Title says it all. I have migrated a VHCS database to IPSCP and noticed the language table is not created.
I have had to create it manually (found script in configs/ubuntu/database/languages.sql ):
DROP TABLE IF EXISTS `lang_EnglishBritain`;
CREATE TABLE `lang_EnglishBritain` (
`msgid` text collate utf8_unicode_ci,
`msgstr` text collate utf8_unicode_ci,
KEY msgid (msgid(25))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- data for table `lang_EnglishBritain`
--
INSERT INTO `lang_EnglishBritain` (`msgid`, `msgstr`) VALUES
('ispcp_languageSetlocaleValue', 'en_GB'),
('ispcp_table', 'EnglishBritain'),
('ispcp_language', 'English (GB)'),
('encoding', 'UTF-8'),
('Incorrect domain name syntax', 'Incorrect <i>domain name</i> syntax'),
('Incorrect forward syntax', 'Incorrect <i>forward</i> syntax!'),
('Incorrect mount point syntax', 'Incorrect <i>mount point</i> syntax!'),
('Mail', 'e-mail');
|
|
08-26-2008 06:45 PM |
|