mirror of
https://github.com/Radarr/Radarr
synced 2026-05-03 13:51:40 +02:00
fixed grammar issues
This commit is contained in:
parent
6f0a2de505
commit
0ef7f0155a
2 changed files with 2 additions and 2 deletions
|
|
@ -103,7 +103,7 @@ class AddNewMovie extends Component {
|
|||
className={styles.searchInput}
|
||||
name="movieLookup"
|
||||
value={term}
|
||||
placeholder="eg. The Dark Knight, tmdb:155, imdb:tt0468569"
|
||||
placeholder="e.g. The Dark Knight, tmdb:155, imdb:tt0468569"
|
||||
autoFocus={true}
|
||||
onChange={this.onSearchInputChange}
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -125,7 +125,7 @@ public static Param<string> IsValidPath(this Param<string> param)
|
|||
|
||||
if (OsInfo.IsWindows)
|
||||
{
|
||||
throw ExceptionFactory.CreateForParamValidation(param.Name, string.Format("value [{0}] is not a valid Windows path. paths must be a full path eg. C:\\Windows", param.Value));
|
||||
throw ExceptionFactory.CreateForParamValidation(param.Name, string.Format("value [{0}] is not a valid Windows path. paths must be a full path e.g. C:\\Windows", param.Value));
|
||||
}
|
||||
|
||||
throw ExceptionFactory.CreateForParamValidation(param.Name, string.Format("value [{0}] is not a valid *nix path. paths must start with /", param.Value));
|
||||
|
|
|
|||
Loading…
Reference in a new issue