diff --git a/resources/lang/en/admin/custom_fields/general.php b/resources/lang/en/admin/custom_fields/general.php
index 0fb90a5079..8483c67c69 100644
--- a/resources/lang/en/admin/custom_fields/general.php
+++ b/resources/lang/en/admin/custom_fields/general.php
@@ -2,6 +2,7 @@
return [
'custom_fields' => 'Custom Fields',
+ 'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
@@ -26,7 +27,19 @@ return [
'used_by_models' => 'Used By Models',
'order' => 'Order',
'create_fieldset' => 'New Fieldset',
+ 'create_fieldset_title' => 'Create a new fieldset',
'create_field' => 'New Custom Field',
+ 'create_field_title' => 'Create a new custom field',
'value_encrypted' => 'The value of this field is encrypted in the database. Only admin users will be able to view the decrypted value',
'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails.',
+ 'help_text' => 'Help Text',
+ 'help_text_description' => 'This is optional text that will appear below the form elements while editing an asset to provide context on the field.',
+ 'about_custom_fields_title' => 'About Custom Fields',
+ 'about_custom_fields_text' => 'Custom fields allow you to add arbitrary attributes to assets.',
+ 'add_field_to_fieldset' => 'Add Field to Fieldset',
+ 'make_optional' => 'Required - click to make optional',
+ 'make_required' => 'Optional - click to make required',
+ 'reorder' => 'Reorder',
+ 'db_field' => 'DB Field',
+ 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column
but should be :expected .'
];
diff --git a/resources/lang/en/button.php b/resources/lang/en/button.php
index 12bda167b3..ac1e6aa429 100644
--- a/resources/lang/en/button.php
+++ b/resources/lang/en/button.php
@@ -8,6 +8,7 @@ return [
'delete' => 'Delete',
'edit' => 'Edit',
'restore' => 'Restore',
+ 'remove' => 'Remove',
'request' => 'Request',
'submit' => 'Submit',
'upload' => 'Upload',
diff --git a/resources/lang/en/general.php b/resources/lang/en/general.php
index 9b6c4d4dfd..5cf5d88445 100644
--- a/resources/lang/en/general.php
+++ b/resources/lang/en/general.php
@@ -6,7 +6,6 @@
'accessory' => 'Accessory',
'accessory_report' => 'Accessory Report',
'action' => 'Action',
- 'actions' => 'Actions',
'activity_report' => 'Activity Report',
'address' => 'Address',
'admin' => 'Admin',
@@ -261,4 +260,6 @@
'hide_help' => 'Hide help',
'view_all' => 'view all',
'hide_deleted' => 'Hide Deleted',
+ 'email' => 'Email',
+ 'Help'
];
diff --git a/resources/views/account/accept/index.blade.php b/resources/views/account/accept/index.blade.php
index 17997be6e5..7370c3a38a 100755
--- a/resources/views/account/accept/index.blade.php
+++ b/resources/views/account/accept/index.blade.php
@@ -35,7 +35,7 @@
{{ trans('general.name')}}
- {{ trans('general.actions')}}
+ {{ trans('button.actions')}}
This is optional text that will appear below the form elements while editing an asset to provide context on the field.
+{{ trans('admin/custom_fields/general.help_text_description') }}
{!! $errors->first('help_text', ' ') !!}Custom fields allow you to add arbitrary attributes to assets.
+{{ trans('admin/custom_fields/general.about_custom_fields_text') }}
Fieldsets work like containers of the custom fields you've created. This allows you to group commonly used custom attributes together for easy associations.
+{{ trans('admin/custom_fields/general.about_fieldsets_text') }}
{{ $field->convertUnicodeDbSlug() }}
@if ($field->convertUnicodeDbSlug()!=$field->db_column)
- {{ $field->db_column }}
but should be {{ $field->convertUnicodeDbSlug() }}
.
+