Packages

CRM module for PhoenixKit — organization accounts, role-scoped user views, and per-user column configuration.

Current section

Files

Jump to
phoenix_kit_crm priv gettext default.pot
Raw

priv/gettext/default.pot

## This file is the .pot template for the phoenix_kit_crm
## "default" Gettext domain. msgids here are tab/group labels and
## tooltips registered with `gettext_backend: PhoenixKitCRM.Gettext`,
## as well as UI strings from column_modal.ex and cell_format.ex.
##
## Two groups of msgids are maintained manually (NOT auto-extracted):
## 1. Tab labels — plain strings in `Tab.new!(label: ...)`.
## 2. Column labels — string literals stored in module attributes
## (`@role_standard`, `@organizations_standard` in column_config.ex)
## and translated at runtime via `Gettext.gettext(backend, label)`.
## `mix gettext.extract` only sees `gettext()` macro call sites,
## so these don't get picked up.
##
## When you add a new translatable label in either group, add the msgid
## here and run `mix gettext.merge priv/gettext` to propagate to every
## locale's `default.po`.
##
## The remaining msgids below are auto-extracted from gettext() macro
## calls in lib/ and will be refreshed by `mix gettext.extract`.
msgid ""
msgstr ""
## Tab labels (manually maintained — not auto-extracted by mix gettext.extract).
## NOTE: the elixir-autogen flag is intentionally stripped on "CRM" and
## "Organizations" so the entries survive even if the gettext("CRM") /
## gettext("Organizations") macro call sites in crm_live.ex /
## organizations_view.ex are ever removed. If you re-run mix gettext.extract
## it will re-add the flag and line refs — strip them again to keep the
## tab-label fallback durable.
#: lib/phoenix_kit_crm.ex
msgid "CRM"
msgstr ""
#: lib/phoenix_kit_crm.ex
msgid "Overview"
msgstr ""
#: lib/phoenix_kit_crm.ex
msgid "Organizations"
msgstr ""
## Column labels (manually maintained — module-attribute literals in
## column_config.ex, translated at runtime; not auto-extracted)
#: lib/phoenix_kit_crm/column_config.ex
msgid "Contact"
msgstr ""
#: lib/phoenix_kit_crm/column_config.ex
msgid "Email"
msgstr ""
#: lib/phoenix_kit_crm/column_config.ex
msgid "Full Name"
msgstr ""
#: lib/phoenix_kit_crm/column_config.ex
msgid "Last Confirmed"
msgstr ""
#: lib/phoenix_kit_crm/column_config.ex
msgid "Location"
msgstr ""
#: lib/phoenix_kit_crm/column_config.ex
msgid "Organization"
msgstr ""
#: lib/phoenix_kit_crm/column_config.ex
msgid "Registered"
msgstr ""
#: lib/phoenix_kit_crm/column_config.ex
msgid "Status"
msgstr ""
#: lib/phoenix_kit_crm/column_config.ex
msgid "Username"
msgstr ""
#: lib/phoenix_kit_crm/web/column_modal.ex:143
#, elixir-autogen, elixir-format
msgid "All columns selected"
msgstr ""
#: lib/phoenix_kit_crm/web/column_modal.ex:150
#, elixir-autogen, elixir-format
msgid "Apply"
msgstr ""
#: lib/phoenix_kit_crm/web/column_modal.ex:99
#, elixir-autogen, elixir-format
msgid "Available"
msgstr ""
#: lib/phoenix_kit_crm/web/column_modal.ex:155
#, elixir-autogen, elixir-format
msgid "Cancel"
msgstr ""
#: lib/phoenix_kit_crm/web/column_modal.ex:100
#, elixir-autogen, elixir-format
msgid "Click to add"
msgstr ""
#: lib/phoenix_kit_crm/web/column_modal.ex:125
#, elixir-autogen, elixir-format
msgid "Custom"
msgstr ""
#: lib/phoenix_kit_crm/web/column_modal.ex:46
#, elixir-autogen, elixir-format
msgid "Customize columns"
msgstr ""
#: lib/phoenix_kit_crm/web/column_modal.ex:152
#, elixir-autogen, elixir-format
msgid "Defaults"
msgstr ""
#: lib/phoenix_kit_crm/web/column_modal.ex:48
#, elixir-autogen, elixir-format
msgid "Drag selected columns to reorder, or click an available column to add it."
msgstr ""
#: lib/phoenix_kit_crm/web/column_modal.ex:58
#, elixir-autogen, elixir-format
msgid "Drag to reorder"
msgstr ""
#: lib/phoenix_kit_crm/web/cell_format.ex:37
#: lib/phoenix_kit_crm/web/cell_format.ex:39
#: lib/phoenix_kit_crm/web/cell_format.ex:41
#, elixir-autogen, elixir-format
msgid "No"
msgstr ""
#: lib/phoenix_kit_crm/web/column_modal.ex:93
#, elixir-autogen, elixir-format
msgid "No columns selected"
msgstr ""
#: lib/phoenix_kit_crm/web/column_modal.ex:84
#, elixir-autogen, elixir-format
msgid "Remove"
msgstr ""
#: lib/phoenix_kit_crm/web/column_modal.ex:57
#, elixir-autogen, elixir-format
msgid "Selected"
msgstr ""
#: lib/phoenix_kit_crm/web/column_modal.ex:106
#, elixir-autogen, elixir-format
msgid "Standard"
msgstr ""
#: lib/phoenix_kit_crm/web/cell_format.ex:36
#: lib/phoenix_kit_crm/web/cell_format.ex:38
#: lib/phoenix_kit_crm/web/cell_format.ex:40
#, elixir-autogen, elixir-format
msgid "Yes"
msgstr ""
#: lib/phoenix_kit_crm/web/organizations_view.ex:82
#, elixir-autogen, elixir-format
msgid "%{count} organization"
msgid_plural "%{count} organizations"
msgstr[0] ""
msgstr[1] ""
#: lib/phoenix_kit_crm/web/crm_live.ex:71
#, elixir-autogen, elixir-format
msgid "%{count} role"
msgid_plural "%{count} roles"
msgstr[0] ""
msgstr[1] ""
#: lib/phoenix_kit_crm/web/crm_live.ex:106
#: lib/phoenix_kit_crm/web/role_view.ex:86
#, elixir-autogen, elixir-format
msgid "%{count} user"
msgid_plural "%{count} users"
msgstr[0] ""
msgstr[1] ""
#: lib/phoenix_kit_crm/web/organizations_view.ex:27
#: lib/phoenix_kit_crm/web/role_view.ex:22
#, elixir-autogen, elixir-format
msgid "CRM is not enabled."
msgstr ""
#: lib/phoenix_kit_crm/web/crm_live.ex:59
#: lib/phoenix_kit_crm/web/settings_live.ex:17
#: lib/phoenix_kit_crm/web/settings_live.ex:67
#, elixir-autogen, elixir-format
msgid "CRM settings"
msgstr ""
#: lib/phoenix_kit_crm/web/settings_live.ex:36
#, elixir-autogen, elixir-format
msgid "CRM settings updated"
msgstr ""
#: lib/phoenix_kit_crm/web/role_view.ex:45
#, elixir-autogen, elixir-format
msgid "CRM — %{name}"
msgstr ""
#: lib/phoenix_kit_crm/web/organizations_view.ex:41
#, elixir-autogen, elixir-format
msgid "CRM — Organizations"
msgstr ""
#: lib/phoenix_kit_crm/web/settings_live.ex:101
#, elixir-autogen, elixir-format
msgid "Choose which roles can access the CRM module. Owner and Admin always have access."
msgstr ""
#: lib/phoenix_kit_crm/web/organizations_view.ex:97
#: lib/phoenix_kit_crm/web/role_view.ex:99
#, elixir-autogen, elixir-format
msgid "Columns"
msgstr ""
#: lib/phoenix_kit_crm/web/organizations_view.ex:12
#: lib/phoenix_kit_crm/web/role_view.ex:8
#, elixir-autogen
msgid "Columns updated"
msgstr ""
#: lib/phoenix_kit_crm/web/organizations_view.ex:12
#: lib/phoenix_kit_crm/web/role_view.ex:8
#, elixir-autogen
msgid "Failed to save columns"
msgstr ""
#: lib/phoenix_kit_crm/web/crm_live.ex:52
#, elixir-autogen, elixir-format
msgid "Disabled"
msgstr ""
#: lib/phoenix_kit_crm/web/settings_live.ex:78
#, elixir-autogen, elixir-format
msgid "Enable CRM"
msgstr ""
#: lib/phoenix_kit_crm/web/crm_live.ex:52
#, elixir-autogen, elixir-format
msgid "Enabled"
msgstr ""
#: lib/phoenix_kit_crm/web/crm_live.ex:68
#, elixir-autogen, elixir-format
msgid "Enabled roles"
msgstr ""
#: lib/phoenix_kit_crm/web/settings_live.ex:39
#, elixir-autogen, elixir-format
msgid "Failed to update CRM settings"
msgstr ""
#: lib/phoenix_kit_crm/web/settings_live.ex:55
#, elixir-autogen, elixir-format
msgid "Failed to update role access"
msgstr ""
#: lib/phoenix_kit_crm/web/settings_live.ex:70
#, elixir-autogen, elixir-format
msgid "Module-specific configuration will appear here as the CRM grows."
msgstr ""
#: lib/phoenix_kit_crm/web/settings_live.ex:108
#, elixir-autogen, elixir-format
msgid "No eligible roles found."
msgstr ""
#: lib/phoenix_kit_crm/web/organizations_view.ex:124
#, elixir-autogen, elixir-format
msgid "No organization accounts yet."
msgstr ""
#: lib/phoenix_kit_crm/web/crm_live.ex:81
#, elixir-autogen, elixir-format
msgid "No roles connected to CRM yet. Enable a role in CRM settings."
msgstr ""
#: lib/phoenix_kit_crm/web/role_view.ex:126
#, elixir-autogen, elixir-format
msgid "No users with this role."
msgstr ""
#: lib/phoenix_kit_crm/web/organizations_view.ex:33
#, elixir-autogen, elixir-format
msgid "Organization accounts are not enabled."
msgstr ""
#: lib/phoenix_kit_crm/web/settings_live.ex:98
#, elixir-autogen, elixir-format
msgid "Role Access"
msgstr ""
#: lib/phoenix_kit_crm/web/settings_live.ex:52
#, elixir-autogen, elixir-format
msgid "Role access updated"
msgstr ""
#: lib/phoenix_kit_crm/web/role_view.ex:36
#, elixir-autogen, elixir-format
msgid "Role not found."
msgstr ""
#: lib/phoenix_kit_crm/web/crm_live.ex:40
#, elixir-autogen, elixir-format
msgid "This is a placeholder. CRM functionality will live here."
msgstr ""
#: lib/phoenix_kit_crm/web/role_view.ex:28
#, elixir-autogen, elixir-format
msgid "This role does not have CRM access."
msgstr ""
#: lib/phoenix_kit_crm/web/settings_live.ex:81
#, elixir-autogen, elixir-format
msgid "Toggles this module on or off. Same setting as the admin Modules page."
msgstr ""