# inline-feedback-widget
To point the plugin at a non production Inline Feedback backend, define `INLF_API_BASE` in `wp-config.php`:

`define( 'INLF_API_BASE', 'https://inline-feedback-app.test' );`

If `INLF_API_BASE` is not defined, the plugin checks the `INLF_API_BASE` environment variable. If neither is set, it defaults to `https://app.inline-feedback.com`.

## Translations

The plugin's translation template lives at `languages/inline-feedback.pot`.

Update it from the plugin root whenever you add, remove, or change user-facing translatable strings in PHP:

```bash
wp i18n make-pot . languages/inline-feedback.pot --domain=inline-feedback
```

Run this before committing translation-related changes and before cutting a release so translators have the latest source strings.

This command scans the plugin for WordPress translation functions such as `__()`, `esc_html__()`, and `esc_html_e()` and refreshes the `.pot` file.
