mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Added in basic changes necessary to fix some typos. Needs further tests and changes to other config files
This commit is contained in:
@@ -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/>
|
||||
|
||||
@@ -33,6 +33,8 @@ var config = {
|
||||
var strings = {
|
||||
Team: "team",
|
||||
TeamPlural: "teams",
|
||||
TeamPossessive: "team's",
|
||||
Company: "company",
|
||||
CompanyPlural: "companies"
|
||||
}
|
||||
CompanyPlural: "companies",
|
||||
CompanyPossessive: "company's"
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user