-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
31 lines (22 loc) · 1.13 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
SliTaz Installer
================================================================================
TazInst is the SliTaz installer written entirely in SHell script and usable from
the cmdline without dialog or any other GUI-like interface! This installer
is able to perform an installation automatically based on a simple config file
with clear variables such as: INST_TYPE="iso", TGT_PARTITION="/dev/hda1".
With this way, it allows developers to create a different kind of frontend:
Dialog, CGI/web. Two frontends are included: slitaz-installer, a ncurses
frontend, and a CGI/web frontend.
i18n
----
TazInst has been coded from the beginning with gettext support. Please
forget 'echo' and use gettext, but remember that gettext "" is equivalent
to echo -n. All translations go in the po/ folder.
To start a new translation please use msginit from the pot file directory.
Example for French/France locale (fr_FR):
$ msginit -l fr_FR -o fr.po -i tazinst.pot
To update all translations from a newly updated pot file:
$ make msgmerge
Or:
$ msgmerge -U fr.po tazinst.pot
================================================================================