# `GettextTranslator.Supervisor`
[🔗](https://github.com/marmend-company/gettext_translator/blob/main/lib/gettext_translator/supervisor.ex#L1)

Supervisor for GettextTranslator processes.

This module provides a supervisor that can be included in your application's
supervision tree to manage the GettextTranslator dashboard components.

## Usage

Add to your application supervision tree:

```elixir
# In your application.ex
def start(_type, _args) do
  children = [
    # ... other children
    GettextTranslator.Supervisor
  ]

  opts = [strategy: :one_for_one, name: MyApp.Supervisor]
  Supervisor.start_link(children, opts)
end
```

# `child_spec`

Returns a specification to start this module under a supervisor.

See `Supervisor`.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
