# HG changeset patch # User Christophe Lincoln # Date 1302062870 -7200 # Node ID b9065b337a977829d06047b3578159c38df147ef # Parent 086e699c76660a7d74e8e3a7fc52ba291aed2870 Use 1 POT file for all TazPanel and create network.cgi diff -r 086e699c7666 -r b9065b337a97 Makefile --- a/Makefile Wed Apr 06 05:57:51 2011 +0200 +++ b/Makefile Wed Apr 06 06:07:50 2011 +0200 @@ -11,31 +11,22 @@ # i18n pot: - xgettext -o po/tazpanel-pkgs/tazpanel-pkgs.pot -L Shell \ - --package-name="Tazpanel pkgs CGI" \ - --package-version="$(VERSION)" ./pkgs.cgi - xgettext -o po/tazpanel/tazpanel.pot -L Shell \ - --package-name="TazPanel cmdline" \ - --package-version="$(VERSION)" ./tazpanel - xgettext -o po/tazpanel-cgi/tazpanel-cgi.pot -L Shell \ - --package-name="TazPanel CGI" \ - --package-version="$(VERSION)" ./index.cgi - xgettext -o po/tazpanel-live/tazpanel-live.pot -L Shell \ - --package-name="Tazpanel live CGI" \ - --package-version="$(VERSION)" ./live.cgi + xgettext -o po/tazpanel.pot -L Shell \ + --package-name="TazPanel" \ + --package-version="$(VERSION)" \ + ./tazpanel ./index.cgi ./pkgs.cgi ./live.cgi ./network.cgi msgmerge: @for l in $(LINGUAS); do \ echo -n "Updating $$l po file."; \ - msgmerge -U po/tazpanel-pkgs/$$l.po po/tazpanel-pkgs/tazpanel-pkgs.pot; \ + msgmerge -U po/$$l.po po/tazpanel-pkgs.pot; \ done; msgfmt: @for l in $(LINGUAS); do \ echo "Compiling $$l mo file..."; \ mkdir -p po/mo/$$l/LC_MESSAGES; \ - msgfmt -o po/mo/$$l/LC_MESSAGES/tazpanel-pkgs.mo \ - po/tazpanel-pkgs/$$l.po; \ + msgfmt -o po/mo/$$l/LC_MESSAGES/tazpanel.mo po/$$l.po; \ done; # Installation diff -r 086e699c7666 -r b9065b337a97 data/httpd.conf --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/data/httpd.conf Wed Apr 06 06:07:50 2011 +0200 @@ -0,0 +1,5 @@ +H:/var/www/tazpanel +A:0.0.0.0/0 +*.cgi:/bin/sh +I:index.cgi +/:root:root diff -r 086e699c7666 -r b9065b337a97 httpd.conf --- a/httpd.conf Wed Apr 06 05:57:51 2011 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -H:/var/www/tazpanel -A:0.0.0.0/0 -*.cgi:/bin/sh -I:index.cgi -/:root:root diff -r 086e699c7666 -r b9065b337a97 network.cgi --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/network.cgi Wed Apr 06 06:07:50 2011 +0200 @@ -0,0 +1,47 @@ +#!/bin/sh +# +# Network configuration CGI interface +# +echo "Content-Type: text/html" +echo "" + +# Common functions from libtazpanel +. lib/libtazpanel +get_config + +# Include gettext helper script. +. /usr/bin/gettext.sh + +# Export package name for gettext. +TEXTDOMAIN='tazpanel-cgi' +export TEXTDOMAIN + +# +# Commands +# + +case "$QUERY_STRING" in + *) + # + # Network configuration + # + TITLE="- Network" + xhtml_header + cat << EOT +
+

`gettext "Networking`

+

`gettext "Manage network connection and services`

+
+ +`list_network_interfaces` + +

Output of: ifconfig -a

