diff --git a/js/page/publish.js b/js/page/publish.js
index af6e25682..03cda29cf 100644
--- a/js/page/publish.js
+++ b/js/page/publish.js
@@ -337,7 +337,7 @@ var PublishPage = React.createClass({
(!this.state.name ? '' :
(! this.state.nameResolved ? The name {this.state.name} is available.
: (this.state.myClaimExists ? You already have a claim on the name {this.state.name}. You can use this page to update your claim.
- : The name {this.state.name} is currently claimed for {this.state.topClaimValue} credits.)))
+ : The name {this.state.name} is currently claimed for {this.state.topClaimValue} {this.state.topClaimValue == 1 ? 'credit' : 'credits'}.)))
}
What LBRY name would you like to claim for this file?
@@ -361,10 +361,10 @@ var PublishPage = React.createClass({
Credits
How much would you like to bid for this name?
{ !this.state.nameResolved ? Since this name is not currently resolved, you may bid as low as you want, but higher bids help prevent others from claiming your name.
- : (this.state.topClaimIsMine ? You currently control this name with a bid of {this.state.myClaimValue} credits.
- : (this.state.myClaimExists ? You have a non-winning bid on this name for {this.state.myClaimValue} credits.
- To control this name, you'll need to increase your bid to more than {this.state.topClaimValue} credits.
- : You must bid over {this.state.topClaimValue} credits to claim this name.)) }
+ : (this.state.topClaimIsMine ? You currently control this name with a bid of {this.state.myClaimValue} {this.state.myClaimValue == 1 ? 'credit' : 'credits'}.
+ : (this.state.myClaimExists ? You have a non-winning bid on this name for {this.state.myClaimValue} {this.state.myClaimValue == 1 ? 'credit' : 'credits'}.
+ To control this name, you'll need to increase your bid to more than {this.state.topClaimValue} {this.state.topClaimValue == 1 ? 'credit' : 'credits'}.
+ : You must bid over {this.state.topClaimValue} {this.state.topClaimValue == 1 ? 'credit' : 'credits'} to claim this name.)) }