mirror of
https://github.com/mitb-archive/filebot
synced 2024-12-23 08:18:52 -05:00
Fix Chinese language support
This commit is contained in:
parent
b5af78713a
commit
458c3630de
@ -94,13 +94,13 @@ public final class WebServices {
|
||||
}
|
||||
|
||||
public static VideoHashSubtitleService[] getVideoHashSubtitleServices(Locale locale) {
|
||||
// special support for 射手网 for Chinese language subtitles
|
||||
if (locale.equals(Locale.CHINESE)) {
|
||||
return new VideoHashSubtitleService[] { OpenSubtitles, Shooter };
|
||||
}
|
||||
|
||||
switch (locale.getLanguage()) {
|
||||
case "zh":
|
||||
return new VideoHashSubtitleService[] { OpenSubtitles, Shooter }; // special support for 射手网 for Chinese language subtitles
|
||||
default:
|
||||
return new VideoHashSubtitleService[] { OpenSubtitles };
|
||||
}
|
||||
}
|
||||
|
||||
public static Datasource getService(String name) {
|
||||
return getService(name, getServices());
|
||||
|
Loading…
Reference in New Issue
Block a user