56 lines
1.7 KiB
PHP
56 lines
1.7 KiB
PHP
<?php
|
|
|
|
return [
|
|
'users' => [
|
|
'navigation' => [
|
|
'label' => 'Users',
|
|
'singular' => 'User',
|
|
'plural' => 'Users',
|
|
],
|
|
'sections' => [
|
|
'account' => 'Account',
|
|
'profile' => 'Profile',
|
|
'nutrition_goals' => 'Nutrition goals',
|
|
'activity' => 'Activity',
|
|
'metadata' => 'Metadata',
|
|
],
|
|
'fields' => [
|
|
'id' => 'ID',
|
|
'name' => 'Name',
|
|
'email' => 'Email address',
|
|
'locale' => 'Language',
|
|
'email_verified_at' => 'Email verified at',
|
|
'account_verified_at' => 'Account verified at',
|
|
'avatar' => 'Avatar',
|
|
'password' => 'Password',
|
|
'bio' => 'Bio',
|
|
'height' => 'Height',
|
|
'date_of_birth' => 'Date of birth',
|
|
'sex' => 'Sex',
|
|
'daily_calorie_goal' => 'Calories',
|
|
'daily_protein_goal' => 'Protein',
|
|
'daily_carbs_goal' => 'Carbs',
|
|
'daily_fats_goal' => 'Fats',
|
|
'physical_activity_level' => 'Activity level',
|
|
'physical_activity_level_short' => 'Activity',
|
|
'weight_goal' => 'Weight goal',
|
|
'weight_goal_short' => 'Weight goal',
|
|
'pace_preference' => 'Pace',
|
|
'created_at' => 'Created at',
|
|
'updated_at' => 'Updated at',
|
|
],
|
|
'locales' => [
|
|
'en' => 'English',
|
|
'fr' => 'French',
|
|
],
|
|
'filters' => [
|
|
'email_verified' => 'Email verified',
|
|
'account_verified' => 'Account verified',
|
|
],
|
|
'placeholders' => [
|
|
'not_verified' => 'Not verified',
|
|
'empty' => '-',
|
|
],
|
|
],
|
|
];
|