consistent casing
This commit is contained in:
parent
0c125ed2b9
commit
c7425c8d1d
3 changed files with 2 additions and 3 deletions
|
@ -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",
|
||||
|
|
|
@ -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" />}
|
||||
|
|
|
@ -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} />
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue