Added in basic changes necessary to fix some typos. Needs further tests and changes to other config files

This commit is contained in:
Reed Garmsen
2015-06-16 17:08:06 -07:00
parent 8e65f38979
commit 1c0400a121
2 changed files with 7 additions and 5 deletions

View File

@@ -52,20 +52,20 @@ var FindTeamDomain = React.createClass({
<div>
<span className="signup-team__name">{ config.SiteName }</span>
<br/>
<span className="signup-team__subdomain">Enter your {strings.TeamPlural} domain.</span>
<span className="signup-team__subdomain">Enter your {strings.TeamPossessive} domain.</span>
<br/>
<br/>
</div>
<form onSubmit={this.handleSubmit}>
<div className={server_error ? 'form-group has-error' : 'form-group'}>
{ server_error }
<input type="text" className="form-control" name="domain" ref="domain" placeholder="teamdomain" />
<input type="text" className="form-control" name="domain" ref="domain" placeholder="team domain" />
</div>
<div className="form-group">
<button type="submit" className="btn btn-primary">Continue</button>
</div>
<div>
<span>Don't remember your {strings.TeamPlural} domain? <a href="/find_team">Find it here</a></span>
<span>Don't remember your {strings.TeamPossessive} domain? <a href="/find_team">Find it here</a></span>
</div>
<br/>
<br/>

View File

@@ -33,6 +33,8 @@ var config = {
var strings = {
Team: "team",
TeamPlural: "teams",
TeamPossessive: "team's",
Company: "company",
CompanyPlural: "companies"
}
CompanyPlural: "companies",
CompanyPossessive: "company's"
};