我有一个Zen Cart 英文网站。 我想用法语和意大利语制作同样的网站。 我如何能够这样做?
我指的是,如果我安装了Zen Cart语的语文包,那么,这是否将数据库内的所有网站和数据转换成该语言,或者我是否必须再次以特定语言分类数据?
如何下载上述语言包?
我有一个Zen Cart 英文网站。 我想用法语和意大利语制作同样的网站。 我如何能够这样做?
我指的是,如果我安装了Zen Cart语的语文包,那么,这是否将数据库内的所有网站和数据转换成该语言,或者我是否必须再次以特定语言分类数据?
如何下载上述语言包?
大部分 Zen Cart语文本存放在案卷中,直至并包括Zent Cart 1.5。 因此,为这些语言安装语言包将满足你对法语和意大利语的许多需要。 但并非全部。
类别和产品信息在数据库中保存,并安装一个语言包不会自动将这种信息翻译成另一种语言,你需要安排这种信息。
Zen Cart还允许你添加“超文本”栏目(通过“页码编辑”的定义),如在主页上,或者在购物页上添加解释性文字。 如果你在这些超文本部分使用案文,那么你也需要翻译。
许多地方的一个主要例外是使用在CMS、EZ-Pages中建造的Zent Cart的网页。 如果你这样做的话,你将需要安装多语文的EZ-Pages添加-in模块,然后翻译这样制作的网页。
最后也是罕见的例外是,如果你制造了任何超文本旗。 如果你不相信这意味着什么,大多数人不会这样做,这很可能不会影响你们。
I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...
<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...
I found this script online that creates a thumbnail out of a image but the thumbnail image is created with poor quality how can I improve the quality of the image. And is there a better way to create ...
如何确认来自正确来源的数字。
Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...
I wonder there is a way to post a message to a facebook business page with cURL? thanks
I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...
How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...