mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-23 00:07:07 +00:00
parent
8fbbe21d81
commit
5411863f6a
1 changed files with 11 additions and 1 deletions
|
@ -2,6 +2,7 @@ import _ from 'lodash';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import getLanguageName from 'Utilities/String/getLanguageName';
|
import getLanguageName from 'Utilities/String/getLanguageName';
|
||||||
|
import translate from 'Utilities/String/translate';
|
||||||
import * as mediaInfoTypes from './mediaInfoTypes';
|
import * as mediaInfoTypes from './mediaInfoTypes';
|
||||||
|
|
||||||
function formatLanguages(languages) {
|
function formatLanguages(languages) {
|
||||||
|
@ -9,7 +10,16 @@ function formatLanguages(languages) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const splitLanguages = _.uniq(languages.split('/')).map((l) => getLanguageName(l.split('_')[0]));
|
const splitLanguages = _.uniq(languages.split('/')).map((l) => {
|
||||||
|
const simpleLanguage = l.split('_')[0];
|
||||||
|
|
||||||
|
if (simpleLanguage === 'und') {
|
||||||
|
return translate('Unknown');
|
||||||
|
}
|
||||||
|
|
||||||
|
return getLanguageName(simpleLanguage);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
if (splitLanguages.length > 3) {
|
if (splitLanguages.length > 3) {
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in a new issue