🌎 added i18n for UsersOverview

ref #12
This commit is contained in:
Philipp Dormann 2021-01-10 13:31:46 +01:00
parent b9e0be4483
commit 3754f09b2f
2 changed files with 88 additions and 88 deletions

View File

@ -14,12 +14,10 @@
}}
type="button"
class="w-full inline-flex justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-blue-600 text-base font-medium text-white hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 sm:ml-3 sm:w-auto sm:text-sm">
Create User
{$_('create-user')}
</button>
</span>
<p class="mb-8 text-lg text-gray-500">
manage admin users
</p>
<p class="mb-8 text-lg text-gray-500">{$_('manage-admin-users')}</p>
<UsersOverview />
</section>
<AddUserModal bind:modal_open />

View File

@ -81,5 +81,7 @@
"tracks": "Tracks",
"users": "Users",
"welcome_wavinghand": "Welcome 👋",
"your_profile": "Your Profile"
"your_profile": "Your Profile",
"manage-admin-users": "manage admin users",
"create-user": "Create User"
}