• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/H11-Nov-2015-2215

priv/gettext/H11-Nov-2015-4530

test/H11-Nov-2015-6646

.gitignoreH A D11-Nov-201546 76

README.mdH A D11-Nov-2015869 3622

mix.exsH A D03-May-2022864 3832

mix.lockH A D11-Nov-201540 21

README.md

1## ComeoninI18n
2
3Internationalization support for the `Comeonin` password hashing library.
4
5### Installation
6
7The package can be installed as:
8
9  1. Add comeonin_i18n and comeonin to your list of dependencies in `mix.exs`:
10
11        def deps do
12          [{:comeonin_i18n, "~> 0.1"},
13          {:comeonin, "~> 1.5"]
14        end
15
16  2. Ensure comeonin_i18n and comeonin are started before your application:
17
18        def application do
19          [applications: [:comeonin_i18n, :comeonin]]
20        end
21
22### Contributions
23
24If a language you know is not supported, please send us a pull request with
25a translation and a simple test.
26
27Example translations can be found in the `priv/gettext/en/LC_MESSAGES` directories
28(`en` refers to the locale).
29
30Also, add a simple test to the `test/comeonin_i18n_test.exs` file. You only need to
31test one of the phrases.
32
33### License
34
35BSD.
36