tazinst view README @ rev 68

Tiny edits
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 30 01:45:52 2016 +0300 (2016-03-30)
parents 14c1b0fdb94a
children
line source
1 SliTaz Installer
2 ================================================================================
4 TazInst is the SliTaz installer written entirely in SHell script and usable from
5 the cmdline without dialog or any other GUI-like interface! This installer
6 is able to perform an installation automatically based on a simple config file
7 with clear variables such as: INST_TYPE="iso", TGT_PARTITION="/dev/hda1".
9 With this way, it allows developers to create a different kind of frontend:
10 Dialog, CGI/web. Two frontends are included: slitaz-installer, a ncurses
11 frontend, and a CGI/web frontend.
14 i18n
15 ----
16 TazInst has been coded from the beginning with gettext support. Please
17 forget 'echo' and use gettext, but remember that gettext "" is equivalent
18 to echo -n. All translations go in the po/ folder.
20 To start a new translation please use msginit from the pot file directory.
21 Example for French/France locale (fr_FR):
23 $ msginit -l fr_FR -o fr.po -i tazinst.pot
25 To update all translations from a newly updated pot file:
27 $ make msgmerge
28 Or:
29 $ msgmerge -U fr.po tazinst.pot
31 ================================================================================