You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.0 KiB
40 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WpfApp1.translationKey
|
|
{
|
|
class translationPublic : TranslationApiInt
|
|
{
|
|
|
|
public override List<String> OutputTranslationI(int id)
|
|
{
|
|
var temp = new List<String> { };
|
|
switch (id)
|
|
{
|
|
case 0://讯飞
|
|
{
|
|
temp.Add("");//APISecret
|
|
temp.Add("");//APIKey
|
|
break;
|
|
}
|
|
case 1://百度
|
|
{
|
|
temp.Add("");//APIAppid
|
|
temp.Add("");//APIKey
|
|
break;
|
|
}
|
|
case 2://google
|
|
{
|
|
temp.Add("");//NULL,空
|
|
temp.Add("");//APIKey
|
|
break;
|
|
}
|
|
}
|
|
return temp;
|
|
}
|
|
}
|
|
}
|