1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-26 21:02:28 +02:00

Rename identitity to identity

This commit is contained in:
Lance Pioch 2018-05-13 10:13:51 -04:00
parent 5f6ee45f44
commit 351099ccf5
4 changed files with 5 additions and 5 deletions

View File

@ -220,7 +220,7 @@ return [
'new_email' => 'Neue Email Adresse',
'first_name' => 'Vornahme',
'last_name' => 'Nachname',
'update_identitity' => 'Account bearbeiten',
'update_identity' => 'Account bearbeiten',
'username_help' => 'Dein Username darf nicht bereits vergeben sein oder folgende Zeichen enthakten: :requirements.',
],
'security' => [

View File

@ -62,7 +62,7 @@ return [
'new_email' => 'New Email Address',
'first_name' => 'First Name',
'last_name' => 'Last Name',
'update_identitity' => 'Update Identity',
'update_identity' => 'Update Identity',
'username_help' => 'Your username must be unique to your account, and may only contain the following characters: :requirements.',
],
'security' => [

View File

@ -220,7 +220,7 @@ return [
'new_email' => 'Nueva Dirección De Correo Electrónico',
'first_name' => 'Primer Nombre',
'last_name' => 'Apellido',
'update_identitity' => 'Actualización De La Identidad',
'update_identity' => 'Actualización De La Identidad',
'username_help' => 'Su nombre de usuario debe ser único a su cuenta, y sólo pueden contener los siguientes caracteres: :requirements.',
],
'security' => [

View File

@ -64,7 +64,7 @@
<div class="box box-primary">
<form action="{{ route('account') }}" method="POST">
<div class="box-header with-border">
<h3 class="box-title">@lang('base.account.update_identitity')</h3>
<h3 class="box-title">@lang('base.account.update_identity')</h3>
</div>
<div class="box-body">
<div class="row">
@ -94,7 +94,7 @@
<div class="box-footer with-border">
{!! csrf_field() !!}
<input type="hidden" name="do_action" value="identity" />
<button type="submit" class="btn btn-sm btn-primary">@lang('base.account.update_identitity')</button>
<button type="submit" class="btn btn-sm btn-primary">@lang('base.account.update_identity')</button>
</div>
</form>
</div>