FastMovieAI AI短剧创作平台 二开基线
- 源码: xhadmincn/FastMovieAI (Apache 2.0) - 二开: Docker部署, Swoole改Select, route.php修复, 补update/VERSION - vendor/示例资源已gitignore
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
namespace plugin\shortplay\utils\enum;
|
||||
|
||||
use app\expose\enum\builder\Enum;
|
||||
|
||||
class VoiceLanguage extends Enum
|
||||
{
|
||||
const ZH = [
|
||||
'label' => '中文',
|
||||
'value' => 'zh'
|
||||
];
|
||||
const EN = [
|
||||
'label' => '英语',
|
||||
'value' => 'en'
|
||||
];
|
||||
const JA = [
|
||||
'label' => '日语',
|
||||
'value' => 'ja'
|
||||
];
|
||||
const KO = [
|
||||
'label' => '韩语',
|
||||
'value' => 'ko'
|
||||
];
|
||||
const FR = [
|
||||
'label' => '法语',
|
||||
'value' => 'fr'
|
||||
];
|
||||
const DE = [
|
||||
'label' => '德语',
|
||||
'value' => 'de'
|
||||
];
|
||||
const IT = [
|
||||
'label' => '意大利语',
|
||||
'value' => 'it'
|
||||
];
|
||||
const RU = [
|
||||
'label' => '俄语',
|
||||
'value' => 'ru'
|
||||
];
|
||||
const SV = [
|
||||
'label' => '瑞典语',
|
||||
'value' => 'sv'
|
||||
];
|
||||
const DA = [
|
||||
'label' => '丹麦语',
|
||||
'value' => 'da'
|
||||
];
|
||||
const NO = [
|
||||
'label' => '挪威语',
|
||||
'value' => 'no'
|
||||
];
|
||||
const PT = [
|
||||
'label' => '葡萄牙语',
|
||||
'value' => 'pt'
|
||||
];
|
||||
const TR = [
|
||||
'label' => '土耳其语',
|
||||
'value' => 'tr'
|
||||
];
|
||||
const AR = [
|
||||
'label' => '阿拉伯语',
|
||||
'value' => 'ar'
|
||||
];
|
||||
const ES = [
|
||||
'label' => '西班牙语',
|
||||
'value' => 'es'
|
||||
];
|
||||
const HI = [
|
||||
'label' => '印地语',
|
||||
'value' => 'hi'
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user