You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
In the Oqtane.Client\Modules\admin\roles\Index.razor file, the "Text" property is missing from the ActionLink:
This causes translation to other languages to fail
Steps To Reproduce
Install other languages and in the language bar switch to anything other than English
The text was updated successfully, but these errors were encountered:
marceloatoledo
changed the title
[BUG] Translation failure in Oqtane.Client/Modules/Admin/Roles/Index.razor
[BUG] Translation failure in Oqtane.Client\Modules\Admin\Roles\Index.razor
Apr 29, 2024
leigh-pointer
added a commit
to leigh-pointer/oqtane.framework.fork
that referenced
this issue
Apr 30, 2024
Oqtane Info
Version - 5.1.1
Describe the bug
In the Oqtane.Client\Modules\admin\roles\Index.razor file, the "Text" property is missing from the ActionLink:
This causes translation to other languages to fail
ActionLink Action="Edit" Parameters="@($"id=" + context.RoleId.ToString())" Security="SecurityAccessLevel.Edit" Disabled="@(context.IsSystem)" ResourceKey="Edit"
ActionLink Action="Users" Parameters="@($"id=" + context.RoleId.ToString())" Security="SecurityAccessLevel.Edit" ResourceKey="Users"
Expected Behavior
For the Edit and User buttons to be translated
ActionLink Action="Edit" Text="Edit" Parameters="@($"id=" + context.RoleId.ToString())" Security="SecurityAccessLevel.Edit" Disabled="@(context.IsSystem)" ResourceKey="Edit"
ActionLink Action="Users" Text="Users" Parameters="@($"id=" + context.RoleId.ToString())" Security="SecurityAccessLevel.Edit" ResourceKey="Users"
Steps To Reproduce
Install other languages and in the language bar switch to anything other than English
The text was updated successfully, but these errors were encountered: