104 lines
3.2 KiB
PHP
104 lines
3.2 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',
|
|
'role' => 'Role',
|
|
'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' => '-',
|
|
],
|
|
],
|
|
'moderation_cases' => [
|
|
'navigation' => [
|
|
'label' => 'Moderation',
|
|
'singular' => 'Moderation case',
|
|
'plural' => 'Moderation cases',
|
|
],
|
|
'sections' => [
|
|
'case' => 'Case',
|
|
'target' => 'Reported content',
|
|
'resolution' => 'Resolution',
|
|
'metadata' => 'Metadata',
|
|
],
|
|
'fields' => [
|
|
'id' => 'ID',
|
|
'target_type' => 'Type',
|
|
'target_title' => 'Target',
|
|
'caseable_id' => 'Target ID',
|
|
'status' => 'Status',
|
|
'reports_count' => 'Reports',
|
|
'threshold' => 'Threshold',
|
|
'threshold_notified_at' => 'Notification sent at',
|
|
'assigned_to' => 'Assigned to',
|
|
'resolved_by' => 'Resolved by',
|
|
'resolved_at' => 'Resolved at',
|
|
'resolution_note' => 'Resolution note',
|
|
'created_at' => 'Created at',
|
|
'updated_at' => 'Updated at',
|
|
],
|
|
'targets' => [
|
|
'meal_post' => 'Meal',
|
|
'user' => 'User',
|
|
'unknown' => 'Unknown',
|
|
],
|
|
'actions' => [
|
|
'mark_reviewing' => 'Start review',
|
|
'hide_meal' => 'Hide meal',
|
|
'suspend_user' => 'Suspend',
|
|
'resolve' => 'Resolve',
|
|
'reject' => 'Reject',
|
|
],
|
|
'filters' => [
|
|
'target_type' => 'Type',
|
|
],
|
|
'placeholders' => [
|
|
'empty' => '-',
|
|
],
|
|
],
|
|
];
|