https://github.com/jshmrtn/gettext_printf
Gettext Printf Interpolator
https://github.com/jshmrtn/gettext_printf
elixir gettext interpolation printf
Last synced: 11 months ago
JSON representation
Gettext Printf Interpolator
- Host: GitHub
- URL: https://github.com/jshmrtn/gettext_printf
- Owner: jshmrtn
- License: mit
- Created: 2021-11-01T16:55:30.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-15T02:00:27.000Z (over 3 years ago)
- Last Synced: 2023-08-17T15:41:24.246Z (almost 3 years ago)
- Topics: elixir, gettext, interpolation, printf
- Language: Elixir
- Homepage: https://hex.pm/packages/gettext_printf
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Gettext printf interpolator
[](https://raw.githubusercontent.com/jshmrtn/gettext_printf/main/LICENSE)
[](https://github.com/jshmrtn/gettext_printf/actions/workflows/ci.yml)
[](https://coveralls.io/github/jshmrtn/gettext_printf?branch=main)
[](https://github.com/jshmrtn/gettext_printf/commits/main)
[](https://hex.pm/packages/gettext_printf)
Providing a [gettext](https://hex.pm/packages/gettext) printf interpolator.
This provides a message format close to the [C Format String](https://www.gnu.org/software/gettext/manual/gettext.html#c_002dformat) specification for gettext.
## Installation
The package can be installed by adding `gettext_printf` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:gettext_printf, "~> 0.1.0"}
]
end
```
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). The docs can
be found at [https://hexdocs.pm/gettext_printf](https://hexdocs.pm/gettext_printf).