bump and bugfix
This commit is contained in:
parent
c4d05a5a1a
commit
734e08a209
4 changed files with 19 additions and 4 deletions
|
@ -136,7 +136,7 @@
|
||||||
"imagesloaded": "^4.1.4",
|
"imagesloaded": "^4.1.4",
|
||||||
"json-loader": "^0.5.4",
|
"json-loader": "^0.5.4",
|
||||||
"lbry-format": "https://github.com/lbryio/lbry-format.git",
|
"lbry-format": "https://github.com/lbryio/lbry-format.git",
|
||||||
"lbry-redux": "lbryio/lbry-redux#6828dc2b86818a00d762c1b883572ea17f0bf6b9",
|
"lbry-redux": "lbryio/lbry-redux#04789190b060f27bf0c438a9af449b4a18ef4925",
|
||||||
"lbryinc": "lbryio/lbryinc#517c28a183d6ab69a357227809bc7c3c12d8411e",
|
"lbryinc": "lbryio/lbryinc#517c28a183d6ab69a357227809bc7c3c12d8411e",
|
||||||
"lint-staged": "^7.0.2",
|
"lint-staged": "^7.0.2",
|
||||||
"localforage": "^1.7.1",
|
"localforage": "^1.7.1",
|
||||||
|
|
|
@ -1469,5 +1469,16 @@
|
||||||
"Publish Something": "Publish Something",
|
"Publish Something": "Publish Something",
|
||||||
"Watch on lbry.tv": "Watch on lbry.tv",
|
"Watch on lbry.tv": "Watch on lbry.tv",
|
||||||
"Paid content cannot be embedded.": "Paid content cannot be embedded.",
|
"Paid content cannot be embedded.": "Paid content cannot be embedded.",
|
||||||
|
"Hrvatski": "Hrvatski",
|
||||||
|
"Nederlands": "Nederlands",
|
||||||
|
"Français": "Français",
|
||||||
|
"Deutsch": "Deutsch",
|
||||||
|
"Italiano": "Italiano",
|
||||||
|
"Polski": "Polski",
|
||||||
|
"Português": "Português",
|
||||||
|
"Русский": "Русский",
|
||||||
|
"Español": "Español",
|
||||||
|
"Türkçe": "Türkçe",
|
||||||
|
"Česky": "Česky",
|
||||||
"--end--": "--end--"
|
"--end--": "--end--"
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,7 +69,11 @@ function ChannelAbout(props: Props) {
|
||||||
<label>{__('Languages')}</label>
|
<label>{__('Languages')}</label>
|
||||||
<div className="media__info-text">
|
<div className="media__info-text">
|
||||||
{/* this could use some nice 'tags' styling */}
|
{/* this could use some nice 'tags' styling */}
|
||||||
{`${SUPPORTED_LANGUAGES[languages[0]]}${languages[1] ? ', ' + SUPPORTED_LANGUAGES[languages[1]] : ''}`}
|
{languages && languages.length
|
||||||
|
? languages.reduce((acc, lang, i) => {
|
||||||
|
return acc + `${__(SUPPORTED_LANGUAGES[lang])}` + ' ';
|
||||||
|
}, '')
|
||||||
|
: null}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<label>{__('Total Uploads')}</label>
|
<label>{__('Total Uploads')}</label>
|
||||||
|
|
|
@ -7391,9 +7391,9 @@ lazy-val@^1.0.4:
|
||||||
yargs "^13.2.2"
|
yargs "^13.2.2"
|
||||||
zstd-codec "^0.1.1"
|
zstd-codec "^0.1.1"
|
||||||
|
|
||||||
lbry-redux@lbryio/lbry-redux#6828dc2b86818a00d762c1b883572ea17f0bf6b9:
|
lbry-redux@lbryio/lbry-redux#04789190b060f27bf0c438a9af449b4a18ef4925:
|
||||||
version "0.0.1"
|
version "0.0.1"
|
||||||
resolved "https://codeload.github.com/lbryio/lbry-redux/tar.gz/6828dc2b86818a00d762c1b883572ea17f0bf6b9"
|
resolved "https://codeload.github.com/lbryio/lbry-redux/tar.gz/04789190b060f27bf0c438a9af449b4a18ef4925"
|
||||||
dependencies:
|
dependencies:
|
||||||
proxy-polyfill "0.1.6"
|
proxy-polyfill "0.1.6"
|
||||||
reselect "^3.0.0"
|
reselect "^3.0.0"
|
||||||
|
|
Loading…
Reference in a new issue