{
    "messages": {
        "success": {
            "title": "Upload Max Size Optimal",
            "details": "Your site's upload max size is set to {current_value}, which is optimal for handling file uploads.",
            "steps": [
                "Monitor upload success rates",
                "Keep track of upload errors",
                "Maintain current configuration"
            ]
        },
        "error": {
            "title": "Upload Max Size Needs Attention",
            "details": "Your site's upload max size is set to {current_value}. We recommend increasing it to at least {recommended_value} for better file handling.",
            "steps": [
                "Contact your hosting provider about increasing upload max size",
                "Add upload_max_filesize directive to php.ini",
                "Ensure post_max_size is larger than upload_max_filesize"
            ]
        }
    },
    "learn_more": {
        "description": "Upload max size determines the maximum size of individual files that can be uploaded to your site. This affects media uploads, plugin installations, and theme uploads.",
        "benefits": [
            "Enables large media uploads",
            "Supports plugin/theme installations",
            "Handles high-resolution images",
            "Prevents upload failures",
            "Improves content management"
        ],
        "recommendations": [
            "Set upload max size to at least 40M",
            "Keep it smaller than post_max_size",
            "Monitor upload error logs",
            "Consider media requirements",
            "Balance storage with functionality"
        ]
    }
} 