made several changes to UTF8 compatibility for internationalization.

better importing/display of non-latin leads
rewriting of UTF8 database commands for scripts
updating of docs
building of language builds for 2.0.4 branch
addition of vicidial_it Italian Administration it_language_admin.txt and build

git-svn-id: svn://192.168.202.10@848 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2008-04-29 08:32:42 +00:00
parent 6cc0c6bbd1
commit 023b83fec4
19 changed files with 1971 additions and 198 deletions
+7
View File
@@ -1724,6 +1724,13 @@ to use our new mysql script file to add the tables to the database:
######------ BEGIN Mysql data entry(you can copy and paste this into terminal) #
create database asterisk;
NOTE: if you will be using lead files with a language that does not use the
standard latin character set then you will want to use UTF8 for your default
characterset in the MySQL database. This requires at least MySQL 4.1.11 and you
can use the following query to create the database:
CREATE DATABASE `asterisk` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
GRANT SELECT,INSERT,UPDATE,DELETE,LOCK TABLES on asterisk.* TO cron@'%' IDENTIFIED BY '1234';
GRANT SELECT,INSERT,UPDATE,DELETE,LOCK TABLES on asterisk.* TO cron@localhost IDENTIFIED BY '1234';