Missing string

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2024-07-16 21:14:41 +01:00
parent 94e881e5f0
commit 7f412ec3f5
2 changed files with 2 additions and 1 deletions

View file

@ -211,7 +211,7 @@ class CustomFieldsetsController extends Controller
return redirect()->route('fieldsets.show', [$id])->with('success', trans('admin/custom_fields/message.field.create.assoc_success'));
}
return redirect()->route('fieldsets.show', [$id])->with('error', 'No field selected.');
return redirect()->route('fieldsets.show', [$id])->with('error', trans('admin/custom_fields/message.field.none_selected'));
}
/**

View file

@ -5,6 +5,7 @@ return array(
'field' => array(
'invalid' => 'That field does not exist.',
'already_added' => 'Field already added',
'none_selected' => 'No field selected',
'create' => array(
'error' => 'Field was not created, please try again.',