+
+`ifconfig -a`
+
+EOT + ;; +esac + +xhtml_footer +exit 0 diff -r 086e699c7666 -r b9065b337a97 po/tazpanel-cgi/tazpanel-cgi.pot --- a/po/tazpanel-cgi/tazpanel-cgi.pot Wed Apr 06 05:57:51 2011 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,118 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: TazPanel CGI 1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-05 04:23+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: index.cgi:34 -msgid "Boot & startup" -msgstr "" - -#: index.cgi:36 -msgid "Everything that appends before user login." -msgstr "" - -#: index.cgi:40 -msgid "Kernel cmdline" -msgstr "" - -#: index.cgi:81 -msgid "Manage users" -msgstr "" - -#: index.cgi:82 -msgid "Manage human users on your SliTaz system" -msgstr "" - -#: index.cgi:89 -msgid "Login" -msgstr "" - -#: index.cgi:90 -msgid "User ID" -msgstr "" - -#: index.cgi:91 -msgid "Name" -msgstr "" - -#: index.cgi:92 -msgid "Home" -msgstr "" - -#: index.cgi:93 -msgid "SHell" -msgstr "" - -#: index.cgi:120 -msgid "Delete selected user" -msgstr "" - -#: index.cgi:124 -msgid "Add a new user" -msgstr "" - -#: index.cgi:127 -msgid "User login:" -msgstr "" - -#: index.cgi:129 -msgid "User password:" -msgstr "" - -#: index.cgi:131 -msgid "Create user" -msgstr "" - -#: index.cgi:143 -msgid "Networking" -msgstr "" - -#: index.cgi:144 -msgid "Manage network connection and services" -msgstr "" - -#: index.cgi:161 -msgid "Drivers & Devices" -msgstr "" - -#: index.cgi:162 -msgid "Manage your computer hardware" -msgstr "" - -#: index.cgi:182 -msgid "Host:" -msgstr "" - -#: index.cgi:183 -msgid "SliTaz administration et configuration Panel" -msgstr "" - -#: index.cgi:186 -msgid "Summary" -msgstr "" - -#: index.cgi:190 -msgid "Uptime:" -msgstr "" - -#: index.cgi:193 -msgid "Memory in Mb" -msgstr "" - -#: index.cgi:198 -msgid "Filesystem usage statistics:" -msgstr "" diff -r 086e699c7666 -r b9065b337a97 po/tazpanel-live/tazpanel-live.pot --- a/po/tazpanel-live/tazpanel-live.pot Wed Apr 06 05:57:51 2011 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,66 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Tazpanel live CGI 1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-05 04:23+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: live.cgi:49 -msgid "TODO" -msgstr "" - -#: live.cgi:57 -msgid "SliTaz Live Systems" -msgstr "" - -#: live.cgi:58 -msgid "Create and manage Live CD or USB SliTaz systems" -msgstr "" - -#: live.cgi:61 -msgid "Write a Live CD" -msgstr "" - -#: live.cgi:63 -msgid "" -"The command writeiso will generate an ISO image of the\n" -"\tcurrent filesystem as is, including all files in the /home directory.\n" -"\tIt is an easy way to remaster a SliTaz Live system, you just have\n" -"\tto: boot, modify, writeiso." -msgstr "" - -#: live.cgi:69 -msgid "Compression type:" -msgstr "" - -#: live.cgi:75 -msgid "write ISO" -msgstr "" - -#: live.cgi:78 -msgid "Live USB" -msgstr "" - -#: live.cgi:81 -msgid "USB Media to use:" -msgstr "" - -#: live.cgi:90 -msgid "Not found" -msgstr "" - -#: live.cgi:94 -msgid "generate" -msgstr "" diff -r 086e699c7666 -r b9065b337a97 po/tazpanel-pkgs/pt.po --- a/po/tazpanel-pkgs/pt.po Wed Apr 06 05:57:51 2011 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,166 +0,0 @@ -# Brazilian Portuguese translation for Tazpkg GCI. -# Copyright (C) 2011 www.slitaz.org -# This file is distributed under the same license as the Tazpkg GCI package. -# Claudinei Pereira , 2011. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Tazpanel pkgs CGI 1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-05 01:58+0200\n" -"PO-Revision-Date: 2011-04-04 14:00+0000\n" -"Last-Translator: Claudinei Pereira \n" -"Language-Team: Brazilian Portuguese \n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n >1);\n" - -#: pkgs.cgi:62 -msgid "Installed packages : " -msgstr "Pacotes Instalados : " - -#: pkgs.cgi:64 -msgid "Mirrored packages : " -msgstr "Pacotes no Mirror : " - -#: pkgs.cgi:66 -msgid "Last recharge : " -msgstr "Última Recarga : " - -#: pkgs.cgi:68 -msgid "Upgradeable packages : " -msgstr "Pacotes Atualizáveis : " - -#: pkgs.cgi:70 -msgid "Installed files : " -msgstr "Arquivos Instalados : " - -#: pkgs.cgi:72 -msgid "Blocked packages : " -msgstr "Pacotes Bloqueados : " - -#: pkgs.cgi:98 -msgid "Search" -msgstr "Buscar" - -#: pkgs.cgi:108 -msgid "Name" -msgstr "Nome" - -#: pkgs.cgi:109 -msgid "Version" -msgstr "Versão" - -#: pkgs.cgi:110 -msgid "Description" -msgstr "Descrição" - -#: pkgs.cgi:111 -msgid "Web" -msgstr "Web" - -#: pkgs.cgi:119 pkgs.cgi:173 -msgid "My packages" -msgstr "Meus Pacotes" - -#: pkgs.cgi:120 pkgs.cgi:204 -msgid "All packages" -msgstr "Todos Pacotes" - -#: pkgs.cgi:121 -#, fuzzy -msgid "Recharge list" -msgstr "Recarregar" - -#: pkgs.cgi:122 -#, fuzzy -msgid "Upgrade" -msgstr "Atualizar" - -#: pkgs.cgi:123 pkgs.cgi:345 -msgid "Configuration" -msgstr "Configuração" - -#: pkgs.cgi:132 pkgs.cgi:142 pkgs.cgi:153 -msgid "Selection:" -msgstr "Seleção:" - -#: pkgs.cgi:156 -msgid "Toogle all" -msgstr "Alternar Todos" - -#: pkgs.cgi:223 -#, fuzzy -msgid "Search packages" -msgstr "Meus Pacotes" - -#: pkgs.cgi:239 -msgid "Recharge" -msgstr "Recarregar" - -#: pkgs.cgi:243 -#, fuzzy -msgid "" -"Recharge will check for new or updated packages...\n" -"\t\tplease wait" -msgstr "O comando `recharge lists` checará por pacotes novos ou atualizados" - -#: pkgs.cgi:252 -msgid "Packages lists are up-to-date" -msgstr "A lista de pacotes está atualizada" - -#: pkgs.cgi:259 -msgid "Upgradeable packages" -msgstr "Pacotes atualizáveis" - -#: pkgs.cgi:288 -msgid "Performing task on packages" -msgstr "Executando tarefa nos pacotes" - -#: pkgs.cgi:305 -msgid "Package info" -msgstr "Informação de pacote" - -#: pkgs.cgi:307 -msgid "Detailled information on:" -msgstr "Informação detalhada sobre:" - -#: pkgs.cgi:321 -msgid "Installed files" -msgstr "Arquivos instalados" - -#: pkgs.cgi:347 -msgid "Tazpkg configuration and settings" -msgstr "Configurações do Tazpkg" - -#: pkgs.cgi:352 -msgid "Packages in the cache:" -msgstr "Pacotes no cache:" - -#: pkgs.cgi:359 -msgid "Current mirror list" -msgstr "Lista de mirrors atual" - -#: pkgs.cgi:381 -msgid "Summary" -msgstr "Resumo" - -#: pkgs.cgi:383 -msgid "Overview of all installed and mirrored packages" -msgstr "Descrição de todos os pacotes instalados e no mirror" - -#: pkgs.cgi:388 -msgid "Latest log entries" -msgstr "Últimas entradas de log" - -#~ msgid "List:" -#~ msgstr "Lista:" - -#~ msgid "Recharging the packages list... please wait" -#~ msgstr "Recarregando a lista de pacotes... Aguarde" - -#~ msgid "Package in cache" -#~ msgstr "Pacote no cache" diff -r 086e699c7666 -r b9065b337a97 po/tazpanel-pkgs/tazpanel-pkgs.pot --- a/po/tazpanel-pkgs/tazpanel-pkgs.pot Wed Apr 06 05:57:51 2011 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,152 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Tazpanel pkgs CGI 1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-05 04:23+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: pkgs.cgi:62 -msgid "Installed packages : " -msgstr "" - -#: pkgs.cgi:64 -msgid "Mirrored packages : " -msgstr "" - -#: pkgs.cgi:66 -msgid "Last recharge : " -msgstr "" - -#: pkgs.cgi:68 -msgid "Upgradeable packages : " -msgstr "" - -#: pkgs.cgi:70 -msgid "Installed files : " -msgstr "" - -#: pkgs.cgi:72 -msgid "Blocked packages : " -msgstr "" - -#: pkgs.cgi:98 -msgid "Search" -msgstr "" - -#: pkgs.cgi:108 -msgid "Name" -msgstr "" - -#: pkgs.cgi:109 -msgid "Version" -msgstr "" - -#: pkgs.cgi:110 -msgid "Description" -msgstr "" - -#: pkgs.cgi:111 -msgid "Web" -msgstr "" - -#: pkgs.cgi:119 pkgs.cgi:173 -msgid "My packages" -msgstr "" - -#: pkgs.cgi:120 pkgs.cgi:204 -msgid "All packages" -msgstr "" - -#: pkgs.cgi:121 -msgid "Recharge list" -msgstr "" - -#: pkgs.cgi:122 -msgid "Upgrade" -msgstr "" - -#: pkgs.cgi:123 pkgs.cgi:345 -msgid "Configuration" -msgstr "" - -#: pkgs.cgi:132 pkgs.cgi:142 pkgs.cgi:153 -msgid "Selection:" -msgstr "" - -#: pkgs.cgi:156 -msgid "Toogle all" -msgstr "" - -#: pkgs.cgi:223 -msgid "Search packages" -msgstr "" - -#: pkgs.cgi:239 -msgid "Recharge" -msgstr "" - -#: pkgs.cgi:243 -msgid "" -"Recharge will check for new or updated packages...\n" -"\t\tplease wait" -msgstr "" - -#: pkgs.cgi:252 -msgid "Packages lists are up-to-date" -msgstr "" - -#: pkgs.cgi:259 -msgid "Upgradeable packages" -msgstr "" - -#: pkgs.cgi:288 -msgid "Performing task on packages" -msgstr "" - -#: pkgs.cgi:305 -msgid "Package info" -msgstr "" - -#: pkgs.cgi:307 -msgid "Detailled information on:" -msgstr "" - -#: pkgs.cgi:321 -msgid "Installed files" -msgstr "" - -#: pkgs.cgi:347 -msgid "Tazpkg configuration and settings" -msgstr "" - -#: pkgs.cgi:352 -msgid "Packages in the cache:" -msgstr "" - -#: pkgs.cgi:359 -msgid "Current mirror list" -msgstr "" - -#: pkgs.cgi:381 -msgid "Summary" -msgstr "" - -#: pkgs.cgi:383 -msgid "Overview of all installed and mirrored packages" -msgstr "" - -#: pkgs.cgi:388 -msgid "Latest log entries" -msgstr "" diff -r 086e699c7666 -r b9065b337a97 po/tazpanel.pot --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/po/tazpanel.pot Wed Apr 06 06:07:50 2011 +0200 @@ -0,0 +1,339 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: TazPanel 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-06 06:06+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: tazpanel:33 +msgid "TazPanel Authentication" +msgstr "" + +#: tazpanel:36 +msgid "Stopping TazPanel web server..." +msgstr "" + +#: tazpanel:40 +msgid "Changing password for TazPanel" +msgstr "" + +#: tazpanel:41 +msgid "New password: " +msgstr "" + +#: tazpanel:43 +msgid "Password changed succeffuly" +msgstr "" + +#: tazpanel:47 +msgid "Usage:" +msgstr "" + +#: index.cgi:38 +msgid "Interface" +msgstr "" + +#: index.cgi:39 index.cgi:133 pkgs.cgi:117 +msgid "Name" +msgstr "" + +#: index.cgi:40 +msgid "Status" +msgstr "" + +#: index.cgi:41 +msgid "IP Address" +msgstr "" + +#: index.cgi:76 +msgid "Boot & startup" +msgstr "" + +#: index.cgi:78 +msgid "Everything that appends before user login." +msgstr "" + +#: index.cgi:82 +msgid "Kernel cmdline" +msgstr "" + +#: index.cgi:123 +msgid "Manage users" +msgstr "" + +#: index.cgi:124 +msgid "Manage human users on your SliTaz system" +msgstr "" + +#: index.cgi:131 +msgid "Login" +msgstr "" + +#: index.cgi:132 +msgid "User ID" +msgstr "" + +#: index.cgi:134 +msgid "Home" +msgstr "" + +#: index.cgi:135 +msgid "SHell" +msgstr "" + +#: index.cgi:162 +msgid "Delete selected user" +msgstr "" + +#: index.cgi:166 +msgid "Add a new user" +msgstr "" + +#: index.cgi:169 +msgid "User login:" +msgstr "" + +#: index.cgi:171 +msgid "User password:" +msgstr "" + +#: index.cgi:173 +msgid "Create user" +msgstr "" + +#: index.cgi:185 network.cgi:32 +msgid "Networking" +msgstr "" + +#: index.cgi:186 network.cgi:33 +msgid "Manage network connection and services" +msgstr "" + +#: index.cgi:205 +msgid "Drivers & Devices" +msgstr "" + +#: index.cgi:206 +msgid "Manage your computer hardware" +msgstr "" + +#: index.cgi:226 +msgid "Host:" +msgstr "" + +#: index.cgi:227 +msgid "SliTaz administration et configuration Panel" +msgstr "" + +#: index.cgi:230 pkgs.cgi:390 +msgid "Summary" +msgstr "" + +#: index.cgi:233 +msgid "Uptime:" +msgstr "" + +#: index.cgi:236 +msgid "Memory in Mb" +msgstr "" + +#: index.cgi:243 +msgid "Network status" +msgstr "" + +#: index.cgi:246 +msgid "Filesystem usage statistics" +msgstr "" + +#: pkgs.cgi:63 +msgid "Last recharge : " +msgstr "" + +#: pkgs.cgi:73 +msgid "Installed packages : " +msgstr "" + +#: pkgs.cgi:75 +msgid "Mirrored packages : " +msgstr "" + +#: pkgs.cgi:77 +msgid "Upgradeable packages : " +msgstr "" + +#: pkgs.cgi:79 +msgid "Installed files : " +msgstr "" + +#: pkgs.cgi:81 +msgid "Blocked packages : " +msgstr "" + +#: pkgs.cgi:107 +msgid "Search" +msgstr "" + +#: pkgs.cgi:118 +msgid "Version" +msgstr "" + +#: pkgs.cgi:119 +msgid "Description" +msgstr "" + +#: pkgs.cgi:120 +msgid "Web" +msgstr "" + +#: pkgs.cgi:128 pkgs.cgi:182 +msgid "My packages" +msgstr "" + +#: pkgs.cgi:129 pkgs.cgi:213 +msgid "All packages" +msgstr "" + +#: pkgs.cgi:130 +msgid "Recharge list" +msgstr "" + +#: pkgs.cgi:131 +msgid "Upgrade" +msgstr "" + +#: pkgs.cgi:132 pkgs.cgi:354 +msgid "Configuration" +msgstr "" + +#: pkgs.cgi:141 pkgs.cgi:151 pkgs.cgi:162 +msgid "Selection:" +msgstr "" + +#: pkgs.cgi:165 +msgid "Toogle all" +msgstr "" + +#: pkgs.cgi:232 +msgid "Search packages" +msgstr "" + +#: pkgs.cgi:248 +msgid "Recharge" +msgstr "" + +#: pkgs.cgi:252 +msgid "" +"Recharge will check for new or updated packages...\n" +"\t\tplease wait" +msgstr "" + +#: pkgs.cgi:261 +msgid "Packages lists are up-to-date" +msgstr "" + +#: pkgs.cgi:268 +msgid "Upgradeable packages" +msgstr "" + +#: pkgs.cgi:297 +msgid "Performing task on packages" +msgstr "" + +#: pkgs.cgi:314 +msgid "Package info" +msgstr "" + +#: pkgs.cgi:316 +msgid "Detailled information on:" +msgstr "" + +#: pkgs.cgi:330 +msgid "Installed files" +msgstr "" + +#: pkgs.cgi:356 +msgid "Tazpkg configuration and settings" +msgstr "" + +#: pkgs.cgi:361 +msgid "Packages in the cache:" +msgstr "" + +#: pkgs.cgi:368 +msgid "Current mirror list" +msgstr "" + +#: pkgs.cgi:392 +msgid "Overview of all installed and mirrored packages" +msgstr "" + +#: pkgs.cgi:397 +msgid "Latest log entries" +msgstr "" + +#: live.cgi:50 +msgid "TODO" +msgstr "" + +#: live.cgi:58 +msgid "SliTaz Live Systems" +msgstr "" + +#: live.cgi:59 +msgid "Create and manage Live CD or USB SliTaz systems" +msgstr "" + +#: live.cgi:62 +msgid "Write a Live CD" +msgstr "" + +#: live.cgi:64 +msgid "" +"The command writeiso will generate an ISO image of the\n" +"\tcurrent filesystem as is, including all files in the /home directory.\n" +"\tIt is an easy way to remaster a SliTaz Live system, you just have\n" +"\tto: boot, modify, writeiso." +msgstr "" + +#: live.cgi:70 +msgid "Compression type:" +msgstr "" + +#: live.cgi:76 +msgid "write ISO" +msgstr "" + +#: live.cgi:79 +msgid "Live USB" +msgstr "" + +#: live.cgi:81 +msgid "" +"Generate SliTaz LiveUSB media and boot in RAM! Insert a\n" +"\tLiveCD into the cdrom drive, select the correct device and press\n" +"\tGenerate." +msgstr "" + +#: live.cgi:86 +msgid "USB Media to use:" +msgstr "" + +#: live.cgi:95 +msgid "Not found" +msgstr "" + +#: live.cgi:99 +msgid "generate" +msgstr "" diff -r 086e699c7666 -r b9065b337a97 po/tazpanel/tazpanel.pot --- a/po/tazpanel/tazpanel.pot Wed Apr 06 05:57:51 2011 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,42 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: TazPanel cmdline 1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-05 04:23+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: tazpanel:33 -msgid "TazPanel Authentication" -msgstr "" - -#: tazpanel:36 -msgid "Stopping TazPanel web server..." -msgstr "" - -#: tazpanel:40 -msgid "Changing password for TazPanel" -msgstr "" - -#: tazpanel:41 -msgid "New password: " -msgstr "" - -#: tazpanel:43 -msgid "Password changed succeffuly" -msgstr "" - -#: tazpanel:47 -msgid "Usage:" -msgstr ""