20 lines
394 B
PHP
20 lines
394 B
PHP
<?php
|
|
|
|
/**
|
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
|
* This is NOT a freeware, use is subject to license terms
|
|
*
|
|
* $Id: lang_vedio.php 27449 2012-02-01 05:32:35Z zhangguosheng $
|
|
*/
|
|
|
|
if(!defined('IN_DISCUZ')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
$lang = array
|
|
(
|
|
'vedio_url' => '视频地址',
|
|
'vedio_width' => '视频宽度',
|
|
'vedio_height' => '视频高度',
|
|
);
|
|
?>
|