Features: - User registration and authentication with email/password - Admin login with username-based authentication (separate from regular users) - Review system for contractors to rate clients - Star rating system with review forms - Client identification with private data protection - Contractor registration with document verification - Admin dashboard for review management - Contact form (demo, non-functional) - Responsive navigation with DaisyUI components - Docker Compose setup for production deployment - PostgreSQL database with Ecto migrations - High Vis color scheme (dark background with safety orange/green) Admin credentials: username: admin, password: admin123 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
870 B
Elixir
25 lines
870 B
Elixir
defmodule MyFirstElixirVibeCodeWeb.Gettext do
|
|
@moduledoc """
|
|
A module providing Internationalization with a gettext-based API.
|
|
|
|
By using [Gettext](https://hexdocs.pm/gettext), your module compiles translations
|
|
that you can use in your application. To use this Gettext backend module,
|
|
call `use Gettext` and pass it as an option:
|
|
|
|
use Gettext, backend: MyFirstElixirVibeCodeWeb.Gettext
|
|
|
|
# Simple translation
|
|
gettext("Here is the string to translate")
|
|
|
|
# Plural translation
|
|
ngettext("Here is the string to translate",
|
|
"Here are the strings to translate",
|
|
3)
|
|
|
|
# Domain-based translation
|
|
dgettext("errors", "Here is the error message to translate")
|
|
|
|
See the [Gettext Docs](https://hexdocs.pm/gettext) for detailed usage.
|
|
"""
|
|
use Gettext.Backend, otp_app: :my_first_elixir_vibe_code
|
|
end
|