# Linter Warnings Explanation

## Text Domain Mismatch Warning

**Warning**: `The "Text Domain" header in the plugin file does not match the slug. Found "flexible-minimum-order", expected "trunk".`

### Why This Warning Appears

This warning appears because:
1. The plugin uses SVN directory structure (`trunk/`, `tags/`, `branches/`)
2. WordPress Plugin Check expects the text domain to match the directory name
3. However, `trunk` is just the SVN directory structure name, NOT the plugin slug

### Why This Is NOT A Problem

✅ **The text domain `flexible-minimum-order` is CORRECT**
- It matches the actual plugin slug
- It matches the plugin's folder name when installed in WordPress
- It's the proper text domain for internationalization

❌ **The directory name `trunk` is NOT the plugin slug**
- `trunk` is just the SVN development directory structure
- When the plugin is installed, it will be in a folder named `flexible-minimum-order`
- The text domain should match the plugin slug, not the development directory

### Solution

**This warning can be safely ignored.** It's a false positive from the linter.

The plugin is correctly configured with:
- Text Domain: `flexible-minimum-order` ✅
- Plugin Slug: `flexible-minimum-order` ✅
- Directory Structure: `trunk/` (SVN development structure) ✅

### For WordPress.org Submission

If submitting to WordPress.org, this warning will not cause rejection. The WordPress.org plugin review team understands SVN directory structures and will verify the actual plugin slug matches the text domain.

