consistent casing

This commit is contained in:
Sean Yesmunt 2019-12-06 15:58:28 -05:00
parent 0c125ed2b9
commit c7425c8d1d
3 changed files with 2 additions and 3 deletions

View file

@ -298,7 +298,6 @@
"Continue Anyway": "Continue Anyway",
"This app is running with an incompatible version of the LBRY protocol. You can still use it, but there may be issues. Re-run the installation package for best results.": "This app is running with an incompatible version of the LBRY protocol. You can still use it, but there may be issues. Re-run the installation package for best results.",
"Update ready to install": "Update ready to install",
"Install now": "Install now",
"Upgrade available": "Upgrade available",
"LBRY Leveled Up": "LBRY Leveled Up",
"Upgrade": "Upgrade",

View file

@ -204,7 +204,7 @@ function App(props: Props) {
{/* @if TARGET='app' */}
{showUpgradeButton && (
<Nag message={__('An upgrade is available.')} actionText={__('Install now')} onClick={requestDownloadUpgrade} />
<Nag message={__('An upgrade is available.')} actionText={__('Install Now')} onClick={requestDownloadUpgrade} />
)}
{/* @endif */}
{isEnhancedLayout && <Yrbl className="yrbl--enhanced" />}

View file

@ -59,7 +59,7 @@ function OpenInAppLink(props: Props) {
}
return (
<Nag message={__('Want even more freedom?')} actionText={__('Use The App')} href={appLink} onClose={handleClose} />
<Nag message={__('Want even more freedom?')} actionText={__('Use the App')} href={appLink} onClose={handleClose} />
);
}