tazinst view README @ rev 12

Tiny edits
author Dominique Corbex <domcox@slitaz.org>
date Sat Aug 17 21:44:53 2013 +0200 (2013-08-17)
parents b0ed6cbb9de0
children 5996df6fd4a7
line source
1 SliTaz Installer
2 ================================================================================
4 Tazinst is the SliTaz installer written entirely in SHell script and usable
5 from 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 ================================================================================