Localize components for the roles pages
This commit is contained in:
		| @ -6,7 +6,7 @@ | ||||
| <table class="table table-borderless"> | ||||
|     <tr> | ||||
|         <td> | ||||
|             <Label For="name" HelpText="Name Of The Role">Name:</Label> | ||||
|             <Label For="name" HelpText="Name Of The Role" ResourceKey="Name">Name:</Label> | ||||
|         </td> | ||||
|         <td> | ||||
|             <input id="name" class="form-control" @bind="@_name" /> | ||||
| @ -14,7 +14,7 @@ | ||||
|     </tr> | ||||
|     <tr> | ||||
|         <td> | ||||
|             <Label For="description" HelpText="A Short Description Of The Role Which Describes Its Purpose">Description:</Label> | ||||
|             <Label For="description" HelpText="A Short Description Of The Role Which Describes Its Purpose" ResourceKey="Description">Description:</Label> | ||||
|         </td> | ||||
|         <td> | ||||
|             <textarea id="description" class="form-control" @bind="@_description" rows="5"></textarea> | ||||
| @ -22,7 +22,7 @@ | ||||
|     </tr> | ||||
|     <tr> | ||||
|         <td> | ||||
|             <Label For="isautoassigned" HelpText="Indicates Whether Or Not New Users Are Automatically Assigned To This Role">Auto Assigned?</Label> | ||||
|             <Label For="isautoassigned" HelpText="Indicates Whether Or Not New Users Are Automatically Assigned To This Role" ResourceKey="AutoAssigned">Auto Assigned?</Label> | ||||
|         </td> | ||||
|         <td> | ||||
|             <select id="isautoassigned" class="form-control" @bind="@_isautoassigned"> | ||||
|  | ||||
| @ -6,7 +6,7 @@ | ||||
| <table class="table table-borderless"> | ||||
|     <tr> | ||||
|         <td> | ||||
|             <Label For="name" HelpText="Name Of The Role">Name:</Label> | ||||
|             <Label For="name" HelpText="Name Of The Role" ResourceKey="Name">Name:</Label> | ||||
|         </td> | ||||
|         <td> | ||||
|             <input id="name" class="form-control" @bind="@_name" /> | ||||
| @ -14,7 +14,7 @@ | ||||
|     </tr> | ||||
|     <tr> | ||||
|         <td> | ||||
|             <Label For="description" HelpText="A Short Description Of The Role Which Describes Its Purpose">Description:</Label> | ||||
|             <Label For="description" HelpText="A Short Description Of The Role Which Describes Its Purpose" ResourceKey="Description">Description:</Label> | ||||
|         </td> | ||||
|         <td> | ||||
|             <textarea id="description" class="form-control" @bind="@_description" rows="5"></textarea> | ||||
| @ -22,7 +22,7 @@ | ||||
|     </tr> | ||||
|     <tr> | ||||
|         <td> | ||||
|             <Label For="isautoassigned" HelpText="Indicates Whether Or Not New Users Are Automatically Assigned To This Role">Auto Assigned?</Label> | ||||
|             <Label For="isautoassigned" HelpText="Indicates Whether Or Not New Users Are Automatically Assigned To This Role" ResourceKey="AutoAssigned">Auto Assigned?</Label> | ||||
|         </td> | ||||
|         <td> | ||||
|             <select id="isautoassigned" class="form-control" @bind="@_isautoassigned"> | ||||
|  | ||||
| @ -8,7 +8,7 @@ | ||||
| } | ||||
| else | ||||
| { | ||||
|     <ActionLink Action="Add" Text="Add Role" /> | ||||
|     <ActionLink Action="Add" Text="Add Role" ResourceKey="AddRole" /> | ||||
|  | ||||
|     <Pager Items="@_roles"> | ||||
|         <Header> | ||||
| @ -18,9 +18,9 @@ else | ||||
|             <th>Name</th> | ||||
|         </Header> | ||||
|         <Row> | ||||
|             <td><ActionLink Action="Edit" Parameters="@($"id=" + context.RoleId.ToString())" Disabled="@(context.IsSystem)" /></td> | ||||
|             <td><ActionDialog Header="Delete Role" Message="@("Are You Sure You Wish To Delete The " + context.Name + " Role?")" Action="Delete" Security="SecurityAccessLevel.Admin" Class="btn btn-danger" OnClick="@(async () => await DeleteRole(context))" Disabled="@(context.IsSystem)" /></td> | ||||
|             <td><ActionLink Action="Users" Parameters="@($"id=" + context.RoleId.ToString())" /></td> | ||||
|             <td><ActionLink Action="Edit" Parameters="@($"id=" + context.RoleId.ToString())" Disabled="@(context.IsSystem)" ResourceKey="Edit" /></td> | ||||
|             <td><ActionDialog Header="Delete Role" Message="@("Are You Sure You Wish To Delete The " + context.Name + " Role?")" Action="Delete" Security="SecurityAccessLevel.Admin" Class="btn btn-danger" OnClick="@(async () => await DeleteRole(context))" Disabled="@(context.IsSystem)" ResourceKey="DeleteRole" /></td> | ||||
|             <td><ActionLink Action="Users" Parameters="@($"id=" + context.RoleId.ToString())" ResourceKey="Users" /></td> | ||||
|             <td>@context.Name</td> | ||||
|         </Row> | ||||
|     </Pager> | ||||
|  | ||||
| @ -12,7 +12,7 @@ else | ||||
|     <table class="table table-borderless"> | ||||
|         <tr> | ||||
|             <td> | ||||
|                 <Label For="role" HelpText="The role you are assigning users to">Role: </Label> | ||||
|                 <Label For="role" HelpText="The role you are assigning users to" ResourceKey="Roles">Role: </Label> | ||||
|             </td> | ||||
|             <td> | ||||
|                 <input id="role" class="form-control" @bind="@name" disabled /> | ||||
| @ -20,7 +20,7 @@ else | ||||
|         </tr> | ||||
|         <tr> | ||||
|             <td> | ||||
|                 <Label For="user" HelpText="Select a user">User: </Label> | ||||
|                 <Label For="user" HelpText="Select a user" ResourceKey="Users">User: </Label> | ||||
|             </td> | ||||
|             <td> | ||||
|                 <select id="user" class="form-control" @bind="@userid"> | ||||
| @ -34,7 +34,7 @@ else | ||||
|         </tr> | ||||
|         <tr> | ||||
|             <td> | ||||
|                 <Label For="effectiveDate" HelpText="The date that this role assignment is active">Effective Date: </Label> | ||||
|                 <Label For="effectiveDate" HelpText="The date that this role assignment is active" ResourceKey="EffectiveDate">Effective Date: </Label> | ||||
|             </td> | ||||
|             <td> | ||||
|                 <input id="effectiveDate" class="form-control" @bind="@effectivedate" /> | ||||
| @ -42,7 +42,7 @@ else | ||||
|         </tr> | ||||
|         <tr> | ||||
|             <td> | ||||
|                 <Label For="expiryDate" HelpText="The date that this role assignment expires">Expiry Date: </Label> | ||||
|                 <Label For="expiryDate" HelpText="The date that this role assignment expires" ResourceKey="ExpiryDate">Expiry Date: </Label> | ||||
|             </td> | ||||
|             <td> | ||||
|                 <input id="expiryDate" class="form-control" @bind="@expirydate" /> | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 hishamco
					hishamco