api/lang/en/enums.php

82 lines
2.3 KiB
PHP

<?php
return [
'pace_preference' => [
'slow' => 'Slow',
'normal' => 'Normal',
'fast' => 'Fast',
],
'physical_activity_level' => [
'sedentary' => 'Sedentary',
'lightly_active' => 'Lightly active',
'moderately_active' => 'Moderately active',
'very_active' => 'Very active',
'athlete' => 'Athlete',
],
'user_sex' => [
'man' => 'Man',
'woman' => 'Woman',
'other' => 'Other',
'unknown' => 'Not specified',
],
'user_role' => [
'user' => 'User',
'admin' => 'Administrator',
'moderator' => 'Moderator',
],
'report_reason' => [
'spam' => 'Spam',
'harassment' => 'Harassment',
'hate_speech' => 'Hate speech',
'inappropriate' => 'Inappropriate content',
'dangerous_content' => 'Dangerous content',
'misleading' => 'Misleading information',
'other' => 'Other',
],
'report_status' => [
'open' => 'Open',
'reviewing' => 'Reviewing',
'resolved' => 'Resolved',
'rejected' => 'Rejected',
],
'moderation_case_status' => [
'open' => 'Open',
'reviewing' => 'Reviewing',
'resolved' => 'Resolved',
'rejected' => 'Rejected',
],
'legal_document_type' => [
'privacy_policy' => 'Privacy policy',
'terms' => 'Terms of service',
],
'credit_product_type' => [
'monthly' => 'Monthly',
'one_time' => 'Credit pack',
],
'credit_ledger_entry_type' => [
'free_grant' => 'Free credits',
'purchase' => 'Purchase',
'subscription_renewal' => 'Renewal',
'usage' => 'Usage',
'refund' => 'Refund',
'adjustment' => 'Adjustment',
],
'payment_transaction_status' => [
'pending' => 'Pending',
'paid' => 'Paid',
'credited' => 'Credited',
'failed' => 'Failed',
'ignored' => 'Ignored',
'error' => 'Error',
],
'payment_transaction_type' => [
'checkout' => 'Checkout',
'subscription_invoice' => 'Subscription invoice',
],
'weight_goal' => [
'lose_weight' => 'Lose weight',
'maintain_weight' => 'Maintain weight',
'gain_weight' => 'Gain weight',
],
];