tazpanel rev 303 1.5.5

3 weeks forging ;) Some bugs fixed, maybe all i18n improved (please, recheck 'po's!), couple of new features added... Enjoy!
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 04 13:00:43 2012 +0300 (2012-05-04)
parents 5312e3716b01
children 1ef226624abe
files AUTHORS Makefile README.html boot.cgi data/tazpanel.conf doc/tazpanel.ru.html hardware.cgi help.cgi index.cgi installer.cgi lib/libtazpanel live.cgi network.cgi pkgs.cgi po/es.po po/fr.po po/pt_BR.po po/ru.po po/tazpanel.pot settings.cgi styles/default/style.css tazpanel
line diff
     1.1 --- a/AUTHORS	Fri May 04 12:57:53 2012 +0300
     1.2 +++ b/AUTHORS	Fri May 04 13:00:43 2012 +0300
     1.3 @@ -3,3 +3,4 @@
     1.4  Paul Issot <paul@slitaz.org>
     1.5  Dominique Corbex <domcox@slitaz.org>
     1.6  Christian Mesh <meshca@clarkson.edu>
     1.7 +Aleksej Bobylev <al.bobylev@gmail.com>
     2.1 --- a/Makefile	Fri May 04 12:57:53 2012 +0300
     2.2 +++ b/Makefile	Fri May 04 13:00:43 2012 +0300
     2.3 @@ -3,7 +3,7 @@
     2.4  PREFIX?=/usr
     2.5  SYSCONFDIR?=/etc/slitaz
     2.6  DESTDIR?=
     2.7 -LINGUAS?=fr pt_BR
     2.8 +LINGUAS?=es fr pt_BR ru
     2.9  PANEL?=/var/www/tazpanel
    2.10  
    2.11  VERSION:=$(shell grep ^VERSION tazpanel | cut -d '=' -f 2)
    2.12 @@ -16,10 +16,9 @@
    2.13  	xgettext -o po/tazpanel.pot -L Shell \
    2.14  		--package-name="TazPanel" \
    2.15  		--package-version="$(VERSION)" \
    2.16 -		./tazpanel ./index.cgi ./pkgs.cgi ./live.cgi \
    2.17 -		./network.cgi ./boot.cgi ./hardware.cgi \
    2.18 -		./settings.cgi ./lib/libtazpanel ./installer.cgi \
    2.19 -		./styles/default/header.sh ./styles/default/footer.sh
    2.20 +		./tazpanel ./index.cgi ./pkgs.cgi ./live.cgi ./network.cgi ./boot.cgi \
    2.21 +		./hardware.cgi ./settings.cgi ./lib/libtazpanel ./installer.cgi \
    2.22 +		./help.cgi ./styles/default/header.sh ./styles/default/footer.sh
    2.23  
    2.24  msgmerge:
    2.25  	@for l in $(LINGUAS); do \
    2.26 @@ -59,3 +58,9 @@
    2.27  	rm -f po/*.mo
    2.28  	rm -f po/*.*~
    2.29  
    2.30 +help:
    2.31 +	@echo "$$ pot          - remake pot"
    2.32 +	@echo "$$ msgmerge     - update *.po from *.pot"
    2.33 +	@echo "$$ msgfmt | all - compile *.mo"
    2.34 +	@echo "# install      - install files to system"
    2.35 +	@echo "$$ clean        - remove *.mo"
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/README.html	Fri May 04 13:00:43 2012 +0300
     3.3 @@ -0,0 +1,90 @@
     3.4 +<h2>SliTaz Web Control Panel</h2>
     3.5 +
     3.6 +<p>Tazpanel is the SliTaz Control Panel, a web interface which lets you manage the
     3.7 +full system in a radically simple way. The output xHTML code is valid xHTML 5
     3.8 +and all theming is done with standard CSS 3. TazPanel is published under a
     3.9 +BSD License.</p>
    3.10 +
    3.11 +
    3.12 +<h3>Use it!</h3>
    3.13 +
    3.14 +<p>You can clone the tazpanel repo into /var/www/tazpanel and work on this
    3.15 +copy or clone it somewhere else and 'make install'. After, add tazpanel to
    3.16 +your /etc/hosts, type './tazpanel start' to start the server and go to the
    3.17 +URL: http://tazpanel:82. Panel user and password are defined in the 
    3.18 +httpd.conf and default is root:root</p>
    3.19 +
    3.20 +
    3.21 +<h3>i18n</h3>
    3.22 +
    3.23 +<p>TazPanel has been coded from the beginning with gettext support. Please
    3.24 +forget 'echo' and use gettext, but remember that gettext "" is equivalent
    3.25 +to echo -n. All scripts use the same TEXTDOMAIN and the same pot files, and 
    3.26 +all translations go in the po/ folder. To start a new translation please
    3.27 +use msginit from the pot file directory. Example for French/France
    3.28 +locale (fr_FR):</p>
    3.29 +
    3.30 +<pre>$ msginit -l fr_FR -o fr.po -i tazpanel.pot</pre>
    3.31 +
    3.32 +<p>To update all translations from a newly updated pot file:</p>
    3.33 +
    3.34 +<pre>$ make msgmerge</pre>
    3.35 +
    3.36 +
    3.37 +<h3>User interface</h3>
    3.38 +
    3.39 +<p>If you develop an official SliTaz GUI for TazPanel, please follow the default 
    3.40 +style. If you need more CSS markup and you are not a coder, please ask an 
    3.41 +official developer for the best way to implement your idea. TazPanel is fully 
    3.42 +themable and more than one theme can be installed, this will allow us to make 
    3.43 +packages in a TazPanel style! All the GUI is done with xHTML 5 and CSS 3, some
    3.44 +javascript can be used, but with precautions... one more time, it's better
    3.45 +to check with a main contributor before adding too much stuff, the goal is,
    3.46 +as for all the SliTaz projects: KISS</p>
    3.47 +
    3.48 +
    3.49 +<h3>CGI template and files</h3>
    3.50 +
    3.51 +<p>To start or test a new function with TazPanel you will find a file in
    3.52 +utils/template.cgi that needs to be in the $PANEL root to work, all TazPanel
    3.53 +CGI scripts are in that location. If you think your code is too big to fit
    3.54 +in another script you can eventually create a new CGI page and update all
    3.55 +links, but please to talk to the AUTHORS beforehand.</p>
    3.56 +
    3.57 +<dl>
    3.58 +	<dt>index.cgi</dt>
    3.59 +		<dd>Main Tazpanel CGI script</dd>
    3.60 +	<dt>boot.cgi</dt>
    3.61 +		<dd>All what happens before login</dd>
    3.62 +	<dt>network.cgi</dt>
    3.63 +		<dd>All related stuff to networking (eth, wifi, services)</dd>
    3.64 +	<dt>pkgs.cgi</dt>
    3.65 +		<dd>Tazpkg packages CGI interface</dd>
    3.66 +	<dt>settings.cgi</dt>
    3.67 +		<dd>System settings and services such as time, users accounts,
    3.68 +		locales or daemons management</dd>
    3.69 +	<dt>live.cgi</dt>
    3.70 +		<dd>All tools related to Live systems (CD, USB, Frugal)</dd>
    3.71 +	<dt>hardware.cgi</dt>
    3.72 +		<dd>Devices drivers, firmware, printing</dd>
    3.73 +	<dt>help.cgi</dt>
    3.74 +		<dd>Cat the html doc and this README file</dd>
    3.75 +</ul>
    3.76 +
    3.77 +<p>For common functions have a look to lib/libtazpanel, you may found functions
    3.78 +you need already coded such as a xhtml_header to get the style header.html
    3.79 +in your CGI script. For the loading message you can use loading_msg. When
    3.80 +cat is used: `gettext "Text to translate"`</p>
    3.81 +
    3.82 +
    3.83 +<h3>Web server</h3>
    3.84 +
    3.85 +<p>Tazpanel can run with the Busybox httpd applet or LightTPD and probably Apache.
    3.86 +Start the webserver with a custom config to listen only on a local port for
    3.87 +security reasons since we run as root to perform system actions, example:</p>
    3.88 +
    3.89 +<pre># httpd -p 82 u root -c /etc/slitaz/httpd.conf</pre>
    3.90 +
    3.91 +<p>Or use a tazpanel cmdline:</p>
    3.92 +
    3.93 +<pre># ./tazpanel start</pre>
     4.1 --- a/boot.cgi	Fri May 04 12:57:53 2012 +0300
     4.2 +++ b/boot.cgi	Fri May 04 13:00:43 2012 +0300
     4.3 @@ -22,29 +22,29 @@
     4.4  		xhtml_header
     4.5  		cat << EOT
     4.6  <div id="wrapper">
     4.7 -	<h2>`gettext "Boot log files"`</h2>
     4.8 +	<h2>$(gettext 'Boot log files')</h2>
     4.9  </div>
    4.10  <div>
    4.11  	<a class="button" href="#kernel">
    4.12 -		<img src="$IMAGES/tux.png" />$(gettext "Kernel messages")</a>
    4.13 -	<a class="button" href="#boot">$(gettext "Boot scripts")</a>
    4.14 -	<a class="button" href="#slim">$(gettext "X server")</a>
    4.15 +		<img src="$IMAGES/tux.png" />$(gettext 'Kernel messages')</a>
    4.16 +	<a class="button" href="#boot">$(gettext 'Boot scripts')</a>
    4.17 +	<a class="button" href="#slim">$(gettext 'X server')</a>
    4.18  </div>
    4.19 -	<a name="kernel"></a>
    4.20 -	<h3>$(gettext "Kernel messages")</h3>
    4.21 +
    4.22 +	<h3 id="kernel">$(gettext 'Kernel messages')</h3>
    4.23 +
    4.24 +	<pre>$(cat /var/log/dmesg.log | syntax_highlighter kernel)</pre>
    4.25 +
    4.26 +	<h3 id="boot">$(gettext 'Boot scripts')</h3>
    4.27 +
    4.28 +	<pre>$(cat /var/log/boot.log | filter_taztools_msgs)</pre>
    4.29 +
    4.30 +	<h3 id="slim">$(gettext 'X server')</h3>
    4.31 +
    4.32  	<pre>
    4.33 -$(cat /var/log/dmesg.log)
    4.34 -	</pre>
    4.35 -	<a name="boot"></a>
    4.36 -	<h3>$(gettext "Boot scripts")</h3>
    4.37 -	<pre>
    4.38 -$(cat /var/log/boot.log | filter_taztools_msgs)
    4.39 -	</pre>
    4.40 -	<a name="slim"></a>
    4.41 -	<h3>$(gettext "X server")</h3>
    4.42 -	<pre>
    4.43 -$(tail -n 40 /var/log/slim.log)
    4.44 -	</pre>
    4.45 +$(tail -n 40 /var/log/slim.log | htmlize)
    4.46 +<hr /><a href="/index.cgi?file=/var/log/slim.log">$(gettext 'Show more...')</a>
    4.47 +</pre>
    4.48  EOT
    4.49  		;;
    4.50  	*\ daemons\ *)
    4.51 @@ -58,10 +58,8 @@
    4.52  
    4.53  		cat << EOT
    4.54  <div id="wrapper">
    4.55 -	<h2>`gettext "Manage daemons"`</h2>
    4.56 -	<p>
    4.57 -		`gettext "Check, start and stop daemons on SliTaz"`
    4.58 -	</p>
    4.59 +	<h2>$(gettext 'Manage daemons')</h2>
    4.60 +	<p>$(gettext 'Check, start and stop daemons on SliTaz')</p>
    4.61  </div>
    4.62  EOT
    4.63  		daemon=$(GET daemons)
    4.64 @@ -81,11 +79,11 @@
    4.65  		cat << EOT
    4.66  <thead>
    4.67  	<tr>
    4.68 -		<td>`gettext "Name"`</td>
    4.69 -		<td>`gettext "Description"`</td>
    4.70 -		<td>`gettext "Status"`</td>
    4.71 -		<td>`gettext "Action"`</td>
    4.72 -		<td>`gettext "PID"`</td>
    4.73 +		<td>$(gettext 'Name')</td>
    4.74 +		<td>$(gettext 'Description')</td>
    4.75 +		<td>$(gettext 'Status')</td>
    4.76 +		<td>$(gettext 'Action')</td>
    4.77 +		<td>$(gettext 'PID')</td>
    4.78  	</tr>
    4.79  </thead>
    4.80  EOT
    4.81 @@ -104,29 +102,30 @@
    4.82  			# First check if daemon is started at bootime
    4.83  			[ echo "RUN_DAEMONS" | fgrep $name ] && boot="on boot"
    4.84  			# Standard SliTaz busybox daemons and firewall
    4.85 +			echo -n "<td>"
    4.86  			case "$name" in
    4.87  				firewall)
    4.88 -					gettext "<td>SliTaz Firewall with iptable rules</td>" ;;
    4.89 +					gettext 'SliTaz Firewall with iptable rules' ;;
    4.90  				httpd)
    4.91 -					gettext "<td>Small and fast web server with CGI support</td>" ;;
    4.92 +					gettext 'Small and fast web server with CGI support' ;;
    4.93  				ntpd)
    4.94 -					gettext "<td>Network time protocol daemon</td>" ;;
    4.95 +					gettext 'Network time protocol daemon' ;;
    4.96  				ftpd)
    4.97 -					gettext "<td>Anonymous FTP server</td>" ;;
    4.98 +					gettext 'Anonymous FTP server' ;;
    4.99  				udhcpd)
   4.100 -					gettext "<td>Busybox DHCP server</td>" ;;
   4.101 +					gettext 'Busybox DHCP server' ;;
   4.102  				syslogd|klogd)
   4.103 -					gettext "<td>Linux Kernel log daemon</td>" ;;
   4.104 +					gettext 'Linux Kernel log daemon' ;;
   4.105  				crond)
   4.106 -					gettext "<td>Execute scheduled commands</td>" ;;
   4.107 +					gettext 'Execute scheduled commands' ;;
   4.108  				dnsd)
   4.109 -					gettext "<td>Small static DNS server daemon</td>" ;;
   4.110 +					gettext 'Small static DNS server daemon' ;;
   4.111  				tftpd)
   4.112 -					gettext "<td>Transfer a file on tftp request</td>" ;;
   4.113 +					gettext 'Transfer a file on tftp request' ;;
   4.114  				inetd)
   4.115 -					gettext "<td>Listen for network connections and launch programs</td>" ;;
   4.116 +					gettext 'Listen for network connections and launch programs' ;;
   4.117  				zcip)
   4.118 -					gettext "<td>Manage a ZeroConf IPv4 link-local address</td>" ;;
   4.119 +					gettext 'Manage a ZeroConf IPv4 link-local address' ;;
   4.120  				*)
   4.121  					# Description from receipt
   4.122  					[ -d "$LOCALSTATE/installed/$name" ] && pkg=$name
   4.123 @@ -134,25 +133,26 @@
   4.124  					[ -d "$LOCALSTATE/installed/${name}-pam" ] && pkg=${name}-pam
   4.125  					if [ "$pkg" ]; then
   4.126  						. $LOCALSTATE/installed/$pkg/receipt
   4.127 -						echo "<td>$SHORT_DESC</td>"
   4.128 +						echo -n "$SHORT_DESC"
   4.129  					else
   4.130 -						echo "<td>----</td>"
   4.131 +						echo -n "----"
   4.132  					fi ;;
   4.133  			esac
   4.134 +			echo "</td>"
   4.135  			# Attempt to get daemon status
   4.136 -			pidfile=`find /var/run -name *$name*.pid`
   4.137 -			[ "$pidfile" ] && pid=`cat $pidfile`
   4.138 +			pidfile=$(find /var/run -name *$name*.pid)
   4.139 +			[ "$pidfile" ] && pid=$(cat $pidfile)
   4.140  			# dbus
   4.141 -			[ -f /var/run/${name}/pid ] && pid=`cat /var/run/${name}/pid`
   4.142 +			[ -f /var/run/${name}/pid ] && pid=$(cat /var/run/${name}/pid)
   4.143  			# apache
   4.144 -			[ "$name" = "apache" ] && pid=`cat /var/run/$name/httpd.pid`
   4.145 +			[ "$name" = "apache" ] && pid=$(cat /var/run/$name/httpd.pid)
   4.146  			# Pidof works for many daemons
   4.147 -			[ "$pid" ] || pid=`pidof $name`
   4.148 +			[ "$pid" ] || pid=$(pidof $name)
   4.149  			if [ "$pid" ]; then
   4.150  				cat << EOT
   4.151 -<td><img src="$IMAGES/started.png" /></td>
   4.152 +<td><img src="$IMAGES/started.png" alt="Started" title="$(gettext 'Started')" /></td>
   4.153  <td><a href="$SCRIPT_NAME?daemons=stop=$name">
   4.154 -    <img src="$IMAGES/stop.png" /></a></td>
   4.155 +	<img src="$IMAGES/stop.png" alt="Stop" title="$(gettext 'Stop')" /></a></td>
   4.156  <td>
   4.157  EOT
   4.158  				for i in $pid; do
   4.159 @@ -162,67 +162,77 @@
   4.160  				done
   4.161  			else
   4.162  				cat << EOT
   4.163 -<td>-</td>
   4.164 +<td><img src="$IMAGES/stopped.png" alt="Stopped" title="$(gettext 'Stopped')" /></td>
   4.165  <td><a href="$SCRIPT_NAME?daemons=start=$name">
   4.166 -    <img src="$IMAGES/start.png" /></a></td>
   4.167 +    <img src="$IMAGES/start.png" alt="Start" title="$(gettext 'Start')" /></a></td>
   4.168  <td>-----
   4.169  EOT
   4.170  			fi
   4.171  			echo '</td></tr>'
   4.172  		done
   4.173  		table_end ;;
   4.174 +
   4.175  	*\ grub\ *)
   4.176 +		GRUBMENU="/boot/grub/menu.lst"
   4.177  		if [ "$(GET splash)" ]; then
   4.178  			default=$(GET default)
   4.179  			timeout=$(GET timeout)
   4.180  			splash=$(GET splash)
   4.181  			sed -i \
   4.182 -				-e s"/default .*/default $default/" \
   4.183 -				-e s"/timeout .*/timeout $timeout/" \
   4.184 -				-e s"#splashimage=.*#splashimage=$splash#" \
   4.185 -				/boot/grub/menu.lst
   4.186 +				-e s"|default .*|default $default # new|" \
   4.187 +				-e s"|timeout .*|timeout $timeout|" \
   4.188 +				-e s"|splashimage=.*|splashimage=$splash|" \
   4.189 +				$GRUBMENU
   4.190  		fi
   4.191 -		default=$(cat /boot/grub/menu.lst | grep ^default | cut -d " " -f 2)
   4.192 -		timeout=$(cat /boot/grub/menu.lst | grep ^timeout | cut -d " " -f 2)
   4.193 -		splash=$(cat /boot/grub/menu.lst | grep ^splashimage | cut -d "=" -f 2)
   4.194 +		default=$(cat $GRUBMENU | grep ^default | cut -d " " -f 2)
   4.195 +		timeout=$(cat $GRUBMENU | grep ^timeout | cut -d " " -f 2)
   4.196 +		splash=$(cat $GRUBMENU | grep ^splashimage | cut -d "=" -f 2)
   4.197  		xhtml_header
   4.198  				cat << EOT
   4.199  <div id="wrapper">
   4.200 -	<h2>$(gettext "GRUB Boot loader")</h2>
   4.201 -	<p>
   4.202 -		$(gettext "The first application started when the computer powers on")
   4.203 -	</p>
   4.204 +	<h2>$(gettext 'GRUB Boot loader')</h2>
   4.205 +
   4.206 +	<p>$(gettext 'The first application started when the computer powers on')</p>
   4.207  </div>
   4.208  
   4.209  <form method="get" action="$SCRIPT_NAME">
   4.210  	<input type="hidden" name="grub" />
   4.211 -<pre>
   4.212 -Default entry : <input type="text" name="default" value="$default" />
   4.213 -
   4.214 -Timeout       : <input type="text" name="timeout" value="$timeout" />
   4.215 -
   4.216 -Splash image  : <input type="text" name="splash" value="$splash" size="40" />
   4.217 -</pre>
   4.218 -	<input type="submit" value="$(gettext "Change")" />
   4.219 -	<a class="button" href="index.cgi?file=/boot/grub/menu.lst">
   4.220 -		<img src="$IMAGES/text.png" />View or edit menu.lst</a>
   4.221 +<table>
   4.222 +<tr><td>$(gettext 'Default entry:')</td>
   4.223 +	<td><input type="text" name="default" value="$default" /></td></tr>
   4.224 +<tr><td>$(gettext 'Timeout:')</td>
   4.225 +	<td><input type="text" name="timeout" value="$timeout" /></td></tr>
   4.226 +<tr><td>$(gettext 'Splash image:')</td>
   4.227 +	<td><input type="text" name="splash" value="$splash" size="40" /></td></tr>
   4.228 +</table>
   4.229 +	<input type="submit" value="$(gettext 'Change')" />
   4.230 +	<a class="button" href="index.cgi?file=$GRUBMENU">
   4.231 +		<img src="$IMAGES/text.png" />$(gettext 'View or edit menu.lst')</a>
   4.232  </form>
   4.233  
   4.234 -<h3>$(gettext "Boot entries")</h3>
   4.235 +<h3>$(gettext 'Boot entries')</h3>
   4.236  EOT
   4.237 +
   4.238 +
   4.239 +menu=$(tail -q -n +$(grep -n ^title $GRUBMENU | head -n1 | cut -d: -f1) $GRUBMENU \
   4.240 +	| sed -e "s|^$||g" \
   4.241 +	| sed -e "s|^title|</pre></li>\n<p><strong>$(gettext 'Entry') #</strong></p>\n<pre>\0|g" \
   4.242 +	| sed '/^[ \t]*$/d' \
   4.243 +	| tail -q -n +2)"</pre>"
   4.244 +
   4.245  	entry='-1'
   4.246 -	grep ^title /boot/grub/menu.lst | while read title
   4.247 +	echo "$menu" | while read line
   4.248  	do
   4.249 -		entry=$(($entry + 1))
   4.250 -		echo "<strong>$(gettext "Entry") $entry</strong>"
   4.251 -		echo '<pre>'
   4.252 -		grep -A 2 "$title" /boot/grub/menu.lst
   4.253 -		echo '</pre>'
   4.254 +		if [ -n "$(echo $line | grep '#</strong>')" ]; then
   4.255 +			entry=$(($entry + 1))
   4.256 +		fi
   4.257 +		echo $line | sed "s|#</strong>|$entry</strong>|"
   4.258  	done
   4.259 +
   4.260  	# Here we could check if an entry for gpxe is present if not
   4.261  	# display a form to add it.
   4.262  	[ -f "/boot/gpxe" ] && echo "<h3>gPXE</h3>" && \
   4.263 -		gettext "Web boot is available with gPXE"
   4.264 +		gettext 'Web boot is available with gPXE'
   4.265  	;;
   4.266  	*)
   4.267  		#
   4.268 @@ -232,37 +242,35 @@
   4.269  		xhtml_header
   4.270  		cat << EOT
   4.271  <div id="wrapper">
   4.272 -	<h2>$(gettext "Boot &amp; Start services")</h2>
   4.273 -	<p>
   4.274 -		$(gettext "Everything that happens before user login")
   4.275 -	</p>
   4.276 +	<h2>$(gettext 'Boot &amp; Start services')</h2>
   4.277 +	<p>$(gettext 'Everything that happens before user login')</p>
   4.278  </div>
   4.279  <div>
   4.280  	<a class="button" href="$SCRIPT_NAME?log">
   4.281 -		<img src="$IMAGES/text.png" />$(gettext "Boot logs")</a>
   4.282 +		<img src="$IMAGES/text.png" />$(gettext 'Boot logs')</a>
   4.283  	<a class="button" href="$SCRIPT_NAME?daemons">
   4.284 -		<img src="$IMAGES/recharge.png" />$(gettext "Manage daemons")</a>
   4.285 -	<a class="button" href="$SCRIPT_NAME?grub">$(gettext "Boot loader")</a>
   4.286 +		<img src="$IMAGES/recharge.png" />$(gettext 'Manage daemons')</a>
   4.287 +	<a class="button" href="$SCRIPT_NAME?grub">$(gettext 'Boot loader')</a>
   4.288  </div>
   4.289  
   4.290 -<h3>`gettext "Configuration files"`</h3>
   4.291 +<h3>$(gettext 'Configuration files')</h3>
   4.292  <ul>
   4.293 -	<li>`gettext "Main configuration file:"`
   4.294 +	<li>$(gettext 'Main configuration file:')
   4.295  		<a href="index.cgi?file=/etc/rcS.conf">rcS.conf</a></li>
   4.296 -	<li>`gettext "Login manager settings:"`
   4.297 +	<li>$(gettext 'Login manager settings:')
   4.298  		<a href="index.cgi?file=/etc/slim.conf">slim.conf</a></li>
   4.299  </ul>
   4.300  
   4.301 -<h3>`gettext "Kernel cmdline"`</h3>
   4.302 -<pre>
   4.303 -`cat /proc/cmdline`
   4.304 -</pre>
   4.305 -<h3>`gettext "Local startup commands"`</h3>
   4.306 -<pre>
   4.307 -$(cat /etc/init.d/local.sh | syntax_highlighter sh)
   4.308 -</pre>
   4.309 +<h3>$(gettext 'Kernel cmdline')</h3>
   4.310 +
   4.311 +<pre>$(cat /proc/cmdline)</pre>
   4.312 +
   4.313 +<h3>$(gettext 'Local startup commands')</h3>
   4.314 +
   4.315 +<pre>$(cat /etc/init.d/local.sh | syntax_highlighter sh)</pre>
   4.316 +
   4.317  <a class="button" href="index.cgi?file=/etc/init.d/local.sh&amp;action=edit">
   4.318 -<img src="$IMAGES/edit.png" />$(gettext "Edit script")</a>
   4.319 +<img src="$IMAGES/edit.png" />$(gettext 'Edit script')</a>
   4.320  EOT
   4.321  		;;
   4.322  esac
     5.1 --- a/data/tazpanel.conf	Fri May 04 12:57:53 2012 +0300
     5.2 +++ b/data/tazpanel.conf	Fri May 04 13:00:43 2012 +0300
     5.3 @@ -1,6 +1,6 @@
     5.4  # tazpanel.conf: SliTaz Web Control Panel configuration
     5.5  #
     5.6 -# Copyright (C) 2011-2012 SliTaz GNU/Linux - BSD License
     5.7 +# Copyright (C) 2011-12 SliTaz GNU/Linux - BSD License
     5.8  #
     5.9  
    5.10  # Panel location and theme
    5.11 @@ -32,3 +32,7 @@
    5.12  # Shared Tazpkg paths
    5.13  LOCALSTATE="/var/lib/tazpkg"
    5.14  INSTALLED="$LOCALSTATE/installed"
    5.15 +
    5.16 +# Disk usage warnings in percents
    5.17 +DU_WARN="70"
    5.18 +DU_CRIT="90"
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/doc/tazpanel.ru.html	Fri May 04 13:00:43 2012 +0300
     6.3 @@ -0,0 +1,62 @@
     6.4 +<div id="help">
     6.5 +
     6.6 +<h2>Русская справка</h2>
     6.7 +
     6.8 +<p>TazPanel — это центр управления и настроек, из которого вы можете
     6.9 +	контролировать всю систему — управлять пакетами, добавлять и удалять
    6.10 +	пользователей, создавать «живые» системы и многое другое. Навигация
    6.11 +	осуществляется при помощи панели инструментов в верхней части окна
    6.12 +	приложения, а в некоторых случаях, как в интерфейсе пакетного менеджера, —
    6.13 +	при помощи меню и боковой панели.</p>
    6.14 +<p>В большинстве случаев вы получите описание и полезную информацию по
    6.15 +	соответствующему разделу. TazPanel использует новейшие технологии — xHTML 5
    6.16 +	и CSS 3 для того, чтобы предоставить чистый и простой в использовании
    6.17 +	интерфейс для всех задач управления, которые можно выполнить на SliTaz.
    6.18 +	С самого начала TazPanel создавалась с расчетом на скорость, качество и
    6.19 +	полную поддержку интернационализации.</p>
    6.20 +<p>TazPanel работает как веб-сервер на порту 82 (по умолчанию), ее можно
    6.21 +	использовать только в локальной системе. Если вы хотите управлять вашей
    6.22 +	системой с удаленной машины, вы можете изменить файл конфигурации сервера,
    6.23 +	чтобы разрешить соединения из локальной сети, или даже из всего интернета,
    6.24 +	но в последнем случае убедитесь, что вы установили надежный пароль для
    6.25 +	панели. Файл конфигурации сервера — /etc/slitaz/httpd.conf.</p>
    6.26 +
    6.27 +<h3>Terminal</h3>
    6.28 +
    6.29 +<p>TazPanel содержит небольшой эмулятор терминала, который позволяет выполнять
    6.30 +	команды от имени администратора на удаленной или локальной системе.
    6.31 +	Использоваться могут не все команды, и в большинстве случаев вы должны
    6.32 +	использовать соединение SSH. Тем не менее, несколько команд, имеющиеся в
    6.33 +	веб-интерфейсе, могут оказаться полезными, например, Wget поддерживает
    6.34 +	загрузку файлов на удаленную машину. Папка загрузки по умолчанию —
    6.35 +	/var/www/downloads. Все команды могут использовать параметры, такие как
    6.36 +	-R -l и т.д.</p>
    6.37 +
    6.38 +<h3>Поддержка</h3>
    6.39 +
    6.40 +<p>Вы можете получить поддержку на <a href="http://forum.slitaz.org/">форуме</a>
    6.41 +	SliTaz, в рассылке или на канале IRC. Официальный IRC-канал SliTaz
    6.42 +	находится на Freenode; обратите внимание, что вы можете использовать в
    6.43 +	SliTaz программы LostIRC, Xchat или Pidgin. Freenode также поддерживает
    6.44 +	хороший <a href="http://webchat.freenode.net/">веб-интерфейс</a>.</p>
    6.45 +
    6.46 +<h3>Присоединяйтесь</h3>
    6.47 +
    6.48 +<p>Если вы хотите помочь и присоединиться к SliTaz, вы можете заняться TazPanel!
    6.49 +	Нам нужна помощь в переводе, дизайне, написании документации и кода. Если
    6.50 +	вам нужна дополнительная информация, или вы хотите опубликовать новый
    6.51 +	дизайн, заходите в <a href="http://scn.slitaz.org/">сообщество</a>, а там
    6.52 +	оставьте сообщение на форуме Devel, или личное сообщение одному из
    6.53 +	разработчиков SliTaz, чтобы мы могли связаться с вами и включить вашу работу
    6.54 +	в TazPanel или в дополнительный пакет стилей.</p>
    6.55 +
    6.56 +<h3>Баги и особенности</h3>
    6.57 +
    6.58 +<p>TazPanel — всё еще молодое приложение, которое со временем будет
    6.59 +	совершенствоваться и отшлифовываться. Если вы нашли ошибку, пожалуйста,
    6.60 +	сообщите на баг-трекер SliTaz:
    6.61 +	<a href="http://bugs.slitaz.org/">bugs.slitaz.org</a>. Tazpanel имеет режим
    6.62 +	отладки, который можно включить в файле конфигурации tazpanel.conf; также
    6.63 +	имеется <a href="/index.cgi?debug">отладочная страница</a>.</p>
    6.64 +
    6.65 +</div>
     7.1 --- a/hardware.cgi	Fri May 04 12:57:53 2012 +0300
     7.2 +++ b/hardware.cgi	Fri May 04 13:00:43 2012 +0300
     7.3 @@ -18,73 +18,72 @@
     7.4  
     7.5  case " $(GET) " in
     7.6  	*\ print\ *)
     7.7 -		echo "TODO" ;;
     7.8 +		xhtml_header
     7.9 +		echo "<h2>TODO</h2>" ;;
    7.10  	*\ detect\ *)
    7.11  		# Front end for Tazhw
    7.12  		# TODO: Add button to detect webcam, etc. Like in tazhw box.
    7.13  		xhtml_header
    7.14 -				cat << EOT
    7.15 +		cat << EOT
    7.16  <div id="wrapper">
    7.17 -	<h2>$(gettext "Detect hardware")</h2>
    7.18 -	<p>$(gettext "Detect PCI and USB hardware")</p>
    7.19 +	<h2>$(gettext 'Detect hardware')</h2>
    7.20 +	<p>$(gettext 'Detect PCI and USB hardware')</p>
    7.21  </div>
    7.22 +
    7.23 +<pre>$(tazhw detect-pci | syntax_highlighter sh)</pre>
    7.24 +
    7.25 +<pre>$(tazhw detect-usb | syntax_highlighter sh)</pre>
    7.26  EOT
    7.27 -		echo '<pre>'
    7.28 -		tazhw detect-pci
    7.29 -		echo '</pre>'
    7.30 -		echo '<pre>'
    7.31 -		tazhw detect-usb
    7.32 -		echo '</pre>' ;;
    7.33 +		;;
    7.34  	*\ modules\ *|*\ modinfo\ *)
    7.35  		xhtml_header
    7.36  		cat << EOT
    7.37  <div id="wrapper">
    7.38 -	<h2>`gettext "Kernel modules"`</h2>
    7.39 -<div class="float-right">
    7.40 -	<form method="get" action="$SCRIPT_NAME">
    7.41 -		<input type="hidden" name="modules" />
    7.42 -		<input type="text" name="search" />
    7.43 -	</form>
    7.44 -</div>
    7.45 -	<p>$(gettext "Manage, search or get information about the Linux kernel modules")</p>
    7.46 +	<h2>$(gettext 'Kernel modules')</h2>
    7.47 +	<div class="float-right">
    7.48 +		<form method="get" action="$SCRIPT_NAME">
    7.49 +			<input type="hidden" name="modules" />
    7.50 +			<input type="search" placeholder="$(gettext 'Modules search')" name="search" />
    7.51 +		</form>
    7.52 +	</div>
    7.53 +	<p>$(gettext 'Manage, search or get information about the Linux kernel modules')</p>
    7.54  </div>
    7.55  EOT
    7.56  		# Request may be modinfo output that we want in the page itself
    7.57 -		if [ -n "$(GET modinfo)" ]; then
    7.58 -			echo '<strong>'
    7.59 -			gettext "Detailed information for module: "; echo "$(GET modinfo)"
    7.60 -			echo '</strong>'
    7.61 -			echo '<pre>'
    7.62 -			modinfo $(GET modinfo)
    7.63 -			echo '</pre>'
    7.64 +		get_modinfo="$(GET modinfo)"
    7.65 +		if [ -n "$get_modinfo" ]; then
    7.66 +			cat << EOT
    7.67 +<strong>$(eval_gettext 'Detailed information for module: $get_modinfo')</strong>
    7.68 +
    7.69 +<pre>$(modinfo $get_modinfo)</pre>
    7.70 +EOT
    7.71  		fi
    7.72  		if [ -n "$(GET modprobe)" ]; then
    7.73 -			echo '<pre>'
    7.74 -			modprobe -v $(GET modprobe)
    7.75 -			echo '</pre>'
    7.76 +			echo "<pre>$(modprobe -v $(GET modprobe))</pre>"
    7.77  		fi
    7.78  		if [ -n "$(GET rmmod)" ]; then
    7.79  			echo "Removing"
    7.80  			rmmod -w $(GET rmmod)
    7.81  		fi
    7.82 -		if [ -n "$(GET search)" ]; then
    7.83 -			gettext "Matching result(s) for: "; echo "$(GET search)"
    7.84 +		get_search="$(GET search)"
    7.85 +		if [ -n "$get_search" ]; then
    7.86 +			eval_gettext 'Matching result(s) for: $get_search'
    7.87  			echo '<pre>'
    7.88  			modprobe -l | grep "$(GET search)" | while read line
    7.89  			do
    7.90  				name=$(basename $line)
    7.91  				mod=${name%.ko.gz}
    7.92 -				echo "Module    : <a href='$SCRIPT_NAME?modinfo=$mod'>$mod</a> "
    7.93 +				echo "$(gettext 'Module:') <a href='$SCRIPT_NAME?modinfo=$mod'>$mod</a>"
    7.94  			done
    7.95  			echo '</pre>'
    7.96  		fi
    7.97  		cat << EOT
    7.98 -	`table_start`
    7.99 +	$(table_start)
   7.100  		<tr class="thead">
   7.101 -			<td>`gettext "Module"`</td>
   7.102 -			<td>`gettext "Size"`</td>
   7.103 -			<td>`gettext "Used"`</td>
   7.104 -			<td>`gettext "by"`</td>
   7.105 +			<td>$(gettext 'Module')</td>
   7.106 +			<td>$(gettext 'Size')</td>
   7.107 +			<td>$(gettext 'Used')</td>
   7.108 +			<td>$(gettext 'by')</td>
   7.109  		</tr>
   7.110  EOT
   7.111  		# Get the list of modules and link to modinfo
   7.112 @@ -95,7 +94,7 @@
   7.113  			<td><a href="$SCRIPT_NAME?modinfo=$MOD">$MOD</a></td>
   7.114  			<td>$SIZE</td>
   7.115  			<td>$USED</td>
   7.116 -			<td>`echo $BY | sed s/","/" "/g`</td>
   7.117 +			<td>$(echo $BY | sed s/","/" "/g)</td>
   7.118  		</tr>
   7.119  EOT
   7.120  		done
   7.121 @@ -110,14 +109,14 @@
   7.122  		xhtml_header
   7.123  		cat << EOT
   7.124  <div id="wrapper">
   7.125 -	<h2>`gettext "Drivers &amp; Devices"`</h2>
   7.126 -	<p>`gettext "Manage your computer hardware`</p>
   7.127 +	<h2>$(gettext 'Drivers &amp; Devices')</h2>
   7.128 +	<p>$(gettext 'Manage your computer hardware')</p>
   7.129  </div>
   7.130  <div>
   7.131  	<a class="button" href="$SCRIPT_NAME?modules">
   7.132 -		<img src="$IMAGES/tux.png" />Kernel modules</a>
   7.133 +		<img src="$IMAGES/tux.png" />$(gettext 'Kernel modules')</a>
   7.134  	<a class="button" href="$SCRIPT_NAME?detect">
   7.135 -		<img src="$IMAGES/monitor.png" />Detect PCI/USB</a>
   7.136 +		<img src="$IMAGES/monitor.png" />$(gettext 'Detect PCI/USB')</a>
   7.137  </div>
   7.138  
   7.139  <div id="wrapper">
   7.140 @@ -130,36 +129,46 @@
   7.141  				remain=$(sed '/remaining capacity/!d;s/[^0-9]*\([0-9]*\).*/\1/' < $dev/state)
   7.142  				rate=$(sed '/present rate/!d;s/[^0-9]*\([0-9]*\).*/\1/' < $dev/state)
   7.143  				full=$(sed '/last full capacity/!d;s/[^0-9]*\([0-9]*\).*/\1/' < $dev/info)
   7.144 -				# FIXME
   7.145 -				#remtime=$(( ($remain * 60) / $rate ))
   7.146 -				#rempct=$(( ($remain * 100) / $full ))
   7.147 +				warning=$(sed '/design capacity warning/!d;s/[^0-9]*\([0-9]*\).*/\1/' < $dev/info)
   7.148 +				low=$(sed '/design capacity low/!d;s/[^0-9]*\([0-9]*\).*/\1/' < $dev/info)
   7.149 +				state=$(sed '/charging state/!d;s/\([^:]*:[ ]\+\)\([a-z]\+\)/\2/' < $dev/state)
   7.150 +
   7.151 +				rempct=$(( $remain * 100 / $full ))
   7.152  				cat << EOT
   7.153  <tr>
   7.154  	<td><img src="$IMAGES/battery.png" />
   7.155 -		Battery $(grep "^battery type" $dev/info | sed 's/.*: *//')
   7.156 +		$(gettext 'Battery') $(grep "^battery type" $dev/info | sed 's/.*: *//')
   7.157  		$(grep "^design capacity:" $dev/info | sed 's/.*: *//') </td>
   7.158 -	<td>health  $(( (100*$full)/$design))%</td>
   7.159 +	<td>$(gettext 'health') $(( (100*$full)/$design))%</td>
   7.160 +	<td class="meter"><meter min="0" max="$full" value="$remain" low="$low"
   7.161 +		high="$warning" optimum="$full"></meter>
   7.162 +		<span>
   7.163  EOT
   7.164 -				if grep -qis discharging $dev/state; then
   7.165 -					cat <<EOT
   7.166 -	<td class="pct"><div class="pct"
   7.167 -		style="width: $rempct%;">charge&nbsp;$rempct%&nbsp;-&nbsp;$(printf "%d:%02d" $(($remtime/60)) $(($remtime%60)))</div></td>
   7.168 -EOT
   7.169 -				else
   7.170 -					cat <<EOT
   7.171 -	<td class="pct"><div class="pct"
   7.172 -		style="width: $rempct%;">recharging&nbsp;$rempct%</div></td>
   7.173 -EOT
   7.174 -				fi
   7.175 +				case "$state" in
   7.176 +				"discharging")
   7.177 +					remtime=$(( $remain * 60 / $rate ))
   7.178 +					remtimef=$(printf "%d:%02d" $(($remtime/60)) $(($remtime%60)))
   7.179 +					eval_gettext 'Discharging $rempct% - $remtimef' ;;
   7.180 +				"charging")
   7.181 +					remtime=$(( ($full - $remain) * 60 / $rate ))
   7.182 +					remtimef=$(printf "%d:%02d" $(($remtime/60)) $(($remtime%60)))
   7.183 +					eval_gettext 'Charging $rempct% - $remtimef' ;;
   7.184 +				"charged")
   7.185 +					gettext 'Charged 100%' ;;
   7.186 +				esac
   7.187 +				echo '</span></td></tr>'
   7.188  			done
   7.189  			echo "</table>"
   7.190  		fi
   7.191 +
   7.192  		if [ -n "$(ls /sys/devices/virtual/thermal/*/temp 2> /dev/null)" ]; then
   7.193 -			echo "Temperature: "
   7.194 +			echo -n '<p>'; gettext 'Temperature:'
   7.195  			for temp in /sys/devices/virtual/thermal/*/temp; do
   7.196  				awk '{ print $1/1000 }' < $temp
   7.197  			done
   7.198 +			echo '</p>'
   7.199  		fi
   7.200 +
   7.201  		if [ -n "$(ls /sys/devices/virtual/backlight/*/brightness 2> /dev/null)" ]; then
   7.202  			cat <<EOT
   7.203  <form method="get" action="$SCRIPT_NAME">
   7.204 @@ -168,7 +177,7 @@
   7.205  				name=$(echo $dev | sed 's|.*/backlight/\([^/]*\).*|\1|')
   7.206  				cat <<EOT
   7.207  <input type="hidden" name="dev" value="$name" />
   7.208 -$(gettext "Brightness") \
   7.209 +$(gettext 'Brightness') \
   7.210  $(sed 's/.*\.//;s/_*$//' < /sys/devices/virtual/backlight/$name/device/path):
   7.211  <select name="brightness" onchange="submit();">
   7.212  EOT
   7.213 @@ -190,46 +199,67 @@
   7.214  		cat << EOT
   7.215  </div>
   7.216  
   7.217 -<h3>$(gettext "Filesystem usage statistics")</h3>
   7.218 +<h3>$(gettext 'Filesystem usage statistics')</h3>
   7.219  <pre>
   7.220  EOT
   7.221  		fdisk -l | fgrep Disk
   7.222  		echo '</pre>'
   7.223 +
   7.224 +
   7.225  		#
   7.226 -		# Disk stats and management (mount, umount, heck)
   7.227 +		# Disk stats and management (mount, umount, check)
   7.228  		#
   7.229 -		table_start
   7.230 +		cat << EOT
   7.231 +<table class="zebra">
   7.232 +EOT
   7.233  		df_thead
   7.234 +		echo '<tbody>'
   7.235  		df -h | grep ^/dev | while read fs size used av pct mp
   7.236  		do
   7.237  				cat << EOT
   7.238  <tr>
   7.239  	<td><img src="$IMAGES/harddisk.png" />${fs#/dev/}</td>
   7.240 +	<td>$(blkid -o value $fs | head -n1)</td>
   7.241 +	<td>$(blkid -o value $fs | tail -n1)</td>
   7.242  	<td>$size</td>
   7.243  	<td>$av</td>
   7.244 -	<td class="pct"><div class="pct"
   7.245 -		style="width: $pct;">$used&nbsp;-&nbsp;$pct</div></td>
   7.246 +	<td class="meter"><meter min="0" max="100" value="${pct%%%}" low="70"
   7.247 +	high="90" optimum="10"></meter>
   7.248 +		<span>$used - $pct</span>
   7.249 +	</td>
   7.250  	<td>$mp</td>
   7.251  </tr>
   7.252  EOT
   7.253  		done
   7.254 -		table_end
   7.255 -		echo "<h3>$(gettext "System memory")</h3>"
   7.256 -		echo '<pre>'
   7.257 +		cat << EOT
   7.258 +</tbody>
   7.259 +</table>
   7.260 +
   7.261 +EOT
   7.262 +
   7.263 +
   7.264 +		cat << EOT
   7.265 +<h3>$(gettext 'System memory')</h3>
   7.266 +<pre>
   7.267 +EOT
   7.268  		free -m | sed \
   7.269  			-e s"#total.*\([^']\)#<span class='top'>\0</span>#"g \
   7.270  			-e s"#^[A-Z-].*:\([^']\)#<span class='sh-comment'>\0</span>#"g
   7.271 -		echo '</pre>'
   7.272 -		echo '<h3>lspci</h3>'
   7.273 -		echo '<pre>'
   7.274 +		cat << EOT
   7.275 +</pre>
   7.276 +
   7.277 +<h3>lspci</h3>
   7.278 +<pre>
   7.279 +EOT
   7.280  			lspci -k | sed \
   7.281  			 -e s"#^[0-9].*\([^']\)#<span class='diff-at'>\0</span>#" \
   7.282  			 -e s"#use: \(.*\)#use: <span class='diff-rm'>\1</span>#"
   7.283 -		echo '</pre>'
   7.284 -		echo '<h3>lsusb</h3>'
   7.285 -		echo '<pre>'
   7.286 -			lsusb
   7.287 -		echo '</pre>'
   7.288 +		cat << EOT
   7.289 +</pre>
   7.290 +
   7.291 +<h3>lsusb</h3>
   7.292 +<pre>$(lsusb)</pre>
   7.293 +EOT
   7.294  		;;
   7.295  esac
   7.296  
     8.1 --- a/help.cgi	Fri May 04 12:57:53 2012 +0300
     8.2 +++ b/help.cgi	Fri May 04 13:00:43 2012 +0300
     8.3 @@ -17,7 +17,7 @@
     8.4  	<form method="get" action="$SCRIPT_NAME">
     8.5  		<p>
     8.6  			<input type="text" name="manual" size="20">
     8.7 -			<input type="submit" class="radius" value="$(gettext "Manual")">
     8.8 +			<input type="submit" class="radius" value="$(gettext 'Manual')">
     8.9  		</p>
    8.10  	</form>
    8.11  </div>
    8.12 @@ -25,7 +25,7 @@
    8.13  }
    8.14  
    8.15  # Cat translated help content
    8.16 -TITLE=$(gettext 'TazPanel - Help \&amp; Doc')
    8.17 +TITLE=$(gettext 'TazPanel - Help &amp; Doc')
    8.18  
    8.19  xhtml_header
    8.20  search_form
    8.21 @@ -41,10 +41,11 @@
    8.22  		cat /usr/share/doc/tazpanel/tazpanel.html
    8.23  	fi
    8.24  
    8.25 -	echo '<h3>README</h3>'
    8.26 -	echo '<pre>'
    8.27 -	cat $PANEL/README
    8.28 -	echo '</pre>'
    8.29 +#	cat << EOT
    8.30 +#<h3>README</h3>
    8.31 +#<pre>$(cat $PANEL/README)</pre>
    8.32 +#EOT
    8.33 +	cat $PANEL/README.html
    8.34  
    8.35  fi
    8.36  
     9.1 --- a/index.cgi	Fri May 04 12:57:53 2012 +0300
     9.2 +++ b/index.cgi	Fri May 04 13:00:43 2012 +0300
     9.3 @@ -35,12 +35,18 @@
     9.4  		button)
     9.5  			cat <<EOT
     9.6  	<a class="button" href='$SCRIPT_NAME?file=$1&action=diff'>
     9.7 -		<img src="$IMAGES/help.png" />`gettext "Differences"`</a>
     9.8 +		<img src="$IMAGES/help.png" />$(gettext 'Differences')</a>
     9.9  EOT
    9.10  		esac
    9.11  		break
    9.12  	done
    9.13  }
    9.14 +# OK status in table
    9.15 +ok_status_t() {
    9.16 +	echo "	<td>[<span class='diff-add'> OK </span>]</td></tr>"
    9.17 +}
    9.18 +
    9.19 +
    9.20  
    9.21  #
    9.22  # Things to do before displaying the page
    9.23 @@ -67,16 +73,17 @@
    9.24  				xhtml_header
    9.25  				echo "<h2>$file</h2>" ;;
    9.26  		esac
    9.27 +
    9.28  		if [ "$(GET action)" == "edit" ]; then
    9.29  			cat <<EOT
    9.30  <form method="post" action="$SCRIPT_NAME?file=$file">
    9.31 -<img src="$IMAGES/edit.png" />
    9.32 -<input type="submit" value="`gettext "Save"`">
    9.33 -<a class="button" href='$SCRIPT_NAME?file=$file&action=diff'>
    9.34 -	<img src="$IMAGES/help.png" />`gettext "Differences"`</a>
    9.35 -<textarea name="content" rows="30" style="width: 100%;">
    9.36 -$(cat $file)
    9.37 - </textarea>
    9.38 +	<img src="$IMAGES/edit.png" />
    9.39 +	<input type="submit" value="$(gettext 'Save')">
    9.40 +		<a class="button" href='$SCRIPT_NAME?file=$file&action=diff'>
    9.41 +			<img src="$IMAGES/help.png" />$(gettext 'Differences')</a>
    9.42 +		<textarea name="content" rows="30" style="width: 100%;">
    9.43 +$(cat $file | htmlize)
    9.44 +</textarea>
    9.45  </form>
    9.46  EOT
    9.47  #The space before textarea gets muddled when the form is submitted.
    9.48 @@ -93,10 +100,13 @@
    9.49  			cat <<EOT
    9.50  <div id="actions">
    9.51  	<a class="button" href='$SCRIPT_NAME?file=$file&action=edit'>
    9.52 -		<img src="$IMAGES/edit.png" />`gettext "Edit"`</a>
    9.53 +		<img src="$IMAGES/edit.png" />$(gettext 'Edit')</a>
    9.54  EOT
    9.55  			file_is_modified $file button
    9.56 -			echo -e "</div>\n<pre>"
    9.57 +			cat << EOT
    9.58 +</div>
    9.59 +<pre>
    9.60 +EOT
    9.61  			# Handle file type by extension as a Web Server does it.
    9.62  			case "$file" in
    9.63  				*.conf|*.lst)
    9.64 @@ -104,10 +114,11 @@
    9.65  				*.sh|*.cgi)
    9.66  					syntax_highlighter sh ;;
    9.67  				*)
    9.68 -					cat ;;
    9.69 +					cat | htmlize ;;
    9.70  			esac < $file
    9.71  			echo '</pre>'
    9.72  		fi ;;
    9.73 +
    9.74  	*\ terminal\ *|*\ cmd\ *)
    9.75  		# Cmdline terminal.
    9.76  		commands='cat du help ls ping pwd who wget'
    9.77 @@ -117,7 +128,7 @@
    9.78  		cat << EOT
    9.79  <form method="get" action="$SCRIPT_NAME">
    9.80  	<div class="box">
    9.81 -		root@$(hostname):~# <input type="text" name="cmd" style="width: 80%;" />
    9.82 +		root@$(hostname):~# <input autofocus type="text" name="cmd" style="width: 80%;" />
    9.83  	</div>
    9.84  </form>
    9.85  EOT
    9.86 @@ -125,70 +136,84 @@
    9.87  	# Allow only a few commands for the moment.
    9.88  	case "$cmd" in
    9.89  		usage|help)
    9.90 -			gettext "Small terminal emulator, commands options are supported."
    9.91 +			gettext 'Small terminal emulator, commands options are supported.'
    9.92  			echo ""
    9.93 -			gettext "Commands:"; echo " $commands" ;;
    9.94 +			eval_gettext 'Commands: $commands'
    9.95 +			echo ;;
    9.96  		wget*)
    9.97  			dl=/var/cache/downloads
    9.98  			[ ! -d "$dl" ] && mkdir -p $dl
    9.99 -			gettext "Downloading to:"; echo " $dl"
   9.100 +			eval_gettext 'Downloading to: $dl' && echo
   9.101  			cd $dl && $cmd ;;
   9.102  		du*|ls*|ping*|pwd|who)
   9.103  			$cmd ;;
   9.104  		cat*)
   9.105  			# Cmd must be used with an arg.
   9.106  			arg=$(echo $cmd | awk '{print $2}')
   9.107 -			[ "$arg" == "" ] && echo -n "$cmd " && \
   9.108 -				gettext "needs an argument $arg" && exit 0
   9.109 +			[ "$arg" == "" ] && eval_gettext '$cmd needs an argument' && break
   9.110  			$cmd ;;
   9.111  		*)
   9.112  			[ "$cmd" == "" ] || \
   9.113 -				gettext "Unknown command: $cmd"
   9.114 -			gettext "Commands:"; echo " $commands" ;;
   9.115 +				eval_gettext 'Unknown command: $cmd' && echo
   9.116 +			eval_gettext 'Commands: $commands' ;;
   9.117  	esac
   9.118  	echo '</pre>' ;;
   9.119  	*\ top\ *)
   9.120  		TITLE=$(gettext 'TazPanel - Process activity')
   9.121  		xhtml_header
   9.122 -		echo `gettext "Refresh: "` $(GET refresh)
   9.123 -		echo '<br/>
   9.124 +		echo $(gettext 'Refresh:') $(GET refresh)
   9.125 +		cat << EOT
   9.126 +<br/>
   9.127  <form method="get">
   9.128  	<input type="hidden" name="top"/>
   9.129 -	<input type="submit" name="refresh" value="1s"/>
   9.130 -	<input type="submit" name="refresh" value="5s"/>
   9.131 -	<input type="submit" name="refresh" value="10s"/>
   9.132 -	<input type="submit" value="none"/>
   9.133 -</form>	'
   9.134 -		[ -n $(GET refresh) ] &&
   9.135 -		echo '<meta http-equiv="refresh" content="' $(GET refresh) '">' | sed "s/s //"
   9.136 +	<input type="submit" name="refresh" value="$(gettext '1s')"/>
   9.137 +	<input type="submit" name="refresh" value="$(gettext '5s')"/>
   9.138 +	<input type="submit" name="refresh" value="$(gettext '10s')"/>
   9.139 +	<input type="submit" value="$(gettext 'none')"/>
   9.140 +</form>
   9.141 +EOT
   9.142 +		if [ -n "$(GET refresh)" ]; then
   9.143 +			echo -n '<meta http-equiv="refresh" content="'
   9.144 +			echo -n "$(GET refresh)" | sed 's|\([^0-9]*\)\([0-9]\+\).*|\2|'
   9.145 +			echo '">'
   9.146 +		fi
   9.147  
   9.148  		echo '<pre>'
   9.149 -		top -n1 -b | sed \
   9.150 +		top -n1 -b | htmlize | sed \
   9.151  			-e s"#^[A-Z].*:\([^']\)#<span class='sh-comment'>\0</span>#"g \
   9.152  			-e s"#PID.*\([^']\)#<span class='top'>\0</span>#"g
   9.153  		echo '</pre>' ;;
   9.154 +
   9.155  	*\ debug\ *)
   9.156  		TITLE=$(gettext 'TazPanel - Debug')
   9.157  		xhtml_header
   9.158 -		echo '<h2>HTTP Environment</h2>'
   9.159 -		echo '<pre>'
   9.160 -		httpinfo
   9.161 -		echo '</pre>' ;;
   9.162 +		cat << EOT
   9.163 +<h2>$(gettext 'HTTP Environment')</h2>
   9.164 +
   9.165 +<pre>$(httpinfo)</pre>
   9.166 +EOT
   9.167 +		;;
   9.168 +
   9.169  	*\ report\ *)
   9.170  		TITLE=$(gettext 'TazPanel - System report')
   9.171  		[ -d /var/cache/slitaz ] || mkdir -p /var/cache/slitaz
   9.172  		output=/var/cache/slitaz/sys-report.html
   9.173  		xhtml_header
   9.174 -		echo "<h2>$(gettext "Reporting to:") $output</h2>"
   9.175 -		echo '<pre>'
   9.176 -		gettext "Creating report header...  "
   9.177 +		cat << EOT
   9.178 +<h2>$(eval_gettext 'Reporting to: $output')</h2>
   9.179 +<table class="zebra">
   9.180 +<tbody>
   9.181 +	<tr><td>$(gettext 'Creating report header...')</td>
   9.182 +EOT
   9.183  		cat > $output << EOT
   9.184  <!DOCTYPE html>
   9.185  <html xmlns="http://www.w3.org/1999/xhtml">
   9.186  <head>
   9.187 -	<title>SliTaz system report</title>
   9.188 +	<meta charset="utf-8" />
   9.189 +	<title>$(gettext 'SliTaz system report')</title>
   9.190  	<style type="text/css">
   9.191 -		body { padding: 20px 60px; font-size: 13px; } h1, h2 { color: #444; }
   9.192 +		body { padding: 20px 60px; font-size: 13px; }
   9.193 +		h1, h2 { color: #444; }
   9.194  		pre { background: #f1f1f1; border: 1px solid #ddd;
   9.195  			padding: 10px; border-radius: 4px; }
   9.196  		span.diff-rm { color: red; }
   9.197 @@ -197,11 +222,13 @@
   9.198  </head>
   9.199  <body>
   9.200  EOT
   9.201 -		ok_status
   9.202 -		gettext "Creating system summary... "
   9.203 +		cat << EOT
   9.204 +	$(ok_status_t)
   9.205 +	<tr><td>$(gettext 'Creating system summary...')</td>
   9.206 +EOT
   9.207  		cat >> $output << EOT
   9.208 -<h1>SliTaz system report</h1>
   9.209 -Date: $(date)
   9.210 +<h1>$(gettext 'SliTaz system report')</h1>
   9.211 +$(gettext 'Date:') $(date)
   9.212  <pre>
   9.213  uptime   : $(uptime)
   9.214  cmdline  : $(cat /proc/cmdline)
   9.215 @@ -210,94 +237,88 @@
   9.216  kernel   : $(uname -r)
   9.217  </pre>
   9.218  EOT
   9.219 -		ok_status
   9.220 -		gettext "Getting hardware info...   "
   9.221 +		cat << EOT
   9.222 +	$(ok_status_t)
   9.223 +	<tr><td>$(gettext 'Getting hardware info...')</td>
   9.224 +EOT
   9.225  		cat >> $output << EOT
   9.226  <h2>free</h2>
   9.227 -<pre>
   9.228 -$(free)
   9.229 -</pre>
   9.230 +<pre>$(free)</pre>
   9.231  
   9.232  <h2>lspci -k</h2>
   9.233 -<pre>
   9.234 -$(lspci -k)
   9.235 -</pre>
   9.236 +<pre>$(lspci -k)</pre>
   9.237  
   9.238  <h2>lsusb</h2>
   9.239 -<pre>
   9.240 -$(lsusb)
   9.241 -</pre>
   9.242 +<pre>$(lsusb)</pre>
   9.243  
   9.244  <h2>lsmod</h2>
   9.245 -<pre>
   9.246 -$(lsmod)
   9.247 -</pre>
   9.248 +<pre>$(lsmod)</pre>
   9.249  
   9.250  EOT
   9.251 -		ok_status
   9.252 -		gettext "Getting networking info... "
   9.253 +		cat << EOT
   9.254 +	$(ok_status_t)
   9.255 +	<tr><td>$(gettext 'Getting networking info...')</td>
   9.256 +EOT
   9.257  		cat >> $output << EOT
   9.258  <h2>ifconfig -a</h2>
   9.259 -<pre>
   9.260 -$(ifconfig -a)
   9.261 -</pre>
   9.262 +<pre>$(ifconfig -a)</pre>
   9.263 +
   9.264  <h2>route -n</h2>
   9.265 -<pre>
   9.266 -$(route -n)
   9.267 -</pre>
   9.268 +<pre>$(route -n)</pre>
   9.269 +
   9.270  <h2>/etc/resolv.conf</h2>
   9.271 -<pre>
   9.272 -$(cat /etc/resolv.conf)
   9.273 -</pre>
   9.274 +<pre>$(cat /etc/resolv.conf)</pre>
   9.275  EOT
   9.276 -		ok_status
   9.277 -		gettext "Getting filesystems info..."
   9.278 +		cat << EOT
   9.279 +	$(ok_status_t)
   9.280 +	<tr><td>$(gettext 'Getting filesystems info...')</td>
   9.281 +EOT
   9.282  		cat >> $output << EOT
   9.283  <h2>blkid</h2>
   9.284 -<pre>
   9.285 -$(blkid)
   9.286 -</pre>
   9.287 +<pre>$(blkid)</pre>
   9.288 +
   9.289  <h2>fdisk -l</h2>
   9.290 -<pre>
   9.291 -$(fdisk -l)
   9.292 -</pre>
   9.293 +<pre>$(fdisk -l)</pre>
   9.294 +
   9.295  <h2>mount</h2>
   9.296 -<pre>
   9.297 -$(mount)
   9.298 -</pre>
   9.299 +<pre>$(mount)</pre>
   9.300 +
   9.301  <h2>df -h</h2>
   9.302 -<pre>
   9.303 -$(df -h)
   9.304 -</pre>
   9.305 +<pre>$(df -h)</pre>
   9.306 +
   9.307  <h2>df -i</h2>
   9.308 -<pre>
   9.309 -$(df -i)
   9.310 -</pre>
   9.311 +<pre>$(df -i)</pre>
   9.312  EOT
   9.313 -		ok_status
   9.314 -		gettext "Getting boot logs...       "
   9.315 +		cat << EOT
   9.316 +	$(ok_status_t)
   9.317 +	<tr><td>$(gettext 'Getting boot logs...')</td>
   9.318 +EOT
   9.319  		cat >> $output << EOT
   9.320 -<h2>$(gettext "Kernel messages")</h2>
   9.321 -<pre>
   9.322 -$(cat /var/log/dmesg.log)
   9.323 -</pre>
   9.324 -<h2>$(gettext "Boot scripts")</h2>
   9.325 -<pre>
   9.326 -$(cat /var/log/boot.log | filter_taztools_msgs)
   9.327 -</pre>
   9.328 +<h2>$(gettext 'Kernel messages')</h2>
   9.329 +<pre>$(cat /var/log/dmesg.log)</pre>
   9.330 +
   9.331 +<h2>$(gettext 'Boot scripts')</h2>
   9.332 +<pre>$(cat /var/log/boot.log | filter_taztools_msgs)</pre>
   9.333  EOT
   9.334 -		ok_status
   9.335 -		gettext "Creating report footer...  "
   9.336 +		cat << EOT
   9.337 +	$(ok_status_t)
   9.338 +	<tr><td>$(gettext 'Creating report footer...')</td>
   9.339 +EOT
   9.340  		cat cat >> $output << EOT
   9.341  </body>
   9.342  </html>
   9.343  EOT
   9.344 -		ok_status
   9.345 -		echo '</pre>'
   9.346 -		echo "<p><a class='button' href='$SCRIPT_NAME?file=$output'>
   9.347 -			$(gettext "View report")</a>"
   9.348 -		gettext "This report can be attached with a bug report on: "
   9.349 -		echo '<a href="http://bugs.slitaz.org/">bugs.slitaz.org</a></p>' ;;
   9.350 +		cat << EOT
   9.351 +	$(ok_status_t)
   9.352 +</tbody>
   9.353 +</table>
   9.354 +<p><a class="button" href="$SCRIPT_NAME?file=$output">
   9.355 +	<img src="/styles/default/images/browser.png" />
   9.356 +	$(gettext 'View report')</a>
   9.357 +	$(gettext 'This report can be attached with a bug report on:')
   9.358 +	<a href="http://bugs.slitaz.org/">bugs.slitaz.org</a></p>
   9.359 +EOT
   9.360 +		;;
   9.361  	*)
   9.362  		#
   9.363  		# Default xHTML content
   9.364 @@ -305,56 +326,81 @@
   9.365  		xhtml_header
   9.366  		[ -n "$(GET gen_locale)" ] && new_locale=$(GET gen_locale)
   9.367  		[ -n "$(GET rdate)" ] && echo ""
   9.368 +		hostname=$(hostname)
   9.369  		cat << EOT
   9.370  <div id="wrapper">
   9.371 -	<h2>$(gettext "Host:") $(hostname)</h2>
   9.372 -	<p>$(gettext "SliTaz administration and configuration Panel")<p>
   9.373 +	<h2>$(eval_gettext 'Host: $hostname')</h2>
   9.374 +	<p>$(gettext 'SliTaz administration and configuration Panel')<p>
   9.375  </div>
   9.376  <div id="actions">
   9.377  	<a class="button" href="$SCRIPT_NAME?terminal">
   9.378 -		<img src="$IMAGES/terminal.png" />$(gettext "Terminal")</a>
   9.379 +		<img src="$IMAGES/terminal.png" />$(gettext 'Terminal')</a>
   9.380  	<a class="button" href="$SCRIPT_NAME?top">
   9.381 -		<img src="$IMAGES/monitor.png" />$(gettext "Process activity")</a>
   9.382 +		<img src="$IMAGES/monitor.png" />$(gettext 'Process activity')</a>
   9.383  	<a class="button" href="$SCRIPT_NAME?report">
   9.384 -		<img src="$IMAGES/text.png" />$(gettext "Create a report")</a>
   9.385 +		<img src="$IMAGES/text.png" />$(gettext 'Create a report')</a>
   9.386  </div>
   9.387  
   9.388 -<h3>$(gettext "Summary")</h3>
   9.389 +<h3>$(gettext 'Summary')</h3>
   9.390  <div id="summary">
   9.391 -<pre>
   9.392 -$(gettext "Uptime       :")$(uptime)
   9.393 -$(gettext "Memory in Mb :") $(free -m | grep Mem: | awk \
   9.394 -	'{print "Total:", $2, "Used:", $3, "Free:", $4}')
   9.395 -$(gettext "Linux kernel :") $(uname -r)
   9.396 -</pre>
   9.397 +<table>
   9.398 +	<tr><td>$(gettext 'Uptime:')</td>
   9.399 +		<td>$(uptime)</td>
   9.400 +	</tr>
   9.401 +	<tr><td>$(gettext 'Memory in Mb:')</td>
   9.402 +EOT
   9.403 +		free -m | grep Mem: | awk '{print $2, $3, $4}' | while read memtotal memused memfree
   9.404 +		do
   9.405 +			cat << EOT
   9.406 +		<td>$(eval_gettext 'Total: $memtotal, Used: $memused, Free: $memfree')</td>
   9.407 +EOT
   9.408 +		done
   9.409 +		cat << EOT
   9.410 +	</tr>
   9.411 +	<tr><td>$(gettext 'Linux kernel:')</td>
   9.412 +		<td>$(uname -r)</td>
   9.413 +	</tr>
   9.414 +</table>
   9.415  <!-- Close summary -->
   9.416  </div>
   9.417  
   9.418 -<h4>$(gettext "Network status")</h4>
   9.419 +<h4>$(gettext 'Network status')</h4>
   9.420  $(list_network_interfaces)
   9.421  
   9.422 -<h4>$(gettext "Filesystem usage statistics")</h4>
   9.423 +<h4>$(gettext 'Filesystem usage statistics')</h4>
   9.424  EOT
   9.425  		# Disk stats (management is done as hardware.cgi)
   9.426 -		table_start
   9.427 +		cat << EOT
   9.428 +<table class="zebra">
   9.429 +EOT
   9.430  		df_thead
   9.431 +		echo '<tbody>'
   9.432  		df -h | grep ^/dev | while read fs size used av pct mp
   9.433  		do
   9.434  				cat << EOT
   9.435  <tr>
   9.436  	<td><a href="hardware.cgi">
   9.437  		<img src="$IMAGES/harddisk.png" />${fs#/dev/}</a></td>
   9.438 +	<td>$(blkid -o value $fs | head -n1)</td>
   9.439 +	<td>$(blkid -o value $fs | tail -n1)</td>
   9.440  	<td>$size</td>
   9.441  	<td>$av</td>
   9.442 -	<td class="pct"><div class="pct"
   9.443 -		style="width: $pct;">$used - $pct</div></td>
   9.444 +	<td class="meter"><meter min="0" max="100" value="$(echo $pct | cut -d% -f1)"
   9.445 +		low="$DU_WARN" high="$DU_CRIT" optimum="10"></meter>
   9.446 +		<span>$used - $pct</span>
   9.447 +	</td>
   9.448  	<td>$mp</td>
   9.449  </tr>
   9.450  EOT
   9.451  		done
   9.452 -		table_end
   9.453  		cat << EOT
   9.454 -<h3>$(gettext "Panel Activity")</h3>
   9.455 +</tbody>
   9.456 +</table>
   9.457 +EOT
   9.458 +
   9.459 +
   9.460 +		cat << EOT
   9.461 +<h3>$(gettext 'Panel Activity')</h3>
   9.462  <pre id="panel-activity">
   9.463  $(cat $LOG_FILE | tail -n 8 | sort -r | syntax_highlighter activity)
   9.464  </pre>
    10.1 --- a/installer.cgi	Fri May 04 12:57:53 2012 +0300
    10.2 +++ b/installer.cgi	Fri May 04 13:00:43 2012 +0300
    10.3 @@ -18,8 +18,8 @@
    10.4  . /usr/bin/gettext.sh
    10.5  
    10.6  # Export package name for gettext.
    10.7 -TEXTDOMAIN='installer'
    10.8 -export TEXTDOMAIN
    10.9 +#TEXTDOMAIN='installer'
   10.10 +#export TEXTDOMAIN
   10.11  
   10.12  TITLE=$(gettext 'TazPanel - Installer')
   10.13  
   10.14 @@ -113,21 +113,22 @@
   10.15  }'
   10.16  	else
   10.17  		# no setup file found: creating
   10.18 -		gettext "Creating setup file $INSTFILE."
   10.19 +		eval_gettext 'Creating setup file $INSTFILE.'
   10.20  		tazinst new $INSTFILE
   10.21  		if [ ! -e "$INSTFILE" ]; then
   10.22  			cat <<EOT
   10.23 -<span class="msg-nok">$(gettext "Setup File Error")<br />
   10.24 -$(gettext "The setup file <strong>$INSTFILE</strong> doesn't exist.")</span><br />
   10.25 +<span class="msg-nok">$(gettext 'Setup File Error')<br />
   10.26 +$(eval_gettext "The setup file <strong>\$INSTFILE</strong> doesn't \
   10.27 +exist.")</span><br />
   10.28  EOT
   10.29  		else
   10.30  			if [ ! -r $INSTFILE ]; then
   10.31  				cat <<EOT
   10.32 -<span class="msg-nok">$(gettext "Setup File Error")<br />
   10.33 -$(gettext "The setup file <strong>$INSTFILE</strong> is not readable. 
   10.34 +<span class="msg-nok">$(gettext 'Setup File Error')<br />
   10.35 +$(eval_gettext "The setup file <strong>$INSTFILE</strong> is not readable. \
   10.36  Check permissions and ownership.")</span><br />
   10.37  EOT
   10.38 -			fi	
   10.39 +			fi
   10.40  		fi
   10.41  	fi
   10.42  	# read setup file
   10.43 @@ -138,12 +139,11 @@
   10.44  {
   10.45  	cat <<EOT
   10.46  <div id="wrapper">
   10.47 -	<h2>$(gettext "SliTaz Installer")</h2>
   10.48 -<p>
   10.49 -	$(gettext "The SliTaz Installer installs or upgrades SliTaz to a hard disk
   10.50 -	drive from a device like a Live-CD or LiveUSB key, from a SliTaz ISO file,
   10.51 -	or from the web by downloading an ISO file.")
   10.52 -<p>
   10.53 +	<h2>$(gettext 'SliTaz Installer')</h2>
   10.54 +
   10.55 +<p>$(gettext "The SliTaz Installer installs or upgrades SliTaz to a hard disk \
   10.56 +drive from a device like a Live-CD or LiveUSB key, from a SliTaz ISO file, or \
   10.57 +from the web by downloading an ISO file.")</p>
   10.58  </div>
   10.59  EOT
   10.60  }
   10.61 @@ -152,21 +152,19 @@
   10.62  {
   10.63  	cat <<EOT
   10.64  <div class="box">
   10.65 -	<h4>$(gettext "Install")</h4>
   10.66 -<p>
   10.67 -	$(gettext "Install SliTaz on a partition of your hard disk drive. If
   10.68 -	you decide to format your partition, all data will be lost. If you do not
   10.69 -	format, all data except for any existing /home directory will be removed, 
   10.70 -	the home directory will be kept as is.")
   10.71 -</p>
   10.72 -<p>
   10.73 -	$(gettext "Before installation, you may need to create or resize partitions
   10.74 -	on your hard disk drive in order to make space for SliTaz GNU/Linux.
   10.75 -	You can graphically manage your partitions with Gparted")
   10.76 -</p>
   10.77 +	<h4>$(gettext 'Install')</h4>
   10.78 +
   10.79 +<p>$(gettext "Install SliTaz on a partition of your hard disk drive. If you \
   10.80 +decide to format your partition, all data will be lost. If you do not format, \
   10.81 +all data except for any existing /home directory will be removed, the home \
   10.82 +directory will be kept as is.")</p>
   10.83 +
   10.84 +<p>$(gettext "Before installation, you may need to create or resize partitions \
   10.85 +on your hard disk drive in order to make space for SliTaz GNU/Linux. You can \
   10.86 +graphically manage your partitions with Gparted")</p>
   10.87  </div>
   10.88 -<p>
   10.89 -<a class="button" href="$SCRIPT_NAME?page=partitioning">$(gettext "Install SliTaz")</a>
   10.90 +<p><a class="button" href="$SCRIPT_NAME?page=partitioning">$(gettext "Install \
   10.91 +SliTaz")</a>
   10.92  EOT
   10.93  }
   10.94  
   10.95 @@ -174,69 +172,66 @@
   10.96  {
   10.97  	cat <<EOT
   10.98  <div class="box">
   10.99 -	<h4>$(gettext "Upgrade")</h4>
  10.100 -<p>
  10.101 -	$(gettext "Upgrade an already installed SliTaz system on your hard disk
  10.102 -	drive. Your /home /etc /var/www directories will be kept, all other directories
  10.103 -	will be removed. Any additional packages added to your old Slitaz system
  10.104 -	will be updated as long you have an active internet connection.")
  10.105 -</p>
  10.106 +	<h4>$(gettext 'Upgrade')</h4>
  10.107 +
  10.108 +<p>$(gettext "Upgrade an already installed SliTaz system on your hard disk \
  10.109 +drive. Your /home /etc /var/www directories will be kept, all other \
  10.110 +directories will be removed. Any additional packages added to your old Slitaz \
  10.111 +system will be updated as long you have an active internet connection.")</p>
  10.112  </div>
  10.113 -<p>
  10.114 -	<a class="button" href="$SCRIPT_NAME?page=upgrade">$(gettext "Upgrade SliTaz")</a>
  10.115 -</p>
  10.116 +<p><a class="button" href="$SCRIPT_NAME?page=upgrade">$(gettext "Upgrade \
  10.117 +SliTaz")</a></p>
  10.118  EOT
  10.119  }
  10.120  
  10.121  select_gparted()
  10.122  {
  10.123  	cat <<EOT
  10.124 -<h4>$(gettext "Partitioning")</h4>
  10.125 +<h4>$(gettext 'Partitioning')</h4>
  10.126  <div class="box">
  10.127 -<p>
  10.128 -	$(gettext "On most used systems, the hard drive is already dedicated to 
  10.129 -	partitions for Windows<sup>&copy;</sup>, or Linux, or another operating 
  10.130 -	system. You'll need to resize these partitions in order to make space for
  10.131 -	SliTaz GNU/Linux. SliTaz will co-exist with other operating systems already
  10.132 -	installed on your hard drive.") 
  10.133 -</p>
  10.134 -<p>
  10.135 -	$(gettext "The amount of space needed depends on how much software you 
  10.136 -	plan to install	and how much space you require for users. It's conceivable
  10.137 -	that you could run a minimal SliTaz system in 300 megs or less, but 2 gigs
  10.138 -	is indeed more comfy.")
  10.139 -<p>
  10.140 -	$(gettext "A separate home partition, and a partition that will be used 
  10.141 -	as Linux swap space may be created if needed. Slitaz detects and uses swap
  10.142 -	partitions automatically.")
  10.143 -</p>
  10.144 -</p>
  10.145 +
  10.146 +<p>$(gettext "On most used systems, the hard drive is already dedicated to \
  10.147 +partitions for Windows<sup>&trade;</sup>, or Linux, or another operating \
  10.148 +system. You'll need to resize these partitions in order to make space for \
  10.149 +SliTaz GNU/Linux. SliTaz will co-exist with other operating systems already \
  10.150 +installed on your hard drive.")</p>
  10.151 +
  10.152 +<p>$(gettext "The amount of space needed depends on how much software you plan \
  10.153 +to install and how much space you require for users. It's conceivable that you \
  10.154 +could run a minimal SliTaz system in 300 megs or less, but 2 gigs is indeed \
  10.155 +more comfy.")</p>
  10.156 +
  10.157 +<p>$(gettext "A separate home partition, and a partition that will be used as \
  10.158 +Linux swap space may be created if needed. Slitaz detects and uses swap \
  10.159 +partitions automatically.")</p>
  10.160 +
  10.161  </div>
  10.162 +
  10.163  <div class="box">
  10.164 -<p>
  10.165 -	$(gettext "You can graphically manage your partitions with Gparted. GParted
  10.166 -	is a partition editor for graphically managing your disk partitions. Gparted
  10.167 -	allows you to create, destroy, resize and copy partitions without data
  10.168 -	loss.")
  10.169 -</p>
  10.170 -<p>
  10.171 -	$(gettext "Gparted supports ext2, ext3, ext4, linux swap, ntfs and fat32
  10.172 -	filesystems right out of the box. Support for xjs, jfs, hfs and other
  10.173 -	filesystems is available as well but you first need to add drivers for 
  10.174 -	these filesystems by installing the related packages xfsprogs, jfsutils,
  10.175 -	linux-hfs and so on.")
  10.176 -</p>
  10.177 +
  10.178 +<p>$(gettext "You can graphically manage your partitions with Gparted. GParted \
  10.179 +is a partition editor for graphically managing your disk partitions. Gparted \
  10.180 +allows you to create, destroy, resize and copy partitions without data loss.")</p>
  10.181 +
  10.182 +<p>$(gettext "Gparted supports ext2, ext3, ext4, linux swap, ntfs and fat32 \
  10.183 +filesystems right out of the box. Support for xjs, jfs, hfs and other \
  10.184 +filesystems is available as well but you first need to add drivers for these \
  10.185 +filesystems by installing the related packages xfsprogs, jfsutils, linux-hfs \
  10.186 +and so on.")</p>
  10.187  </div>
  10.188 -<a class="button" href="$SCRIPT_NAME?page=gparted">$(gettext "Execute Gparted")</a>
  10.189 -<h5>$(gettext "Continue installation")</h5>
  10.190 -	$(gettext "Once you've made room for SliTaz on your drive,	you
  10.191 -	should be able to continue installation.")
  10.192 +
  10.193 +<a class="button" href="$SCRIPT_NAME?page=gparted">$(gettext 'Execute Gparted')</a>
  10.194 +
  10.195 +<h5>$(gettext 'Continue installation')</h5>
  10.196 +
  10.197 +<p>$(gettext "Once you've made room for SliTaz on your drive, you should be \
  10.198 +able to continue installation.")
  10.199  
  10.200  <hr />
  10.201  <a class="button" value="$1" href="$SCRIPT_NAME?page=home" >
  10.202 -	$(gettext "Back to Installer Start Page")</a>
  10.203 +	$(gettext 'Back to Installer Start Page')</a>
  10.204  <a class="button" value="$2" href="$SCRIPT_NAME?page=install">
  10.205 -	$(gettext "Continue Installation")</a>
  10.206 +	$(gettext 'Continue Installation')</a>
  10.207  EOT
  10.208  }
  10.209  
  10.210 @@ -246,11 +241,12 @@
  10.211  		install)
  10.212  			cat << EOT
  10.213  <div id="wrapper">
  10.214 -<h3>$(gettext "Install SliTaz")</h3>
  10.215 -<p>$(gettext "You're going to install SliTaz on a partition of your hard disk drive. If
  10.216 -	you decide to format your HDD, all data will be lost. If you do not 
  10.217 -	format, all data except for any existing /home directory will be removed, 
  10.218 -	the home directory will be kept as is.")<p>
  10.219 +<h3>$(gettext 'Install SliTaz')</h3>
  10.220 +
  10.221 +<p>$(gettext "You're going to install SliTaz on a partition of your hard disk \
  10.222 +drive. If you decide to format your HDD, all data will be lost. If you do not \
  10.223 +format, all data except for any existing /home directory will be removed, the \
  10.224 +home directory will be kept as is.")<p>
  10.225  </div>
  10.226  <input type="hidden" name="INST_ACTION" value="$1">
  10.227  EOT
  10.228 @@ -258,11 +254,12 @@
  10.229  		upgrade)
  10.230  			cat << EOT
  10.231  <div id="wrapper">
  10.232 -<h2>$(gettext "Upgrade SliTaz")</h2>
  10.233 -<p>$(gettext "You're going to upgrade an already installed SliTaz system on your hard disk
  10.234 -	drive. Your /home /etc /var/www directories will be kept, all other directories
  10.235 -	will be removed. Any additional packages added to your old Slitaz system
  10.236 -	will be updated as long you have an active internet connection.")<p>
  10.237 +<h2>$(gettext 'Upgrade SliTaz')</h2>
  10.238 +
  10.239 +<p>$(gettext "You're going to upgrade an already installed SliTaz system on \
  10.240 +your hard disk drive. Your /home /etc /var/www directories will be kept, all \
  10.241 +other directories will be removed. Any additional packages added to your old \
  10.242 +Slitaz system will be updated as long you have an active internet connection.")<p>
  10.243  </div>
  10.244  <input type="hidden" name="INST_ACTION" value="$1">
  10.245  EOT
  10.246 @@ -273,14 +270,14 @@
  10.247  select_source()
  10.248  {
  10.249  	cat <<EOT
  10.250 -<a name="source"></a>
  10.251 -<h4>$(gettext "Slitaz source media")</h4>
  10.252 +<h4 id="source">$(gettext 'Slitaz source media')</h4>
  10.253 +
  10.254  <div class="box">
  10.255  <input type="radio" name="INST_TYPE" value="cdrom" $([ "$INST_TYPE" == "cdrom" ] && echo "checked") id="cdrom" />
  10.256 -<label for="cdrom">$(gettext "LiveCD")</td></label>
  10.257 +<label for="cdrom">$(gettext 'LiveCD')</label>
  10.258  <br />
  10.259  <input type="radio" name="INST_TYPE" value="usb" $([ "$INST_TYPE" == "usb" ] && echo "checked") id="usb" />
  10.260 -<label for="usb">$(gettext "LiveUSB"):
  10.261 +<label for="usb">$(gettext 'LiveUSB:')
  10.262  <select name="SRC_USB">
  10.263  EOT
  10.264  	# List disks if plugged USB device
  10.265 @@ -291,7 +288,7 @@
  10.266  				DEV=$(basename $DEV)
  10.267  				if [ -d /sys/block/${DEV}/${DEV}1 ]; then
  10.268  					for i in $(fdisk -l /dev/$DEV | awk '/^\/dev/ {printf "%s ", $1}') ; do
  10.269 -						echo "<option value='$i' $([ "$i" == "$SRC_FILE" ] && echo "selected") >$i</option>"
  10.270 +						echo "<option value='$i' $([ "$i" == "$SRC_FILE" ] && echo 'selected') >$i</option>"
  10.271  						usb=$usb+1
  10.272  					done
  10.273  				fi
  10.274 @@ -299,22 +296,23 @@
  10.275  		done
  10.276  	fi
  10.277  	if [ $usb -lt 1 ]; then
  10.278 -		echo "<option value="">$(gettext "Not found")</option>"
  10.279 +		echo "<option value="">$(gettext 'Not found')</option>"
  10.280  	fi
  10.281  	cat << EOT
  10.282  </select>
  10.283  </label>
  10.284  <br />
  10.285  <input type="radio" name="INST_TYPE" value="iso" $([ "$INST_TYPE" == "iso" ] && echo "checked") id="iso" />
  10.286 -<label for="iso">$(gettext "ISO file"):</label>
  10.287 -<input type="url" size="50" name="SRC_ISO" $([ "$INST_TYPE" == "iso" ] && echo -e "value=\"$SRC_FILE\"") placeholder="$(gettext "Full path to the ISO image file")" />
  10.288 +<label for="iso">$(gettext 'ISO file:')</label>
  10.289 +<input type="url" size="50" name="SRC_ISO" $([ "$INST_TYPE" == "iso" ] && echo -e "value=\"$SRC_FILE\"") placeholder="$(gettext 'Full path to the ISO image file')" />
  10.290  <br />
  10.291  <input type="radio" name="INST_TYPE" value="web" $([ "$INST_TYPE" == "web" ] && echo "checked") id="web" />
  10.292 -<label for="web">$(gettext "Web"):
  10.293 -<a class="button" onclick="document.forms['ConfigForm'].url.value = '$(tazinst showurl stable)'; return true;">$(gettext "Stable")</a>
  10.294 -<a class="button" onclick="document.forms['ConfigForm'].url.value = '$(tazinst showurl cooking)'; return true;">$(gettext "Cooking")</a>
  10.295 -$(gettext "URL:")
  10.296 -<input id="url" type="url" size="55" name="SRC_WEB" $([ "$INST_TYPE" == "web" ] && echo -e "value=\"$SRC_FILE\"") placeholder="$(gettext "Full url to an ISO image file")" />
  10.297 +<label for="web">$(gettext 'Web:')
  10.298 +	<a class="button" onclick="document.forms['ConfigForm'].url.value = '$(tazinst showurl stable)'; return true;">$(gettext 'Stable')</a>
  10.299 +	<a class="button" onclick="document.forms['ConfigForm'].url.value = '$(tazinst showurl cooking)'; return true;">$(gettext 'Cooking')</a>
  10.300 +
  10.301 +	$(gettext 'URL:')
  10.302 +	<input id="url" type="url" size="55" name="SRC_WEB" $([ "$INST_TYPE" == "web" ] && echo -e "value=\"$SRC_FILE\"") placeholder="$(gettext 'Full url to an ISO image file')" />
  10.303  </label>
  10.304  </div>
  10.305  EOT
  10.306 @@ -323,8 +321,7 @@
  10.307  select_hdd()
  10.308  {
  10.309  cat <<EOT
  10.310 -	<a name="hdd"></a>
  10.311 -	<h4></span>$(gettext "Hard Disk Drive")</h4>
  10.312 +	<h4 id="hdd">$(gettext 'Hard Disk Drive')</h4>
  10.313  EOT
  10.314  }
  10.315  
  10.316 @@ -333,29 +330,29 @@
  10.317  	cat <<EOT
  10.318  <div class="box">
  10.319  <a name="partition"></a>
  10.320 -$(gettext "Install Slitaz to partition:")
  10.321 +$(gettext 'Install Slitaz to partition:')
  10.322  <select name="TGT_PARTITION">
  10.323  EOT
  10.324  	# List partitions
  10.325  	if fdisk -l | grep -q ^/dev/ ; then
  10.326 -		echo "<option value="">$(gettext "None")</option>"
  10.327 +		echo "<option value="">$(gettext 'None')</option>"
  10.328  		for i in $(fdisk -l | awk '/^\/dev/ {printf "%s " $1}'); do
  10.329 -			echo "<option value='$i' $([ "$i" == "$TGT_PARTITION" ] && echo "selected")>$i</option>"
  10.330 +			echo "<option value='$i' $([ "$i" == "$TGT_PARTITION" ] && echo 'selected')>$i</option>"
  10.331  		done
  10.332  	else
  10.333 -		echo "<option value="">$(gettext "Not found")</option>"
  10.334 +		echo "<option value="">$(gettext 'Not found')</option>"
  10.335  	fi
  10.336  	cat << EOT
  10.337  </select>
  10.338  <br />
  10.339  <input type="checkbox" name="MAIN_FMT" value="yes" $([ -n "$TGT_FS" ] && echo "checked") id="mainfs" />
  10.340 -<label for="mainfs">$(gettext "Format partition as"):</label>
  10.341 +<label for="mainfs">$(gettext 'Format partition as:')</label>
  10.342  <select name="MAIN_FS">
  10.343  EOT
  10.344  	scan_mkfs
  10.345  	for i in $FS
  10.346  	do
  10.347 -		echo  "<option value='$i' $([ "$i" == "$TGT_FS" ] && echo "selected")>$i</option>"
  10.348 +		echo "<option value='$i' $([ "$i" == "$TGT_FS" ] && echo 'selected')>$i</option>"
  10.349  	done
  10.350  	cat <<EOT
  10.351  </select>
  10.352 @@ -368,17 +365,17 @@
  10.353  	cat <<EOT
  10.354  <div class="box">
  10.355  <a name="partition"></a>
  10.356 -$(gettext "Existing SliTaz partition to upgrade:")
  10.357 +$(gettext 'Existing SliTaz partition to upgrade:')
  10.358  <select name="TGT_PARTITION">
  10.359  EOT
  10.360  	# List partitions
  10.361  	if fdisk -l | grep -q ^/dev/ ; then
  10.362 -		echo "<option value="">$(gettext "None")</option>"
  10.363 -		for i in `blkid | cut -d ":" -f 1`; do
  10.364 -			echo "<option value='$i' $([ "$i" == "$TGT_PARTITION" ] && echo "selected")>$i</option>"
  10.365 +		echo "<option value="">$(gettext 'None')</option>"
  10.366 +		for i in $(blkid | cut -d ":" -f 1); do
  10.367 +			echo "<option value='$i' $([ "$i" == "$TGT_PARTITION" ] && echo 'selected')>$i</option>"
  10.368  		done
  10.369  	else
  10.370 -		echo "<option value="">$(gettext "Not found")</option>"
  10.371 +		echo "<option value="">$(gettext 'Not found')</option>"
  10.372  	fi
  10.373  	cat <<EOT
  10.374  </select>
  10.375 @@ -389,8 +386,7 @@
  10.376  select_options()
  10.377  {
  10.378  	cat <<EOT
  10.379 -<a name="options"></a>
  10.380 -<h4></span>$(gettext "Options")</h4>
  10.381 +<h4 id="options">$(gettext 'Options')</h4>
  10.382  EOT
  10.383  }
  10.384  
  10.385 @@ -398,31 +394,31 @@
  10.386  {
  10.387  	cat <<EOT
  10.388  <div>
  10.389 -<a name="home"></a>
  10.390 -<h5>$(gettext "home partition")</h5>
  10.391 +<h5 id="home">$(gettext 'home partition')</h5>
  10.392 +
  10.393  <input type="checkbox" name="HOME_SELECT" value="yes" $([ -n "$TGT_HOME" ] && echo "checked") id="homepart" />
  10.394 -<label for="homepart">$(gettext "Use a separate partition for /home:")</label>
  10.395 +<label for="homepart">$(gettext 'Use a separate partition for /home:')</label>
  10.396  <select name="TGT_HOME">
  10.397  EOT
  10.398  	# List disk if plugged USB device
  10.399  	if fdisk -l | grep -q ^/dev/ ; then
  10.400 -		echo "<option value="">$(gettext "None")</option>"
  10.401 +		echo "<option value="">$(gettext 'None')</option>"
  10.402  		for i in $(fdisk -l | awk '/^\/dev/ {printf "%s " $1}'); do
  10.403 -			echo "<option value='$i' $([ "$i" == "$TGT_HOME" ] && echo "selected")>$i</option>"
  10.404 +			echo "<option value='$i' $([ "$i" == "$TGT_HOME" ] && echo 'selected')>$i</option>"
  10.405  		done
  10.406  	else
  10.407 -		echo "<option value="">$(gettext "Not found")</option>"
  10.408 +		echo "<option value="">$(gettext 'Not found')</option>"
  10.409  	fi
  10.410  cat <<EOT
  10.411  </select>
  10.412 -	
  10.413 +
  10.414  <input type="checkbox" name="HOME_FMT" value="yes" $([ -n "$TGT_HOME_FS" ] && echo "checked") id="homefs" />
  10.415 -<label for="homefs">$(gettext "Format partition as:")</label>
  10.416 +<label for="homefs">$(gettext 'Format partition as:')</label>
  10.417  <select name="HOME_FS">"
  10.418  EOT
  10.419  	for i in $FS
  10.420  	do
  10.421 -		echo  "<option value='$i' $([ "$i" == "$TGT_HOME_FS" ] && echo "selected")>$i</option>"
  10.422 +		echo  "<option value='$i' $([ "$i" == "$TGT_HOME_FS" ] && echo 'selected')>$i</option>"
  10.423  	done
  10.424  	cat <<EOT
  10.425  </select>
  10.426 @@ -434,11 +430,11 @@
  10.427  {
  10.428  cat << EOT
  10.429  <div>
  10.430 -<a name="hostname"></a>
  10.431 -<h5>$(gettext "Hostname")</h5>
  10.432 -$(gettext "Set Hostname to:")
  10.433 -<input type="text" id="hostname" name="TGT_HOSTNAME" value="$TGT_HOSTNAME" placeholder="$(gettext "Name of your system")" onkeyup="checkLogin('hostname','msgHostname'); return false;" />
  10.434 -<span id="msgHostname"></span>
  10.435 +	<h5 id="hostname">$(gettext 'Hostname')</h5>
  10.436 +
  10.437 +	$(gettext 'Set Hostname to:')
  10.438 +	<input type="text" id="hostname" name="TGT_HOSTNAME" value="$TGT_HOSTNAME" placeholder="$(gettext 'Name of your system')" onkeyup="checkLogin('hostname','msgHostname'); return false;" />
  10.439 +	<span id="msgHostname"></span>
  10.440  </div>
  10.441  EOT
  10.442  }
  10.443 @@ -447,13 +443,15 @@
  10.444  {
  10.445  cat << EOT
  10.446  <div class="box2">
  10.447 -<a name="root"></a>
  10.448 -<h5>$(gettext "Root")</h5>
  10.449 -$(gettext "Root passwd:")
  10.450 -<input type="password" id="rootPwd1" name="TGT_ROOT_PWD" value="$TGT_ROOT_PWD" placeholder="$(gettext "Password of root")" onkeyup="checkPwd('rootPwd1','rootPwd2','msgRootPwd'); return false;" />
  10.451 -$(gettext "Confirm password:")
  10.452 -<input type="password" id="rootPwd2" value="$TGT_ROOT_PWD" placeholder="$(gettext "Password of root")" onkeyup="checkPwd('rootPwd1','rootPwd2','msgRootPwd'); return false;" />
  10.453 -<span id="msgRootPwd"></span>
  10.454 +	<h5 id="root">$(gettext 'Root')</h5>
  10.455 +
  10.456 +	$(gettext 'Root passwd:')
  10.457 +	<input type="password" id="rootPwd1" name="TGT_ROOT_PWD" value="$TGT_ROOT_PWD" placeholder="$(gettext 'Password of root')" onkeyup="checkPwd('rootPwd1','rootPwd2','msgRootPwd'); return false;" />
  10.458 +
  10.459 +	$(gettext 'Confirm password:')
  10.460 +	<input type="password" id="rootPwd2" value="$TGT_ROOT_PWD" placeholder="$(gettext 'Password of root')" onkeyup="checkPwd('rootPwd1','rootPwd2','msgRootPwd'); return false;" />
  10.461 +
  10.462 +	<span id="msgRootPwd"></span>
  10.463  </div>
  10.464  EOT
  10.465  }
  10.466 @@ -462,17 +460,19 @@
  10.467  {
  10.468  cat << EOT
  10.469  <div class="box2">
  10.470 -<a name="user"></a>
  10.471 -<h5>$(gettext "User")</h5>
  10.472 -$(gettext "User login:")
  10.473 -<input type="text" id="user" name="TGT_USER" value="$TGT_USER" placeholder="$(gettext "Name of the first user")" onkeyup="checkLogin('user','msgUser'); return false;" />
  10.474 -<span id="msgUser"></span>
  10.475 -<br /><br />
  10.476 -$(gettext "User passwd:")
  10.477 -<input type="password" id="userPwd1" name="TGT_USER_PWD" value="$TGT_USER_PWD" placeholder="$(gettext "Password of the first user")" onkeyup="checkPwd('userPwd1','userPwd2','msgUserPwd'); return false;" />
  10.478 -$(gettext "Confirm password:")
  10.479 -<input class="confirm" type="password" id="userPwd2" value="$TGT_USER_PWD" placeholder="$(gettext "Password of the first user")" onkeyup="checkPwd('userPwd1','userPwd2','msgUserPwd'); return false;" />
  10.480 -<span id="msgUserPwd"></span>
  10.481 +	<h5 id="user">$(gettext 'User')</h5>
  10.482 +
  10.483 +	$(gettext 'User login:')
  10.484 +	<input type="text" id="user" name="TGT_USER" value="$TGT_USER" placeholder="$(gettext 'Name of the first user')" onkeyup="checkLogin('user','msgUser'); return false;" />
  10.485 +	<span id="msgUser"></span>
  10.486 +	<br /><br />
  10.487 +
  10.488 +	$(gettext 'User passwd:')
  10.489 +	<input type="password" id="userPwd1" name="TGT_USER_PWD" value="$TGT_USER_PWD" placeholder="$(gettext 'Password of the first user')" onkeyup="checkPwd('userPwd1','userPwd2','msgUserPwd'); return false;" />
  10.490 +
  10.491 +	$(gettext 'Confirm password:')
  10.492 +	<input class="confirm" type="password" id="userPwd2" value="$TGT_USER_PWD" placeholder="$(gettext 'Password of the first user')" onkeyup="checkPwd('userPwd1','userPwd2','msgUserPwd'); return false;" />
  10.493 +	<span id="msgUserPwd"></span>
  10.494  </div>
  10.495  EOT
  10.496  }
  10.497 @@ -481,12 +481,13 @@
  10.498  {
  10.499  cat << EOT
  10.500  <div>
  10.501 -<a name="grub"></a>
  10.502 -<h5>$(gettext "Grub")</h5>
  10.503 -<input type="checkbox" name="TGT_GRUB" value="yes" $([ "$TGT_GRUB" == "yes" ] && echo "checked") id="grub" />
  10.504 -<label for="grub">$(gettext "Install Grub bootloader. Usually you should answer yes, unless you want to install grub by hand yourself.")<br /></label>
  10.505 -<input type="checkbox" name="TGT_WINBOOT" value="auto" $([ -n "$TGT_WINBOOT" ] && echo "checked") id="dualboot" />
  10.506 -<label for="dualboot">$(gettext "Enable Windows Dual-Boot.")</label>
  10.507 +	<h5 id="grub">$(gettext 'Grub')</h5>
  10.508 +
  10.509 +	<input type="checkbox" name="TGT_GRUB" value="yes" $([ "$TGT_GRUB" == "yes" ] && echo "checked") id="grub" />
  10.510 +	<label for="grub">$(gettext "Install Grub bootloader. Usually you should \
  10.511 +answer yes, unless you want to install grub by hand yourself.")<br /></label>
  10.512 +	<input type="checkbox" name="TGT_WINBOOT" value="auto" $([ -n "$TGT_WINBOOT" ] && echo "checked") id="dualboot" />
  10.513 +	<label for="dualboot">$(gettext 'Enable Windows Dual-Boot.')</label>
  10.514  </div>
  10.515  EOT
  10.516  }
  10.517 @@ -495,21 +496,21 @@
  10.518  {
  10.519  	case $1 in
  10.520  		partitioning)
  10.521 -			title1=$(gettext "Back to partitioning") ;;
  10.522 +			title1=$(gettext 'Back to partitioning') ;;
  10.523  		*)
  10.524  			page=home
  10.525 -			title1=$(gettext "Back to Installer Start Page") ;;
  10.526 +			title1=$(gettext 'Back to Installer Start Page') ;;
  10.527  	esac
  10.528  	case $2 in
  10.529  		write|run)
  10.530 -			title2=$(gettext "Proceed to SliTaz installation") ;;
  10.531 +			title2=$(gettext 'Proceed to SliTaz installation') ;;
  10.532  		reboot)
  10.533 -			title2=$(gettext "Installation complete. You can now restart (reboot)") ;;
  10.534 +			title2=$(gettext 'Installation complete. You can now restart (reboot)') ;;
  10.535  		failed)
  10.536 -			title2=$(gettext "Installation failed. See log") ;;
  10.537 +			title2=$(gettext 'Installation failed. See log') ;;
  10.538  		*)
  10.539  			page=home
  10.540 -			title2=$(gettext "Back to Installer Start Page") ;;
  10.541 +			title2=$(gettext 'Back to Installer Start Page') ;;
  10.542  	esac
  10.543  	cat <<EOT
  10.544  <hr />
  10.545 @@ -522,16 +523,19 @@
  10.546  page_redirection()
  10.547  {
  10.548  	cat <<EOT
  10.549 +<!DOCTYPE html>
  10.550  <html>
  10.551  <head>
  10.552 -<title>$(gettext "A web page that points a browser to a different page after 2 seconds")</title>
  10.553 +<meta charset="utf-8">
  10.554 +<title>$(gettext "A web page that points a browser to a different page after \
  10.555 +2 seconds")</title>
  10.556  <meta http-equiv="refresh" content="0; URL=$SCRIPT_NAME?page=$1">
  10.557  <meta name="keywords" content="automatic redirection">
  10.558  </head>
  10.559  <body>
  10.560 -$(gettext "If your browser doesn't automatically redirect within a few seconds, 
  10.561 -you may want to go there manually")
  10.562 -<a href="$SCRIPT_NAME?page=$1">$1</a> 
  10.563 +<p>$(gettext "If your browser doesn't automatically redirect within a few \
  10.564 +seconds, you may want to go there manually")</p>
  10.565 +<p><a href="$SCRIPT_NAME?page=$1">$1</a></p>
  10.566  </body>
  10.567  </html>
  10.568  EOT
  10.569 @@ -539,15 +543,17 @@
  10.570  
  10.571  check_ressources()
  10.572  {
  10.573 -	local code 
  10.574 +	local code
  10.575  	code=0
  10.576  	# Check tazinst
  10.577  	if ! [ -x /usr/sbin/tazinst ] ; then
  10.578  		cat <<EOT
  10.579 -<h3>$(gettext "Tazinst Error")</h3>
  10.580 -<p><strong>tazinst</strong>, $(gettext "the lightweight SliTaz HDD installer
  10.581 +<h3>$(gettext 'Tazinst Error')</h3>
  10.582 +<p>$(gettext "<strong>tazinst</strong>, the lightweight SliTaz HDD installer \
  10.583  is missing. Any installation can not be done without tazinst.")</p>
  10.584 -<p>$(gettext "Check tazinst' permissions, or reinstall the slitaz-tools package:")</p>
  10.585 +
  10.586 +<p>$(gettext "Check tazinst' permissions, or reinstall the slitaz-tools \
  10.587 +package:")</p>
  10.588  <code># tazpkg get-install slitaz-tools --forced</code>
  10.589  EOT
  10.590  		code=1
  10.591 @@ -557,9 +563,10 @@
  10.592  		r=$TAZINST_REQUIRED_VERSION
  10.593  		if ! (echo "$v" | awk -v r=$r '{v=$v+0}{ if (v < r) exit 1}') ; then
  10.594  			cat <<EOT
  10.595 -<h3>$(gettext "Tazinst Error")</h3>
  10.596 -<p><strong>tazinst</strong> ($v) $(gettext "is not at the required version ($r),
  10.597 -use tazinst in a xterm or reinstall the slitaz-tools package:")</p>
  10.598 +<h3>$(gettext 'Tazinst Error')</h3>
  10.599 +
  10.600 +<p>$(eval_gettext "<strong>tazinst</strong> ($v) is not at the required \
  10.601 +version ($r), use tazinst in a xterm or reinstall the slitaz-tools package:")</p>
  10.602  <code># tazpkg get-install slitaz-tools --forced</code>
  10.603  EOT
  10.604  			code=1
  10.605 @@ -570,21 +577,21 @@
  10.606  
  10.607  run_tazinst()
  10.608  {
  10.609 -	echo "<h4>$(gettext "Proceeding: ()")</h4>"
  10.610 -	gettext "Please wait until processing is complete"
  10.611 +	cat << EOT
  10.612 +<h4>$(gettext 'Proceeding: ()')</h4>
  10.613 +<p>$(gettext 'Please wait until processing is complete')</p>
  10.614 +EOT
  10.615  	table_start
  10.616  	tazinst $(GET INST_ACTION) $INSTFILE | \
  10.617  		awk '{print "<tr><td><tt>" $0 "</tt></td></tr>"}'
  10.618  	table_end
  10.619 -	gettext "Completed."
  10.620 +	echo "<p>$(gettext 'Completed.')</p>"
  10.621  	return $(grep -c "cancelled on error" $INSTFILE)
  10.622  }
  10.623  
  10.624  tazinst_log()
  10.625  {
  10.626 -	echo "<pre>"
  10.627 -	tazinst log
  10.628 -	echo "</pre>"
  10.629 +	echo "<pre>$(tazinst log)</pre>"
  10.630  }
  10.631  
  10.632  scan_mkfs()
  10.633 @@ -612,22 +619,22 @@
  10.634  		if (page == "install") {
  10.635  			// hostname
  10.636  			if (false == checkLogin('hostname','msgHostname')) {
  10.637 -				alert("Hostname error");
  10.638 +				alert("$(gettext 'Hostname error')");
  10.639  				return false;
  10.640  			// root pwd
  10.641  			} else if (false == checkPwd('rootPwd1','rootPwd2','msgRootPwd')) {
  10.642 -				alert("Root password error");
  10.643 +				alert("$(gettext 'Root password error')");
  10.644  				return false;
  10.645  			// user
  10.646  			} else if (false == checkLogin('user','msgUser')) {
  10.647 -				alert("User login error");
  10.648 +				alert("$(gettext 'User login error')");
  10.649  				return false;
  10.650  			// user pwd
  10.651  			} else if (false == checkPwd('userPwd1','userPwd2','msgUserPwd')) {
  10.652 -				alert("User password error");
  10.653 +				alert("$(gettext 'User password error')");
  10.654  				return false;
  10.655  			} else {
  10.656 -				var r=confirm("$(gettext "Do you really want to continue?")");
  10.657 +				var r=confirm("$(gettext 'Do you really want to continue?')");
  10.658  				if (r==true)
  10.659  				{
  10.660  					document.ConfigForm.submit();
  10.661 @@ -638,7 +645,7 @@
  10.662  		} else if (page == "write") {
  10.663  			return true;
  10.664  		} else {
  10.665 -			var r=confirm("$(gettext "Do you really want to continue?")");
  10.666 +			var r=confirm("$(gettext 'Do you really want to continue?')");
  10.667  			if (r==true)
  10.668  			{
  10.669  				document.ConfigForm.submit();
    11.1 --- a/lib/libtazpanel	Fri May 04 12:57:53 2012 +0300
    11.2 +++ b/lib/libtazpanel	Fri May 04 13:00:43 2012 +0300
    11.3 @@ -22,27 +22,37 @@
    11.4  		exit 1
    11.5  }
    11.6  
    11.7 +# Display < > &
    11.8 +htmlize() {
    11.9 +	sed -e 's|\&|\&amp;|g; s|<|\&lt;|g; s|>|\&gt;|g'
   11.10 +}
   11.11 +
   11.12  # Syntax highlighting for config file and SHell scripts
   11.13 -# HTML entities: -e 's|&|\&amp;|g' -e 's|<|\&lt;|g' -e 's|>|\&gt;|g'
   11.14  syntax_highlighter() {
   11.15  	case $1 in
   11.16  		conf)
   11.17 -			sed -e 's|&|\&amp;|g' -e 's|<|\&lt;|g' -e 's|>|\&gt;|g' \
   11.18 +			htmlize | sed \
   11.19  				-e s"#^\#\([^']*\)#<span class='conf-comment'>\0</span>#"g \
   11.20  				-e s"#^[A-Z]\([^']*\)=#<span class='conf-var'>\0</span>#"g \
   11.21  				-e s"#^[a-z]\([^']*\)#<span class='conf-var'>\0</span>#"g \
   11.22  				-e s"#\"\([^']*\)\"#<span class='conf-val'>\0</span>#"g ;;
   11.23  		sh)
   11.24 -			sed -e 's|&|\&amp;|g' -e 's|<|\&lt;|g' -e 's|>|\&gt;|g' \
   11.25 +			htmlize | sed \
   11.26  				-e s"#^\#\([^']*\)#<span class='sh-comment'>\0</span>#"g \
   11.27  				-e s"#\"\([^']*\)\"#<span class='sh-val'>\0</span>#"g ;;
   11.28  		diff)
   11.29 -			sed -e 's|&|\&amp;|g' -e 's|<|\&lt;|g' -e 's|>|\&gt;|g' \
   11.30 +			htmlize | sed \
   11.31  				-e s"#^-\(.*\).#<span class='diff-rm'>\0</span>#"g \
   11.32  				-e s"#^+\(.*\).#<span class='diff-add'>\0</span>#"g \
   11.33  				-e s"#@@\(.*\)@@#<span class='diff-at'>@@\1@@</span>#"g ;;
   11.34  		activity)
   11.35 -			sed s"#^\([^']*:\)#<span class='activity-log''>\0</span>#"g ;;
   11.36 +			sed -e s"#^\([^']*:\)#<span class='activity-log'>\0</span>#"g ;;
   11.37 +		kernel)
   11.38 +			htmlize | sed \
   11.39 +				-e "s|\([^0-9]\)\(0x[0-9a-f]\+\)|\1<span class='kernel-hex'>\2</span>|g" \
   11.40 +				-e "s|^\([^(,\[]\+: \)|<span class='kernel-id'>\0</span>|g" \
   11.41 +				-e "s|\(\[[^ ]\+\]\)|<span class='kernel-id2'>\0</span>|g" ;;
   11.42 +
   11.43  	esac
   11.44  }
   11.45  
   11.46 @@ -70,7 +80,7 @@
   11.47  	if 	ifconfig | grep -A 1 $i | grep -q inet; then
   11.48  		ip=`ifconfig | grep -A 1 $i | grep inet | \
   11.49  			awk '{ print $2 }' | cut -d ":" -f 2`
   11.50 -		echo "<td>connected</td><td>$ip</td>"
   11.51 +		echo "<td>$(gettext 'connected')</td><td>$ip</td>"
   11.52  		echo "<td><a href='/network.cgi?scan=$ip'>"
   11.53  		echo "<img src='$IMAGES/recharge.png' /></a></td>"
   11.54  	else
   11.55 @@ -80,35 +90,41 @@
   11.56  
   11.57  # Catch network interface (used in summary and network main page)
   11.58  list_network_interfaces() {
   11.59 -	table_start
   11.60  	cat << EOT
   11.61 -<tr id="thead">
   11.62 -	<td>`gettext "Interface"`</td>
   11.63 -	<td>`gettext "Name"`</td>
   11.64 -	<td>`gettext "Status"`</td>
   11.65 -	<td>`gettext "IP Address"`</td>
   11.66 -	<td>`gettext "Scan ports"`</td>
   11.67 -</tr>
   11.68 +<table class="zebra">
   11.69 +	<thead>
   11.70 +		<tr>
   11.71 +			<td>$(gettext 'Interface')</td>
   11.72 +			<td>$(gettext 'Name')</td>
   11.73 +			<td>$(gettext 'Status')</td>
   11.74 +			<td>$(gettext 'IP Address')</td>
   11.75 +			<td>$(gettext 'Scan ports')</td>
   11.76 +		</tr>
   11.77 +	</thead>
   11.78 +	<tbody>
   11.79  EOT
   11.80  	for i in `ls /sys/class/net`
   11.81  	do
   11.82  		case $i in
   11.83  			eth*)
   11.84 -				echo "<tr><td><a href='/network.cgi?eth'>
   11.85 +				echo "		<tr><td><a href='/network.cgi?eth'>
   11.86  					<img src='$IMAGES/ethernet.png' />$i</a></td>
   11.87  					<td>Ethernet</td> $(interface_status)</tr>" ;;
   11.88  			wlan*|ath*|ra*)
   11.89 -				echo "<tr><td><a href='/network.cgi?wifi'>
   11.90 +				echo "		<tr><td><a href='/network.cgi?wifi'>
   11.91  					<img src='$IMAGES/wireless.png' />$i</a></td>
   11.92  					<td>Wireless</td> $(interface_status)</tr>" ;;
   11.93  			lo)
   11.94 -				echo "<tr><td><img src='$IMAGES/loopback.png' />$i</td>
   11.95 +				echo "		<tr><td><img src='$IMAGES/loopback.png' />$i</td>
   11.96  				<td>Loopback</td> $(interface_status)</tr>" ;;
   11.97  			*)
   11.98  				continue ;;
   11.99  		esac
  11.100  	done
  11.101 -	table_end
  11.102 +	cat << EOT
  11.103 +	</tbody>
  11.104 +</table>
  11.105 +EOT
  11.106  }
  11.107  
  11.108  # Get the list of panel styles
  11.109 @@ -184,29 +200,24 @@
  11.110  }
  11.111  
  11.112  table_start() {
  11.113 -	cat << EOT
  11.114 -<table>
  11.115 -	<tbody>
  11.116 -EOT
  11.117 +	echo '<table>'
  11.118  }
  11.119  
  11.120  table_end() {
  11.121 -	cat << EOT
  11.122 -	</tbody>
  11.123 -</table>
  11.124 -EOT
  11.125 -
  11.126 +	echo '</table>'
  11.127  }
  11.128  
  11.129  df_thead() {
  11.130  	cat << EOT
  11.131  <thead>
  11.132  	<tr>
  11.133 -		<td>$(gettext "Disk")</td>
  11.134 -		<td>$(gettext "Size")</td>
  11.135 -		<td>$(gettext "Available")</td>
  11.136 -		<td>$(gettext "Used")</td>
  11.137 -		<td>$(gettext "Mount point")</td>
  11.138 +		<td>$(gettext 'Disk')</td>
  11.139 +		<td>$(gettext 'Label')</td>
  11.140 +		<td>$(gettext 'Type')</td>
  11.141 +		<td>$(gettext 'Size')</td>
  11.142 +		<td>$(gettext 'Available')</td>
  11.143 +		<td>$(gettext 'Used')</td>
  11.144 +		<td>$(gettext 'Mount point')</td>
  11.145  	</tr>
  11.146  </thead>
  11.147  EOT
    12.1 --- a/live.cgi	Fri May 04 12:57:53 2012 +0300
    12.2 +++ b/live.cgi	Fri May 04 13:00:43 2012 +0300
    12.3 @@ -66,7 +66,7 @@
    12.4  		$TERMINAL $TERM_OPTS \
    12.5  			-T "build meta iso" \
    12.6  			-e "tazlito merge $(merge_args $tmp); \
    12.7 -				gettext \"ENTER to quit\"; read i; \
    12.8 +				gettext 'ENTER to quit'; read i; \
    12.9  				$cleanup" & ;;
   12.10  esac
   12.11  
   12.12 @@ -80,23 +80,21 @@
   12.13  		# Create a flavor file and ISO in options with all settings
   12.14  		# Step by step interface and store files in cache.
   12.15  		#
   12.16 -		gettext "TODO" ;;
   12.17 +		gettext 'TODO' ;;
   12.18  	*\ liveusb\ *)
   12.19  		xhtml_header
   12.20  		cat << EOT
   12.21  <div id="wrapper">
   12.22 -	<h2>$(gettext "SliTaz LiveUSB")</h2>
   12.23 -	<p>$(gettext "Create Live USB SliTaz systems")<p>
   12.24 +	<h2>$(gettext 'SliTaz LiveUSB')</h2>
   12.25 +	<p>$(gettext 'Create Live USB SliTaz systems')<p>
   12.26  </div>
   12.27  
   12.28 -<p>
   12.29 -	$(gettext "Generate SliTaz LiveUSB media and boot in RAM! Insert a
   12.30 -	LiveCD into the cdrom drive, select the correct device and press
   12.31 -	Generate.")
   12.32 -</p>
   12.33 +<p>$(gettext "Generate SliTaz LiveUSB media and boot in RAM! Insert a LiveCD \
   12.34 +into the cdrom drive, select the correct device and press Generate.")</p>
   12.35 +
   12.36  <form method="get" action="$SCRIPT_NAME">
   12.37  	<input type="hidden" name="liveusb" />
   12.38 -	$(gettext "USB Media to use:")
   12.39 +	$(gettext 'USB Media to use:')
   12.40  	<select name="gen">
   12.41  EOT
   12.42  		# List disk if there is a plugged USB device
   12.43 @@ -105,16 +103,18 @@
   12.44  				echo "<option value='$i'>$i</option>"
   12.45  			done
   12.46  		else
   12.47 -			echo "<option value="">"`gettext "Not found"`"</option>"
   12.48 +			echo "<option value="">$(gettext 'Not found')</option>"
   12.49  		fi
   12.50  		cat << EOT
   12.51  	</select>
   12.52 -	<input type="submit" value="`gettext "Generate"`" />
   12.53 +	<input type="submit" value="$(gettext 'Generate')" />
   12.54  </form>
   12.55  EOT
   12.56  		if [ "$(GET gen)" ]; then
   12.57 -			echo "<h3>tazusb gen-liveusb $(GET gen)</h3>"
   12.58 -			echo '<pre>'
   12.59 +			cat << EOT
   12.60 +<h3>tazusb gen-liveusb $(GET gen)</h3>
   12.61 +<pre>
   12.62 +EOT
   12.63  			# No pipe here so output is displayed in realtime
   12.64  			yes | tazusb gen-liveusb $(GET gen)
   12.65  			echo '</pre>'
   12.66 @@ -126,70 +126,78 @@
   12.67  		xhtml_header
   12.68  		cat << EOT
   12.69  <div id="wrapper">
   12.70 -	<h2>`gettext "SliTaz Live Systems"`</h2>
   12.71 -	<p>`gettext "Create and manage Live CD or USB SliTaz systems"`<p>
   12.72 +	<h2>$(gettext 'SliTaz Live Systems')</h2>
   12.73 +	<p>$(gettext 'Create and manage Live CD or USB SliTaz systems')<p>
   12.74  </div>
   12.75  
   12.76  <div id="actions">
   12.77  	<a class="button" href="$SCRIPT_NAME?liveusb">
   12.78 -		<img src="$IMAGES/harddisk.png" />$(gettext "Create LiveUSB")</a>
   12.79 +		<img src="$IMAGES/harddisk.png" />$(gettext 'Create LiveUSB')</a>
   12.80  </div>
   12.81  
   12.82 -<!--<a name="livecd"></a>
   12.83 -<h3>`gettext "Write a Live CD"`</h3>
   12.84 -<p>
   12.85 -	`gettext "The command writeiso will generate an ISO image of the
   12.86 -	current filesystem as is, including all files in the /home directory.
   12.87 -	It is an easy way to remaster a SliTaz Live system, you just have
   12.88 -	to: boot, modify, writeiso."`
   12.89 -</p>
   12.90 +
   12.91 +<!--
   12.92 +<h3 id="livecd">$(gettext 'Write a Live CD')</h3>
   12.93 +
   12.94 +<p>$(gettext "The command writeiso will generate an ISO image of the current \
   12.95 +filesystem as is, including all files in the /home directory. It is an easy \
   12.96 +way to remaster a SliTaz Live system, you just have to: boot, modify, \
   12.97 +writeiso.")</p>
   12.98 +
   12.99  <form method="get" action="$SCRIPT_NAME">
  12.100 -	`gettext "Compression type:"`
  12.101 +	$(gettext 'Compression type:')
  12.102  	<select name="write_iso">
  12.103  		<option value="gzip">gzip</option>
  12.104  		<option value="lzma">lzma</option>
  12.105 -		<option value="none">none</option>
  12.106 +		<option value="none">$(gettext 'none')</option>
  12.107  	</select>
  12.108 -	<input type="submit" value="`gettext "Write ISO"`" />
  12.109 +	<input type="submit" value="$(gettext 'Write ISO')" />
  12.110  </form> -->
  12.111  
  12.112 -<h3>`gettext "Live CD tools"`</h3>
  12.113 -<a name="loram"></a>
  12.114 -<h4>`gettext "Convert ISO to loram"`</h4>
  12.115 -<p>
  12.116 -	`gettext "This command will convert an ISO image of a SliTaz Live CD
  12.117 -	to a new ISO image requiring less RAM to run."`
  12.118 -</p>
  12.119 +
  12.120 +<h3>$(gettext 'Live CD tools')</h3>
  12.121 +
  12.122 +<h4 id="loram">$(gettext 'Convert ISO to loram')</h4>
  12.123 +
  12.124 +<p>$(gettext "This command will convert an ISO image of a SliTaz Live CD to a \
  12.125 +new ISO image requiring less RAM to run.")</p>
  12.126 +
  12.127  <form method="get" action="$SCRIPT_NAME#loram">
  12.128  	<table>
  12.129 -	<tr>
  12.130 -	<td>`gettext "ISO to convert"`
  12.131 -	<input type="text" name="input" value="/root/" /></td>
  12.132 -	</tr>
  12.133 -	<tr>
  12.134 -	<td><input type="radio" name="type" value="ram" checked />`gettext "The filesystem is always in RAM"`.</td>
  12.135 -	</tr>
  12.136 -	<tr>
  12.137 -	<td><input type="radio" name="type" value="smallcdrom" />`gettext "The filesystem may be on a small CDROM"`.</td>
  12.138 -	</tr>
  12.139 -	<tr>
  12.140 -	<td><input type="radio" name="type" value="cdrom" />`gettext "The filesystem may be on a large CDROM"`.</td>
  12.141 -	</tr>
  12.142 -	<tr>
  12.143 -	<td>`gettext "ISO to create"`
  12.144 -	<input type="text" name="loramoutput" value="/root/loram.iso" /></td>
  12.145 -	</tr>
  12.146 +		<tr>
  12.147 +			<td>$(gettext 'ISO to convert')
  12.148 +				<input type="text" accept=".iso" name="input" value="/root/" /></td>
  12.149 +		</tr>
  12.150 +		<tr>
  12.151 +			<td><input type="radio" name="type" value="ram" id="type1" checked />
  12.152 +				<label for="type1">$(gettext 'The filesystem is always in RAM')</label>
  12.153 +			</td>
  12.154 +		</tr>
  12.155 +		<tr>
  12.156 +			<td><input type="radio" name="type" value="smallcdrom" id="type2" />
  12.157 +				<label for="type2">$(gettext 'The filesystem may be on a small CDROM')</label>
  12.158 +			</td>
  12.159 +		</tr>
  12.160 +		<tr>
  12.161 +			<td><input type="radio" name="type" value="cdrom" id="type3" />
  12.162 +				<label for="type3">$(gettext 'The filesystem may be on a large CDROM')</label>
  12.163 +			</td>
  12.164 +		</tr>
  12.165 +		<tr>
  12.166 +			<td>$(gettext 'ISO to create')
  12.167 +				<input type="text" accept=".iso" name="loramoutput" value="/root/loram.iso" />
  12.168 +			</td>
  12.169 +		</tr>
  12.170  	</table>
  12.171 -	<input type="submit" value="`gettext "Convert ISO to loram"`" />
  12.172 +	<input type="submit" value="$(gettext 'Convert ISO to loram')" />
  12.173  </form>
  12.174  
  12.175 -<a name="meta"></a>
  12.176 -<h4>`gettext "Build a meta ISO"`</h4>
  12.177 -<p>
  12.178 -	`gettext "Combines several ISO flavors like nested Russian dolls.
  12.179 -	The amount of RAM available at startup will be used to select the
  12.180 -	utmost one."`
  12.181 -</p>
  12.182 +
  12.183 +<h4 id="meta">$(gettext 'Build a meta ISO')</h4>
  12.184 +
  12.185 +<p>$(gettext "Combines several ISO flavors like nested Russian dolls. The \
  12.186 +amount of RAM available at startup will be used to select the utmost one.")</p>
  12.187 +
  12.188  <form method="get" action="$SCRIPT_NAME#meta">
  12.189  	<table>
  12.190  EOT
  12.191 @@ -198,12 +206,14 @@
  12.192  			[ -n "$(GET input$i)" ] || break
  12.193  			j=$(($i + 1))
  12.194  			cat << EOT
  12.195 -	<tr>
  12.196 -	<td>`gettext "ISO number"` $j: $(GET input$i)
  12.197 -	<input type="hidden" name="input$j" value="$(GET input$i)" /></td>
  12.198 -	<td>`gettext "Minimum RAM"`: $(GET ram$i)
  12.199 -	<input type="hidden" name="ram$j" value="$(GET ram$i)" /></td>
  12.200 -	</tr>
  12.201 +		<tr>
  12.202 +			<td>$(gettext 'ISO number') $j: $(GET input$i)
  12.203 +				<input type="hidden" name="input$j" value="$(GET input$i)" />
  12.204 +			</td>
  12.205 +			<td>$(gettext 'Minimum RAM'): $(GET ram$i)
  12.206 +				<input type="hidden" name="ram$j" value="$(GET ram$i)" />
  12.207 +			</td>
  12.208 +		</tr>
  12.209  EOT
  12.210  			i=$j
  12.211  		done
  12.212 @@ -211,19 +221,22 @@
  12.213  		[ -n "$metaoutput" ] || metaoutput="/root/meta.iso"
  12.214  
  12.215  		cat << EOT
  12.216 -	<tr>
  12.217 -	<td>`gettext "ISO to add"`
  12.218 -	<input type="text" name="input" value="/root/" /></td>
  12.219 -	<td>`gettext "Minimum RAM"`
  12.220 -	<input type="text" name="ram" value="128M" />
  12.221 -	<input type="submit" name="addmeta" value="`gettext "Add to the list"`" /></td>
  12.222 -	</tr>
  12.223 -	<tr>
  12.224 -	<td>`gettext "ISO to create"`
  12.225 -	<input type="text" name="metaoutput" value="$metaoutput" /></td>
  12.226 -	</tr>
  12.227 +		<tr>
  12.228 +			<td>$(gettext 'ISO to add')
  12.229 +				<input type="text" name="input" value="/root/" />
  12.230 +			</td>
  12.231 +			<td>$(gettext 'Minimum RAM')
  12.232 +				<input type="text" name="ram" value="128M" />
  12.233 +				<input type="submit" name="addmeta" value="$(gettext 'Add to the list')" />
  12.234 +			</td>
  12.235 +		</tr>
  12.236 +		<tr>
  12.237 +			<td>$(gettext 'ISO to create')
  12.238 +				<input type="text" name="metaoutput" value="$metaoutput" />
  12.239 +			</td>
  12.240 +		</tr>
  12.241  	</table>
  12.242 -	<input type="submit" name="meta" value="`gettext "Build a meta ISO"`" />
  12.243 +	<input type="submit" name="meta" value="$(gettext 'Build a meta ISO')" />
  12.244  </form>
  12.245  
  12.246  EOT
    13.1 --- a/network.cgi	Fri May 04 12:57:53 2012 +0300
    13.2 +++ b/network.cgi	Fri May 04 13:00:43 2012 +0300
    13.3 @@ -16,16 +16,17 @@
    13.4  # networks by Cell and without spaces.
    13.5  detect_wifi_networks()
    13.6  {
    13.7 -	table_start
    13.8  	cat << EOT
    13.9 -<thead>
   13.10 -	<tr>
   13.11 -		<td>$(gettext "Name")</td>
   13.12 -		<td>$(gettext "Quality")</td>
   13.13 -		<td>$(gettext "Encryption")</td>
   13.14 -		<td>$(gettext "Status")</td>
   13.15 -	</tr>
   13.16 -</thead>
   13.17 +<table class="zebra">
   13.18 +	<thead>
   13.19 +		<tr>
   13.20 +			<td>$(gettext 'Name')</td>
   13.21 +			<td>$(gettext 'Quality')</td>
   13.22 +			<td>$(gettext 'Encryption')</td>
   13.23 +			<td>$(gettext 'Status')</td>
   13.24 +		</tr>
   13.25 +	</thead>
   13.26 +	<tbody>
   13.27  EOT
   13.28  	if [ -d /sys/class/net/$WIFI_INTERFACE/wireless ]; then
   13.29  		ifconfig $WIFI_INTERFACE up
   13.30 @@ -49,7 +50,7 @@
   13.31  			if ifconfig | grep -A 1 $WIFI_INTERFACE | \
   13.32  				fgrep -q inet && iwconfig $WIFI_INTERFACE | \
   13.33  				grep ESSID | fgrep -q -w "$ESSID"; then
   13.34 -				status=$(gettext "Connected")
   13.35 +				status=$(gettext 'Connected')
   13.36  			else
   13.37  				status="---"
   13.38  			fi
   13.39 @@ -60,7 +61,10 @@
   13.40  			echo '</tr>'
   13.41  		done
   13.42  	fi
   13.43 -	table_end
   13.44 +	cat << EOT
   13.45 +	</tbody>
   13.46 +</table>
   13.47 +EOT
   13.48  }
   13.49  
   13.50  # Start a wifi connection
   13.51 @@ -88,8 +92,9 @@
   13.52  		/etc/init.d/network.sh restart | log ;;
   13.53  	*\ start-wifi\ *) start_wifi ;;
   13.54  	*\ hostname\ *)
   13.55 -		echo $(gettext "Changed hostname:") $(GET hostname) | log
   13.56 -		echo "$(GET hostname)" > /etc/hostname ;;
   13.57 +		get_hostname="$(GET hostname)"
   13.58 +		echo $(eval_gettext 'Changed hostname: $get_hostname') | log
   13.59 +		echo "$get_hostname" > /etc/hostname ;;
   13.60  esac
   13.61  
   13.62  # Get values only now since they could have been modified by actions.
   13.63 @@ -104,15 +109,15 @@
   13.64  		# Scan open ports
   13.65  		scan=$(GET scan)
   13.66  		xhtml_header
   13.67 -		LOADING_MSG=$(gettext "Scanning open ports...")
   13.68 +		LOADING_MSG=$(gettext 'Scanning open ports...')
   13.69  		loading_msg
   13.70  		cat << EOT
   13.71 -<h2>$(gettext "Port scanning for") $scan</h2>
   13.72 -<pre>
   13.73 -$(pscan -b $scan)
   13.74 -</pre>
   13.75 +<h2>$(eval_gettext 'Port scanning for $scan')</h2>
   13.76 +
   13.77 +<pre>$(pscan -b $scan)</pre>
   13.78  EOT
   13.79  		;;
   13.80 +
   13.81  	*\ eth\ *)
   13.82  		# Wired connections settings
   13.83  		xhtml_header
   13.84 @@ -121,7 +126,7 @@
   13.85  			STATIC=no
   13.86  			[ -n "$(GET dhcp)" ] && DHCP=yes
   13.87  			[ -n "$(GET static)" ] && STATIC=yes
   13.88 -			LOADING_MSG=$(gettext "Setting up IP...")
   13.89 +			LOADING_MSG=$(gettext 'Setting up IP...')
   13.90  			loading_msg
   13.91  			sed -i \
   13.92  				-e s"/^INTERFACE=.*/INTERFACE=\"$(GET iface)\""/ \
   13.93 @@ -137,74 +142,75 @@
   13.94  			. /etc/network.conf
   13.95  		fi
   13.96  		cat << EOT
   13.97 -<h2>$(gettext "Ethernet connection")</h2>
   13.98 -<p>
   13.99 -$(gettext "Here you can configure a wired connection using DHCP to
  13.100 -automatically get a random IP or configure a static/fixed IP")
  13.101 -</p>
  13.102 -<h3>$(gettext "Configuration")</h3>
  13.103 +<h2>$(gettext 'Ethernet connection')</h2>
  13.104 +
  13.105 +<p>$(gettext "Here you can configure a wired connection using DHCP to \
  13.106 +automatically get a random IP or configure a static/fixed IP")</p>
  13.107 +
  13.108 +<h3>$(gettext 'Configuration')</h3>
  13.109  <form method="get" action="$SCRIPT_NAME">
  13.110  	<input type="hidden" name="eth" />
  13.111 -	$(table_start)
  13.112 +	<table>
  13.113  	<thead>
  13.114  		<tr>
  13.115 -			<td>$(gettext "Name")</td>
  13.116 -			<td>$(gettext "Value")</td>
  13.117 +			<td>$(gettext 'Name')</td>
  13.118 +			<td>$(gettext 'Value')</td>
  13.119  		</tr>
  13.120  	</thead>
  13.121 +	<tbody>
  13.122  	<tr>
  13.123 -		<td>$(gettext "Interface")</td>
  13.124 +		<td>$(gettext 'Interface')</td>
  13.125  		<td><input type="text" name="iface" size="20" value="$INTERFACE" /></td>
  13.126  	</tr>
  13.127  	<tr>
  13.128 -		<td>$(gettext "IP address")</td>
  13.129 +		<td>$(gettext 'IP address')</td>
  13.130  		<td><input type="text" name="ip" size="20" value="$IP" /></td>
  13.131  	</tr>
  13.132  	<tr>
  13.133 -		<td>$(gettext "Netmask")</td>
  13.134 +		<td>$(gettext 'Netmask')</td>
  13.135  		<td><input type="text" name="netmask" size="20" value="$NETMASK" /></td>
  13.136  	</tr>
  13.137  	<tr>
  13.138 -		<td>$(gettext "Gateway")</td>
  13.139 +		<td>$(gettext 'Gateway')</td>
  13.140  		<td><input type="text" name="gateway" size="20" value="$GATEWAY" /></td>
  13.141  	</tr>
  13.142  	<tr>
  13.143 -		<td>$(gettext "DNS server")</td>
  13.144 +		<td>$(gettext 'DNS server')</td>
  13.145  		<td><input type="text" name="dns" size="20" value="$DNS_SERVER" /></td>
  13.146  	</tr>
  13.147 -	$(table_end)
  13.148 -		<input type="submit" name="static" value="`gettext "Activate (static)"`">
  13.149 -		<input type="submit" name="dhcp" value="`gettext "Activate (DHCP)"`">
  13.150 -		<input type="submit" name="disable" value="`gettext "Disable"`">
  13.151 +	</tbody>
  13.152 +	</table>
  13.153 +		<input type="submit" name="static" value="$(gettext 'Activate (static)')">
  13.154 +		<input type="submit" name="dhcp" value="$(gettext 'Activate (DHCP)')">
  13.155 +		<input type="submit" name="disable" value="$(gettext 'Disable')">
  13.156  </form>
  13.157  
  13.158 -<h3>$(gettext "Configuration file")</h3>
  13.159 -<p>
  13.160 -$(gettext "These values are the ethernet settings in the main
  13.161 -/etc/network.conf configuration file")
  13.162 -</p>
  13.163 +<h3>$(gettext 'Configuration file')</h3>
  13.164 +
  13.165 +<p>$(gettext "These values are the ethernet settings in the main \
  13.166 +/etc/network.conf configuration file")</p>
  13.167  <pre>
  13.168  $(grep ^[A-V] /etc/network.conf | syntax_highlighter conf)
  13.169  </pre>
  13.170  <a class="button" href="index.cgi?file=/etc/network.conf&action=edit">
  13.171 -	<img src="$IMAGES/edit.png" />$(gettext "Manual Edit")</a>
  13.172 +	<img src="$IMAGES/edit.png" />$(gettext 'Manual Edit')</a>
  13.173  EOT
  13.174  		;;
  13.175  	*\ wifi\ *)
  13.176  		# Wireless connections settings
  13.177  		xhtml_header
  13.178 -		LOADING_MSG=$(gettext "Scanning wireless interface...")
  13.179 +		LOADING_MSG=$(gettext 'Scanning wireless interface...')
  13.180  		loading_msg
  13.181  		. /etc/network.conf
  13.182  		cat << EOT
  13.183 -<h2>$(gettext "Wireless connection")</h2>
  13.184 +<h2>$(gettext 'Wireless connection')</h2>
  13.185  <div id="actions">
  13.186  	<a class="button" href="$SCRIPT_NAME?wifi&start-wifi=start-wifi">
  13.187 -		<img src="$IMAGES/start.png" />$(gettext "Start")</a>
  13.188 +		<img src="$IMAGES/start.png" />$(gettext 'Start')</a>
  13.189  	<a class="button" href="$SCRIPT_NAME?wifi&stop=stop">
  13.190 -		<img src="$IMAGES/stop.png" />$(gettext "Stop")</a>
  13.191 +		<img src="$IMAGES/stop.png" />$(gettext 'Stop')</a>
  13.192  	<a class="button" href="$SCRIPT_NAME?wifi=scan">
  13.193 -		<img src="$IMAGES/recharge.png" />$(gettext "Scan")</a>
  13.194 +		<img src="$IMAGES/recharge.png" />$(gettext 'Scan')</a>
  13.195  </div>
  13.196  $(detect_wifi_networks)
  13.197  EOT
  13.198 @@ -231,47 +237,45 @@
  13.199  			WIFI_KEY_TYPE="$(GET keytype)"
  13.200  		fi
  13.201  	cat << EOT
  13.202 -<h3>$(gettext "Connection")</h3>
  13.203 +<h3>$(gettext 'Connection')</h3>
  13.204  <form method="get" action="$SCRIPT_NAME">
  13.205  	<input type="hidden" name="connect-wifi" />
  13.206  	$(table_start)
  13.207  	<thead>
  13.208  		<tr>
  13.209 -			<td>$(gettext "Name")</td>
  13.210 -			<td>$(gettext "Value")</td>
  13.211 +			<td>$(gettext 'Name')</td>
  13.212 +			<td>$(gettext 'Value')</td>
  13.213  		</tr>
  13.214  	</thead>
  13.215  	<tr>
  13.216 -		<td>$(gettext "Wifi name (ESSID)")</td>
  13.217 +		<td>$(gettext 'Wifi name (ESSID)')</td>
  13.218  		<td><input type="text" name="essid" size="30" value="$WIFI_ESSID" /></td>
  13.219  	</tr>
  13.220  	<tr>
  13.221 -		<td>$(gettext "Password (Wifi key)")</td>
  13.222 +		<td>$(gettext 'Password (Wifi key)')</td>
  13.223  		<td><input type="password" name="key" size="30" value="$WIFI_KEY" /></td>
  13.224  	</tr>
  13.225  	<tr>
  13.226 -		<td>$(gettext "Encryption type")</td>
  13.227 +		<td>$(gettext 'Encryption type')</td>
  13.228  		<td><input type="text" name="keytype" size="30" value="$WIFI_KEY_TYPE" /></td>
  13.229  	</tr>
  13.230  	$(table_end)
  13.231 -		<input type="submit" name="wifi" value="$(gettext "Configure")" />
  13.232 +		<input type="submit" name="wifi" value="$(gettext 'Configure')" />
  13.233  </form>
  13.234  
  13.235 -<h3>$(gettext "Configuration file")</h3>
  13.236 -<p>
  13.237 -$(gettext "These values are the wifi settings in the main
  13.238 -/etc/network.conf configuration file")
  13.239 -</p>
  13.240 -<pre>
  13.241 -$(grep ^WIFI /etc/network.conf | syntax_highlighter conf)
  13.242 -</pre>
  13.243 +<h3>$(gettext 'Configuration file')</h3>
  13.244 +
  13.245 +<p>$(gettext "These values are the wifi settings in the main /etc/network.conf \
  13.246 +configuration file")</p>
  13.247 +
  13.248 +<pre>$(grep ^WIFI /etc/network.conf | syntax_highlighter conf)</pre>
  13.249 +
  13.250  <a class="button" href="index.cgi?file=/etc/network.conf&action=edit">
  13.251 -	<img src="$IMAGES/edit.png" />$(gettext "Manual Edit")</a>
  13.252 +	<img src="$IMAGES/edit.png" />$(gettext 'Manual Edit')</a>
  13.253  
  13.254 -<h3>$(gettext "Output of") iwconfig</h3>
  13.255 -<pre>
  13.256 -$(iwconfig)
  13.257 -</pre>
  13.258 +<h3>$(gettext 'Output of iwconfig')</h3>
  13.259 +
  13.260 +<pre>$(iwconfig)</pre>
  13.261  EOT
  13.262  		;;
  13.263  	*)
  13.264 @@ -279,21 +283,21 @@
  13.265  		xhtml_header
  13.266  		hostname=$(cat /etc/hostname)
  13.267  		cat << EOT
  13.268 -<h2>`gettext "Networking"`</h2>
  13.269 -<p>
  13.270 -	`gettext "Manage network connections and services"`
  13.271 -</p>
  13.272 +<h2>$(gettext 'Networking')</h2>
  13.273 +
  13.274 +<p>$(gettext 'Manage network connections and services')</p>
  13.275 +
  13.276  <div id="actions">
  13.277  	<div class="float-left">
  13.278  		<a class="button" href="$SCRIPT_NAME?start">
  13.279 -			<img src="$IMAGES/start.png" />$(gettext "Start")</a>
  13.280 +			<img src="$IMAGES/start.png" />$(gettext 'Start')</a>
  13.281  		<a class="button" href="$SCRIPT_NAME?stop">
  13.282 -			<img src="$IMAGES/stop.png" />$(gettext "Stop")</a>
  13.283 +			<img src="$IMAGES/stop.png" />$(gettext 'Stop')</a>
  13.284  		<a class="button" href="$SCRIPT_NAME?restart">
  13.285 -			<img src="$IMAGES/recharge.png" />$(gettext "Restart")</a>
  13.286 +			<img src="$IMAGES/recharge.png" />$(gettext 'Restart')</a>
  13.287  	</div>
  13.288  	<div class="float-right">
  13.289 -		`gettext "Configuration:"`
  13.290 +		$(gettext 'Configuration:')
  13.291  		<a class="button" href="index.cgi?file=/etc/network.conf">network.conf</a>
  13.292  		<a class="button" href="$SCRIPT_NAME?eth">Ethernet</a>
  13.293  		<a class="button" href="$SCRIPT_NAME?wifi">Wireless</a>
  13.294 @@ -302,47 +306,39 @@
  13.295  
  13.296  $(list_network_interfaces)
  13.297  
  13.298 -<a name="hosts"></a>
  13.299 -<h3>$(gettext "Hosts")</h3>
  13.300 -<pre>
  13.301 -$(cat /etc/hosts)
  13.302 -</pre>
  13.303 +<h3 id="hosts">$(gettext 'Hosts')</h3>
  13.304 +
  13.305 +<pre>$(cat /etc/hosts)</pre>
  13.306 +
  13.307  <a class="button" href="index.cgi?file=/etc/hosts&action=edit">
  13.308 -	<img src="$IMAGES/edit.png" />$(gettext "Edit hosts")</a>
  13.309 +	<img src="$IMAGES/edit.png" />$(gettext 'Edit hosts')</a>
  13.310  
  13.311 -<h3>$(gettext "Hostname")</h3>
  13.312 -<form method="get" name="$SCRIPT_NAME"
  13.313 +<h3>$(gettext 'Hostname')</h3>
  13.314 +
  13.315 +<form method="get" name="$SCRIPT_NAME">
  13.316  	<input type="text" name="hostname" value="$hostname" />
  13.317 -	<input type="submit" value="$(gettext "Change hostname")"
  13.318 +	<input type="submit" value="$(gettext 'Change hostname')" />
  13.319  </form>
  13.320  
  13.321  
  13.322 -<a name="ifconfig"></a>
  13.323 -<h3>$(gettext "Output of ") ifconfig</h3>
  13.324 -<pre>
  13.325 -$(ifconfig)
  13.326 -</pre>
  13.327 +<h3 id="ifconfig">$(gettext 'Output of ifconfig')</h3>
  13.328  
  13.329 -<a name="routing"></a>
  13.330 -<h3>`gettext "Routing table"`</h3>
  13.331 -<pre>
  13.332 -$(route -n)
  13.333 -</pre>
  13.334 +<pre>$(ifconfig)</pre>
  13.335  
  13.336 -<a name="dns"></a>
  13.337 -<h3>`gettext "Domain name resolution"`</h3>
  13.338 -<pre>
  13.339 -$(cat /etc/resolv.conf)
  13.340 -</pre>
  13.341 +<h3 id="routing">$(gettext 'Routing table')</h3>
  13.342  
  13.343 -<a name="arp"></a>
  13.344 -<h3>`gettext "ARP table"`</h3>
  13.345 -<pre>
  13.346 -$(arp)
  13.347 -</pre>
  13.348 +<pre>$(route -n)</pre>
  13.349  
  13.350 -<a name="connections"></a>
  13.351 -<h3>`gettext "IP Connections"`</h3>
  13.352 +<h3 id="dns">$(gettext 'Domain name resolution')</h3>
  13.353 +
  13.354 +<pre>$(cat /etc/resolv.conf)</pre>
  13.355 +
  13.356 +<h3 id="arp">$(gettext 'ARP table')</h3>
  13.357 +
  13.358 +<pre>$(arp)</pre>
  13.359 +
  13.360 +<h3 id="connections">$(gettext 'IP Connections')</h3>
  13.361 +
  13.362  <pre>
  13.363  $(netstat -anp 2> /dev/null | sed -e '/UNIX domain sockets/,$d' \
  13.364  -e 's#\([0-9]*\)/#<a href="boot.cgi?daemons=pid=\1">\1</a>/#')
    14.1 --- a/pkgs.cgi	Fri May 04 12:57:53 2012 +0300
    14.2 +++ b/pkgs.cgi	Fri May 04 13:00:43 2012 +0300
    14.3 @@ -27,46 +27,53 @@
    14.4  	IFS="|"
    14.5  	cut -f 1,2,3,5 -d "|" | while read PACKAGE VERSION SHORT_DESC WEB_SITE
    14.6  	do
    14.7 -		echo '<tr>'
    14.8 -		if [ -d $INSTALLED/${PACKAGE% } ]; then
    14.9 -			echo -e "<td><input type='checkbox' name='pkg' value='$PACKAGE'>\n
   14.10 -				<a href='$(pkg_info_link $PACKAGE)'>
   14.11 -				<img src='$IMAGES/tazpkg-installed.png'/>$PACKAGE</a></td>"
   14.12 -		else
   14.13 -			echo -e "<td><input type='checkbox' name='pkg' value='$PACKAGE'>\n
   14.14 -				<a href='$(pkg_info_link $PACKAGE)'>
   14.15 -				<img src='$IMAGES/tazpkg.png'/>$PACKAGE</a></td>"
   14.16 -		fi
   14.17 -		echo "<td>$VERSION</td>"
   14.18 -		echo "<td class='desc'>$SHORT_DESC</td>"
   14.19 -		echo "<td><a href='$WEB_SITE'><img src='$IMAGES/browser.png'/></a></td>"
   14.20 -		echo '</tr>'
   14.21 +		image=tazpkg-installed.png
   14.22 +		[ -d $INSTALLED/${PACKAGE% } ] || image=tazpkg.png
   14.23 +		cat << EOT
   14.24 +<tr>
   14.25 +<td><input type="checkbox" name="pkg" value="$PACKAGE">
   14.26 +	<a href="$(pkg_info_link $PACKAGE)"><img
   14.27 +		src="$IMAGES/$image"/>$PACKAGE</a></td>
   14.28 +<td>$VERSION</td>
   14.29 +<td class="desc">$SHORT_DESC</td>
   14.30 +<td><a href="$WEB_SITE"><img src="$IMAGES/browser.png"/></a></td>
   14.31 +</tr>
   14.32 +EOT
   14.33  	done
   14.34  	unset IFS
   14.35  }
   14.36  
   14.37  # Display a full summary of packages stats
   14.38  packages_summary() {
   14.39 -	gettext "Last recharge        : "
   14.40 -	stat=`stat -c %y $LOCALSTATE/packages.list | \
   14.41 -		sed 's/\(:..\):.*/\1/' | awk '{print $1}'`
   14.42 -	mtime=`find $LOCALSTATE/packages.list -mtime +10`
   14.43 -	echo -n "$stat "
   14.44 +	cat << EOT
   14.45 +<table class="zebra">
   14.46 +<tbody>
   14.47 +<tr><td>$(gettext 'Last recharge:')</td>
   14.48 +EOT
   14.49 +	stat=$(stat -c %y $LOCALSTATE/packages.list | \
   14.50 +		sed 's/\(:..\):.*/\1/' | awk '{print $1}')
   14.51 +	mtime=$(find $LOCALSTATE/packages.list -mtime +10)
   14.52 +	echo -n "<td>$stat "
   14.53  	if [ "$mtime" ]; then
   14.54 -		echo "(Older than 10 days)"
   14.55 +		gettext '(Older than 10 days)'; echo
   14.56  	else
   14.57 -		echo "(Not older than 10 days)"
   14.58 +		gettext '(Not older than 10 days)'; echo
   14.59  	fi
   14.60 -	gettext "Installed packages   : "
   14.61 -	ls $INSTALLED | wc -l
   14.62 -	gettext "Mirrored packages    : "
   14.63 -	cat $LOCALSTATE/packages.list | wc -l
   14.64 -	gettext "Upgradeable packages : "
   14.65 -	cat $LOCALSTATE/packages.up | wc -l
   14.66 -	#gettext "Installed files      : "
   14.67 -	#cat $INSTALLED/*/files.list | wc -l
   14.68 -	gettext "Blocked packages     : "
   14.69 -	cat $LOCALSTATE/blocked-packages.list | wc -l
   14.70 +	cat << EOT
   14.71 +</td></tr>
   14.72 +<tr><td>$(gettext 'Installed packages:')</td>
   14.73 +	<td>$(ls $INSTALLED | wc -l)</td></tr>
   14.74 +<tr><td>$(gettext 'Mirrored packages:')</td>
   14.75 +	<td>$(cat $LOCALSTATE/packages.list | wc -l)</td></tr>
   14.76 +<tr><td>$(gettext 'Upgradeable packages:')</td>
   14.77 +	<td>$(cat $LOCALSTATE/packages.up | wc -l)</td></tr>
   14.78 +<tr><td>$(gettext 'Installed files:')</td>
   14.79 +	<td>$(cat $INSTALLED/*/files.list | wc -l)</td></tr>
   14.80 +<tr><td>$(gettext 'Blocked packages:')</td>
   14.81 +	<td>$(cat $LOCALSTATE/blocked-packages.list | wc -l)</td></tr>
   14.82 +</tbody>
   14.83 +</table>
   14.84 +EOT
   14.85  }
   14.86  
   14.87  # Parse mirrors list to be able to have an icon and remove link
   14.88 @@ -76,10 +83,10 @@
   14.89  		cat << EOT
   14.90  <li>
   14.91  	<a href="$SCRIPT_NAME?admin=rm-mirror=$line&amp;file=$(httpd -e $1)">
   14.92 -		<img src="$IMAGES/clear.png" />
   14.93 +		<img src="$IMAGES/clear.png" title="$(gettext 'Delete')" />
   14.94  	</a>
   14.95  	<a href="$SCRIPT_NAME?admin=select-mirror&amp;mirror=$line">
   14.96 -		<img src="$IMAGES/start.png" />
   14.97 +		<img src="$IMAGES/start.png" title="$(gettext 'Use as default')" />
   14.98  	</a>
   14.99  	<a href="$line">$line</a>
  14.100  </li>
  14.101 @@ -110,9 +117,9 @@
  14.102  	<form method="get" action="$SCRIPT_NAME">
  14.103  		<p>
  14.104  			<input type="text" name="search" size="20">
  14.105 -			<input type="submit" value="`gettext "Search"`">
  14.106 +			<input type="submit" value="$(gettext 'Search')">
  14.107  			<input class="radius" type="submit" name="files"
  14.108 -				value="`gettext "Files"`">
  14.109 +				value="$(gettext 'Files')">
  14.110  			<input type="hidden" name="repo" value="$repo" />
  14.111  		</p>
  14.112  	</form>
  14.113 @@ -122,12 +129,14 @@
  14.114  
  14.115  table_head() {
  14.116  	cat << EOT
  14.117 -		<tr id="thead">
  14.118 -			<td>`gettext "Name"`</td>
  14.119 -			<td>`gettext "Version"`</td>
  14.120 -			<td>`gettext "Description"`</td>
  14.121 -			<td>`gettext "Web"`</td>
  14.122 +		<thead>
  14.123 +		<tr>
  14.124 +			<td>$(gettext 'Name')</td>
  14.125 +			<td>$(gettext 'Version')</td>
  14.126 +			<td>$(gettext 'Description')</td>
  14.127 +			<td>$(gettext 'Web')</td>
  14.128  		</tr>
  14.129 +		</thead>
  14.130  EOT
  14.131  }
  14.132  
  14.133 @@ -135,30 +144,29 @@
  14.134  	[ -n "$repo" ] || repo=Public
  14.135  	cat << EOT
  14.136  <div id="sidebar">
  14.137 -	<h4>Categories</h4>
  14.138 -	<a class="active_base-system" href="$SCRIPT_NAME?cat=base-system&repo=$repo">Base-system</a>
  14.139 -	<a class="active_x-window" href="$SCRIPT_NAME?cat=x-window&repo=$repo">X window</a>
  14.140 -	<a class="active_utilities" href="$SCRIPT_NAME?cat=utilities&repo=$repo">Utilities</a>
  14.141 -	<a class="active_network" href="$SCRIPT_NAME?cat=network&repo=$repo">Network</a>
  14.142 -	<a class="active_games" href="$SCRIPT_NAME?cat=games&repo=$repo">Games</a>
  14.143 -	<a class="active_graphics" href="$SCRIPT_NAME?cat=graphics&repo=$repo">Graphics</a>
  14.144 -	<a class="active_office" href="$SCRIPT_NAME?cat=office&repo=$repo">Office</a>
  14.145 -	<a class="active_multimedia" href="$SCRIPT_NAME?cat=multimedia&repo=$repo">Multimedia</a>
  14.146 -	<a class="active_development" href="$SCRIPT_NAME?cat=development&repo=$repo">Development</a>
  14.147 -	<a class="active_system-tools" href="$SCRIPT_NAME?cat=system-tools&repo=$repo">System tools</a>
  14.148 -	<a class="active_security" href="$SCRIPT_NAME?cat=security&repo=$repo">Security</a>
  14.149 -	<a class="active_misc" href="$SCRIPT_NAME?cat=misc&repo=$repo">Misc</a>
  14.150 -	<a class="active_meta" href="$SCRIPT_NAME?cat=meta&repo=$repo">Meta</a>
  14.151 -	<a class="active_non-free" href="$SCRIPT_NAME?cat=non-free&repo=$repo">Non free</a>
  14.152 -	<a class="active_all" href="$SCRIPT_NAME?cat=all&repo=$repo">All</a>
  14.153 +	<h4>$(gettext 'Categories')</h4>
  14.154 +	<a class="active_base-system" href="$SCRIPT_NAME?cat=base-system&repo=$repo">$(gettext 'Base-system')</a>
  14.155 +	<a class="active_x-window" href="$SCRIPT_NAME?cat=x-window&repo=$repo">$(gettext 'X window')</a>
  14.156 +	<a class="active_utilities" href="$SCRIPT_NAME?cat=utilities&repo=$repo">$(gettext 'Utilities')</a>
  14.157 +	<a class="active_network" href="$SCRIPT_NAME?cat=network&repo=$repo">$(gettext 'Network')</a>
  14.158 +	<a class="active_games" href="$SCRIPT_NAME?cat=games&repo=$repo">$(gettext 'Games')</a>
  14.159 +	<a class="active_graphics" href="$SCRIPT_NAME?cat=graphics&repo=$repo">$(gettext 'Graphics')</a>
  14.160 +	<a class="active_office" href="$SCRIPT_NAME?cat=office&repo=$repo">$(gettext 'Office')</a>
  14.161 +	<a class="active_multimedia" href="$SCRIPT_NAME?cat=multimedia&repo=$repo">$(gettext 'Multimedia')</a>
  14.162 +	<a class="active_development" href="$SCRIPT_NAME?cat=development&repo=$repo">$(gettext 'Development')</a>
  14.163 +	<a class="active_system-tools" href="$SCRIPT_NAME?cat=system-tools&repo=$repo">$(gettext 'System tools')</a>
  14.164 +	<a class="active_security" href="$SCRIPT_NAME?cat=security&repo=$repo">$(gettext 'Security')</a>
  14.165 +	<a class="active_misc" href="$SCRIPT_NAME?cat=misc&repo=$repo">$(gettext 'Misc')</a>
  14.166 +	<a class="active_meta" href="$SCRIPT_NAME?cat=meta&repo=$repo">$(gettext 'Meta')</a>
  14.167 +	<a class="active_non-free" href="$SCRIPT_NAME?cat=non-free&repo=$repo">$(gettext 'Non free')</a>
  14.168 +	<a class="active_all" href="$SCRIPT_NAME?cat=all&repo=$repo">$(gettext 'All')</a>
  14.169  EOT
  14.170  
  14.171  	if [ -d $LOCALSTATE/undigest ]; then
  14.172  		[ -n "$category" ] || category="base-system"
  14.173  		cat << EOT
  14.174 -	<p></p>
  14.175 -	<h4>Repositories</h4>
  14.176 -	<a class="repo_Public" href="$SCRIPT_NAME?repo=Public&cat=$category">Public</a>
  14.177 +	<h4>$(gettext 'Repositories')</h4>
  14.178 +	<a class="repo_Public" href="$SCRIPT_NAME?repo=Public&cat=$category">$(gettext 'Public')</a>
  14.179  EOT
  14.180  		for i in $(ls $LOCALSTATE/undigest); do
  14.181  			cat << EOT
  14.182 @@ -166,7 +174,7 @@
  14.183  EOT
  14.184  		done
  14.185  		cat << EOT
  14.186 -	<a class="repo_Any" href="$SCRIPT_NAME?repo=Any&cat=$category">Any</a>
  14.187 +	<a class="repo_Any" href="$SCRIPT_NAME?repo=Any&cat=$category">$(gettext 'Any')</a>
  14.188  EOT
  14.189  	fi
  14.190  	echo "</div>"
  14.191 @@ -206,25 +214,30 @@
  14.192  		cd $INSTALLED
  14.193  		search_form
  14.194  		sidebar
  14.195 -		LOADING_MSG="Listing packages..."
  14.196 +		LOADING_MSG="$(gettext 'Listing packages...')"
  14.197  		loading_msg
  14.198  		cat << EOT
  14.199 -<h2>`gettext "My packages"`</h2>
  14.200 +<h2>$(gettext 'My packages')</h2>
  14.201  <form method='get' action='$SCRIPT_NAME'>
  14.202 +	<input type="hidden" name="do" value="Remove" />
  14.203  <div id="actions">
  14.204  	<div class="float-left">
  14.205 -		`gettext "Selection:"`
  14.206 -		<input type="submit" name="do" value="Remove" />
  14.207 +		$(gettext 'Selection:')
  14.208 +		<input type="submit" value="$(gettext 'Remove')" />
  14.209  	</div>
  14.210  	<div class="float-right">
  14.211 -		`gettext "List:"`
  14.212 -		<input type="submit" name="recharge" value="Recharge" />
  14.213 -		<input type="submit" name="up" value="Upgrade" />
  14.214 +		<a class="button" href="$SCRIPT_NAME?recharge">
  14.215 +			<img src="$IMAGES/recharge.png" />$(gettext 'Recharge list')</a>
  14.216 +		<a class="button" href='$SCRIPT_NAME?up'>
  14.217 +			<img src="$IMAGES/update.png" />$(gettext 'Check upgrades')</a>
  14.218  	</div>
  14.219  </div>
  14.220  EOT
  14.221 -		table_start
  14.222 -		table_head
  14.223 +		cat << EOT
  14.224 +<table class="zebra">
  14.225 +$(table_head)
  14.226 +<tbody>
  14.227 +EOT
  14.228  		for pkg in *
  14.229  		do
  14.230  			. $pkg/receipt
  14.231 @@ -234,17 +247,24 @@
  14.232  			colorpkg=$pkg
  14.233  			grep -qs "^$pkg$" $LOCALSTATE/blocked-packages.list &&
  14.234  				colorpkg="<span style='color: red;'>$pkg</span>"
  14.235 -			echo "<td class='pkg'>
  14.236 -				<input type='checkbox' name='pkg' value=\"$pkg\" />
  14.237 -				<a href='$(pkg_info_link $pkg)'><img
  14.238 -					src='$IMAGES/tazpkg-installed.png'/>$colorpkg</a></td>"
  14.239 -			echo "<td>$VERSION</td>"
  14.240 -			echo "<td class='desc'>$SHORT_DESC</td>"
  14.241 -			echo "<td><a href='$WEB_SITE'><img src='$IMAGES/browser.png'/></a></td>"
  14.242 -			echo '</tr>'
  14.243 +			cat << EOT
  14.244 +<td class="pkg">
  14.245 +	<input type="checkbox" name="pkg" value="$pkg" />
  14.246 +		<a href="$(pkg_info_link $pkg)"><img
  14.247 +			src="$IMAGES/tazpkg-installed.png"/>$colorpkg</a></td>
  14.248 +<td>$VERSION</td>
  14.249 +<td class="desc">$SHORT_DESC</td>
  14.250 +<td><a href="$WEB_SITE"><img src="$IMAGES/browser.png"/></a></td>
  14.251 +</tr>
  14.252 +EOT
  14.253  		done
  14.254 -		table_end
  14.255 -		echo '</form>' ;;
  14.256 +		cat << EOT
  14.257 +</tbody>
  14.258 +</table>
  14.259 +</form>
  14.260 +EOT
  14.261 +		;;
  14.262 +
  14.263  	*\ linkable\ *)
  14.264  		#
  14.265  		# List linkable packages.
  14.266 @@ -252,42 +272,57 @@
  14.267  		cd $INSTALLED
  14.268  		search_form
  14.269  		sidebar
  14.270 -		LOADING_MSG="Listing linkable packages..."
  14.271 +		LOADING_MSG=$(gettext 'Listing linkable packages...')
  14.272  		loading_msg
  14.273  		cat << EOT
  14.274 -<h2>`gettext "Linkable packages"`</h2>
  14.275 +<h2>$(gettext 'Linkable packages')</h2>
  14.276 +
  14.277  <form method='get' action='$SCRIPT_NAME'>
  14.278 +	<input type="hidden" name="do" value="Link" />
  14.279  <div id="actions">
  14.280  	<div class="float-left">
  14.281 -		`gettext "Selection:"`
  14.282 -		<input type="submit" name="do" value="Link" />
  14.283 +		$(gettext 'Selection:')
  14.284 +		<input type="submit" value="$(gettext 'Link')" />
  14.285  	</div>
  14.286  	<div class="float-right">
  14.287 -		`gettext "List:"`
  14.288 -		<input type="submit" name="recharge" value="Recharge" />
  14.289 -		<input type="submit" name="up" value="Upgrade" />
  14.290 +		<a class="button" href="$SCRIPT_NAME?recharge">
  14.291 +			<img src="$IMAGES/recharge.png" />$(gettext 'Recharge list')</a>
  14.292 +		<a class="button" href="$SCRIPT_NAME?up">
  14.293 +			<img src="$IMAGES/update.png" />$(gettext 'Check upgrades')</a>
  14.294  	</div>
  14.295  </div>
  14.296  EOT
  14.297 -		table_start
  14.298 -		table_head
  14.299 +		cat << EOT
  14.300 +<table class="zebra">
  14.301 +$(table_head)
  14.302 +<tbody>
  14.303 +EOT
  14.304  		target=$(readlink $LOCALSTATE/fslink)
  14.305  		for pkg in $(ls $target/$INSTALLED)
  14.306  		do
  14.307  			[ -s $pkg/receipt ] && continue
  14.308  			. $target/$INSTALLED/$pkg/receipt
  14.309 -			echo '<tr>'
  14.310 -			echo "<td class='pkg'>
  14.311 -				<input type='checkbox' name='pkg' value=\"$pkg\" />
  14.312 -				<a href='$(pkg_info_link $pkg)'><img
  14.313 -					src='$IMAGES/tazpkg.png'/>$pkg</a></td>"
  14.314 -			echo "<td>$VERSION</td>"
  14.315 -			echo "<td class='desc'>$SHORT_DESC</td>"
  14.316 -			echo "<td><a href='$WEB_SITE'><img src='$IMAGES/browser.png'/></a></td>"
  14.317 -			echo '</tr>'
  14.318 +			cat << EOT
  14.319 +<tr>
  14.320 +	<td class="pkg">
  14.321 +		<input type="checkbox" name="pkg" value="$pkg" />
  14.322 +			<a href="$(pkg_info_link $pkg)"><img
  14.323 +				src="$IMAGES/tazpkg.png"/>$pkg</a>
  14.324 +	</td>
  14.325 +	<td>$VERSION</td>
  14.326 +	<td class="desc">$SHORT_DESC</td>
  14.327 +	<td><a href="$WEB_SITE"><img src="$IMAGES/browser.png"/></a></td>
  14.328 +</tr>
  14.329 +EOT
  14.330  		done
  14.331 -		table_end
  14.332 -		echo '</form>' ;;
  14.333 +		cat << EOT
  14.334 +</tbody>
  14.335 +</table>
  14.336 +</form>
  14.337 +EOT
  14.338 +		;;
  14.339 +
  14.340 +
  14.341  	*\ cat\ *)
  14.342  		#
  14.343  		# List all available packages by category on mirror. Listing all
  14.344 @@ -301,37 +336,51 @@
  14.345  		[ "$grep_category" == "all" ] && grep_category=".*"
  14.346  		search_form
  14.347  		sidebar | sed "s/active_$category/active/;s/repo_$repo/active/"
  14.348 -		LOADING_MSG="Listing packages..."
  14.349 +		LOADING_MSG="$(gettext 'Listing packages...')"
  14.350  		loading_msg
  14.351  		cat << EOT
  14.352 -<h2>`gettext "Category:"` $category</h2>
  14.353 +<h2>$(eval_gettext 'Category: $category')</h2>
  14.354 +
  14.355  <form method='get' action='$SCRIPT_NAME'>
  14.356  <div id="actions">
  14.357  <div class="float-left">
  14.358 -	`gettext "Selection:"`
  14.359 +	$(gettext 'Selection:')
  14.360  	<input type="submit" name="do" value="Install" />
  14.361  	<input type="submit" name="do" value="Remove" />
  14.362  	<input type="hidden" name="repo" value="$repo" />
  14.363  </div>
  14.364  <div class="float-right">
  14.365 -	`gettext "List:"`
  14.366 -	<input type="submit" name="recharge" value="Recharge" />
  14.367 -	<input type="submit" name="up" value="Upgrade" />
  14.368 +	<a class="button" href="$SCRIPT_NAME?recharge">
  14.369 +		<img src="$IMAGES/recharge.png" />$(gettext 'Recharge list')</a>
  14.370 +	<a class="button" href="$SCRIPT_NAME?up">
  14.371 +		<img src="$IMAGES/update.png" />$(gettext 'Check upgrades')</a>
  14.372  	<a class="button" href='$SCRIPT_NAME?list'>
  14.373 -		<img src="$IMAGES/tazpkg.png" />`gettext "My packages"`</a>
  14.374 +		<img src="$IMAGES/tazpkg.png" />$(gettext 'My packages')</a>
  14.375  </div>
  14.376  </div>
  14.377  EOT
  14.378  		for i in $(repo_list ""); do
  14.379 -			[ "$repo" != "Public" ] &&
  14.380 -				echo "<h3>Repository: $(repo_name $i)</h3>"
  14.381 -			table_start
  14.382 -			table_head
  14.383 +			if [ "$repo" != "Public" ]; then
  14.384 +				Repo_Name="$(repo_name $i)"
  14.385 +				cat << EOT
  14.386 +<h3>$(eval_gettext "Repository: \$Repo_Name")</h3>
  14.387 +EOT
  14.388 +			fi
  14.389 +			cat << EOT
  14.390 +<table class="zebra">
  14.391 +$(table_head)
  14.392 +<tbody>
  14.393 +EOT
  14.394  			grep "| $grep_category |" $i/packages.desc | \
  14.395  				parse_packages_desc
  14.396 -			table_end
  14.397 +			cat << EOT
  14.398 +</tbody>
  14.399 +</table>
  14.400 +EOT
  14.401  		done
  14.402  		echo '</form>' ;;
  14.403 +
  14.404 +
  14.405  	*\ search\ *)
  14.406  		#
  14.407  		# Search for packages. Here default is to search in packages.desc
  14.408 @@ -342,92 +391,108 @@
  14.409  		cd  $LOCALSTATE
  14.410  		search_form
  14.411  		sidebar | sed "s/repo_$repo/active/"
  14.412 -		LOADING_MSG="Searching packages..."
  14.413 +		LOADING_MSG="$(gettext 'Searching packages...')"
  14.414  		loading_msg
  14.415  		cat << EOT
  14.416 -<h2>`gettext "Search packages"`</h2>
  14.417 +<h2>$(gettext 'Search packages')</h2>
  14.418  <form method="get" action="$SCRIPT_NAME">
  14.419  <div id="actions">
  14.420  <div class="float-left">
  14.421 -	`gettext "Selection:"`
  14.422 +	$(gettext 'Selection:')
  14.423  	<input type="submit" name="do" value="Install" />
  14.424  	<input type="submit" name="do" value="Remove" />
  14.425 -	<a href="`cat $PANEL/lib/checkbox.js`">`gettext "Toogle all"`</a>
  14.426 +	<a href="`cat $PANEL/lib/checkbox.js`">$(gettext 'Toogle all')</a>
  14.427  </div>
  14.428  <div class="float-right">
  14.429 -	`gettext "List:"`
  14.430 -	<input type="submit" name="recharge" value="Recharge" />
  14.431 -	<input type="submit" name="up" value="Upgrade" />
  14.432 +	<a class="button" href="$SCRIPT_NAME?recharge">
  14.433 +		<img src="$IMAGES/recharge.png" />$(gettext 'Recharge list')</a>
  14.434 +	<a class="button" href="$SCRIPT_NAME?up">
  14.435 +		<img src="$IMAGES/update.png" />$(gettext 'Check upgrades')</a>
  14.436  	<a class="button" href='$SCRIPT_NAME?list'>
  14.437 -		<img src="$IMAGES/tazpkg.png" />`gettext "My packages"`</a>
  14.438 +		<img src="$IMAGES/tazpkg.png" />$(gettext 'My packages')</a>
  14.439  </div>
  14.440  </div>
  14.441  	<input type="hidden" name="repo" value="$repo" />
  14.442 +
  14.443 +	<table class="zebra">
  14.444  EOT
  14.445 -		table_start
  14.446  		if [ "$(GET files)" ]; then
  14.447  			cat <<EOT
  14.448 -		<tr id="thead">
  14.449 -			<td>`gettext "Package"`</td>
  14.450 -			<td>`gettext "File"`</td>
  14.451 +	<thead>
  14.452 +		<tr>
  14.453 +			<td>$(gettext 'Package')</td>
  14.454 +			<td>$(gettext 'File')</td>
  14.455  		</tr>
  14.456 -		$(unlzma -c $(repo_list /files.list.lzma) \
  14.457 -		  | grep -Ei ": .*$(GET search)" | \
  14.458 -		  while read PACKAGE FILE; do
  14.459 -		  	PACKAGE=${PACKAGE%:}
  14.460 -		  	image=tazpkg-installed.png
  14.461 -		  	[ -d $INSTALLED/$PACKAGE ] || image=tazpkg.png
  14.462 -		  	echo "<tr>
  14.463 -	<td><input type='checkbox' name='pkg' value='$PACKAGE'>
  14.464 -	    <a href='$(pkg_info_link $PACKAGE)'><img src='$IMAGES/$image' />$PACKAGE</a></td>
  14.465 +	<thead>
  14.466 +	<tbody>
  14.467 +EOT
  14.468 +			unlzma -c $(repo_list /files.list.lzma) \
  14.469 +				| grep -Ei ": .*$(GET search)" | \
  14.470 +				while read PACKAGE FILE; do
  14.471 +					PACKAGE=${PACKAGE%:}
  14.472 +					image=tazpkg-installed.png
  14.473 +					[ -d $INSTALLED/$PACKAGE ] || image=tazpkg.png
  14.474 +					cat << EOT
  14.475 +<tr>
  14.476 +	<td><input type="checkbox" name="pkg" value="$PACKAGE">
  14.477 +		<a href="$(pkg_info_link $PACKAGE)"><img src="$IMAGES/$image" />$PACKAGE</a></td>
  14.478  	<td>$FILE</td>
  14.479 -</tr>"
  14.480 -		 done)
  14.481 +</tr>
  14.482  EOT
  14.483 +				done
  14.484  		else
  14.485 -			table_head
  14.486 +			cat << EOT
  14.487 +$(table_head)
  14.488 +	<tbody>
  14.489 +EOT
  14.490  			grep -ih $pkg $(repo_list /packages.desc) | \
  14.491  				parse_packages_desc
  14.492  		fi
  14.493 -		table_end
  14.494 -		echo '</form>' ;;
  14.495 +		cat << EOT
  14.496 +	</tbody>
  14.497 +	</table>
  14.498 +</form>
  14.499 +EOT
  14.500 +		;;
  14.501 +
  14.502 +
  14.503  	*\ recharge\ *)
  14.504  		#
  14.505  		# Lets recharge the packages list
  14.506  		#
  14.507  		search_form
  14.508  		sidebar
  14.509 -		LOADING_MSG="Recharging lists..."
  14.510 +		LOADING_MSG="$(gettext 'Recharging lists...')"
  14.511  		loading_msg
  14.512  		cat << EOT
  14.513 -<h2>`gettext "Recharge"`</h2>
  14.514 +<h2>$(gettext 'Recharge')</h2>
  14.515 +
  14.516  <form method='get' action='$SCRIPT_NAME'>
  14.517  <div id="actions">
  14.518  	<div class="float-left">
  14.519 -		<p>
  14.520 -			`gettext "Recharge checks for new or updated packages"`
  14.521 -		</p>
  14.522 +		<p>$(gettext 'Recharge checks for new or updated packages')</p>
  14.523  	</div>
  14.524  	<div class="float-right">
  14.525 -		<p>
  14.526 -			<a class="button" href='$SCRIPT_NAME?up'>
  14.527 -				<img src="$IMAGES/update.png" />`gettext "Check upgrades"`</a>
  14.528 -			<a class="button" href='$SCRIPT_NAME?list'>
  14.529 -				<img src="$IMAGES/tazpkg.png" />`gettext "My packages"`</a>
  14.530 -		</p>
  14.531 +		<a class="button" href='$SCRIPT_NAME?up'>
  14.532 +			<img src="$IMAGES/update.png" />$(gettext 'Check upgrades')</a>
  14.533 +		<a class="button" href='$SCRIPT_NAME?list'>
  14.534 +			<img src="$IMAGES/tazpkg.png" />$(gettext 'My packages')</a>
  14.535  	</div>
  14.536  </div>
  14.537 +<div class="wrapper">
  14.538  <pre>
  14.539  EOT
  14.540 -		gettext "Recharging packages list" | log
  14.541 +		echo $(gettext 'Recharging packages list') | log
  14.542  		tazpkg recharge | filter_taztools_msgs
  14.543  		cat << EOT
  14.544  </pre>
  14.545 -<p>
  14.546 -	`gettext "Packages lists are up-to-date. You should check for upgrades now."`
  14.547 -</p>
  14.548 +</div>
  14.549 +<p>$(gettext "Packages lists are up-to-date. You should check for upgrades \
  14.550 +now.")</p>
  14.551  EOT
  14.552  		;;
  14.553 +
  14.554 +
  14.555  	*\ up\ *)
  14.556  		#
  14.557  		# Upgrade packages
  14.558 @@ -435,37 +500,47 @@
  14.559  		cd $LOCALSTATE
  14.560  		search_form
  14.561  		sidebar
  14.562 -		LOADING_MSG="Checking for upgrades..."
  14.563 +		LOADING_MSG="$(gettext 'Checking for upgrades...')"
  14.564  		loading_msg
  14.565  		cat << EOT
  14.566 -<h2>`gettext "Up packages"`</h2>
  14.567 +<h2>$(gettext 'Up packages')</h2>
  14.568 +
  14.569  <form method="get" action="$SCRIPT_NAME">
  14.570  <div id="actions">
  14.571  	<div class="float-left">
  14.572 -		`gettext "Selection:"`
  14.573 +		$(gettext 'Selection:')
  14.574  		<input type="submit" name="do" value="Install" />
  14.575  		<input type="submit" name="do" value="Remove" />
  14.576 -		<a href="`cat $PANEL/lib/checkbox.js`">`gettext "Toogle all"`</a>
  14.577 +		<a href="$(cat $PANEL/lib/checkbox.js)">$(gettext 'Toogle all')</a>
  14.578  	</div>
  14.579  	<div class="float-right">
  14.580 -		`gettext "List:"`
  14.581 -		<input type="submit" name="recharge" value="Recharge" />
  14.582 -		<a class="button" href='$SCRIPT_NAME?list'>
  14.583 -			<img src="$IMAGES/tazpkg.png" />`gettext "My packages"`</a>
  14.584 +		<a class="button" href="$SCRIPT_NAME?recharge">
  14.585 +			<img src="$IMAGES/recharge.png" />$(gettext 'Recharge list')</a>
  14.586 +		<a class="button" href="$SCRIPT_NAME?list">
  14.587 +			<img src="$IMAGES/tazpkg.png" />$(gettext 'My packages')</a>
  14.588  	</div>
  14.589  </div>
  14.590  EOT
  14.591  		tazpkg up --check >/dev/null
  14.592 -		table_start
  14.593 -		table_head
  14.594 +		cat << EOT
  14.595 +<table class="zebra">
  14.596 +$(table_head)
  14.597 +<tbody>
  14.598 +EOT
  14.599  		for pkg in `cat packages.up`
  14.600  		do
  14.601  			grep -hs "^$pkg |" $LOCALSTATE/packages.desc \
  14.602  				$LOCALSTATE/undigest/*/packages.desc | \
  14.603  				parse_packages_desc
  14.604  		done
  14.605 -		table_end
  14.606 -		echo '</form>' ;;
  14.607 +		cat << EOT
  14.608 +</tbody>
  14.609 +</table>
  14.610 +</form>
  14.611 +EOT
  14.612 +		;;
  14.613 +
  14.614 +
  14.615  	*\ do\ *)
  14.616  		#
  14.617  		# Do an action on one or some packages
  14.618 @@ -480,40 +555,44 @@
  14.619  		cmd=$(echo $cmd | tr [:upper:] [:lower:])
  14.620  		case $cmd in
  14.621  			install)
  14.622 -				cmd=get-install opt=--forced ;;
  14.623 +				cmd=get-install opt=--forced
  14.624 +				LOADING_MSG="get-installing packages..."
  14.625 +				;;
  14.626  			link)
  14.627 -				opt=$(readlink $LOCALSTATE/fslink) ;;
  14.628 +				opt=$(readlink $LOCALSTATE/fslink)
  14.629 +				LOADING_MSG="linking packages..."
  14.630 +				;;
  14.631  		esac
  14.632  		search_form
  14.633  		sidebar
  14.634 -		LOADING_MSG="${cmd}ing packages..."
  14.635  		loading_msg
  14.636  		cat << EOT
  14.637  <h2>Tazpkg: $cmd</h2>
  14.638 +
  14.639  <form method="get" action="$SCRIPT_NAME">
  14.640  <div id="actions">
  14.641  	<div class="float-left">
  14.642 -		<p>
  14.643 -			`gettext "Performing tasks on packages"`
  14.644 -		</p>
  14.645 +		<p>$(gettext 'Performing tasks on packages')</p>
  14.646  	</div>
  14.647  	<div class="float-right">
  14.648  		<p>
  14.649 -			<a class="button" href='$SCRIPT_NAME?list'>
  14.650 -				<img src="$IMAGES/tazpkg.png" />`gettext "My packages"`</a>
  14.651 +			<a class="button" href="$SCRIPT_NAME?list">
  14.652 +				<img src="$IMAGES/tazpkg.png" />$(gettext 'My packages')</a>
  14.653  		</p>
  14.654  	</div>
  14.655  </div>
  14.656 +<div class="box">
  14.657 +$(eval_gettext 'Executing $cmd for: $pkgs')
  14.658 +</div>
  14.659  EOT
  14.660 -		echo '<div class="box">'
  14.661 -		gettext "Executing $cmd for:$pkgs"
  14.662 -		echo '</div>'
  14.663  		for pkg in $pkgs
  14.664  		do
  14.665  			echo '<pre>'
  14.666  			echo 'y' | tazpkg $cmd $pkg $opt 2>/dev/null | filter_taztools_msgs
  14.667  			echo '</pre>'
  14.668  		done ;;
  14.669 +
  14.670 +
  14.671  	*\ info\ *)
  14.672  		#
  14.673  		# Packages info
  14.674 @@ -524,10 +603,11 @@
  14.675  		if [ -d $INSTALLED/$pkg ]; then
  14.676  			. $INSTALLED/$pkg/receipt
  14.677  			files=`cat $INSTALLED/$pkg/files.list | wc -l`
  14.678 -			action=$(gettext "Remove")
  14.679 +			action="Remove"
  14.680 +			action_i18n=$(gettext 'Remove')
  14.681  		else
  14.682  			cd  $LOCALSTATE
  14.683 -			LOADING_MSG=$(gettext "Getting package info...")
  14.684 +			LOADING_MSG=$(gettext 'Getting package info...')
  14.685  			loading_msg
  14.686  			IFS='|'
  14.687  			set -- $(grep -hs "^$pkg |" packages.desc \
  14.688 @@ -538,32 +618,36 @@
  14.689  			SHORT_DESC="$(echo $3)"
  14.690  			CATEGORY="$(echo $4)"
  14.691  			WEB_SITE="$(echo $5)"
  14.692 -			action=$(gettext "Install")
  14.693 +			action="Install"
  14.694 +			action_i18n=$(gettext 'Install')
  14.695  			temp="$(echo $pkg | sed 's/get-//g')"
  14.696  		fi
  14.697  		cat << EOT
  14.698 -<h2>`gettext "Package"` $PACKAGE</h2>
  14.699 +<h2>$(eval_gettext 'Package $PACKAGE')</h2>
  14.700 +
  14.701  <div id="actions">
  14.702  	<div class="float-left">
  14.703  		<p>
  14.704  EOT
  14.705 -		if [ "$temp" != "$pkg" -a "$action" == $(gettext "Install") ]; then
  14.706 +		if [ "$temp" != "$pkg" -a "$action" == "Install" ]; then
  14.707  			temp="$(echo $pkg | sed 's/get-//g')"
  14.708 -			echo "<a class='button' href='$SCRIPT_NAME?do=$action&$temp'>$action (Non Free)</a>"
  14.709 +			echo "<a class='button' href='$SCRIPT_NAME?do=Install&$temp'>$(gettext 'Install (Non Free)')</a>"
  14.710  		else
  14.711 -
  14.712 -			echo "<a class='button' href='$SCRIPT_NAME?do=$action&$pkg'>$action</a>"
  14.713 +			echo "<a class='button' href='$SCRIPT_NAME?do=$action&$pkg'>$action_i18n</a>"
  14.714  		fi
  14.715  
  14.716  		if [ -d $INSTALLED/$pkg ]; then
  14.717  			if grep -qs "^$pkg$" $LOCALSTATE/blocked-packages.list; then
  14.718 -				block=$(gettext "Unblock")
  14.719 +				cat << EOT
  14.720 +			<a class="button" href="$SCRIPT_NAME?do=Unblock&$pkg">$(gettext 'Unblock')</a>
  14.721 +EOT
  14.722  			else
  14.723 -				block=$(gettext "Block")
  14.724 +				cat << EOT
  14.725 +			<a class="button" href='$SCRIPT_NAME?do=Block&$pkg'>$(gettext 'Block')</a>
  14.726 +EOT
  14.727  			fi
  14.728  			cat << EOT
  14.729 -			<a class="button" href='$SCRIPT_NAME?do=$block&$pkg'>$block</a>
  14.730 -			<a class="button" href='$SCRIPT_NAME?do=Repack&$pkg'>Repack</a>
  14.731 +			<a class="button" href='$SCRIPT_NAME?do=Repack&$pkg'>$(gettext 'Repack')</a>
  14.732  EOT
  14.733  		fi
  14.734  		cat << EOT
  14.735 @@ -572,53 +656,56 @@
  14.736  	<div class="float-right">
  14.737  		<p>
  14.738  			<a class="button" href='$SCRIPT_NAME?list'>
  14.739 -				<img src="$IMAGES/tazpkg.png" />`gettext "My packages"`</a>
  14.740 +				<img src="$IMAGES/tazpkg.png" />$(gettext 'My packages')</a>
  14.741  		</p>
  14.742  	</div>
  14.743  </div>
  14.744 -<pre>
  14.745 -Name        : $PACKAGE
  14.746 -Version     : $VERSION
  14.747 -Description : $SHORT_DESC
  14.748 -Category    : $CATEGORY
  14.749 +<table class="zebra">
  14.750 +<tbody>
  14.751 +	<tr><td>$(gettext 'Name:')</td><td>$PACKAGE</td></tr>
  14.752 +	<tr><td>$(gettext 'Version:')</td><td>$VERSION</td></tr>
  14.753 +	<tr><td>$(gettext 'Description:')</td><td>$SHORT_DESC</td></tr>
  14.754 +	<tr><td>$(gettext 'Category:')</td><td>$CATEGORY</td></tr>
  14.755  EOT
  14.756  		if [ -d $INSTALLED/$pkg ]; then
  14.757  			cat << EOT
  14.758 -Maintainer  : $MAINTAINER
  14.759 -Website     : <a href="$WEB_SITE">$WEB_SITE</a>
  14.760 -Sizes       : $PACKED_SIZE/$UNPACKED_SIZE
  14.761 +	<tr><td>$(gettext 'Maintainer:')</td><td>$MAINTAINER</td></tr>
  14.762 +	<tr><td>$(gettext 'Website:')</td><td><a href="$WEB_SITE">$WEB_SITE</a></td></tr>
  14.763 +	<tr><td>$(gettext 'Sizes:')</td><td>$PACKED_SIZE/$UNPACKED_SIZE</td></tr>
  14.764  EOT
  14.765  			if [ -n "$DEPENDS" ]; then
  14.766 -				echo -n "Depends     : "
  14.767 +				echo "<tr><td>$(gettext 'Depends:')</td><td>"
  14.768  				for i in $DEPENDS; do
  14.769  					echo -n "<a href="$(pkg_info_link $i)">$i</a> "
  14.770  				done
  14.771 -				echo ""
  14.772 +				echo "</td></tr>"
  14.773  			fi
  14.774  			if [ -n "$SUGGESTED" ]; then
  14.775 -				echo -n "Suggested   : "
  14.776 +				echo "<tr><td>$(gettext 'Suggested:')</td><td>"
  14.777  				for i in $SUGGESTED; do
  14.778  					echo -n "<a href="$(pkg_info_link $i)">$i</a> "
  14.779  				done
  14.780 -				echo ""
  14.781 +				echo "</td></tr>"
  14.782  			fi
  14.783 -			[ -n "$TAGS" ] && echo "Tags        : $TAGS"
  14.784 +			[ -n "$TAGS" ] && echo "<tr><td>$(gettext 'Tags:')</td><td>$TAGS</td></tr>"
  14.785 +			I_FILES=$(cat $INSTALLED/$pkg/files.list | wc -l)
  14.786  			cat << EOT
  14.787 -</pre>
  14.788 +</tbody>
  14.789 +</table>
  14.790  
  14.791 -<p>`gettext "Installed files:"` `cat $INSTALLED/$pkg/files.list | wc -l`</p>
  14.792 -<pre>
  14.793 -`cat $INSTALLED/$pkg/files.list`
  14.794 -</pre>
  14.795 +<p>$(eval_gettext 'Installed files: $I_FILES')</p>
  14.796 +
  14.797 +<pre>$(cat $INSTALLED/$pkg/files.list)</pre>
  14.798  EOT
  14.799  		else
  14.800  			cat << EOT
  14.801 -Website     : <a href="$WEB_SITE">$WEB_SITE</a>
  14.802 -Sizes       : `grep -hsA 3 ^$pkg$ packages.txt undigest/*/packages.txt | \
  14.803 -		tail -n 1 | sed 's/ *//'`
  14.804 -</pre>
  14.805 +<tr><td>$(gettext 'Website:')</td><td><a href="$WEB_SITE">$WEB_SITE</a></td></tr>
  14.806 +<tr><td>$(gettext 'Sizes:')</td><td>$(grep -hsA 3 ^$pkg$ packages.txt undigest/*/packages.txt | \
  14.807 +		tail -n 1 | sed 's/ *//')</td></tr>
  14.808 +</table>
  14.809  
  14.810 -<p>`gettext "Installed files:"`</p>
  14.811 +<p>$(gettext 'Installed files:')</p>
  14.812 +
  14.813  <pre>
  14.814  `unlzma -c files.list.lzma undigest/*/files.list.lzma 2> /dev/null | \
  14.815   sed "/^$pkg: /!d;s/^$pkg: //"`
  14.816 @@ -626,6 +713,8 @@
  14.817  EOT
  14.818  		fi
  14.819  		;;
  14.820 +
  14.821 +
  14.822  	*\ admin\ * )
  14.823  		#
  14.824  		# Tazpkg configuration page
  14.825 @@ -663,41 +752,41 @@
  14.826  				repository=${cmd#rm-repo=}
  14.827  				rm -rf $LOCALSTATE/undigest/$repository ;;
  14.828  		esac
  14.829 -		[ "$cmd" == "$(gettext "Set link")" ] &&
  14.830 +		[ "$cmd" == "$(gettext 'Set link')" ] &&
  14.831  			[ -d "$(GET link)/$INSTALLED" ] &&
  14.832  			ln -fs $(GET link) $LOCALSTATE/fslink
  14.833 -		[ "$cmd" == "$(gettext "Remove link")" ] &&
  14.834 +		[ "$cmd" == "$(gettext 'Remove link')" ] &&
  14.835  			rm -f $LOCALSTATE/fslink
  14.836  		cache_files=`find /var/cache/tazpkg -name *.tazpkg | wc -l`
  14.837  		cache_size=`du -sh /var/cache/tazpkg`
  14.838  		sidebar
  14.839  		cat << EOT
  14.840 -<h2>$(gettext "Administration")</h2>
  14.841 +<h2>$(gettext 'Administration')</h2>
  14.842  <div>
  14.843 -	<p>$(gettext "Tazpkg administration and settings")</p>
  14.844 +	<p>$(gettext 'Tazpkg administration and settings')</p>
  14.845  </div>
  14.846  <div id="actions">
  14.847  	<a class="button" href='$SCRIPT_NAME?admin=&action=saveconf'>
  14.848 -		<img src="$IMAGES/tazpkg.png" />`gettext "Save configuration"`</a>
  14.849 +		<img src="$IMAGES/tazpkg.png" />$(gettext 'Save configuration')</a>
  14.850  	<a class="button" href='$SCRIPT_NAME?admin=&action=listconf'>
  14.851 -		<img src="$IMAGES/edit.png" />`gettext "List configuration files"`</a>
  14.852 +		<img src="$IMAGES/edit.png" />$(gettext 'List configuration files')</a>
  14.853  	<a class="button" href='$SCRIPT_NAME?admin=&action=quickcheck'>
  14.854 -		<img src="$IMAGES/recharge.png" />`gettext "Quick check"`</a>
  14.855 +		<img src="$IMAGES/recharge.png" />$(gettext 'Quick check')</a>
  14.856  	<a class="button" href='$SCRIPT_NAME?admin=&action=fullcheck'>
  14.857 -		<img src="$IMAGES/recharge.png" />`gettext "Full check"`</a>
  14.858 +		<img src="$IMAGES/recharge.png" />$(gettext 'Full check')</a>
  14.859  </div>
  14.860  EOT
  14.861  		case "$(GET action)" in
  14.862  				saveconf)
  14.863 -					LOADING_MSG=$(gettext "Creating the package...")
  14.864 +					LOADING_MSG=$(gettext 'Creating the package...')
  14.865  					loading_msg
  14.866  					echo "<pre>"
  14.867  					cd $HOME
  14.868  					tazpkg repack-config | filter_taztools_msgs
  14.869 -					gettext "Path : " && ls $HOME/config-*.tazpkg
  14.870 +					echo -n "$(gettext 'Path:') " && ls $HOME/config-*.tazpkg
  14.871  					echo "</pre>" ;;
  14.872  				listconf)
  14.873 -					echo "<h4>`gettext "Configuration files"`</h4>"
  14.874 +					echo "<h4>$(gettext 'Configuration files')</h4>"
  14.875  					echo "<ul>"
  14.876  					tazpkg list-config | while read file; do
  14.877  						[ "${file:0:1}" == "/" ] || continue
  14.878 @@ -710,38 +799,44 @@
  14.879  					echo "</ul>"
  14.880  					echo "</pre>" ;;
  14.881  				quickcheck)
  14.882 -					LOADING_MSG=$(gettext "Checking packages consistency...")
  14.883 +					LOADING_MSG=$(gettext 'Checking packages consistency...')
  14.884  					loading_msg
  14.885  					echo "<pre>"
  14.886  					tazpkg check
  14.887  					echo "</pre>" ;;
  14.888  				fullcheck)
  14.889 -					LOADING_MSG=$(gettext "Full packages check...")
  14.890 +					LOADING_MSG=$(gettext 'Full packages check...')
  14.891  					loading_msg
  14.892  					echo "<pre>"
  14.893  					tazpkg check --full
  14.894  					echo "</pre>" ;;
  14.895  				esac
  14.896  		cat << EOT
  14.897 -<h3>$(gettext "Packages cache")</h3>
  14.898 +<h3>$(gettext 'Packages cache')</h3>
  14.899 +
  14.900  <div>
  14.901  	<form method="get" action="$SCRIPT_NAME">
  14.902  		<p>
  14.903 -			`gettext "Packages in the cache:"` $cache_files ($cache_size)
  14.904 +			$(eval_gettext 'Packages in the cache: $cache_files ($cache_size)')
  14.905  			<input type="hidden" name="admin" value="clean" />
  14.906  			<input type="submit" value="Clean" />
  14.907  		</p>
  14.908  	</form>
  14.909  </div>
  14.910 -<h3>`gettext "Default mirror"`</h3>
  14.911 -	`cat /var/lib/tazpkg/mirror`
  14.912 -<h3>`gettext "Current mirror list"`</h3>
  14.913 +
  14.914 +<h3>$(gettext 'Default mirror')</h3>
  14.915 +
  14.916 +<pre>$(cat /var/lib/tazpkg/mirror)</pre>
  14.917 +
  14.918 +<h3>$(gettext 'Current mirror list')</h3>
  14.919  EOT
  14.920  		for i in $LOCALSTATE/mirrors $LOCALSTATE/undigest/*/mirrors; do
  14.921  			[ -s $i ] || continue
  14.922  			echo '<div class="box">'
  14.923 -			[ $i != $LOCALSTATE/mirrors ] &&
  14.924 -				echo "<h4>Repository: $(repo_name $(dirname $i))</h4>"
  14.925 +			if [ $i != $LOCALSTATE/mirrors ]; then
  14.926 +				Repo_Name="$(repo_name $(dirname $i))"
  14.927 +				echo "<h4>$(eval_gettext 'Repository: $Repo_Name')</h4>"
  14.928 +			fi
  14.929  			echo "<ul>"
  14.930  			list_mirrors $i
  14.931  			echo "</ul>"
  14.932 @@ -757,9 +852,7 @@
  14.933  </form>
  14.934  EOT
  14.935  		done
  14.936 -		echo "<h3>"
  14.937 -		gettext "Private repositories"
  14.938 -		echo "</h3>"
  14.939 +		echo "<h3>$(gettext 'Private repositories')</h3>"
  14.940  		[ -n "$(ls $LOCALSTATE/undigest 2> /dev/null)" ] && cat << EOT
  14.941  <div class="box">
  14.942  	<ul>
  14.943 @@ -771,49 +864,49 @@
  14.944  <form method="get" action="$SCRIPT_NAME">
  14.945  	<p>
  14.946  		<input type="hidden" name="admin" value="add-repo" />
  14.947 -		Name <input type="text" name="repository" size="10">
  14.948 -		mirror
  14.949 +		$(gettext 'Name') <input type="text" name="repository" size="10">
  14.950 +		$(gettext 'mirror')
  14.951  		<input type="text" name="mirror" value="http://" size="50">
  14.952  		<input type="submit" value="Add repository" />
  14.953  	</p>
  14.954  </form>
  14.955 -<h3>`gettext "Link to another SliTaz installation"`</h3>
  14.956 -<p>
  14.957 -$(gettext "This link points to the root of another SliTaz installation. \
  14.958 -You will be able to install packages using soft links to it.")
  14.959 -</p>
  14.960 +
  14.961 +<h3>$(gettext 'Link to another SliTaz installation')</h3>
  14.962 +
  14.963 +<p>$(gettext "This link points to the root of another SliTaz installation. \
  14.964 +You will be able to install packages using soft links to it.")</p>
  14.965 +
  14.966  <form method="get" action="$SCRIPT_NAME">
  14.967  <p>
  14.968  	<input type="hidden" name="admin" value="add-link" />
  14.969  	<input type="text" name="link"
  14.970  	 value="$(readlink $LOCALSTATE/fslink 2> /dev/null)" size="50">
  14.971 -	<input type="submit" name="admin" value="$(gettext "Set link")" />
  14.972 -	<input type="submit" name="admin" value="$(gettext "Remove link")" />
  14.973 +	<input type="submit" name="admin" value="$(gettext 'Set link')" />
  14.974 +	<input type="submit" name="admin" value="$(gettext 'Remove link')" />
  14.975  </p>
  14.976  </form>
  14.977  EOT
  14.978  		version=$(cat /etc/slitaz-release)
  14.979  		cat << EOT
  14.980  
  14.981 -<a name="dvd"></a>
  14.982 -<h3>`gettext "SliTaz packages DVD"`</h3>
  14.983 -<p>
  14.984 -$(gettext "A bootable DVD image of all available packages for \
  14.985 -the $version version is generated every day. It also contains a copy of \
  14.986 -the website and can be used without an internet connection. This image can be \
  14.987 -installed on a DVD or an USB key.")
  14.988 -</p>
  14.989 +<h3 id="dvd">$(gettext 'SliTaz packages DVD')</h3>
  14.990 +
  14.991 +<p>$(eval_gettext "A bootable DVD image of all available packages for the \
  14.992 +\$version version is generated every day. It also contains a copy of the \
  14.993 +website and can be used without an internet connection. This image can be \
  14.994 +installed on a DVD or an USB key.")</p>
  14.995 +
  14.996  <div>
  14.997  	<form method="post" action='$SCRIPT_NAME?admin&action=dvdimage#dvd'>
  14.998  	<p>
  14.999  		<a class="button"
 14.1000  			href='http://mirror.slitaz.org/iso/$version/packages-$version.iso'>
 14.1001 -			<img src="$IMAGES/tazpkg.png" />$(gettext "Download DVD image")</a>
 14.1002 +			<img src="$IMAGES/tazpkg.png" />$(gettext 'Download DVD image')</a>
 14.1003  		<a class="button" href='$SCRIPT_NAME?admin&action=dvdusbkey#dvd'>
 14.1004 -			<img src="$IMAGES/tazpkg.png" />$(gettext "Install from DVD/USB key")</a>
 14.1005 +			<img src="$IMAGES/tazpkg.png" />$(gettext 'Install from DVD/USB key')</a>
 14.1006  	</p>
 14.1007  	<div class="box">
 14.1008 -		$(gettext "Install from ISO image: ")
 14.1009 +		$(gettext 'Install from ISO image:')
 14.1010  		<input type="text" name="dvdimage" size="40" value="/root/packages-$version.iso">
 14.1011  	</div>
 14.1012  	</form>
 14.1013 @@ -852,30 +945,32 @@
 14.1014  		[ -n "$(GET block)" ] && tazpkg block $(GET block)
 14.1015  		[ -n "$(GET unblock)" ] && tazpkg unblock $(GET unblock)
 14.1016  		cat << EOT
 14.1017 -<h2>`gettext "Summary"`</h2>
 14.1018 +<h2>$(gettext 'Summary')</h2>
 14.1019 +
 14.1020  <div id="actions">
 14.1021 -	<a class="button" href='$SCRIPT_NAME?list'>
 14.1022 -		<img src="$IMAGES/tazpkg.png" />`gettext "My packages"`</a>
 14.1023 +	<a class="button" href="$SCRIPT_NAME?list">
 14.1024 +		<img src="$IMAGES/tazpkg.png" />$(gettext 'My packages')</a>
 14.1025  EOT
 14.1026  		fslink=$(readlink $LOCALSTATE/fslink)
 14.1027  		[ -n "$fslink" -a -d "$fslink/$INSTALLED" ] &&
 14.1028  			cat << EOT
 14.1029 -	<a class="button" href='$SCRIPT_NAME?linkable'>
 14.1030 -		<img src="$IMAGES/tazpkg.png" />`gettext "Linkable packages"`</a>
 14.1031 +	<a class="button" href="$SCRIPT_NAME?linkable">
 14.1032 +		<img src="$IMAGES/tazpkg.png" />$(gettext 'Linkable packages')</a>
 14.1033  EOT
 14.1034  		cat << EOT
 14.1035 -	<a class="button" href='$SCRIPT_NAME?recharge'>
 14.1036 -		<img src="$IMAGES/recharge.png" />`gettext "Recharge list"`</a>
 14.1037 -	<a class="button" href='$SCRIPT_NAME?up'>
 14.1038 -		<img src="$IMAGES/update.png" />`gettext "Check upgrades"`</a>
 14.1039 -	<a class="button" href='$SCRIPT_NAME?admin'>
 14.1040 -		<img src="$IMAGES/edit.png" />`gettext "Administration"`</a>
 14.1041 +	<a class="button" href="$SCRIPT_NAME?recharge">
 14.1042 +		<img src="$IMAGES/recharge.png" />$(gettext 'Recharge list')</a>
 14.1043 +	<a class="button" href="$SCRIPT_NAME?up">
 14.1044 +		<img src="$IMAGES/update.png" />$(gettext 'Check upgrades')</a>
 14.1045 +	<a class="button" href="$SCRIPT_NAME?admin">
 14.1046 +		<img src="$IMAGES/edit.png" />$(gettext 'Administration')</a>
 14.1047  </div>
 14.1048 -<pre class="pre-main">
 14.1049 -`packages_summary`
 14.1050 -</pre>
 14.1051  
 14.1052 -<h3>`gettext "Latest log entries"`</h3>
 14.1053 +$(packages_summary)
 14.1054 +
 14.1055 +
 14.1056 +<h3>$(gettext 'Latest log entries')</h3>
 14.1057 +
 14.1058  <pre>
 14.1059  `tail -n 5 /var/log/tazpkg.log | fgrep "-" | \
 14.1060  	awk '{print $1, $2, $3, $4, $5, $6, $7}'`
    15.1 --- a/po/es.po	Fri May 04 12:57:53 2012 +0300
    15.2 +++ b/po/es.po	Fri May 04 13:00:43 2012 +0300
    15.3 @@ -7,7 +7,7 @@
    15.4  msgstr ""
    15.5  "Project-Id-Version: TazPanel 1.0\n"
    15.6  "Report-Msgid-Bugs-To: \n"
    15.7 -"POT-Creation-Date: 2011-06-10 22:37+0200\n"
    15.8 +"POT-Creation-Date: 2012-05-04 02:44+0000\n"
    15.9  "PO-Revision-Date: 2011-08-05 15:03-0300\n"
   15.10  "Last-Translator: Lucas Gioia <lucas.lucas.lucas24@gmail.com>\n"
   15.11  "Language-Team: \n"
   15.12 @@ -16,6 +16,11 @@
   15.13  "Content-Type: text/plain; charset=UTF-8\n"
   15.14  "Content-Transfer-Encoding: 8bit\n"
   15.15  
   15.16 +#: tazpanel:35
   15.17 +#, fuzzy, sh-format
   15.18 +msgid "Starting TazPanel web server on port $HTTPD_PORT..."
   15.19 +msgstr "Parar el servidor web TazPanel..."
   15.20 +
   15.21  #: tazpanel:37
   15.22  msgid "TazPanel Authentication - Default: root:root"
   15.23  msgstr "Autenticación TazPanel - Por defecto: root:root"
   15.24 @@ -36,527 +41,796 @@
   15.25  msgid "Password changed successfully"
   15.26  msgstr "aContraseña exitosamente cambiada"
   15.27  
   15.28 -#: tazpanel:53
   15.29 -msgid "Usage:"
   15.30 +#: tazpanel:54
   15.31 +#, sh-format
   15.32 +msgid "Usage: $program_name [start|stop|passwd]"
   15.33  msgstr ""
   15.34  
   15.35 -#: index.cgi:36
   15.36 +#: index.cgi:38 index.cgi:83
   15.37  msgid "Differences"
   15.38  msgstr "Diferencias"
   15.39  
   15.40  #: index.cgi:72
   15.41 +msgid "TazPanel - File"
   15.42 +msgstr ""
   15.43 +
   15.44 +#: index.cgi:81
   15.45  msgid "Save"
   15.46  msgstr "Guardar"
   15.47  
   15.48 -#: index.cgi:90
   15.49 -#: settings.cgi:283
   15.50 +#: index.cgi:103 settings.cgi:261
   15.51  msgid "Edit"
   15.52  msgstr "Editar"
   15.53  
   15.54 -#: index.cgi:109
   15.55 -#: index.cgi:297
   15.56 +#: index.cgi:126
   15.57 +msgid "TazPanel - Terminal"
   15.58 +msgstr ""
   15.59 +
   15.60 +#: index.cgi:139
   15.61 +msgid "Small terminal emulator, commands options are supported."
   15.62 +msgstr "Pequeño emulador del terminal, opciónes de comandos están soportadas."
   15.63 +
   15.64 +#: index.cgi:141 index.cgi:158
   15.65 +#, sh-format
   15.66 +msgid "Commands: $commands"
   15.67 +msgstr "Comandos: $commands"
   15.68 +
   15.69 +#: index.cgi:146
   15.70 +#, sh-format
   15.71 +msgid "Downloading to: $dl"
   15.72 +msgstr "Descargando a: $dl"
   15.73 +
   15.74 +#: index.cgi:153
   15.75 +#, sh-format
   15.76 +msgid "$cmd needs an argument"
   15.77 +msgstr ""
   15.78 +
   15.79 +#: index.cgi:157
   15.80 +#, sh-format
   15.81 +msgid "Unknown command: $cmd"
   15.82 +msgstr ""
   15.83 +
   15.84 +#: index.cgi:162
   15.85 +msgid "TazPanel - Process activity"
   15.86 +msgstr ""
   15.87 +
   15.88 +#: index.cgi:164
   15.89 +msgid "Refresh:"
   15.90 +msgstr ""
   15.91 +
   15.92 +#: index.cgi:169
   15.93 +msgid "1s"
   15.94 +msgstr ""
   15.95 +
   15.96 +#: index.cgi:170
   15.97 +msgid "5s"
   15.98 +msgstr ""
   15.99 +
  15.100 +#: index.cgi:171
  15.101 +msgid "10s"
  15.102 +msgstr ""
  15.103 +
  15.104 +#: index.cgi:172 live.cgi:152
  15.105 +msgid "none"
  15.106 +msgstr ""
  15.107 +
  15.108 +#: index.cgi:188
  15.109 +msgid "TazPanel - Debug"
  15.110 +msgstr ""
  15.111 +
  15.112 +#: index.cgi:191
  15.113 +msgid "HTTP Environment"
  15.114 +msgstr ""
  15.115 +
  15.116 +#: index.cgi:198
  15.117 +msgid "TazPanel - System report"
  15.118 +msgstr "TazPanel - Reportar sistema"
  15.119 +
  15.120 +#: index.cgi:203
  15.121 +#, sh-format
  15.122 +msgid "Reporting to: $output"
  15.123 +msgstr "Reportando a: $output"
  15.124 +
  15.125 +#: index.cgi:206
  15.126 +msgid "Creating report header..."
  15.127 +msgstr "Creando el paquete..."
  15.128 +
  15.129 +#: index.cgi:213 index.cgi:230
  15.130 +msgid "SliTaz system report"
  15.131 +msgstr "Reportar sistema"
  15.132 +
  15.133 +#: index.cgi:227
  15.134 +msgid "Creating system summary..."
  15.135 +msgstr "Creando el paquete..."
  15.136 +
  15.137 +#: index.cgi:231
  15.138 +msgid "Date:"
  15.139 +msgstr ""
  15.140 +
  15.141 +#: index.cgi:242
  15.142 +msgid "Getting hardware info..."
  15.143 +msgstr "Obteniendo información del paquete..."
  15.144 +
  15.145 +#: index.cgi:260
  15.146 +msgid "Getting networking info..."
  15.147 +msgstr "Obteniendo información del paquete..."
  15.148 +
  15.149 +#: index.cgi:274
  15.150 +msgid "Getting filesystems info..."
  15.151 +msgstr ""
  15.152 +
  15.153 +#: index.cgi:294
  15.154 +msgid "Getting boot logs..."
  15.155 +msgstr "Obteniendo información del paquete..."
  15.156 +
  15.157 +#: index.cgi:297 boot.cgi:29 boot.cgi:34
  15.158 +msgid "Kernel messages"
  15.159 +msgstr "Mensajes del núcleo"
  15.160 +
  15.161 +#: index.cgi:300 boot.cgi:30 boot.cgi:38
  15.162 +msgid "Boot scripts"
  15.163 +msgstr "Scripts del boot"
  15.164 +
  15.165 +#: index.cgi:305
  15.166 +msgid "Creating report footer..."
  15.167 +msgstr "Creando el paquete..."
  15.168 +
  15.169 +#: index.cgi:317
  15.170 +msgid "View report"
  15.171 +msgstr "Ver reporte"
  15.172 +
  15.173 +#: index.cgi:318
  15.174 +msgid "This report can be attached with a bug report on:"
  15.175 +msgstr "Este reporte puede ser agregado con uno de bugs en:"
  15.176 +
  15.177 +#: index.cgi:332
  15.178 +#, sh-format
  15.179 +msgid "Host: $hostname"
  15.180 +msgstr "Cambiar nombre del $hostname"
  15.181 +
  15.182 +#: index.cgi:333
  15.183 +msgid "SliTaz administration and configuration Panel"
  15.184 +msgstr "SliTaz Administración y configuración del Panel"
  15.185 +
  15.186 +#: index.cgi:337 styles/default/header.sh:27
  15.187  msgid "Terminal"
  15.188  msgstr "Terminal"
  15.189  
  15.190 -#: index.cgi:122
  15.191 -msgid "Small terminal emulator, commands options are supported."
  15.192 -msgstr "Pequeño emulador del terminal, opciónes de comandos están soportadas."
  15.193 -
  15.194 -#: index.cgi:124
  15.195 -#: index.cgi:141
  15.196 -msgid "Commands:"
  15.197 -msgstr "Comandos:"
  15.198 -
  15.199 -#: index.cgi:128
  15.200 -msgid "Downloading to:"
  15.201 -msgstr "Descargando a:"
  15.202 -
  15.203 -#: index.cgi:145
  15.204 -#: index.cgi:299
  15.205 +#: index.cgi:339
  15.206  msgid "Process activity"
  15.207  msgstr ""
  15.208  
  15.209 -#: index.cgi:160
  15.210 -msgid "System report"
  15.211 -msgstr "Reportar sistema"
  15.212 -
  15.213 -#: index.cgi:164
  15.214 -msgid "Reporting to:"
  15.215 -msgstr "Reportando a:"
  15.216 -
  15.217 -#: index.cgi:166
  15.218 -msgid "Creating report header...  "
  15.219 -msgstr ""
  15.220 -
  15.221 -#: index.cgi:183
  15.222 -msgid "Creating system summary... "
  15.223 -msgstr ""
  15.224 -
  15.225 -#: index.cgi:196
  15.226 -msgid "Getting hardware info...   "
  15.227 -msgstr ""
  15.228 -
  15.229 -#: index.cgi:220
  15.230 -msgid "Getting networking info... "
  15.231 -msgstr ""
  15.232 -
  15.233 -#: index.cgi:236
  15.234 -msgid "Getting filesystems info..."
  15.235 -msgstr ""
  15.236 -
  15.237 -#: index.cgi:260
  15.238 -msgid "Getting boot logs...       "
  15.239 -msgstr ""
  15.240 -
  15.241 -#: index.cgi:262
  15.242 -#: boot.cgi:29
  15.243 -#: boot.cgi:34
  15.244 -msgid "Kernel messages"
  15.245 -msgstr "Mensajes del núcleo"
  15.246 -
  15.247 -#: index.cgi:266
  15.248 -#: boot.cgi:30
  15.249 -#: boot.cgi:39
  15.250 -msgid "Boot scripts"
  15.251 -msgstr "Scripts del boot"
  15.252 -
  15.253 -#: index.cgi:272
  15.254 -msgid "Creating report footer...  "
  15.255 -msgstr ""
  15.256 -
  15.257 -#: index.cgi:280
  15.258 -msgid "View report"
  15.259 -msgstr "Ver reporte"
  15.260 -
  15.261 -#: index.cgi:281
  15.262 -msgid "This report can be attached with a bug report on: "
  15.263 -msgstr "Este reporte puede ser agregado con uno de bugs en:"
  15.264 -
  15.265 -#: index.cgi:292
  15.266 -msgid "Host:"
  15.267 -msgstr "Host:"
  15.268 -
  15.269 -#: index.cgi:293
  15.270 -msgid "SliTaz administration and configuration Panel"
  15.271 -msgstr "SliTaz Administración y configuración del Panel"
  15.272 -
  15.273 -#: index.cgi:301
  15.274 +#: index.cgi:341
  15.275  msgid "Create a report"
  15.276  msgstr "Crear un reporte"
  15.277  
  15.278 -#: index.cgi:304
  15.279 -#: pkgs.cgi:829
  15.280 +#: index.cgi:344 pkgs.cgi:948
  15.281  msgid "Summary"
  15.282  msgstr "Sumario"
  15.283  
  15.284 -#: index.cgi:307
  15.285 -msgid "Uptime       :"
  15.286 +#: index.cgi:347
  15.287 +msgid "Uptime:"
  15.288  msgstr ""
  15.289  
  15.290 -#: index.cgi:308
  15.291 -msgid "Memory in Mb :"
  15.292 +#: index.cgi:350
  15.293 +msgid "Memory in Mb:"
  15.294  msgstr "Memoria en Mb : "
  15.295  
  15.296 -#: index.cgi:310
  15.297 -msgid "Linux kernel :"
  15.298 +#: index.cgi:355
  15.299 +#, sh-format
  15.300 +msgid "Total: $memtotal, Used: $memused, Free: $memfree"
  15.301 +msgstr ""
  15.302 +
  15.303 +#: index.cgi:360
  15.304 +msgid "Linux kernel:"
  15.305  msgstr "Kernel Linux :"
  15.306  
  15.307 -#: index.cgi:315
  15.308 +#: index.cgi:367
  15.309  msgid "Network status"
  15.310  msgstr "Estado de red"
  15.311  
  15.312 -#: index.cgi:318
  15.313 -#: hardware.cgi:109
  15.314 +#: index.cgi:370 hardware.cgi:202
  15.315  msgid "Filesystem usage statistics"
  15.316  msgstr ""
  15.317  
  15.318 -#: index.cgi:339
  15.319 +#: index.cgi:403
  15.320  msgid "Panel Activity"
  15.321  msgstr ""
  15.322  
  15.323 -#: pkgs.cgi:46
  15.324 -msgid "Last recharge        : "
  15.325 +#: pkgs.cgi:17
  15.326 +msgid "TazPanel - Packages"
  15.327 +msgstr ""
  15.328 +
  15.329 +#: pkgs.cgi:51
  15.330 +#, fuzzy
  15.331 +msgid "Last recharge:"
  15.332  msgstr "Última recarga        :"
  15.333  
  15.334 -#: pkgs.cgi:56
  15.335 -msgid "Installed packages   : "
  15.336 -msgstr "Paquetes instalados  :"
  15.337 -
  15.338  #: pkgs.cgi:58
  15.339 -msgid "Mirrored packages    : "
  15.340 +msgid "(Older than 10 days)"
  15.341  msgstr ""
  15.342  
  15.343  #: pkgs.cgi:60
  15.344 -msgid "Upgradeable packages : "
  15.345 +msgid "(Not older than 10 days)"
  15.346 +msgstr ""
  15.347 +
  15.348 +#: pkgs.cgi:64
  15.349 +#, fuzzy
  15.350 +msgid "Installed packages:"
  15.351 +msgstr "Paquetes instalados  :"
  15.352 +
  15.353 +#: pkgs.cgi:66
  15.354 +#, fuzzy
  15.355 +msgid "Mirrored packages:"
  15.356 +msgstr "Mis paquetes"
  15.357 +
  15.358 +#: pkgs.cgi:68
  15.359 +#, fuzzy
  15.360 +msgid "Upgradeable packages:"
  15.361  msgstr "Paquetes actualizables :"
  15.362  
  15.363 -#: pkgs.cgi:64
  15.364 -msgid "Blocked packages     : "
  15.365 +#: pkgs.cgi:70 pkgs.cgi:707
  15.366 +msgid "Installed files:"
  15.367 +msgstr "Filas instaladas:"
  15.368 +
  15.369 +#: pkgs.cgi:72
  15.370 +#, fuzzy
  15.371 +msgid "Blocked packages:"
  15.372  msgstr "Paquetes bloqueadso     : "
  15.373  
  15.374 -#: pkgs.cgi:102
  15.375 +#: pkgs.cgi:86
  15.376 +#, fuzzy
  15.377 +msgid "Delete"
  15.378 +msgstr "Borrar usuario"
  15.379 +
  15.380 +#: pkgs.cgi:89
  15.381 +msgid "Use as default"
  15.382 +msgstr ""
  15.383 +
  15.384 +#: pkgs.cgi:120
  15.385  msgid "Search"
  15.386  msgstr "Buscar"
  15.387  
  15.388 -#: pkgs.cgi:104
  15.389 +#: pkgs.cgi:122
  15.390  msgid "Files"
  15.391  msgstr "Filas"
  15.392  
  15.393 -#: pkgs.cgi:115
  15.394 -#: network.cgi:23
  15.395 -#: network.cgi:142
  15.396 -#: boot.cgi:84
  15.397 -#: settings.cgi:131
  15.398 -#: lib/libtazpanel:86
  15.399 +#: pkgs.cgi:134 pkgs.cgi:867 network.cgi:23 network.cgi:156 network.cgi:246
  15.400 +#: boot.cgi:82 settings.cgi:104 lib/libtazpanel:98
  15.401  msgid "Name"
  15.402  msgstr "Nombre"
  15.403  
  15.404 -#: pkgs.cgi:116
  15.405 +#: pkgs.cgi:135
  15.406  msgid "Version"
  15.407  msgstr "Versión"
  15.408  
  15.409 -#: pkgs.cgi:117
  15.410 -#: boot.cgi:85
  15.411 +#: pkgs.cgi:136 boot.cgi:83
  15.412  msgid "Description"
  15.413  msgstr "Descripción"
  15.414  
  15.415 -#: pkgs.cgi:118
  15.416 +#: pkgs.cgi:137
  15.417  msgid "Web"
  15.418  msgstr "Web"
  15.419  
  15.420 -#: pkgs.cgi:201
  15.421 -#: pkgs.cgi:310
  15.422 -#: pkgs.cgi:351
  15.423 -#: pkgs.cgi:405
  15.424 -#: pkgs.cgi:443
  15.425 -#: pkgs.cgi:491
  15.426 -#: pkgs.cgi:555
  15.427 -#: pkgs.cgi:832
  15.428 +#: pkgs.cgi:147
  15.429 +msgid "Categories"
  15.430 +msgstr ""
  15.431 +
  15.432 +#: pkgs.cgi:148
  15.433 +msgid "Base-system"
  15.434 +msgstr ""
  15.435 +
  15.436 +#: pkgs.cgi:149
  15.437 +msgid "X window"
  15.438 +msgstr ""
  15.439 +
  15.440 +#: pkgs.cgi:150
  15.441 +msgid "Utilities"
  15.442 +msgstr ""
  15.443 +
  15.444 +#: pkgs.cgi:151 styles/default/header.sh:46
  15.445 +#, fuzzy
  15.446 +msgid "Network"
  15.447 +msgstr "Estado de red"
  15.448 +
  15.449 +#: pkgs.cgi:152
  15.450 +msgid "Games"
  15.451 +msgstr ""
  15.452 +
  15.453 +#: pkgs.cgi:153
  15.454 +msgid "Graphics"
  15.455 +msgstr ""
  15.456 +
  15.457 +#: pkgs.cgi:154
  15.458 +msgid "Office"
  15.459 +msgstr ""
  15.460 +
  15.461 +#: pkgs.cgi:155
  15.462 +msgid "Multimedia"
  15.463 +msgstr ""
  15.464 +
  15.465 +#: pkgs.cgi:156
  15.466 +msgid "Development"
  15.467 +msgstr ""
  15.468 +
  15.469 +#: pkgs.cgi:157
  15.470 +#, fuzzy
  15.471 +msgid "System tools"
  15.472 +msgstr "Hora del sistema"
  15.473 +
  15.474 +#: pkgs.cgi:158
  15.475 +msgid "Security"
  15.476 +msgstr ""
  15.477 +
  15.478 +#: pkgs.cgi:159
  15.479 +msgid "Misc"
  15.480 +msgstr ""
  15.481 +
  15.482 +#: pkgs.cgi:160
  15.483 +msgid "Meta"
  15.484 +msgstr ""
  15.485 +
  15.486 +#: pkgs.cgi:161
  15.487 +msgid "Non free"
  15.488 +msgstr ""
  15.489 +
  15.490 +#: pkgs.cgi:162
  15.491 +msgid "All"
  15.492 +msgstr ""
  15.493 +
  15.494 +#: pkgs.cgi:168
  15.495 +#, fuzzy
  15.496 +msgid "Repositories"
  15.497 +msgstr "Repositorios privados"
  15.498 +
  15.499 +#: pkgs.cgi:169
  15.500 +msgid "Public"
  15.501 +msgstr ""
  15.502 +
  15.503 +#: pkgs.cgi:177
  15.504 +msgid "Any"
  15.505 +msgstr ""
  15.506 +
  15.507 +#: pkgs.cgi:217 pkgs.cgi:339
  15.508 +#, fuzzy
  15.509 +msgid "Listing packages..."
  15.510 +msgstr "Obteniendo información del paquete..."
  15.511 +
  15.512 +#: pkgs.cgi:220 pkgs.cgi:358 pkgs.cgi:412 pkgs.cgi:479 pkgs.cgi:520
  15.513 +#: pkgs.cgi:580 pkgs.cgi:659 pkgs.cgi:952 styles/default/header.sh:37
  15.514  msgid "My packages"
  15.515  msgstr "Mis paquetes"
  15.516  
  15.517 -#: pkgs.cgi:205
  15.518 -#: pkgs.cgi:251
  15.519 -#: pkgs.cgi:300
  15.520 -#: pkgs.cgi:341
  15.521 -#: pkgs.cgi:434
  15.522 -#: settings.cgi:119
  15.523 +#: pkgs.cgi:225 pkgs.cgi:284 pkgs.cgi:347 pkgs.cgi:401 pkgs.cgi:511
  15.524 +#: settings.cgi:92
  15.525  msgid "Selection:"
  15.526  msgstr "Selección"
  15.527  
  15.528 -#: pkgs.cgi:209
  15.529 -#: pkgs.cgi:255
  15.530 -#: pkgs.cgi:306
  15.531 -#: pkgs.cgi:347
  15.532 -#: pkgs.cgi:440
  15.533 -msgid "List:"
  15.534 -msgstr "Lista:"
  15.535 +#: pkgs.cgi:226 pkgs.cgi:607
  15.536 +msgid "Remove"
  15.537 +msgstr "Remover"
  15.538  
  15.539 -#: pkgs.cgi:247
  15.540 -#: pkgs.cgi:838
  15.541 +#: pkgs.cgi:230 pkgs.cgi:289 pkgs.cgi:354 pkgs.cgi:408 pkgs.cgi:518
  15.542 +#: pkgs.cgi:962 styles/default/header.sh:39
  15.543 +msgid "Recharge list"
  15.544 +msgstr "Recargar lista"
  15.545 +
  15.546 +#: pkgs.cgi:232 pkgs.cgi:291 pkgs.cgi:356 pkgs.cgi:410 pkgs.cgi:477
  15.547 +#: pkgs.cgi:964
  15.548 +msgid "Check upgrades"
  15.549 +msgstr "Comprobar actualizaciónes"
  15.550 +
  15.551 +#: pkgs.cgi:275
  15.552 +#, fuzzy
  15.553 +msgid "Listing linkable packages..."
  15.554 +msgstr "Obteniendo información del paquete..."
  15.555 +
  15.556 +#: pkgs.cgi:278 pkgs.cgi:958
  15.557  msgid "Linkable packages"
  15.558  msgstr "Paquetes enlazables"
  15.559  
  15.560 -#: pkgs.cgi:296
  15.561 -msgid "Category:"
  15.562 -msgstr "Categoría:"
  15.563 +#: pkgs.cgi:285
  15.564 +msgid "Link"
  15.565 +msgstr ""
  15.566  
  15.567 -#: pkgs.cgi:337
  15.568 +#: pkgs.cgi:342
  15.569 +#, sh-format
  15.570 +msgid "Category: $category"
  15.571 +msgstr "Categoría: $category"
  15.572 +
  15.573 +#: pkgs.cgi:366 pkgs.cgi:838
  15.574 +#, sh-format
  15.575 +msgid "Repository: $Repo_Name"
  15.576 +msgstr ""
  15.577 +
  15.578 +#: pkgs.cgi:394
  15.579 +#, fuzzy
  15.580 +msgid "Searching packages..."
  15.581 +msgstr "Buscar paquetes"
  15.582 +
  15.583 +#: pkgs.cgi:397
  15.584  msgid "Search packages"
  15.585  msgstr "Buscar paquetes"
  15.586  
  15.587 -#: pkgs.cgi:344
  15.588 -#: pkgs.cgi:437
  15.589 +#: pkgs.cgi:404 pkgs.cgi:514
  15.590  msgid "Toogle all"
  15.591  msgstr ""
  15.592  
  15.593 -#: pkgs.cgi:360
  15.594 -#: pkgs.cgi:532
  15.595 +#: pkgs.cgi:423
  15.596  msgid "Package"
  15.597  msgstr "Paquete"
  15.598  
  15.599 -#: pkgs.cgi:361
  15.600 +#: pkgs.cgi:424
  15.601  msgid "File"
  15.602  msgstr "Fila"
  15.603  
  15.604 -#: pkgs.cgi:392
  15.605 +#: pkgs.cgi:465
  15.606 +#, fuzzy
  15.607 +msgid "Recharging lists..."
  15.608 +msgstr "Recargar lista"
  15.609 +
  15.610 +#: pkgs.cgi:468
  15.611  msgid "Recharge"
  15.612  msgstr "Recargar"
  15.613  
  15.614 -#: pkgs.cgi:397
  15.615 +#: pkgs.cgi:473
  15.616  msgid "Recharge checks for new or updated packages"
  15.617  msgstr ""
  15.618  
  15.619 -#: pkgs.cgi:403
  15.620 -#: pkgs.cgi:844
  15.621 -msgid "Check upgrades"
  15.622 -msgstr "Comprobar actualizaciónes"
  15.623 -
  15.624 -#: pkgs.cgi:411
  15.625 +#: pkgs.cgi:485
  15.626  msgid "Recharging packages list"
  15.627  msgstr ""
  15.628  
  15.629 -#: pkgs.cgi:416
  15.630 +#: pkgs.cgi:490
  15.631  msgid "Packages lists are up-to-date. You should check for upgrades now."
  15.632  msgstr ""
  15.633  
  15.634 -#: pkgs.cgi:430
  15.635 +#: pkgs.cgi:503
  15.636 +#, fuzzy
  15.637 +msgid "Checking for upgrades..."
  15.638 +msgstr "Comprobar actualizaciónes"
  15.639 +
  15.640 +#: pkgs.cgi:506
  15.641  msgid "Up packages"
  15.642  msgstr ""
  15.643  
  15.644 -#: pkgs.cgi:485
  15.645 +#: pkgs.cgi:575
  15.646  msgid "Performing tasks on packages"
  15.647  msgstr ""
  15.648  
  15.649 -#: pkgs.cgi:515
  15.650 -msgid "Remove"
  15.651 -msgstr "Remover"
  15.652 +#: pkgs.cgi:585
  15.653 +#, sh-format
  15.654 +msgid "Executing $cmd for: $pkgs"
  15.655 +msgstr ""
  15.656  
  15.657 -#: pkgs.cgi:518
  15.658 +#: pkgs.cgi:610
  15.659  msgid "Getting package info..."
  15.660  msgstr "Obteniendo información del paquete..."
  15.661  
  15.662 -#: pkgs.cgi:529
  15.663 +#: pkgs.cgi:622 installer.cgi:155 styles/default/header.sh:88
  15.664  msgid "Install"
  15.665  msgstr "Instalar"
  15.666  
  15.667 -#: pkgs.cgi:540
  15.668 +#: pkgs.cgi:626
  15.669 +#, fuzzy, sh-format
  15.670 +msgid "Package $PACKAGE"
  15.671 +msgstr "Paquete"
  15.672 +
  15.673 +#: pkgs.cgi:634
  15.674 +msgid "Install (Non Free)"
  15.675 +msgstr ""
  15.676 +
  15.677 +#: pkgs.cgi:642
  15.678  msgid "Unblock"
  15.679  msgstr "Desbloquear"
  15.680  
  15.681 -#: pkgs.cgi:542
  15.682 +#: pkgs.cgi:646
  15.683  msgid "Block"
  15.684  msgstr "Bloquear"
  15.685  
  15.686 -#: pkgs.cgi:589
  15.687 -#: pkgs.cgi:601
  15.688 -msgid "Installed files:"
  15.689 +#: pkgs.cgi:650
  15.690 +msgid "Repack"
  15.691 +msgstr ""
  15.692 +
  15.693 +#: pkgs.cgi:665
  15.694 +#, fuzzy
  15.695 +msgid "Name:"
  15.696 +msgstr "Nombre"
  15.697 +
  15.698 +#: pkgs.cgi:666
  15.699 +#, fuzzy
  15.700 +msgid "Version:"
  15.701 +msgstr "Versión"
  15.702 +
  15.703 +#: pkgs.cgi:667
  15.704 +#, fuzzy
  15.705 +msgid "Description:"
  15.706 +msgstr "Descripción"
  15.707 +
  15.708 +#: pkgs.cgi:668
  15.709 +#, fuzzy
  15.710 +msgid "Category:"
  15.711 +msgstr "Categoría: $category"
  15.712 +
  15.713 +#: pkgs.cgi:672
  15.714 +msgid "Maintainer:"
  15.715 +msgstr ""
  15.716 +
  15.717 +#: pkgs.cgi:673 pkgs.cgi:702
  15.718 +msgid "Website:"
  15.719 +msgstr ""
  15.720 +
  15.721 +#: pkgs.cgi:674 pkgs.cgi:703
  15.722 +#, fuzzy
  15.723 +msgid "Sizes:"
  15.724 +msgstr "Tamaño"
  15.725 +
  15.726 +#: pkgs.cgi:677
  15.727 +msgid "Depends:"
  15.728 +msgstr ""
  15.729 +
  15.730 +#: pkgs.cgi:684
  15.731 +msgid "Suggested:"
  15.732 +msgstr ""
  15.733 +
  15.734 +#: pkgs.cgi:690
  15.735 +msgid "Tags:"
  15.736 +msgstr ""
  15.737 +
  15.738 +#: pkgs.cgi:696
  15.739 +#, fuzzy, sh-format
  15.740 +msgid "Installed files: $I_FILES"
  15.741  msgstr "Filas instaladas:"
  15.742  
  15.743 -#: pkgs.cgi:641
  15.744 -#: pkgs.cgi:764
  15.745 +#: pkgs.cgi:755 pkgs.cgi:884
  15.746  msgid "Set link"
  15.747  msgstr ""
  15.748  
  15.749 -#: pkgs.cgi:644
  15.750 -#: pkgs.cgi:765
  15.751 +#: pkgs.cgi:758 pkgs.cgi:885
  15.752  msgid "Remove link"
  15.753  msgstr ""
  15.754  
  15.755 -#: pkgs.cgi:650
  15.756 -#: pkgs.cgi:846
  15.757 +#: pkgs.cgi:764 pkgs.cgi:966 styles/default/header.sh:43
  15.758  msgid "Administration"
  15.759  msgstr "Administración"
  15.760  
  15.761 -#: pkgs.cgi:652
  15.762 +#: pkgs.cgi:766
  15.763  msgid "Tazpkg administration and settings"
  15.764  msgstr "Administración y configuración TazPkg"
  15.765  
  15.766 -#: pkgs.cgi:656
  15.767 +#: pkgs.cgi:770
  15.768  msgid "Save configuration"
  15.769  msgstr "Guardar configuración"
  15.770  
  15.771 -#: pkgs.cgi:658
  15.772 +#: pkgs.cgi:772
  15.773  msgid "List configuration files"
  15.774  msgstr ""
  15.775  
  15.776 -#: pkgs.cgi:660
  15.777 +#: pkgs.cgi:774
  15.778  msgid "Quick check"
  15.779  msgstr "Comprobación rápida"
  15.780  
  15.781 -#: pkgs.cgi:662
  15.782 +#: pkgs.cgi:776
  15.783  msgid "Full check"
  15.784  msgstr "Comprobación total"
  15.785  
  15.786 -#: pkgs.cgi:667
  15.787 +#: pkgs.cgi:781
  15.788  msgid "Creating the package..."
  15.789  msgstr "Creando el paquete..."
  15.790  
  15.791 -#: pkgs.cgi:672
  15.792 -msgid "Path : "
  15.793 +#: pkgs.cgi:786
  15.794 +#, fuzzy
  15.795 +msgid "Path:"
  15.796  msgstr "Ruta :"
  15.797  
  15.798 -#: pkgs.cgi:675
  15.799 -#: boot.cgi:248
  15.800 +#: pkgs.cgi:789 boot.cgi:256
  15.801  msgid "Configuration files"
  15.802  msgstr "Filas de configuración"
  15.803  
  15.804 -#: pkgs.cgi:688
  15.805 +#: pkgs.cgi:802
  15.806  msgid "Checking packages consistency..."
  15.807  msgstr "Comprobando consistencia de los paquetes..."
  15.808  
  15.809 -#: pkgs.cgi:694
  15.810 +#: pkgs.cgi:808
  15.811  msgid "Full packages check..."
  15.812  msgstr "Comprobación total de paquetes..."
  15.813  
  15.814 -#: pkgs.cgi:701
  15.815 +#: pkgs.cgi:815
  15.816  msgid "Packages cache"
  15.817  msgstr ""
  15.818  
  15.819 -#: pkgs.cgi:705
  15.820 -msgid "Packages in the cache:"
  15.821 +#: pkgs.cgi:820
  15.822 +#, fuzzy, sh-format
  15.823 +msgid "Packages in the cache: $cache_files ($cache_size)"
  15.824  msgstr "Paquetes en el caché:"
  15.825  
  15.826 -#: pkgs.cgi:712
  15.827 +#: pkgs.cgi:827
  15.828 +msgid "Default mirror"
  15.829 +msgstr ""
  15.830 +
  15.831 +#: pkgs.cgi:831
  15.832  msgid "Current mirror list"
  15.833  msgstr ""
  15.834  
  15.835 -#: pkgs.cgi:735
  15.836 +#: pkgs.cgi:855
  15.837  msgid "Private repositories"
  15.838  msgstr "Repositorios privados"
  15.839  
  15.840 -#: pkgs.cgi:754
  15.841 +#: pkgs.cgi:868
  15.842 +msgid "mirror"
  15.843 +msgstr ""
  15.844 +
  15.845 +#: pkgs.cgi:874
  15.846  msgid "Link to another SliTaz installation"
  15.847  msgstr "Enlazar a otra instalación SliTaz"
  15.848  
  15.849 -#: pkgs.cgi:756
  15.850 -msgid "This link points to the root of another SliTaz installation. You will be able to install packages using soft links to it."
  15.851 +#: pkgs.cgi:876
  15.852 +msgid ""
  15.853 +"This link points to the root of another SliTaz installation. You will be "
  15.854 +"able to install packages using soft links to it."
  15.855  msgstr ""
  15.856  
  15.857 -#: pkgs.cgi:773
  15.858 +#: pkgs.cgi:892
  15.859  msgid "SliTaz packages DVD"
  15.860  msgstr "Paquetes DVD SliTaz"
  15.861  
  15.862 -#: pkgs.cgi:785
  15.863 +#: pkgs.cgi:894
  15.864 +#, sh-format
  15.865 +msgid ""
  15.866 +"A bootable DVD image of all available packages for the $version version is "
  15.867 +"generated every day. It also contains a copy of the website and can be used "
  15.868 +"without an internet connection. This image can be installed on a DVD or an "
  15.869 +"USB key."
  15.870 +msgstr ""
  15.871 +
  15.872 +#: pkgs.cgi:904
  15.873  msgid "Download DVD image"
  15.874  msgstr "Descargar la imágen DVD"
  15.875  
  15.876 -#: pkgs.cgi:787
  15.877 +#: pkgs.cgi:906
  15.878  msgid "Install from DVD/USB key"
  15.879  msgstr "Instalar desde disco DVD/USB"
  15.880  
  15.881 -#: pkgs.cgi:790
  15.882 -msgid "Install from ISO image: "
  15.883 +#: pkgs.cgi:909
  15.884 +#, fuzzy
  15.885 +msgid "Install from ISO image:"
  15.886  msgstr "Instalar desde la imágen ISO:"
  15.887  
  15.888 -#: pkgs.cgi:842
  15.889 -msgid "Recharge list"
  15.890 -msgstr "Recargar lista"
  15.891 -
  15.892 -#: pkgs.cgi:852
  15.893 +#: pkgs.cgi:972
  15.894  msgid "Latest log entries"
  15.895  msgstr ""
  15.896  
  15.897 -#: live.cgi:88
  15.898 +#: live.cgi:25
  15.899 +msgid "TazPanel - Live"
  15.900 +msgstr ""
  15.901 +
  15.902 +#: live.cgi:83
  15.903  msgid "TODO"
  15.904  msgstr "TODO"
  15.905  
  15.906 -#: live.cgi:96
  15.907 +#: live.cgi:88
  15.908 +msgid "SliTaz LiveUSB"
  15.909 +msgstr "USB vivo"
  15.910 +
  15.911 +#: live.cgi:89
  15.912 +msgid "Create Live USB SliTaz systems"
  15.913 +msgstr "Crear y manejar sistemas SliTaZ CD vivo o USB"
  15.914 +
  15.915 +#: live.cgi:92
  15.916 +msgid ""
  15.917 +"Generate SliTaz LiveUSB media and boot in RAM! Insert a LiveCD into the "
  15.918 +"cdrom drive, select the correct device and press Generate."
  15.919 +msgstr ""
  15.920 +
  15.921 +#: live.cgi:97
  15.922 +msgid "USB Media to use:"
  15.923 +msgstr ""
  15.924 +
  15.925 +#: live.cgi:106 installer.cgi:299 installer.cgi:343 installer.cgi:378
  15.926 +#: installer.cgi:410
  15.927 +msgid "Not found"
  15.928 +msgstr "No encontrado"
  15.929 +
  15.930 +#: live.cgi:110
  15.931 +msgid "Generate"
  15.932 +msgstr "Generar"
  15.933 +
  15.934 +#: live.cgi:129
  15.935  msgid "SliTaz Live Systems"
  15.936  msgstr ""
  15.937  
  15.938 -#: live.cgi:97
  15.939 +#: live.cgi:130
  15.940  msgid "Create and manage Live CD or USB SliTaz systems"
  15.941  msgstr "Crear y manejar sistemas SliTaZ CD vivo o USB"
  15.942  
  15.943 -#: live.cgi:101
  15.944 -msgid "Live USB"
  15.945 -msgstr "USB vivo"
  15.946 +#: live.cgi:135
  15.947 +#, fuzzy
  15.948 +msgid "Create LiveUSB"
  15.949 +msgstr "Crear usuario"
  15.950  
  15.951 -#: live.cgi:103
  15.952 -msgid ""
  15.953 -"Generate SliTaz LiveUSB media and boot in RAM! Insert a\n"
  15.954 -"\tLiveCD into the cdrom drive, select the correct device and press\n"
  15.955 -"\tGenerate."
  15.956 -msgstr ""
  15.957 -
  15.958 -#: live.cgi:108
  15.959 -msgid "USB Media to use:"
  15.960 -msgstr ""
  15.961 -
  15.962 -#: live.cgi:117
  15.963 -msgid "Not found"
  15.964 -msgstr "No encontrado"
  15.965 -
  15.966 -#: live.cgi:121
  15.967 -msgid "Generate"
  15.968 -msgstr "Generar"
  15.969 -
  15.970 -#: live.cgi:125
  15.971 +#: live.cgi:140
  15.972  msgid "Write a Live CD"
  15.973  msgstr "Escriba un Cd Vivo"
  15.974  
  15.975 -#: live.cgi:127
  15.976 +#: live.cgi:142
  15.977  msgid ""
  15.978 -"The command writeiso will generate an ISO image of the\n"
  15.979 -"\tcurrent filesystem as is, including all files in the /home directory.\n"
  15.980 -"\tIt is an easy way to remaster a SliTaz Live system, you just have\n"
  15.981 -"\tto: boot, modify, writeiso."
  15.982 +"The command writeiso will generate an ISO image of the current filesystem as "
  15.983 +"is, including all files in the /home directory. It is an easy way to "
  15.984 +"remaster a SliTaz Live system, you just have to: boot, modify, writeiso."
  15.985  msgstr ""
  15.986  
  15.987 -#: live.cgi:133
  15.988 +#: live.cgi:148
  15.989  msgid "Compression type:"
  15.990  msgstr "Tipo de compresión:"
  15.991  
  15.992 -#: live.cgi:139
  15.993 +#: live.cgi:154
  15.994  msgid "Write ISO"
  15.995  msgstr "Escribir ISO"
  15.996  
  15.997 -#: live.cgi:142
  15.998 +#: live.cgi:158
  15.999  msgid "Live CD tools"
 15.1000  msgstr "Herramientas CD vivo"
 15.1001  
 15.1002 -#: live.cgi:144
 15.1003 -#: live.cgi:169
 15.1004 +#: live.cgi:160 live.cgi:192 styles/default/header.sh:84
 15.1005  msgid "Convert ISO to loram"
 15.1006  msgstr "Convertir ISO a loram"
 15.1007  
 15.1008 -#: live.cgi:146
 15.1009 +#: live.cgi:162
 15.1010  msgid ""
 15.1011 -"This command will convert an ISO image of a SliTaz Live CD\n"
 15.1012 -"\tto a new ISO image requiring less RAM to run."
 15.1013 +"This command will convert an ISO image of a SliTaz Live CD to a new ISO "
 15.1014 +"image requiring less RAM to run."
 15.1015  msgstr ""
 15.1016  
 15.1017 -#: live.cgi:152
 15.1018 +#: live.cgi:168
 15.1019  msgid "ISO to convert"
 15.1020  msgstr "ISO para convertir"
 15.1021  
 15.1022 -#: live.cgi:156
 15.1023 +#: live.cgi:173
 15.1024  msgid "The filesystem is always in RAM"
 15.1025  msgstr ""
 15.1026  
 15.1027 -#: live.cgi:159
 15.1028 +#: live.cgi:178
 15.1029  msgid "The filesystem may be on a small CDROM"
 15.1030  msgstr ""
 15.1031  
 15.1032 -#: live.cgi:162
 15.1033 +#: live.cgi:183
 15.1034  msgid "The filesystem may be on a large CDROM"
 15.1035  msgstr ""
 15.1036  
 15.1037 -#: live.cgi:165
 15.1038 -#: live.cgi:208
 15.1039 +#: live.cgi:187 live.cgi:234
 15.1040  msgid "ISO to create"
 15.1041  msgstr "ISO para crear"
 15.1042  
 15.1043 -#: live.cgi:173
 15.1044 -#: live.cgi:212
 15.1045 +#: live.cgi:196 live.cgi:239 styles/default/header.sh:85
 15.1046  msgid "Build a meta ISO"
 15.1047  msgstr ""
 15.1048  
 15.1049 -#: live.cgi:175
 15.1050 +#: live.cgi:198
 15.1051  msgid ""
 15.1052 -"Combines several ISO flavors like nested Russian dolls.\n"
 15.1053 -"\tThe amount of RAM available at startup will be used to select the\n"
 15.1054 -"\tutmost one."
 15.1055 +"Combines several ISO flavors like nested Russian dolls. The amount of RAM "
 15.1056 +"available at startup will be used to select the utmost one."
 15.1057  msgstr ""
 15.1058  
 15.1059 -#: live.cgi:188
 15.1060 +#: live.cgi:210
 15.1061  msgid "ISO number"
 15.1062  msgstr "Número ISO"
 15.1063  
 15.1064 -#: live.cgi:190
 15.1065 -#: live.cgi:203
 15.1066 +#: live.cgi:213 live.cgi:228
 15.1067  msgid "Minimum RAM"
 15.1068  msgstr "RAM mínimo"
 15.1069  
 15.1070 -#: live.cgi:201
 15.1071 +#: live.cgi:225
 15.1072  msgid "ISO to add"
 15.1073  msgstr "ISO para agregar"
 15.1074  
 15.1075 -#: live.cgi:205
 15.1076 +#: live.cgi:230
 15.1077  msgid "Add to the list"
 15.1078  msgstr "Agregar a la lista"
 15.1079  
 15.1080 +#: network.cgi:13
 15.1081 +msgid "TazPanel - Network"
 15.1082 +msgstr ""
 15.1083 +
 15.1084  #: network.cgi:24
 15.1085  msgid "Quality"
 15.1086  msgstr "Calidad"
 15.1087 @@ -565,543 +839,1123 @@
 15.1088  msgid "Encryption"
 15.1089  msgstr "Encriptación"
 15.1090  
 15.1091 -#: network.cgi:26
 15.1092 -#: boot.cgi:86
 15.1093 -#: lib/libtazpanel:87
 15.1094 +#: network.cgi:26 boot.cgi:84 lib/libtazpanel:99
 15.1095  msgid "Status"
 15.1096  msgstr "Estado"
 15.1097  
 15.1098 -#: network.cgi:52
 15.1099 +#: network.cgi:53
 15.1100  msgid "Connected"
 15.1101  msgstr "Conectado"
 15.1102  
 15.1103 -#: network.cgi:82
 15.1104 -msgid "Changed hostname:"
 15.1105 -msgstr ""
 15.1106 +#: network.cgi:96
 15.1107 +#, fuzzy, sh-format
 15.1108 +msgid "Changed hostname: $get_hostname"
 15.1109 +msgstr "Cambiar nombre del "
 15.1110  
 15.1111 -#: network.cgi:98
 15.1112 +#: network.cgi:112
 15.1113  msgid "Scanning open ports..."
 15.1114  msgstr ""
 15.1115  
 15.1116 -#: network.cgi:101
 15.1117 -msgid "Port scanning for"
 15.1118 +#: network.cgi:115
 15.1119 +#, fuzzy, sh-format
 15.1120 +msgid "Port scanning for $scan"
 15.1121  msgstr "Escaneo de puertos para"
 15.1122  
 15.1123 -#: network.cgi:115
 15.1124 +#: network.cgi:129
 15.1125  msgid "Setting up IP..."
 15.1126  msgstr ""
 15.1127  
 15.1128 -#: network.cgi:131
 15.1129 +#: network.cgi:145
 15.1130  msgid "Ethernet connection"
 15.1131  msgstr "Conexión Ethernet"
 15.1132  
 15.1133 -#: network.cgi:133
 15.1134 +#: network.cgi:147
 15.1135  msgid ""
 15.1136 -"Here you can configure a wired connection using DHCP to\n"
 15.1137 -"automatically get a random IP or configure a static/fixed IP"
 15.1138 +"Here you can configure a wired connection using DHCP to automatically get a "
 15.1139 +"random IP or configure a static/fixed IP"
 15.1140  msgstr ""
 15.1141  
 15.1142 -#: network.cgi:136
 15.1143 +#: network.cgi:150
 15.1144  msgid "Configuration"
 15.1145  msgstr "Configuración"
 15.1146  
 15.1147 -#: network.cgi:143
 15.1148 +#: network.cgi:157 network.cgi:247
 15.1149  msgid "Value"
 15.1150  msgstr ""
 15.1151  
 15.1152 -#: network.cgi:147
 15.1153 -#: lib/libtazpanel:85
 15.1154 +#: network.cgi:162 lib/libtazpanel:97
 15.1155  msgid "Interface"
 15.1156  msgstr "Interface"
 15.1157  
 15.1158 -#: network.cgi:151
 15.1159 +#: network.cgi:166
 15.1160  msgid "IP address"
 15.1161  msgstr "Dirección IP"
 15.1162  
 15.1163 -#: network.cgi:155
 15.1164 +#: network.cgi:170
 15.1165  msgid "Netmask"
 15.1166  msgstr "Máscara de red"
 15.1167  
 15.1168 -#: network.cgi:159
 15.1169 +#: network.cgi:174
 15.1170  msgid "Gateway"
 15.1171  msgstr ""
 15.1172  
 15.1173 -#: network.cgi:163
 15.1174 +#: network.cgi:178
 15.1175  msgid "DNS server"
 15.1176  msgstr "Servidor DNS"
 15.1177  
 15.1178 -#: network.cgi:167
 15.1179 +#: network.cgi:183
 15.1180  msgid "Activate (static)"
 15.1181  msgstr "Activado (estático)"
 15.1182  
 15.1183 -#: network.cgi:168
 15.1184 +#: network.cgi:184
 15.1185  msgid "Activate (DHCP)"
 15.1186  msgstr "Activar (DHCP)"
 15.1187  
 15.1188 -#: network.cgi:169
 15.1189 +#: network.cgi:185
 15.1190  msgid "Disable"
 15.1191  msgstr "Desactivado"
 15.1192  
 15.1193 -#: network.cgi:172
 15.1194 -#: network.cgi:202
 15.1195 +#: network.cgi:188 network.cgi:266
 15.1196  msgid "Configuration file"
 15.1197  msgstr "Fila de configuración"
 15.1198  
 15.1199 -#: network.cgi:174
 15.1200 +#: network.cgi:190
 15.1201  msgid ""
 15.1202 -"These values are the ethernet settings in the main\n"
 15.1203 -"/etc/network.conf configuration file"
 15.1204 +"These values are the ethernet settings in the main /etc/network.conf "
 15.1205 +"configuration file"
 15.1206  msgstr ""
 15.1207  
 15.1208 -#: network.cgi:181
 15.1209 -#: network.cgi:211
 15.1210 +#: network.cgi:196 network.cgi:274
 15.1211  msgid "Manual Edit"
 15.1212  msgstr "Editar manualmente"
 15.1213  
 15.1214 -#: network.cgi:187
 15.1215 +#: network.cgi:202
 15.1216  msgid "Scanning wireless interface..."
 15.1217  msgstr ""
 15.1218  
 15.1219 -#: network.cgi:190
 15.1220 +#: network.cgi:206
 15.1221  msgid "Wireless connection"
 15.1222  msgstr ""
 15.1223  
 15.1224 -#: network.cgi:193
 15.1225 -#: network.cgi:232
 15.1226 +#: network.cgi:209 network.cgi:293 boot.cgi:167
 15.1227  msgid "Start"
 15.1228  msgstr "Comenzar"
 15.1229  
 15.1230 -#: network.cgi:195
 15.1231 -#: network.cgi:234
 15.1232 +#: network.cgi:211 network.cgi:295 boot.cgi:155
 15.1233  msgid "Stop"
 15.1234  msgstr "Parar"
 15.1235  
 15.1236 -#: network.cgi:197
 15.1237 +#: network.cgi:213
 15.1238  msgid "Scan"
 15.1239  msgstr "Escanear"
 15.1240  
 15.1241 -#: network.cgi:204
 15.1242 -msgid ""
 15.1243 -"These values are the wifi settings in the main\n"
 15.1244 -"/etc/network.conf configuration file"
 15.1245 +#: network.cgi:240
 15.1246 +msgid "Connection"
 15.1247 +msgstr "Conexión:"
 15.1248 +
 15.1249 +#: network.cgi:251
 15.1250 +msgid "Wifi name (ESSID)"
 15.1251  msgstr ""
 15.1252  
 15.1253 -#: network.cgi:213
 15.1254 -msgid "Output of"
 15.1255 +#: network.cgi:255
 15.1256 +msgid "Password (Wifi key)"
 15.1257 +msgstr ""
 15.1258 +
 15.1259 +#: network.cgi:259
 15.1260 +msgid "Encryption type"
 15.1261 +msgstr "Encriptación"
 15.1262 +
 15.1263 +#: network.cgi:263
 15.1264 +msgid "Configure"
 15.1265 +msgstr "Configuración"
 15.1266 +
 15.1267 +#: network.cgi:268
 15.1268 +msgid ""
 15.1269 +"These values are the wifi settings in the main /etc/network.conf "
 15.1270 +"configuration file"
 15.1271 +msgstr ""
 15.1272 +
 15.1273 +#: network.cgi:276
 15.1274 +#, fuzzy
 15.1275 +msgid "Output of iwconfig"
 15.1276  msgstr "Salida de"
 15.1277  
 15.1278 -#: network.cgi:224
 15.1279 +#: network.cgi:286
 15.1280  msgid "Networking"
 15.1281  msgstr ""
 15.1282  
 15.1283 -#: network.cgi:226
 15.1284 +#: network.cgi:288
 15.1285  msgid "Manage network connections and services"
 15.1286  msgstr ""
 15.1287  
 15.1288 -#: network.cgi:230
 15.1289 -msgid "Connection:"
 15.1290 -msgstr "Conexión:"
 15.1291 +#: network.cgi:297
 15.1292 +msgid "Restart"
 15.1293 +msgstr "Comenzar"
 15.1294  
 15.1295 -#: network.cgi:237
 15.1296 +#: network.cgi:300
 15.1297  msgid "Configuration:"
 15.1298  msgstr "Configuración:"
 15.1299  
 15.1300 -#: network.cgi:247
 15.1301 +#: network.cgi:309
 15.1302  msgid "Hosts"
 15.1303  msgstr "Hosts"
 15.1304  
 15.1305 -#: network.cgi:252
 15.1306 +#: network.cgi:314
 15.1307  msgid "Edit hosts"
 15.1308  msgstr "Editar hosts"
 15.1309  
 15.1310 -#: network.cgi:254
 15.1311 +#: network.cgi:316 installer.cgi:433
 15.1312  msgid "Hostname"
 15.1313  msgstr ""
 15.1314  
 15.1315 -#: network.cgi:257
 15.1316 +#: network.cgi:320
 15.1317  msgid "Change hostname"
 15.1318  msgstr "Cambiar nombre del "
 15.1319  
 15.1320 -#: network.cgi:262
 15.1321 -msgid "Output of "
 15.1322 +#: network.cgi:324
 15.1323 +#, fuzzy
 15.1324 +msgid "Output of ifconfig"
 15.1325  msgstr "Salida de"
 15.1326  
 15.1327 -#: network.cgi:268
 15.1328 +#: network.cgi:328
 15.1329  msgid "Routing table"
 15.1330  msgstr "Tabla de enrutamiento"
 15.1331  
 15.1332 -#: network.cgi:274
 15.1333 +#: network.cgi:332
 15.1334  msgid "Domain name resolution"
 15.1335  msgstr ""
 15.1336  
 15.1337 -#: network.cgi:280
 15.1338 +#: network.cgi:336
 15.1339  msgid "ARP table"
 15.1340  msgstr "Tabla ARP"
 15.1341  
 15.1342 -#: network.cgi:286
 15.1343 +#: network.cgi:340
 15.1344  msgid "IP Connections"
 15.1345  msgstr "Conexiónes IP"
 15.1346  
 15.1347 +#: boot.cgi:14
 15.1348 +msgid "TazPanel - Boot"
 15.1349 +msgstr ""
 15.1350 +
 15.1351  #: boot.cgi:25
 15.1352  msgid "Boot log files"
 15.1353  msgstr ""
 15.1354  
 15.1355 -#: boot.cgi:31
 15.1356 -#: boot.cgi:44
 15.1357 +#: boot.cgi:31 boot.cgi:42
 15.1358  msgid "X server"
 15.1359  msgstr "Servidor X"
 15.1360  
 15.1361 -#: boot.cgi:61
 15.1362 -#: boot.cgi:244
 15.1363 +#: boot.cgi:46
 15.1364 +msgid "Show more..."
 15.1365 +msgstr ""
 15.1366 +
 15.1367 +#: boot.cgi:61 boot.cgi:252 styles/default/header.sh:67
 15.1368  msgid "Manage daemons"
 15.1369  msgstr "Manejar demonios"
 15.1370  
 15.1371 -#: boot.cgi:63
 15.1372 +#: boot.cgi:62
 15.1373  msgid "Check, start and stop daemons on SliTaz"
 15.1374  msgstr "Comprueba, comienza y finaliza demonios en SliTaz"
 15.1375  
 15.1376 -#: boot.cgi:87
 15.1377 +#: boot.cgi:85
 15.1378  msgid "Action"
 15.1379  msgstr "Acción"
 15.1380  
 15.1381 -#: boot.cgi:88
 15.1382 +#: boot.cgi:86
 15.1383  msgid "PID"
 15.1384  msgstr ""
 15.1385  
 15.1386 -#: boot.cgi:109
 15.1387 -msgid "<td>SliTaz Firewall with iptable rules</td>"
 15.1388 +#: boot.cgi:108
 15.1389 +msgid "SliTaz Firewall with iptable rules"
 15.1390  msgstr ""
 15.1391  
 15.1392 -#: boot.cgi:111
 15.1393 -msgid "<td>Small and fast web server with CGI support</td>"
 15.1394 -msgstr "<td>Pequeño y rápido servidor web con soporte CGI</td>"
 15.1395 +#: boot.cgi:110
 15.1396 +msgid "Small and fast web server with CGI support"
 15.1397 +msgstr "Pequeño y rápido servidor web con soporte CGI"
 15.1398  
 15.1399 -#: boot.cgi:113
 15.1400 -msgid "<td>Network time protocol daemon</td>"
 15.1401 +#: boot.cgi:112
 15.1402 +msgid "Network time protocol daemon"
 15.1403  msgstr ""
 15.1404  
 15.1405 -#: boot.cgi:115
 15.1406 -msgid "<td>Anonymous FTP server</td>"
 15.1407 +#: boot.cgi:114
 15.1408 +msgid "Anonymous FTP server"
 15.1409  msgstr ""
 15.1410  
 15.1411 -#: boot.cgi:117
 15.1412 -msgid "<td>Busybox DHCP server</td>"
 15.1413 +#: boot.cgi:116
 15.1414 +msgid "Busybox DHCP server"
 15.1415  msgstr ""
 15.1416  
 15.1417 -#: boot.cgi:119
 15.1418 -msgid "<td>Linux Kernel log daemon</td>"
 15.1419 +#: boot.cgi:118
 15.1420 +msgid "Linux Kernel log daemon"
 15.1421  msgstr ""
 15.1422  
 15.1423 -#: boot.cgi:121
 15.1424 -msgid "<td>Execute scheduled commands</td>"
 15.1425 +#: boot.cgi:120
 15.1426 +msgid "Execute scheduled commands"
 15.1427  msgstr ""
 15.1428  
 15.1429 -#: boot.cgi:123
 15.1430 -msgid "<td>Small static DNS server daemon</td>"
 15.1431 +#: boot.cgi:122
 15.1432 +msgid "Small static DNS server daemon"
 15.1433  msgstr ""
 15.1434  
 15.1435 -#: boot.cgi:125
 15.1436 -msgid "<td>Transfer a file on tftp request</td>"
 15.1437 +#: boot.cgi:124
 15.1438 +msgid "Transfer a file on tftp request"
 15.1439  msgstr ""
 15.1440  
 15.1441 -#: boot.cgi:127
 15.1442 -msgid "<td>Listen for network connections and launch programs</td>"
 15.1443 +#: boot.cgi:126
 15.1444 +msgid "Listen for network connections and launch programs"
 15.1445  msgstr ""
 15.1446  
 15.1447 -#: boot.cgi:129
 15.1448 -msgid "<td>Manage a ZeroConf IPv4 link-local address</td>"
 15.1449 +#: boot.cgi:128
 15.1450 +msgid "Manage a ZeroConf IPv4 link-local address"
 15.1451  msgstr ""
 15.1452  
 15.1453 -#: boot.cgi:191
 15.1454 +#: boot.cgi:153
 15.1455 +#, fuzzy
 15.1456 +msgid "Started"
 15.1457 +msgstr "Comenzar"
 15.1458 +
 15.1459 +#: boot.cgi:165
 15.1460 +#, fuzzy
 15.1461 +msgid "Stopped"
 15.1462 +msgstr "Parar"
 15.1463 +
 15.1464 +#: boot.cgi:193
 15.1465  msgid "GRUB Boot loader"
 15.1466  msgstr "Gestor de inicio GRUB"
 15.1467  
 15.1468 -#: boot.cgi:193
 15.1469 +#: boot.cgi:195
 15.1470  msgid "The first application started when the computer powers on"
 15.1471  msgstr ""
 15.1472  
 15.1473 -#: boot.cgi:206
 15.1474 -#: settings.cgi:310
 15.1475 +#: boot.cgi:201
 15.1476 +msgid "Default entry:"
 15.1477 +msgstr ""
 15.1478 +
 15.1479 +#: boot.cgi:203
 15.1480 +msgid "Timeout:"
 15.1481 +msgstr ""
 15.1482 +
 15.1483 +#: boot.cgi:205
 15.1484 +msgid "Splash image:"
 15.1485 +msgstr ""
 15.1486 +
 15.1487 +#: boot.cgi:208 settings.cgi:289
 15.1488  msgid "Change"
 15.1489  msgstr "Cambiar"
 15.1490  
 15.1491 -#: boot.cgi:211
 15.1492 +#: boot.cgi:210
 15.1493 +msgid "View or edit menu.lst"
 15.1494 +msgstr ""
 15.1495 +
 15.1496 +#: boot.cgi:213
 15.1497  msgid "Boot entries"
 15.1498  msgstr ""
 15.1499  
 15.1500 -#: boot.cgi:217
 15.1501 +#: boot.cgi:219
 15.1502  msgid "Entry"
 15.1503  msgstr ""
 15.1504  
 15.1505 -#: boot.cgi:225
 15.1506 -msgid "Web boot is avalaible with gPXE"
 15.1507 +#: boot.cgi:235
 15.1508 +msgid "Web boot is available with gPXE"
 15.1509  msgstr "Boot web es disponible con gPXE"
 15.1510  
 15.1511 -#: boot.cgi:235
 15.1512 +#: boot.cgi:245
 15.1513  msgid "Boot &amp; Start services"
 15.1514  msgstr ""
 15.1515  
 15.1516 -#: boot.cgi:237
 15.1517 +#: boot.cgi:246
 15.1518  msgid "Everything that happens before user login"
 15.1519  msgstr ""
 15.1520  
 15.1521 -#: boot.cgi:242
 15.1522 +#: boot.cgi:250 styles/default/header.sh:65
 15.1523  msgid "Boot logs"
 15.1524  msgstr "Logs del boot"
 15.1525  
 15.1526 -#: boot.cgi:245
 15.1527 +#: boot.cgi:253 styles/default/header.sh:69
 15.1528  msgid "Boot loader"
 15.1529  msgstr "Cargador boot"
 15.1530  
 15.1531 -#: boot.cgi:250
 15.1532 +#: boot.cgi:258
 15.1533  msgid "Main configuration file:"
 15.1534  msgstr ""
 15.1535  
 15.1536 -#: boot.cgi:252
 15.1537 +#: boot.cgi:260
 15.1538  msgid "Login manager settings:"
 15.1539  msgstr ""
 15.1540  
 15.1541 -#: boot.cgi:256
 15.1542 +#: boot.cgi:264
 15.1543  msgid "Kernel cmdline"
 15.1544  msgstr "Líneas de comando del núcleo"
 15.1545  
 15.1546 -#: boot.cgi:260
 15.1547 +#: boot.cgi:268
 15.1548  msgid "Local startup commands"
 15.1549  msgstr ""
 15.1550  
 15.1551 -#: boot.cgi:265
 15.1552 +#: boot.cgi:273
 15.1553  msgid "Edit script"
 15.1554  msgstr "Editar scripts"
 15.1555  
 15.1556 -#: hardware.cgi:33
 15.1557 +#: hardware.cgi:13
 15.1558 +msgid "TazPanel - Hardware"
 15.1559 +msgstr ""
 15.1560 +
 15.1561 +#: hardware.cgi:29
 15.1562 +#, fuzzy
 15.1563 +msgid "Detect hardware"
 15.1564 +msgstr "Configurar el reloj hardware"
 15.1565 +
 15.1566 +#: hardware.cgi:30
 15.1567 +msgid "Detect PCI and USB hardware"
 15.1568 +msgstr ""
 15.1569 +
 15.1570 +#: hardware.cgi:42 hardware.cgi:117 styles/default/header.sh:75
 15.1571  msgid "Kernel modules"
 15.1572  msgstr "Módulos del núcleo"
 15.1573  
 15.1574 -#: hardware.cgi:40
 15.1575 +#: hardware.cgi:46
 15.1576 +#, fuzzy
 15.1577 +msgid "Modules search"
 15.1578 +msgstr "Módulo"
 15.1579 +
 15.1580 +#: hardware.cgi:49
 15.1581  msgid "Manage, search or get information about the Linux kernel modules"
 15.1582  msgstr ""
 15.1583  
 15.1584 -#: hardware.cgi:46
 15.1585 -msgid "Detailed information for module: "
 15.1586 +#: hardware.cgi:56
 15.1587 +#, sh-format
 15.1588 +msgid "Detailed information for module: $get_modinfo"
 15.1589  msgstr ""
 15.1590  
 15.1591 -#: hardware.cgi:62
 15.1592 -msgid "Matching result(s) for: "
 15.1593 +#: hardware.cgi:70
 15.1594 +#, sh-format
 15.1595 +msgid "Matching result(s) for: $get_search"
 15.1596  msgstr ""
 15.1597  
 15.1598 -#: hardware.cgi:75
 15.1599 +#: hardware.cgi:76
 15.1600 +#, fuzzy
 15.1601 +msgid "Module:"
 15.1602 +msgstr "Módulo"
 15.1603 +
 15.1604 +#: hardware.cgi:83
 15.1605  msgid "Module"
 15.1606  msgstr "Módulo"
 15.1607  
 15.1608 -#: hardware.cgi:76
 15.1609 -#: lib/libtazpanel:180
 15.1610 +#: hardware.cgi:84 lib/libtazpanel:217
 15.1611  msgid "Size"
 15.1612  msgstr "Tamaño"
 15.1613  
 15.1614 -#: hardware.cgi:77
 15.1615 -#: lib/libtazpanel:182
 15.1616 +#: hardware.cgi:85 lib/libtazpanel:219
 15.1617  msgid "Used"
 15.1618  msgstr "Usado"
 15.1619  
 15.1620 -#: hardware.cgi:78
 15.1621 +#: hardware.cgi:86
 15.1622  msgid "by"
 15.1623  msgstr "por"
 15.1624  
 15.1625 -#: hardware.cgi:101
 15.1626 +#: hardware.cgi:112
 15.1627  msgid "Drivers &amp; Devices"
 15.1628  msgstr ""
 15.1629  
 15.1630 -#: hardware.cgi:102
 15.1631 +#: hardware.cgi:113
 15.1632  msgid "Manage your computer hardware"
 15.1633  msgstr "Maneja tu hardware"
 15.1634  
 15.1635 -#: hardware.cgi:133
 15.1636 +#: hardware.cgi:119 styles/default/header.sh:77
 15.1637 +msgid "Detect PCI/USB"
 15.1638 +msgstr ""
 15.1639 +
 15.1640 +#: hardware.cgi:140
 15.1641 +msgid "Battery"
 15.1642 +msgstr ""
 15.1643 +
 15.1644 +#: hardware.cgi:142
 15.1645 +msgid "health"
 15.1646 +msgstr ""
 15.1647 +
 15.1648 +#: hardware.cgi:151
 15.1649 +#, sh-format
 15.1650 +msgid "Discharging $rempct% - $remtimef"
 15.1651 +msgstr ""
 15.1652 +
 15.1653 +#: hardware.cgi:155
 15.1654 +#, sh-format
 15.1655 +msgid "Charging $rempct% - $remtimef"
 15.1656 +msgstr ""
 15.1657 +
 15.1658 +#: hardware.cgi:157
 15.1659 +msgid "Charged 100%"
 15.1660 +msgstr ""
 15.1661 +
 15.1662 +#: hardware.cgi:165
 15.1663 +#, fuzzy
 15.1664 +msgid "Temperature:"
 15.1665 +msgstr "Generar"
 15.1666 +
 15.1667 +#: hardware.cgi:180
 15.1668 +msgid "Brightness"
 15.1669 +msgstr ""
 15.1670 +
 15.1671 +#: hardware.cgi:242
 15.1672  msgid "System memory"
 15.1673  msgstr "Memoria del sistema"
 15.1674  
 15.1675 -#: settings.cgi:115
 15.1676 -#: settings.cgi:203
 15.1677 +#: settings.cgi:15
 15.1678 +msgid "TazPanel - Settings"
 15.1679 +msgstr ""
 15.1680 +
 15.1681 +#: settings.cgi:87 settings.cgi:183
 15.1682  msgid "Manage users"
 15.1683  msgstr "Manejar usuarios"
 15.1684  
 15.1685 -#: settings.cgi:120
 15.1686 +#: settings.cgi:93
 15.1687  msgid "Delete user"
 15.1688  msgstr "Borrar usuario"
 15.1689  
 15.1690 -#: settings.cgi:121
 15.1691 +#: settings.cgi:94
 15.1692  msgid "Lock user"
 15.1693  msgstr "Bloquear usuario"
 15.1694  
 15.1695 -#: settings.cgi:122
 15.1696 +#: settings.cgi:95
 15.1697  msgid "Unlock user"
 15.1698  msgstr "Desbloquear usuario"
 15.1699  
 15.1700 -#: settings.cgi:129
 15.1701 +#: settings.cgi:102
 15.1702  msgid "Login"
 15.1703  msgstr ""
 15.1704  
 15.1705 -#: settings.cgi:130
 15.1706 +#: settings.cgi:103
 15.1707  msgid "User ID"
 15.1708  msgstr "ID del usuario"
 15.1709  
 15.1710 -#: settings.cgi:132
 15.1711 +#: settings.cgi:105
 15.1712  msgid "Home"
 15.1713  msgstr "Home"
 15.1714  
 15.1715 -#: settings.cgi:133
 15.1716 +#: settings.cgi:106
 15.1717  msgid "Shell"
 15.1718  msgstr "Shell"
 15.1719  
 15.1720 -#: settings.cgi:165
 15.1721 +#: settings.cgi:143
 15.1722  msgid "Password:"
 15.1723  msgstr "Contraseña:"
 15.1724  
 15.1725 -#: settings.cgi:167
 15.1726 +#: settings.cgi:145
 15.1727  msgid "Change password"
 15.1728  msgstr "Cambiar contraseña"
 15.1729  
 15.1730 -#: settings.cgi:171
 15.1731 +#: settings.cgi:149
 15.1732  msgid "Add a new user"
 15.1733  msgstr "Agregar un nuevo usuario"
 15.1734  
 15.1735 -#: settings.cgi:174
 15.1736 +#: settings.cgi:154 installer.cgi:465
 15.1737  msgid "User login:"
 15.1738  msgstr ""
 15.1739  
 15.1740 -#: settings.cgi:176
 15.1741 +#: settings.cgi:156
 15.1742  msgid "User password:"
 15.1743  msgstr ""
 15.1744  
 15.1745 -#: settings.cgi:178
 15.1746 +#: settings.cgi:159
 15.1747  msgid "Create user"
 15.1748  msgstr "Crear usuario"
 15.1749  
 15.1750 -#: settings.cgi:181
 15.1751 +#: settings.cgi:163
 15.1752  msgid "Current user sessions"
 15.1753  msgstr ""
 15.1754  
 15.1755 -#: settings.cgi:186
 15.1756 +#: settings.cgi:167
 15.1757  msgid "Last user sessions"
 15.1758  msgstr "Últimas sesiones de usuarios"
 15.1759  
 15.1760 -#: settings.cgi:198
 15.1761 +#: settings.cgi:178
 15.1762  msgid "System settings"
 15.1763  msgstr "Configuraciónes del sistema"
 15.1764  
 15.1765 -#: settings.cgi:199
 15.1766 +#: settings.cgi:179
 15.1767  msgid "Manage system time, users or language settings"
 15.1768  msgstr ""
 15.1769  
 15.1770 -#: settings.cgi:206
 15.1771 +#: settings.cgi:186
 15.1772  msgid "System time"
 15.1773  msgstr "Hora del sistema"
 15.1774  
 15.1775 -#: settings.cgi:208
 15.1776 -msgid "Time zome      :"
 15.1777 +#: settings.cgi:189
 15.1778 +msgid "Time zome:"
 15.1779  msgstr ""
 15.1780  
 15.1781 -#: settings.cgi:209
 15.1782 -msgid "System time    :"
 15.1783 -msgstr "Hora del sistema   :"
 15.1784 +#: settings.cgi:190
 15.1785 +#, fuzzy
 15.1786 +msgid "System time:"
 15.1787 +msgstr "Hora del sistema"
 15.1788  
 15.1789 -#: settings.cgi:210
 15.1790 -msgid "Hardware clock :"
 15.1791 +#: settings.cgi:191
 15.1792 +#, fuzzy
 15.1793 +msgid "Hardware clock:"
 15.1794  msgstr "Reloj hardware :"
 15.1795  
 15.1796 -#: settings.cgi:212
 15.1797 +#: settings.cgi:193
 15.1798  msgid "Sync online"
 15.1799  msgstr "Sincronizar en línea"
 15.1800  
 15.1801 -#: settings.cgi:213
 15.1802 +#: settings.cgi:194
 15.1803  msgid "Set hardware clock"
 15.1804  msgstr "Configurar el reloj hardware"
 15.1805  
 15.1806 -#: settings.cgi:220
 15.1807 +#: settings.cgi:200
 15.1808  msgid "System language"
 15.1809  msgstr "Lenguaje del sistema"
 15.1810  
 15.1811 -#: settings.cgi:231
 15.1812 +#: settings.cgi:211
 15.1813  #, sh-format
 15.1814  msgid ""
 15.1815 -"You must logout and login again to your current\n"
 15.1816 -"\t\t\t\tsession to use $new_locale locale."
 15.1817 +"You must logout and login again to your current session to use $new_locale "
 15.1818 +"locale."
 15.1819  msgstr ""
 15.1820  
 15.1821 -#: settings.cgi:234
 15.1822 -msgid "Current system locales: "
 15.1823 +#: settings.cgi:214
 15.1824 +msgid "Current system locales:"
 15.1825  msgstr ""
 15.1826  
 15.1827 -#: settings.cgi:240
 15.1828 +#: settings.cgi:220
 15.1829  msgid "Available locales:"
 15.1830  msgstr ""
 15.1831  
 15.1832 -#: settings.cgi:245
 15.1833 -#: settings.cgi:293
 15.1834 -#: settings.cgi:303
 15.1835 +#: settings.cgi:225 settings.cgi:271 settings.cgi:282
 15.1836  msgid "Activate"
 15.1837  msgstr "Activado"
 15.1838  
 15.1839 -#: settings.cgi:249
 15.1840 +#: settings.cgi:228
 15.1841  msgid "Console keymap"
 15.1842  msgstr ""
 15.1843  
 15.1844 -#: settings.cgi:261
 15.1845 -msgid "Current console keymap: "
 15.1846 +#: settings.cgi:241
 15.1847 +#, sh-format
 15.1848 +msgid "Current console keymap: $keymap"
 15.1849  msgstr ""
 15.1850  
 15.1851 -#: settings.cgi:280
 15.1852 +#: settings.cgi:258
 15.1853  msgid "Suggested keymap for Xorg:"
 15.1854  msgstr ""
 15.1855  
 15.1856 -#: settings.cgi:289
 15.1857 +#: settings.cgi:267
 15.1858  msgid "Available keymaps:"
 15.1859  msgstr ""
 15.1860  
 15.1861 -#: settings.cgi:296
 15.1862 +#: settings.cgi:274
 15.1863  msgid "Panel configuration"
 15.1864  msgstr "Configuración del panel"
 15.1865  
 15.1866 -#: settings.cgi:299
 15.1867 +#: settings.cgi:278
 15.1868  msgid "Style:"
 15.1869  msgstr "Estilo:"
 15.1870  
 15.1871 -#: settings.cgi:308
 15.1872 +#: settings.cgi:287
 15.1873  msgid "Panel password:"
 15.1874  msgstr "Contraseña del Panel:"
 15.1875  
 15.1876 -#: settings.cgi:314
 15.1877 -msgid "Configuration files: "
 15.1878 +#: settings.cgi:293
 15.1879 +#, fuzzy
 15.1880 +msgid "Configuration files:"
 15.1881  msgstr "Filas de configuración:"
 15.1882  
 15.1883 -#: settings.cgi:316
 15.1884 +#: settings.cgi:295 styles/default/header.sh:24
 15.1885  msgid "Panel"
 15.1886  msgstr "Panel"
 15.1887  
 15.1888 -#: settings.cgi:318
 15.1889 +#: settings.cgi:297
 15.1890  msgid "Server"
 15.1891  msgstr "Servidor"
 15.1892  
 15.1893 -#: settings.cgi:321
 15.1894 +#: settings.cgi:300
 15.1895  msgid "TazPanel provides a debuging mode and page:"
 15.1896  msgstr ""
 15.1897  
 15.1898 -#: lib/libtazpanel:88
 15.1899 +#: lib/libtazpanel:83
 15.1900 +#, fuzzy
 15.1901 +msgid "connected"
 15.1902 +msgstr "Conectado"
 15.1903 +
 15.1904 +#: lib/libtazpanel:100
 15.1905  msgid "IP Address"
 15.1906  msgstr "Dirección IP"
 15.1907  
 15.1908 -#: lib/libtazpanel:89
 15.1909 +#: lib/libtazpanel:101
 15.1910  msgid "Scan ports"
 15.1911  msgstr "Escanear puertos"
 15.1912  
 15.1913 -#: lib/libtazpanel:179
 15.1914 +#: lib/libtazpanel:214
 15.1915  msgid "Disk"
 15.1916  msgstr "Disco"
 15.1917  
 15.1918 -#: lib/libtazpanel:181
 15.1919 +#: lib/libtazpanel:215
 15.1920 +msgid "Label"
 15.1921 +msgstr ""
 15.1922 +
 15.1923 +#: lib/libtazpanel:216
 15.1924 +msgid "Type"
 15.1925 +msgstr ""
 15.1926 +
 15.1927 +#: lib/libtazpanel:218
 15.1928  msgid "Available"
 15.1929  msgstr "Disponible"
 15.1930  
 15.1931 -#: lib/libtazpanel:183
 15.1932 +#: lib/libtazpanel:220
 15.1933  msgid "Mount point"
 15.1934  msgstr "Punto de montaje"
 15.1935  
 15.1936 +#: installer.cgi:24
 15.1937 +msgid "TazPanel - Installer"
 15.1938 +msgstr ""
 15.1939 +
 15.1940 +#: installer.cgi:116
 15.1941 +#, sh-format
 15.1942 +msgid "Creating setup file $INSTFILE."
 15.1943 +msgstr ""
 15.1944 +
 15.1945 +#: installer.cgi:120 installer.cgi:127
 15.1946 +msgid "Setup File Error"
 15.1947 +msgstr ""
 15.1948 +
 15.1949 +#: installer.cgi:121
 15.1950 +#, sh-format
 15.1951 +msgid "The setup file <strong>$INSTFILE</strong> doesn't exist."
 15.1952 +msgstr ""
 15.1953 +
 15.1954 +#: installer.cgi:142
 15.1955 +#, fuzzy
 15.1956 +msgid "SliTaz Installer"
 15.1957 +msgstr "Instalar"
 15.1958 +
 15.1959 +#: installer.cgi:144
 15.1960 +msgid ""
 15.1961 +"The SliTaz Installer installs or upgrades SliTaz to a hard disk drive from a "
 15.1962 +"device like a Live-CD or LiveUSB key, from a SliTaz ISO file, or from the "
 15.1963 +"web by downloading an ISO file."
 15.1964 +msgstr ""
 15.1965 +
 15.1966 +#: installer.cgi:157
 15.1967 +msgid ""
 15.1968 +"Install SliTaz on a partition of your hard disk drive. If you decide to "
 15.1969 +"format your partition, all data will be lost. If you do not format, all data "
 15.1970 +"except for any existing /home directory will be removed, the home directory "
 15.1971 +"will be kept as is."
 15.1972 +msgstr ""
 15.1973 +
 15.1974 +#: installer.cgi:162
 15.1975 +msgid ""
 15.1976 +"Before installation, you may need to create or resize partitions on your "
 15.1977 +"hard disk drive in order to make space for SliTaz GNU/Linux. You can "
 15.1978 +"graphically manage your partitions with Gparted"
 15.1979 +msgstr ""
 15.1980 +
 15.1981 +#: installer.cgi:166 installer.cgi:244 styles/default/header.sh:90
 15.1982 +#, fuzzy
 15.1983 +msgid "Install SliTaz"
 15.1984 +msgstr "Instalar"
 15.1985 +
 15.1986 +#: installer.cgi:175
 15.1987 +msgid "Upgrade"
 15.1988 +msgstr ""
 15.1989 +
 15.1990 +#: installer.cgi:177
 15.1991 +msgid ""
 15.1992 +"Upgrade an already installed SliTaz system on your hard disk drive. Your /"
 15.1993 +"home /etc /var/www directories will be kept, all other directories will be "
 15.1994 +"removed. Any additional packages added to your old Slitaz system will be "
 15.1995 +"updated as long you have an active internet connection."
 15.1996 +msgstr ""
 15.1997 +
 15.1998 +#: installer.cgi:182 installer.cgi:257
 15.1999 +msgid "Upgrade SliTaz"
 15.2000 +msgstr ""
 15.2001 +
 15.2002 +#: installer.cgi:190
 15.2003 +msgid "Partitioning"
 15.2004 +msgstr ""
 15.2005 +
 15.2006 +#: installer.cgi:193
 15.2007 +msgid ""
 15.2008 +"On most used systems, the hard drive is already dedicated to partitions for "
 15.2009 +"Windows<sup>&trade;</sup>, or Linux, or another operating system. You'll "
 15.2010 +"need to resize these partitions in order to make space for SliTaz GNU/Linux. "
 15.2011 +"SliTaz will co-exist with other operating systems already installed on your "
 15.2012 +"hard drive."
 15.2013 +msgstr ""
 15.2014 +
 15.2015 +#: installer.cgi:199
 15.2016 +msgid ""
 15.2017 +"The amount of space needed depends on how much software you plan to install "
 15.2018 +"and how much space you require for users. It's conceivable that you could "
 15.2019 +"run a minimal SliTaz system in 300 megs or less, but 2 gigs is indeed more "
 15.2020 +"comfy."
 15.2021 +msgstr ""
 15.2022 +
 15.2023 +#: installer.cgi:204
 15.2024 +msgid ""
 15.2025 +"A separate home partition, and a partition that will be used as Linux swap "
 15.2026 +"space may be created if needed. Slitaz detects and uses swap partitions "
 15.2027 +"automatically."
 15.2028 +msgstr ""
 15.2029 +
 15.2030 +#: installer.cgi:212
 15.2031 +msgid ""
 15.2032 +"You can graphically manage your partitions with Gparted. GParted is a "
 15.2033 +"partition editor for graphically managing your disk partitions. Gparted "
 15.2034 +"allows you to create, destroy, resize and copy partitions without data loss."
 15.2035 +msgstr ""
 15.2036 +
 15.2037 +#: installer.cgi:216
 15.2038 +msgid ""
 15.2039 +"Gparted supports ext2, ext3, ext4, linux swap, ntfs and fat32 filesystems "
 15.2040 +"right out of the box. Support for xjs, jfs, hfs and other filesystems is "
 15.2041 +"available as well but you first need to add drivers for these filesystems by "
 15.2042 +"installing the related packages xfsprogs, jfsutils, linux-hfs and so on."
 15.2043 +msgstr ""
 15.2044 +
 15.2045 +#: installer.cgi:223
 15.2046 +msgid "Execute Gparted"
 15.2047 +msgstr ""
 15.2048 +
 15.2049 +#: installer.cgi:225
 15.2050 +#, fuzzy
 15.2051 +msgid "Continue installation"
 15.2052 +msgstr "Enlazar a otra instalación SliTaz"
 15.2053 +
 15.2054 +#: installer.cgi:227
 15.2055 +msgid ""
 15.2056 +"Once you've made room for SliTaz on your drive, you should be able to "
 15.2057 +"continue installation."
 15.2058 +msgstr ""
 15.2059 +
 15.2060 +#: installer.cgi:232 installer.cgi:502 installer.cgi:513
 15.2061 +msgid "Back to Installer Start Page"
 15.2062 +msgstr ""
 15.2063 +
 15.2064 +#: installer.cgi:234
 15.2065 +#, fuzzy
 15.2066 +msgid "Continue Installation"
 15.2067 +msgstr "Enlazar a otra instalación SliTaz"
 15.2068 +
 15.2069 +#: installer.cgi:246
 15.2070 +msgid ""
 15.2071 +"You're going to install SliTaz on a partition of your hard disk drive. If "
 15.2072 +"you decide to format your HDD, all data will be lost. If you do not format, "
 15.2073 +"all data except for any existing /home directory will be removed, the home "
 15.2074 +"directory will be kept as is."
 15.2075 +msgstr ""
 15.2076 +
 15.2077 +#: installer.cgi:259
 15.2078 +msgid ""
 15.2079 +"You're going to upgrade an already installed SliTaz system on your hard disk "
 15.2080 +"drive. Your /home /etc /var/www directories will be kept, all other "
 15.2081 +"directories will be removed. Any additional packages added to your old "
 15.2082 +"Slitaz system will be updated as long you have an active internet connection."
 15.2083 +msgstr ""
 15.2084 +
 15.2085 +#: installer.cgi:273
 15.2086 +msgid "Slitaz source media"
 15.2087 +msgstr ""
 15.2088 +
 15.2089 +#: installer.cgi:277
 15.2090 +#, fuzzy
 15.2091 +msgid "LiveCD"
 15.2092 +msgstr "Herramientas CD vivo"
 15.2093 +
 15.2094 +#: installer.cgi:280
 15.2095 +#, fuzzy
 15.2096 +msgid "LiveUSB:"
 15.2097 +msgstr "USB vivo"
 15.2098 +
 15.2099 +#: installer.cgi:306
 15.2100 +msgid "ISO file:"
 15.2101 +msgstr ""
 15.2102 +
 15.2103 +#: installer.cgi:307
 15.2104 +msgid "Full path to the ISO image file"
 15.2105 +msgstr ""
 15.2106 +
 15.2107 +#: installer.cgi:310
 15.2108 +msgid "Web:"
 15.2109 +msgstr ""
 15.2110 +
 15.2111 +#: installer.cgi:311
 15.2112 +#, fuzzy
 15.2113 +msgid "Stable"
 15.2114 +msgstr "Tabla ARP"
 15.2115 +
 15.2116 +#: installer.cgi:312
 15.2117 +msgid "Cooking"
 15.2118 +msgstr ""
 15.2119 +
 15.2120 +#: installer.cgi:314
 15.2121 +msgid "URL:"
 15.2122 +msgstr ""
 15.2123 +
 15.2124 +#: installer.cgi:315
 15.2125 +#, fuzzy
 15.2126 +msgid "Full url to an ISO image file"
 15.2127 +msgstr "Instalar desde la imágen ISO:"
 15.2128 +
 15.2129 +#: installer.cgi:324
 15.2130 +msgid "Hard Disk Drive"
 15.2131 +msgstr ""
 15.2132 +
 15.2133 +#: installer.cgi:333
 15.2134 +#, fuzzy
 15.2135 +msgid "Install Slitaz to partition:"
 15.2136 +msgstr "Instalar"
 15.2137 +
 15.2138 +#: installer.cgi:338 installer.cgi:373 installer.cgi:405
 15.2139 +msgid "None"
 15.2140 +msgstr ""
 15.2141 +
 15.2142 +#: installer.cgi:349 installer.cgi:416
 15.2143 +msgid "Format partition as:"
 15.2144 +msgstr ""
 15.2145 +
 15.2146 +#: installer.cgi:368
 15.2147 +msgid "Existing SliTaz partition to upgrade:"
 15.2148 +msgstr ""
 15.2149 +
 15.2150 +#: installer.cgi:389
 15.2151 +#, fuzzy
 15.2152 +msgid "Options"
 15.2153 +msgstr "Acción"
 15.2154 +
 15.2155 +#: installer.cgi:397
 15.2156 +msgid "home partition"
 15.2157 +msgstr ""
 15.2158 +
 15.2159 +#: installer.cgi:400
 15.2160 +msgid "Use a separate partition for /home:"
 15.2161 +msgstr ""
 15.2162 +
 15.2163 +#: installer.cgi:435
 15.2164 +msgid "Set Hostname to:"
 15.2165 +msgstr ""
 15.2166 +
 15.2167 +#: installer.cgi:436
 15.2168 +msgid "Name of your system"
 15.2169 +msgstr ""
 15.2170 +
 15.2171 +#: installer.cgi:446
 15.2172 +msgid "Root"
 15.2173 +msgstr ""
 15.2174 +
 15.2175 +#: installer.cgi:448
 15.2176 +#, fuzzy
 15.2177 +msgid "Root passwd:"
 15.2178 +msgstr "Nueva contraseña:"
 15.2179 +
 15.2180 +#: installer.cgi:449 installer.cgi:452
 15.2181 +#, fuzzy
 15.2182 +msgid "Password of root"
 15.2183 +msgstr "Contraseña:"
 15.2184 +
 15.2185 +#: installer.cgi:451 installer.cgi:473
 15.2186 +#, fuzzy
 15.2187 +msgid "Confirm password:"
 15.2188 +msgstr "Contraseña del Panel:"
 15.2189 +
 15.2190 +#: installer.cgi:463
 15.2191 +#, fuzzy
 15.2192 +msgid "User"
 15.2193 +msgstr "ID del usuario"
 15.2194 +
 15.2195 +#: installer.cgi:466
 15.2196 +msgid "Name of the first user"
 15.2197 +msgstr ""
 15.2198 +
 15.2199 +#: installer.cgi:470
 15.2200 +#, fuzzy
 15.2201 +msgid "User passwd:"
 15.2202 +msgstr "Nueva contraseña:"
 15.2203 +
 15.2204 +#: installer.cgi:471 installer.cgi:474
 15.2205 +msgid "Password of the first user"
 15.2206 +msgstr ""
 15.2207 +
 15.2208 +#: installer.cgi:484
 15.2209 +msgid "Grub"
 15.2210 +msgstr ""
 15.2211 +
 15.2212 +#: installer.cgi:487
 15.2213 +msgid ""
 15.2214 +"Install Grub bootloader. Usually you should answer yes, unless you want to "
 15.2215 +"install grub by hand yourself."
 15.2216 +msgstr ""
 15.2217 +
 15.2218 +#: installer.cgi:490
 15.2219 +msgid "Enable Windows Dual-Boot."
 15.2220 +msgstr ""
 15.2221 +
 15.2222 +#: installer.cgi:499
 15.2223 +msgid "Back to partitioning"
 15.2224 +msgstr ""
 15.2225 +
 15.2226 +#: installer.cgi:506
 15.2227 +#, fuzzy
 15.2228 +msgid "Proceed to SliTaz installation"
 15.2229 +msgstr "Enlazar a otra instalación SliTaz"
 15.2230 +
 15.2231 +#: installer.cgi:508
 15.2232 +msgid "Installation complete. You can now restart (reboot)"
 15.2233 +msgstr ""
 15.2234 +
 15.2235 +#: installer.cgi:510
 15.2236 +msgid "Installation failed. See log"
 15.2237 +msgstr ""
 15.2238 +
 15.2239 +#: installer.cgi:530
 15.2240 +msgid "A web page that points a browser to a different page after 2 seconds"
 15.2241 +msgstr ""
 15.2242 +
 15.2243 +#: installer.cgi:536
 15.2244 +msgid ""
 15.2245 +"If your browser doesn't automatically redirect within a few seconds, you may "
 15.2246 +"want to go there manually"
 15.2247 +msgstr ""
 15.2248 +
 15.2249 +#: installer.cgi:551 installer.cgi:566
 15.2250 +msgid "Tazinst Error"
 15.2251 +msgstr ""
 15.2252 +
 15.2253 +#: installer.cgi:552
 15.2254 +msgid ""
 15.2255 +"<strong>tazinst</strong>, the lightweight SliTaz HDD installer is missing. "
 15.2256 +"Any installation can not be done without tazinst."
 15.2257 +msgstr ""
 15.2258 +
 15.2259 +#: installer.cgi:555
 15.2260 +msgid "Check tazinst' permissions, or reinstall the slitaz-tools package:"
 15.2261 +msgstr ""
 15.2262 +
 15.2263 +#: installer.cgi:581
 15.2264 +msgid "Proceeding: ()"
 15.2265 +msgstr ""
 15.2266 +
 15.2267 +#: installer.cgi:582
 15.2268 +msgid "Please wait until processing is complete"
 15.2269 +msgstr ""
 15.2270 +
 15.2271 +#: installer.cgi:588
 15.2272 +msgid "Completed."
 15.2273 +msgstr ""
 15.2274 +
 15.2275 +#: installer.cgi:622
 15.2276 +msgid "Hostname error"
 15.2277 +msgstr ""
 15.2278 +
 15.2279 +#: installer.cgi:626
 15.2280 +#, fuzzy
 15.2281 +msgid "Root password error"
 15.2282 +msgstr "Nueva contraseña:"
 15.2283 +
 15.2284 +#: installer.cgi:630
 15.2285 +msgid "User login error"
 15.2286 +msgstr ""
 15.2287 +
 15.2288 +#: installer.cgi:634
 15.2289 +#, fuzzy
 15.2290 +msgid "User password error"
 15.2291 +msgstr "Nueva contraseña:"
 15.2292 +
 15.2293 +#: installer.cgi:637 installer.cgi:648
 15.2294 +msgid "Do you really want to continue?"
 15.2295 +msgstr ""
 15.2296 +
 15.2297 +#: help.cgi:20
 15.2298 +#, fuzzy
 15.2299 +msgid "Manual"
 15.2300 +msgstr "Editar manualmente"
 15.2301 +
 15.2302 +#: help.cgi:28
 15.2303 +msgid "TazPanel - Help &amp; Doc"
 15.2304 +msgstr ""
 15.2305 +
 15.2306 +#: styles/default/header.sh:29
 15.2307 +msgid "Processes"
 15.2308 +msgstr ""
 15.2309 +
 15.2310 +#: styles/default/header.sh:31
 15.2311 +#, fuzzy
 15.2312 +msgid "Create Report"
 15.2313 +msgstr "Crear un reporte"
 15.2314 +
 15.2315 +#: styles/default/header.sh:34
 15.2316 +#, fuzzy
 15.2317 +msgid "Packages"
 15.2318 +msgstr "Paquete"
 15.2319 +
 15.2320 +#: styles/default/header.sh:41
 15.2321 +#, fuzzy
 15.2322 +msgid "Check updates"
 15.2323 +msgstr "Comprobar actualizaciónes"
 15.2324 +
 15.2325 +#: styles/default/header.sh:49
 15.2326 +msgid "Ethernet"
 15.2327 +msgstr ""
 15.2328 +
 15.2329 +#: styles/default/header.sh:51
 15.2330 +msgid "Wireless"
 15.2331 +msgstr ""
 15.2332 +
 15.2333 +#: styles/default/header.sh:53
 15.2334 +#, fuzzy
 15.2335 +msgid "Config file"
 15.2336 +msgstr "Fila de configuración"
 15.2337 +
 15.2338 +#: styles/default/header.sh:56
 15.2339 +#, fuzzy
 15.2340 +msgid "Settings"
 15.2341 +msgstr "Configuraciónes del sistema"
 15.2342 +
 15.2343 +#: styles/default/header.sh:59
 15.2344 +#, fuzzy
 15.2345 +msgid "Users"
 15.2346 +msgstr "ID del usuario"
 15.2347 +
 15.2348 +#: styles/default/header.sh:62
 15.2349 +#, fuzzy
 15.2350 +msgid "Boot"
 15.2351 +msgstr "Logs del boot"
 15.2352 +
 15.2353 +#: styles/default/header.sh:72
 15.2354 +#, fuzzy
 15.2355 +msgid "Hardware"
 15.2356 +msgstr "Reloj hardware :"
 15.2357 +
 15.2358 +#: styles/default/header.sh:80
 15.2359 +#, fuzzy
 15.2360 +msgid "Live"
 15.2361 +msgstr "USB vivo"
 15.2362 +
 15.2363 +#: styles/default/header.sh:82
 15.2364 +msgid "Create a live USB key"
 15.2365 +msgstr ""
 15.2366 +
 15.2367 +#: styles/default/header.sh:83
 15.2368 +#, fuzzy
 15.2369 +msgid "Create a live CD-ROM"
 15.2370 +msgstr "Escriba un Cd Vivo"
 15.2371 +
 15.2372 +#: styles/default/header.sh:91
 15.2373 +msgid "Upgrade system"
 15.2374 +msgstr ""
 15.2375 +
 15.2376 +#: styles/default/footer.sh:6
 15.2377 +msgid "Copyright"
 15.2378 +msgstr ""
 15.2379 +
 15.2380 +#: styles/default/footer.sh:8
 15.2381 +msgid "BSD License"
 15.2382 +msgstr ""
 15.2383 +
 15.2384 +#~ msgid "List:"
 15.2385 +#~ msgstr "Lista:"
 15.2386 +
 15.2387 +#~ msgid "System time    :"
 15.2388 +#~ msgstr "Hora del sistema   :"
 15.2389 +
 15.2390 +#~ msgid "Output of"
 15.2391 +#~ msgstr "Salida de"
    16.1 --- a/po/fr.po	Fri May 04 12:57:53 2012 +0300
    16.2 +++ b/po/fr.po	Fri May 04 13:00:43 2012 +0300
    16.3 @@ -8,7 +8,7 @@
    16.4  msgstr ""
    16.5  "Project-Id-Version: TazPanel 1.0\n"
    16.6  "Report-Msgid-Bugs-To: \n"
    16.7 -"POT-Creation-Date: 2012-04-02 10:12+0200\n"
    16.8 +"POT-Creation-Date: 2012-05-04 02:44+0000\n"
    16.9  "PO-Revision-Date: 2012-03-12 21:18+0100\n"
   16.10  "Last-Translator: Christophe Lincoln <pankso@slitaz.org>\n"
   16.11  "Language-Team: French\n"
   16.12 @@ -18,6 +18,11 @@
   16.13  "Content-Transfer-Encoding: 8bit\n"
   16.14  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
   16.15  
   16.16 +#: tazpanel:35
   16.17 +#, fuzzy, sh-format
   16.18 +msgid "Starting TazPanel web server on port $HTTPD_PORT..."
   16.19 +msgstr "Arrêt du server web TazPanel..."
   16.20 +
   16.21  #: tazpanel:37
   16.22  msgid "TazPanel Authentication - Default: root:root"
   16.23  msgstr "TazPanel Authentification - Defaut: root:root"
   16.24 @@ -38,353 +43,635 @@
   16.25  msgid "Password changed successfully"
   16.26  msgstr "Mot de passe changé avec succès"
   16.27  
   16.28 -#: tazpanel:53
   16.29 -msgid "Usage:"
   16.30 -msgstr "Utilisation:"
   16.31 +#: tazpanel:54
   16.32 +#, sh-format
   16.33 +msgid "Usage: $program_name [start|stop|passwd]"
   16.34 +msgstr ""
   16.35  
   16.36 -#: index.cgi:36 index.cgi:74
   16.37 +#: index.cgi:38 index.cgi:83
   16.38  msgid "Differences"
   16.39  msgstr "Différences"
   16.40  
   16.41  #: index.cgi:72
   16.42 +msgid "TazPanel - File"
   16.43 +msgstr ""
   16.44 +
   16.45 +#: index.cgi:81
   16.46  msgid "Save"
   16.47  msgstr "Enregistrer"
   16.48  
   16.49 -#: index.cgi:94 settings.cgi:256
   16.50 +#: index.cgi:103 settings.cgi:261
   16.51  msgid "Edit"
   16.52  msgstr "Éditer"
   16.53  
   16.54 -#: index.cgi:113 index.cgi:313
   16.55 -msgid "Terminal"
   16.56 -msgstr "Terminal"
   16.57 +#: index.cgi:126
   16.58 +msgid "TazPanel - Terminal"
   16.59 +msgstr ""
   16.60  
   16.61 -#: index.cgi:126
   16.62 +#: index.cgi:139
   16.63  msgid "Small terminal emulator, commands options are supported."
   16.64  msgstr ""
   16.65  "Petit émulateur de terminal, les options des commandes sont supportées."
   16.66  
   16.67 -#: index.cgi:128 index.cgi:145
   16.68 -msgid "Commands:"
   16.69 -msgstr "Commandes:"
   16.70 +#: index.cgi:141 index.cgi:158
   16.71 +#, sh-format
   16.72 +msgid "Commands: $commands"
   16.73 +msgstr "Commandes: $commands"
   16.74  
   16.75 -#: index.cgi:132
   16.76 -msgid "Downloading to:"
   16.77 -msgstr "Téléchargement dans:"
   16.78 +#: index.cgi:146
   16.79 +#, sh-format
   16.80 +msgid "Downloading to: $dl"
   16.81 +msgstr "Téléchargement dans: $dl"
   16.82  
   16.83 -#: index.cgi:149 index.cgi:315
   16.84 +#: index.cgi:153
   16.85 +#, sh-format
   16.86 +msgid "$cmd needs an argument"
   16.87 +msgstr ""
   16.88 +
   16.89 +#: index.cgi:157
   16.90 +#, sh-format
   16.91 +msgid "Unknown command: $cmd"
   16.92 +msgstr ""
   16.93 +
   16.94 +#: index.cgi:162
   16.95 +msgid "TazPanel - Process activity"
   16.96 +msgstr "TazPanel - Activité des processus"
   16.97 +
   16.98 +#: index.cgi:164
   16.99 +msgid "Refresh:"
  16.100 +msgstr "Rafraîchir"
  16.101 +
  16.102 +#: index.cgi:169
  16.103 +msgid "1s"
  16.104 +msgstr ""
  16.105 +
  16.106 +#: index.cgi:170
  16.107 +msgid "5s"
  16.108 +msgstr ""
  16.109 +
  16.110 +#: index.cgi:171
  16.111 +msgid "10s"
  16.112 +msgstr ""
  16.113 +
  16.114 +#: index.cgi:172 live.cgi:152
  16.115 +msgid "none"
  16.116 +msgstr ""
  16.117 +
  16.118 +#: index.cgi:188
  16.119 +msgid "TazPanel - Debug"
  16.120 +msgstr ""
  16.121 +
  16.122 +#: index.cgi:191
  16.123 +msgid "HTTP Environment"
  16.124 +msgstr ""
  16.125 +
  16.126 +#: index.cgi:198
  16.127 +msgid "TazPanel - System report"
  16.128 +msgstr "TazPanel - Rapport système"
  16.129 +
  16.130 +#: index.cgi:203
  16.131 +#, sh-format
  16.132 +msgid "Reporting to: $output"
  16.133 +msgstr "Création du rapport vers: $output"
  16.134 +
  16.135 +#: index.cgi:206
  16.136 +msgid "Creating report header..."
  16.137 +msgstr "Création de l'en-tête du rapport..."
  16.138 +
  16.139 +#: index.cgi:213 index.cgi:230
  16.140 +msgid "SliTaz system report"
  16.141 +msgstr "Rapport système"
  16.142 +
  16.143 +#: index.cgi:227
  16.144 +msgid "Creating system summary..."
  16.145 +msgstr "Création du résumé du système..."
  16.146 +
  16.147 +#: index.cgi:231
  16.148 +msgid "Date:"
  16.149 +msgstr ""
  16.150 +
  16.151 +#: index.cgi:242
  16.152 +msgid "Getting hardware info..."
  16.153 +msgstr "Obtention de l'information sur le matériel..."
  16.154 +
  16.155 +#: index.cgi:260
  16.156 +msgid "Getting networking info..."
  16.157 +msgstr "Obtention de l'information réseau..."
  16.158 +
  16.159 +#: index.cgi:274
  16.160 +msgid "Getting filesystems info..."
  16.161 +msgstr "Obtention de l'information des systèmes de fichiers..."
  16.162 +
  16.163 +#: index.cgi:294
  16.164 +msgid "Getting boot logs..."
  16.165 +msgstr "Obtention des journaux de démarrage..."
  16.166 +
  16.167 +#: index.cgi:297 boot.cgi:29 boot.cgi:34
  16.168 +msgid "Kernel messages"
  16.169 +msgstr "Messages du noyau"
  16.170 +
  16.171 +#: index.cgi:300 boot.cgi:30 boot.cgi:38
  16.172 +msgid "Boot scripts"
  16.173 +msgstr "Scripts de démarrage"
  16.174 +
  16.175 +#: index.cgi:305
  16.176 +msgid "Creating report footer..."
  16.177 +msgstr "Création du pied de page du rapport..."
  16.178 +
  16.179 +#: index.cgi:317
  16.180 +msgid "View report"
  16.181 +msgstr "Voir le rapport"
  16.182 +
  16.183 +#: index.cgi:318
  16.184 +msgid "This report can be attached with a bug report on:"
  16.185 +msgstr "Ce rapport peut être attaché avec un rapport de bogue sur:"
  16.186 +
  16.187 +#: index.cgi:332
  16.188 +#, sh-format
  16.189 +msgid "Host: $hostname"
  16.190 +msgstr "Nom d'hôte: $hostname"
  16.191 +
  16.192 +#: index.cgi:333
  16.193 +msgid "SliTaz administration and configuration Panel"
  16.194 +msgstr "Panneau de Configuration et d'Administration de SliTaz"
  16.195 +
  16.196 +#: index.cgi:337 styles/default/header.sh:27
  16.197 +msgid "Terminal"
  16.198 +msgstr "Terminal"
  16.199 +
  16.200 +#: index.cgi:339
  16.201  msgid "Process activity"
  16.202  msgstr "Activité des processus"
  16.203  
  16.204 -#: index.cgi:151
  16.205 -msgid "Refresh: "
  16.206 -msgstr "Rafraîchir"
  16.207 -
  16.208 -#: index.cgi:176
  16.209 -msgid "System report"
  16.210 -msgstr "Rapport système"
  16.211 -
  16.212 -#: index.cgi:180
  16.213 -msgid "Reporting to:"
  16.214 -msgstr "Création du rapport vers:"
  16.215 -
  16.216 -#: index.cgi:182
  16.217 -msgid "Creating report header...  "
  16.218 -msgstr "Création de l'en-tête du rapport..."
  16.219 -
  16.220 -#: index.cgi:199
  16.221 -msgid "Creating system summary... "
  16.222 -msgstr "Création du résumé du système..."
  16.223 -
  16.224 -#: index.cgi:212
  16.225 -msgid "Getting hardware info...   "
  16.226 -msgstr "Obtention de l'information sur le matériel..."
  16.227 -
  16.228 -#: index.cgi:236
  16.229 -msgid "Getting networking info... "
  16.230 -msgstr "Obtention de l'information réseau..."
  16.231 -
  16.232 -#: index.cgi:252
  16.233 -msgid "Getting filesystems info..."
  16.234 -msgstr "Obtention de l'information des systèmes de fichiers..."
  16.235 -
  16.236 -#: index.cgi:276
  16.237 -msgid "Getting boot logs...       "
  16.238 -msgstr "Obtention des journaux de démarrage..."
  16.239 -
  16.240 -#: index.cgi:278 boot.cgi:29 boot.cgi:34
  16.241 -msgid "Kernel messages"
  16.242 -msgstr "Messages du noyau"
  16.243 -
  16.244 -#: index.cgi:282 boot.cgi:30 boot.cgi:39
  16.245 -msgid "Boot scripts"
  16.246 -msgstr "Scripts de démarrage"
  16.247 -
  16.248 -#: index.cgi:288
  16.249 -msgid "Creating report footer...  "
  16.250 -msgstr "Création du pied de page du rapport..."
  16.251 -
  16.252 -#: index.cgi:296
  16.253 -msgid "View report"
  16.254 -msgstr "Voir le rapport"
  16.255 -
  16.256 -#: index.cgi:297
  16.257 -msgid "This report can be attached with a bug report on: "
  16.258 -msgstr "Ce rapport peut être attaché avec un rapport de bogue sur:"
  16.259 -
  16.260 -#: index.cgi:308
  16.261 -msgid "Host:"
  16.262 -msgstr "Hôte:"
  16.263 -
  16.264 -#: index.cgi:309
  16.265 -msgid "SliTaz administration and configuration Panel"
  16.266 -msgstr "Panneau de Configuration et d'Administration de SliTaz"
  16.267 -
  16.268 -#: index.cgi:317
  16.269 +#: index.cgi:341
  16.270  msgid "Create a report"
  16.271  msgstr "Créer un rapport"
  16.272  
  16.273 -#: index.cgi:320 pkgs.cgi:855
  16.274 +#: index.cgi:344 pkgs.cgi:948
  16.275  msgid "Summary"
  16.276  msgstr "Résumé"
  16.277  
  16.278 -#: index.cgi:323
  16.279 -msgid "Uptime       :"
  16.280 +#: index.cgi:347
  16.281 +msgid "Uptime:"
  16.282  msgstr "Fonctionne depuis:"
  16.283  
  16.284 -#: index.cgi:324
  16.285 -msgid "Memory in Mb :"
  16.286 +#: index.cgi:350
  16.287 +msgid "Memory in Mb:"
  16.288  msgstr "Mémoires en Mb :"
  16.289  
  16.290 -#: index.cgi:326
  16.291 -msgid "Linux kernel :"
  16.292 +#: index.cgi:355
  16.293 +#, sh-format
  16.294 +msgid "Total: $memtotal, Used: $memused, Free: $memfree"
  16.295 +msgstr ""
  16.296 +
  16.297 +#: index.cgi:360
  16.298 +msgid "Linux kernel:"
  16.299  msgstr "Noyau Linux:"
  16.300  
  16.301 -#: index.cgi:331
  16.302 +#: index.cgi:367
  16.303  msgid "Network status"
  16.304  msgstr "État du réseau"
  16.305  
  16.306 -#: index.cgi:334 hardware.cgi:193
  16.307 +#: index.cgi:370 hardware.cgi:202
  16.308  msgid "Filesystem usage statistics"
  16.309  msgstr "Statistiques d'utilisation du système de fichiers"
  16.310  
  16.311 -#: index.cgi:355
  16.312 +#: index.cgi:403
  16.313  msgid "Panel Activity"
  16.314  msgstr "Activité du panneau"
  16.315  
  16.316 -#: pkgs.cgi:50
  16.317 -msgid "Last recharge        : "
  16.318 +#: pkgs.cgi:17
  16.319 +msgid "TazPanel - Packages"
  16.320 +msgstr ""
  16.321 +
  16.322 +#: pkgs.cgi:51
  16.323 +#, fuzzy
  16.324 +msgid "Last recharge:"
  16.325  msgstr "Dernière recharge :"
  16.326  
  16.327 +#: pkgs.cgi:58
  16.328 +msgid "(Older than 10 days)"
  16.329 +msgstr ""
  16.330 +
  16.331  #: pkgs.cgi:60
  16.332 -msgid "Installed packages   : "
  16.333 +msgid "(Not older than 10 days)"
  16.334 +msgstr ""
  16.335 +
  16.336 +#: pkgs.cgi:64
  16.337 +#, fuzzy
  16.338 +msgid "Installed packages:"
  16.339  msgstr "Paquets installés      : "
  16.340  
  16.341 -#: pkgs.cgi:62
  16.342 -msgid "Mirrored packages    : "
  16.343 +#: pkgs.cgi:66
  16.344 +#, fuzzy
  16.345 +msgid "Mirrored packages:"
  16.346  msgstr "Paquets du miroir      :"
  16.347  
  16.348 -#: pkgs.cgi:64
  16.349 -msgid "Upgradeable packages : "
  16.350 +#: pkgs.cgi:68
  16.351 +#, fuzzy
  16.352 +msgid "Upgradeable packages:"
  16.353  msgstr "Mises à jour disponibles :"
  16.354  
  16.355 -#: pkgs.cgi:68
  16.356 -msgid "Blocked packages     : "
  16.357 +#: pkgs.cgi:70 pkgs.cgi:707
  16.358 +msgid "Installed files:"
  16.359 +msgstr "Fichiers installés:"
  16.360 +
  16.361 +#: pkgs.cgi:72
  16.362 +#, fuzzy
  16.363 +msgid "Blocked packages:"
  16.364  msgstr "Paquets bloqués       : "
  16.365  
  16.366 -#: pkgs.cgi:113
  16.367 +#: pkgs.cgi:86
  16.368 +#, fuzzy
  16.369 +msgid "Delete"
  16.370 +msgstr "Supprimer l'utilisateur"
  16.371 +
  16.372 +#: pkgs.cgi:89
  16.373 +msgid "Use as default"
  16.374 +msgstr ""
  16.375 +
  16.376 +#: pkgs.cgi:120
  16.377  msgid "Search"
  16.378  msgstr "Rechercher"
  16.379  
  16.380 -#: pkgs.cgi:115
  16.381 +#: pkgs.cgi:122
  16.382  msgid "Files"
  16.383  msgstr "Fichiers"
  16.384  
  16.385 -#: pkgs.cgi:126 network.cgi:23 network.cgi:151 network.cgi:240 boot.cgi:84
  16.386 -#: settings.cgi:104 lib/libtazpanel:87
  16.387 +#: pkgs.cgi:134 pkgs.cgi:867 network.cgi:23 network.cgi:156 network.cgi:246
  16.388 +#: boot.cgi:82 settings.cgi:104 lib/libtazpanel:98
  16.389  msgid "Name"
  16.390  msgstr "Nom"
  16.391  
  16.392 -#: pkgs.cgi:127
  16.393 +#: pkgs.cgi:135
  16.394  msgid "Version"
  16.395  msgstr "Version"
  16.396  
  16.397 -#: pkgs.cgi:128 boot.cgi:85
  16.398 +#: pkgs.cgi:136 boot.cgi:83
  16.399  msgid "Description"
  16.400  msgstr "Description"
  16.401  
  16.402 -#: pkgs.cgi:129 installer.cgi:313
  16.403 +#: pkgs.cgi:137
  16.404  msgid "Web"
  16.405  msgstr "Internet"
  16.406  
  16.407 -#: pkgs.cgi:212 pkgs.cgi:321 pkgs.cgi:362 pkgs.cgi:416 pkgs.cgi:454
  16.408 -#: pkgs.cgi:503 pkgs.cgi:575 pkgs.cgi:858
  16.409 +#: pkgs.cgi:147
  16.410 +msgid "Categories"
  16.411 +msgstr ""
  16.412 +
  16.413 +#: pkgs.cgi:148
  16.414 +#, fuzzy
  16.415 +msgid "Base-system"
  16.416 +msgstr "Système de fichier"
  16.417 +
  16.418 +#: pkgs.cgi:149
  16.419 +msgid "X window"
  16.420 +msgstr ""
  16.421 +
  16.422 +#: pkgs.cgi:150
  16.423 +msgid "Utilities"
  16.424 +msgstr ""
  16.425 +
  16.426 +#: pkgs.cgi:151 styles/default/header.sh:46
  16.427 +#, fuzzy
  16.428 +msgid "Network"
  16.429 +msgstr "Gestion de réseau"
  16.430 +
  16.431 +#: pkgs.cgi:152
  16.432 +msgid "Games"
  16.433 +msgstr ""
  16.434 +
  16.435 +#: pkgs.cgi:153
  16.436 +msgid "Graphics"
  16.437 +msgstr ""
  16.438 +
  16.439 +#: pkgs.cgi:154
  16.440 +msgid "Office"
  16.441 +msgstr ""
  16.442 +
  16.443 +#: pkgs.cgi:155
  16.444 +msgid "Multimedia"
  16.445 +msgstr ""
  16.446 +
  16.447 +#: pkgs.cgi:156
  16.448 +msgid "Development"
  16.449 +msgstr ""
  16.450 +
  16.451 +#: pkgs.cgi:157
  16.452 +#, fuzzy
  16.453 +msgid "System tools"
  16.454 +msgstr "Heure système"
  16.455 +
  16.456 +#: pkgs.cgi:158
  16.457 +msgid "Security"
  16.458 +msgstr ""
  16.459 +
  16.460 +#: pkgs.cgi:159
  16.461 +msgid "Misc"
  16.462 +msgstr ""
  16.463 +
  16.464 +#: pkgs.cgi:160
  16.465 +msgid "Meta"
  16.466 +msgstr ""
  16.467 +
  16.468 +#: pkgs.cgi:161
  16.469 +msgid "Non free"
  16.470 +msgstr ""
  16.471 +
  16.472 +#: pkgs.cgi:162
  16.473 +msgid "All"
  16.474 +msgstr ""
  16.475 +
  16.476 +#: pkgs.cgi:168
  16.477 +#, fuzzy
  16.478 +msgid "Repositories"
  16.479 +msgstr "Dépôts privés"
  16.480 +
  16.481 +#: pkgs.cgi:169
  16.482 +msgid "Public"
  16.483 +msgstr ""
  16.484 +
  16.485 +#: pkgs.cgi:177
  16.486 +msgid "Any"
  16.487 +msgstr ""
  16.488 +
  16.489 +#: pkgs.cgi:217 pkgs.cgi:339
  16.490 +#, fuzzy
  16.491 +msgid "Listing packages..."
  16.492 +msgstr "Obtention de l'information sur le paquet..."
  16.493 +
  16.494 +#: pkgs.cgi:220 pkgs.cgi:358 pkgs.cgi:412 pkgs.cgi:479 pkgs.cgi:520
  16.495 +#: pkgs.cgi:580 pkgs.cgi:659 pkgs.cgi:952 styles/default/header.sh:37
  16.496  msgid "My packages"
  16.497  msgstr "Mes paquets"
  16.498  
  16.499 -#: pkgs.cgi:216 pkgs.cgi:262 pkgs.cgi:311 pkgs.cgi:352 pkgs.cgi:445
  16.500 +#: pkgs.cgi:225 pkgs.cgi:284 pkgs.cgi:347 pkgs.cgi:401 pkgs.cgi:511
  16.501  #: settings.cgi:92
  16.502  msgid "Selection:"
  16.503  msgstr "Sélection:"
  16.504  
  16.505 -#: pkgs.cgi:220 pkgs.cgi:266 pkgs.cgi:317 pkgs.cgi:358 pkgs.cgi:451
  16.506 -msgid "List:"
  16.507 -msgstr "Liste:"
  16.508 +#: pkgs.cgi:226 pkgs.cgi:607
  16.509 +msgid "Remove"
  16.510 +msgstr "Supprimer"
  16.511  
  16.512 -#: pkgs.cgi:258 pkgs.cgi:864
  16.513 +#: pkgs.cgi:230 pkgs.cgi:289 pkgs.cgi:354 pkgs.cgi:408 pkgs.cgi:518
  16.514 +#: pkgs.cgi:962 styles/default/header.sh:39
  16.515 +msgid "Recharge list"
  16.516 +msgstr "Recharger la liste"
  16.517 +
  16.518 +#: pkgs.cgi:232 pkgs.cgi:291 pkgs.cgi:356 pkgs.cgi:410 pkgs.cgi:477
  16.519 +#: pkgs.cgi:964
  16.520 +msgid "Check upgrades"
  16.521 +msgstr "Mettre à jour"
  16.522 +
  16.523 +#: pkgs.cgi:275
  16.524 +#, fuzzy
  16.525 +msgid "Listing linkable packages..."
  16.526 +msgstr "Obtention de l'information sur le paquet..."
  16.527 +
  16.528 +#: pkgs.cgi:278 pkgs.cgi:958
  16.529  msgid "Linkable packages"
  16.530  msgstr "Paquets liables"
  16.531  
  16.532 -#: pkgs.cgi:307
  16.533 -msgid "Category:"
  16.534 -msgstr "Catégorie:"
  16.535 +#: pkgs.cgi:285
  16.536 +msgid "Link"
  16.537 +msgstr ""
  16.538  
  16.539 -#: pkgs.cgi:348
  16.540 +#: pkgs.cgi:342
  16.541 +#, sh-format
  16.542 +msgid "Category: $category"
  16.543 +msgstr "Catégorie: $category"
  16.544 +
  16.545 +#: pkgs.cgi:366 pkgs.cgi:838
  16.546 +#, sh-format
  16.547 +msgid "Repository: $Repo_Name"
  16.548 +msgstr ""
  16.549 +
  16.550 +#: pkgs.cgi:394
  16.551 +#, fuzzy
  16.552 +msgid "Searching packages..."
  16.553 +msgstr "Recherche de paquets"
  16.554 +
  16.555 +#: pkgs.cgi:397
  16.556  msgid "Search packages"
  16.557  msgstr "Recherche de paquets"
  16.558  
  16.559 -#: pkgs.cgi:355 pkgs.cgi:448
  16.560 +#: pkgs.cgi:404 pkgs.cgi:514
  16.561  msgid "Toogle all"
  16.562  msgstr "Tout séléctionner"
  16.563  
  16.564 -#: pkgs.cgi:371 pkgs.cgi:545
  16.565 +#: pkgs.cgi:423
  16.566  msgid "Package"
  16.567  msgstr "Paquet"
  16.568  
  16.569 -#: pkgs.cgi:372
  16.570 +#: pkgs.cgi:424
  16.571  msgid "File"
  16.572  msgstr "Fichier"
  16.573  
  16.574 -#: pkgs.cgi:403
  16.575 +#: pkgs.cgi:465
  16.576 +#, fuzzy
  16.577 +msgid "Recharging lists..."
  16.578 +msgstr "Recharger la liste"
  16.579 +
  16.580 +#: pkgs.cgi:468
  16.581  msgid "Recharge"
  16.582  msgstr "Recharger"
  16.583  
  16.584 -#: pkgs.cgi:408
  16.585 +#: pkgs.cgi:473
  16.586  msgid "Recharge checks for new or updated packages"
  16.587  msgstr "Recharge vérifie les nouveaux paquets ou mise à jour"
  16.588  
  16.589 -#: pkgs.cgi:414 pkgs.cgi:870
  16.590 -msgid "Check upgrades"
  16.591 -msgstr "Mettre à jour"
  16.592 -
  16.593 -#: pkgs.cgi:422
  16.594 +#: pkgs.cgi:485
  16.595  msgid "Recharging packages list"
  16.596  msgstr "Recharge des listes de paquets"
  16.597  
  16.598 -#: pkgs.cgi:427
  16.599 +#: pkgs.cgi:490
  16.600  msgid "Packages lists are up-to-date. You should check for upgrades now."
  16.601  msgstr ""
  16.602  "Les listes de paquets ont été actualisées. Vous devriez rechercher des mises "
  16.603  "à jour maintenant."
  16.604  
  16.605 -#: pkgs.cgi:441
  16.606 +#: pkgs.cgi:503
  16.607 +#, fuzzy
  16.608 +msgid "Checking for upgrades..."
  16.609 +msgstr "Mettre à jour"
  16.610 +
  16.611 +#: pkgs.cgi:506
  16.612  msgid "Up packages"
  16.613  msgstr "Mettre à jour"
  16.614  
  16.615 -#: pkgs.cgi:497
  16.616 +#: pkgs.cgi:575
  16.617  msgid "Performing tasks on packages"
  16.618  msgstr "Opérations sur les paquets"
  16.619  
  16.620 -#: pkgs.cgi:527
  16.621 -msgid "Remove"
  16.622 -msgstr "Supprimer"
  16.623 +#: pkgs.cgi:585
  16.624 +#, sh-format
  16.625 +msgid "Executing $cmd for: $pkgs"
  16.626 +msgstr ""
  16.627  
  16.628 -#: pkgs.cgi:530
  16.629 +#: pkgs.cgi:610
  16.630  msgid "Getting package info..."
  16.631  msgstr "Obtention de l'information sur le paquet..."
  16.632  
  16.633 -#: pkgs.cgi:541 pkgs.cgi:550 installer.cgi:155
  16.634 +#: pkgs.cgi:622 installer.cgi:155 styles/default/header.sh:88
  16.635  msgid "Install"
  16.636  msgstr "Installer"
  16.637  
  16.638 -#: pkgs.cgi:560
  16.639 +#: pkgs.cgi:626
  16.640 +#, fuzzy, sh-format
  16.641 +msgid "Package $PACKAGE"
  16.642 +msgstr "Paquet"
  16.643 +
  16.644 +#: pkgs.cgi:634
  16.645 +msgid "Install (Non Free)"
  16.646 +msgstr ""
  16.647 +
  16.648 +#: pkgs.cgi:642
  16.649  msgid "Unblock"
  16.650  msgstr "Débloquer"
  16.651  
  16.652 -#: pkgs.cgi:562
  16.653 +#: pkgs.cgi:646
  16.654  msgid "Block"
  16.655  msgstr "Bloquer"
  16.656  
  16.657 -#: pkgs.cgi:609 pkgs.cgi:621
  16.658 -msgid "Installed files:"
  16.659 +#: pkgs.cgi:650
  16.660 +msgid "Repack"
  16.661 +msgstr ""
  16.662 +
  16.663 +#: pkgs.cgi:665
  16.664 +#, fuzzy
  16.665 +msgid "Name:"
  16.666 +msgstr "Nom"
  16.667 +
  16.668 +#: pkgs.cgi:666
  16.669 +#, fuzzy
  16.670 +msgid "Version:"
  16.671 +msgstr "Version"
  16.672 +
  16.673 +#: pkgs.cgi:667
  16.674 +#, fuzzy
  16.675 +msgid "Description:"
  16.676 +msgstr "Description"
  16.677 +
  16.678 +#: pkgs.cgi:668
  16.679 +#, fuzzy
  16.680 +msgid "Category:"
  16.681 +msgstr "Catégorie: $category"
  16.682 +
  16.683 +#: pkgs.cgi:672
  16.684 +msgid "Maintainer:"
  16.685 +msgstr ""
  16.686 +
  16.687 +#: pkgs.cgi:673 pkgs.cgi:702
  16.688 +msgid "Website:"
  16.689 +msgstr ""
  16.690 +
  16.691 +#: pkgs.cgi:674 pkgs.cgi:703
  16.692 +#, fuzzy
  16.693 +msgid "Sizes:"
  16.694 +msgstr "Taille"
  16.695 +
  16.696 +#: pkgs.cgi:677
  16.697 +msgid "Depends:"
  16.698 +msgstr ""
  16.699 +
  16.700 +#: pkgs.cgi:684
  16.701 +msgid "Suggested:"
  16.702 +msgstr ""
  16.703 +
  16.704 +#: pkgs.cgi:690
  16.705 +msgid "Tags:"
  16.706 +msgstr ""
  16.707 +
  16.708 +#: pkgs.cgi:696
  16.709 +#, fuzzy, sh-format
  16.710 +msgid "Installed files: $I_FILES"
  16.711  msgstr "Fichiers installés:"
  16.712  
  16.713 -#: pkgs.cgi:666 pkgs.cgi:790
  16.714 +#: pkgs.cgi:755 pkgs.cgi:884
  16.715  msgid "Set link"
  16.716  msgstr "Créer un lien"
  16.717  
  16.718 -#: pkgs.cgi:669 pkgs.cgi:791
  16.719 +#: pkgs.cgi:758 pkgs.cgi:885
  16.720  msgid "Remove link"
  16.721  msgstr "Supprimer le lien"
  16.722  
  16.723 -#: pkgs.cgi:675 pkgs.cgi:872
  16.724 +#: pkgs.cgi:764 pkgs.cgi:966 styles/default/header.sh:43
  16.725  msgid "Administration"
  16.726  msgstr "Administration"
  16.727  
  16.728 -#: pkgs.cgi:677
  16.729 +#: pkgs.cgi:766
  16.730  msgid "Tazpkg administration and settings"
  16.731  msgstr "Administration et réglages de Tazpkg"
  16.732  
  16.733 -#: pkgs.cgi:681
  16.734 +#: pkgs.cgi:770
  16.735  msgid "Save configuration"
  16.736  msgstr "Enregistrer la configuration"
  16.737  
  16.738 -#: pkgs.cgi:683
  16.739 +#: pkgs.cgi:772
  16.740  msgid "List configuration files"
  16.741  msgstr "Lister les fichiers de configuration"
  16.742  
  16.743 -#: pkgs.cgi:685
  16.744 +#: pkgs.cgi:774
  16.745  msgid "Quick check"
  16.746  msgstr "Contrôle rapide"
  16.747  
  16.748 -#: pkgs.cgi:687
  16.749 +#: pkgs.cgi:776
  16.750  msgid "Full check"
  16.751  msgstr "Vérifier tout"
  16.752  
  16.753 -#: pkgs.cgi:692
  16.754 +#: pkgs.cgi:781
  16.755  msgid "Creating the package..."
  16.756  msgstr "Création du paquet..."
  16.757  
  16.758 -#: pkgs.cgi:697
  16.759 -msgid "Path : "
  16.760 +#: pkgs.cgi:786
  16.761 +#, fuzzy
  16.762 +msgid "Path:"
  16.763  msgstr "Chemin:"
  16.764  
  16.765 -#: pkgs.cgi:700 boot.cgi:248
  16.766 +#: pkgs.cgi:789 boot.cgi:256
  16.767  msgid "Configuration files"
  16.768  msgstr "Fichiers de configuration"
  16.769  
  16.770 -#: pkgs.cgi:713
  16.771 +#: pkgs.cgi:802
  16.772  msgid "Checking packages consistency..."
  16.773  msgstr "Vérification de la cohérence des paquets..."
  16.774  
  16.775 -#: pkgs.cgi:719
  16.776 +#: pkgs.cgi:808
  16.777  msgid "Full packages check..."
  16.778  msgstr "Vérifier tous les paquets..."
  16.779  
  16.780 -#: pkgs.cgi:726
  16.781 +#: pkgs.cgi:815
  16.782  msgid "Packages cache"
  16.783  msgstr "Cache des paquets"
  16.784  
  16.785 -#: pkgs.cgi:730
  16.786 -msgid "Packages in the cache:"
  16.787 +#: pkgs.cgi:820
  16.788 +#, fuzzy, sh-format
  16.789 +msgid "Packages in the cache: $cache_files ($cache_size)"
  16.790  msgstr "Paquets dans le cache:"
  16.791  
  16.792 -#: pkgs.cgi:736
  16.793 +#: pkgs.cgi:827
  16.794  msgid "Default mirror"
  16.795  msgstr "Miroir par défaut"
  16.796  
  16.797 -#: pkgs.cgi:738
  16.798 +#: pkgs.cgi:831
  16.799  msgid "Current mirror list"
  16.800  msgstr "Liste des miroirs actuels"
  16.801  
  16.802 -#: pkgs.cgi:761
  16.803 +#: pkgs.cgi:855
  16.804  msgid "Private repositories"
  16.805  msgstr "Dépôts privés"
  16.806  
  16.807 -#: pkgs.cgi:780
  16.808 +#: pkgs.cgi:868
  16.809 +#, fuzzy
  16.810 +msgid "mirror"
  16.811 +msgstr "Miroir par défaut"
  16.812 +
  16.813 +#: pkgs.cgi:874
  16.814  msgid "Link to another SliTaz installation"
  16.815  msgstr "Lien vers une autre installation de SliTaz"
  16.816  
  16.817 -#: pkgs.cgi:782
  16.818 +#: pkgs.cgi:876
  16.819  msgid ""
  16.820  "This link points to the root of another SliTaz installation. You will be "
  16.821  "able to install packages using soft links to it."
  16.822 @@ -393,163 +680,185 @@
  16.823  "en mesure d'installer des paquets en utilisant des liens symboliques vers "
  16.824  "elle."
  16.825  
  16.826 -#: pkgs.cgi:799
  16.827 +#: pkgs.cgi:892
  16.828  msgid "SliTaz packages DVD"
  16.829  msgstr "DVD des paquets SliTaz"
  16.830  
  16.831 -#: pkgs.cgi:811
  16.832 +#: pkgs.cgi:894
  16.833 +#, sh-format
  16.834 +msgid ""
  16.835 +"A bootable DVD image of all available packages for the $version version is "
  16.836 +"generated every day. It also contains a copy of the website and can be used "
  16.837 +"without an internet connection. This image can be installed on a DVD or an "
  16.838 +"USB key."
  16.839 +msgstr ""
  16.840 +
  16.841 +#: pkgs.cgi:904
  16.842  msgid "Download DVD image"
  16.843  msgstr "Télécharger l'image DVD"
  16.844  
  16.845 -#: pkgs.cgi:813
  16.846 +#: pkgs.cgi:906
  16.847  msgid "Install from DVD/USB key"
  16.848  msgstr "Installer à partir de DVD / clé USB"
  16.849  
  16.850 -#: pkgs.cgi:816
  16.851 -msgid "Install from ISO image: "
  16.852 +#: pkgs.cgi:909
  16.853 +#, fuzzy
  16.854 +msgid "Install from ISO image:"
  16.855  msgstr "Installer à partir d'une image ISO:"
  16.856  
  16.857 -#: pkgs.cgi:868
  16.858 -msgid "Recharge list"
  16.859 -msgstr "Recharger la liste"
  16.860 -
  16.861 -#: pkgs.cgi:878
  16.862 +#: pkgs.cgi:972
  16.863  msgid "Latest log entries"
  16.864  msgstr "Dernières entrées de journal"
  16.865  
  16.866 -#: live.cgi:88
  16.867 +#: live.cgi:25
  16.868 +msgid "TazPanel - Live"
  16.869 +msgstr ""
  16.870 +
  16.871 +#: live.cgi:83
  16.872  msgid "TODO"
  16.873  msgstr "À Faire"
  16.874  
  16.875 -#: live.cgi:96
  16.876 +#: live.cgi:88
  16.877 +msgid "SliTaz LiveUSB"
  16.878 +msgstr "Systèmes Live SliTaz"
  16.879 +
  16.880 +#: live.cgi:89
  16.881 +msgid "Create Live USB SliTaz systems"
  16.882 +msgstr "Créer et gérer des systèmes SliTaz Live CD ou USB"
  16.883 +
  16.884 +#: live.cgi:92
  16.885 +#, fuzzy
  16.886 +msgid ""
  16.887 +"Generate SliTaz LiveUSB media and boot in RAM! Insert a LiveCD into the "
  16.888 +"cdrom drive, select the correct device and press Generate."
  16.889 +msgstr ""
  16.890 +"Générez un média SliTaz LiveUSB et démarrez en mémoire vive! Insérez un\n"
  16.891 +"LiveCD dans le lecteur de cdrom, sélectionnez le bon périphérique et appuyez "
  16.892 +"sur\n"
  16.893 +"Generer."
  16.894 +
  16.895 +#: live.cgi:97
  16.896 +msgid "USB Media to use:"
  16.897 +msgstr "Média USB à utiliser:"
  16.898 +
  16.899 +#: live.cgi:106 installer.cgi:299 installer.cgi:343 installer.cgi:378
  16.900 +#: installer.cgi:410
  16.901 +msgid "Not found"
  16.902 +msgstr "Non trouvé"
  16.903 +
  16.904 +#: live.cgi:110
  16.905 +msgid "Generate"
  16.906 +msgstr "Générer"
  16.907 +
  16.908 +#: live.cgi:129
  16.909  msgid "SliTaz Live Systems"
  16.910  msgstr "Systèmes Live SliTaz"
  16.911  
  16.912 -#: live.cgi:97
  16.913 +#: live.cgi:130
  16.914  msgid "Create and manage Live CD or USB SliTaz systems"
  16.915  msgstr "Créer et gérer des systèmes SliTaz Live CD ou USB"
  16.916  
  16.917 -#: live.cgi:101
  16.918 -msgid "Live USB"
  16.919 -msgstr "Live USB"
  16.920 +#: live.cgi:135
  16.921 +msgid "Create LiveUSB"
  16.922 +msgstr "LiveUSB"
  16.923  
  16.924 -#: live.cgi:103
  16.925 -msgid ""
  16.926 -"Generate SliTaz LiveUSB media and boot in RAM! Insert a\n"
  16.927 -"\tLiveCD into the cdrom drive, select the correct device and press\n"
  16.928 -"\tGenerate."
  16.929 -msgstr ""
  16.930 -"Générez un média SliTaz LiveUSB et démarrez en mémoire vive! Insérez un\n"
  16.931 -"\tLiveCD dans le lecteur de cdrom, sélectionnez le bon périphérique et "
  16.932 -"appuyez sur\n"
  16.933 -"\tGenerer."
  16.934 -
  16.935 -#: live.cgi:108
  16.936 -msgid "USB Media to use:"
  16.937 -msgstr "Média USB à utiliser:"
  16.938 -
  16.939 -#: live.cgi:117 installer.cgi:302 installer.cgi:346 installer.cgi:381
  16.940 -#: installer.cgi:414
  16.941 -msgid "Not found"
  16.942 -msgstr "Non trouvé"
  16.943 -
  16.944 -#: live.cgi:121
  16.945 -msgid "Generate"
  16.946 -msgstr "Générer"
  16.947 -
  16.948 -#: live.cgi:125
  16.949 +#: live.cgi:140
  16.950  msgid "Write a Live CD"
  16.951  msgstr "Écrire un LiveCD"
  16.952  
  16.953 -#: live.cgi:127
  16.954 +#: live.cgi:142
  16.955 +#, fuzzy
  16.956  msgid ""
  16.957 -"The command writeiso will generate an ISO image of the\n"
  16.958 -"\tcurrent filesystem as is, including all files in the /home directory.\n"
  16.959 -"\tIt is an easy way to remaster a SliTaz Live system, you just have\n"
  16.960 -"\tto: boot, modify, writeiso."
  16.961 +"The command writeiso will generate an ISO image of the current filesystem as "
  16.962 +"is, including all files in the /home directory. It is an easy way to "
  16.963 +"remaster a SliTaz Live system, you just have to: boot, modify, writeiso."
  16.964  msgstr ""
  16.965  "La commande writeiso va générer une image ISO du\n"
  16.966 -"\tsystème de fichiers courant, y compris tous les fichiers du répertoire /"
  16.967 +"système de fichiers courant, y compris tous les fichiers du répertoire /"
  16.968  "home.\n"
  16.969 -"\tC'est un moyen facile de remasteriser un système SliTaz Live, vous avez "
  16.970 +"C'est un moyen facile de remasteriser un système SliTaz Live, vous avez "
  16.971  "juste\n"
  16.972 -"\tà: démarrer, modifier, writeiso."
  16.973 +"à: démarrer, modifier, writeiso."
  16.974  
  16.975 -#: live.cgi:133
  16.976 +#: live.cgi:148
  16.977  msgid "Compression type:"
  16.978  msgstr "Type de compression:"
  16.979  
  16.980 -#: live.cgi:139
  16.981 +#: live.cgi:154
  16.982  msgid "Write ISO"
  16.983  msgstr "Écrire une ISO"
  16.984  
  16.985 -#: live.cgi:142
  16.986 +#: live.cgi:158
  16.987  msgid "Live CD tools"
  16.988  msgstr "Outils pour Live CD"
  16.989  
  16.990 -#: live.cgi:144 live.cgi:169
  16.991 +#: live.cgi:160 live.cgi:192 styles/default/header.sh:84
  16.992  msgid "Convert ISO to loram"
  16.993  msgstr "Convertir une ISO en loram"
  16.994  
  16.995 -#: live.cgi:146
  16.996 +#: live.cgi:162
  16.997 +#, fuzzy
  16.998  msgid ""
  16.999 -"This command will convert an ISO image of a SliTaz Live CD\n"
 16.1000 -"\tto a new ISO image requiring less RAM to run."
 16.1001 +"This command will convert an ISO image of a SliTaz Live CD to a new ISO "
 16.1002 +"image requiring less RAM to run."
 16.1003  msgstr ""
 16.1004  "Cette commande permet de convertir une image ISO d'un Live CD SliTaz\n"
 16.1005 -"\ten une nouvelle image ISO nécessitant moins de RAM pour fonctionner."
 16.1006 +"en une nouvelle image ISO nécessitant moins de RAM pour fonctionner."
 16.1007  
 16.1008 -#: live.cgi:152
 16.1009 +#: live.cgi:168
 16.1010  msgid "ISO to convert"
 16.1011  msgstr "ISO à convertir"
 16.1012  
 16.1013 -#: live.cgi:156
 16.1014 +#: live.cgi:173
 16.1015  msgid "The filesystem is always in RAM"
 16.1016  msgstr "Le système de fichiers est toujours en RAM"
 16.1017  
 16.1018 -#: live.cgi:159
 16.1019 +#: live.cgi:178
 16.1020  msgid "The filesystem may be on a small CDROM"
 16.1021  msgstr "Le système de fichiers peut être sur un petit CDROM"
 16.1022  
 16.1023 -#: live.cgi:162
 16.1024 +#: live.cgi:183
 16.1025  msgid "The filesystem may be on a large CDROM"
 16.1026 -msgstr "<Le système de fichiers peut être sur un grand CDROM"
 16.1027 +msgstr "Le système de fichiers peut être sur un grand CDROM"
 16.1028  
 16.1029 -#: live.cgi:165 live.cgi:208
 16.1030 +#: live.cgi:187 live.cgi:234
 16.1031  msgid "ISO to create"
 16.1032  msgstr "ISO à créer"
 16.1033  
 16.1034 -#: live.cgi:173 live.cgi:212
 16.1035 +#: live.cgi:196 live.cgi:239 styles/default/header.sh:85
 16.1036  msgid "Build a meta ISO"
 16.1037  msgstr "Construire une méta ISO"
 16.1038  
 16.1039 -#: live.cgi:175
 16.1040 +#: live.cgi:198
 16.1041 +#, fuzzy
 16.1042  msgid ""
 16.1043 -"Combines several ISO flavors like nested Russian dolls.\n"
 16.1044 -"\tThe amount of RAM available at startup will be used to select the\n"
 16.1045 -"\tutmost one."
 16.1046 +"Combines several ISO flavors like nested Russian dolls. The amount of RAM "
 16.1047 +"available at startup will be used to select the utmost one."
 16.1048  msgstr ""
 16.1049  "Combine plusieurs saveurs ISO comme des poupées russes emboîtées.\n"
 16.1050 -"\tLa taille de RAM disponible au démarrage sera utilisé pour sélectionner "
 16.1051 -"la\n"
 16.1052 -"\tplus adaptée."
 16.1053 +"La taille de RAM disponible au démarrage sera utilisé pour sélectionner la\n"
 16.1054 +"plus adaptée."
 16.1055  
 16.1056 -#: live.cgi:188
 16.1057 +#: live.cgi:210
 16.1058  msgid "ISO number"
 16.1059  msgstr "Numéro d'ISO"
 16.1060  
 16.1061 -#: live.cgi:190 live.cgi:203
 16.1062 +#: live.cgi:213 live.cgi:228
 16.1063  msgid "Minimum RAM"
 16.1064  msgstr "RAM minimum"
 16.1065  
 16.1066 -#: live.cgi:201
 16.1067 +#: live.cgi:225
 16.1068  msgid "ISO to add"
 16.1069  msgstr "ISO à ajouter"
 16.1070  
 16.1071 -#: live.cgi:205
 16.1072 +#: live.cgi:230
 16.1073  msgid "Add to the list"
 16.1074  msgstr "Ajouter à la liste"
 16.1075  
 16.1076 +#: network.cgi:13
 16.1077 +msgid "TazPanel - Network"
 16.1078 +msgstr ""
 16.1079 +
 16.1080  #: network.cgi:24
 16.1081  msgid "Quality"
 16.1082  msgstr "Qualité"
 16.1083 @@ -558,394 +867,482 @@
 16.1084  msgid "Encryption"
 16.1085  msgstr "Chiffrement"
 16.1086  
 16.1087 -#: network.cgi:26 boot.cgi:86 lib/libtazpanel:88
 16.1088 +#: network.cgi:26 boot.cgi:84 lib/libtazpanel:99
 16.1089  msgid "Status"
 16.1090  msgstr "État"
 16.1091  
 16.1092 -#: network.cgi:52
 16.1093 +#: network.cgi:53
 16.1094  msgid "Connected"
 16.1095  msgstr "Connecté"
 16.1096  
 16.1097 -#: network.cgi:91
 16.1098 -msgid "Changed hostname:"
 16.1099 +#: network.cgi:96
 16.1100 +#, fuzzy, sh-format
 16.1101 +msgid "Changed hostname: $get_hostname"
 16.1102  msgstr "Changer le nom de l'hôte"
 16.1103  
 16.1104 -#: network.cgi:107
 16.1105 +#: network.cgi:112
 16.1106  msgid "Scanning open ports..."
 16.1107  msgstr "Balayer les ports ouverts"
 16.1108  
 16.1109 -#: network.cgi:110
 16.1110 -msgid "Port scanning for"
 16.1111 +#: network.cgi:115
 16.1112 +#, fuzzy, sh-format
 16.1113 +msgid "Port scanning for $scan"
 16.1114  msgstr "Balayage des ports pour"
 16.1115  
 16.1116 -#: network.cgi:124
 16.1117 +#: network.cgi:129
 16.1118  msgid "Setting up IP..."
 16.1119  msgstr "Configurer l'IP..."
 16.1120  
 16.1121 -#: network.cgi:140
 16.1122 +#: network.cgi:145
 16.1123  msgid "Ethernet connection"
 16.1124  msgstr "Connexion réseau"
 16.1125  
 16.1126 -#: network.cgi:142
 16.1127 +#: network.cgi:147
 16.1128 +#, fuzzy
 16.1129  msgid ""
 16.1130 -"Here you can configure a wired connection using DHCP to\n"
 16.1131 -"automatically get a random IP or configure a static/fixed IP"
 16.1132 +"Here you can configure a wired connection using DHCP to automatically get a "
 16.1133 +"random IP or configure a static/fixed IP"
 16.1134  msgstr ""
 16.1135  "Ici vous pouvez configurer une connexion filaire en utilisant le protocole "
 16.1136  "DHCP pour\n"
 16.1137  "obtenir automatiquement une adresse IP aléatoire ou configurer une adresse "
 16.1138  "IP statique / fixe"
 16.1139  
 16.1140 -#: network.cgi:145
 16.1141 +#: network.cgi:150
 16.1142  msgid "Configuration"
 16.1143  msgstr "Configuration"
 16.1144  
 16.1145 -#: network.cgi:152 network.cgi:241
 16.1146 +#: network.cgi:157 network.cgi:247
 16.1147  msgid "Value"
 16.1148  msgstr "Valeur"
 16.1149  
 16.1150 -#: network.cgi:156 lib/libtazpanel:86
 16.1151 +#: network.cgi:162 lib/libtazpanel:97
 16.1152  msgid "Interface"
 16.1153  msgstr "Interface"
 16.1154  
 16.1155 -#: network.cgi:160
 16.1156 +#: network.cgi:166
 16.1157  msgid "IP address"
 16.1158  msgstr "Adresse IP"
 16.1159  
 16.1160 -#: network.cgi:164
 16.1161 +#: network.cgi:170
 16.1162  msgid "Netmask"
 16.1163  msgstr "Masque de sous-réseau"
 16.1164  
 16.1165 -#: network.cgi:168
 16.1166 +#: network.cgi:174
 16.1167  msgid "Gateway"
 16.1168  msgstr "Passerelle"
 16.1169  
 16.1170 -#: network.cgi:172
 16.1171 +#: network.cgi:178
 16.1172  msgid "DNS server"
 16.1173  msgstr "Serveur DNS"
 16.1174  
 16.1175 -#: network.cgi:176
 16.1176 +#: network.cgi:183
 16.1177  msgid "Activate (static)"
 16.1178  msgstr "Activer (statique)"
 16.1179  
 16.1180 -#: network.cgi:177
 16.1181 +#: network.cgi:184
 16.1182  msgid "Activate (DHCP)"
 16.1183  msgstr "Activer (Dynamique)"
 16.1184  
 16.1185 -#: network.cgi:178
 16.1186 +#: network.cgi:185
 16.1187  msgid "Disable"
 16.1188  msgstr "Désactiver"
 16.1189  
 16.1190 -#: network.cgi:181 network.cgi:260
 16.1191 +#: network.cgi:188 network.cgi:266
 16.1192  msgid "Configuration file"
 16.1193  msgstr "Fichier de configuration"
 16.1194  
 16.1195 -#: network.cgi:183
 16.1196 +#: network.cgi:190
 16.1197 +#, fuzzy
 16.1198  msgid ""
 16.1199 -"These values are the ethernet settings in the main\n"
 16.1200 -"/etc/network.conf configuration file"
 16.1201 +"These values are the ethernet settings in the main /etc/network.conf "
 16.1202 +"configuration file"
 16.1203  msgstr ""
 16.1204  "Ces valeurs sont celles des paramètres Ethernet dans le fichier\n"
 16.1205  "de configuration principal /etc/network.conf"
 16.1206  
 16.1207 -#: network.cgi:190 network.cgi:269
 16.1208 +#: network.cgi:196 network.cgi:274
 16.1209  msgid "Manual Edit"
 16.1210  msgstr "Édition manuelle"
 16.1211  
 16.1212 -#: network.cgi:196
 16.1213 +#: network.cgi:202
 16.1214  msgid "Scanning wireless interface..."
 16.1215  msgstr "Scan des interfaces wireless..."
 16.1216  
 16.1217 -#: network.cgi:200
 16.1218 +#: network.cgi:206
 16.1219  msgid "Wireless connection"
 16.1220  msgstr "Connection sans fil"
 16.1221  
 16.1222 -#: network.cgi:203 network.cgi:290
 16.1223 +#: network.cgi:209 network.cgi:293 boot.cgi:167
 16.1224  msgid "Start"
 16.1225  msgstr "Démarrer"
 16.1226  
 16.1227 -#: network.cgi:205 network.cgi:292
 16.1228 +#: network.cgi:211 network.cgi:295 boot.cgi:155
 16.1229  msgid "Stop"
 16.1230  msgstr "Arrêter"
 16.1231  
 16.1232 -#: network.cgi:207
 16.1233 +#: network.cgi:213
 16.1234  msgid "Scan"
 16.1235  msgstr "Scanner"
 16.1236  
 16.1237 -#: network.cgi:234
 16.1238 +#: network.cgi:240
 16.1239  msgid "Connection"
 16.1240  msgstr "Connexion"
 16.1241  
 16.1242 -#: network.cgi:245
 16.1243 +#: network.cgi:251
 16.1244  msgid "Wifi name (ESSID)"
 16.1245  msgstr "Nom du réseau (EESID)"
 16.1246  
 16.1247 -#: network.cgi:249
 16.1248 +#: network.cgi:255
 16.1249  msgid "Password (Wifi key)"
 16.1250  msgstr "Mot de passe (Clé Wifi)"
 16.1251  
 16.1252 -#: network.cgi:253
 16.1253 +#: network.cgi:259
 16.1254  msgid "Encryption type"
 16.1255  msgstr "Type de chiffrement"
 16.1256  
 16.1257 -#: network.cgi:257
 16.1258 +#: network.cgi:263
 16.1259  msgid "Configure"
 16.1260  msgstr "Configurer"
 16.1261  
 16.1262 -#: network.cgi:262
 16.1263 +#: network.cgi:268
 16.1264 +#, fuzzy
 16.1265  msgid ""
 16.1266 -"These values are the wifi settings in the main\n"
 16.1267 -"/etc/network.conf configuration file"
 16.1268 +"These values are the wifi settings in the main /etc/network.conf "
 16.1269 +"configuration file"
 16.1270  msgstr ""
 16.1271  "Ces valeurs sont celles des paramètres wifi dans le fichier\n"
 16.1272  "de configuration principal /etc/network.conf"
 16.1273  
 16.1274 -#: network.cgi:271
 16.1275 -msgid "Output of"
 16.1276 -msgstr "Résultat de"
 16.1277 +#: network.cgi:276
 16.1278 +#, fuzzy
 16.1279 +msgid "Output of iwconfig"
 16.1280 +msgstr "Sortie de "
 16.1281  
 16.1282 -#: network.cgi:282
 16.1283 +#: network.cgi:286
 16.1284  msgid "Networking"
 16.1285  msgstr "Gestion de réseau"
 16.1286  
 16.1287 -#: network.cgi:284
 16.1288 +#: network.cgi:288
 16.1289  msgid "Manage network connections and services"
 16.1290  msgstr "Gérer les connexions réseau et les services"
 16.1291  
 16.1292 -#: network.cgi:288
 16.1293 -msgid "Connection:"
 16.1294 -msgstr "Connexion:"
 16.1295 -
 16.1296 -#: network.cgi:294
 16.1297 +#: network.cgi:297
 16.1298  msgid "Restart"
 16.1299  msgstr "Redémarrer"
 16.1300  
 16.1301 -#: network.cgi:297
 16.1302 +#: network.cgi:300
 16.1303  msgid "Configuration:"
 16.1304  msgstr "Configuration:"
 16.1305  
 16.1306 -#: network.cgi:307
 16.1307 +#: network.cgi:309
 16.1308  msgid "Hosts"
 16.1309  msgstr "Hôtes"
 16.1310  
 16.1311 -#: network.cgi:312
 16.1312 +#: network.cgi:314
 16.1313  msgid "Edit hosts"
 16.1314  msgstr "Editer les hôtes"
 16.1315  
 16.1316 -#: network.cgi:314 installer.cgi:438
 16.1317 +#: network.cgi:316 installer.cgi:433
 16.1318  msgid "Hostname"
 16.1319  msgstr "Nom d'hôte"
 16.1320  
 16.1321 -#: network.cgi:317
 16.1322 +#: network.cgi:320
 16.1323  msgid "Change hostname"
 16.1324  msgstr "Changer le nom d'hôte"
 16.1325  
 16.1326 -#: network.cgi:322
 16.1327 -msgid "Output of "
 16.1328 +#: network.cgi:324
 16.1329 +#, fuzzy
 16.1330 +msgid "Output of ifconfig"
 16.1331  msgstr "Sortie de "
 16.1332  
 16.1333  #: network.cgi:328
 16.1334  msgid "Routing table"
 16.1335  msgstr "Table de routage"
 16.1336  
 16.1337 -#: network.cgi:334
 16.1338 +#: network.cgi:332
 16.1339  msgid "Domain name resolution"
 16.1340  msgstr "Résolution de noms de domaines"
 16.1341  
 16.1342 -#: network.cgi:340
 16.1343 +#: network.cgi:336
 16.1344  msgid "ARP table"
 16.1345  msgstr "Table ARP"
 16.1346  
 16.1347 -#: network.cgi:346
 16.1348 +#: network.cgi:340
 16.1349  msgid "IP Connections"
 16.1350  msgstr "Connexions IP"
 16.1351  
 16.1352 +#: boot.cgi:14
 16.1353 +msgid "TazPanel - Boot"
 16.1354 +msgstr ""
 16.1355 +
 16.1356  #: boot.cgi:25
 16.1357  msgid "Boot log files"
 16.1358  msgstr "Journaux du démarrage"
 16.1359  
 16.1360 -#: boot.cgi:31 boot.cgi:44
 16.1361 +#: boot.cgi:31 boot.cgi:42
 16.1362  msgid "X server"
 16.1363  msgstr "Serveur x"
 16.1364  
 16.1365 -#: boot.cgi:61 boot.cgi:244
 16.1366 +#: boot.cgi:46
 16.1367 +msgid "Show more..."
 16.1368 +msgstr ""
 16.1369 +
 16.1370 +#: boot.cgi:61 boot.cgi:252 styles/default/header.sh:67
 16.1371  msgid "Manage daemons"
 16.1372  msgstr "Gérer les démons"
 16.1373  
 16.1374 -#: boot.cgi:63
 16.1375 +#: boot.cgi:62
 16.1376  msgid "Check, start and stop daemons on SliTaz"
 16.1377  msgstr "Vérifier, démarrer et arrêter les démons sur SliTaz"
 16.1378  
 16.1379 -#: boot.cgi:87
 16.1380 +#: boot.cgi:85
 16.1381  msgid "Action"
 16.1382  msgstr "Action"
 16.1383  
 16.1384 -#: boot.cgi:88
 16.1385 +#: boot.cgi:86
 16.1386  msgid "PID"
 16.1387  msgstr "PID"
 16.1388  
 16.1389 -#: boot.cgi:109
 16.1390 -msgid "<td>SliTaz Firewall with iptable rules</td>"
 16.1391 -msgstr "<td>Pare-feu SliTaz avec les règles iptables</td>"
 16.1392 +#: boot.cgi:108
 16.1393 +msgid "SliTaz Firewall with iptable rules"
 16.1394 +msgstr "Pare-feu SliTaz avec les règles iptables"
 16.1395  
 16.1396 -#: boot.cgi:111
 16.1397 -msgid "<td>Small and fast web server with CGI support</td>"
 16.1398 -msgstr "<td>Serveur web léger et rapide avec support de CGI</td>"
 16.1399 +#: boot.cgi:110
 16.1400 +msgid "Small and fast web server with CGI support"
 16.1401 +msgstr "Serveur web léger et rapide avec support de CGI"
 16.1402  
 16.1403 -#: boot.cgi:113
 16.1404 -msgid "<td>Network time protocol daemon</td>"
 16.1405 -msgstr "<td>Démon Network Time Protocol</td>"
 16.1406 +#: boot.cgi:112
 16.1407 +msgid "Network time protocol daemon"
 16.1408 +msgstr "Démon Network Time Protocol"
 16.1409  
 16.1410 -#: boot.cgi:115
 16.1411 -msgid "<td>Anonymous FTP server</td>"
 16.1412 -msgstr "<td>Serveur anonyme FTP</td>"
 16.1413 +#: boot.cgi:114
 16.1414 +msgid "Anonymous FTP server"
 16.1415 +msgstr "Serveur anonyme FTP"
 16.1416  
 16.1417 -#: boot.cgi:117
 16.1418 -msgid "<td>Busybox DHCP server</td>"
 16.1419 -msgstr "<td>Serveur DHCP Busybox</td>"
 16.1420 +#: boot.cgi:116
 16.1421 +msgid "Busybox DHCP server"
 16.1422 +msgstr "Serveur DHCP Busybox"
 16.1423  
 16.1424 -#: boot.cgi:119
 16.1425 -msgid "<td>Linux Kernel log daemon</td>"
 16.1426 -msgstr "<td>Démon Linux Kernel log</td>"
 16.1427 +#: boot.cgi:118
 16.1428 +msgid "Linux Kernel log daemon"
 16.1429 +msgstr "Démon Linux Kernel log"
 16.1430  
 16.1431 -#: boot.cgi:121
 16.1432 -msgid "<td>Execute scheduled commands</td>"
 16.1433 -msgstr "<td>Exécuter des commandes planifiées</td>"
 16.1434 +#: boot.cgi:120
 16.1435 +msgid "Execute scheduled commands"
 16.1436 +msgstr "Exécuter des commandes planifiées"
 16.1437  
 16.1438 -#: boot.cgi:123
 16.1439 -msgid "<td>Small static DNS server daemon</td>"
 16.1440 -msgstr "<td>Démon du petit serveur DNS statique<</td>"
 16.1441 +#: boot.cgi:122
 16.1442 +msgid "Small static DNS server daemon"
 16.1443 +msgstr "Démon du petit serveur DNS statique"
 16.1444  
 16.1445 -#: boot.cgi:125
 16.1446 -msgid "<td>Transfer a file on tftp request</td>"
 16.1447 -msgstr "<td>Transférer un fichier sur requête TFTP</td>"
 16.1448 +#: boot.cgi:124
 16.1449 +msgid "Transfer a file on tftp request"
 16.1450 +msgstr "Transférer un fichier sur requête TFTP"
 16.1451  
 16.1452 -#: boot.cgi:127
 16.1453 -msgid "<td>Listen for network connections and launch programs</td>"
 16.1454 -msgstr "<td>Écoute des connexions réseau et lancement de programmes</td>"
 16.1455 +#: boot.cgi:126
 16.1456 +msgid "Listen for network connections and launch programs"
 16.1457 +msgstr "Écoute des connexions réseau et lancement de programmes"
 16.1458  
 16.1459 -#: boot.cgi:129
 16.1460 -msgid "<td>Manage a ZeroConf IPv4 link-local address</td>"
 16.1461 -msgstr "<td>Gestion d'une adresse ZeroConf IPv4 link-local</td>"
 16.1462 +#: boot.cgi:128
 16.1463 +msgid "Manage a ZeroConf IPv4 link-local address"
 16.1464 +msgstr "Gestion d'une adresse ZeroConf IPv4 link-local"
 16.1465  
 16.1466 -#: boot.cgi:191
 16.1467 +#: boot.cgi:153
 16.1468 +#, fuzzy
 16.1469 +msgid "Started"
 16.1470 +msgstr "Démarrer"
 16.1471 +
 16.1472 +#: boot.cgi:165
 16.1473 +#, fuzzy
 16.1474 +msgid "Stopped"
 16.1475 +msgstr "Arrêter"
 16.1476 +
 16.1477 +#: boot.cgi:193
 16.1478  msgid "GRUB Boot loader"
 16.1479  msgstr "Gestionnaire de démarrage GRUB"
 16.1480  
 16.1481 -#: boot.cgi:193
 16.1482 +#: boot.cgi:195
 16.1483  msgid "The first application started when the computer powers on"
 16.1484  msgstr "La première application démarrée au lancement du système."
 16.1485  
 16.1486 -#: boot.cgi:206 settings.cgi:283
 16.1487 +#: boot.cgi:201
 16.1488 +#, fuzzy
 16.1489 +msgid "Default entry:"
 16.1490 +msgstr "Miroir par défaut"
 16.1491 +
 16.1492 +#: boot.cgi:203
 16.1493 +msgid "Timeout:"
 16.1494 +msgstr ""
 16.1495 +
 16.1496 +#: boot.cgi:205
 16.1497 +msgid "Splash image:"
 16.1498 +msgstr ""
 16.1499 +
 16.1500 +#: boot.cgi:208 settings.cgi:289
 16.1501  msgid "Change"
 16.1502  msgstr "Changer"
 16.1503  
 16.1504 -#: boot.cgi:211
 16.1505 +#: boot.cgi:210
 16.1506 +msgid "View or edit menu.lst"
 16.1507 +msgstr ""
 16.1508 +
 16.1509 +#: boot.cgi:213
 16.1510  msgid "Boot entries"
 16.1511  msgstr "Entrées de Grub"
 16.1512  
 16.1513 -#: boot.cgi:217
 16.1514 +#: boot.cgi:219
 16.1515  msgid "Entry"
 16.1516  msgstr "Entrée"
 16.1517  
 16.1518 -#: boot.cgi:225
 16.1519 +#: boot.cgi:235
 16.1520  msgid "Web boot is available with gPXE"
 16.1521  msgstr "Le démarrage réseau est disponible avec gPXE"
 16.1522  
 16.1523 -#: boot.cgi:235
 16.1524 +#: boot.cgi:245
 16.1525  msgid "Boot &amp; Start services"
 16.1526  msgstr "Démarrage &amp; lancement des services"
 16.1527  
 16.1528 -#: boot.cgi:237
 16.1529 +#: boot.cgi:246
 16.1530  msgid "Everything that happens before user login"
 16.1531  msgstr "Tout ce qui se produit avant le login de l'utilisateur"
 16.1532  
 16.1533 -#: boot.cgi:242
 16.1534 +#: boot.cgi:250 styles/default/header.sh:65
 16.1535  msgid "Boot logs"
 16.1536  msgstr "Journaux de démarrage"
 16.1537  
 16.1538 -#: boot.cgi:245
 16.1539 +#: boot.cgi:253 styles/default/header.sh:69
 16.1540  msgid "Boot loader"
 16.1541  msgstr "Chargeur d'amorçage "
 16.1542  
 16.1543 -#: boot.cgi:250
 16.1544 +#: boot.cgi:258
 16.1545  msgid "Main configuration file:"
 16.1546  msgstr "Fichier de configuration principal:"
 16.1547  
 16.1548 -#: boot.cgi:252
 16.1549 +#: boot.cgi:260
 16.1550  msgid "Login manager settings:"
 16.1551  msgstr "Réglages du gestionnaire de session:"
 16.1552  
 16.1553 -#: boot.cgi:256
 16.1554 +#: boot.cgi:264
 16.1555  msgid "Kernel cmdline"
 16.1556  msgstr "Ligne de commande passée au noyau"
 16.1557  
 16.1558 -#: boot.cgi:260
 16.1559 +#: boot.cgi:268
 16.1560  msgid "Local startup commands"
 16.1561  msgstr "Commandes locales exécutées au démarrage"
 16.1562  
 16.1563 -#: boot.cgi:265
 16.1564 +#: boot.cgi:273
 16.1565  msgid "Edit script"
 16.1566  msgstr "Éditer le script"
 16.1567  
 16.1568 -#: hardware.cgi:28
 16.1569 +#: hardware.cgi:13
 16.1570 +msgid "TazPanel - Hardware"
 16.1571 +msgstr ""
 16.1572 +
 16.1573 +#: hardware.cgi:29
 16.1574  msgid "Detect hardware"
 16.1575  msgstr "Detecter le matériel"
 16.1576  
 16.1577 -#: hardware.cgi:29
 16.1578 +#: hardware.cgi:30
 16.1579  msgid "Detect PCI and USB hardware"
 16.1580  msgstr "Détecter le matériel PCI/USB"
 16.1581  
 16.1582 -#: hardware.cgi:42
 16.1583 +#: hardware.cgi:42 hardware.cgi:117 styles/default/header.sh:75
 16.1584  msgid "Kernel modules"
 16.1585  msgstr "Modules du noyau"
 16.1586  
 16.1587 +#: hardware.cgi:46
 16.1588 +#, fuzzy
 16.1589 +msgid "Modules search"
 16.1590 +msgstr "Module"
 16.1591 +
 16.1592  #: hardware.cgi:49
 16.1593  msgid "Manage, search or get information about the Linux kernel modules"
 16.1594  msgstr ""
 16.1595  "Gérer, rechercher ou obtenir des informations sur les modules du noyau Linux"
 16.1596  
 16.1597 -#: hardware.cgi:55
 16.1598 -msgid "Detailed information for module: "
 16.1599 -msgstr "Les informations détaillées pour le module :"
 16.1600 +#: hardware.cgi:56
 16.1601 +#, sh-format
 16.1602 +msgid "Detailed information for module: $get_modinfo"
 16.1603 +msgstr "Les informations détaillées pour le module : $get_modinfo"
 16.1604  
 16.1605 -#: hardware.cgi:71
 16.1606 -msgid "Matching result(s) for: "
 16.1607 -msgstr "Résultats correspondants pour : "
 16.1608 +#: hardware.cgi:70
 16.1609 +#, sh-format
 16.1610 +msgid "Matching result(s) for: $get_search"
 16.1611 +msgstr "Résultats correspondants pour : $get_search"
 16.1612  
 16.1613 -#: hardware.cgi:84
 16.1614 +#: hardware.cgi:76
 16.1615 +#, fuzzy
 16.1616 +msgid "Module:"
 16.1617 +msgstr "Module"
 16.1618 +
 16.1619 +#: hardware.cgi:83
 16.1620  msgid "Module"
 16.1621  msgstr "Module"
 16.1622  
 16.1623 -#: hardware.cgi:85 lib/libtazpanel:206
 16.1624 +#: hardware.cgi:84 lib/libtazpanel:217
 16.1625  msgid "Size"
 16.1626  msgstr "Taille"
 16.1627  
 16.1628 -#: hardware.cgi:86 lib/libtazpanel:208
 16.1629 +#: hardware.cgi:85 lib/libtazpanel:219
 16.1630  msgid "Used"
 16.1631  msgstr "Utilisé"
 16.1632  
 16.1633 -#: hardware.cgi:87
 16.1634 +#: hardware.cgi:86
 16.1635  msgid "by"
 16.1636  msgstr "par"
 16.1637  
 16.1638 -#: hardware.cgi:113
 16.1639 +#: hardware.cgi:112
 16.1640  msgid "Drivers &amp; Devices"
 16.1641  msgstr "Pilotes &amp; périphériques"
 16.1642  
 16.1643 -#: hardware.cgi:114
 16.1644 +#: hardware.cgi:113
 16.1645  msgid "Manage your computer hardware"
 16.1646  msgstr "Gérer le matériel de l'ordinateur"
 16.1647  
 16.1648 -#: hardware.cgi:171
 16.1649 +#: hardware.cgi:119 styles/default/header.sh:77
 16.1650 +msgid "Detect PCI/USB"
 16.1651 +msgstr "Détecter le matériel PCI/USB"
 16.1652 +
 16.1653 +#: hardware.cgi:140
 16.1654 +msgid "Battery"
 16.1655 +msgstr ""
 16.1656 +
 16.1657 +#: hardware.cgi:142
 16.1658 +msgid "health"
 16.1659 +msgstr ""
 16.1660 +
 16.1661 +#: hardware.cgi:151
 16.1662 +#, sh-format
 16.1663 +msgid "Discharging $rempct% - $remtimef"
 16.1664 +msgstr ""
 16.1665 +
 16.1666 +#: hardware.cgi:155
 16.1667 +#, sh-format
 16.1668 +msgid "Charging $rempct% - $remtimef"
 16.1669 +msgstr ""
 16.1670 +
 16.1671 +#: hardware.cgi:157
 16.1672 +msgid "Charged 100%"
 16.1673 +msgstr ""
 16.1674 +
 16.1675 +#: hardware.cgi:165
 16.1676 +msgid "Temperature:"
 16.1677 +msgstr "Générer"
 16.1678 +
 16.1679 +#: hardware.cgi:180
 16.1680  msgid "Brightness"
 16.1681  msgstr "Luminosité d'écran"
 16.1682  
 16.1683 -#: hardware.cgi:217
 16.1684 +#: hardware.cgi:242
 16.1685  msgid "System memory"
 16.1686  msgstr "Mémoire système"
 16.1687  
 16.1688 -#: settings.cgi:88 settings.cgi:176
 16.1689 +#: settings.cgi:15
 16.1690 +msgid "TazPanel - Settings"
 16.1691 +msgstr ""
 16.1692 +
 16.1693 +#: settings.cgi:87 settings.cgi:183
 16.1694  msgid "Manage users"
 16.1695  msgstr "Gérer les utilisateurs"
 16.1696  
 16.1697 @@ -977,173 +1374,204 @@
 16.1698  msgid "Shell"
 16.1699  msgstr "Shell"
 16.1700  
 16.1701 -#: settings.cgi:138
 16.1702 +#: settings.cgi:143
 16.1703  msgid "Password:"
 16.1704  msgstr "Mot de passe:"
 16.1705  
 16.1706 -#: settings.cgi:140
 16.1707 +#: settings.cgi:145
 16.1708  msgid "Change password"
 16.1709  msgstr "Changer le mot de passe"
 16.1710  
 16.1711 -#: settings.cgi:144
 16.1712 +#: settings.cgi:149
 16.1713  msgid "Add a new user"
 16.1714  msgstr "Ajouter un utilisateur"
 16.1715  
 16.1716 -#: settings.cgi:147 installer.cgi:467
 16.1717 +#: settings.cgi:154 installer.cgi:465
 16.1718  msgid "User login:"
 16.1719  msgstr "Nom de login:"
 16.1720  
 16.1721 -#: settings.cgi:149
 16.1722 +#: settings.cgi:156
 16.1723  msgid "User password:"
 16.1724  msgstr "Mot de passe:"
 16.1725  
 16.1726 -#: settings.cgi:151
 16.1727 +#: settings.cgi:159
 16.1728  msgid "Create user"
 16.1729  msgstr "Créer un utilisateur"
 16.1730  
 16.1731 -#: settings.cgi:154
 16.1732 +#: settings.cgi:163
 16.1733  msgid "Current user sessions"
 16.1734  msgstr "Sessions utilisateur courantes"
 16.1735  
 16.1736 -#: settings.cgi:159
 16.1737 +#: settings.cgi:167
 16.1738  msgid "Last user sessions"
 16.1739  msgstr "Dernières sessions utilisateur"
 16.1740  
 16.1741 -#: settings.cgi:171
 16.1742 +#: settings.cgi:178
 16.1743  msgid "System settings"
 16.1744  msgstr "Réglages système"
 16.1745  
 16.1746 -#: settings.cgi:172
 16.1747 +#: settings.cgi:179
 16.1748  msgid "Manage system time, users or language settings"
 16.1749  msgstr "Gérer l'horloge, les utilisateurs ou les paramètres de langue"
 16.1750  
 16.1751 -#: settings.cgi:179
 16.1752 +#: settings.cgi:186
 16.1753  msgid "System time"
 16.1754  msgstr "Heure système"
 16.1755  
 16.1756 -#: settings.cgi:181
 16.1757 -msgid "Time zome      :"
 16.1758 +#: settings.cgi:189
 16.1759 +#, fuzzy
 16.1760 +msgid "Time zome:"
 16.1761  msgstr "Zone horaire  :"
 16.1762  
 16.1763 -#: settings.cgi:182
 16.1764 -msgid "System time    :"
 16.1765 -msgstr "Heure du système:"
 16.1766 +#: settings.cgi:190
 16.1767 +#, fuzzy
 16.1768 +msgid "System time:"
 16.1769 +msgstr "Heure système"
 16.1770  
 16.1771 -#: settings.cgi:183
 16.1772 -msgid "Hardware clock :"
 16.1773 +#: settings.cgi:191
 16.1774 +#, fuzzy
 16.1775 +msgid "Hardware clock:"
 16.1776  msgstr "Horloge système:"
 16.1777  
 16.1778 -#: settings.cgi:185
 16.1779 +#: settings.cgi:193
 16.1780  msgid "Sync online"
 16.1781  msgstr "Synchroniser en ligne"
 16.1782  
 16.1783 -#: settings.cgi:186
 16.1784 +#: settings.cgi:194
 16.1785  msgid "Set hardware clock"
 16.1786  msgstr "Configurer l'horloge système"
 16.1787  
 16.1788 -#: settings.cgi:193
 16.1789 +#: settings.cgi:200
 16.1790  msgid "System language"
 16.1791  msgstr "Langue du système"
 16.1792  
 16.1793 -#: settings.cgi:204
 16.1794 -#, sh-format
 16.1795 +#: settings.cgi:211
 16.1796 +#, fuzzy, sh-format
 16.1797  msgid ""
 16.1798 -"You must logout and login again to your current\n"
 16.1799 -"\t\t\t\tsession to use $new_locale locale."
 16.1800 +"You must logout and login again to your current session to use $new_locale "
 16.1801 +"locale."
 16.1802  msgstr ""
 16.1803  "Vous devez vous déconnecter et vous reconnecter à votre session\n"
 16.1804  "\t\t\t\tcourante pour utiliser la locale $new_locale"
 16.1805  
 16.1806 -#: settings.cgi:207
 16.1807 -msgid "Current system locales: "
 16.1808 +#: settings.cgi:214
 16.1809 +#, fuzzy
 16.1810 +msgid "Current system locales:"
 16.1811  msgstr "Locales système courantes : "
 16.1812  
 16.1813 -#: settings.cgi:213
 16.1814 +#: settings.cgi:220
 16.1815  msgid "Available locales:"
 16.1816  msgstr "Langues disponibles:"
 16.1817  
 16.1818 -#: settings.cgi:218 settings.cgi:266 settings.cgi:276
 16.1819 +#: settings.cgi:225 settings.cgi:271 settings.cgi:282
 16.1820  msgid "Activate"
 16.1821  msgstr "Activer"
 16.1822  
 16.1823 -#: settings.cgi:222
 16.1824 +#: settings.cgi:228
 16.1825  msgid "Console keymap"
 16.1826  msgstr "keymap de la console"
 16.1827  
 16.1828 -#: settings.cgi:234
 16.1829 -msgid "Current console keymap: "
 16.1830 +#: settings.cgi:241
 16.1831 +#, fuzzy, sh-format
 16.1832 +msgid "Current console keymap: $keymap"
 16.1833  msgstr "keymap de la console courante : "
 16.1834  
 16.1835 -#: settings.cgi:253
 16.1836 +#: settings.cgi:258
 16.1837  msgid "Suggested keymap for Xorg:"
 16.1838  msgstr "keymap suggéré pour Xorg : "
 16.1839  
 16.1840 -#: settings.cgi:262
 16.1841 +#: settings.cgi:267
 16.1842  msgid "Available keymaps:"
 16.1843  msgstr "Claviers disponibles:"
 16.1844  
 16.1845 -#: settings.cgi:269
 16.1846 +#: settings.cgi:274
 16.1847  msgid "Panel configuration"
 16.1848  msgstr "Configuration du panneau"
 16.1849  
 16.1850 -#: settings.cgi:272
 16.1851 +#: settings.cgi:278
 16.1852  msgid "Style:"
 16.1853  msgstr "Style:"
 16.1854  
 16.1855 -#: settings.cgi:281
 16.1856 +#: settings.cgi:287
 16.1857  msgid "Panel password:"
 16.1858  msgstr "Mot de passe:"
 16.1859  
 16.1860 -#: settings.cgi:287
 16.1861 -msgid "Configuration files: "
 16.1862 +#: settings.cgi:293
 16.1863 +#, fuzzy
 16.1864 +msgid "Configuration files:"
 16.1865  msgstr "Fichiers de configuration"
 16.1866  
 16.1867 -#: settings.cgi:289
 16.1868 +#: settings.cgi:295 styles/default/header.sh:24
 16.1869  msgid "Panel"
 16.1870  msgstr "Panneau"
 16.1871  
 16.1872 -#: settings.cgi:291
 16.1873 +#: settings.cgi:297
 16.1874  msgid "Server"
 16.1875  msgstr "Serveur"
 16.1876  
 16.1877 -#: settings.cgi:294
 16.1878 +#: settings.cgi:300
 16.1879  msgid "TazPanel provides a debuging mode and page:"
 16.1880  msgstr "TazPanel fournit un mode et une page debuging"
 16.1881  
 16.1882 -#: lib/libtazpanel:89
 16.1883 +#: lib/libtazpanel:83
 16.1884 +msgid "connected"
 16.1885 +msgstr "Connecté"
 16.1886 +
 16.1887 +#: lib/libtazpanel:100
 16.1888  msgid "IP Address"
 16.1889  msgstr "Adresse IP"
 16.1890  
 16.1891 -#: lib/libtazpanel:90
 16.1892 +#: lib/libtazpanel:101
 16.1893  msgid "Scan ports"
 16.1894  msgstr "Scan de ports"
 16.1895  
 16.1896 -#: lib/libtazpanel:205
 16.1897 +#: lib/libtazpanel:214
 16.1898  msgid "Disk"
 16.1899  msgstr "Disque"
 16.1900  
 16.1901 -#: lib/libtazpanel:207
 16.1902 +#: lib/libtazpanel:215
 16.1903 +msgid "Label"
 16.1904 +msgstr ""
 16.1905 +
 16.1906 +#: lib/libtazpanel:216
 16.1907 +msgid "Type"
 16.1908 +msgstr ""
 16.1909 +
 16.1910 +#: lib/libtazpanel:218
 16.1911  msgid "Available"
 16.1912  msgstr "Disponible"
 16.1913  
 16.1914 -#: lib/libtazpanel:209
 16.1915 +#: lib/libtazpanel:220
 16.1916  msgid "Mount point"
 16.1917  msgstr "Point de montage"
 16.1918  
 16.1919 -#: installer.cgi:120 installer.cgi:126
 16.1920 +#: installer.cgi:24
 16.1921 +msgid "TazPanel - Installer"
 16.1922 +msgstr "TazPanel - Installateur SliTaz"
 16.1923 +
 16.1924 +#: installer.cgi:116
 16.1925 +#, sh-format
 16.1926 +msgid "Creating setup file $INSTFILE."
 16.1927 +msgstr ""
 16.1928 +
 16.1929 +#: installer.cgi:120 installer.cgi:127
 16.1930  msgid "Setup File Error"
 16.1931  msgstr "Erreur dans le fichier de paramètrage"
 16.1932  
 16.1933 -#: installer.cgi:141
 16.1934 +#: installer.cgi:121
 16.1935 +#, sh-format
 16.1936 +msgid "The setup file <strong>$INSTFILE</strong> doesn't exist."
 16.1937 +msgstr ""
 16.1938 +
 16.1939 +#: installer.cgi:142
 16.1940  msgid "SliTaz Installer"
 16.1941  msgstr "Installateur SliTaz"
 16.1942  
 16.1943 -#: installer.cgi:143
 16.1944 +#: installer.cgi:144
 16.1945  msgid ""
 16.1946 -"The SliTaz Installer installs or upgrades SliTaz to a hard disk\n"
 16.1947 -"\tdrive from a device like a Live-CD or LiveUSB key, from a SliTaz ISO "
 16.1948 -"file,\n"
 16.1949 -"\tor from the web by downloading an ISO file."
 16.1950 +"The SliTaz Installer installs or upgrades SliTaz to a hard disk drive from a "
 16.1951 +"device like a Live-CD or LiveUSB key, from a SliTaz ISO file, or from the "
 16.1952 +"web by downloading an ISO file."
 16.1953  msgstr ""
 16.1954  "L'installateur de SliTaz installe ou met à jour Slitaz sur un disque dur "
 16.1955  "depuis un périphérique tel qu'un LiveCD ou une clé USB, depuis une image ISO "
 16.1956 @@ -1151,11 +1579,10 @@
 16.1957  
 16.1958  #: installer.cgi:157
 16.1959  msgid ""
 16.1960 -"Install SliTaz on a partition of your hard disk drive. If\n"
 16.1961 -"\tyou decide to format your partition, all data will be lost. If you do not\n"
 16.1962 -"\tformat, all data except for any existing /home directory will be "
 16.1963 -"removed, \n"
 16.1964 -"\tthe home directory will be kept as is."
 16.1965 +"Install SliTaz on a partition of your hard disk drive. If you decide to "
 16.1966 +"format your partition, all data will be lost. If you do not format, all data "
 16.1967 +"except for any existing /home directory will be removed, the home directory "
 16.1968 +"will be kept as is."
 16.1969  msgstr ""
 16.1970  "Installe SliTaz sur une partition du disque dur. Si vous décidez de "
 16.1971  "formatter la partition, toutes les données seront perdues. Si vous ne la "
 16.1972 @@ -1163,53 +1590,52 @@
 16.1973  "répertoire /home existant seront détruites, le répertoire /home sera "
 16.1974  "conservé tel quel."
 16.1975  
 16.1976 -#: installer.cgi:163
 16.1977 +#: installer.cgi:162
 16.1978  msgid ""
 16.1979 -"Before installation, you may need to create or resize partitions\n"
 16.1980 -"\ton your hard disk drive in order to make space for SliTaz GNU/Linux.\n"
 16.1981 -"\tYou can graphically manage your partitions with Gparted"
 16.1982 +"Before installation, you may need to create or resize partitions on your "
 16.1983 +"hard disk drive in order to make space for SliTaz GNU/Linux. You can "
 16.1984 +"graphically manage your partitions with Gparted"
 16.1985  msgstr ""
 16.1986  "Avant de commencer l'installation, il est peut-être nécessaire de créer ou "
 16.1987  "redimensionner des partitions du disque dur de façon à laisser un espace "
 16.1988  "utile à SliTaz. Il est possible de le faire graphiquement avec Gparted."
 16.1989  
 16.1990 -#: installer.cgi:169 installer.cgi:249
 16.1991 +#: installer.cgi:166 installer.cgi:244 styles/default/header.sh:90
 16.1992  msgid "Install SliTaz"
 16.1993  msgstr "Installer SliTaz"
 16.1994  
 16.1995 -#: installer.cgi:177
 16.1996 +#: installer.cgi:175
 16.1997  msgid "Upgrade"
 16.1998  msgstr "Mettre à jour"
 16.1999  
 16.2000 -#: installer.cgi:179
 16.2001 +#: installer.cgi:177
 16.2002  msgid ""
 16.2003 -"Upgrade an already installed SliTaz system on your hard disk\n"
 16.2004 -"\tdrive. Your /home /etc /var/www directories will be kept, all other "
 16.2005 -"directories\n"
 16.2006 -"\twill be removed. Any additional packages added to your old Slitaz system\n"
 16.2007 -"\twill be updated as long you have an active internet connection."
 16.2008 +"Upgrade an already installed SliTaz system on your hard disk drive. Your /"
 16.2009 +"home /etc /var/www directories will be kept, all other directories will be "
 16.2010 +"removed. Any additional packages added to your old Slitaz system will be "
 16.2011 +"updated as long you have an active internet connection."
 16.2012  msgstr ""
 16.2013  "Mettre à jour un système SliTaz déjà présent sur le disque dur. Les "
 16.2014  "répertoires /home et /var/www seront conservés, tous les autres répertoires "
 16.2015  "seront supprimés. Tous les paquets additionnels ajoutés à ce système SliTaz "
 16.2016  "seront mis à jour à condition d'avoir une connexion Internet active."
 16.2017  
 16.2018 -#: installer.cgi:186 installer.cgi:261
 16.2019 +#: installer.cgi:182 installer.cgi:257
 16.2020  msgid "Upgrade SliTaz"
 16.2021  msgstr "Mettre à jour SliTaz"
 16.2022  
 16.2023 -#: installer.cgi:194
 16.2024 +#: installer.cgi:190
 16.2025  msgid "Partitioning"
 16.2026  msgstr "Partitionner"
 16.2027  
 16.2028 -#: installer.cgi:197
 16.2029 +#: installer.cgi:193
 16.2030 +#, fuzzy
 16.2031  msgid ""
 16.2032 -"On most used systems, the hard drive is already dedicated to \n"
 16.2033 -"\tpartitions for Windows<sup>&copy;</sup>, or Linux, or another operating \n"
 16.2034 -"\tsystem. You'll need to resize these partitions in order to make space for\n"
 16.2035 -"\tSliTaz GNU/Linux. SliTaz will co-exist with other operating systems "
 16.2036 -"already\n"
 16.2037 -"\tinstalled on your hard drive."
 16.2038 +"On most used systems, the hard drive is already dedicated to partitions for "
 16.2039 +"Windows<sup>&trade;</sup>, or Linux, or another operating system. You'll "
 16.2040 +"need to resize these partitions in order to make space for SliTaz GNU/Linux. "
 16.2041 +"SliTaz will co-exist with other operating systems already installed on your "
 16.2042 +"hard drive."
 16.2043  msgstr ""
 16.2044  "Sur la plupart des systèmes, le disque dur a déjà des partitions dédiées à "
 16.2045  "Windows, ou Linux ou un autre système d'exploitation. Il est nécessaire de "
 16.2046 @@ -1217,51 +1643,46 @@
 16.2047  "Linux. Slitaz co-existera avec les autres systèmes d'exploitation déjà "
 16.2048  "installés sur le disque dur."
 16.2049  
 16.2050 -#: installer.cgi:204
 16.2051 +#: installer.cgi:199
 16.2052  msgid ""
 16.2053 -"The amount of space needed depends on how much software you \n"
 16.2054 -"\tplan to install\tand how much space you require for users. It's "
 16.2055 -"conceivable\n"
 16.2056 -"\tthat you could run a minimal SliTaz system in 300 megs or less, but 2 "
 16.2057 -"gigs\n"
 16.2058 -"\tis indeed more comfy."
 16.2059 +"The amount of space needed depends on how much software you plan to install "
 16.2060 +"and how much space you require for users. It's conceivable that you could "
 16.2061 +"run a minimal SliTaz system in 300 megs or less, but 2 gigs is indeed more "
 16.2062 +"comfy."
 16.2063  msgstr ""
 16.2064  "La taille de l'espace nécessaire dépend du nombre de paquets destiné à être "
 16.2065  "installé et de l'espace requis réservé aux utilisateurs. Il est tout à fait "
 16.2066  "concevable d'installer un système minilal de SLitaz dans moins de 300 Mo, "
 16.2067  "mais 2 Go seront très confortables. "
 16.2068  
 16.2069 -#: installer.cgi:209
 16.2070 +#: installer.cgi:204
 16.2071  msgid ""
 16.2072 -"A separate home partition, and a partition that will be used \n"
 16.2073 -"\tas Linux swap space may be created if needed. Slitaz detects and uses "
 16.2074 -"swap\n"
 16.2075 -"\tpartitions automatically."
 16.2076 +"A separate home partition, and a partition that will be used as Linux swap "
 16.2077 +"space may be created if needed. Slitaz detects and uses swap partitions "
 16.2078 +"automatically."
 16.2079  msgstr ""
 16.2080  "Une partition séparée pour /home, et une partition d'échange (swap) peuvent "
 16.2081  "être crées si nécessaire. Slitaz détecte et utilise automatiquement les "
 16.2082  "partitions swap."
 16.2083  
 16.2084 -#: installer.cgi:217
 16.2085 +#: installer.cgi:212
 16.2086  msgid ""
 16.2087 -"You can graphically manage your partitions with Gparted. GParted\n"
 16.2088 -"\tis a partition editor for graphically managing your disk partitions. "
 16.2089 -"Gparted\n"
 16.2090 -"\tallows you to create, destroy, resize and copy partitions without data\n"
 16.2091 -"\tloss."
 16.2092 +"You can graphically manage your partitions with Gparted. GParted is a "
 16.2093 +"partition editor for graphically managing your disk partitions. Gparted "
 16.2094 +"allows you to create, destroy, resize and copy partitions without data loss."
 16.2095  msgstr ""
 16.2096  "Gérez graphiquement vos partitions avec Gparted. Gparted est un éditeur de "
 16.2097  "partitions permettant de gérer graphiquement vos partitions. Gparted permet "
 16.2098  "de créer, supprimer, redimensionner et recopier vos partitions sans perte de "
 16.2099  "données."
 16.2100  
 16.2101 -#: installer.cgi:223
 16.2102 +#: installer.cgi:216
 16.2103 +#, fuzzy
 16.2104  msgid ""
 16.2105 -"Gparted supports ext2, ext3, ext4, linux swap, ntfs and fat32\n"
 16.2106 -"\tfilesystems right out of the box. Support for xjs, jfs, hfs and other\n"
 16.2107 -"\tfilesystems is available as well but you first need to add drivers for \n"
 16.2108 -"\tthese filesystems by installing the related packages xfsprogs, jfsutils,\n"
 16.2109 -"\tlinux-hfs and so on."
 16.2110 +"Gparted supports ext2, ext3, ext4, linux swap, ntfs and fat32 filesystems "
 16.2111 +"right out of the box. Support for xjs, jfs, hfs and other filesystems is "
 16.2112 +"available as well but you first need to add drivers for these filesystems by "
 16.2113 +"installing the related packages xfsprogs, jfsutils, linux-hfs and so on."
 16.2114  msgstr ""
 16.2115  "Gparted supporte en standard les systèmes de fichiers Linux ext2, ext3, "
 16.2116  "ext4, swap, Windows ntfs et fat32. Les systèmes de fichiers xfs, jfs, hfs ou "
 16.2117 @@ -1269,51 +1690,48 @@
 16.2118  "préalables les drivers nécessaires en installant les paquets correspondants "
 16.2119  "xfsprogs, jfsutils, linux-hfs etc.\""
 16.2120  
 16.2121 -#: installer.cgi:230
 16.2122 +#: installer.cgi:223
 16.2123  msgid "Execute Gparted"
 16.2124  msgstr "Démarrer Gparted"
 16.2125  
 16.2126 -#: installer.cgi:231
 16.2127 +#: installer.cgi:225
 16.2128  msgid "Continue installation"
 16.2129  msgstr "Continuer l'installation"
 16.2130  
 16.2131 -#: installer.cgi:232
 16.2132 +#: installer.cgi:227
 16.2133  msgid ""
 16.2134 -"Once you've made room for SliTaz on your drive,\tyou\n"
 16.2135 -"\tshould be able to continue installation."
 16.2136 +"Once you've made room for SliTaz on your drive, you should be able to "
 16.2137 +"continue installation."
 16.2138  msgstr ""
 16.2139  "Une fois que la place nécessaire à Slitaz sur le disque dur a été faite, il "
 16.2140  "est possible de continuer l'installation."
 16.2141  
 16.2142 -#: installer.cgi:237 installer.cgi:501 installer.cgi:512
 16.2143 +#: installer.cgi:232 installer.cgi:502 installer.cgi:513
 16.2144  msgid "Back to Installer Start Page"
 16.2145  msgstr "Retour au départ"
 16.2146  
 16.2147 -#: installer.cgi:239
 16.2148 +#: installer.cgi:234
 16.2149  msgid "Continue Installation"
 16.2150  msgstr "Continuer l'installation"
 16.2151  
 16.2152 -#: installer.cgi:250
 16.2153 +#: installer.cgi:246
 16.2154  msgid ""
 16.2155 -"You're going to install SliTaz on a partition of your hard disk drive. If\n"
 16.2156 -"\tyou decide to format your HDD, all data will be lost. If you do not \n"
 16.2157 -"\tformat, all data except for any existing /home directory will be "
 16.2158 -"removed, \n"
 16.2159 -"\tthe home directory will be kept as is."
 16.2160 +"You're going to install SliTaz on a partition of your hard disk drive. If "
 16.2161 +"you decide to format your HDD, all data will be lost. If you do not format, "
 16.2162 +"all data except for any existing /home directory will be removed, the home "
 16.2163 +"directory will be kept as is."
 16.2164  msgstr ""
 16.2165  "Vous allez installer SliTaz sur une partition de votre disque dur. Si vous "
 16.2166  "décidez de formatter la partition, toutes les données seront perdues. Si "
 16.2167  "vous ne la formattez pas, toutes les données à l'exeception de celles "
 16.2168  "présentes dans un répertoire existant /home seront détruites."
 16.2169  
 16.2170 -#: installer.cgi:262
 16.2171 +#: installer.cgi:259
 16.2172  msgid ""
 16.2173 -"You're going to upgrade an already installed SliTaz system on your hard "
 16.2174 -"disk\n"
 16.2175 -"\tdrive. Your /home /etc /var/www directories will be kept, all other "
 16.2176 -"directories\n"
 16.2177 -"\twill be removed. Any additional packages added to your old Slitaz system\n"
 16.2178 -"\twill be updated as long you have an active internet connection."
 16.2179 +"You're going to upgrade an already installed SliTaz system on your hard disk "
 16.2180 +"drive. Your /home /etc /var/www directories will be kept, all other "
 16.2181 +"directories will be removed. Any additional packages added to your old "
 16.2182 +"Slitaz system will be updated as long you have an active internet connection."
 16.2183  msgstr ""
 16.2184  "Vous allez mettre à jour un système SliTaz existant déjà sur une partition "
 16.2185  "de votre disque dur. Les répertoires /home et /var/www seront conservés, "
 16.2186 @@ -1321,119 +1739,123 @@
 16.2187  "ajoutés à ce système SliTaz seront mis à jour à condition d'avoir une "
 16.2188  "connexion Internet active."
 16.2189  
 16.2190 -#: installer.cgi:277
 16.2191 +#: installer.cgi:273
 16.2192  msgid "Slitaz source media"
 16.2193  msgstr "Média source de Slitaz"
 16.2194  
 16.2195 -#: installer.cgi:280
 16.2196 +#: installer.cgi:277
 16.2197  msgid "LiveCD"
 16.2198  msgstr "Live CD"
 16.2199  
 16.2200 -#: installer.cgi:283
 16.2201 -msgid "LiveUSB"
 16.2202 +#: installer.cgi:280
 16.2203 +#, fuzzy
 16.2204 +msgid "LiveUSB:"
 16.2205  msgstr "LiveUSB"
 16.2206  
 16.2207 -#: installer.cgi:309
 16.2208 -msgid "ISO file"
 16.2209 +#: installer.cgi:306
 16.2210 +#, fuzzy
 16.2211 +msgid "ISO file:"
 16.2212  msgstr "Fichier ISO"
 16.2213  
 16.2214 -#: installer.cgi:310
 16.2215 +#: installer.cgi:307
 16.2216  msgid "Full path to the ISO image file"
 16.2217  msgstr "Chemin complet vers le fichier de l'image ISO"
 16.2218  
 16.2219 -#: installer.cgi:314
 16.2220 +#: installer.cgi:310
 16.2221 +msgid "Web:"
 16.2222 +msgstr ""
 16.2223 +
 16.2224 +#: installer.cgi:311
 16.2225  msgid "Stable"
 16.2226  msgstr "Stable"
 16.2227  
 16.2228 -#: installer.cgi:315
 16.2229 +#: installer.cgi:312
 16.2230  msgid "Cooking"
 16.2231  msgstr "Cooking"
 16.2232  
 16.2233 -#: installer.cgi:316
 16.2234 +#: installer.cgi:314
 16.2235  msgid "URL:"
 16.2236  msgstr "URL:"
 16.2237  
 16.2238 -#: installer.cgi:317
 16.2239 +#: installer.cgi:315
 16.2240  msgid "Full url to an ISO image file"
 16.2241  msgstr "URL complète de l'image ISO"
 16.2242  
 16.2243 -#: installer.cgi:327
 16.2244 +#: installer.cgi:324
 16.2245  msgid "Hard Disk Drive"
 16.2246  msgstr "Disque dur"
 16.2247  
 16.2248 -#: installer.cgi:336
 16.2249 +#: installer.cgi:333
 16.2250  msgid "Install Slitaz to partition:"
 16.2251  msgstr "Installer Slitaz sur la partition :"
 16.2252  
 16.2253 -#: installer.cgi:341 installer.cgi:376 installer.cgi:409
 16.2254 +#: installer.cgi:338 installer.cgi:373 installer.cgi:405
 16.2255  msgid "None"
 16.2256  msgstr "*"
 16.2257  
 16.2258 -#: installer.cgi:352
 16.2259 -msgid "Format partition as"
 16.2260 +#: installer.cgi:349 installer.cgi:416
 16.2261 +msgid "Format partition as:"
 16.2262  msgstr "Formatter la partition en"
 16.2263  
 16.2264 -#: installer.cgi:371
 16.2265 +#: installer.cgi:368
 16.2266  msgid "Existing SliTaz partition to upgrade:"
 16.2267  msgstr "Partition SliTaz existante à mettre à jour :"
 16.2268  
 16.2269 -#: installer.cgi:393
 16.2270 +#: installer.cgi:389
 16.2271  msgid "Options"
 16.2272  msgstr "Options"
 16.2273  
 16.2274 -#: installer.cgi:402
 16.2275 +#: installer.cgi:397
 16.2276  msgid "home partition"
 16.2277  msgstr "Partition /home"
 16.2278  
 16.2279 -#: installer.cgi:404
 16.2280 +#: installer.cgi:400
 16.2281  msgid "Use a separate partition for /home:"
 16.2282  msgstr "Utiliser une autre partition pour /home"
 16.2283  
 16.2284 -#: installer.cgi:420
 16.2285 -msgid "Format partition as:"
 16.2286 -msgstr "Formatter la partition en"
 16.2287 -
 16.2288 -#: installer.cgi:439
 16.2289 +#: installer.cgi:435
 16.2290  msgid "Set Hostname to:"
 16.2291  msgstr "Définir le nom du système :"
 16.2292  
 16.2293 -#: installer.cgi:440
 16.2294 +#: installer.cgi:436
 16.2295  msgid "Name of your system"
 16.2296  msgstr "Nom du système"
 16.2297  
 16.2298 -#: installer.cgi:451
 16.2299 +#: installer.cgi:446
 16.2300  msgid "Root"
 16.2301  msgstr "Root"
 16.2302  
 16.2303 -#: installer.cgi:452
 16.2304 +#: installer.cgi:448
 16.2305 +#, fuzzy
 16.2306  msgid "Root passwd:"
 16.2307  msgstr "Mot de passe de root:"
 16.2308  
 16.2309 -#: installer.cgi:453 installer.cgi:455
 16.2310 +#: installer.cgi:449 installer.cgi:452
 16.2311  msgid "Password of root"
 16.2312  msgstr "Mot de passe de root"
 16.2313  
 16.2314 -#: installer.cgi:454 installer.cgi:473
 16.2315 +#: installer.cgi:451 installer.cgi:473
 16.2316  msgid "Confirm password:"
 16.2317  msgstr "Confirmer :"
 16.2318  
 16.2319 -#: installer.cgi:466
 16.2320 +#: installer.cgi:463
 16.2321 +#, fuzzy
 16.2322  msgid "User"
 16.2323  msgstr "Utilisateur"
 16.2324  
 16.2325 -#: installer.cgi:468
 16.2326 +#: installer.cgi:466
 16.2327  msgid "Name of the first user"
 16.2328  msgstr "Nom du premier compte d'utilisateur"
 16.2329  
 16.2330 -#: installer.cgi:471
 16.2331 +#: installer.cgi:470
 16.2332  msgid "User passwd:"
 16.2333  msgstr "Mot de passe utilisateur :"
 16.2334  
 16.2335 -#: installer.cgi:472 installer.cgi:474
 16.2336 +#: installer.cgi:471 installer.cgi:474
 16.2337  msgid "Password of the first user"
 16.2338  msgstr "Mot de passe de l'utilisateur"
 16.2339  
 16.2340 -#: installer.cgi:485
 16.2341 +#: installer.cgi:484
 16.2342  msgid "Grub"
 16.2343  msgstr "Grub"
 16.2344  
 16.2345 @@ -1445,63 +1867,204 @@
 16.2346  "Installer le chargeur Grub. Généralement à valider à moins de vouloir "
 16.2347  "installer Grub à la main."
 16.2348  
 16.2349 -#: installer.cgi:489
 16.2350 +#: installer.cgi:490
 16.2351  msgid "Enable Windows Dual-Boot."
 16.2352  msgstr "Autoriser le double-boot avec Windows."
 16.2353  
 16.2354 -#: installer.cgi:498
 16.2355 +#: installer.cgi:499
 16.2356  msgid "Back to partitioning"
 16.2357  msgstr "Retour au partitionnement"
 16.2358  
 16.2359 -#: installer.cgi:505
 16.2360 +#: installer.cgi:506
 16.2361  msgid "Proceed to SliTaz installation"
 16.2362  msgstr "Procéder à l'installation de SliTaz"
 16.2363  
 16.2364 -#: installer.cgi:507
 16.2365 +#: installer.cgi:508
 16.2366  msgid "Installation complete. You can now restart (reboot)"
 16.2367  msgstr "Installation terminée. Vous pouvez redémarrer."
 16.2368  
 16.2369 -#: installer.cgi:509
 16.2370 +#: installer.cgi:510
 16.2371  msgid "Installation failed. See log"
 16.2372  msgstr "L'installation n'a pas aboutie. Voir le fichier journal"
 16.2373  
 16.2374 -#: installer.cgi:527
 16.2375 +#: installer.cgi:530
 16.2376  msgid "A web page that points a browser to a different page after 2 seconds"
 16.2377  msgstr "Vous allez être redirigés vers une autre page dans 2 secondes"
 16.2378  
 16.2379 -#: installer.cgi:532
 16.2380 +#: installer.cgi:536
 16.2381  msgid ""
 16.2382 -"If your browser doesn't automatically redirect within a few seconds, \n"
 16.2383 -"you may want to go there manually"
 16.2384 +"If your browser doesn't automatically redirect within a few seconds, you may "
 16.2385 +"want to go there manually"
 16.2386  msgstr ""
 16.2387  "Si votre navigateur ne vous redirige pas automatiquement dans quelques "
 16.2388  "secondes, vous devrez le faire manuellement"
 16.2389  
 16.2390 -#: installer.cgi:547 installer.cgi:560
 16.2391 +#: installer.cgi:551 installer.cgi:566
 16.2392  msgid "Tazinst Error"
 16.2393  msgstr "Erreur de Tazinst"
 16.2394  
 16.2395 -#: installer.cgi:548
 16.2396 +#: installer.cgi:552
 16.2397 +#, fuzzy
 16.2398  msgid ""
 16.2399 -"the lightweight SliTaz HDD installer\n"
 16.2400 -"is missing. Any installation can not be done without tazinst."
 16.2401 +"<strong>tazinst</strong>, the lightweight SliTaz HDD installer is missing. "
 16.2402 +"Any installation can not be done without tazinst."
 16.2403  msgstr ""
 16.2404  "L'installateur léger de SliTaz n'a pas été trouvé. Aucune installation ne "
 16.2405  "peut être entreprise sans tazinst."
 16.2406  
 16.2407 -#: installer.cgi:550
 16.2408 +#: installer.cgi:555
 16.2409  msgid "Check tazinst' permissions, or reinstall the slitaz-tools package:"
 16.2410  msgstr ""
 16.2411  "Vérifiez les permissions de tazinst, ou réinstallez le paquet slitaz-tools :"
 16.2412  
 16.2413 -#: installer.cgi:573
 16.2414 +#: installer.cgi:581
 16.2415  msgid "Proceeding: ()"
 16.2416  msgstr "Procédure en cours :"
 16.2417  
 16.2418 -#: installer.cgi:630 installer.cgi:641
 16.2419 +#: installer.cgi:582
 16.2420 +msgid "Please wait until processing is complete"
 16.2421 +msgstr ""
 16.2422 +
 16.2423 +#: installer.cgi:588
 16.2424 +msgid "Completed."
 16.2425 +msgstr ""
 16.2426 +
 16.2427 +#: installer.cgi:622
 16.2428 +#, fuzzy
 16.2429 +msgid "Hostname error"
 16.2430 +msgstr "Nom d'hôte"
 16.2431 +
 16.2432 +#: installer.cgi:626
 16.2433 +#, fuzzy
 16.2434 +msgid "Root password error"
 16.2435 +msgstr "Mot de passe de root:"
 16.2436 +
 16.2437 +#: installer.cgi:630
 16.2438 +#, fuzzy
 16.2439 +msgid "User login error"
 16.2440 +msgstr "Nom de login:"
 16.2441 +
 16.2442 +#: installer.cgi:634
 16.2443 +#, fuzzy
 16.2444 +msgid "User password error"
 16.2445 +msgstr "Mot de passe:"
 16.2446 +
 16.2447 +#: installer.cgi:637 installer.cgi:648
 16.2448  msgid "Do you really want to continue?"
 16.2449  msgstr "Désirez-vous vraiment continuer?"
 16.2450  
 16.2451 +#: help.cgi:20
 16.2452 +#, fuzzy
 16.2453 +msgid "Manual"
 16.2454 +msgstr "Édition manuelle"
 16.2455 +
 16.2456 +#: help.cgi:28
 16.2457 +msgid "TazPanel - Help &amp; Doc"
 16.2458 +msgstr ""
 16.2459 +
 16.2460 +#: styles/default/header.sh:29
 16.2461 +msgid "Processes"
 16.2462 +msgstr ""
 16.2463 +
 16.2464 +#: styles/default/header.sh:31
 16.2465 +#, fuzzy
 16.2466 +msgid "Create Report"
 16.2467 +msgstr "Créer un rapport"
 16.2468 +
 16.2469 +#: styles/default/header.sh:34
 16.2470 +#, fuzzy
 16.2471 +msgid "Packages"
 16.2472 +msgstr "Paquet"
 16.2473 +
 16.2474 +#: styles/default/header.sh:41
 16.2475 +#, fuzzy
 16.2476 +msgid "Check updates"
 16.2477 +msgstr "Mettre à jour"
 16.2478 +
 16.2479 +#: styles/default/header.sh:49
 16.2480 +msgid "Ethernet"
 16.2481 +msgstr ""
 16.2482 +
 16.2483 +#: styles/default/header.sh:51
 16.2484 +msgid "Wireless"
 16.2485 +msgstr ""
 16.2486 +
 16.2487 +#: styles/default/header.sh:53
 16.2488 +#, fuzzy
 16.2489 +msgid "Config file"
 16.2490 +msgstr "Fichier de configuration"
 16.2491 +
 16.2492 +#: styles/default/header.sh:56
 16.2493 +#, fuzzy
 16.2494 +msgid "Settings"
 16.2495 +msgstr "Réglages système"
 16.2496 +
 16.2497 +#: styles/default/header.sh:59
 16.2498 +#, fuzzy
 16.2499 +msgid "Users"
 16.2500 +msgstr "Utilisateur"
 16.2501 +
 16.2502 +#: styles/default/header.sh:62
 16.2503 +#, fuzzy
 16.2504 +msgid "Boot"
 16.2505 +msgstr "Journaux de démarrage"
 16.2506 +
 16.2507 +#: styles/default/header.sh:72
 16.2508 +#, fuzzy
 16.2509 +msgid "Hardware"
 16.2510 +msgstr "Horloge système:"
 16.2511 +
 16.2512 +#: styles/default/header.sh:80
 16.2513 +#, fuzzy
 16.2514 +msgid "Live"
 16.2515 +msgstr "Live CD"
 16.2516 +
 16.2517 +#: styles/default/header.sh:82
 16.2518 +msgid "Create a live USB key"
 16.2519 +msgstr ""
 16.2520 +
 16.2521 +#: styles/default/header.sh:83
 16.2522 +#, fuzzy
 16.2523 +msgid "Create a live CD-ROM"
 16.2524 +msgstr "Écrire un LiveCD"
 16.2525 +
 16.2526 +#: styles/default/header.sh:91
 16.2527 +#, fuzzy
 16.2528 +msgid "Upgrade system"
 16.2529 +msgstr "Mettre à jour"
 16.2530 +
 16.2531 +#: styles/default/footer.sh:6
 16.2532 +msgid "Copyright"
 16.2533 +msgstr ""
 16.2534 +
 16.2535 +#: styles/default/footer.sh:8
 16.2536 +msgid "BSD License"
 16.2537 +msgstr ""
 16.2538 +
 16.2539 +#~ msgid "List:"
 16.2540 +#~ msgstr "Liste:"
 16.2541 +
 16.2542 +#~ msgid "System time    :"
 16.2543 +#~ msgstr "Heure du système:"
 16.2544 +
 16.2545 +#~ msgid "Usage:"
 16.2546 +#~ msgstr "Utilisation:"
 16.2547 +
 16.2548 +#~ msgid "Output of"
 16.2549 +#~ msgstr "Résultat de"
 16.2550 +
 16.2551 +#~ msgid "Host:"
 16.2552 +#~ msgstr "Hôte:"
 16.2553 +
 16.2554 +#~ msgid "Live USB"
 16.2555 +#~ msgstr "Live USB"
 16.2556 +
 16.2557 +#~ msgid "Connection:"
 16.2558 +#~ msgstr "Connexion:"
 16.2559 +
 16.2560 +#~ msgid "Format partition as"
 16.2561 +#~ msgstr "Formatter la partition en"
 16.2562 +
 16.2563  #~ msgid "About"
 16.2564  #~ msgstr "À propos"
 16.2565  
 16.2566 @@ -1519,6 +2082,3 @@
 16.2567  
 16.2568  #~ msgid "Install Grub bootloader"
 16.2569  #~ msgstr "Installer le chargeur d'amorçage Grub"
 16.2570 -
 16.2571 -#~ msgid "Filesystem"
 16.2572 -#~ msgstr "Système de fichier"
    17.1 --- a/po/pt_BR.po	Fri May 04 12:57:53 2012 +0300
    17.2 +++ b/po/pt_BR.po	Fri May 04 13:00:43 2012 +0300
    17.3 @@ -3,12 +3,11 @@
    17.4  # This file is distributed under the same license as the Tazpanel package.
    17.5  # Claudinei Pereira <claudinei@slitaz.org>, 2011.
    17.6  #
    17.7 -#, fuzzy
    17.8  msgid ""
    17.9  msgstr ""
   17.10  "Project-Id-Version: Tazpanel\n"
   17.11  "Report-Msgid-Bugs-To: \n"
   17.12 -"POT-Creation-Date: 2012-04-02 10:12+0200\n"
   17.13 +"POT-Creation-Date: 2012-05-04 02:44+0000\n"
   17.14  "PO-Revision-Date: 2011-04-21 21:00+0000\n"
   17.15  "Last-Translator: Claudinei Pereira <claudinei@slitaz.org>, 2011\n"
   17.16  "Language-Team: Portuguese <i18n@slitaz.org>\n"
   17.17 @@ -18,6 +17,11 @@
   17.18  "Content-Transfer-Encoding: 8bit\n"
   17.19  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
   17.20  
   17.21 +#: tazpanel:35
   17.22 +#, fuzzy, sh-format
   17.23 +msgid "Starting TazPanel web server on port $HTTPD_PORT..."
   17.24 +msgstr "Parando o servidor web do TazPanel..."
   17.25 +
   17.26  #: tazpanel:37
   17.27  #, fuzzy
   17.28  msgid "TazPanel Authentication - Default: root:root"
   17.29 @@ -39,362 +43,634 @@
   17.30  msgid "Password changed successfully"
   17.31  msgstr "Senha mudada com sucesso"
   17.32  
   17.33 -#: tazpanel:53
   17.34 -msgid "Usage:"
   17.35 -msgstr "Uso:"
   17.36 +#: tazpanel:54
   17.37 +#, sh-format
   17.38 +msgid "Usage: $program_name [start|stop|passwd]"
   17.39 +msgstr ""
   17.40  
   17.41 -#: index.cgi:36 index.cgi:74
   17.42 +#: index.cgi:38 index.cgi:83
   17.43  msgid "Differences"
   17.44  msgstr "Diferenças"
   17.45  
   17.46  #: index.cgi:72
   17.47 +msgid "TazPanel - File"
   17.48 +msgstr ""
   17.49 +
   17.50 +#: index.cgi:81
   17.51  msgid "Save"
   17.52  msgstr "Salvar"
   17.53  
   17.54 -#: index.cgi:94 settings.cgi:256
   17.55 +#: index.cgi:103 settings.cgi:261
   17.56  msgid "Edit"
   17.57  msgstr "Editar"
   17.58  
   17.59 -#: index.cgi:113 index.cgi:313
   17.60 +#: index.cgi:126
   17.61 +msgid "TazPanel - Terminal"
   17.62 +msgstr ""
   17.63 +
   17.64 +#: index.cgi:139
   17.65 +msgid "Small terminal emulator, commands options are supported."
   17.66 +msgstr "Pequeno emulador de terminal, opções de comandos são suportadas"
   17.67 +
   17.68 +#: index.cgi:141 index.cgi:158
   17.69 +#, sh-format
   17.70 +msgid "Commands: $commands"
   17.71 +msgstr "Comandos: $commands"
   17.72 +
   17.73 +#: index.cgi:146
   17.74 +#, sh-format
   17.75 +msgid "Downloading to: $dl"
   17.76 +msgstr "Baixando para: $dl"
   17.77 +
   17.78 +#: index.cgi:153
   17.79 +#, sh-format
   17.80 +msgid "$cmd needs an argument"
   17.81 +msgstr ""
   17.82 +
   17.83 +#: index.cgi:157
   17.84 +#, sh-format
   17.85 +msgid "Unknown command: $cmd"
   17.86 +msgstr ""
   17.87 +
   17.88 +#: index.cgi:162
   17.89 +msgid "TazPanel - Process activity"
   17.90 +msgstr "TazPanel - Atividade de processos"
   17.91 +
   17.92 +#: index.cgi:164
   17.93 +msgid "Refresh:"
   17.94 +msgstr ""
   17.95 +
   17.96 +#: index.cgi:169
   17.97 +msgid "1s"
   17.98 +msgstr ""
   17.99 +
  17.100 +#: index.cgi:170
  17.101 +msgid "5s"
  17.102 +msgstr ""
  17.103 +
  17.104 +#: index.cgi:171
  17.105 +msgid "10s"
  17.106 +msgstr ""
  17.107 +
  17.108 +#: index.cgi:172 live.cgi:152
  17.109 +msgid "none"
  17.110 +msgstr ""
  17.111 +
  17.112 +#: index.cgi:188
  17.113 +msgid "TazPanel - Debug"
  17.114 +msgstr ""
  17.115 +
  17.116 +#: index.cgi:191
  17.117 +msgid "HTTP Environment"
  17.118 +msgstr ""
  17.119 +
  17.120 +#: index.cgi:198
  17.121 +msgid "TazPanel - System report"
  17.122 +msgstr "TazPanel - Relatório do sistema"
  17.123 +
  17.124 +#: index.cgi:203
  17.125 +#, sh-format
  17.126 +msgid "Reporting to: $output"
  17.127 +msgstr "Reportando a: $output"
  17.128 +
  17.129 +#: index.cgi:206
  17.130 +msgid "Creating report header..."
  17.131 +msgstr "Criando cabeçalho do relatório..."
  17.132 +
  17.133 +#: index.cgi:213 index.cgi:230
  17.134 +msgid "SliTaz system report"
  17.135 +msgstr "Relatório do sistema"
  17.136 +
  17.137 +#: index.cgi:227
  17.138 +msgid "Creating system summary..."
  17.139 +msgstr "Criando resumo do sistema..."
  17.140 +
  17.141 +#: index.cgi:231
  17.142 +msgid "Date:"
  17.143 +msgstr ""
  17.144 +
  17.145 +#: index.cgi:242
  17.146 +msgid "Getting hardware info..."
  17.147 +msgstr "Obtendo informação do sistema..."
  17.148 +
  17.149 +#: index.cgi:260
  17.150 +msgid "Getting networking info..."
  17.151 +msgstr "Obtendo informação da rede..."
  17.152 +
  17.153 +#: index.cgi:274
  17.154 +msgid "Getting filesystems info..."
  17.155 +msgstr "Obtendo informação do sistema de arquivos..."
  17.156 +
  17.157 +#: index.cgi:294
  17.158 +msgid "Getting boot logs..."
  17.159 +msgstr "Gerando logs de boot..."
  17.160 +
  17.161 +#: index.cgi:297 boot.cgi:29 boot.cgi:34
  17.162 +msgid "Kernel messages"
  17.163 +msgstr "Mensagens do kernel"
  17.164 +
  17.165 +#: index.cgi:300 boot.cgi:30 boot.cgi:38
  17.166 +msgid "Boot scripts"
  17.167 +msgstr "Scripts de boot"
  17.168 +
  17.169 +#: index.cgi:305
  17.170 +msgid "Creating report footer..."
  17.171 +msgstr "Criando rodapé do relatório..."
  17.172 +
  17.173 +#: index.cgi:317
  17.174 +msgid "View report"
  17.175 +msgstr "Ver relatório"
  17.176 +
  17.177 +#: index.cgi:318
  17.178 +msgid "This report can be attached with a bug report on:"
  17.179 +msgstr "Este relatório pode ser anexado a um aviso de bug em:"
  17.180 +
  17.181 +#: index.cgi:332
  17.182 +#, sh-format
  17.183 +msgid "Host: $hostname"
  17.184 +msgstr "Nome do host: $hostname"
  17.185 +
  17.186 +#: index.cgi:333
  17.187 +msgid "SliTaz administration and configuration Panel"
  17.188 +msgstr "Painel de configuração e administração do SliTaz"
  17.189 +
  17.190 +#: index.cgi:337 styles/default/header.sh:27
  17.191  msgid "Terminal"
  17.192  msgstr "Terminal"
  17.193  
  17.194 -#: index.cgi:126
  17.195 -msgid "Small terminal emulator, commands options are supported."
  17.196 -msgstr "Pequeno emulador de terminal, opções de comandos são suportadas"
  17.197 -
  17.198 -#: index.cgi:128 index.cgi:145
  17.199 -msgid "Commands:"
  17.200 -msgstr "Comandos:"
  17.201 -
  17.202 -#: index.cgi:132
  17.203 -#, fuzzy
  17.204 -msgid "Downloading to:"
  17.205 -msgstr "Baixando para"
  17.206 -
  17.207 -#: index.cgi:149 index.cgi:315
  17.208 +#: index.cgi:339
  17.209  msgid "Process activity"
  17.210  msgstr "Atividade de processos"
  17.211  
  17.212 -#: index.cgi:151
  17.213 -msgid "Refresh: "
  17.214 -msgstr ""
  17.215 -
  17.216 -#: index.cgi:176
  17.217 -#, fuzzy
  17.218 -msgid "System report"
  17.219 -msgstr "Relatório do sistema"
  17.220 -
  17.221 -#: index.cgi:180
  17.222 -#, fuzzy
  17.223 -msgid "Reporting to:"
  17.224 -msgstr "Reportando a:"
  17.225 -
  17.226 -#: index.cgi:182
  17.227 -#, fuzzy
  17.228 -msgid "Creating report header...  "
  17.229 -msgstr "Criando cabeçalho do relatório..."
  17.230 -
  17.231 -#: index.cgi:199
  17.232 -#, fuzzy
  17.233 -msgid "Creating system summary... "
  17.234 -msgstr "Criando resumo do sistema..."
  17.235 -
  17.236 -#: index.cgi:212
  17.237 -#, fuzzy
  17.238 -msgid "Getting hardware info...   "
  17.239 -msgstr "Obtendo informação do sistema..."
  17.240 -
  17.241 -#: index.cgi:236
  17.242 -#, fuzzy
  17.243 -msgid "Getting networking info... "
  17.244 -msgstr "Obtendo informação da rede..."
  17.245 -
  17.246 -#: index.cgi:252
  17.247 -#, fuzzy
  17.248 -msgid "Getting filesystems info..."
  17.249 -msgstr "Obtendo informação do sistema de arquivos..."
  17.250 -
  17.251 -#: index.cgi:276
  17.252 -msgid "Getting boot logs...       "
  17.253 -msgstr "Gerando logs de boot...   "
  17.254 -
  17.255 -#: index.cgi:278 boot.cgi:29 boot.cgi:34
  17.256 -msgid "Kernel messages"
  17.257 -msgstr "Mensagens do kernel"
  17.258 -
  17.259 -#: index.cgi:282 boot.cgi:30 boot.cgi:39
  17.260 -msgid "Boot scripts"
  17.261 -msgstr "Scripts de boot"
  17.262 -
  17.263 -#: index.cgi:288
  17.264 -#, fuzzy
  17.265 -msgid "Creating report footer...  "
  17.266 -msgstr "Criando rodapé do relatório..."
  17.267 -
  17.268 -#: index.cgi:296
  17.269 -msgid "View report"
  17.270 -msgstr "Ver relatório"
  17.271 -
  17.272 -#: index.cgi:297
  17.273 -msgid "This report can be attached with a bug report on: "
  17.274 -msgstr "Este relatório pode ser anexado a um aviso de bug em: "
  17.275 -
  17.276 -#: index.cgi:308
  17.277 -msgid "Host:"
  17.278 -msgstr "Host:"
  17.279 -
  17.280 -#: index.cgi:309
  17.281 -msgid "SliTaz administration and configuration Panel"
  17.282 -msgstr "Painel de configuração e administração do SliTaz"
  17.283 -
  17.284 -#: index.cgi:317
  17.285 +#: index.cgi:341
  17.286  #, fuzzy
  17.287  msgid "Create a report"
  17.288  msgstr "Criar relatório"
  17.289  
  17.290 -#: index.cgi:320 pkgs.cgi:855
  17.291 +#: index.cgi:344 pkgs.cgi:948
  17.292  msgid "Summary"
  17.293  msgstr "Sumário"
  17.294  
  17.295 -#: index.cgi:323
  17.296 +#: index.cgi:347
  17.297 +msgid "Uptime:"
  17.298 +msgstr "Uptime:"
  17.299 +
  17.300 +#: index.cgi:350
  17.301  #, fuzzy
  17.302 -msgid "Uptime       :"
  17.303 -msgstr "Uptime       :"
  17.304 -
  17.305 -#: index.cgi:324
  17.306 -#, fuzzy
  17.307 -msgid "Memory in Mb :"
  17.308 +msgid "Memory in Mb:"
  17.309  msgstr "Memória em MB"
  17.310  
  17.311 -#: index.cgi:326
  17.312 -msgid "Linux kernel :"
  17.313 +#: index.cgi:355
  17.314 +#, sh-format
  17.315 +msgid "Total: $memtotal, Used: $memused, Free: $memfree"
  17.316 +msgstr ""
  17.317 +
  17.318 +#: index.cgi:360
  17.319 +#, fuzzy
  17.320 +msgid "Linux kernel:"
  17.321  msgstr "Kernel Linux :"
  17.322  
  17.323 -#: index.cgi:331
  17.324 +#: index.cgi:367
  17.325  msgid "Network status"
  17.326  msgstr "Status da Rede"
  17.327  
  17.328 -#: index.cgi:334 hardware.cgi:193
  17.329 +#: index.cgi:370 hardware.cgi:202
  17.330  msgid "Filesystem usage statistics"
  17.331  msgstr "Estatísticas de utilização do sistema de arquivos"
  17.332  
  17.333 -#: index.cgi:355
  17.334 +#: index.cgi:403
  17.335  msgid "Panel Activity"
  17.336  msgstr "Atividade do painel"
  17.337  
  17.338 -#: pkgs.cgi:50
  17.339 -msgid "Last recharge        : "
  17.340 +#: pkgs.cgi:17
  17.341 +msgid "TazPanel - Packages"
  17.342 +msgstr ""
  17.343 +
  17.344 +#: pkgs.cgi:51
  17.345 +#, fuzzy
  17.346 +msgid "Last recharge:"
  17.347  msgstr "Última recarga      : "
  17.348  
  17.349 +#: pkgs.cgi:58
  17.350 +msgid "(Older than 10 days)"
  17.351 +msgstr ""
  17.352 +
  17.353  #: pkgs.cgi:60
  17.354 -msgid "Installed packages   : "
  17.355 +msgid "(Not older than 10 days)"
  17.356 +msgstr ""
  17.357 +
  17.358 +#: pkgs.cgi:64
  17.359 +#, fuzzy
  17.360 +msgid "Installed packages:"
  17.361  msgstr "Pacotes instalados  : "
  17.362  
  17.363 -#: pkgs.cgi:62
  17.364 -msgid "Mirrored packages    : "
  17.365 +#: pkgs.cgi:66
  17.366 +#, fuzzy
  17.367 +msgid "Mirrored packages:"
  17.368  msgstr "Pacotes no mirror   : "
  17.369  
  17.370 -#: pkgs.cgi:64
  17.371 -msgid "Upgradeable packages : "
  17.372 +#: pkgs.cgi:68
  17.373 +#, fuzzy
  17.374 +msgid "Upgradeable packages:"
  17.375  msgstr "Pacotes atualizáveis: "
  17.376  
  17.377 -#: pkgs.cgi:68
  17.378 -msgid "Blocked packages     : "
  17.379 +#: pkgs.cgi:70 pkgs.cgi:707
  17.380 +msgid "Installed files:"
  17.381 +msgstr "Pacotes instalados:"
  17.382 +
  17.383 +#: pkgs.cgi:72
  17.384 +#, fuzzy
  17.385 +msgid "Blocked packages:"
  17.386  msgstr "Pacotes bloqueados  : "
  17.387  
  17.388 -#: pkgs.cgi:113
  17.389 +#: pkgs.cgi:86
  17.390 +#, fuzzy
  17.391 +msgid "Delete"
  17.392 +msgstr "Deletar usuário"
  17.393 +
  17.394 +#: pkgs.cgi:89
  17.395 +msgid "Use as default"
  17.396 +msgstr ""
  17.397 +
  17.398 +#: pkgs.cgi:120
  17.399  msgid "Search"
  17.400  msgstr "Buscar"
  17.401  
  17.402 -#: pkgs.cgi:115
  17.403 +#: pkgs.cgi:122
  17.404  msgid "Files"
  17.405  msgstr "Arquivos"
  17.406  
  17.407 -#: pkgs.cgi:126 network.cgi:23 network.cgi:151 network.cgi:240 boot.cgi:84
  17.408 -#: settings.cgi:104 lib/libtazpanel:87
  17.409 +#: pkgs.cgi:134 pkgs.cgi:867 network.cgi:23 network.cgi:156 network.cgi:246
  17.410 +#: boot.cgi:82 settings.cgi:104 lib/libtazpanel:98
  17.411  msgid "Name"
  17.412  msgstr "Nome"
  17.413  
  17.414 -#: pkgs.cgi:127
  17.415 +#: pkgs.cgi:135
  17.416  msgid "Version"
  17.417  msgstr "Versão"
  17.418  
  17.419 -#: pkgs.cgi:128 boot.cgi:85
  17.420 +#: pkgs.cgi:136 boot.cgi:83
  17.421  msgid "Description"
  17.422  msgstr "Descrição"
  17.423  
  17.424 -#: pkgs.cgi:129 installer.cgi:313
  17.425 +#: pkgs.cgi:137
  17.426  msgid "Web"
  17.427  msgstr "Web"
  17.428  
  17.429 -#: pkgs.cgi:212 pkgs.cgi:321 pkgs.cgi:362 pkgs.cgi:416 pkgs.cgi:454
  17.430 -#: pkgs.cgi:503 pkgs.cgi:575 pkgs.cgi:858
  17.431 +#: pkgs.cgi:147
  17.432 +msgid "Categories"
  17.433 +msgstr ""
  17.434 +
  17.435 +#: pkgs.cgi:148
  17.436 +#, fuzzy
  17.437 +msgid "Base-system"
  17.438 +msgstr "Sistema de arquios"
  17.439 +
  17.440 +#: pkgs.cgi:149
  17.441 +msgid "X window"
  17.442 +msgstr ""
  17.443 +
  17.444 +#: pkgs.cgi:150
  17.445 +msgid "Utilities"
  17.446 +msgstr ""
  17.447 +
  17.448 +#: pkgs.cgi:151 styles/default/header.sh:46
  17.449 +#, fuzzy
  17.450 +msgid "Network"
  17.451 +msgstr "Rede"
  17.452 +
  17.453 +#: pkgs.cgi:152
  17.454 +msgid "Games"
  17.455 +msgstr ""
  17.456 +
  17.457 +#: pkgs.cgi:153
  17.458 +msgid "Graphics"
  17.459 +msgstr ""
  17.460 +
  17.461 +#: pkgs.cgi:154
  17.462 +msgid "Office"
  17.463 +msgstr ""
  17.464 +
  17.465 +#: pkgs.cgi:155
  17.466 +msgid "Multimedia"
  17.467 +msgstr ""
  17.468 +
  17.469 +#: pkgs.cgi:156
  17.470 +msgid "Development"
  17.471 +msgstr ""
  17.472 +
  17.473 +#: pkgs.cgi:157
  17.474 +#, fuzzy
  17.475 +msgid "System tools"
  17.476 +msgstr "Tempo do sistema"
  17.477 +
  17.478 +#: pkgs.cgi:158
  17.479 +msgid "Security"
  17.480 +msgstr ""
  17.481 +
  17.482 +#: pkgs.cgi:159
  17.483 +msgid "Misc"
  17.484 +msgstr ""
  17.485 +
  17.486 +#: pkgs.cgi:160
  17.487 +msgid "Meta"
  17.488 +msgstr ""
  17.489 +
  17.490 +#: pkgs.cgi:161
  17.491 +msgid "Non free"
  17.492 +msgstr ""
  17.493 +
  17.494 +#: pkgs.cgi:162
  17.495 +msgid "All"
  17.496 +msgstr ""
  17.497 +
  17.498 +#: pkgs.cgi:168
  17.499 +#, fuzzy
  17.500 +msgid "Repositories"
  17.501 +msgstr "Repositórios privados"
  17.502 +
  17.503 +#: pkgs.cgi:169
  17.504 +msgid "Public"
  17.505 +msgstr ""
  17.506 +
  17.507 +#: pkgs.cgi:177
  17.508 +msgid "Any"
  17.509 +msgstr ""
  17.510 +
  17.511 +#: pkgs.cgi:217 pkgs.cgi:339
  17.512 +#, fuzzy
  17.513 +msgid "Listing packages..."
  17.514 +msgstr "Obtendo informação de pacote..."
  17.515 +
  17.516 +#: pkgs.cgi:220 pkgs.cgi:358 pkgs.cgi:412 pkgs.cgi:479 pkgs.cgi:520
  17.517 +#: pkgs.cgi:580 pkgs.cgi:659 pkgs.cgi:952 styles/default/header.sh:37
  17.518  msgid "My packages"
  17.519  msgstr "Meus pacotes"
  17.520  
  17.521 -#: pkgs.cgi:216 pkgs.cgi:262 pkgs.cgi:311 pkgs.cgi:352 pkgs.cgi:445
  17.522 +#: pkgs.cgi:225 pkgs.cgi:284 pkgs.cgi:347 pkgs.cgi:401 pkgs.cgi:511
  17.523  #: settings.cgi:92
  17.524  msgid "Selection:"
  17.525  msgstr "Seleção:"
  17.526  
  17.527 -#: pkgs.cgi:220 pkgs.cgi:266 pkgs.cgi:317 pkgs.cgi:358 pkgs.cgi:451
  17.528 -msgid "List:"
  17.529 -msgstr "Lista:"
  17.530 +#: pkgs.cgi:226 pkgs.cgi:607
  17.531 +msgid "Remove"
  17.532 +msgstr "Remover"
  17.533  
  17.534 -#: pkgs.cgi:258 pkgs.cgi:864
  17.535 +#: pkgs.cgi:230 pkgs.cgi:289 pkgs.cgi:354 pkgs.cgi:408 pkgs.cgi:518
  17.536 +#: pkgs.cgi:962 styles/default/header.sh:39
  17.537 +msgid "Recharge list"
  17.538 +msgstr "Recarregar lista"
  17.539 +
  17.540 +#: pkgs.cgi:232 pkgs.cgi:291 pkgs.cgi:356 pkgs.cgi:410 pkgs.cgi:477
  17.541 +#: pkgs.cgi:964
  17.542 +msgid "Check upgrades"
  17.543 +msgstr "Checar atualizações"
  17.544 +
  17.545 +#: pkgs.cgi:275
  17.546 +#, fuzzy
  17.547 +msgid "Listing linkable packages..."
  17.548 +msgstr "Obtendo informação de pacote..."
  17.549 +
  17.550 +#: pkgs.cgi:278 pkgs.cgi:958
  17.551  msgid "Linkable packages"
  17.552  msgstr "Pacotes ligáveis"
  17.553  
  17.554 -#: pkgs.cgi:307
  17.555 -msgid "Category:"
  17.556 -msgstr "Categoria:"
  17.557 +#: pkgs.cgi:285
  17.558 +msgid "Link"
  17.559 +msgstr ""
  17.560  
  17.561 -#: pkgs.cgi:348
  17.562 +#: pkgs.cgi:342
  17.563 +#, sh-format
  17.564 +msgid "Category: $category"
  17.565 +msgstr "Categoria: $category"
  17.566 +
  17.567 +#: pkgs.cgi:366 pkgs.cgi:838
  17.568 +#, sh-format
  17.569 +msgid "Repository: $Repo_Name"
  17.570 +msgstr ""
  17.571 +
  17.572 +#: pkgs.cgi:394
  17.573 +#, fuzzy
  17.574 +msgid "Searching packages..."
  17.575 +msgstr "Buscar pacotes"
  17.576 +
  17.577 +#: pkgs.cgi:397
  17.578  msgid "Search packages"
  17.579  msgstr "Buscar pacotes"
  17.580  
  17.581 -#: pkgs.cgi:355 pkgs.cgi:448
  17.582 +#: pkgs.cgi:404 pkgs.cgi:514
  17.583  msgid "Toogle all"
  17.584  msgstr "Alternar todos"
  17.585  
  17.586 -#: pkgs.cgi:371 pkgs.cgi:545
  17.587 +#: pkgs.cgi:423
  17.588  msgid "Package"
  17.589  msgstr "Pacote"
  17.590  
  17.591 -#: pkgs.cgi:372
  17.592 +#: pkgs.cgi:424
  17.593  msgid "File"
  17.594  msgstr "Arquivo"
  17.595  
  17.596 -#: pkgs.cgi:403
  17.597 +#: pkgs.cgi:465
  17.598 +#, fuzzy
  17.599 +msgid "Recharging lists..."
  17.600 +msgstr "Recarregar lista"
  17.601 +
  17.602 +#: pkgs.cgi:468
  17.603  msgid "Recharge"
  17.604  msgstr "Recarregar"
  17.605  
  17.606 -#: pkgs.cgi:408
  17.607 +#: pkgs.cgi:473
  17.608  msgid "Recharge checks for new or updated packages"
  17.609  msgstr "Opção recharge checa por pacotes novos ou atualizáveis"
  17.610  
  17.611 -#: pkgs.cgi:414 pkgs.cgi:870
  17.612 -msgid "Check upgrades"
  17.613 -msgstr "Checar atualizações"
  17.614 -
  17.615 -#: pkgs.cgi:422
  17.616 +#: pkgs.cgi:485
  17.617  msgid "Recharging packages list"
  17.618  msgstr "Recarregando lista de pacotes"
  17.619  
  17.620 -#: pkgs.cgi:427
  17.621 +#: pkgs.cgi:490
  17.622  msgid "Packages lists are up-to-date. You should check for upgrades now."
  17.623  msgstr "A lista de pacotes está atualizada. Cheque as atualizações."
  17.624  
  17.625 -#: pkgs.cgi:441
  17.626 +#: pkgs.cgi:503
  17.627 +#, fuzzy
  17.628 +msgid "Checking for upgrades..."
  17.629 +msgstr "Checar atualizações"
  17.630 +
  17.631 +#: pkgs.cgi:506
  17.632  msgid "Up packages"
  17.633  msgstr "Pacotes atualizados"
  17.634  
  17.635 -#: pkgs.cgi:497
  17.636 +#: pkgs.cgi:575
  17.637  msgid "Performing tasks on packages"
  17.638  msgstr "Executando tarefas nos pacotes"
  17.639  
  17.640 -#: pkgs.cgi:527
  17.641 -msgid "Remove"
  17.642 -msgstr "Remover"
  17.643 +#: pkgs.cgi:585
  17.644 +#, sh-format
  17.645 +msgid "Executing $cmd for: $pkgs"
  17.646 +msgstr ""
  17.647  
  17.648 -#: pkgs.cgi:530
  17.649 +#: pkgs.cgi:610
  17.650  msgid "Getting package info..."
  17.651  msgstr "Obtendo informação de pacote..."
  17.652  
  17.653 -#: pkgs.cgi:541 pkgs.cgi:550 installer.cgi:155
  17.654 +#: pkgs.cgi:622 installer.cgi:155 styles/default/header.sh:88
  17.655  msgid "Install"
  17.656  msgstr "Instalar"
  17.657  
  17.658 -#: pkgs.cgi:560
  17.659 +#: pkgs.cgi:626
  17.660 +#, fuzzy, sh-format
  17.661 +msgid "Package $PACKAGE"
  17.662 +msgstr "Pacote"
  17.663 +
  17.664 +#: pkgs.cgi:634
  17.665 +msgid "Install (Non Free)"
  17.666 +msgstr ""
  17.667 +
  17.668 +#: pkgs.cgi:642
  17.669  msgid "Unblock"
  17.670  msgstr "Desbloquear"
  17.671  
  17.672 -#: pkgs.cgi:562
  17.673 +#: pkgs.cgi:646
  17.674  msgid "Block"
  17.675  msgstr "Bloquear"
  17.676  
  17.677 -#: pkgs.cgi:609 pkgs.cgi:621
  17.678 -msgid "Installed files:"
  17.679 +#: pkgs.cgi:650
  17.680 +msgid "Repack"
  17.681 +msgstr ""
  17.682 +
  17.683 +#: pkgs.cgi:665
  17.684 +#, fuzzy
  17.685 +msgid "Name:"
  17.686 +msgstr "Nome"
  17.687 +
  17.688 +#: pkgs.cgi:666
  17.689 +#, fuzzy
  17.690 +msgid "Version:"
  17.691 +msgstr "Versão"
  17.692 +
  17.693 +#: pkgs.cgi:667
  17.694 +#, fuzzy
  17.695 +msgid "Description:"
  17.696 +msgstr "Descrição"
  17.697 +
  17.698 +#: pkgs.cgi:668
  17.699 +#, fuzzy
  17.700 +msgid "Category:"
  17.701 +msgstr "Categoria: $category"
  17.702 +
  17.703 +#: pkgs.cgi:672
  17.704 +msgid "Maintainer:"
  17.705 +msgstr ""
  17.706 +
  17.707 +#: pkgs.cgi:673 pkgs.cgi:702
  17.708 +msgid "Website:"
  17.709 +msgstr ""
  17.710 +
  17.711 +#: pkgs.cgi:674 pkgs.cgi:703
  17.712 +#, fuzzy
  17.713 +msgid "Sizes:"
  17.714 +msgstr "Tamanho"
  17.715 +
  17.716 +#: pkgs.cgi:677
  17.717 +msgid "Depends:"
  17.718 +msgstr ""
  17.719 +
  17.720 +#: pkgs.cgi:684
  17.721 +msgid "Suggested:"
  17.722 +msgstr ""
  17.723 +
  17.724 +#: pkgs.cgi:690
  17.725 +msgid "Tags:"
  17.726 +msgstr ""
  17.727 +
  17.728 +#: pkgs.cgi:696
  17.729 +#, fuzzy, sh-format
  17.730 +msgid "Installed files: $I_FILES"
  17.731  msgstr "Pacotes instalados:"
  17.732  
  17.733 -#: pkgs.cgi:666 pkgs.cgi:790
  17.734 +#: pkgs.cgi:755 pkgs.cgi:884
  17.735  msgid "Set link"
  17.736  msgstr "Configurar ligação"
  17.737  
  17.738 -#: pkgs.cgi:669 pkgs.cgi:791
  17.739 +#: pkgs.cgi:758 pkgs.cgi:885
  17.740  msgid "Remove link"
  17.741  msgstr "Remover ligação"
  17.742  
  17.743 -#: pkgs.cgi:675 pkgs.cgi:872
  17.744 +#: pkgs.cgi:764 pkgs.cgi:966 styles/default/header.sh:43
  17.745  msgid "Administration"
  17.746  msgstr "Administração"
  17.747  
  17.748 -#: pkgs.cgi:677
  17.749 +#: pkgs.cgi:766
  17.750  msgid "Tazpkg administration and settings"
  17.751  msgstr "Administração e configuração do Tazpkg"
  17.752  
  17.753 -#: pkgs.cgi:681
  17.754 +#: pkgs.cgi:770
  17.755  msgid "Save configuration"
  17.756  msgstr "Salvar configuração"
  17.757  
  17.758 -#: pkgs.cgi:683
  17.759 +#: pkgs.cgi:772
  17.760  msgid "List configuration files"
  17.761  msgstr "Listar arquivos de configuração"
  17.762  
  17.763 -#: pkgs.cgi:685
  17.764 +#: pkgs.cgi:774
  17.765  msgid "Quick check"
  17.766  msgstr "Checagem rápida"
  17.767  
  17.768 -#: pkgs.cgi:687
  17.769 +#: pkgs.cgi:776
  17.770  msgid "Full check"
  17.771  msgstr "Checagem completa"
  17.772  
  17.773 -#: pkgs.cgi:692
  17.774 +#: pkgs.cgi:781
  17.775  msgid "Creating the package..."
  17.776  msgstr "Criando o pacote..."
  17.777  
  17.778 -#: pkgs.cgi:697
  17.779 -msgid "Path : "
  17.780 +#: pkgs.cgi:786
  17.781 +#, fuzzy
  17.782 +msgid "Path:"
  17.783  msgstr "Caminho : "
  17.784  
  17.785 -#: pkgs.cgi:700 boot.cgi:248
  17.786 +#: pkgs.cgi:789 boot.cgi:256
  17.787  msgid "Configuration files"
  17.788  msgstr "Arquivos de configuração"
  17.789  
  17.790 -#: pkgs.cgi:713
  17.791 +#: pkgs.cgi:802
  17.792  msgid "Checking packages consistency..."
  17.793  msgstr "Checando consistência dos pacotes..."
  17.794  
  17.795 -#: pkgs.cgi:719
  17.796 +#: pkgs.cgi:808
  17.797  msgid "Full packages check..."
  17.798  msgstr "Checagem completa de pacotes..."
  17.799  
  17.800 -#: pkgs.cgi:726
  17.801 +#: pkgs.cgi:815
  17.802  msgid "Packages cache"
  17.803  msgstr "Cache de pacotes"
  17.804  
  17.805 -#: pkgs.cgi:730
  17.806 -msgid "Packages in the cache:"
  17.807 +#: pkgs.cgi:820
  17.808 +#, fuzzy, sh-format
  17.809 +msgid "Packages in the cache: $cache_files ($cache_size)"
  17.810  msgstr "Pacotes no cache:"
  17.811  
  17.812 -#: pkgs.cgi:736
  17.813 +#: pkgs.cgi:827
  17.814  msgid "Default mirror"
  17.815  msgstr ""
  17.816  
  17.817 -#: pkgs.cgi:738
  17.818 +#: pkgs.cgi:831
  17.819  msgid "Current mirror list"
  17.820  msgstr "Lista de mirror atual"
  17.821  
  17.822 -#: pkgs.cgi:761
  17.823 +#: pkgs.cgi:855
  17.824  msgid "Private repositories"
  17.825  msgstr "Repositórios privados"
  17.826  
  17.827 -#: pkgs.cgi:780
  17.828 +#: pkgs.cgi:868
  17.829 +msgid "mirror"
  17.830 +msgstr ""
  17.831 +
  17.832 +#: pkgs.cgi:874
  17.833  msgid "Link to another SliTaz installation"
  17.834  msgstr "Ligação para outra instalação do SliTaz"
  17.835  
  17.836 -#: pkgs.cgi:782
  17.837 +#: pkgs.cgi:876
  17.838  msgid ""
  17.839  "This link points to the root of another SliTaz installation. You will be "
  17.840  "able to install packages using soft links to it."
  17.841 @@ -402,159 +678,183 @@
  17.842  "Esta ligação aponta para a raiz de uma outra instalação do SliTaz. Você será "
  17.843  "capaz de instalar pacotes utilizando links para ela."
  17.844  
  17.845 -#: pkgs.cgi:799
  17.846 +#: pkgs.cgi:892
  17.847  msgid "SliTaz packages DVD"
  17.848  msgstr "DVD de pacotes do SliTaz"
  17.849  
  17.850 -#: pkgs.cgi:811
  17.851 +#: pkgs.cgi:894
  17.852 +#, sh-format
  17.853 +msgid ""
  17.854 +"A bootable DVD image of all available packages for the $version version is "
  17.855 +"generated every day. It also contains a copy of the website and can be used "
  17.856 +"without an internet connection. This image can be installed on a DVD or an "
  17.857 +"USB key."
  17.858 +msgstr ""
  17.859 +
  17.860 +#: pkgs.cgi:904
  17.861  msgid "Download DVD image"
  17.862  msgstr "Baixar imagem de DVD"
  17.863  
  17.864 -#: pkgs.cgi:813
  17.865 +#: pkgs.cgi:906
  17.866  msgid "Install from DVD/USB key"
  17.867  msgstr "Instalar do DVD/Mídia USB"
  17.868  
  17.869 -#: pkgs.cgi:816
  17.870 -msgid "Install from ISO image: "
  17.871 +#: pkgs.cgi:909
  17.872 +#, fuzzy
  17.873 +msgid "Install from ISO image:"
  17.874  msgstr "Instalar de imagem ISO: "
  17.875  
  17.876 -#: pkgs.cgi:868
  17.877 -msgid "Recharge list"
  17.878 -msgstr "Recarregar lista"
  17.879 -
  17.880 -#: pkgs.cgi:878
  17.881 +#: pkgs.cgi:972
  17.882  msgid "Latest log entries"
  17.883  msgstr "Últimas entradas de log"
  17.884  
  17.885 -#: live.cgi:88
  17.886 +#: live.cgi:25
  17.887 +msgid "TazPanel - Live"
  17.888 +msgstr ""
  17.889 +
  17.890 +#: live.cgi:83
  17.891  msgid "TODO"
  17.892  msgstr "TODO"
  17.893  
  17.894 -#: live.cgi:96
  17.895 +#: live.cgi:88
  17.896 +msgid "SliTaz LiveUSB"
  17.897 +msgstr "Sistema Live SliTaz"
  17.898 +
  17.899 +#: live.cgi:89
  17.900 +msgid "Create Live USB SliTaz systems"
  17.901 +msgstr "Cria e gerencia sistemas SliTaz Live CD/USB"
  17.902 +
  17.903 +#: live.cgi:92
  17.904 +#, fuzzy
  17.905 +msgid ""
  17.906 +"Generate SliTaz LiveUSB media and boot in RAM! Insert a LiveCD into the "
  17.907 +"cdrom drive, select the correct device and press Generate."
  17.908 +msgstr ""
  17.909 +"Gera uma mídia LiveUSB do SliTaz e inicializa pela RAM. Insira um\n"
  17.910 +"LiveCD no drive de cdrom, selecione o dispositivo correto e \n"
  17.911 +"pressione Gerar."
  17.912 +
  17.913 +#: live.cgi:97
  17.914 +msgid "USB Media to use:"
  17.915 +msgstr "Mídia USB para usar:"
  17.916 +
  17.917 +#: live.cgi:106 installer.cgi:299 installer.cgi:343 installer.cgi:378
  17.918 +#: installer.cgi:410
  17.919 +msgid "Not found"
  17.920 +msgstr "Não encontrado"
  17.921 +
  17.922 +#: live.cgi:110
  17.923 +msgid "Generate"
  17.924 +msgstr "Gerar"
  17.925 +
  17.926 +#: live.cgi:129
  17.927  msgid "SliTaz Live Systems"
  17.928  msgstr "Sistema Live SliTaz"
  17.929  
  17.930 -#: live.cgi:97
  17.931 +#: live.cgi:130
  17.932  msgid "Create and manage Live CD or USB SliTaz systems"
  17.933  msgstr "Cria e gerencia sistemas SliTaz Live CD/USB"
  17.934  
  17.935 -#: live.cgi:101
  17.936 -msgid "Live USB"
  17.937 +#: live.cgi:135
  17.938 +#, fuzzy
  17.939 +msgid "Create LiveUSB"
  17.940  msgstr "Live USB"
  17.941  
  17.942 -#: live.cgi:103
  17.943 -msgid ""
  17.944 -"Generate SliTaz LiveUSB media and boot in RAM! Insert a\n"
  17.945 -"\tLiveCD into the cdrom drive, select the correct device and press\n"
  17.946 -"\tGenerate."
  17.947 -msgstr ""
  17.948 -"Gera uma mídia LiveUSB do SliTaz e inicializa pela RAM. Insira um\n"
  17.949 -"\tLiveCD no drive de cdrom, selecione o dispositivo correto e \n"
  17.950 -"\tpressione Gerar."
  17.951 -
  17.952 -#: live.cgi:108
  17.953 -msgid "USB Media to use:"
  17.954 -msgstr "Mídia USB para usar:"
  17.955 -
  17.956 -#: live.cgi:117 installer.cgi:302 installer.cgi:346 installer.cgi:381
  17.957 -#: installer.cgi:414
  17.958 -msgid "Not found"
  17.959 -msgstr "Não encontrado"
  17.960 -
  17.961 -#: live.cgi:121
  17.962 -msgid "Generate"
  17.963 -msgstr "Gerar"
  17.964 -
  17.965 -#: live.cgi:125
  17.966 +#: live.cgi:140
  17.967  msgid "Write a Live CD"
  17.968  msgstr "Crie um LiveCD"
  17.969  
  17.970 -#: live.cgi:127
  17.971 +#: live.cgi:142
  17.972 +#, fuzzy
  17.973  msgid ""
  17.974 -"The command writeiso will generate an ISO image of the\n"
  17.975 -"\tcurrent filesystem as is, including all files in the /home directory.\n"
  17.976 -"\tIt is an easy way to remaster a SliTaz Live system, you just have\n"
  17.977 -"\tto: boot, modify, writeiso."
  17.978 +"The command writeiso will generate an ISO image of the current filesystem as "
  17.979 +"is, including all files in the /home directory. It is an easy way to "
  17.980 +"remaster a SliTaz Live system, you just have to: boot, modify, writeiso."
  17.981  msgstr ""
  17.982  "O comando writeiso irá gerar uma imagem ISO do\n"
  17.983 -"\tsistema de arquivos atual, incluindo arquivos no diretório /home.\n"
  17.984 -"\tÉ uma forma fácil de remasterizar um sistema Live do SliTaz, você\n"
  17.985 -"\tdeve: iniciar, modificar, writeiso."
  17.986 +"sistema de arquivos atual, incluindo arquivos no diretório /home.\n"
  17.987 +"É uma forma fácil de remasterizar um sistema Live do SliTaz, você\n"
  17.988 +"deve: iniciar, modificar, writeiso."
  17.989  
  17.990 -#: live.cgi:133
  17.991 +#: live.cgi:148
  17.992  msgid "Compression type:"
  17.993  msgstr "Tipo de compressão:"
  17.994  
  17.995 -#: live.cgi:139
  17.996 +#: live.cgi:154
  17.997  msgid "Write ISO"
  17.998  msgstr "Criar ISO"
  17.999  
 17.1000 -#: live.cgi:142
 17.1001 +#: live.cgi:158
 17.1002  msgid "Live CD tools"
 17.1003  msgstr "Ferramentas de LiveCD"
 17.1004  
 17.1005 -#: live.cgi:144 live.cgi:169
 17.1006 +#: live.cgi:160 live.cgi:192 styles/default/header.sh:84
 17.1007  msgid "Convert ISO to loram"
 17.1008  msgstr "Converter ISO para loram"
 17.1009  
 17.1010 -#: live.cgi:146
 17.1011 +#: live.cgi:162
 17.1012 +#, fuzzy
 17.1013  msgid ""
 17.1014 -"This command will convert an ISO image of a SliTaz Live CD\n"
 17.1015 -"\tto a new ISO image requiring less RAM to run."
 17.1016 +"This command will convert an ISO image of a SliTaz Live CD to a new ISO "
 17.1017 +"image requiring less RAM to run."
 17.1018  msgstr ""
 17.1019  "Este comando converte uma imagem ISO de um sistema SliTaz LiveCD\n"
 17.1020 -"\tem uma nova imagem ISO que utiliza menos memória RAM para rodar."
 17.1021 +"em uma nova imagem ISO que utiliza menos memória RAM para rodar."
 17.1022  
 17.1023 -#: live.cgi:152
 17.1024 +#: live.cgi:168
 17.1025  msgid "ISO to convert"
 17.1026  msgstr "ISO para converter"
 17.1027  
 17.1028 -#: live.cgi:156
 17.1029 +#: live.cgi:173
 17.1030  msgid "The filesystem is always in RAM"
 17.1031  msgstr "O sistema de arquivos sempre está na RAM"
 17.1032  
 17.1033 -#: live.cgi:159
 17.1034 +#: live.cgi:178
 17.1035  msgid "The filesystem may be on a small CDROM"
 17.1036  msgstr "O sistema de arquivos pode estar em um cdrom de pouca capacidade"
 17.1037  
 17.1038 -#: live.cgi:162
 17.1039 +#: live.cgi:183
 17.1040  msgid "The filesystem may be on a large CDROM"
 17.1041  msgstr "O sistema de arquivos pode estar em um cdrom de muita capacidade"
 17.1042  
 17.1043 -#: live.cgi:165 live.cgi:208
 17.1044 +#: live.cgi:187 live.cgi:234
 17.1045  msgid "ISO to create"
 17.1046  msgstr "ISO para criar"
 17.1047  
 17.1048 -#: live.cgi:173 live.cgi:212
 17.1049 +#: live.cgi:196 live.cgi:239 styles/default/header.sh:85
 17.1050  msgid "Build a meta ISO"
 17.1051  msgstr "Cria uma meta ISO"
 17.1052  
 17.1053 -#: live.cgi:175
 17.1054 +#: live.cgi:198
 17.1055 +#, fuzzy
 17.1056  msgid ""
 17.1057 -"Combines several ISO flavors like nested Russian dolls.\n"
 17.1058 -"\tThe amount of RAM available at startup will be used to select the\n"
 17.1059 -"\tutmost one."
 17.1060 +"Combines several ISO flavors like nested Russian dolls. The amount of RAM "
 17.1061 +"available at startup will be used to select the utmost one."
 17.1062  msgstr ""
 17.1063  "Combina várias ISO de variantes como Bonecas Russas.\n"
 17.1064 -"\tA quantidade de memória RAM disponível durante o boot será usada\n"
 17.1065 -"\tpara selecionar a melhor opção."
 17.1066 +"A quantidade de memória RAM disponível durante o boot será usada\n"
 17.1067 +"para selecionar a melhor opção."
 17.1068  
 17.1069 -#: live.cgi:188
 17.1070 +#: live.cgi:210
 17.1071  msgid "ISO number"
 17.1072  msgstr "Número da ISO"
 17.1073  
 17.1074 -#: live.cgi:190 live.cgi:203
 17.1075 +#: live.cgi:213 live.cgi:228
 17.1076  msgid "Minimum RAM"
 17.1077  msgstr "RAM Mínima"
 17.1078  
 17.1079 -#: live.cgi:201
 17.1080 +#: live.cgi:225
 17.1081  msgid "ISO to add"
 17.1082  msgstr "ISO para adicionar"
 17.1083  
 17.1084 -#: live.cgi:205
 17.1085 +#: live.cgi:230
 17.1086  msgid "Add to the list"
 17.1087  msgstr "Adicionar para lista"
 17.1088  
 17.1089 +#: network.cgi:13
 17.1090 +msgid "TazPanel - Network"
 17.1091 +msgstr ""
 17.1092 +
 17.1093  #: network.cgi:24
 17.1094  msgid "Quality"
 17.1095  msgstr "Qualidade"
 17.1096 @@ -563,397 +863,493 @@
 17.1097  msgid "Encryption"
 17.1098  msgstr "Encriptação"
 17.1099  
 17.1100 -#: network.cgi:26 boot.cgi:86 lib/libtazpanel:88
 17.1101 +#: network.cgi:26 boot.cgi:84 lib/libtazpanel:99
 17.1102  msgid "Status"
 17.1103  msgstr "Status"
 17.1104  
 17.1105 -#: network.cgi:52
 17.1106 +#: network.cgi:53
 17.1107  msgid "Connected"
 17.1108  msgstr "Conectado"
 17.1109  
 17.1110 -#: network.cgi:91
 17.1111 -msgid "Changed hostname:"
 17.1112 +#: network.cgi:96
 17.1113 +#, fuzzy, sh-format
 17.1114 +msgid "Changed hostname: $get_hostname"
 17.1115  msgstr "Nome de host alterado:"
 17.1116  
 17.1117 -#: network.cgi:107
 17.1118 +#: network.cgi:112
 17.1119  msgid "Scanning open ports..."
 17.1120  msgstr "Procurando portas abertas..."
 17.1121  
 17.1122 -#: network.cgi:110
 17.1123 -msgid "Port scanning for"
 17.1124 +#: network.cgi:115
 17.1125 +#, fuzzy, sh-format
 17.1126 +msgid "Port scanning for $scan"
 17.1127  msgstr "Procura de portas para"
 17.1128  
 17.1129 -#: network.cgi:124
 17.1130 +#: network.cgi:129
 17.1131  msgid "Setting up IP..."
 17.1132  msgstr "Configurando IP..."
 17.1133  
 17.1134 -#: network.cgi:140
 17.1135 +#: network.cgi:145
 17.1136  msgid "Ethernet connection"
 17.1137  msgstr "Conexão ethernet"
 17.1138  
 17.1139 -#: network.cgi:142
 17.1140 +#: network.cgi:147
 17.1141 +#, fuzzy
 17.1142  msgid ""
 17.1143 -"Here you can configure a wired connection using DHCP to\n"
 17.1144 -"automatically get a random IP or configure a static/fixed IP"
 17.1145 +"Here you can configure a wired connection using DHCP to automatically get a "
 17.1146 +"random IP or configure a static/fixed IP"
 17.1147  msgstr ""
 17.1148  "Aqui você pode configurar conexões cabeadas usando DHCP para\n"
 17.1149  "obter automaticamente um IP aleatório ou configurar um IP fixo"
 17.1150  
 17.1151 -#: network.cgi:145
 17.1152 +#: network.cgi:150
 17.1153  msgid "Configuration"
 17.1154  msgstr "Configuração"
 17.1155  
 17.1156 -#: network.cgi:152 network.cgi:241
 17.1157 +#: network.cgi:157 network.cgi:247
 17.1158  msgid "Value"
 17.1159  msgstr "Valor"
 17.1160  
 17.1161 -#: network.cgi:156 lib/libtazpanel:86
 17.1162 +#: network.cgi:162 lib/libtazpanel:97
 17.1163  msgid "Interface"
 17.1164  msgstr "Interface"
 17.1165  
 17.1166 -#: network.cgi:160
 17.1167 +#: network.cgi:166
 17.1168  msgid "IP address"
 17.1169  msgstr "Endereço IP"
 17.1170  
 17.1171 -#: network.cgi:164
 17.1172 +#: network.cgi:170
 17.1173  msgid "Netmask"
 17.1174  msgstr "Máscara de Rede"
 17.1175  
 17.1176 -#: network.cgi:168
 17.1177 +#: network.cgi:174
 17.1178  msgid "Gateway"
 17.1179  msgstr "Gateway"
 17.1180  
 17.1181 -#: network.cgi:172
 17.1182 +#: network.cgi:178
 17.1183  msgid "DNS server"
 17.1184  msgstr "Servidor DNS"
 17.1185  
 17.1186 -#: network.cgi:176
 17.1187 +#: network.cgi:183
 17.1188  msgid "Activate (static)"
 17.1189  msgstr "Ativar (estático)"
 17.1190  
 17.1191 -#: network.cgi:177
 17.1192 +#: network.cgi:184
 17.1193  msgid "Activate (DHCP)"
 17.1194  msgstr "Ativar (DHCP)"
 17.1195  
 17.1196 -#: network.cgi:178
 17.1197 +#: network.cgi:185
 17.1198  msgid "Disable"
 17.1199  msgstr "Desabilitar"
 17.1200  
 17.1201 -#: network.cgi:181 network.cgi:260
 17.1202 +#: network.cgi:188 network.cgi:266
 17.1203  msgid "Configuration file"
 17.1204  msgstr "Arquivo de configuração"
 17.1205  
 17.1206 -#: network.cgi:183
 17.1207 +#: network.cgi:190
 17.1208 +#, fuzzy
 17.1209  msgid ""
 17.1210 -"These values are the ethernet settings in the main\n"
 17.1211 -"/etc/network.conf configuration file"
 17.1212 +"These values are the ethernet settings in the main /etc/network.conf "
 17.1213 +"configuration file"
 17.1214  msgstr ""
 17.1215  "Esses valores são as configurações da rede ethernet no\n"
 17.1216  "arquivo de configuração /etc/network.conf"
 17.1217  
 17.1218 -#: network.cgi:190 network.cgi:269
 17.1219 +#: network.cgi:196 network.cgi:274
 17.1220  msgid "Manual Edit"
 17.1221  msgstr "Edição manual"
 17.1222  
 17.1223 -#: network.cgi:196
 17.1224 +#: network.cgi:202
 17.1225  msgid "Scanning wireless interface..."
 17.1226  msgstr "Procurando interface sem fio..."
 17.1227  
 17.1228 -#: network.cgi:200
 17.1229 +#: network.cgi:206
 17.1230  msgid "Wireless connection"
 17.1231  msgstr "Conexões sem fio"
 17.1232  
 17.1233 -#: network.cgi:203 network.cgi:290
 17.1234 +#: network.cgi:209 network.cgi:293 boot.cgi:167
 17.1235  msgid "Start"
 17.1236  msgstr "Iniciar"
 17.1237  
 17.1238 -#: network.cgi:205 network.cgi:292
 17.1239 +#: network.cgi:211 network.cgi:295 boot.cgi:155
 17.1240  msgid "Stop"
 17.1241  msgstr "Parar"
 17.1242  
 17.1243 -#: network.cgi:207
 17.1244 +#: network.cgi:213
 17.1245  msgid "Scan"
 17.1246  msgstr "Procurar"
 17.1247  
 17.1248 -#: network.cgi:234
 17.1249 +#: network.cgi:240
 17.1250  #, fuzzy
 17.1251  msgid "Connection"
 17.1252  msgstr "Conexão"
 17.1253  
 17.1254 -#: network.cgi:245
 17.1255 +#: network.cgi:251
 17.1256  msgid "Wifi name (ESSID)"
 17.1257  msgstr ""
 17.1258  
 17.1259 -#: network.cgi:249
 17.1260 +#: network.cgi:255
 17.1261  msgid "Password (Wifi key)"
 17.1262  msgstr ""
 17.1263  
 17.1264 -#: network.cgi:253
 17.1265 -#, fuzzy
 17.1266 +#: network.cgi:259
 17.1267  msgid "Encryption type"
 17.1268  msgstr "Encriptação"
 17.1269  
 17.1270 -#: network.cgi:257
 17.1271 -#, fuzzy
 17.1272 +#: network.cgi:263
 17.1273  msgid "Configure"
 17.1274  msgstr "Configuração"
 17.1275  
 17.1276 -#: network.cgi:262
 17.1277 +#: network.cgi:268
 17.1278 +#, fuzzy
 17.1279  msgid ""
 17.1280 -"These values are the wifi settings in the main\n"
 17.1281 -"/etc/network.conf configuration file"
 17.1282 +"These values are the wifi settings in the main /etc/network.conf "
 17.1283 +"configuration file"
 17.1284  msgstr ""
 17.1285  "Esses valores são as configurações da rede sem fio no\n"
 17.1286  "arquivo de configuração /etc/network.conf"
 17.1287  
 17.1288 -#: network.cgi:271
 17.1289 -msgid "Output of"
 17.1290 -msgstr "Saída de"
 17.1291 +#: network.cgi:276
 17.1292 +#, fuzzy
 17.1293 +msgid "Output of iwconfig"
 17.1294 +msgstr "Saída de "
 17.1295  
 17.1296 -#: network.cgi:282
 17.1297 +#: network.cgi:286
 17.1298  msgid "Networking"
 17.1299  msgstr "Rede"
 17.1300  
 17.1301 -#: network.cgi:284
 17.1302 +#: network.cgi:288
 17.1303  msgid "Manage network connections and services"
 17.1304  msgstr "Gerenciar serviços e conexões de rede"
 17.1305  
 17.1306 -#: network.cgi:288
 17.1307 -msgid "Connection:"
 17.1308 -msgstr "Conexão"
 17.1309 -
 17.1310 -#: network.cgi:294
 17.1311 +#: network.cgi:297
 17.1312  #, fuzzy
 17.1313  msgid "Restart"
 17.1314  msgstr "Iniciar"
 17.1315  
 17.1316 -#: network.cgi:297
 17.1317 +#: network.cgi:300
 17.1318  msgid "Configuration:"
 17.1319  msgstr "Configuração:"
 17.1320  
 17.1321 -#: network.cgi:307
 17.1322 +#: network.cgi:309
 17.1323  msgid "Hosts"
 17.1324  msgstr "Hosts"
 17.1325  
 17.1326 -#: network.cgi:312
 17.1327 +#: network.cgi:314
 17.1328  msgid "Edit hosts"
 17.1329  msgstr "Editar hosts"
 17.1330  
 17.1331 -#: network.cgi:314 installer.cgi:438
 17.1332 +#: network.cgi:316 installer.cgi:433
 17.1333  msgid "Hostname"
 17.1334  msgstr "Nome do host"
 17.1335  
 17.1336 -#: network.cgi:317
 17.1337 +#: network.cgi:320
 17.1338  msgid "Change hostname"
 17.1339  msgstr "Mudar nome do host"
 17.1340  
 17.1341 -#: network.cgi:322
 17.1342 -msgid "Output of "
 17.1343 +#: network.cgi:324
 17.1344 +#, fuzzy
 17.1345 +msgid "Output of ifconfig"
 17.1346  msgstr "Saída de "
 17.1347  
 17.1348  #: network.cgi:328
 17.1349  msgid "Routing table"
 17.1350  msgstr "Tabela de roteamento"
 17.1351  
 17.1352 -#: network.cgi:334
 17.1353 +#: network.cgi:332
 17.1354  msgid "Domain name resolution"
 17.1355  msgstr "Resolução de nome de domínio"
 17.1356  
 17.1357 -#: network.cgi:340
 17.1358 +#: network.cgi:336
 17.1359  msgid "ARP table"
 17.1360  msgstr "Tabela ARP"
 17.1361  
 17.1362 -#: network.cgi:346
 17.1363 +#: network.cgi:340
 17.1364  msgid "IP Connections"
 17.1365  msgstr "Conexões IP"
 17.1366  
 17.1367 +#: boot.cgi:14
 17.1368 +msgid "TazPanel - Boot"
 17.1369 +msgstr ""
 17.1370 +
 17.1371  #: boot.cgi:25
 17.1372  msgid "Boot log files"
 17.1373  msgstr "Arquivos de log de boot"
 17.1374  
 17.1375 -#: boot.cgi:31 boot.cgi:44
 17.1376 +#: boot.cgi:31 boot.cgi:42
 17.1377  msgid "X server"
 17.1378  msgstr "Servidor X"
 17.1379  
 17.1380 -#: boot.cgi:61 boot.cgi:244
 17.1381 +#: boot.cgi:46
 17.1382 +msgid "Show more..."
 17.1383 +msgstr ""
 17.1384 +
 17.1385 +#: boot.cgi:61 boot.cgi:252 styles/default/header.sh:67
 17.1386  msgid "Manage daemons"
 17.1387  msgstr "Gerenciar daemons"
 17.1388  
 17.1389 -#: boot.cgi:63
 17.1390 +#: boot.cgi:62
 17.1391  msgid "Check, start and stop daemons on SliTaz"
 17.1392  msgstr "Checar, iniciar e parar daemons no SliTaz"
 17.1393  
 17.1394 -#: boot.cgi:87
 17.1395 +#: boot.cgi:85
 17.1396  msgid "Action"
 17.1397  msgstr "Ação"
 17.1398  
 17.1399 -#: boot.cgi:88
 17.1400 +#: boot.cgi:86
 17.1401  msgid "PID"
 17.1402  msgstr "PID"
 17.1403  
 17.1404 -#: boot.cgi:109
 17.1405 -msgid "<td>SliTaz Firewall with iptable rules</td>"
 17.1406 -msgstr "<td>Firewall do SliTaz com regras do iptables</td>"
 17.1407 +#: boot.cgi:108
 17.1408 +msgid "SliTaz Firewall with iptable rules"
 17.1409 +msgstr "Firewall do SliTaz com regras do iptables"
 17.1410  
 17.1411 -#: boot.cgi:111
 17.1412 -msgid "<td>Small and fast web server with CGI support</td>"
 17.1413 +#: boot.cgi:110
 17.1414 +#, fuzzy
 17.1415 +msgid "Small and fast web server with CGI support"
 17.1416  msgstr "<td>Pequeno e rápido servidor web com suporte a CGI</td>"
 17.1417  
 17.1418 -#: boot.cgi:113
 17.1419 -msgid "<td>Network time protocol daemon</td>"
 17.1420 +#: boot.cgi:112
 17.1421 +#, fuzzy
 17.1422 +msgid "Network time protocol daemon"
 17.1423  msgstr "<td>Daemon do protocolo de tempo de rede</td>"
 17.1424  
 17.1425 -#: boot.cgi:115
 17.1426 -msgid "<td>Anonymous FTP server</td>"
 17.1427 +#: boot.cgi:114
 17.1428 +#, fuzzy
 17.1429 +msgid "Anonymous FTP server"
 17.1430  msgstr "<td>Servidor FTP anônimo</td>"
 17.1431  
 17.1432 -#: boot.cgi:117
 17.1433 -msgid "<td>Busybox DHCP server</td>"
 17.1434 +#: boot.cgi:116
 17.1435 +#, fuzzy
 17.1436 +msgid "Busybox DHCP server"
 17.1437  msgstr "<td>Servidor DHCP do busybox</td>"
 17.1438  
 17.1439 -#: boot.cgi:119
 17.1440 -msgid "<td>Linux Kernel log daemon</td>"
 17.1441 +#: boot.cgi:118
 17.1442 +#, fuzzy
 17.1443 +msgid "Linux Kernel log daemon"
 17.1444  msgstr "<td>Daemon de log do kernel Linux</td>"
 17.1445  
 17.1446 -#: boot.cgi:121
 17.1447 -msgid "<td>Execute scheduled commands</td>"
 17.1448 +#: boot.cgi:120
 17.1449 +#, fuzzy
 17.1450 +msgid "Execute scheduled commands"
 17.1451  msgstr "<td>Executar comandos agendados</td>"
 17.1452  
 17.1453 -#: boot.cgi:123
 17.1454 -msgid "<td>Small static DNS server daemon</td>"
 17.1455 +#: boot.cgi:122
 17.1456 +#, fuzzy
 17.1457 +msgid "Small static DNS server daemon"
 17.1458  msgstr "<td>Daemon do pequeno servidor estático de DNS</td>"
 17.1459  
 17.1460 -#: boot.cgi:125
 17.1461 -msgid "<td>Transfer a file on tftp request</td>"
 17.1462 +#: boot.cgi:124
 17.1463 +#, fuzzy
 17.1464 +msgid "Transfer a file on tftp request"
 17.1465  msgstr "<td>Transferir um arquivo por requisição tftp</td>"
 17.1466  
 17.1467 -#: boot.cgi:127
 17.1468 -msgid "<td>Listen for network connections and launch programs</td>"
 17.1469 +#: boot.cgi:126
 17.1470 +#, fuzzy
 17.1471 +msgid "Listen for network connections and launch programs"
 17.1472  msgstr "<td>Esperar por uma conexão de rede e executa programas</td>"
 17.1473  
 17.1474 -#: boot.cgi:129
 17.1475 -msgid "<td>Manage a ZeroConf IPv4 link-local address</td>"
 17.1476 +#: boot.cgi:128
 17.1477 +#, fuzzy
 17.1478 +msgid "Manage a ZeroConf IPv4 link-local address"
 17.1479  msgstr "<td>Gerencia um endereço IPv4 pelo ZeroConf</td>"
 17.1480  
 17.1481 -#: boot.cgi:191
 17.1482 +#: boot.cgi:153
 17.1483 +#, fuzzy
 17.1484 +msgid "Started"
 17.1485 +msgstr "Iniciar"
 17.1486 +
 17.1487 +#: boot.cgi:165
 17.1488 +#, fuzzy
 17.1489 +msgid "Stopped"
 17.1490 +msgstr "Parar"
 17.1491 +
 17.1492 +#: boot.cgi:193
 17.1493  msgid "GRUB Boot loader"
 17.1494  msgstr "Gerenciador de boot GRUB"
 17.1495  
 17.1496 -#: boot.cgi:193
 17.1497 +#: boot.cgi:195
 17.1498  msgid "The first application started when the computer powers on"
 17.1499  msgstr "O primeiro aplicativo iniciado quando o computador é ligado"
 17.1500  
 17.1501 -#: boot.cgi:206 settings.cgi:283
 17.1502 +#: boot.cgi:201
 17.1503 +msgid "Default entry:"
 17.1504 +msgstr ""
 17.1505 +
 17.1506 +#: boot.cgi:203
 17.1507 +msgid "Timeout:"
 17.1508 +msgstr ""
 17.1509 +
 17.1510 +#: boot.cgi:205
 17.1511 +msgid "Splash image:"
 17.1512 +msgstr ""
 17.1513 +
 17.1514 +#: boot.cgi:208 settings.cgi:289
 17.1515  msgid "Change"
 17.1516  msgstr "Alterar"
 17.1517  
 17.1518 -#: boot.cgi:211
 17.1519 +#: boot.cgi:210
 17.1520 +msgid "View or edit menu.lst"
 17.1521 +msgstr ""
 17.1522 +
 17.1523 +#: boot.cgi:213
 17.1524  msgid "Boot entries"
 17.1525  msgstr "Entradas de boot"
 17.1526  
 17.1527 -#: boot.cgi:217
 17.1528 +#: boot.cgi:219
 17.1529  msgid "Entry"
 17.1530  msgstr "Entrada"
 17.1531  
 17.1532 -#: boot.cgi:225
 17.1533 +#: boot.cgi:235
 17.1534  #, fuzzy
 17.1535  msgid "Web boot is available with gPXE"
 17.1536  msgstr "Boot via web está disponível pelo gPXE"
 17.1537  
 17.1538 -#: boot.cgi:235
 17.1539 +#: boot.cgi:245
 17.1540  msgid "Boot &amp; Start services"
 17.1541  msgstr "Serviços de Boot &amp; inicialização"
 17.1542  
 17.1543 -#: boot.cgi:237
 17.1544 +#: boot.cgi:246
 17.1545  msgid "Everything that happens before user login"
 17.1546  msgstr "Tudo o que ocorre antes do login de usuário"
 17.1547  
 17.1548 -#: boot.cgi:242
 17.1549 +#: boot.cgi:250 styles/default/header.sh:65
 17.1550  msgid "Boot logs"
 17.1551  msgstr "Logs de boot"
 17.1552  
 17.1553 -#: boot.cgi:245
 17.1554 +#: boot.cgi:253 styles/default/header.sh:69
 17.1555  msgid "Boot loader"
 17.1556  msgstr "Gerenciador de boot"
 17.1557  
 17.1558 -#: boot.cgi:250
 17.1559 +#: boot.cgi:258
 17.1560  msgid "Main configuration file:"
 17.1561  msgstr "Arquivo de configuração principal:"
 17.1562  
 17.1563 -#: boot.cgi:252
 17.1564 +#: boot.cgi:260
 17.1565  msgid "Login manager settings:"
 17.1566  msgstr "Configurações do gerenciador de login:"
 17.1567  
 17.1568 -#: boot.cgi:256
 17.1569 +#: boot.cgi:264
 17.1570  msgid "Kernel cmdline"
 17.1571  msgstr "Opções de linha de comando do kernel"
 17.1572  
 17.1573 -#: boot.cgi:260
 17.1574 +#: boot.cgi:268
 17.1575  msgid "Local startup commands"
 17.1576  msgstr "Comandos de inicialização locais"
 17.1577  
 17.1578 -#: boot.cgi:265
 17.1579 +#: boot.cgi:273
 17.1580  msgid "Edit script"
 17.1581  msgstr "Editar script"
 17.1582  
 17.1583 -#: hardware.cgi:28
 17.1584 +#: hardware.cgi:13
 17.1585 +msgid "TazPanel - Hardware"
 17.1586 +msgstr ""
 17.1587 +
 17.1588 +#: hardware.cgi:29
 17.1589  #, fuzzy
 17.1590  msgid "Detect hardware"
 17.1591  msgstr "Configurar relógio do hardware"
 17.1592  
 17.1593 -#: hardware.cgi:29
 17.1594 +#: hardware.cgi:30
 17.1595  msgid "Detect PCI and USB hardware"
 17.1596  msgstr ""
 17.1597  
 17.1598 -#: hardware.cgi:42
 17.1599 +#: hardware.cgi:42 hardware.cgi:117 styles/default/header.sh:75
 17.1600  msgid "Kernel modules"
 17.1601  msgstr "Módulos de kernel"
 17.1602  
 17.1603 +#: hardware.cgi:46
 17.1604 +#, fuzzy
 17.1605 +msgid "Modules search"
 17.1606 +msgstr "Módulo"
 17.1607 +
 17.1608  #: hardware.cgi:49
 17.1609  msgid "Manage, search or get information about the Linux kernel modules"
 17.1610  msgstr "Gerenciar, buscar e obter informações sobre módulos do kernel linux"
 17.1611  
 17.1612 -#: hardware.cgi:55
 17.1613 -msgid "Detailed information for module: "
 17.1614 +#: hardware.cgi:56
 17.1615 +#, fuzzy, sh-format
 17.1616 +msgid "Detailed information for module: $get_modinfo"
 17.1617  msgstr "Informações detalhadas de módulo: "
 17.1618  
 17.1619 -#: hardware.cgi:71
 17.1620 -msgid "Matching result(s) for: "
 17.1621 +#: hardware.cgi:70
 17.1622 +#, fuzzy, sh-format
 17.1623 +msgid "Matching result(s) for: $get_search"
 17.1624  msgstr "Resultado(s) encontrado(s) para: "
 17.1625  
 17.1626 -#: hardware.cgi:84
 17.1627 +#: hardware.cgi:76
 17.1628 +#, fuzzy
 17.1629 +msgid "Module:"
 17.1630 +msgstr "Módulo"
 17.1631 +
 17.1632 +#: hardware.cgi:83
 17.1633  msgid "Module"
 17.1634  msgstr "Módulo"
 17.1635  
 17.1636 -#: hardware.cgi:85 lib/libtazpanel:206
 17.1637 +#: hardware.cgi:84 lib/libtazpanel:217
 17.1638  msgid "Size"
 17.1639  msgstr "Tamanho"
 17.1640  
 17.1641 -#: hardware.cgi:86 lib/libtazpanel:208
 17.1642 +#: hardware.cgi:85 lib/libtazpanel:219
 17.1643  msgid "Used"
 17.1644  msgstr "Usado"
 17.1645  
 17.1646 -#: hardware.cgi:87
 17.1647 +#: hardware.cgi:86
 17.1648  msgid "by"
 17.1649  msgstr "por"
 17.1650  
 17.1651 -#: hardware.cgi:113
 17.1652 +#: hardware.cgi:112
 17.1653  msgid "Drivers &amp; Devices"
 17.1654  msgstr "Drivers &amp; dispositivos"
 17.1655  
 17.1656 -#: hardware.cgi:114
 17.1657 +#: hardware.cgi:113
 17.1658  msgid "Manage your computer hardware"
 17.1659  msgstr "Gerencie o hardware de seu computador"
 17.1660  
 17.1661 -#: hardware.cgi:171
 17.1662 +#: hardware.cgi:119 styles/default/header.sh:77
 17.1663 +msgid "Detect PCI/USB"
 17.1664 +msgstr ""
 17.1665 +
 17.1666 +#: hardware.cgi:140
 17.1667 +msgid "Battery"
 17.1668 +msgstr ""
 17.1669 +
 17.1670 +#: hardware.cgi:142
 17.1671 +msgid "health"
 17.1672 +msgstr ""
 17.1673 +
 17.1674 +#: hardware.cgi:151
 17.1675 +#, sh-format
 17.1676 +msgid "Discharging $rempct% - $remtimef"
 17.1677 +msgstr ""
 17.1678 +
 17.1679 +#: hardware.cgi:155
 17.1680 +#, sh-format
 17.1681 +msgid "Charging $rempct% - $remtimef"
 17.1682 +msgstr ""
 17.1683 +
 17.1684 +#: hardware.cgi:157
 17.1685 +msgid "Charged 100%"
 17.1686 +msgstr ""
 17.1687 +
 17.1688 +#: hardware.cgi:165
 17.1689 +#, fuzzy
 17.1690 +msgid "Temperature:"
 17.1691 +msgstr "Gerar"
 17.1692 +
 17.1693 +#: hardware.cgi:180
 17.1694  msgid "Brightness"
 17.1695  msgstr ""
 17.1696  
 17.1697 -#: hardware.cgi:217
 17.1698 +#: hardware.cgi:242
 17.1699  msgid "System memory"
 17.1700  msgstr "Memória do sistema"
 17.1701  
 17.1702 -#: settings.cgi:88 settings.cgi:176
 17.1703 +#: settings.cgi:15
 17.1704 +msgid "TazPanel - Settings"
 17.1705 +msgstr ""
 17.1706 +
 17.1707 +#: settings.cgi:87 settings.cgi:183
 17.1708  msgid "Manage users"
 17.1709  msgstr "Gerencie usuários"
 17.1710  
 17.1711 @@ -985,431 +1381,455 @@
 17.1712  msgid "Shell"
 17.1713  msgstr "Shell"
 17.1714  
 17.1715 -#: settings.cgi:138
 17.1716 +#: settings.cgi:143
 17.1717  msgid "Password:"
 17.1718  msgstr "Senha:"
 17.1719  
 17.1720 -#: settings.cgi:140
 17.1721 +#: settings.cgi:145
 17.1722  msgid "Change password"
 17.1723  msgstr "Alterar senha"
 17.1724  
 17.1725 -#: settings.cgi:144
 17.1726 +#: settings.cgi:149
 17.1727  msgid "Add a new user"
 17.1728  msgstr "Adicionar um novo usuário"
 17.1729  
 17.1730 -#: settings.cgi:147 installer.cgi:467
 17.1731 +#: settings.cgi:154 installer.cgi:465
 17.1732  msgid "User login:"
 17.1733  msgstr "Login do usuário:"
 17.1734  
 17.1735 -#: settings.cgi:149
 17.1736 +#: settings.cgi:156
 17.1737  msgid "User password:"
 17.1738  msgstr "Senha do usuário:"
 17.1739  
 17.1740 -#: settings.cgi:151
 17.1741 +#: settings.cgi:159
 17.1742  msgid "Create user"
 17.1743  msgstr "Criar usuário"
 17.1744  
 17.1745 -#: settings.cgi:154
 17.1746 +#: settings.cgi:163
 17.1747  msgid "Current user sessions"
 17.1748  msgstr "Sessões do usuário atual"
 17.1749  
 17.1750 -#: settings.cgi:159
 17.1751 +#: settings.cgi:167
 17.1752  msgid "Last user sessions"
 17.1753  msgstr "Sessões do último usuário"
 17.1754  
 17.1755 -#: settings.cgi:171
 17.1756 +#: settings.cgi:178
 17.1757  msgid "System settings"
 17.1758  msgstr "Configurações do sistema"
 17.1759  
 17.1760 -#: settings.cgi:172
 17.1761 +#: settings.cgi:179
 17.1762  msgid "Manage system time, users or language settings"
 17.1763  msgstr "Gerencie configurações do tempo do sistema, usuários e linguagem"
 17.1764  
 17.1765 -#: settings.cgi:179
 17.1766 +#: settings.cgi:186
 17.1767  msgid "System time"
 17.1768  msgstr "Tempo do sistema"
 17.1769  
 17.1770 -#: settings.cgi:181
 17.1771 -msgid "Time zome      :"
 17.1772 +#: settings.cgi:189
 17.1773 +#, fuzzy
 17.1774 +msgid "Time zome:"
 17.1775  msgstr "Zona horária  :"
 17.1776  
 17.1777 -#: settings.cgi:182
 17.1778 -msgid "System time    :"
 17.1779 -msgstr "Tempo do sistema:"
 17.1780 +#: settings.cgi:190
 17.1781 +#, fuzzy
 17.1782 +msgid "System time:"
 17.1783 +msgstr "Tempo do sistema"
 17.1784  
 17.1785 -#: settings.cgi:183
 17.1786 -msgid "Hardware clock :"
 17.1787 +#: settings.cgi:191
 17.1788 +#, fuzzy
 17.1789 +msgid "Hardware clock:"
 17.1790  msgstr "Relógio de hardware:"
 17.1791  
 17.1792 -#: settings.cgi:185
 17.1793 +#: settings.cgi:193
 17.1794  msgid "Sync online"
 17.1795  msgstr "Sincronização online"
 17.1796  
 17.1797 -#: settings.cgi:186
 17.1798 +#: settings.cgi:194
 17.1799  msgid "Set hardware clock"
 17.1800  msgstr "Configurar relógio do hardware"
 17.1801  
 17.1802 -#: settings.cgi:193
 17.1803 +#: settings.cgi:200
 17.1804  msgid "System language"
 17.1805  msgstr "Linguagem do sistema"
 17.1806  
 17.1807 -#: settings.cgi:204
 17.1808 -#, sh-format
 17.1809 +#: settings.cgi:211
 17.1810 +#, fuzzy, sh-format
 17.1811  msgid ""
 17.1812 -"You must logout and login again to your current\n"
 17.1813 -"\t\t\t\tsession to use $new_locale locale."
 17.1814 +"You must logout and login again to your current session to use $new_locale "
 17.1815 +"locale."
 17.1816  msgstr ""
 17.1817  "Você deve sair e fazer login novamente para\n"
 17.1818  "\t\t\t\tusar o locale $new_locale."
 17.1819  
 17.1820 -#: settings.cgi:207
 17.1821 -msgid "Current system locales: "
 17.1822 +#: settings.cgi:214
 17.1823 +#, fuzzy
 17.1824 +msgid "Current system locales:"
 17.1825  msgstr "Locales da sessão atual: "
 17.1826  
 17.1827 -#: settings.cgi:213
 17.1828 +#: settings.cgi:220
 17.1829  msgid "Available locales:"
 17.1830  msgstr "Locales disponíveis:"
 17.1831  
 17.1832 -#: settings.cgi:218 settings.cgi:266 settings.cgi:276
 17.1833 +#: settings.cgi:225 settings.cgi:271 settings.cgi:282
 17.1834  msgid "Activate"
 17.1835  msgstr "Ativar"
 17.1836  
 17.1837 -#: settings.cgi:222
 17.1838 +#: settings.cgi:228
 17.1839  msgid "Console keymap"
 17.1840  msgstr "Mapa de teclas do teclado"
 17.1841  
 17.1842 -#: settings.cgi:234
 17.1843 -msgid "Current console keymap: "
 17.1844 +#: settings.cgi:241
 17.1845 +#, fuzzy, sh-format
 17.1846 +msgid "Current console keymap: $keymap"
 17.1847  msgstr "Mapa de teclado atual: "
 17.1848  
 17.1849 -#: settings.cgi:253
 17.1850 +#: settings.cgi:258
 17.1851  msgid "Suggested keymap for Xorg:"
 17.1852  msgstr "Mapa de teclado sugerido para o Xorg:"
 17.1853  
 17.1854 -#: settings.cgi:262
 17.1855 +#: settings.cgi:267
 17.1856  msgid "Available keymaps:"
 17.1857  msgstr "Mapa de teclado disponíveis:"
 17.1858  
 17.1859 -#: settings.cgi:269
 17.1860 +#: settings.cgi:274
 17.1861  msgid "Panel configuration"
 17.1862  msgstr "Configuração do Painel"
 17.1863  
 17.1864 -#: settings.cgi:272
 17.1865 +#: settings.cgi:278
 17.1866  msgid "Style:"
 17.1867  msgstr "Estilo:"
 17.1868  
 17.1869 -#: settings.cgi:281
 17.1870 +#: settings.cgi:287
 17.1871  msgid "Panel password:"
 17.1872  msgstr "Senha do painel:"
 17.1873  
 17.1874 -#: settings.cgi:287
 17.1875 -msgid "Configuration files: "
 17.1876 +#: settings.cgi:293
 17.1877 +#, fuzzy
 17.1878 +msgid "Configuration files:"
 17.1879  msgstr "Arquivos de configuração: "
 17.1880  
 17.1881 -#: settings.cgi:289
 17.1882 +#: settings.cgi:295 styles/default/header.sh:24
 17.1883  msgid "Panel"
 17.1884  msgstr "Painel"
 17.1885  
 17.1886 -#: settings.cgi:291
 17.1887 +#: settings.cgi:297
 17.1888  msgid "Server"
 17.1889  msgstr "Servidor"
 17.1890  
 17.1891 -#: settings.cgi:294
 17.1892 +#: settings.cgi:300
 17.1893  msgid "TazPanel provides a debuging mode and page:"
 17.1894  msgstr "O TazPanel oferece um modo de debug:"
 17.1895  
 17.1896 -#: lib/libtazpanel:89
 17.1897 +#: lib/libtazpanel:83
 17.1898 +#, fuzzy
 17.1899 +msgid "connected"
 17.1900 +msgstr "Conectado"
 17.1901 +
 17.1902 +#: lib/libtazpanel:100
 17.1903  msgid "IP Address"
 17.1904  msgstr "Endereço IP"
 17.1905  
 17.1906 -#: lib/libtazpanel:90
 17.1907 +#: lib/libtazpanel:101
 17.1908  msgid "Scan ports"
 17.1909  msgstr "Buscar portas"
 17.1910  
 17.1911 -#: lib/libtazpanel:205
 17.1912 +#: lib/libtazpanel:214
 17.1913  msgid "Disk"
 17.1914  msgstr ""
 17.1915  
 17.1916 -#: lib/libtazpanel:207
 17.1917 +#: lib/libtazpanel:215
 17.1918 +msgid "Label"
 17.1919 +msgstr ""
 17.1920 +
 17.1921 +#: lib/libtazpanel:216
 17.1922 +msgid "Type"
 17.1923 +msgstr ""
 17.1924 +
 17.1925 +#: lib/libtazpanel:218
 17.1926  msgid "Available"
 17.1927  msgstr "Disponível"
 17.1928  
 17.1929 -#: lib/libtazpanel:209
 17.1930 +#: lib/libtazpanel:220
 17.1931  msgid "Mount point"
 17.1932  msgstr "Ponto de montagem"
 17.1933  
 17.1934 -#: installer.cgi:120 installer.cgi:126
 17.1935 +#: installer.cgi:24
 17.1936 +#, fuzzy
 17.1937 +msgid "TazPanel - Installer"
 17.1938 +msgstr "Instalar"
 17.1939 +
 17.1940 +#: installer.cgi:116
 17.1941 +#, sh-format
 17.1942 +msgid "Creating setup file $INSTFILE."
 17.1943 +msgstr ""
 17.1944 +
 17.1945 +#: installer.cgi:120 installer.cgi:127
 17.1946  msgid "Setup File Error"
 17.1947  msgstr ""
 17.1948  
 17.1949 -#: installer.cgi:141
 17.1950 +#: installer.cgi:121
 17.1951 +#, sh-format
 17.1952 +msgid "The setup file <strong>$INSTFILE</strong> doesn't exist."
 17.1953 +msgstr ""
 17.1954 +
 17.1955 +#: installer.cgi:142
 17.1956  #, fuzzy
 17.1957  msgid "SliTaz Installer"
 17.1958  msgstr "Instalar"
 17.1959  
 17.1960 -#: installer.cgi:143
 17.1961 +#: installer.cgi:144
 17.1962  msgid ""
 17.1963 -"The SliTaz Installer installs or upgrades SliTaz to a hard disk\n"
 17.1964 -"\tdrive from a device like a Live-CD or LiveUSB key, from a SliTaz ISO "
 17.1965 -"file,\n"
 17.1966 -"\tor from the web by downloading an ISO file."
 17.1967 +"The SliTaz Installer installs or upgrades SliTaz to a hard disk drive from a "
 17.1968 +"device like a Live-CD or LiveUSB key, from a SliTaz ISO file, or from the "
 17.1969 +"web by downloading an ISO file."
 17.1970  msgstr ""
 17.1971  
 17.1972  #: installer.cgi:157
 17.1973  msgid ""
 17.1974 -"Install SliTaz on a partition of your hard disk drive. If\n"
 17.1975 -"\tyou decide to format your partition, all data will be lost. If you do not\n"
 17.1976 -"\tformat, all data except for any existing /home directory will be "
 17.1977 -"removed, \n"
 17.1978 -"\tthe home directory will be kept as is."
 17.1979 +"Install SliTaz on a partition of your hard disk drive. If you decide to "
 17.1980 +"format your partition, all data will be lost. If you do not format, all data "
 17.1981 +"except for any existing /home directory will be removed, the home directory "
 17.1982 +"will be kept as is."
 17.1983  msgstr ""
 17.1984  
 17.1985 -#: installer.cgi:163
 17.1986 +#: installer.cgi:162
 17.1987  msgid ""
 17.1988 -"Before installation, you may need to create or resize partitions\n"
 17.1989 -"\ton your hard disk drive in order to make space for SliTaz GNU/Linux.\n"
 17.1990 -"\tYou can graphically manage your partitions with Gparted"
 17.1991 +"Before installation, you may need to create or resize partitions on your "
 17.1992 +"hard disk drive in order to make space for SliTaz GNU/Linux. You can "
 17.1993 +"graphically manage your partitions with Gparted"
 17.1994  msgstr ""
 17.1995  
 17.1996 -#: installer.cgi:169 installer.cgi:249
 17.1997 +#: installer.cgi:166 installer.cgi:244 styles/default/header.sh:90
 17.1998  #, fuzzy
 17.1999  msgid "Install SliTaz"
 17.2000  msgstr "Instalar"
 17.2001  
 17.2002 -#: installer.cgi:177
 17.2003 +#: installer.cgi:175
 17.2004  msgid "Upgrade"
 17.2005  msgstr ""
 17.2006  
 17.2007 -#: installer.cgi:179
 17.2008 +#: installer.cgi:177
 17.2009  msgid ""
 17.2010 -"Upgrade an already installed SliTaz system on your hard disk\n"
 17.2011 -"\tdrive. Your /home /etc /var/www directories will be kept, all other "
 17.2012 -"directories\n"
 17.2013 -"\twill be removed. Any additional packages added to your old Slitaz system\n"
 17.2014 -"\twill be updated as long you have an active internet connection."
 17.2015 +"Upgrade an already installed SliTaz system on your hard disk drive. Your /"
 17.2016 +"home /etc /var/www directories will be kept, all other directories will be "
 17.2017 +"removed. Any additional packages added to your old Slitaz system will be "
 17.2018 +"updated as long you have an active internet connection."
 17.2019  msgstr ""
 17.2020  
 17.2021 -#: installer.cgi:186 installer.cgi:261
 17.2022 +#: installer.cgi:182 installer.cgi:257
 17.2023  msgid "Upgrade SliTaz"
 17.2024  msgstr ""
 17.2025  
 17.2026 -#: installer.cgi:194
 17.2027 +#: installer.cgi:190
 17.2028  msgid "Partitioning"
 17.2029  msgstr ""
 17.2030  
 17.2031 -#: installer.cgi:197
 17.2032 +#: installer.cgi:193
 17.2033  msgid ""
 17.2034 -"On most used systems, the hard drive is already dedicated to \n"
 17.2035 -"\tpartitions for Windows<sup>&copy;</sup>, or Linux, or another operating \n"
 17.2036 -"\tsystem. You'll need to resize these partitions in order to make space for\n"
 17.2037 -"\tSliTaz GNU/Linux. SliTaz will co-exist with other operating systems "
 17.2038 -"already\n"
 17.2039 -"\tinstalled on your hard drive."
 17.2040 +"On most used systems, the hard drive is already dedicated to partitions for "
 17.2041 +"Windows<sup>&trade;</sup>, or Linux, or another operating system. You'll "
 17.2042 +"need to resize these partitions in order to make space for SliTaz GNU/Linux. "
 17.2043 +"SliTaz will co-exist with other operating systems already installed on your "
 17.2044 +"hard drive."
 17.2045 +msgstr ""
 17.2046 +
 17.2047 +#: installer.cgi:199
 17.2048 +msgid ""
 17.2049 +"The amount of space needed depends on how much software you plan to install "
 17.2050 +"and how much space you require for users. It's conceivable that you could "
 17.2051 +"run a minimal SliTaz system in 300 megs or less, but 2 gigs is indeed more "
 17.2052 +"comfy."
 17.2053  msgstr ""
 17.2054  
 17.2055  #: installer.cgi:204
 17.2056  msgid ""
 17.2057 -"The amount of space needed depends on how much software you \n"
 17.2058 -"\tplan to install\tand how much space you require for users. It's "
 17.2059 -"conceivable\n"
 17.2060 -"\tthat you could run a minimal SliTaz system in 300 megs or less, but 2 "
 17.2061 -"gigs\n"
 17.2062 -"\tis indeed more comfy."
 17.2063 +"A separate home partition, and a partition that will be used as Linux swap "
 17.2064 +"space may be created if needed. Slitaz detects and uses swap partitions "
 17.2065 +"automatically."
 17.2066  msgstr ""
 17.2067  
 17.2068 -#: installer.cgi:209
 17.2069 +#: installer.cgi:212
 17.2070  msgid ""
 17.2071 -"A separate home partition, and a partition that will be used \n"
 17.2072 -"\tas Linux swap space may be created if needed. Slitaz detects and uses "
 17.2073 -"swap\n"
 17.2074 -"\tpartitions automatically."
 17.2075 +"You can graphically manage your partitions with Gparted. GParted is a "
 17.2076 +"partition editor for graphically managing your disk partitions. Gparted "
 17.2077 +"allows you to create, destroy, resize and copy partitions without data loss."
 17.2078  msgstr ""
 17.2079  
 17.2080 -#: installer.cgi:217
 17.2081 +#: installer.cgi:216
 17.2082  msgid ""
 17.2083 -"You can graphically manage your partitions with Gparted. GParted\n"
 17.2084 -"\tis a partition editor for graphically managing your disk partitions. "
 17.2085 -"Gparted\n"
 17.2086 -"\tallows you to create, destroy, resize and copy partitions without data\n"
 17.2087 -"\tloss."
 17.2088 +"Gparted supports ext2, ext3, ext4, linux swap, ntfs and fat32 filesystems "
 17.2089 +"right out of the box. Support for xjs, jfs, hfs and other filesystems is "
 17.2090 +"available as well but you first need to add drivers for these filesystems by "
 17.2091 +"installing the related packages xfsprogs, jfsutils, linux-hfs and so on."
 17.2092  msgstr ""
 17.2093  
 17.2094  #: installer.cgi:223
 17.2095 -msgid ""
 17.2096 -"Gparted supports ext2, ext3, ext4, linux swap, ntfs and fat32\n"
 17.2097 -"\tfilesystems right out of the box. Support for xjs, jfs, hfs and other\n"
 17.2098 -"\tfilesystems is available as well but you first need to add drivers for \n"
 17.2099 -"\tthese filesystems by installing the related packages xfsprogs, jfsutils,\n"
 17.2100 -"\tlinux-hfs and so on."
 17.2101 -msgstr ""
 17.2102 -
 17.2103 -#: installer.cgi:230
 17.2104  msgid "Execute Gparted"
 17.2105  msgstr ""
 17.2106  
 17.2107 -#: installer.cgi:231
 17.2108 +#: installer.cgi:225
 17.2109  #, fuzzy
 17.2110  msgid "Continue installation"
 17.2111  msgstr "Ligação para outra instalação do SliTaz"
 17.2112  
 17.2113 -#: installer.cgi:232
 17.2114 +#: installer.cgi:227
 17.2115  msgid ""
 17.2116 -"Once you've made room for SliTaz on your drive,\tyou\n"
 17.2117 -"\tshould be able to continue installation."
 17.2118 +"Once you've made room for SliTaz on your drive, you should be able to "
 17.2119 +"continue installation."
 17.2120  msgstr ""
 17.2121  
 17.2122 -#: installer.cgi:237 installer.cgi:501 installer.cgi:512
 17.2123 +#: installer.cgi:232 installer.cgi:502 installer.cgi:513
 17.2124  msgid "Back to Installer Start Page"
 17.2125  msgstr ""
 17.2126  
 17.2127 -#: installer.cgi:239
 17.2128 +#: installer.cgi:234
 17.2129 +#, fuzzy
 17.2130  msgid "Continue Installation"
 17.2131 +msgstr "Ligação para outra instalação do SliTaz"
 17.2132 +
 17.2133 +#: installer.cgi:246
 17.2134 +msgid ""
 17.2135 +"You're going to install SliTaz on a partition of your hard disk drive. If "
 17.2136 +"you decide to format your HDD, all data will be lost. If you do not format, "
 17.2137 +"all data except for any existing /home directory will be removed, the home "
 17.2138 +"directory will be kept as is."
 17.2139  msgstr ""
 17.2140  
 17.2141 -#: installer.cgi:250
 17.2142 +#: installer.cgi:259
 17.2143  msgid ""
 17.2144 -"You're going to install SliTaz on a partition of your hard disk drive. If\n"
 17.2145 -"\tyou decide to format your HDD, all data will be lost. If you do not \n"
 17.2146 -"\tformat, all data except for any existing /home directory will be "
 17.2147 -"removed, \n"
 17.2148 -"\tthe home directory will be kept as is."
 17.2149 +"You're going to upgrade an already installed SliTaz system on your hard disk "
 17.2150 +"drive. Your /home /etc /var/www directories will be kept, all other "
 17.2151 +"directories will be removed. Any additional packages added to your old "
 17.2152 +"Slitaz system will be updated as long you have an active internet connection."
 17.2153  msgstr ""
 17.2154  
 17.2155 -#: installer.cgi:262
 17.2156 -msgid ""
 17.2157 -"You're going to upgrade an already installed SliTaz system on your hard "
 17.2158 -"disk\n"
 17.2159 -"\tdrive. Your /home /etc /var/www directories will be kept, all other "
 17.2160 -"directories\n"
 17.2161 -"\twill be removed. Any additional packages added to your old Slitaz system\n"
 17.2162 -"\twill be updated as long you have an active internet connection."
 17.2163 +#: installer.cgi:273
 17.2164 +msgid "Slitaz source media"
 17.2165  msgstr ""
 17.2166  
 17.2167  #: installer.cgi:277
 17.2168 -msgid "Slitaz source media"
 17.2169 -msgstr ""
 17.2170 -
 17.2171 -#: installer.cgi:280
 17.2172  #, fuzzy
 17.2173  msgid "LiveCD"
 17.2174  msgstr "Ferramentas de LiveCD"
 17.2175  
 17.2176 -#: installer.cgi:283
 17.2177 +#: installer.cgi:280
 17.2178  #, fuzzy
 17.2179 -msgid "LiveUSB"
 17.2180 +msgid "LiveUSB:"
 17.2181  msgstr "Live USB"
 17.2182  
 17.2183 -#: installer.cgi:309
 17.2184 -msgid "ISO file"
 17.2185 +#: installer.cgi:306
 17.2186 +msgid "ISO file:"
 17.2187  msgstr ""
 17.2188  
 17.2189 +#: installer.cgi:307
 17.2190 +#, fuzzy
 17.2191 +msgid "Full path to the ISO image file"
 17.2192 +msgstr "Instalar de imagem ISO: "
 17.2193 +
 17.2194  #: installer.cgi:310
 17.2195 -msgid "Full path to the ISO image file"
 17.2196 +msgid "Web:"
 17.2197  msgstr ""
 17.2198  
 17.2199 -#: installer.cgi:314
 17.2200 +#: installer.cgi:311
 17.2201  #, fuzzy
 17.2202  msgid "Stable"
 17.2203  msgstr "Tabela ARP"
 17.2204  
 17.2205 -#: installer.cgi:315
 17.2206 +#: installer.cgi:312
 17.2207  msgid "Cooking"
 17.2208  msgstr ""
 17.2209  
 17.2210 -#: installer.cgi:316
 17.2211 +#: installer.cgi:314
 17.2212  msgid "URL:"
 17.2213  msgstr ""
 17.2214  
 17.2215 -#: installer.cgi:317
 17.2216 +#: installer.cgi:315
 17.2217  #, fuzzy
 17.2218  msgid "Full url to an ISO image file"
 17.2219  msgstr "Instalar de imagem ISO: "
 17.2220  
 17.2221 -#: installer.cgi:327
 17.2222 +#: installer.cgi:324
 17.2223  msgid "Hard Disk Drive"
 17.2224  msgstr ""
 17.2225  
 17.2226 -#: installer.cgi:336
 17.2227 +#: installer.cgi:333
 17.2228  #, fuzzy
 17.2229  msgid "Install Slitaz to partition:"
 17.2230  msgstr "Instalar"
 17.2231  
 17.2232 -#: installer.cgi:341 installer.cgi:376 installer.cgi:409
 17.2233 +#: installer.cgi:338 installer.cgi:373 installer.cgi:405
 17.2234  msgid "None"
 17.2235  msgstr ""
 17.2236  
 17.2237 -#: installer.cgi:352
 17.2238 -msgid "Format partition as"
 17.2239 +#: installer.cgi:349 installer.cgi:416
 17.2240 +msgid "Format partition as:"
 17.2241  msgstr ""
 17.2242  
 17.2243 -#: installer.cgi:371
 17.2244 +#: installer.cgi:368
 17.2245  msgid "Existing SliTaz partition to upgrade:"
 17.2246  msgstr ""
 17.2247  
 17.2248 -#: installer.cgi:393
 17.2249 +#: installer.cgi:389
 17.2250  #, fuzzy
 17.2251  msgid "Options"
 17.2252  msgstr "Ação"
 17.2253  
 17.2254 -#: installer.cgi:402
 17.2255 +#: installer.cgi:397
 17.2256  msgid "home partition"
 17.2257  msgstr ""
 17.2258  
 17.2259 -#: installer.cgi:404
 17.2260 +#: installer.cgi:400
 17.2261  msgid "Use a separate partition for /home:"
 17.2262  msgstr ""
 17.2263  
 17.2264 -#: installer.cgi:420
 17.2265 -msgid "Format partition as:"
 17.2266 -msgstr ""
 17.2267 -
 17.2268 -#: installer.cgi:439
 17.2269 +#: installer.cgi:435
 17.2270  #, fuzzy
 17.2271  msgid "Set Hostname to:"
 17.2272  msgstr "Nome do host"
 17.2273  
 17.2274 -#: installer.cgi:440
 17.2275 +#: installer.cgi:436
 17.2276  msgid "Name of your system"
 17.2277  msgstr ""
 17.2278  
 17.2279 -#: installer.cgi:451
 17.2280 +#: installer.cgi:446
 17.2281  msgid "Root"
 17.2282  msgstr ""
 17.2283  
 17.2284 -#: installer.cgi:452
 17.2285 +#: installer.cgi:448
 17.2286  #, fuzzy
 17.2287  msgid "Root passwd:"
 17.2288  msgstr "Nova senha: "
 17.2289  
 17.2290 -#: installer.cgi:453 installer.cgi:455
 17.2291 +#: installer.cgi:449 installer.cgi:452
 17.2292  #, fuzzy
 17.2293  msgid "Password of root"
 17.2294  msgstr "Senha:"
 17.2295  
 17.2296 -#: installer.cgi:454 installer.cgi:473
 17.2297 +#: installer.cgi:451 installer.cgi:473
 17.2298  #, fuzzy
 17.2299  msgid "Confirm password:"
 17.2300  msgstr "Senha do usuário:"
 17.2301  
 17.2302 -#: installer.cgi:466
 17.2303 +#: installer.cgi:463
 17.2304  #, fuzzy
 17.2305  msgid "User"
 17.2306  msgstr "ID de usuário"
 17.2307  
 17.2308 -#: installer.cgi:468
 17.2309 +#: installer.cgi:466
 17.2310  msgid "Name of the first user"
 17.2311  msgstr ""
 17.2312  
 17.2313 -#: installer.cgi:471
 17.2314 +#: installer.cgi:470
 17.2315  #, fuzzy
 17.2316  msgid "User passwd:"
 17.2317  msgstr "Senha do usuário:"
 17.2318  
 17.2319 -#: installer.cgi:472 installer.cgi:474
 17.2320 +#: installer.cgi:471 installer.cgi:474
 17.2321 +#, fuzzy
 17.2322  msgid "Password of the first user"
 17.2323 -msgstr ""
 17.2324 +msgstr "Senha:"
 17.2325  
 17.2326 -#: installer.cgi:485
 17.2327 +#: installer.cgi:484
 17.2328  msgid "Grub"
 17.2329  msgstr ""
 17.2330  
 17.2331 @@ -1419,65 +1839,199 @@
 17.2332  "install grub by hand yourself."
 17.2333  msgstr ""
 17.2334  
 17.2335 -#: installer.cgi:489
 17.2336 +#: installer.cgi:490
 17.2337  msgid "Enable Windows Dual-Boot."
 17.2338  msgstr ""
 17.2339  
 17.2340 -#: installer.cgi:498
 17.2341 +#: installer.cgi:499
 17.2342  msgid "Back to partitioning"
 17.2343  msgstr ""
 17.2344  
 17.2345 -#: installer.cgi:505
 17.2346 +#: installer.cgi:506
 17.2347  #, fuzzy
 17.2348  msgid "Proceed to SliTaz installation"
 17.2349  msgstr "Ligação para outra instalação do SliTaz"
 17.2350  
 17.2351 -#: installer.cgi:507
 17.2352 +#: installer.cgi:508
 17.2353  msgid "Installation complete. You can now restart (reboot)"
 17.2354  msgstr ""
 17.2355  
 17.2356 -#: installer.cgi:509
 17.2357 +#: installer.cgi:510
 17.2358  msgid "Installation failed. See log"
 17.2359  msgstr ""
 17.2360  
 17.2361 -#: installer.cgi:527
 17.2362 +#: installer.cgi:530
 17.2363  msgid "A web page that points a browser to a different page after 2 seconds"
 17.2364  msgstr ""
 17.2365  
 17.2366 -#: installer.cgi:532
 17.2367 +#: installer.cgi:536
 17.2368  msgid ""
 17.2369 -"If your browser doesn't automatically redirect within a few seconds, \n"
 17.2370 -"you may want to go there manually"
 17.2371 +"If your browser doesn't automatically redirect within a few seconds, you may "
 17.2372 +"want to go there manually"
 17.2373  msgstr ""
 17.2374  
 17.2375 -#: installer.cgi:547 installer.cgi:560
 17.2376 +#: installer.cgi:551 installer.cgi:566
 17.2377  msgid "Tazinst Error"
 17.2378  msgstr ""
 17.2379  
 17.2380 -#: installer.cgi:548
 17.2381 +#: installer.cgi:552
 17.2382  msgid ""
 17.2383 -"the lightweight SliTaz HDD installer\n"
 17.2384 -"is missing. Any installation can not be done without tazinst."
 17.2385 +"<strong>tazinst</strong>, the lightweight SliTaz HDD installer is missing. "
 17.2386 +"Any installation can not be done without tazinst."
 17.2387  msgstr ""
 17.2388  
 17.2389 -#: installer.cgi:550
 17.2390 +#: installer.cgi:555
 17.2391  msgid "Check tazinst' permissions, or reinstall the slitaz-tools package:"
 17.2392  msgstr ""
 17.2393  
 17.2394 -#: installer.cgi:573
 17.2395 +#: installer.cgi:581
 17.2396  msgid "Proceeding: ()"
 17.2397  msgstr ""
 17.2398  
 17.2399 -#: installer.cgi:630 installer.cgi:641
 17.2400 +#: installer.cgi:582
 17.2401 +msgid "Please wait until processing is complete"
 17.2402 +msgstr ""
 17.2403 +
 17.2404 +#: installer.cgi:588
 17.2405 +msgid "Completed."
 17.2406 +msgstr ""
 17.2407 +
 17.2408 +#: installer.cgi:622
 17.2409 +#, fuzzy
 17.2410 +msgid "Hostname error"
 17.2411 +msgstr "Nome do host"
 17.2412 +
 17.2413 +#: installer.cgi:626
 17.2414 +#, fuzzy
 17.2415 +msgid "Root password error"
 17.2416 +msgstr "Nova senha: "
 17.2417 +
 17.2418 +#: installer.cgi:630
 17.2419 +#, fuzzy
 17.2420 +msgid "User login error"
 17.2421 +msgstr "Login do usuário:"
 17.2422 +
 17.2423 +#: installer.cgi:634
 17.2424 +#, fuzzy
 17.2425 +msgid "User password error"
 17.2426 +msgstr "Senha do usuário:"
 17.2427 +
 17.2428 +#: installer.cgi:637 installer.cgi:648
 17.2429  msgid "Do you really want to continue?"
 17.2430  msgstr ""
 17.2431  
 17.2432 +#: help.cgi:20
 17.2433 +#, fuzzy
 17.2434 +msgid "Manual"
 17.2435 +msgstr "Edição manual"
 17.2436 +
 17.2437 +#: help.cgi:28
 17.2438 +msgid "TazPanel - Help &amp; Doc"
 17.2439 +msgstr ""
 17.2440 +
 17.2441 +#: styles/default/header.sh:29
 17.2442 +msgid "Processes"
 17.2443 +msgstr ""
 17.2444 +
 17.2445 +#: styles/default/header.sh:31
 17.2446 +#, fuzzy
 17.2447 +msgid "Create Report"
 17.2448 +msgstr "Criar relatório"
 17.2449 +
 17.2450 +#: styles/default/header.sh:34
 17.2451 +#, fuzzy
 17.2452 +msgid "Packages"
 17.2453 +msgstr "Pacote"
 17.2454 +
 17.2455 +#: styles/default/header.sh:41
 17.2456 +#, fuzzy
 17.2457 +msgid "Check updates"
 17.2458 +msgstr "Checar atualizações"
 17.2459 +
 17.2460 +#: styles/default/header.sh:49
 17.2461 +msgid "Ethernet"
 17.2462 +msgstr ""
 17.2463 +
 17.2464 +#: styles/default/header.sh:51
 17.2465 +msgid "Wireless"
 17.2466 +msgstr ""
 17.2467 +
 17.2468 +#: styles/default/header.sh:53
 17.2469 +#, fuzzy
 17.2470 +msgid "Config file"
 17.2471 +msgstr "Arquivo de configuração"
 17.2472 +
 17.2473 +#: styles/default/header.sh:56
 17.2474 +#, fuzzy
 17.2475 +msgid "Settings"
 17.2476 +msgstr "Configurações do sistema"
 17.2477 +
 17.2478 +#: styles/default/header.sh:59
 17.2479 +#, fuzzy
 17.2480 +msgid "Users"
 17.2481 +msgstr "ID de usuário"
 17.2482 +
 17.2483 +#: styles/default/header.sh:62
 17.2484 +#, fuzzy
 17.2485 +msgid "Boot"
 17.2486 +msgstr "Logs de boot"
 17.2487 +
 17.2488 +#: styles/default/header.sh:72
 17.2489 +#, fuzzy
 17.2490 +msgid "Hardware"
 17.2491 +msgstr "Relógio de hardware:"
 17.2492 +
 17.2493 +#: styles/default/header.sh:80
 17.2494 +#, fuzzy
 17.2495 +msgid "Live"
 17.2496 +msgstr "Ferramentas de LiveCD"
 17.2497 +
 17.2498 +#: styles/default/header.sh:82
 17.2499 +msgid "Create a live USB key"
 17.2500 +msgstr ""
 17.2501 +
 17.2502 +#: styles/default/header.sh:83
 17.2503 +#, fuzzy
 17.2504 +msgid "Create a live CD-ROM"
 17.2505 +msgstr "Crie um LiveCD"
 17.2506 +
 17.2507 +#: styles/default/header.sh:91
 17.2508 +msgid "Upgrade system"
 17.2509 +msgstr ""
 17.2510 +
 17.2511 +#: styles/default/footer.sh:6
 17.2512 +msgid "Copyright"
 17.2513 +msgstr ""
 17.2514 +
 17.2515 +#: styles/default/footer.sh:8
 17.2516 +msgid "BSD License"
 17.2517 +msgstr ""
 17.2518 +
 17.2519 +#~ msgid "List:"
 17.2520 +#~ msgstr "Lista:"
 17.2521 +
 17.2522 +#~ msgid "System time    :"
 17.2523 +#~ msgstr "Tempo do sistema:"
 17.2524 +
 17.2525 +#~ msgid "Usage:"
 17.2526 +#~ msgstr "Uso:"
 17.2527 +
 17.2528 +#~ msgid "Output of"
 17.2529 +#~ msgstr "Saída de"
 17.2530 +
 17.2531 +#~ msgid "Host:"
 17.2532 +#~ msgstr "Host:"
 17.2533 +
 17.2534 +#, fuzzy
 17.2535 +#~ msgid "Uptime       :"
 17.2536 +#~ msgstr "Uptime       :"
 17.2537 +
 17.2538 +#~ msgid "Live USB"
 17.2539 +#~ msgstr "Live USB"
 17.2540 +
 17.2541 +#~ msgid "Connection:"
 17.2542 +#~ msgstr "Conexão"
 17.2543 +
 17.2544  #, fuzzy
 17.2545  #~ msgid "Host"
 17.2546  #~ msgstr "Host:"
 17.2547 -
 17.2548 -#~ msgid "Filesystem"
 17.2549 -#~ msgstr "Sistema de arquios"
 17.2550 -
 17.2551 -#~ msgid "Uptime:"
 17.2552 -#~ msgstr "Uptime:"
    18.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    18.2 +++ b/po/ru.po	Fri May 04 13:00:43 2012 +0300
    18.3 @@ -0,0 +1,1939 @@
    18.4 +# SOME DESCRIPTIVE TITLE.
    18.5 +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
    18.6 +# This file is distributed under the same license as the PACKAGE package.
    18.7 +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
    18.8 +#
    18.9 +msgid ""
   18.10 +msgstr ""
   18.11 +"Project-Id-Version: TazPanel 1.4.3\n"
   18.12 +"Report-Msgid-Bugs-To: \n"
   18.13 +"POT-Creation-Date: 2012-05-04 02:44+0000\n"
   18.14 +"PO-Revision-Date: 2012-05-04 12:45+0300\n"
   18.15 +"Last-Translator: Aleksej Bobylev <al.bobylev@gmail.com>\n"
   18.16 +"Language-Team: \n"
   18.17 +"Language: \n"
   18.18 +"MIME-Version: 1.0\n"
   18.19 +"Content-Type: text/plain; charset=utf-8\n"
   18.20 +"Content-Transfer-Encoding: 8bit\n"
   18.21 +"X-Poedit-Language: Russian\n"
   18.22 +"X-Poedit-SourceCharset: utf-8\n"
   18.23 +"X-Poedit-Basepath: ../\n"
   18.24 +"X-Poedit-SearchPath-0: .\n"
   18.25 +
   18.26 +#: tazpanel:35
   18.27 +#, sh-format
   18.28 +msgid "Starting TazPanel web server on port $HTTPD_PORT..."
   18.29 +msgstr "Веб-сервер TazPanel запускается на порту $HTTPD_PORT..."
   18.30 +
   18.31 +#: tazpanel:37
   18.32 +msgid "TazPanel Authentication - Default: root:root"
   18.33 +msgstr "Аутентификация TazPanel (по умолчанию root:root)"
   18.34 +
   18.35 +#: tazpanel:42
   18.36 +msgid "Stopping TazPanel web server..."
   18.37 +msgstr "Остановка веб-сервера TazPanel…"
   18.38 +
   18.39 +#: tazpanel:46
   18.40 +msgid "Changing password for TazPanel"
   18.41 +msgstr "Изменение пароля TazPanel"
   18.42 +
   18.43 +#: tazpanel:47
   18.44 +msgid "New password: "
   18.45 +msgstr "Новый пароль: "
   18.46 +
   18.47 +#: tazpanel:49
   18.48 +msgid "Password changed successfully"
   18.49 +msgstr "Пароль успешно изменен"
   18.50 +
   18.51 +#: tazpanel:54
   18.52 +#, sh-format
   18.53 +msgid "Usage: $program_name [start|stop|passwd]"
   18.54 +msgstr "Использование: $program_name [start|stop|passwd]"
   18.55 +
   18.56 +#: index.cgi:38
   18.57 +#: index.cgi:83
   18.58 +msgid "Differences"
   18.59 +msgstr "Различия"
   18.60 +
   18.61 +#: index.cgi:72
   18.62 +msgid "TazPanel - File"
   18.63 +msgstr "Файл | TazPanel"
   18.64 +
   18.65 +#: index.cgi:81
   18.66 +msgid "Save"
   18.67 +msgstr "Сохранить"
   18.68 +
   18.69 +#: index.cgi:103
   18.70 +#: settings.cgi:261
   18.71 +msgid "Edit"
   18.72 +msgstr "Правка"
   18.73 +
   18.74 +#: index.cgi:126
   18.75 +msgid "TazPanel - Terminal"
   18.76 +msgstr "Терминал | TazPanel"
   18.77 +
   18.78 +#: index.cgi:139
   18.79 +msgid "Small terminal emulator, commands options are supported."
   18.80 +msgstr "Маленький эмулятор терминала, поддерживаются параметры команд."
   18.81 +
   18.82 +#: index.cgi:141
   18.83 +#: index.cgi:158
   18.84 +#, sh-format
   18.85 +msgid "Commands: $commands"
   18.86 +msgstr "Команды: $commands"
   18.87 +
   18.88 +#: index.cgi:146
   18.89 +#, sh-format
   18.90 +msgid "Downloading to: $dl"
   18.91 +msgstr "Загрузка в: $dl"
   18.92 +
   18.93 +#: index.cgi:153
   18.94 +#, sh-format
   18.95 +msgid "$cmd needs an argument"
   18.96 +msgstr "Команда $cmd требует аргумент"
   18.97 +
   18.98 +#: index.cgi:157
   18.99 +#, sh-format
  18.100 +msgid "Unknown command: $cmd"
  18.101 +msgstr "Неизвестная команда: $cmd"
  18.102 +
  18.103 +#: index.cgi:162
  18.104 +msgid "TazPanel - Process activity"
  18.105 +msgstr "Активность процессов | TazPanel"
  18.106 +
  18.107 +#: index.cgi:164
  18.108 +msgid "Refresh:"
  18.109 +msgstr "Обновить:"
  18.110 +
  18.111 +#: index.cgi:169
  18.112 +msgid "1s"
  18.113 +msgstr "1 с"
  18.114 +
  18.115 +#: index.cgi:170
  18.116 +msgid "5s"
  18.117 +msgstr "5 с"
  18.118 +
  18.119 +#: index.cgi:171
  18.120 +msgid "10s"
  18.121 +msgstr "10 с"
  18.122 +
  18.123 +#: index.cgi:172
  18.124 +#: live.cgi:152
  18.125 +msgid "none"
  18.126 +msgstr "нет"
  18.127 +
  18.128 +#: index.cgi:188
  18.129 +msgid "TazPanel - Debug"
  18.130 +msgstr "Отладка | TazPanel"
  18.131 +
  18.132 +#: index.cgi:191
  18.133 +msgid "HTTP Environment"
  18.134 +msgstr "Переменные окружения HTTP"
  18.135 +
  18.136 +#: index.cgi:198
  18.137 +msgid "TazPanel - System report"
  18.138 +msgstr "Системный отчет | TazPanel"
  18.139 +
  18.140 +#: index.cgi:203
  18.141 +#, sh-format
  18.142 +msgid "Reporting to: $output"
  18.143 +msgstr "Файл отчета: $output"
  18.144 +
  18.145 +#: index.cgi:206
  18.146 +msgid "Creating report header..."
  18.147 +msgstr "Создание заголовка отчета…"
  18.148 +
  18.149 +#: index.cgi:213
  18.150 +#: index.cgi:230
  18.151 +msgid "SliTaz system report"
  18.152 +msgstr "Системный отчет SliTaz"
  18.153 +
  18.154 +#: index.cgi:227
  18.155 +msgid "Creating system summary..."
  18.156 +msgstr "Получение сводки о системе…"
  18.157 +
  18.158 +#: index.cgi:231
  18.159 +msgid "Date:"
  18.160 +msgstr "Дата:"
  18.161 +
  18.162 +#: index.cgi:242
  18.163 +msgid "Getting hardware info..."
  18.164 +msgstr "Получение информации об оборудовании…"
  18.165 +
  18.166 +#: index.cgi:260
  18.167 +msgid "Getting networking info..."
  18.168 +msgstr "Получение информации о сетях…"
  18.169 +
  18.170 +#: index.cgi:274
  18.171 +msgid "Getting filesystems info..."
  18.172 +msgstr "Получение информации о файловых системах…"
  18.173 +
  18.174 +#: index.cgi:294
  18.175 +msgid "Getting boot logs..."
  18.176 +msgstr "Получение журналов загрузки…"
  18.177 +
  18.178 +#: index.cgi:297
  18.179 +#: boot.cgi:29
  18.180 +#: boot.cgi:34
  18.181 +msgid "Kernel messages"
  18.182 +msgstr "Сообщения ядра"
  18.183 +
  18.184 +#: index.cgi:300
  18.185 +#: boot.cgi:30
  18.186 +#: boot.cgi:38
  18.187 +msgid "Boot scripts"
  18.188 +msgstr "Загрузочные скрипты"
  18.189 +
  18.190 +#: index.cgi:305
  18.191 +msgid "Creating report footer..."
  18.192 +msgstr "Завершение создание отчета…"
  18.193 +
  18.194 +#: index.cgi:317
  18.195 +msgid "View report"
  18.196 +msgstr "Просмотреть отчет"
  18.197 +
  18.198 +#: index.cgi:318
  18.199 +msgid "This report can be attached with a bug report on:"
  18.200 +msgstr "Этот отчет можно прикрепить к баг-репорту здесь:"
  18.201 +
  18.202 +#: index.cgi:332
  18.203 +#, sh-format
  18.204 +msgid "Host: $hostname"
  18.205 +msgstr "Хост: $hostname"
  18.206 +
  18.207 +#: index.cgi:333
  18.208 +msgid "SliTaz administration and configuration Panel"
  18.209 +msgstr "Панель администрирования и настройки SliTaz"
  18.210 +
  18.211 +#: index.cgi:337
  18.212 +#: styles/default/header.sh:27
  18.213 +msgid "Terminal"
  18.214 +msgstr "Терминал"
  18.215 +
  18.216 +#: index.cgi:339
  18.217 +msgid "Process activity"
  18.218 +msgstr "Активность процессов"
  18.219 +
  18.220 +#: index.cgi:341
  18.221 +msgid "Create a report"
  18.222 +msgstr "Создать отчет"
  18.223 +
  18.224 +#: index.cgi:344
  18.225 +#: pkgs.cgi:948
  18.226 +msgid "Summary"
  18.227 +msgstr "Сводка"
  18.228 +
  18.229 +#: index.cgi:347
  18.230 +msgid "Uptime:"
  18.231 +msgstr "Время работы:"
  18.232 +
  18.233 +#: index.cgi:350
  18.234 +msgid "Memory in Mb:"
  18.235 +msgstr "Память в МБ:"
  18.236 +
  18.237 +#: index.cgi:355
  18.238 +#, sh-format
  18.239 +msgid "Total: $memtotal, Used: $memused, Free: $memfree"
  18.240 +msgstr "Всего: $memtotal, занято: $memused, свободно: $memfree"
  18.241 +
  18.242 +#: index.cgi:360
  18.243 +msgid "Linux kernel:"
  18.244 +msgstr "Ядро Linux:"
  18.245 +
  18.246 +#: index.cgi:367
  18.247 +msgid "Network status"
  18.248 +msgstr "Состояние сети"
  18.249 +
  18.250 +#: index.cgi:370
  18.251 +#: hardware.cgi:202
  18.252 +msgid "Filesystem usage statistics"
  18.253 +msgstr "Статистика использования файловых систем"
  18.254 +
  18.255 +#: index.cgi:403
  18.256 +msgid "Panel Activity"
  18.257 +msgstr "Действия панели"
  18.258 +
  18.259 +#: pkgs.cgi:17
  18.260 +msgid "TazPanel - Packages"
  18.261 +msgstr "Пакеты | TazPanel"
  18.262 +
  18.263 +#: pkgs.cgi:51
  18.264 +msgid "Last recharge:"
  18.265 +msgstr "Последнее обновление:"
  18.266 +
  18.267 +#: pkgs.cgi:58
  18.268 +msgid "(Older than 10 days)"
  18.269 +msgstr "(старше, чем 10 дней)"
  18.270 +
  18.271 +#: pkgs.cgi:60
  18.272 +msgid "(Not older than 10 days)"
  18.273 +msgstr "(не старше, чем 10 дней)"
  18.274 +
  18.275 +#: pkgs.cgi:64
  18.276 +msgid "Installed packages:"
  18.277 +msgstr "Установленные пакеты:"
  18.278 +
  18.279 +#: pkgs.cgi:66
  18.280 +msgid "Mirrored packages:"
  18.281 +msgstr "Пакетов на зеркале:"
  18.282 +
  18.283 +#: pkgs.cgi:68
  18.284 +msgid "Upgradeable packages:"
  18.285 +msgstr "Обновляемых пакетов:"
  18.286 +
  18.287 +#: pkgs.cgi:70
  18.288 +#: pkgs.cgi:707
  18.289 +msgid "Installed files:"
  18.290 +msgstr "Установленные файлы:"
  18.291 +
  18.292 +#: pkgs.cgi:72
  18.293 +msgid "Blocked packages:"
  18.294 +msgstr "Заблокированных пакетов:"
  18.295 +
  18.296 +#: pkgs.cgi:86
  18.297 +msgid "Delete"
  18.298 +msgstr "Удалить"
  18.299 +
  18.300 +#: pkgs.cgi:89
  18.301 +msgid "Use as default"
  18.302 +msgstr "Использовать по умолчанию"
  18.303 +
  18.304 +#: pkgs.cgi:120
  18.305 +msgid "Search"
  18.306 +msgstr "Поиск"
  18.307 +
  18.308 +#: pkgs.cgi:122
  18.309 +msgid "Files"
  18.310 +msgstr "Файлы"
  18.311 +
  18.312 +#: pkgs.cgi:134
  18.313 +#: pkgs.cgi:867
  18.314 +#: network.cgi:23
  18.315 +#: network.cgi:156
  18.316 +#: network.cgi:246
  18.317 +#: boot.cgi:82
  18.318 +#: settings.cgi:104
  18.319 +#: lib/libtazpanel:98
  18.320 +msgid "Name"
  18.321 +msgstr "Название"
  18.322 +
  18.323 +#: pkgs.cgi:135
  18.324 +msgid "Version"
  18.325 +msgstr "Версия"
  18.326 +
  18.327 +#: pkgs.cgi:136
  18.328 +#: boot.cgi:83
  18.329 +msgid "Description"
  18.330 +msgstr "Описание"
  18.331 +
  18.332 +#: pkgs.cgi:137
  18.333 +msgid "Web"
  18.334 +msgstr "Сайт"
  18.335 +
  18.336 +#: pkgs.cgi:147
  18.337 +msgid "Categories"
  18.338 +msgstr "Категории"
  18.339 +
  18.340 +#: pkgs.cgi:148
  18.341 +msgid "Base-system"
  18.342 +msgstr "Базовые"
  18.343 +
  18.344 +#: pkgs.cgi:149
  18.345 +msgid "X window"
  18.346 +msgstr "Окна X"
  18.347 +
  18.348 +#: pkgs.cgi:150
  18.349 +msgid "Utilities"
  18.350 +msgstr "Утилиты"
  18.351 +
  18.352 +#: pkgs.cgi:151
  18.353 +#: styles/default/header.sh:46
  18.354 +msgid "Network"
  18.355 +msgstr "Сети"
  18.356 +
  18.357 +#: pkgs.cgi:152
  18.358 +msgid "Games"
  18.359 +msgstr "Игры"
  18.360 +
  18.361 +#: pkgs.cgi:153
  18.362 +msgid "Graphics"
  18.363 +msgstr "Графика"
  18.364 +
  18.365 +#: pkgs.cgi:154
  18.366 +msgid "Office"
  18.367 +msgstr "Офис"
  18.368 +
  18.369 +#: pkgs.cgi:155
  18.370 +msgid "Multimedia"
  18.371 +msgstr "Мультимедиа"
  18.372 +
  18.373 +#: pkgs.cgi:156
  18.374 +msgid "Development"
  18.375 +msgstr "Разработка"
  18.376 +
  18.377 +#: pkgs.cgi:157
  18.378 +msgid "System tools"
  18.379 +msgstr "Утилиты"
  18.380 +
  18.381 +#: pkgs.cgi:158
  18.382 +msgid "Security"
  18.383 +msgstr "Безопасность"
  18.384 +
  18.385 +#: pkgs.cgi:159
  18.386 +msgid "Misc"
  18.387 +msgstr "Прочее"
  18.388 +
  18.389 +#: pkgs.cgi:160
  18.390 +msgid "Meta"
  18.391 +msgstr "Мета"
  18.392 +
  18.393 +#: pkgs.cgi:161
  18.394 +msgid "Non free"
  18.395 +msgstr "Несвободные"
  18.396 +
  18.397 +#: pkgs.cgi:162
  18.398 +msgid "All"
  18.399 +msgstr "Все"
  18.400 +
  18.401 +#: pkgs.cgi:168
  18.402 +msgid "Repositories"
  18.403 +msgstr "Репозитории"
  18.404 +
  18.405 +#: pkgs.cgi:169
  18.406 +msgid "Public"
  18.407 +msgstr "Общественный"
  18.408 +
  18.409 +#: pkgs.cgi:177
  18.410 +msgid "Any"
  18.411 +msgstr "Любой"
  18.412 +
  18.413 +#: pkgs.cgi:217
  18.414 +#: pkgs.cgi:339
  18.415 +msgid "Listing packages..."
  18.416 +msgstr "Список пакетов…"
  18.417 +
  18.418 +#: pkgs.cgi:220
  18.419 +#: pkgs.cgi:358
  18.420 +#: pkgs.cgi:412
  18.421 +#: pkgs.cgi:479
  18.422 +#: pkgs.cgi:520
  18.423 +#: pkgs.cgi:580
  18.424 +#: pkgs.cgi:659
  18.425 +#: pkgs.cgi:952
  18.426 +#: styles/default/header.sh:37
  18.427 +msgid "My packages"
  18.428 +msgstr "Мои пакеты"
  18.429 +
  18.430 +#: pkgs.cgi:225
  18.431 +#: pkgs.cgi:284
  18.432 +#: pkgs.cgi:347
  18.433 +#: pkgs.cgi:401
  18.434 +#: pkgs.cgi:511
  18.435 +#: settings.cgi:92
  18.436 +msgid "Selection:"
  18.437 +msgstr "Отмеченное:"
  18.438 +
  18.439 +#: pkgs.cgi:226
  18.440 +#: pkgs.cgi:607
  18.441 +msgid "Remove"
  18.442 +msgstr "Удалить"
  18.443 +
  18.444 +#: pkgs.cgi:230
  18.445 +#: pkgs.cgi:289
  18.446 +#: pkgs.cgi:354
  18.447 +#: pkgs.cgi:408
  18.448 +#: pkgs.cgi:518
  18.449 +#: pkgs.cgi:962
  18.450 +#: styles/default/header.sh:39
  18.451 +msgid "Recharge list"
  18.452 +msgstr "Обновить список"
  18.453 +
  18.454 +#: pkgs.cgi:232
  18.455 +#: pkgs.cgi:291
  18.456 +#: pkgs.cgi:356
  18.457 +#: pkgs.cgi:410
  18.458 +#: pkgs.cgi:477
  18.459 +#: pkgs.cgi:964
  18.460 +msgid "Check upgrades"
  18.461 +msgstr "Проверить обновления"
  18.462 +
  18.463 +#: pkgs.cgi:275
  18.464 +msgid "Listing linkable packages..."
  18.465 +msgstr "Список ссылающихся пакетов…"
  18.466 +
  18.467 +#: pkgs.cgi:278
  18.468 +#: pkgs.cgi:958
  18.469 +msgid "Linkable packages"
  18.470 +msgstr "Присоединенные пакеты"
  18.471 +
  18.472 +#: pkgs.cgi:285
  18.473 +msgid "Link"
  18.474 +msgstr "Ссылка"
  18.475 +
  18.476 +#: pkgs.cgi:342
  18.477 +#, sh-format
  18.478 +msgid "Category: $category"
  18.479 +msgstr "Категория: $category"
  18.480 +
  18.481 +#: pkgs.cgi:366
  18.482 +#: pkgs.cgi:838
  18.483 +#, sh-format
  18.484 +msgid "Repository: $Repo_Name"
  18.485 +msgstr "Репозитарий: $Repo_Name"
  18.486 +
  18.487 +#: pkgs.cgi:394
  18.488 +msgid "Searching packages..."
  18.489 +msgstr "Поиск пакетов…"
  18.490 +
  18.491 +#: pkgs.cgi:397
  18.492 +msgid "Search packages"
  18.493 +msgstr "Поиск пакетов"
  18.494 +
  18.495 +#: pkgs.cgi:404
  18.496 +#: pkgs.cgi:514
  18.497 +msgid "Toogle all"
  18.498 +msgstr "Переключить все"
  18.499 +
  18.500 +#: pkgs.cgi:423
  18.501 +msgid "Package"
  18.502 +msgstr "Пакет"
  18.503 +
  18.504 +#: pkgs.cgi:424
  18.505 +msgid "File"
  18.506 +msgstr "Файл"
  18.507 +
  18.508 +#: pkgs.cgi:465
  18.509 +msgid "Recharging lists..."
  18.510 +msgstr "Обновление списка…"
  18.511 +
  18.512 +#: pkgs.cgi:468
  18.513 +msgid "Recharge"
  18.514 +msgstr "Обновить"
  18.515 +
  18.516 +#: pkgs.cgi:473
  18.517 +msgid "Recharge checks for new or updated packages"
  18.518 +msgstr "Обновление ищет новые и обновленные пакеты"
  18.519 +
  18.520 +#: pkgs.cgi:485
  18.521 +msgid "Recharging packages list"
  18.522 +msgstr "Обновить список пакетов"
  18.523 +
  18.524 +#: pkgs.cgi:490
  18.525 +msgid "Packages lists are up-to-date. You should check for upgrades now."
  18.526 +msgstr "Список пакетов обновлен до актуального состояния. Теперь вы можете проверить обновления."
  18.527 +
  18.528 +#: pkgs.cgi:503
  18.529 +msgid "Checking for upgrades..."
  18.530 +msgstr "Проверка обновлений…"
  18.531 +
  18.532 +#: pkgs.cgi:506
  18.533 +msgid "Up packages"
  18.534 +msgstr "Обновить пакеты"
  18.535 +
  18.536 +#: pkgs.cgi:575
  18.537 +msgid "Performing tasks on packages"
  18.538 +msgstr "Выполнение задач над пакетами"
  18.539 +
  18.540 +#: pkgs.cgi:585
  18.541 +#, sh-format
  18.542 +msgid "Executing $cmd for: $pkgs"
  18.543 +msgstr "Выполняется $cmd для: $pkgs"
  18.544 +
  18.545 +#: pkgs.cgi:610
  18.546 +msgid "Getting package info..."
  18.547 +msgstr "Получение информации о пакете…"
  18.548 +
  18.549 +#: pkgs.cgi:622
  18.550 +#: installer.cgi:155
  18.551 +#: styles/default/header.sh:88
  18.552 +msgid "Install"
  18.553 +msgstr "Установить"
  18.554 +
  18.555 +#: pkgs.cgi:626
  18.556 +#, sh-format
  18.557 +msgid "Package $PACKAGE"
  18.558 +msgstr "Пакет $PACKAGE"
  18.559 +
  18.560 +#: pkgs.cgi:634
  18.561 +msgid "Install (Non Free)"
  18.562 +msgstr "Установить (несвободные)"
  18.563 +
  18.564 +#: pkgs.cgi:642
  18.565 +msgid "Unblock"
  18.566 +msgstr "Разблокировать"
  18.567 +
  18.568 +#: pkgs.cgi:646
  18.569 +msgid "Block"
  18.570 +msgstr "Заблокировать"
  18.571 +
  18.572 +#: pkgs.cgi:650
  18.573 +msgid "Repack"
  18.574 +msgstr "Перепаковать"
  18.575 +
  18.576 +#: pkgs.cgi:665
  18.577 +msgid "Name:"
  18.578 +msgstr "Название:"
  18.579 +
  18.580 +#: pkgs.cgi:666
  18.581 +msgid "Version:"
  18.582 +msgstr "Версия:"
  18.583 +
  18.584 +#: pkgs.cgi:667
  18.585 +msgid "Description:"
  18.586 +msgstr "Описание:"
  18.587 +
  18.588 +#: pkgs.cgi:668
  18.589 +msgid "Category:"
  18.590 +msgstr "Категория:"
  18.591 +
  18.592 +#: pkgs.cgi:672
  18.593 +msgid "Maintainer:"
  18.594 +msgstr "Мэйнтейнер:"
  18.595 +
  18.596 +#: pkgs.cgi:673
  18.597 +#: pkgs.cgi:702
  18.598 +msgid "Website:"
  18.599 +msgstr "Сайт:"
  18.600 +
  18.601 +#: pkgs.cgi:674
  18.602 +#: pkgs.cgi:703
  18.603 +msgid "Sizes:"
  18.604 +msgstr "Размер:"
  18.605 +
  18.606 +#: pkgs.cgi:677
  18.607 +msgid "Depends:"
  18.608 +msgstr "Зависимости:"
  18.609 +
  18.610 +#: pkgs.cgi:684
  18.611 +msgid "Suggested:"
  18.612 +msgstr "Предлагает:"
  18.613 +
  18.614 +#: pkgs.cgi:690
  18.615 +msgid "Tags:"
  18.616 +msgstr "Теги:"
  18.617 +
  18.618 +#: pkgs.cgi:696
  18.619 +#, sh-format
  18.620 +msgid "Installed files: $I_FILES"
  18.621 +msgstr "Установленные файлы: $I_FILES"
  18.622 +
  18.623 +#: pkgs.cgi:755
  18.624 +#: pkgs.cgi:884
  18.625 +msgid "Set link"
  18.626 +msgstr "Установить ссылку"
  18.627 +
  18.628 +#: pkgs.cgi:758
  18.629 +#: pkgs.cgi:885
  18.630 +msgid "Remove link"
  18.631 +msgstr "Удалить ссылку"
  18.632 +
  18.633 +#: pkgs.cgi:764
  18.634 +#: pkgs.cgi:966
  18.635 +#: styles/default/header.sh:43
  18.636 +msgid "Administration"
  18.637 +msgstr "Администрирование"
  18.638 +
  18.639 +#: pkgs.cgi:766
  18.640 +msgid "Tazpkg administration and settings"
  18.641 +msgstr "Администрирование и настройка TazPKG"
  18.642 +
  18.643 +#: pkgs.cgi:770
  18.644 +msgid "Save configuration"
  18.645 +msgstr "Сохранить настройки"
  18.646 +
  18.647 +#: pkgs.cgi:772
  18.648 +msgid "List configuration files"
  18.649 +msgstr "Список файлов настроек"
  18.650 +
  18.651 +#: pkgs.cgi:774
  18.652 +msgid "Quick check"
  18.653 +msgstr "Быстрая проверка"
  18.654 +
  18.655 +#: pkgs.cgi:776
  18.656 +msgid "Full check"
  18.657 +msgstr "Полная проверка"
  18.658 +
  18.659 +#: pkgs.cgi:781
  18.660 +msgid "Creating the package..."
  18.661 +msgstr "Создание пакета…"
  18.662 +
  18.663 +#: pkgs.cgi:786
  18.664 +msgid "Path:"
  18.665 +msgstr "Путь:"
  18.666 +
  18.667 +#: pkgs.cgi:789
  18.668 +#: boot.cgi:256
  18.669 +msgid "Configuration files"
  18.670 +msgstr "Файлы настроек"
  18.671 +
  18.672 +#: pkgs.cgi:802
  18.673 +msgid "Checking packages consistency..."
  18.674 +msgstr "Проверка целостности пакетов…"
  18.675 +
  18.676 +#: pkgs.cgi:808
  18.677 +msgid "Full packages check..."
  18.678 +msgstr "Полная проверка пакетов…"
  18.679 +
  18.680 +#: pkgs.cgi:815
  18.681 +msgid "Packages cache"
  18.682 +msgstr "Кеш пакетов"
  18.683 +
  18.684 +#: pkgs.cgi:820
  18.685 +#, sh-format
  18.686 +msgid "Packages in the cache: $cache_files ($cache_size)"
  18.687 +msgstr "Пакетов в кеше: $cache_files ($cache_size)"
  18.688 +
  18.689 +#: pkgs.cgi:827
  18.690 +msgid "Default mirror"
  18.691 +msgstr "Зеркало по умолчанию"
  18.692 +
  18.693 +#: pkgs.cgi:831
  18.694 +msgid "Current mirror list"
  18.695 +msgstr "Список текущих зеркал"
  18.696 +
  18.697 +#: pkgs.cgi:855
  18.698 +msgid "Private repositories"
  18.699 +msgstr "Частные репозитории"
  18.700 +
  18.701 +#: pkgs.cgi:868
  18.702 +msgid "mirror"
  18.703 +msgstr "зеркало"
  18.704 +
  18.705 +#: pkgs.cgi:874
  18.706 +msgid "Link to another SliTaz installation"
  18.707 +msgstr "Ссылка на другой установленный SliTaz"
  18.708 +
  18.709 +#: pkgs.cgi:876
  18.710 +msgid "This link points to the root of another SliTaz installation. You will be able to install packages using soft links to it."
  18.711 +msgstr "Эта ссылка указывает на корень файловой системы другого установленного SliTaz. Вы сможете устанавливать пакеты, используя символьные ссылки на них."
  18.712 +
  18.713 +#: pkgs.cgi:892
  18.714 +msgid "SliTaz packages DVD"
  18.715 +msgstr "DVD с пакетами SliTaz"
  18.716 +
  18.717 +#: pkgs.cgi:894
  18.718 +#, sh-format
  18.719 +msgid "A bootable DVD image of all available packages for the $version version is generated every day. It also contains a copy of the website and can be used without an internet connection. This image can be installed on a DVD or an USB key."
  18.720 +msgstr "Образ загрузочного DVD со всеми доступными пакетами для версии $version генерируется каждый день. Он также содержит копию сайта и может быть использован при отсутствии соединения с интернетом. Этот образ можно записать на DVD или установить на USB-флеш."
  18.721 +
  18.722 +#: pkgs.cgi:904
  18.723 +msgid "Download DVD image"
  18.724 +msgstr "Загрузить образ DVD"
  18.725 +
  18.726 +#: pkgs.cgi:906
  18.727 +msgid "Install from DVD/USB key"
  18.728 +msgstr "Установить с DVD или USB-флеш"
  18.729 +
  18.730 +#: pkgs.cgi:909
  18.731 +msgid "Install from ISO image:"
  18.732 +msgstr "Установить из образа ISO:"
  18.733 +
  18.734 +#: pkgs.cgi:972
  18.735 +msgid "Latest log entries"
  18.736 +msgstr "Недавние пункты журнала"
  18.737 +
  18.738 +#: live.cgi:25
  18.739 +msgid "TazPanel - Live"
  18.740 +msgstr "«Живые» системы | TazPanel"
  18.741 +
  18.742 +#: live.cgi:83
  18.743 +msgid "TODO"
  18.744 +msgstr "БУДЕТ СДЕЛАНО"
  18.745 +
  18.746 +#: live.cgi:88
  18.747 +msgid "SliTaz LiveUSB"
  18.748 +msgstr "LiveUSB SliTaz"
  18.749 +
  18.750 +#: live.cgi:89
  18.751 +msgid "Create Live USB SliTaz systems"
  18.752 +msgstr "Создать систему LiveUSB SliTaz"
  18.753 +
  18.754 +#: live.cgi:92
  18.755 +msgid "Generate SliTaz LiveUSB media and boot in RAM! Insert a LiveCD into the cdrom drive, select the correct device and press Generate."
  18.756 +msgstr "Здесь можно создать SliTaz LiveUSB и загрузиться в ОЗУ! Вставьте LiveCD в привод CD-ROM, выберите необходимое устройство и нажмите «Создать»."
  18.757 +
  18.758 +#: live.cgi:97
  18.759 +msgid "USB Media to use:"
  18.760 +msgstr "Использовать носитель USB:"
  18.761 +
  18.762 +#: live.cgi:106
  18.763 +#: installer.cgi:299
  18.764 +#: installer.cgi:343
  18.765 +#: installer.cgi:378
  18.766 +#: installer.cgi:410
  18.767 +msgid "Not found"
  18.768 +msgstr "Не найден"
  18.769 +
  18.770 +#: live.cgi:110
  18.771 +msgid "Generate"
  18.772 +msgstr "Создать"
  18.773 +
  18.774 +#: live.cgi:129
  18.775 +msgid "SliTaz Live Systems"
  18.776 +msgstr "«Живые» системы SliTaz"
  18.777 +
  18.778 +#: live.cgi:130
  18.779 +msgid "Create and manage Live CD or USB SliTaz systems"
  18.780 +msgstr "Создание и управление системами LiveCD (LiveUSB) SliTaz"
  18.781 +
  18.782 +#: live.cgi:135
  18.783 +msgid "Create LiveUSB"
  18.784 +msgstr "Создать LiveUSB"
  18.785 +
  18.786 +#: live.cgi:140
  18.787 +msgid "Write a Live CD"
  18.788 +msgstr "Записать LiveCD"
  18.789 +
  18.790 +#: live.cgi:142
  18.791 +msgid "The command writeiso will generate an ISO image of the current filesystem as is, including all files in the /home directory. It is an easy way to remaster a SliTaz Live system, you just have to: boot, modify, writeiso."
  18.792 +msgstr "Команда writeiso создаст полный ISO-образ текущей системы, включая все файлы в папке /home. Простой путь пересборки «живой» системы SliTaz: загрузиться, модифицировать, writeiso."
  18.793 +
  18.794 +#: live.cgi:148
  18.795 +msgid "Compression type:"
  18.796 +msgstr "Тип сжатия:"
  18.797 +
  18.798 +#: live.cgi:154
  18.799 +msgid "Write ISO"
  18.800 +msgstr "Записать ISO"
  18.801 +
  18.802 +#: live.cgi:158
  18.803 +msgid "Live CD tools"
  18.804 +msgstr "Утилиты LiveCD"
  18.805 +
  18.806 +#: live.cgi:160
  18.807 +#: live.cgi:192
  18.808 +#: styles/default/header.sh:84
  18.809 +msgid "Convert ISO to loram"
  18.810 +msgstr "Преобразовать ISO в LoRAM"
  18.811 +
  18.812 +#: live.cgi:162
  18.813 +msgid "This command will convert an ISO image of a SliTaz Live CD to a new ISO image requiring less RAM to run."
  18.814 +msgstr "Эта команда преобразует образ ISO, содержащий SliTaz LiveCD в новый образ ISO, требующий меньше ОЗУ для запуска."
  18.815 +
  18.816 +#: live.cgi:168
  18.817 +msgid "ISO to convert"
  18.818 +msgstr "Исходный ISO"
  18.819 +
  18.820 +#: live.cgi:173
  18.821 +msgid "The filesystem is always in RAM"
  18.822 +msgstr "Файловая система всегда находится в ОЗУ"
  18.823 +
  18.824 +#: live.cgi:178
  18.825 +msgid "The filesystem may be on a small CDROM"
  18.826 +msgstr "Файловая система может находиться на небольшом CD-ROM"
  18.827 +
  18.828 +#: live.cgi:183
  18.829 +msgid "The filesystem may be on a large CDROM"
  18.830 +msgstr "Файловая система может находиться на большом CD-ROM"
  18.831 +
  18.832 +#: live.cgi:187
  18.833 +#: live.cgi:234
  18.834 +msgid "ISO to create"
  18.835 +msgstr "Создать ISO"
  18.836 +
  18.837 +#: live.cgi:196
  18.838 +#: live.cgi:239
  18.839 +#: styles/default/header.sh:85
  18.840 +msgid "Build a meta ISO"
  18.841 +msgstr "Создать мета ISO"
  18.842 +
  18.843 +#: live.cgi:198
  18.844 +msgid "Combines several ISO flavors like nested Russian dolls. The amount of RAM available at startup will be used to select the utmost one."
  18.845 +msgstr "Комбинирование нескольких редакций ISO по принципу матрёшки. Размер доступного ОЗУ, определенный при запуске системы, влияет на выбор редакции."
  18.846 +
  18.847 +#: live.cgi:210
  18.848 +msgid "ISO number"
  18.849 +msgstr "Количество ISO"
  18.850 +
  18.851 +#: live.cgi:213
  18.852 +#: live.cgi:228
  18.853 +msgid "Minimum RAM"
  18.854 +msgstr "Минимум ОЗУ"
  18.855 +
  18.856 +#: live.cgi:225
  18.857 +msgid "ISO to add"
  18.858 +msgstr "Добавить ISO"
  18.859 +
  18.860 +#: live.cgi:230
  18.861 +msgid "Add to the list"
  18.862 +msgstr "Добавить в список"
  18.863 +
  18.864 +#: network.cgi:13
  18.865 +msgid "TazPanel - Network"
  18.866 +msgstr "Сети | TazPanel"
  18.867 +
  18.868 +#: network.cgi:24
  18.869 +msgid "Quality"
  18.870 +msgstr "Уровень сигнала"
  18.871 +
  18.872 +#: network.cgi:25
  18.873 +msgid "Encryption"
  18.874 +msgstr "Шифрование"
  18.875 +
  18.876 +#: network.cgi:26
  18.877 +#: boot.cgi:84
  18.878 +#: lib/libtazpanel:99
  18.879 +msgid "Status"
  18.880 +msgstr "Состояние"
  18.881 +
  18.882 +#: network.cgi:53
  18.883 +msgid "Connected"
  18.884 +msgstr "Соединено"
  18.885 +
  18.886 +#: network.cgi:96
  18.887 +#, sh-format
  18.888 +msgid "Changed hostname: $get_hostname"
  18.889 +msgstr "Измененное название хоста: $get_hostname"
  18.890 +
  18.891 +#: network.cgi:112
  18.892 +msgid "Scanning open ports..."
  18.893 +msgstr "Сканируются открытые порты…"
  18.894 +
  18.895 +#: network.cgi:115
  18.896 +#, sh-format
  18.897 +msgid "Port scanning for $scan"
  18.898 +msgstr "Сканирование портов адреса $scan"
  18.899 +
  18.900 +#: network.cgi:129
  18.901 +msgid "Setting up IP..."
  18.902 +msgstr "Устанавливается IP…"
  18.903 +
  18.904 +#: network.cgi:145
  18.905 +msgid "Ethernet connection"
  18.906 +msgstr "Соединение Ethernet"
  18.907 +
  18.908 +#: network.cgi:147
  18.909 +msgid "Here you can configure a wired connection using DHCP to automatically get a random IP or configure a static/fixed IP"
  18.910 +msgstr "Здесь вы можете настроить проводное соединение, использующее DHCP для автоматического получения случайного IP, или указать статический (фиксированный) IP"
  18.911 +
  18.912 +#: network.cgi:150
  18.913 +msgid "Configuration"
  18.914 +msgstr "Настройки"
  18.915 +
  18.916 +#: network.cgi:157
  18.917 +#: network.cgi:247
  18.918 +msgid "Value"
  18.919 +msgstr "Значение"
  18.920 +
  18.921 +#: network.cgi:162
  18.922 +#: lib/libtazpanel:97
  18.923 +msgid "Interface"
  18.924 +msgstr "Интерфейс"
  18.925 +
  18.926 +#: network.cgi:166
  18.927 +msgid "IP address"
  18.928 +msgstr "Адрес IP"
  18.929 +
  18.930 +#: network.cgi:170
  18.931 +msgid "Netmask"
  18.932 +msgstr "Маска сети"
  18.933 +
  18.934 +#: network.cgi:174
  18.935 +msgid "Gateway"
  18.936 +msgstr "Шлюз"
  18.937 +
  18.938 +#: network.cgi:178
  18.939 +msgid "DNS server"
  18.940 +msgstr "Сервер DNS"
  18.941 +
  18.942 +#: network.cgi:183
  18.943 +msgid "Activate (static)"
  18.944 +msgstr "Активировать (статически)"
  18.945 +
  18.946 +#: network.cgi:184
  18.947 +msgid "Activate (DHCP)"
  18.948 +msgstr "Активировать (DHCP)"
  18.949 +
  18.950 +#: network.cgi:185
  18.951 +msgid "Disable"
  18.952 +msgstr "Запретить"
  18.953 +
  18.954 +#: network.cgi:188
  18.955 +#: network.cgi:266
  18.956 +msgid "Configuration file"
  18.957 +msgstr "Файл настроек"
  18.958 +
  18.959 +#: network.cgi:190
  18.960 +msgid "These values are the ethernet settings in the main /etc/network.conf configuration file"
  18.961 +msgstr "Эти значения — параметры Ethernet из главного настроечного файла /etc/network.conf"
  18.962 +
  18.963 +#: network.cgi:196
  18.964 +#: network.cgi:274
  18.965 +msgid "Manual Edit"
  18.966 +msgstr "Ручная правка"
  18.967 +
  18.968 +#: network.cgi:202
  18.969 +msgid "Scanning wireless interface..."
  18.970 +msgstr "Сканирование беспроводного интерфейса…"
  18.971 +
  18.972 +#: network.cgi:206
  18.973 +msgid "Wireless connection"
  18.974 +msgstr "Беспроводное соединение"
  18.975 +
  18.976 +#: network.cgi:209
  18.977 +#: network.cgi:293
  18.978 +#: boot.cgi:167
  18.979 +msgid "Start"
  18.980 +msgstr "Запустить"
  18.981 +
  18.982 +#: network.cgi:211
  18.983 +#: network.cgi:295
  18.984 +#: boot.cgi:155
  18.985 +msgid "Stop"
  18.986 +msgstr "Остановить"
  18.987 +
  18.988 +#: network.cgi:213
  18.989 +msgid "Scan"
  18.990 +msgstr "Сканировать"
  18.991 +
  18.992 +#: network.cgi:240
  18.993 +msgid "Connection"
  18.994 +msgstr "Соединение"
  18.995 +
  18.996 +#: network.cgi:251
  18.997 +msgid "Wifi name (ESSID)"
  18.998 +msgstr "Название WiFi (ESSID)"
  18.999 +
 18.1000 +#: network.cgi:255
 18.1001 +msgid "Password (Wifi key)"
 18.1002 +msgstr "Пароль (ключ WiFi)"
 18.1003 +
 18.1004 +#: network.cgi:259
 18.1005 +msgid "Encryption type"
 18.1006 +msgstr "Тип шифрования"
 18.1007 +
 18.1008 +#: network.cgi:263
 18.1009 +msgid "Configure"
 18.1010 +msgstr "Настроить"
 18.1011 +
 18.1012 +#: network.cgi:268
 18.1013 +msgid "These values are the wifi settings in the main /etc/network.conf configuration file"
 18.1014 +msgstr "Эти значения — параметры WiFi из главного настроечного файла /etc/network.conf"
 18.1015 +
 18.1016 +#: network.cgi:276
 18.1017 +msgid "Output of iwconfig"
 18.1018 +msgstr "Вывод команды iwconfig"
 18.1019 +
 18.1020 +#: network.cgi:286
 18.1021 +msgid "Networking"
 18.1022 +msgstr "Сети"
 18.1023 +
 18.1024 +#: network.cgi:288
 18.1025 +msgid "Manage network connections and services"
 18.1026 +msgstr "Управление сетевыми соединениями и услугами"
 18.1027 +
 18.1028 +#: network.cgi:297
 18.1029 +msgid "Restart"
 18.1030 +msgstr "Перезапуск"
 18.1031 +
 18.1032 +#: network.cgi:300
 18.1033 +msgid "Configuration:"
 18.1034 +msgstr "Настройки:"
 18.1035 +
 18.1036 +#: network.cgi:309
 18.1037 +msgid "Hosts"
 18.1038 +msgstr "Хосты"
 18.1039 +
 18.1040 +#: network.cgi:314
 18.1041 +msgid "Edit hosts"
 18.1042 +msgstr "Править хосты"
 18.1043 +
 18.1044 +#: network.cgi:316
 18.1045 +#: installer.cgi:433
 18.1046 +msgid "Hostname"
 18.1047 +msgstr "Имя хоста"
 18.1048 +
 18.1049 +#: network.cgi:320
 18.1050 +msgid "Change hostname"
 18.1051 +msgstr "Изменить имя хоста"
 18.1052 +
 18.1053 +#: network.cgi:324
 18.1054 +msgid "Output of ifconfig"
 18.1055 +msgstr "Вывод команды ifconfig"
 18.1056 +
 18.1057 +#: network.cgi:328
 18.1058 +msgid "Routing table"
 18.1059 +msgstr "Таблица маршрутизации"
 18.1060 +
 18.1061 +#: network.cgi:332
 18.1062 +msgid "Domain name resolution"
 18.1063 +msgstr "Разрешение имени домена"
 18.1064 +
 18.1065 +#: network.cgi:336
 18.1066 +msgid "ARP table"
 18.1067 +msgstr "Таблица ARP"
 18.1068 +
 18.1069 +#: network.cgi:340
 18.1070 +msgid "IP Connections"
 18.1071 +msgstr "Соединения IP"
 18.1072 +
 18.1073 +#: boot.cgi:14
 18.1074 +msgid "TazPanel - Boot"
 18.1075 +msgstr "Загрузка | TazPanel"
 18.1076 +
 18.1077 +#: boot.cgi:25
 18.1078 +msgid "Boot log files"
 18.1079 +msgstr "Файлы журнала загрузки"
 18.1080 +
 18.1081 +#: boot.cgi:31
 18.1082 +#: boot.cgi:42
 18.1083 +msgid "X server"
 18.1084 +msgstr "X-сервер"
 18.1085 +
 18.1086 +#: boot.cgi:46
 18.1087 +msgid "Show more..."
 18.1088 +msgstr "Смотреть еще…"
 18.1089 +
 18.1090 +#: boot.cgi:61
 18.1091 +#: boot.cgi:252
 18.1092 +#: styles/default/header.sh:67
 18.1093 +msgid "Manage daemons"
 18.1094 +msgstr "Управление демонами"
 18.1095 +
 18.1096 +#: boot.cgi:62
 18.1097 +msgid "Check, start and stop daemons on SliTaz"
 18.1098 +msgstr "Проверка, запуск и остановка демонов в SliTaz"
 18.1099 +
 18.1100 +#: boot.cgi:85
 18.1101 +msgid "Action"
 18.1102 +msgstr "Действие"
 18.1103 +
 18.1104 +#: boot.cgi:86
 18.1105 +msgid "PID"
 18.1106 +msgstr "PID"
 18.1107 +
 18.1108 +#: boot.cgi:108
 18.1109 +msgid "SliTaz Firewall with iptable rules"
 18.1110 +msgstr "Файрвол SliTaz с правилами iptable"
 18.1111 +
 18.1112 +#: boot.cgi:110
 18.1113 +msgid "Small and fast web server with CGI support"
 18.1114 +msgstr "Маленький и быстрый веб-сервер с поддержкой CGI"
 18.1115 +
 18.1116 +#: boot.cgi:112
 18.1117 +msgid "Network time protocol daemon"
 18.1118 +msgstr "Демон протокола сетевого времени"
 18.1119 +
 18.1120 +#: boot.cgi:114
 18.1121 +msgid "Anonymous FTP server"
 18.1122 +msgstr "Анонимный сервер FTP"
 18.1123 +
 18.1124 +#: boot.cgi:116
 18.1125 +msgid "Busybox DHCP server"
 18.1126 +msgstr "Сервер DHCP из Busybox"
 18.1127 +
 18.1128 +#: boot.cgi:118
 18.1129 +msgid "Linux Kernel log daemon"
 18.1130 +msgstr "Демон журнала ядра Linux"
 18.1131 +
 18.1132 +#: boot.cgi:120
 18.1133 +msgid "Execute scheduled commands"
 18.1134 +msgstr "Выполнить запланированные команды"
 18.1135 +
 18.1136 +#: boot.cgi:122
 18.1137 +msgid "Small static DNS server daemon"
 18.1138 +msgstr "Демон маленького статического сервера DNS"
 18.1139 +
 18.1140 +#: boot.cgi:124
 18.1141 +msgid "Transfer a file on tftp request"
 18.1142 +msgstr "Передать файлы по запросу TFTP"
 18.1143 +
 18.1144 +#: boot.cgi:126
 18.1145 +msgid "Listen for network connections and launch programs"
 18.1146 +msgstr "Слушать сетевые соединения и запускать программы"
 18.1147 +
 18.1148 +#: boot.cgi:128
 18.1149 +msgid "Manage a ZeroConf IPv4 link-local address"
 18.1150 +msgstr "Управлять присоединенным-локальным адресом ZeroConf IPv4"
 18.1151 +
 18.1152 +#: boot.cgi:153
 18.1153 +msgid "Started"
 18.1154 +msgstr "Запущен"
 18.1155 +
 18.1156 +#: boot.cgi:165
 18.1157 +msgid "Stopped"
 18.1158 +msgstr "Остановлен"
 18.1159 +
 18.1160 +#: boot.cgi:193
 18.1161 +msgid "GRUB Boot loader"
 18.1162 +msgstr "Загрузчик GRUB"
 18.1163 +
 18.1164 +#: boot.cgi:195
 18.1165 +msgid "The first application started when the computer powers on"
 18.1166 +msgstr "Первое приложение, запускаемое при включении питания"
 18.1167 +
 18.1168 +#: boot.cgi:201
 18.1169 +msgid "Default entry:"
 18.1170 +msgstr "Пункт по умолчанию:"
 18.1171 +
 18.1172 +#: boot.cgi:203
 18.1173 +msgid "Timeout:"
 18.1174 +msgstr "Таймаут:"
 18.1175 +
 18.1176 +#: boot.cgi:205
 18.1177 +msgid "Splash image:"
 18.1178 +msgstr "Загрузочная картинка:"
 18.1179 +
 18.1180 +#: boot.cgi:208
 18.1181 +#: settings.cgi:289
 18.1182 +msgid "Change"
 18.1183 +msgstr "Изменить"
 18.1184 +
 18.1185 +#: boot.cgi:210
 18.1186 +msgid "View or edit menu.lst"
 18.1187 +msgstr "Просмотр и правка menu.lst"
 18.1188 +
 18.1189 +#: boot.cgi:213
 18.1190 +msgid "Boot entries"
 18.1191 +msgstr "Загрузочные пункты"
 18.1192 +
 18.1193 +#: boot.cgi:219
 18.1194 +msgid "Entry"
 18.1195 +msgstr "Пункт"
 18.1196 +
 18.1197 +#: boot.cgi:235
 18.1198 +msgid "Web boot is available with gPXE"
 18.1199 +msgstr "Доступна веб-загрузка с gPXE"
 18.1200 +
 18.1201 +#: boot.cgi:245
 18.1202 +msgid "Boot &amp; Start services"
 18.1203 +msgstr "Загрузка и запуск служб"
 18.1204 +
 18.1205 +#: boot.cgi:246
 18.1206 +msgid "Everything that happens before user login"
 18.1207 +msgstr "Всё, что происходит перед входом пользователя в систему"
 18.1208 +
 18.1209 +#: boot.cgi:250
 18.1210 +#: styles/default/header.sh:65
 18.1211 +msgid "Boot logs"
 18.1212 +msgstr "Журналы загрузки"
 18.1213 +
 18.1214 +#: boot.cgi:253
 18.1215 +#: styles/default/header.sh:69
 18.1216 +msgid "Boot loader"
 18.1217 +msgstr "Загрузчик"
 18.1218 +
 18.1219 +#: boot.cgi:258
 18.1220 +msgid "Main configuration file:"
 18.1221 +msgstr "Главный файл настроек:"
 18.1222 +
 18.1223 +#: boot.cgi:260
 18.1224 +msgid "Login manager settings:"
 18.1225 +msgstr "Установки менеджера входа в систему:"
 18.1226 +
 18.1227 +#: boot.cgi:264
 18.1228 +msgid "Kernel cmdline"
 18.1229 +msgstr "Командная строка ядра"
 18.1230 +
 18.1231 +#: boot.cgi:268
 18.1232 +msgid "Local startup commands"
 18.1233 +msgstr "Локальные команды запуска"
 18.1234 +
 18.1235 +#: boot.cgi:273
 18.1236 +msgid "Edit script"
 18.1237 +msgstr "Править скрипт"
 18.1238 +
 18.1239 +#: hardware.cgi:13
 18.1240 +msgid "TazPanel - Hardware"
 18.1241 +msgstr "Оборудование | TazPanel"
 18.1242 +
 18.1243 +#: hardware.cgi:29
 18.1244 +msgid "Detect hardware"
 18.1245 +msgstr "Определить оборудование"
 18.1246 +
 18.1247 +#: hardware.cgi:30
 18.1248 +msgid "Detect PCI and USB hardware"
 18.1249 +msgstr "Определить оборудование PCI и USB"
 18.1250 +
 18.1251 +#: hardware.cgi:42
 18.1252 +#: hardware.cgi:117
 18.1253 +#: styles/default/header.sh:75
 18.1254 +msgid "Kernel modules"
 18.1255 +msgstr "Модули ядра"
 18.1256 +
 18.1257 +#: hardware.cgi:46
 18.1258 +msgid "Modules search"
 18.1259 +msgstr "Поиск модулей"
 18.1260 +
 18.1261 +#: hardware.cgi:49
 18.1262 +msgid "Manage, search or get information about the Linux kernel modules"
 18.1263 +msgstr "Управлять, искать и получать информацию о модулях ядра Linux"
 18.1264 +
 18.1265 +#: hardware.cgi:56
 18.1266 +#, sh-format
 18.1267 +msgid "Detailed information for module: $get_modinfo"
 18.1268 +msgstr "Подробности о модуле $get_modinfo"
 18.1269 +
 18.1270 +#: hardware.cgi:70
 18.1271 +#, sh-format
 18.1272 +msgid "Matching result(s) for: $get_search"
 18.1273 +msgstr "Результаты поиска $get_search"
 18.1274 +
 18.1275 +#: hardware.cgi:76
 18.1276 +msgid "Module:"
 18.1277 +msgstr "Модуль:"
 18.1278 +
 18.1279 +#: hardware.cgi:83
 18.1280 +msgid "Module"
 18.1281 +msgstr "Модуль"
 18.1282 +
 18.1283 +#: hardware.cgi:84
 18.1284 +#: lib/libtazpanel:217
 18.1285 +msgid "Size"
 18.1286 +msgstr "Размер"
 18.1287 +
 18.1288 +#: hardware.cgi:85
 18.1289 +#: lib/libtazpanel:219
 18.1290 +msgid "Used"
 18.1291 +msgstr "Используется"
 18.1292 +
 18.1293 +#: hardware.cgi:86
 18.1294 +msgid "by"
 18.1295 +msgstr "кем"
 18.1296 +
 18.1297 +#: hardware.cgi:112
 18.1298 +msgid "Drivers &amp; Devices"
 18.1299 +msgstr "Драйверы и устройства"
 18.1300 +
 18.1301 +#: hardware.cgi:113
 18.1302 +msgid "Manage your computer hardware"
 18.1303 +msgstr "Управление вашим компьютерным оборудованием"
 18.1304 +
 18.1305 +#: hardware.cgi:119
 18.1306 +#: styles/default/header.sh:77
 18.1307 +msgid "Detect PCI/USB"
 18.1308 +msgstr "Определить PCI/USB"
 18.1309 +
 18.1310 +#: hardware.cgi:140
 18.1311 +msgid "Battery"
 18.1312 +msgstr "Батарея"
 18.1313 +
 18.1314 +#: hardware.cgi:142
 18.1315 +msgid "health"
 18.1316 +msgstr "здоровье"
 18.1317 +
 18.1318 +#: hardware.cgi:151
 18.1319 +#, sh-format
 18.1320 +msgid "Discharging $rempct% - $remtimef"
 18.1321 +msgstr "Разряжается: $rempct % — осталось $remtimef"
 18.1322 +
 18.1323 +#: hardware.cgi:155
 18.1324 +#, sh-format
 18.1325 +msgid "Charging $rempct% - $remtimef"
 18.1326 +msgstr "Заряжается: $rempct % — осталось $remtimef"
 18.1327 +
 18.1328 +#: hardware.cgi:157
 18.1329 +msgid "Charged 100%"
 18.1330 +msgstr "Полностью заряжена"
 18.1331 +
 18.1332 +#: hardware.cgi:165
 18.1333 +msgid "Temperature:"
 18.1334 +msgstr "Температура:"
 18.1335 +
 18.1336 +#: hardware.cgi:180
 18.1337 +msgid "Brightness"
 18.1338 +msgstr "Яркость"
 18.1339 +
 18.1340 +#: hardware.cgi:242
 18.1341 +msgid "System memory"
 18.1342 +msgstr "Системная память"
 18.1343 +
 18.1344 +#: settings.cgi:15
 18.1345 +msgid "TazPanel - Settings"
 18.1346 +msgstr "Параметры | TazPanel"
 18.1347 +
 18.1348 +#: settings.cgi:87
 18.1349 +#: settings.cgi:183
 18.1350 +msgid "Manage users"
 18.1351 +msgstr "Управление пользователями"
 18.1352 +
 18.1353 +#: settings.cgi:93
 18.1354 +msgid "Delete user"
 18.1355 +msgstr "Удалить пользователя"
 18.1356 +
 18.1357 +#: settings.cgi:94
 18.1358 +msgid "Lock user"
 18.1359 +msgstr "Заблокировать пользователя"
 18.1360 +
 18.1361 +#: settings.cgi:95
 18.1362 +msgid "Unlock user"
 18.1363 +msgstr "Разблокировать пользователя"
 18.1364 +
 18.1365 +#: settings.cgi:102
 18.1366 +msgid "Login"
 18.1367 +msgstr "Логин"
 18.1368 +
 18.1369 +#: settings.cgi:103
 18.1370 +msgid "User ID"
 18.1371 +msgstr "ID пользователя"
 18.1372 +
 18.1373 +#: settings.cgi:105
 18.1374 +msgid "Home"
 18.1375 +msgstr "Домашняя папка"
 18.1376 +
 18.1377 +#: settings.cgi:106
 18.1378 +msgid "Shell"
 18.1379 +msgstr "Оболочка"
 18.1380 +
 18.1381 +#: settings.cgi:143
 18.1382 +msgid "Password:"
 18.1383 +msgstr "Пароль:"
 18.1384 +
 18.1385 +#: settings.cgi:145
 18.1386 +msgid "Change password"
 18.1387 +msgstr "Изменить пароль"
 18.1388 +
 18.1389 +#: settings.cgi:149
 18.1390 +msgid "Add a new user"
 18.1391 +msgstr "Добавить нового пользователя"
 18.1392 +
 18.1393 +#: settings.cgi:154
 18.1394 +#: installer.cgi:465
 18.1395 +msgid "User login:"
 18.1396 +msgstr "Логин пользователя:"
 18.1397 +
 18.1398 +#: settings.cgi:156
 18.1399 +msgid "User password:"
 18.1400 +msgstr "Пароль пользователя:"
 18.1401 +
 18.1402 +#: settings.cgi:159
 18.1403 +msgid "Create user"
 18.1404 +msgstr "Создать пользователя"
 18.1405 +
 18.1406 +#: settings.cgi:163
 18.1407 +msgid "Current user sessions"
 18.1408 +msgstr "Текущие сессии пользователя"
 18.1409 +
 18.1410 +#: settings.cgi:167
 18.1411 +msgid "Last user sessions"
 18.1412 +msgstr "Последние сессии пользователя"
 18.1413 +
 18.1414 +#: settings.cgi:178
 18.1415 +msgid "System settings"
 18.1416 +msgstr "Параметры системы"
 18.1417 +
 18.1418 +#: settings.cgi:179
 18.1419 +msgid "Manage system time, users or language settings"
 18.1420 +msgstr "Управление системным временем, пользователями и языками"
 18.1421 +
 18.1422 +#: settings.cgi:186
 18.1423 +msgid "System time"
 18.1424 +msgstr "Системное время"
 18.1425 +
 18.1426 +#: settings.cgi:189
 18.1427 +msgid "Time zome:"
 18.1428 +msgstr "Часовой пояс:"
 18.1429 +
 18.1430 +#: settings.cgi:190
 18.1431 +msgid "System time:"
 18.1432 +msgstr "Системное время:"
 18.1433 +
 18.1434 +#: settings.cgi:191
 18.1435 +msgid "Hardware clock:"
 18.1436 +msgstr "Часы оборудования:"
 18.1437 +
 18.1438 +#: settings.cgi:193
 18.1439 +msgid "Sync online"
 18.1440 +msgstr "Синхронизировать онлайн"
 18.1441 +
 18.1442 +#: settings.cgi:194
 18.1443 +msgid "Set hardware clock"
 18.1444 +msgstr "Установить часы оборудования"
 18.1445 +
 18.1446 +#: settings.cgi:200
 18.1447 +msgid "System language"
 18.1448 +msgstr "Язык системы"
 18.1449 +
 18.1450 +#: settings.cgi:211
 18.1451 +#, sh-format
 18.1452 +msgid "You must logout and login again to your current session to use $new_locale locale."
 18.1453 +msgstr "Вам необходимо выйти из системы и войти повторно, чтобы использовать локализацию «$new_locale»."
 18.1454 +
 18.1455 +#: settings.cgi:214
 18.1456 +msgid "Current system locales:"
 18.1457 +msgstr "Текущие системные локализации:"
 18.1458 +
 18.1459 +#: settings.cgi:220
 18.1460 +msgid "Available locales:"
 18.1461 +msgstr "Доступные локализации:"
 18.1462 +
 18.1463 +#: settings.cgi:225
 18.1464 +#: settings.cgi:271
 18.1465 +#: settings.cgi:282
 18.1466 +msgid "Activate"
 18.1467 +msgstr "Активировать"
 18.1468 +
 18.1469 +#: settings.cgi:228
 18.1470 +msgid "Console keymap"
 18.1471 +msgstr "Консольная раскладка"
 18.1472 +
 18.1473 +#: settings.cgi:241
 18.1474 +#, sh-format
 18.1475 +msgid "Current console keymap: $keymap"
 18.1476 +msgstr "Текущая консольная раскладка: $keymap"
 18.1477 +
 18.1478 +#: settings.cgi:258
 18.1479 +msgid "Suggested keymap for Xorg:"
 18.1480 +msgstr "Предлагаемая раскладка клавиатуры для XOrg"
 18.1481 +
 18.1482 +#: settings.cgi:267
 18.1483 +msgid "Available keymaps:"
 18.1484 +msgstr "Доступные раскладки:"
 18.1485 +
 18.1486 +#: settings.cgi:274
 18.1487 +msgid "Panel configuration"
 18.1488 +msgstr "Настройка панели"
 18.1489 +
 18.1490 +#: settings.cgi:278
 18.1491 +msgid "Style:"
 18.1492 +msgstr "Стиль:"
 18.1493 +
 18.1494 +#: settings.cgi:287
 18.1495 +msgid "Panel password:"
 18.1496 +msgstr "Пароль панели:"
 18.1497 +
 18.1498 +#: settings.cgi:293
 18.1499 +msgid "Configuration files:"
 18.1500 +msgstr "Файлы настроек:"
 18.1501 +
 18.1502 +#: settings.cgi:295
 18.1503 +#: styles/default/header.sh:24
 18.1504 +msgid "Panel"
 18.1505 +msgstr "Панель"
 18.1506 +
 18.1507 +#: settings.cgi:297
 18.1508 +msgid "Server"
 18.1509 +msgstr "Сервер"
 18.1510 +
 18.1511 +#: settings.cgi:300
 18.1512 +msgid "TazPanel provides a debuging mode and page:"
 18.1513 +msgstr "TazPanel поддерживает отладочный режим и страницу:"
 18.1514 +
 18.1515 +#: lib/libtazpanel:83
 18.1516 +msgid "connected"
 18.1517 +msgstr "соединен"
 18.1518 +
 18.1519 +#: lib/libtazpanel:100
 18.1520 +msgid "IP Address"
 18.1521 +msgstr "Адрес IP"
 18.1522 +
 18.1523 +#: lib/libtazpanel:101
 18.1524 +msgid "Scan ports"
 18.1525 +msgstr "Сканировать порты"
 18.1526 +
 18.1527 +#: lib/libtazpanel:214
 18.1528 +msgid "Disk"
 18.1529 +msgstr "Диск"
 18.1530 +
 18.1531 +#: lib/libtazpanel:215
 18.1532 +msgid "Label"
 18.1533 +msgstr "Метка"
 18.1534 +
 18.1535 +#: lib/libtazpanel:216
 18.1536 +msgid "Type"
 18.1537 +msgstr "Тип"
 18.1538 +
 18.1539 +#: lib/libtazpanel:218
 18.1540 +msgid "Available"
 18.1541 +msgstr "Доступно"
 18.1542 +
 18.1543 +#: lib/libtazpanel:220
 18.1544 +msgid "Mount point"
 18.1545 +msgstr "Точка монтирования"
 18.1546 +
 18.1547 +#: installer.cgi:24
 18.1548 +msgid "TazPanel - Installer"
 18.1549 +msgstr "Установщик | TazPanel"
 18.1550 +
 18.1551 +#: installer.cgi:116
 18.1552 +#, sh-format
 18.1553 +msgid "Creating setup file $INSTFILE."
 18.1554 +msgstr "Создание установочного файла $INSTFILE."
 18.1555 +
 18.1556 +#: installer.cgi:120
 18.1557 +#: installer.cgi:127
 18.1558 +msgid "Setup File Error"
 18.1559 +msgstr "Ошибка файла установок"
 18.1560 +
 18.1561 +#: installer.cgi:121
 18.1562 +#, sh-format
 18.1563 +msgid "The setup file <strong>$INSTFILE</strong> doesn't exist."
 18.1564 +msgstr "Установочный файл <strong>$INSTFILE</strong> отсутствует."
 18.1565 +
 18.1566 +#: installer.cgi:142
 18.1567 +msgid "SliTaz Installer"
 18.1568 +msgstr "Установщик SliTaz"
 18.1569 +
 18.1570 +#: installer.cgi:144
 18.1571 +msgid "The SliTaz Installer installs or upgrades SliTaz to a hard disk drive from a device like a Live-CD or LiveUSB key, from a SliTaz ISO file, or from the web by downloading an ISO file."
 18.1572 +msgstr "Установщик SliTaz предназначен для установки SliTaz на жесткий диск с LiveCD, LiveUSB, файла ISO или из интернета (путём загрузки файла ISO) и для обновления существующей системы."
 18.1573 +
 18.1574 +#: installer.cgi:157
 18.1575 +msgid "Install SliTaz on a partition of your hard disk drive. If you decide to format your partition, all data will be lost. If you do not format, all data except for any existing /home directory will be removed, the home directory will be kept as is."
 18.1576 +msgstr "Установить SliTaz на раздел жесткого диска. Если вы решите форматировать раздел, то вся информация будет утеряна. Если вы не будете форматировать, то вся информация, кроме существующей папки /home, будет удалена, а домашняя папка останется нетронутой."
 18.1577 +
 18.1578 +#: installer.cgi:162
 18.1579 +msgid "Before installation, you may need to create or resize partitions on your hard disk drive in order to make space for SliTaz GNU/Linux. You can graphically manage your partitions with Gparted"
 18.1580 +msgstr "Возможно, перед установкой вам будет необходимо создать или изменить размер разделов вашего жесткого диска, чтобы выделить место для SliTaz GNU/Linux. При помощи GPartEd вы можете управлять разделами в графической оболочке."
 18.1581 +
 18.1582 +#: installer.cgi:166
 18.1583 +#: installer.cgi:244
 18.1584 +#: styles/default/header.sh:90
 18.1585 +msgid "Install SliTaz"
 18.1586 +msgstr "Установить SliTaz"
 18.1587 +
 18.1588 +#: installer.cgi:175
 18.1589 +msgid "Upgrade"
 18.1590 +msgstr "Обновить"
 18.1591 +
 18.1592 +#: installer.cgi:177
 18.1593 +msgid "Upgrade an already installed SliTaz system on your hard disk drive. Your /home /etc /var/www directories will be kept, all other directories will be removed. Any additional packages added to your old Slitaz system will be updated as long you have an active internet connection."
 18.1594 +msgstr "Обновить систему SliTaz, установленную на жестком диске. Папки «/home», «/etc» и «/var/www» останутся нетронутыми, а все прочие папки будут удалены. При наличии активного соединения с интернетом, все дополнительные пакеты, которые были добавлены в систему SliTaz, будут обновлены."
 18.1595 +
 18.1596 +#: installer.cgi:182
 18.1597 +#: installer.cgi:257
 18.1598 +msgid "Upgrade SliTaz"
 18.1599 +msgstr "Обновить SliTaz"
 18.1600 +
 18.1601 +#: installer.cgi:190
 18.1602 +msgid "Partitioning"
 18.1603 +msgstr "Работа с разделами"
 18.1604 +
 18.1605 +#: installer.cgi:193
 18.1606 +msgid "On most used systems, the hard drive is already dedicated to partitions for Windows<sup>&trade;</sup>, or Linux, or another operating system. You'll need to resize these partitions in order to make space for SliTaz GNU/Linux. SliTaz will co-exist with other operating systems already installed on your hard drive."
 18.1607 +msgstr "На большинстве существующих систем жесткий диск уже разбит на разделы для операционной системы Windows™, Linux или какой-либо другой. Вам будет необходимо изменить размер этих разделов, чтобы выделить место для SliTaz GNU/Linux. SliTaz будет сосуществовать с прочими системами, установленными на вашем жестком диске."
 18.1608 +
 18.1609 +#: installer.cgi:199
 18.1610 +msgid "The amount of space needed depends on how much software you plan to install and how much space you require for users. It's conceivable that you could run a minimal SliTaz system in 300 megs or less, but 2 gigs is indeed more comfy."
 18.1611 +msgstr "Размер необходимого дискового пространства зависит от количества программ, которые вы планируете установить, а также от требуемого свободного пространства для пользователей. Возможно, вы захотите запустить минимальную систему SliTaz, размером не более 300 МБ, но с 2 ГБ на самом деле будет удобнее."
 18.1612 +
 18.1613 +#: installer.cgi:204
 18.1614 +msgid "A separate home partition, and a partition that will be used as Linux swap space may be created if needed. Slitaz detects and uses swap partitions automatically."
 18.1615 +msgstr "При необходимости будет создан отдельный раздел для домашних папок, а также раздел, который будет использоваться для подкачки. SliTaz находит и использует разделы swap автоматически."
 18.1616 +
 18.1617 +#: installer.cgi:212
 18.1618 +msgid "You can graphically manage your partitions with Gparted. GParted is a partition editor for graphically managing your disk partitions. Gparted allows you to create, destroy, resize and copy partitions without data loss."
 18.1619 +msgstr "При помощи редактора разделов GPartEd вы можете управлять вашими разделами в графической оболочке. GPartEd позволяет вам создавать, удалять, изменять размер и копировать разделы без потери данных."
 18.1620 +
 18.1621 +#: installer.cgi:216
 18.1622 +msgid "Gparted supports ext2, ext3, ext4, linux swap, ntfs and fat32 filesystems right out of the box. Support for xjs, jfs, hfs and other filesystems is available as well but you first need to add drivers for these filesystems by installing the related packages xfsprogs, jfsutils, linux-hfs and so on."
 18.1623 +msgstr "GPartEd поддерживает «из коробки» файловые системы ext2, ext3, ext4, linux swap, ntfs и fat32. Также возможна поддержка xjs, jfs, hfs и других файловых систем, но сначала вам нужно установить драйверы для этих файловых систем, установив соответствующие пакеты xfsprogs, jfsutils, linux-hfs и т.п."
 18.1624 +
 18.1625 +#: installer.cgi:223
 18.1626 +msgid "Execute Gparted"
 18.1627 +msgstr "Запустить GPartEd"
 18.1628 +
 18.1629 +#: installer.cgi:225
 18.1630 +msgid "Continue installation"
 18.1631 +msgstr "Продолжить установку"
 18.1632 +
 18.1633 +#: installer.cgi:227
 18.1634 +msgid "Once you've made room for SliTaz on your drive, you should be able to continue installation."
 18.1635 +msgstr "Вы сможете продолжить установку, как только выделите место для SliTaz на вашем приводе."
 18.1636 +
 18.1637 +#: installer.cgi:232
 18.1638 +#: installer.cgi:502
 18.1639 +#: installer.cgi:513
 18.1640 +msgid "Back to Installer Start Page"
 18.1641 +msgstr "Назад к начальной странице установщика"
 18.1642 +
 18.1643 +#: installer.cgi:234
 18.1644 +msgid "Continue Installation"
 18.1645 +msgstr "Продолжить установку"
 18.1646 +
 18.1647 +#: installer.cgi:246
 18.1648 +msgid "You're going to install SliTaz on a partition of your hard disk drive. If you decide to format your HDD, all data will be lost. If you do not format, all data except for any existing /home directory will be removed, the home directory will be kept as is."
 18.1649 +msgstr "Вы собираетесь установить SliTaz на раздел вашего жесткого диска. Если вы решите форматировать ваш жесткий диск, то вся информация на нём будет утеряна. Если вы не будете форматировать, то вся информация, кроме существующей папки /home, будет удалена, а домашняя папка останется нетронутой."
 18.1650 +
 18.1651 +#: installer.cgi:259
 18.1652 +msgid "You're going to upgrade an already installed SliTaz system on your hard disk drive. Your /home /etc /var/www directories will be kept, all other directories will be removed. Any additional packages added to your old Slitaz system will be updated as long you have an active internet connection."
 18.1653 +msgstr "Вы собираетесь обновить систему SliTaz, уже установленную на вашем жестком диске. Папки «/home», «/etc» и «/var/www» останутся нетронутыми, а все прочие папки будут удалены. При наличии соединения с интернетом, все дополнительные пакеты, которые вы установили, будут обновлены."
 18.1654 +
 18.1655 +#: installer.cgi:273
 18.1656 +msgid "Slitaz source media"
 18.1657 +msgstr "Источник SliTaz"
 18.1658 +
 18.1659 +#: installer.cgi:277
 18.1660 +msgid "LiveCD"
 18.1661 +msgstr "LiveCD"
 18.1662 +
 18.1663 +#: installer.cgi:280
 18.1664 +msgid "LiveUSB:"
 18.1665 +msgstr "LiveUSB:"
 18.1666 +
 18.1667 +#: installer.cgi:306
 18.1668 +msgid "ISO file:"
 18.1669 +msgstr "Файл ISO:"
 18.1670 +
 18.1671 +#: installer.cgi:307
 18.1672 +msgid "Full path to the ISO image file"
 18.1673 +msgstr "Полный путь к образу ISO"
 18.1674 +
 18.1675 +#: installer.cgi:310
 18.1676 +msgid "Web:"
 18.1677 +msgstr "Веб:"
 18.1678 +
 18.1679 +#: installer.cgi:311
 18.1680 +msgid "Stable"
 18.1681 +msgstr "стабильная"
 18.1682 +
 18.1683 +#: installer.cgi:312
 18.1684 +msgid "Cooking"
 18.1685 +msgstr "нестабильная"
 18.1686 +
 18.1687 +#: installer.cgi:314
 18.1688 +msgid "URL:"
 18.1689 +msgstr "Адрес:"
 18.1690 +
 18.1691 +#: installer.cgi:315
 18.1692 +msgid "Full url to an ISO image file"
 18.1693 +msgstr "Полный URL-путь к образу ISO"
 18.1694 +
 18.1695 +#: installer.cgi:324
 18.1696 +msgid "Hard Disk Drive"
 18.1697 +msgstr "Жесткий диск"
 18.1698 +
 18.1699 +#: installer.cgi:333
 18.1700 +msgid "Install Slitaz to partition:"
 18.1701 +msgstr "Установить SliTaz в раздел:"
 18.1702 +
 18.1703 +#: installer.cgi:338
 18.1704 +#: installer.cgi:373
 18.1705 +#: installer.cgi:405
 18.1706 +msgid "None"
 18.1707 +msgstr "нет"
 18.1708 +
 18.1709 +#: installer.cgi:349
 18.1710 +#: installer.cgi:416
 18.1711 +msgid "Format partition as:"
 18.1712 +msgstr "Форматировать раздел как:"
 18.1713 +
 18.1714 +#: installer.cgi:368
 18.1715 +msgid "Existing SliTaz partition to upgrade:"
 18.1716 +msgstr "Существующий радел SliTaz для обновления:"
 18.1717 +
 18.1718 +#: installer.cgi:389
 18.1719 +msgid "Options"
 18.1720 +msgstr "Параметры"
 18.1721 +
 18.1722 +#: installer.cgi:397
 18.1723 +msgid "home partition"
 18.1724 +msgstr "домашняя папка"
 18.1725 +
 18.1726 +#: installer.cgi:400
 18.1727 +msgid "Use a separate partition for /home:"
 18.1728 +msgstr "Использовать отдельный раздел для /home:"
 18.1729 +
 18.1730 +#: installer.cgi:435
 18.1731 +msgid "Set Hostname to:"
 18.1732 +msgstr "Установить имя хоста:"
 18.1733 +
 18.1734 +#: installer.cgi:436
 18.1735 +msgid "Name of your system"
 18.1736 +msgstr "Название вашей системы"
 18.1737 +
 18.1738 +#: installer.cgi:446
 18.1739 +msgid "Root"
 18.1740 +msgstr "Root"
 18.1741 +
 18.1742 +#: installer.cgi:448
 18.1743 +msgid "Root passwd:"
 18.1744 +msgstr "Пароль root:"
 18.1745 +
 18.1746 +#: installer.cgi:449
 18.1747 +#: installer.cgi:452
 18.1748 +msgid "Password of root"
 18.1749 +msgstr "Пароль root"
 18.1750 +
 18.1751 +#: installer.cgi:451
 18.1752 +#: installer.cgi:473
 18.1753 +msgid "Confirm password:"
 18.1754 +msgstr "Подтвердите пароль:"
 18.1755 +
 18.1756 +#: installer.cgi:463
 18.1757 +msgid "User"
 18.1758 +msgstr "Пользователь"
 18.1759 +
 18.1760 +#: installer.cgi:466
 18.1761 +msgid "Name of the first user"
 18.1762 +msgstr "Имя первого пользователя"
 18.1763 +
 18.1764 +#: installer.cgi:470
 18.1765 +msgid "User passwd:"
 18.1766 +msgstr "Пароль пользователя:"
 18.1767 +
 18.1768 +#: installer.cgi:471
 18.1769 +#: installer.cgi:474
 18.1770 +msgid "Password of the first user"
 18.1771 +msgstr "Пароль первого пользователя"
 18.1772 +
 18.1773 +#: installer.cgi:484
 18.1774 +msgid "Grub"
 18.1775 +msgstr "GRUB"
 18.1776 +
 18.1777 +#: installer.cgi:487
 18.1778 +msgid "Install Grub bootloader. Usually you should answer yes, unless you want to install grub by hand yourself."
 18.1779 +msgstr "Установить загрузчик GRUB. Отвечайте «да», за исключением случая, когда вы хотите установить GRUB вручную."
 18.1780 +
 18.1781 +#: installer.cgi:490
 18.1782 +msgid "Enable Windows Dual-Boot."
 18.1783 +msgstr "Включить двойную загрузку с Windows."
 18.1784 +
 18.1785 +#: installer.cgi:499
 18.1786 +msgid "Back to partitioning"
 18.1787 +msgstr "Назад к работе с разделами"
 18.1788 +
 18.1789 +#: installer.cgi:506
 18.1790 +msgid "Proceed to SliTaz installation"
 18.1791 +msgstr "Перейти к установке SliTaz"
 18.1792 +
 18.1793 +#: installer.cgi:508
 18.1794 +msgid "Installation complete. You can now restart (reboot)"
 18.1795 +msgstr "Установка завершена. Теперь вы можете перезагрузить систему"
 18.1796 +
 18.1797 +#: installer.cgi:510
 18.1798 +msgid "Installation failed. See log"
 18.1799 +msgstr "Установка не удалась. Смотрите журнал"
 18.1800 +
 18.1801 +#: installer.cgi:530
 18.1802 +msgid "A web page that points a browser to a different page after 2 seconds"
 18.1803 +msgstr "Страница переадресации (подождите 2 секунды)"
 18.1804 +
 18.1805 +#: installer.cgi:536
 18.1806 +msgid "If your browser doesn't automatically redirect within a few seconds, you may want to go there manually"
 18.1807 +msgstr "Если через несколько секунд ваш браузер не перейдет дальше автоматически, сделайте это вручную"
 18.1808 +
 18.1809 +#: installer.cgi:551
 18.1810 +#: installer.cgi:566
 18.1811 +msgid "Tazinst Error"
 18.1812 +msgstr "Ошибка TazInst"
 18.1813 +
 18.1814 +#: installer.cgi:552
 18.1815 +msgid "<strong>tazinst</strong>, the lightweight SliTaz HDD installer is missing. Any installation can not be done without tazinst."
 18.1816 +msgstr "Отсутствует <strong>tazinst</strong>, легковесный установщик SliTaz на жесткий диск. Без tazinst ничего не удастся установить."
 18.1817 +
 18.1818 +#: installer.cgi:555
 18.1819 +msgid "Check tazinst' permissions, or reinstall the slitaz-tools package:"
 18.1820 +msgstr "Проверьте права доступа tazinst, либо переустановите пакет slitaz-tools:"
 18.1821 +
 18.1822 +#: installer.cgi:581
 18.1823 +msgid "Proceeding: ()"
 18.1824 +msgstr "Выполнение: ()"
 18.1825 +
 18.1826 +#: installer.cgi:582
 18.1827 +msgid "Please wait until processing is complete"
 18.1828 +msgstr "Дождитесь завершения обработки"
 18.1829 +
 18.1830 +#: installer.cgi:588
 18.1831 +msgid "Completed."
 18.1832 +msgstr "Завершено."
 18.1833 +
 18.1834 +#: installer.cgi:622
 18.1835 +msgid "Hostname error"
 18.1836 +msgstr "Ошибка имени хоста"
 18.1837 +
 18.1838 +#: installer.cgi:626
 18.1839 +msgid "Root password error"
 18.1840 +msgstr "Ошибка пароля root"
 18.1841 +
 18.1842 +#: installer.cgi:630
 18.1843 +msgid "User login error"
 18.1844 +msgstr "Ошибка логина пользователя"
 18.1845 +
 18.1846 +#: installer.cgi:634
 18.1847 +msgid "User password error"
 18.1848 +msgstr "Ошибка пароля пользователя"
 18.1849 +
 18.1850 +#: installer.cgi:637
 18.1851 +#: installer.cgi:648
 18.1852 +msgid "Do you really want to continue?"
 18.1853 +msgstr "Вы действительно хотите продолжить?"
 18.1854 +
 18.1855 +#: help.cgi:20
 18.1856 +msgid "Manual"
 18.1857 +msgstr "Руководство"
 18.1858 +
 18.1859 +#: help.cgi:28
 18.1860 +msgid "TazPanel - Help &amp; Doc"
 18.1861 +msgstr "Справка и документация | TazPanel"
 18.1862 +
 18.1863 +#: styles/default/header.sh:29
 18.1864 +msgid "Processes"
 18.1865 +msgstr "Процессы"
 18.1866 +
 18.1867 +#: styles/default/header.sh:31
 18.1868 +msgid "Create Report"
 18.1869 +msgstr "Создать отчет"
 18.1870 +
 18.1871 +#: styles/default/header.sh:34
 18.1872 +msgid "Packages"
 18.1873 +msgstr "Пакеты"
 18.1874 +
 18.1875 +#: styles/default/header.sh:41
 18.1876 +msgid "Check updates"
 18.1877 +msgstr "Проверить обновления"
 18.1878 +
 18.1879 +#: styles/default/header.sh:49
 18.1880 +msgid "Ethernet"
 18.1881 +msgstr "Ethernet"
 18.1882 +
 18.1883 +#: styles/default/header.sh:51
 18.1884 +msgid "Wireless"
 18.1885 +msgstr "Беспроводные"
 18.1886 +
 18.1887 +#: styles/default/header.sh:53
 18.1888 +msgid "Config file"
 18.1889 +msgstr "Файл настроек"
 18.1890 +
 18.1891 +#: styles/default/header.sh:56
 18.1892 +msgid "Settings"
 18.1893 +msgstr "Настройки"
 18.1894 +
 18.1895 +#: styles/default/header.sh:59
 18.1896 +msgid "Users"
 18.1897 +msgstr "Пользователи"
 18.1898 +
 18.1899 +#: styles/default/header.sh:62
 18.1900 +msgid "Boot"
 18.1901 +msgstr "Загрузка"
 18.1902 +
 18.1903 +#: styles/default/header.sh:72
 18.1904 +msgid "Hardware"
 18.1905 +msgstr "Оборудование"
 18.1906 +
 18.1907 +#: styles/default/header.sh:80
 18.1908 +msgid "Live"
 18.1909 +msgstr "«Живые»"
 18.1910 +
 18.1911 +#: styles/default/header.sh:82
 18.1912 +msgid "Create a live USB key"
 18.1913 +msgstr "Создать «живую» USB-флешку"
 18.1914 +
 18.1915 +#: styles/default/header.sh:83
 18.1916 +msgid "Create a live CD-ROM"
 18.1917 +msgstr "Создать «живой» CD-ROM"
 18.1918 +
 18.1919 +#: styles/default/header.sh:91
 18.1920 +msgid "Upgrade system"
 18.1921 +msgstr "Обновить систему"
 18.1922 +
 18.1923 +#: styles/default/footer.sh:6
 18.1924 +msgid "Copyright"
 18.1925 +msgstr "Авторское право"
 18.1926 +
 18.1927 +#: styles/default/footer.sh:8
 18.1928 +msgid "BSD License"
 18.1929 +msgstr "Лицензия BSD"
 18.1930 +
 18.1931 +#~ msgid ""
 18.1932 +#~ "The setup file <strong>$INSTFILE</strong> is not readable. Check "
 18.1933 +#~ "permissions and ownership."
 18.1934 +#~ msgstr ""
 18.1935 +#~ "Установочный файл <strong>$INSTFILE</strong> невозможно прочитать. "
 18.1936 +#~ "Проверьте права доступа и владельца."
 18.1937 +#~ msgid ""
 18.1938 +#~ "<strong>tazinst</strong> ($v) is not at the required version ($r), use "
 18.1939 +#~ "tazinst in a xterm or reinstall the slitaz-tools package:"
 18.1940 +#~ msgstr ""
 18.1941 +#~ "Версия <strong>tazinst</strong> ($v) не соответствует требуемой версии "
 18.1942 +#~ "($r), запустите tazinst в xterm, либо переустановите пакет slitaz-tools:"
    19.1 --- a/po/tazpanel.pot	Fri May 04 12:57:53 2012 +0300
    19.2 +++ b/po/tazpanel.pot	Fri May 04 13:00:43 2012 +0300
    19.3 @@ -8,7 +8,7 @@
    19.4  msgstr ""
    19.5  "Project-Id-Version: TazPanel 1.4.3\n"
    19.6  "Report-Msgid-Bugs-To: \n"
    19.7 -"POT-Creation-Date: 2012-04-11 20:01+0300\n"
    19.8 +"POT-Creation-Date: 2012-05-04 02:44+0000\n"
    19.9  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
   19.10  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
   19.11  "Language-Team: LANGUAGE <LL@li.org>\n"
   19.12 @@ -17,6 +17,11 @@
   19.13  "Content-Type: text/plain; charset=CHARSET\n"
   19.14  "Content-Transfer-Encoding: 8bit\n"
   19.15  
   19.16 +#: tazpanel:35
   19.17 +#, sh-format
   19.18 +msgid "Starting TazPanel web server on port $HTTPD_PORT..."
   19.19 +msgstr ""
   19.20 +
   19.21  #: tazpanel:37
   19.22  msgid "TazPanel Authentication - Default: root:root"
   19.23  msgstr ""
   19.24 @@ -37,151 +42,199 @@
   19.25  msgid "Password changed successfully"
   19.26  msgstr ""
   19.27  
   19.28 -#: tazpanel:53
   19.29 -msgid "Usage:"
   19.30 +#: tazpanel:54
   19.31 +#, sh-format
   19.32 +msgid "Usage: $program_name [start|stop|passwd]"
   19.33  msgstr ""
   19.34  
   19.35 -#: index.cgi:38 index.cgi:76
   19.36 +#: index.cgi:38 index.cgi:83
   19.37  msgid "Differences"
   19.38  msgstr ""
   19.39  
   19.40 -#: index.cgi:66
   19.41 +#: index.cgi:72
   19.42  msgid "TazPanel - File"
   19.43  msgstr ""
   19.44  
   19.45 -#: index.cgi:74
   19.46 +#: index.cgi:81
   19.47  msgid "Save"
   19.48  msgstr ""
   19.49  
   19.50 -#: index.cgi:96 settings.cgi:256
   19.51 +#: index.cgi:103 settings.cgi:261
   19.52  msgid "Edit"
   19.53  msgstr ""
   19.54  
   19.55 -#: index.cgi:115
   19.56 +#: index.cgi:126
   19.57  msgid "TazPanel - Terminal"
   19.58  msgstr ""
   19.59  
   19.60 -#: index.cgi:128
   19.61 +#: index.cgi:139
   19.62  msgid "Small terminal emulator, commands options are supported."
   19.63  msgstr ""
   19.64  
   19.65 -#: index.cgi:130 index.cgi:147
   19.66 -msgid "Commands:"
   19.67 +#: index.cgi:141 index.cgi:158
   19.68 +#, sh-format
   19.69 +msgid "Commands: $commands"
   19.70  msgstr ""
   19.71  
   19.72 -#: index.cgi:134
   19.73 -msgid "Downloading to:"
   19.74 +#: index.cgi:146
   19.75 +#, sh-format
   19.76 +msgid "Downloading to: $dl"
   19.77  msgstr ""
   19.78  
   19.79 -#: index.cgi:151
   19.80 +#: index.cgi:153
   19.81 +#, sh-format
   19.82 +msgid "$cmd needs an argument"
   19.83 +msgstr ""
   19.84 +
   19.85 +#: index.cgi:157
   19.86 +#, sh-format
   19.87 +msgid "Unknown command: $cmd"
   19.88 +msgstr ""
   19.89 +
   19.90 +#: index.cgi:162
   19.91  msgid "TazPanel - Process activity"
   19.92  msgstr ""
   19.93  
   19.94 -#: index.cgi:153
   19.95 -msgid "Refresh: "
   19.96 +#: index.cgi:164
   19.97 +msgid "Refresh:"
   19.98 +msgstr ""
   19.99 +
  19.100 +#: index.cgi:169
  19.101 +msgid "1s"
  19.102 +msgstr ""
  19.103 +
  19.104 +#: index.cgi:170
  19.105 +msgid "5s"
  19.106  msgstr ""
  19.107  
  19.108  #: index.cgi:171
  19.109 +msgid "10s"
  19.110 +msgstr ""
  19.111 +
  19.112 +#: index.cgi:172 live.cgi:152
  19.113 +msgid "none"
  19.114 +msgstr ""
  19.115 +
  19.116 +#: index.cgi:188
  19.117  msgid "TazPanel - Debug"
  19.118  msgstr ""
  19.119  
  19.120 -#: index.cgi:178
  19.121 +#: index.cgi:191
  19.122 +msgid "HTTP Environment"
  19.123 +msgstr ""
  19.124 +
  19.125 +#: index.cgi:198
  19.126  msgid "TazPanel - System report"
  19.127  msgstr ""
  19.128  
  19.129 -#: index.cgi:182
  19.130 -msgid "Reporting to:"
  19.131 +#: index.cgi:203
  19.132 +#, sh-format
  19.133 +msgid "Reporting to: $output"
  19.134  msgstr ""
  19.135  
  19.136 -#: index.cgi:184
  19.137 -msgid "Creating report header...  "
  19.138 +#: index.cgi:206
  19.139 +msgid "Creating report header..."
  19.140  msgstr ""
  19.141  
  19.142 -#: index.cgi:201
  19.143 -msgid "Creating system summary... "
  19.144 +#: index.cgi:213 index.cgi:230
  19.145 +msgid "SliTaz system report"
  19.146  msgstr ""
  19.147  
  19.148 -#: index.cgi:214
  19.149 -msgid "Getting hardware info...   "
  19.150 +#: index.cgi:227
  19.151 +msgid "Creating system summary..."
  19.152  msgstr ""
  19.153  
  19.154 -#: index.cgi:238
  19.155 -msgid "Getting networking info... "
  19.156 +#: index.cgi:231
  19.157 +msgid "Date:"
  19.158  msgstr ""
  19.159  
  19.160 -#: index.cgi:254
  19.161 +#: index.cgi:242
  19.162 +msgid "Getting hardware info..."
  19.163 +msgstr ""
  19.164 +
  19.165 +#: index.cgi:260
  19.166 +msgid "Getting networking info..."
  19.167 +msgstr ""
  19.168 +
  19.169 +#: index.cgi:274
  19.170  msgid "Getting filesystems info..."
  19.171  msgstr ""
  19.172  
  19.173 -#: index.cgi:278
  19.174 -msgid "Getting boot logs...       "
  19.175 +#: index.cgi:294
  19.176 +msgid "Getting boot logs..."
  19.177  msgstr ""
  19.178  
  19.179 -#: index.cgi:280 boot.cgi:29 boot.cgi:34
  19.180 +#: index.cgi:297 boot.cgi:29 boot.cgi:34
  19.181  msgid "Kernel messages"
  19.182  msgstr ""
  19.183  
  19.184 -#: index.cgi:284 boot.cgi:30 boot.cgi:39
  19.185 +#: index.cgi:300 boot.cgi:30 boot.cgi:38
  19.186  msgid "Boot scripts"
  19.187  msgstr ""
  19.188  
  19.189 -#: index.cgi:290
  19.190 -msgid "Creating report footer...  "
  19.191 +#: index.cgi:305
  19.192 +msgid "Creating report footer..."
  19.193  msgstr ""
  19.194  
  19.195 -#: index.cgi:298
  19.196 +#: index.cgi:317
  19.197  msgid "View report"
  19.198  msgstr ""
  19.199  
  19.200 -#: index.cgi:299
  19.201 -msgid "This report can be attached with a bug report on: "
  19.202 +#: index.cgi:318
  19.203 +msgid "This report can be attached with a bug report on:"
  19.204  msgstr ""
  19.205  
  19.206 -#: index.cgi:310
  19.207 -msgid "Host:"
  19.208 +#: index.cgi:332
  19.209 +#, sh-format
  19.210 +msgid "Host: $hostname"
  19.211  msgstr ""
  19.212  
  19.213 -#: index.cgi:311
  19.214 +#: index.cgi:333
  19.215  msgid "SliTaz administration and configuration Panel"
  19.216  msgstr ""
  19.217  
  19.218 -#: index.cgi:315 styles/default/header.sh:27
  19.219 +#: index.cgi:337 styles/default/header.sh:27
  19.220  msgid "Terminal"
  19.221  msgstr ""
  19.222  
  19.223 -#: index.cgi:317
  19.224 +#: index.cgi:339
  19.225  msgid "Process activity"
  19.226  msgstr ""
  19.227  
  19.228 -#: index.cgi:319
  19.229 +#: index.cgi:341
  19.230  msgid "Create a report"
  19.231  msgstr ""
  19.232  
  19.233 -#: index.cgi:322 pkgs.cgi:855
  19.234 +#: index.cgi:344 pkgs.cgi:948
  19.235  msgid "Summary"
  19.236  msgstr ""
  19.237  
  19.238 -#: index.cgi:325
  19.239 -msgid "Uptime       :"
  19.240 +#: index.cgi:347
  19.241 +msgid "Uptime:"
  19.242  msgstr ""
  19.243  
  19.244 -#: index.cgi:326
  19.245 -msgid "Memory in Mb :"
  19.246 +#: index.cgi:350
  19.247 +msgid "Memory in Mb:"
  19.248  msgstr ""
  19.249  
  19.250 -#: index.cgi:328
  19.251 -msgid "Linux kernel :"
  19.252 +#: index.cgi:355
  19.253 +#, sh-format
  19.254 +msgid "Total: $memtotal, Used: $memused, Free: $memfree"
  19.255  msgstr ""
  19.256  
  19.257 -#: index.cgi:333
  19.258 +#: index.cgi:360
  19.259 +msgid "Linux kernel:"
  19.260 +msgstr ""
  19.261 +
  19.262 +#: index.cgi:367
  19.263  msgid "Network status"
  19.264  msgstr ""
  19.265  
  19.266 -#: index.cgi:336 hardware.cgi:193
  19.267 +#: index.cgi:370 hardware.cgi:202
  19.268  msgid "Filesystem usage statistics"
  19.269  msgstr ""
  19.270  
  19.271 -#: index.cgi:357
  19.272 +#: index.cgi:403
  19.273  msgid "Panel Activity"
  19.274  msgstr ""
  19.275  
  19.276 @@ -189,244 +242,441 @@
  19.277  msgid "TazPanel - Packages"
  19.278  msgstr ""
  19.279  
  19.280 -#: pkgs.cgi:50
  19.281 -msgid "Last recharge        : "
  19.282 +#: pkgs.cgi:51
  19.283 +msgid "Last recharge:"
  19.284 +msgstr ""
  19.285 +
  19.286 +#: pkgs.cgi:58
  19.287 +msgid "(Older than 10 days)"
  19.288  msgstr ""
  19.289  
  19.290  #: pkgs.cgi:60
  19.291 -msgid "Installed packages   : "
  19.292 -msgstr ""
  19.293 -
  19.294 -#: pkgs.cgi:62
  19.295 -msgid "Mirrored packages    : "
  19.296 +msgid "(Not older than 10 days)"
  19.297  msgstr ""
  19.298  
  19.299  #: pkgs.cgi:64
  19.300 -msgid "Upgradeable packages : "
  19.301 +msgid "Installed packages:"
  19.302 +msgstr ""
  19.303 +
  19.304 +#: pkgs.cgi:66
  19.305 +msgid "Mirrored packages:"
  19.306  msgstr ""
  19.307  
  19.308  #: pkgs.cgi:68
  19.309 -msgid "Blocked packages     : "
  19.310 +msgid "Upgradeable packages:"
  19.311  msgstr ""
  19.312  
  19.313 -#: pkgs.cgi:113
  19.314 +#: pkgs.cgi:70 pkgs.cgi:707
  19.315 +msgid "Installed files:"
  19.316 +msgstr ""
  19.317 +
  19.318 +#: pkgs.cgi:72
  19.319 +msgid "Blocked packages:"
  19.320 +msgstr ""
  19.321 +
  19.322 +#: pkgs.cgi:86
  19.323 +msgid "Delete"
  19.324 +msgstr ""
  19.325 +
  19.326 +#: pkgs.cgi:89
  19.327 +msgid "Use as default"
  19.328 +msgstr ""
  19.329 +
  19.330 +#: pkgs.cgi:120
  19.331  msgid "Search"
  19.332  msgstr ""
  19.333  
  19.334 -#: pkgs.cgi:115
  19.335 +#: pkgs.cgi:122
  19.336  msgid "Files"
  19.337  msgstr ""
  19.338  
  19.339 -#: pkgs.cgi:126 network.cgi:23 network.cgi:151 network.cgi:240 boot.cgi:84
  19.340 -#: settings.cgi:104 lib/libtazpanel:87
  19.341 +#: pkgs.cgi:134 pkgs.cgi:867 network.cgi:23 network.cgi:156 network.cgi:246
  19.342 +#: boot.cgi:82 settings.cgi:104 lib/libtazpanel:98
  19.343  msgid "Name"
  19.344  msgstr ""
  19.345  
  19.346 -#: pkgs.cgi:127
  19.347 +#: pkgs.cgi:135
  19.348  msgid "Version"
  19.349  msgstr ""
  19.350  
  19.351 -#: pkgs.cgi:128 boot.cgi:85
  19.352 +#: pkgs.cgi:136 boot.cgi:83
  19.353  msgid "Description"
  19.354  msgstr ""
  19.355  
  19.356 -#: pkgs.cgi:129 installer.cgi:313
  19.357 +#: pkgs.cgi:137
  19.358  msgid "Web"
  19.359  msgstr ""
  19.360  
  19.361 -#: pkgs.cgi:212 pkgs.cgi:321 pkgs.cgi:362 pkgs.cgi:416 pkgs.cgi:454
  19.362 -#: pkgs.cgi:503 pkgs.cgi:575 pkgs.cgi:858 styles/default/header.sh:37
  19.363 +#: pkgs.cgi:147
  19.364 +msgid "Categories"
  19.365 +msgstr ""
  19.366 +
  19.367 +#: pkgs.cgi:148
  19.368 +msgid "Base-system"
  19.369 +msgstr ""
  19.370 +
  19.371 +#: pkgs.cgi:149
  19.372 +msgid "X window"
  19.373 +msgstr ""
  19.374 +
  19.375 +#: pkgs.cgi:150
  19.376 +msgid "Utilities"
  19.377 +msgstr ""
  19.378 +
  19.379 +#: pkgs.cgi:151 styles/default/header.sh:46
  19.380 +msgid "Network"
  19.381 +msgstr ""
  19.382 +
  19.383 +#: pkgs.cgi:152
  19.384 +msgid "Games"
  19.385 +msgstr ""
  19.386 +
  19.387 +#: pkgs.cgi:153
  19.388 +msgid "Graphics"
  19.389 +msgstr ""
  19.390 +
  19.391 +#: pkgs.cgi:154
  19.392 +msgid "Office"
  19.393 +msgstr ""
  19.394 +
  19.395 +#: pkgs.cgi:155
  19.396 +msgid "Multimedia"
  19.397 +msgstr ""
  19.398 +
  19.399 +#: pkgs.cgi:156
  19.400 +msgid "Development"
  19.401 +msgstr ""
  19.402 +
  19.403 +#: pkgs.cgi:157
  19.404 +msgid "System tools"
  19.405 +msgstr ""
  19.406 +
  19.407 +#: pkgs.cgi:158
  19.408 +msgid "Security"
  19.409 +msgstr ""
  19.410 +
  19.411 +#: pkgs.cgi:159
  19.412 +msgid "Misc"
  19.413 +msgstr ""
  19.414 +
  19.415 +#: pkgs.cgi:160
  19.416 +msgid "Meta"
  19.417 +msgstr ""
  19.418 +
  19.419 +#: pkgs.cgi:161
  19.420 +msgid "Non free"
  19.421 +msgstr ""
  19.422 +
  19.423 +#: pkgs.cgi:162
  19.424 +msgid "All"
  19.425 +msgstr ""
  19.426 +
  19.427 +#: pkgs.cgi:168
  19.428 +msgid "Repositories"
  19.429 +msgstr ""
  19.430 +
  19.431 +#: pkgs.cgi:169
  19.432 +msgid "Public"
  19.433 +msgstr ""
  19.434 +
  19.435 +#: pkgs.cgi:177
  19.436 +msgid "Any"
  19.437 +msgstr ""
  19.438 +
  19.439 +#: pkgs.cgi:217 pkgs.cgi:339
  19.440 +msgid "Listing packages..."
  19.441 +msgstr ""
  19.442 +
  19.443 +#: pkgs.cgi:220 pkgs.cgi:358 pkgs.cgi:412 pkgs.cgi:479 pkgs.cgi:520
  19.444 +#: pkgs.cgi:580 pkgs.cgi:659 pkgs.cgi:952 styles/default/header.sh:37
  19.445  msgid "My packages"
  19.446  msgstr ""
  19.447  
  19.448 -#: pkgs.cgi:216 pkgs.cgi:262 pkgs.cgi:311 pkgs.cgi:352 pkgs.cgi:445
  19.449 +#: pkgs.cgi:225 pkgs.cgi:284 pkgs.cgi:347 pkgs.cgi:401 pkgs.cgi:511
  19.450  #: settings.cgi:92
  19.451  msgid "Selection:"
  19.452  msgstr ""
  19.453  
  19.454 -#: pkgs.cgi:220 pkgs.cgi:266 pkgs.cgi:317 pkgs.cgi:358 pkgs.cgi:451
  19.455 -msgid "List:"
  19.456 +#: pkgs.cgi:226 pkgs.cgi:607
  19.457 +msgid "Remove"
  19.458  msgstr ""
  19.459  
  19.460 -#: pkgs.cgi:258 pkgs.cgi:864
  19.461 +#: pkgs.cgi:230 pkgs.cgi:289 pkgs.cgi:354 pkgs.cgi:408 pkgs.cgi:518
  19.462 +#: pkgs.cgi:962 styles/default/header.sh:39
  19.463 +msgid "Recharge list"
  19.464 +msgstr ""
  19.465 +
  19.466 +#: pkgs.cgi:232 pkgs.cgi:291 pkgs.cgi:356 pkgs.cgi:410 pkgs.cgi:477
  19.467 +#: pkgs.cgi:964
  19.468 +msgid "Check upgrades"
  19.469 +msgstr ""
  19.470 +
  19.471 +#: pkgs.cgi:275
  19.472 +msgid "Listing linkable packages..."
  19.473 +msgstr ""
  19.474 +
  19.475 +#: pkgs.cgi:278 pkgs.cgi:958
  19.476  msgid "Linkable packages"
  19.477  msgstr ""
  19.478  
  19.479 -#: pkgs.cgi:307
  19.480 +#: pkgs.cgi:285
  19.481 +msgid "Link"
  19.482 +msgstr ""
  19.483 +
  19.484 +#: pkgs.cgi:342
  19.485 +#, sh-format
  19.486 +msgid "Category: $category"
  19.487 +msgstr ""
  19.488 +
  19.489 +#: pkgs.cgi:366 pkgs.cgi:838
  19.490 +#, sh-format
  19.491 +msgid "Repository: $Repo_Name"
  19.492 +msgstr ""
  19.493 +
  19.494 +#: pkgs.cgi:394
  19.495 +msgid "Searching packages..."
  19.496 +msgstr ""
  19.497 +
  19.498 +#: pkgs.cgi:397
  19.499 +msgid "Search packages"
  19.500 +msgstr ""
  19.501 +
  19.502 +#: pkgs.cgi:404 pkgs.cgi:514
  19.503 +msgid "Toogle all"
  19.504 +msgstr ""
  19.505 +
  19.506 +#: pkgs.cgi:423
  19.507 +msgid "Package"
  19.508 +msgstr ""
  19.509 +
  19.510 +#: pkgs.cgi:424
  19.511 +msgid "File"
  19.512 +msgstr ""
  19.513 +
  19.514 +#: pkgs.cgi:465
  19.515 +msgid "Recharging lists..."
  19.516 +msgstr ""
  19.517 +
  19.518 +#: pkgs.cgi:468
  19.519 +msgid "Recharge"
  19.520 +msgstr ""
  19.521 +
  19.522 +#: pkgs.cgi:473
  19.523 +msgid "Recharge checks for new or updated packages"
  19.524 +msgstr ""
  19.525 +
  19.526 +#: pkgs.cgi:485
  19.527 +msgid "Recharging packages list"
  19.528 +msgstr ""
  19.529 +
  19.530 +#: pkgs.cgi:490
  19.531 +msgid "Packages lists are up-to-date. You should check for upgrades now."
  19.532 +msgstr ""
  19.533 +
  19.534 +#: pkgs.cgi:503
  19.535 +msgid "Checking for upgrades..."
  19.536 +msgstr ""
  19.537 +
  19.538 +#: pkgs.cgi:506
  19.539 +msgid "Up packages"
  19.540 +msgstr ""
  19.541 +
  19.542 +#: pkgs.cgi:575
  19.543 +msgid "Performing tasks on packages"
  19.544 +msgstr ""
  19.545 +
  19.546 +#: pkgs.cgi:585
  19.547 +#, sh-format
  19.548 +msgid "Executing $cmd for: $pkgs"
  19.549 +msgstr ""
  19.550 +
  19.551 +#: pkgs.cgi:610
  19.552 +msgid "Getting package info..."
  19.553 +msgstr ""
  19.554 +
  19.555 +#: pkgs.cgi:622 installer.cgi:155 styles/default/header.sh:88
  19.556 +msgid "Install"
  19.557 +msgstr ""
  19.558 +
  19.559 +#: pkgs.cgi:626
  19.560 +#, sh-format
  19.561 +msgid "Package $PACKAGE"
  19.562 +msgstr ""
  19.563 +
  19.564 +#: pkgs.cgi:634
  19.565 +msgid "Install (Non Free)"
  19.566 +msgstr ""
  19.567 +
  19.568 +#: pkgs.cgi:642
  19.569 +msgid "Unblock"
  19.570 +msgstr ""
  19.571 +
  19.572 +#: pkgs.cgi:646
  19.573 +msgid "Block"
  19.574 +msgstr ""
  19.575 +
  19.576 +#: pkgs.cgi:650
  19.577 +msgid "Repack"
  19.578 +msgstr ""
  19.579 +
  19.580 +#: pkgs.cgi:665
  19.581 +msgid "Name:"
  19.582 +msgstr ""
  19.583 +
  19.584 +#: pkgs.cgi:666
  19.585 +msgid "Version:"
  19.586 +msgstr ""
  19.587 +
  19.588 +#: pkgs.cgi:667
  19.589 +msgid "Description:"
  19.590 +msgstr ""
  19.591 +
  19.592 +#: pkgs.cgi:668
  19.593  msgid "Category:"
  19.594  msgstr ""
  19.595  
  19.596 -#: pkgs.cgi:348
  19.597 -msgid "Search packages"
  19.598 +#: pkgs.cgi:672
  19.599 +msgid "Maintainer:"
  19.600  msgstr ""
  19.601  
  19.602 -#: pkgs.cgi:355 pkgs.cgi:448
  19.603 -msgid "Toogle all"
  19.604 +#: pkgs.cgi:673 pkgs.cgi:702
  19.605 +msgid "Website:"
  19.606  msgstr ""
  19.607  
  19.608 -#: pkgs.cgi:371 pkgs.cgi:545
  19.609 -msgid "Package"
  19.610 +#: pkgs.cgi:674 pkgs.cgi:703
  19.611 +msgid "Sizes:"
  19.612  msgstr ""
  19.613  
  19.614 -#: pkgs.cgi:372
  19.615 -msgid "File"
  19.616 +#: pkgs.cgi:677
  19.617 +msgid "Depends:"
  19.618  msgstr ""
  19.619  
  19.620 -#: pkgs.cgi:403
  19.621 -msgid "Recharge"
  19.622 +#: pkgs.cgi:684
  19.623 +msgid "Suggested:"
  19.624  msgstr ""
  19.625  
  19.626 -#: pkgs.cgi:408
  19.627 -msgid "Recharge checks for new or updated packages"
  19.628 +#: pkgs.cgi:690
  19.629 +msgid "Tags:"
  19.630  msgstr ""
  19.631  
  19.632 -#: pkgs.cgi:414 pkgs.cgi:870
  19.633 -msgid "Check upgrades"
  19.634 +#: pkgs.cgi:696
  19.635 +#, sh-format
  19.636 +msgid "Installed files: $I_FILES"
  19.637  msgstr ""
  19.638  
  19.639 -#: pkgs.cgi:422
  19.640 -msgid "Recharging packages list"
  19.641 -msgstr ""
  19.642 -
  19.643 -#: pkgs.cgi:427
  19.644 -msgid "Packages lists are up-to-date. You should check for upgrades now."
  19.645 -msgstr ""
  19.646 -
  19.647 -#: pkgs.cgi:441
  19.648 -msgid "Up packages"
  19.649 -msgstr ""
  19.650 -
  19.651 -#: pkgs.cgi:497
  19.652 -msgid "Performing tasks on packages"
  19.653 -msgstr ""
  19.654 -
  19.655 -#: pkgs.cgi:527
  19.656 -msgid "Remove"
  19.657 -msgstr ""
  19.658 -
  19.659 -#: pkgs.cgi:530
  19.660 -msgid "Getting package info..."
  19.661 -msgstr ""
  19.662 -
  19.663 -#: pkgs.cgi:541 pkgs.cgi:550 installer.cgi:155 styles/default/header.sh:88
  19.664 -msgid "Install"
  19.665 -msgstr ""
  19.666 -
  19.667 -#: pkgs.cgi:560
  19.668 -msgid "Unblock"
  19.669 -msgstr ""
  19.670 -
  19.671 -#: pkgs.cgi:562
  19.672 -msgid "Block"
  19.673 -msgstr ""
  19.674 -
  19.675 -#: pkgs.cgi:609 pkgs.cgi:621
  19.676 -msgid "Installed files:"
  19.677 -msgstr ""
  19.678 -
  19.679 -#: pkgs.cgi:666 pkgs.cgi:790
  19.680 +#: pkgs.cgi:755 pkgs.cgi:884
  19.681  msgid "Set link"
  19.682  msgstr ""
  19.683  
  19.684 -#: pkgs.cgi:669 pkgs.cgi:791
  19.685 +#: pkgs.cgi:758 pkgs.cgi:885
  19.686  msgid "Remove link"
  19.687  msgstr ""
  19.688  
  19.689 -#: pkgs.cgi:675 pkgs.cgi:872 styles/default/header.sh:43
  19.690 +#: pkgs.cgi:764 pkgs.cgi:966 styles/default/header.sh:43
  19.691  msgid "Administration"
  19.692  msgstr ""
  19.693  
  19.694 -#: pkgs.cgi:677
  19.695 +#: pkgs.cgi:766
  19.696  msgid "Tazpkg administration and settings"
  19.697  msgstr ""
  19.698  
  19.699 -#: pkgs.cgi:681
  19.700 +#: pkgs.cgi:770
  19.701  msgid "Save configuration"
  19.702  msgstr ""
  19.703  
  19.704 -#: pkgs.cgi:683
  19.705 +#: pkgs.cgi:772
  19.706  msgid "List configuration files"
  19.707  msgstr ""
  19.708  
  19.709 -#: pkgs.cgi:685
  19.710 +#: pkgs.cgi:774
  19.711  msgid "Quick check"
  19.712  msgstr ""
  19.713  
  19.714 -#: pkgs.cgi:687
  19.715 +#: pkgs.cgi:776
  19.716  msgid "Full check"
  19.717  msgstr ""
  19.718  
  19.719 -#: pkgs.cgi:692
  19.720 +#: pkgs.cgi:781
  19.721  msgid "Creating the package..."
  19.722  msgstr ""
  19.723  
  19.724 -#: pkgs.cgi:697
  19.725 -msgid "Path : "
  19.726 +#: pkgs.cgi:786
  19.727 +msgid "Path:"
  19.728  msgstr ""
  19.729  
  19.730 -#: pkgs.cgi:700 boot.cgi:248
  19.731 +#: pkgs.cgi:789 boot.cgi:256
  19.732  msgid "Configuration files"
  19.733  msgstr ""
  19.734  
  19.735 -#: pkgs.cgi:713
  19.736 +#: pkgs.cgi:802
  19.737  msgid "Checking packages consistency..."
  19.738  msgstr ""
  19.739  
  19.740 -#: pkgs.cgi:719
  19.741 +#: pkgs.cgi:808
  19.742  msgid "Full packages check..."
  19.743  msgstr ""
  19.744  
  19.745 -#: pkgs.cgi:726
  19.746 +#: pkgs.cgi:815
  19.747  msgid "Packages cache"
  19.748  msgstr ""
  19.749  
  19.750 -#: pkgs.cgi:730
  19.751 -msgid "Packages in the cache:"
  19.752 +#: pkgs.cgi:820
  19.753 +#, sh-format
  19.754 +msgid "Packages in the cache: $cache_files ($cache_size)"
  19.755  msgstr ""
  19.756  
  19.757 -#: pkgs.cgi:736
  19.758 +#: pkgs.cgi:827
  19.759  msgid "Default mirror"
  19.760  msgstr ""
  19.761  
  19.762 -#: pkgs.cgi:738
  19.763 +#: pkgs.cgi:831
  19.764  msgid "Current mirror list"
  19.765  msgstr ""
  19.766  
  19.767 -#: pkgs.cgi:761
  19.768 +#: pkgs.cgi:855
  19.769  msgid "Private repositories"
  19.770  msgstr ""
  19.771  
  19.772 -#: pkgs.cgi:780
  19.773 +#: pkgs.cgi:868
  19.774 +msgid "mirror"
  19.775 +msgstr ""
  19.776 +
  19.777 +#: pkgs.cgi:874
  19.778  msgid "Link to another SliTaz installation"
  19.779  msgstr ""
  19.780  
  19.781 -#: pkgs.cgi:782
  19.782 +#: pkgs.cgi:876
  19.783  msgid ""
  19.784  "This link points to the root of another SliTaz installation. You will be "
  19.785  "able to install packages using soft links to it."
  19.786  msgstr ""
  19.787  
  19.788 -#: pkgs.cgi:799
  19.789 +#: pkgs.cgi:892
  19.790  msgid "SliTaz packages DVD"
  19.791  msgstr ""
  19.792  
  19.793 -#: pkgs.cgi:811
  19.794 +#: pkgs.cgi:894
  19.795 +#, sh-format
  19.796 +msgid ""
  19.797 +"A bootable DVD image of all available packages for the $version version is "
  19.798 +"generated every day. It also contains a copy of the website and can be used "
  19.799 +"without an internet connection. This image can be installed on a DVD or an "
  19.800 +"USB key."
  19.801 +msgstr ""
  19.802 +
  19.803 +#: pkgs.cgi:904
  19.804  msgid "Download DVD image"
  19.805  msgstr ""
  19.806  
  19.807 -#: pkgs.cgi:813
  19.808 +#: pkgs.cgi:906
  19.809  msgid "Install from DVD/USB key"
  19.810  msgstr ""
  19.811  
  19.812 -#: pkgs.cgi:816
  19.813 -msgid "Install from ISO image: "
  19.814 +#: pkgs.cgi:909
  19.815 +msgid "Install from ISO image:"
  19.816  msgstr ""
  19.817  
  19.818 -#: pkgs.cgi:868 styles/default/header.sh:39
  19.819 -msgid "Recharge list"
  19.820 -msgstr ""
  19.821 -
  19.822 -#: pkgs.cgi:878
  19.823 +#: pkgs.cgi:972
  19.824  msgid "Latest log entries"
  19.825  msgstr ""
  19.826  
  19.827 @@ -446,23 +696,22 @@
  19.828  msgid "Create Live USB SliTaz systems"
  19.829  msgstr ""
  19.830  
  19.831 -#: live.cgi:93
  19.832 +#: live.cgi:92
  19.833  msgid ""
  19.834 -"Generate SliTaz LiveUSB media and boot in RAM! Insert a\n"
  19.835 -"\tLiveCD into the cdrom drive, select the correct device and press\n"
  19.836 -"\tGenerate."
  19.837 +"Generate SliTaz LiveUSB media and boot in RAM! Insert a LiveCD into the "
  19.838 +"cdrom drive, select the correct device and press Generate."
  19.839  msgstr ""
  19.840  
  19.841 -#: live.cgi:99
  19.842 +#: live.cgi:97
  19.843  msgid "USB Media to use:"
  19.844  msgstr ""
  19.845  
  19.846 -#: live.cgi:108 installer.cgi:302 installer.cgi:346 installer.cgi:381
  19.847 -#: installer.cgi:414
  19.848 +#: live.cgi:106 installer.cgi:299 installer.cgi:343 installer.cgi:378
  19.849 +#: installer.cgi:410
  19.850  msgid "Not found"
  19.851  msgstr ""
  19.852  
  19.853 -#: live.cgi:112
  19.854 +#: live.cgi:110
  19.855  msgid "Generate"
  19.856  msgstr ""
  19.857  
  19.858 @@ -478,84 +727,82 @@
  19.859  msgid "Create LiveUSB"
  19.860  msgstr ""
  19.861  
  19.862 -#: live.cgi:139
  19.863 +#: live.cgi:140
  19.864  msgid "Write a Live CD"
  19.865  msgstr ""
  19.866  
  19.867 -#: live.cgi:141
  19.868 +#: live.cgi:142
  19.869  msgid ""
  19.870 -"The command writeiso will generate an ISO image of the\n"
  19.871 -"\tcurrent filesystem as is, including all files in the /home directory.\n"
  19.872 -"\tIt is an easy way to remaster a SliTaz Live system, you just have\n"
  19.873 -"\tto: boot, modify, writeiso."
  19.874 +"The command writeiso will generate an ISO image of the current filesystem as "
  19.875 +"is, including all files in the /home directory. It is an easy way to "
  19.876 +"remaster a SliTaz Live system, you just have to: boot, modify, writeiso."
  19.877  msgstr ""
  19.878  
  19.879 -#: live.cgi:147
  19.880 +#: live.cgi:148
  19.881  msgid "Compression type:"
  19.882  msgstr ""
  19.883  
  19.884 -#: live.cgi:153
  19.885 +#: live.cgi:154
  19.886  msgid "Write ISO"
  19.887  msgstr ""
  19.888  
  19.889 -#: live.cgi:156
  19.890 +#: live.cgi:158
  19.891  msgid "Live CD tools"
  19.892  msgstr ""
  19.893  
  19.894 -#: live.cgi:158 live.cgi:183 styles/default/header.sh:84
  19.895 +#: live.cgi:160 live.cgi:192 styles/default/header.sh:84
  19.896  msgid "Convert ISO to loram"
  19.897  msgstr ""
  19.898  
  19.899 -#: live.cgi:160
  19.900 +#: live.cgi:162
  19.901  msgid ""
  19.902 -"This command will convert an ISO image of a SliTaz Live CD\n"
  19.903 -"\tto a new ISO image requiring less RAM to run."
  19.904 +"This command will convert an ISO image of a SliTaz Live CD to a new ISO "
  19.905 +"image requiring less RAM to run."
  19.906  msgstr ""
  19.907  
  19.908 -#: live.cgi:166
  19.909 +#: live.cgi:168
  19.910  msgid "ISO to convert"
  19.911  msgstr ""
  19.912  
  19.913 -#: live.cgi:170
  19.914 +#: live.cgi:173
  19.915  msgid "The filesystem is always in RAM"
  19.916  msgstr ""
  19.917  
  19.918 -#: live.cgi:173
  19.919 +#: live.cgi:178
  19.920  msgid "The filesystem may be on a small CDROM"
  19.921  msgstr ""
  19.922  
  19.923 -#: live.cgi:176
  19.924 +#: live.cgi:183
  19.925  msgid "The filesystem may be on a large CDROM"
  19.926  msgstr ""
  19.927  
  19.928 -#: live.cgi:179 live.cgi:222
  19.929 +#: live.cgi:187 live.cgi:234
  19.930  msgid "ISO to create"
  19.931  msgstr ""
  19.932  
  19.933 -#: live.cgi:187 live.cgi:226 styles/default/header.sh:85
  19.934 +#: live.cgi:196 live.cgi:239 styles/default/header.sh:85
  19.935  msgid "Build a meta ISO"
  19.936  msgstr ""
  19.937  
  19.938 -#: live.cgi:189
  19.939 +#: live.cgi:198
  19.940  msgid ""
  19.941 -"Combines several ISO flavors like nested Russian dolls.\n"
  19.942 -"\tThe amount of RAM available at startup will be used to select the\n"
  19.943 -"\tutmost one."
  19.944 +"Combines several ISO flavors like nested Russian dolls. The amount of RAM "
  19.945 +"available at startup will be used to select the utmost one."
  19.946  msgstr ""
  19.947  
  19.948 -#: live.cgi:202
  19.949 +#: live.cgi:210
  19.950  msgid "ISO number"
  19.951  msgstr ""
  19.952  
  19.953 -#: live.cgi:204 live.cgi:217
  19.954 +#: live.cgi:213 live.cgi:228
  19.955  msgid "Minimum RAM"
  19.956  msgstr ""
  19.957  
  19.958 -#: live.cgi:215
  19.959 +#: live.cgi:225
  19.960  msgid "ISO to add"
  19.961  msgstr ""
  19.962  
  19.963 -#: live.cgi:219
  19.964 +#: live.cgi:230
  19.965  msgid "Add to the list"
  19.966  msgstr ""
  19.967  
  19.968 @@ -571,193 +818,195 @@
  19.969  msgid "Encryption"
  19.970  msgstr ""
  19.971  
  19.972 -#: network.cgi:26 boot.cgi:86 lib/libtazpanel:88
  19.973 +#: network.cgi:26 boot.cgi:84 lib/libtazpanel:99
  19.974  msgid "Status"
  19.975  msgstr ""
  19.976  
  19.977 -#: network.cgi:52
  19.978 +#: network.cgi:53
  19.979  msgid "Connected"
  19.980  msgstr ""
  19.981  
  19.982 -#: network.cgi:91
  19.983 -msgid "Changed hostname:"
  19.984 +#: network.cgi:96
  19.985 +#, sh-format
  19.986 +msgid "Changed hostname: $get_hostname"
  19.987  msgstr ""
  19.988  
  19.989 -#: network.cgi:107
  19.990 +#: network.cgi:112
  19.991  msgid "Scanning open ports..."
  19.992  msgstr ""
  19.993  
  19.994 -#: network.cgi:110
  19.995 -msgid "Port scanning for"
  19.996 +#: network.cgi:115
  19.997 +#, sh-format
  19.998 +msgid "Port scanning for $scan"
  19.999  msgstr ""
 19.1000  
 19.1001 -#: network.cgi:124
 19.1002 +#: network.cgi:129
 19.1003  msgid "Setting up IP..."
 19.1004  msgstr ""
 19.1005  
 19.1006 -#: network.cgi:140
 19.1007 +#: network.cgi:145
 19.1008  msgid "Ethernet connection"
 19.1009  msgstr ""
 19.1010  
 19.1011 -#: network.cgi:142
 19.1012 +#: network.cgi:147
 19.1013  msgid ""
 19.1014 -"Here you can configure a wired connection using DHCP to\n"
 19.1015 -"automatically get a random IP or configure a static/fixed IP"
 19.1016 +"Here you can configure a wired connection using DHCP to automatically get a "
 19.1017 +"random IP or configure a static/fixed IP"
 19.1018  msgstr ""
 19.1019  
 19.1020 -#: network.cgi:145
 19.1021 +#: network.cgi:150
 19.1022  msgid "Configuration"
 19.1023  msgstr ""
 19.1024  
 19.1025 -#: network.cgi:152 network.cgi:241
 19.1026 +#: network.cgi:157 network.cgi:247
 19.1027  msgid "Value"
 19.1028  msgstr ""
 19.1029  
 19.1030 -#: network.cgi:156 lib/libtazpanel:86
 19.1031 +#: network.cgi:162 lib/libtazpanel:97
 19.1032  msgid "Interface"
 19.1033  msgstr ""
 19.1034  
 19.1035 -#: network.cgi:160
 19.1036 +#: network.cgi:166
 19.1037  msgid "IP address"
 19.1038  msgstr ""
 19.1039  
 19.1040 -#: network.cgi:164
 19.1041 +#: network.cgi:170
 19.1042  msgid "Netmask"
 19.1043  msgstr ""
 19.1044  
 19.1045 -#: network.cgi:168
 19.1046 +#: network.cgi:174
 19.1047  msgid "Gateway"
 19.1048  msgstr ""
 19.1049  
 19.1050 -#: network.cgi:172
 19.1051 +#: network.cgi:178
 19.1052  msgid "DNS server"
 19.1053  msgstr ""
 19.1054  
 19.1055 -#: network.cgi:176
 19.1056 +#: network.cgi:183
 19.1057  msgid "Activate (static)"
 19.1058  msgstr ""
 19.1059  
 19.1060 -#: network.cgi:177
 19.1061 +#: network.cgi:184
 19.1062  msgid "Activate (DHCP)"
 19.1063  msgstr ""
 19.1064  
 19.1065 -#: network.cgi:178
 19.1066 +#: network.cgi:185
 19.1067  msgid "Disable"
 19.1068  msgstr ""
 19.1069  
 19.1070 -#: network.cgi:181 network.cgi:260
 19.1071 +#: network.cgi:188 network.cgi:266
 19.1072  msgid "Configuration file"
 19.1073  msgstr ""
 19.1074  
 19.1075 -#: network.cgi:183
 19.1076 +#: network.cgi:190
 19.1077  msgid ""
 19.1078 -"These values are the ethernet settings in the main\n"
 19.1079 -"/etc/network.conf configuration file"
 19.1080 +"These values are the ethernet settings in the main /etc/network.conf "
 19.1081 +"configuration file"
 19.1082  msgstr ""
 19.1083  
 19.1084 -#: network.cgi:190 network.cgi:269
 19.1085 +#: network.cgi:196 network.cgi:274
 19.1086  msgid "Manual Edit"
 19.1087  msgstr ""
 19.1088  
 19.1089 -#: network.cgi:196
 19.1090 +#: network.cgi:202
 19.1091  msgid "Scanning wireless interface..."
 19.1092  msgstr ""
 19.1093  
 19.1094 -#: network.cgi:200
 19.1095 +#: network.cgi:206
 19.1096  msgid "Wireless connection"
 19.1097  msgstr ""
 19.1098  
 19.1099 -#: network.cgi:203 network.cgi:289
 19.1100 +#: network.cgi:209 network.cgi:293 boot.cgi:167
 19.1101  msgid "Start"
 19.1102  msgstr ""
 19.1103  
 19.1104 -#: network.cgi:205 network.cgi:291
 19.1105 +#: network.cgi:211 network.cgi:295 boot.cgi:155
 19.1106  msgid "Stop"
 19.1107  msgstr ""
 19.1108  
 19.1109 -#: network.cgi:207
 19.1110 +#: network.cgi:213
 19.1111  msgid "Scan"
 19.1112  msgstr ""
 19.1113  
 19.1114 -#: network.cgi:234
 19.1115 +#: network.cgi:240
 19.1116  msgid "Connection"
 19.1117  msgstr ""
 19.1118  
 19.1119 -#: network.cgi:245
 19.1120 +#: network.cgi:251
 19.1121  msgid "Wifi name (ESSID)"
 19.1122  msgstr ""
 19.1123  
 19.1124 -#: network.cgi:249
 19.1125 +#: network.cgi:255
 19.1126  msgid "Password (Wifi key)"
 19.1127  msgstr ""
 19.1128  
 19.1129 -#: network.cgi:253
 19.1130 +#: network.cgi:259
 19.1131  msgid "Encryption type"
 19.1132  msgstr ""
 19.1133  
 19.1134 -#: network.cgi:257
 19.1135 +#: network.cgi:263
 19.1136  msgid "Configure"
 19.1137  msgstr ""
 19.1138  
 19.1139 -#: network.cgi:262
 19.1140 +#: network.cgi:268
 19.1141  msgid ""
 19.1142 -"These values are the wifi settings in the main\n"
 19.1143 -"/etc/network.conf configuration file"
 19.1144 +"These values are the wifi settings in the main /etc/network.conf "
 19.1145 +"configuration file"
 19.1146  msgstr ""
 19.1147  
 19.1148 -#: network.cgi:271
 19.1149 -msgid "Output of"
 19.1150 +#: network.cgi:276
 19.1151 +msgid "Output of iwconfig"
 19.1152  msgstr ""
 19.1153  
 19.1154 -#: network.cgi:282
 19.1155 +#: network.cgi:286
 19.1156  msgid "Networking"
 19.1157  msgstr ""
 19.1158  
 19.1159 -#: network.cgi:284
 19.1160 +#: network.cgi:288
 19.1161  msgid "Manage network connections and services"
 19.1162  msgstr ""
 19.1163  
 19.1164 -#: network.cgi:293
 19.1165 +#: network.cgi:297
 19.1166  msgid "Restart"
 19.1167  msgstr ""
 19.1168  
 19.1169 -#: network.cgi:296
 19.1170 +#: network.cgi:300
 19.1171  msgid "Configuration:"
 19.1172  msgstr ""
 19.1173  
 19.1174 -#: network.cgi:306
 19.1175 +#: network.cgi:309
 19.1176  msgid "Hosts"
 19.1177  msgstr ""
 19.1178  
 19.1179 -#: network.cgi:311
 19.1180 +#: network.cgi:314
 19.1181  msgid "Edit hosts"
 19.1182  msgstr ""
 19.1183  
 19.1184 -#: network.cgi:313 installer.cgi:438
 19.1185 +#: network.cgi:316 installer.cgi:433
 19.1186  msgid "Hostname"
 19.1187  msgstr ""
 19.1188  
 19.1189 -#: network.cgi:316
 19.1190 +#: network.cgi:320
 19.1191  msgid "Change hostname"
 19.1192  msgstr ""
 19.1193  
 19.1194 -#: network.cgi:321
 19.1195 -msgid "Output of "
 19.1196 +#: network.cgi:324
 19.1197 +msgid "Output of ifconfig"
 19.1198  msgstr ""
 19.1199  
 19.1200 -#: network.cgi:327
 19.1201 +#: network.cgi:328
 19.1202  msgid "Routing table"
 19.1203  msgstr ""
 19.1204  
 19.1205 -#: network.cgi:333
 19.1206 +#: network.cgi:332
 19.1207  msgid "Domain name resolution"
 19.1208  msgstr ""
 19.1209  
 19.1210 -#: network.cgi:339
 19.1211 +#: network.cgi:336
 19.1212  msgid "ARP table"
 19.1213  msgstr ""
 19.1214  
 19.1215 -#: network.cgi:345
 19.1216 +#: network.cgi:340
 19.1217  msgid "IP Connections"
 19.1218  msgstr ""
 19.1219  
 19.1220 @@ -769,127 +1018,155 @@
 19.1221  msgid "Boot log files"
 19.1222  msgstr ""
 19.1223  
 19.1224 -#: boot.cgi:31 boot.cgi:44
 19.1225 +#: boot.cgi:31 boot.cgi:42
 19.1226  msgid "X server"
 19.1227  msgstr ""
 19.1228  
 19.1229 -#: boot.cgi:61 boot.cgi:244 styles/default/header.sh:67
 19.1230 +#: boot.cgi:46
 19.1231 +msgid "Show more..."
 19.1232 +msgstr ""
 19.1233 +
 19.1234 +#: boot.cgi:61 boot.cgi:252 styles/default/header.sh:67
 19.1235  msgid "Manage daemons"
 19.1236  msgstr ""
 19.1237  
 19.1238 -#: boot.cgi:63
 19.1239 +#: boot.cgi:62
 19.1240  msgid "Check, start and stop daemons on SliTaz"
 19.1241  msgstr ""
 19.1242  
 19.1243 -#: boot.cgi:87
 19.1244 +#: boot.cgi:85
 19.1245  msgid "Action"
 19.1246  msgstr ""
 19.1247  
 19.1248 -#: boot.cgi:88
 19.1249 +#: boot.cgi:86
 19.1250  msgid "PID"
 19.1251  msgstr ""
 19.1252  
 19.1253 -#: boot.cgi:109
 19.1254 -msgid "<td>SliTaz Firewall with iptable rules</td>"
 19.1255 +#: boot.cgi:108
 19.1256 +msgid "SliTaz Firewall with iptable rules"
 19.1257  msgstr ""
 19.1258  
 19.1259 -#: boot.cgi:111
 19.1260 -msgid "<td>Small and fast web server with CGI support</td>"
 19.1261 +#: boot.cgi:110
 19.1262 +msgid "Small and fast web server with CGI support"
 19.1263  msgstr ""
 19.1264  
 19.1265 -#: boot.cgi:113
 19.1266 -msgid "<td>Network time protocol daemon</td>"
 19.1267 +#: boot.cgi:112
 19.1268 +msgid "Network time protocol daemon"
 19.1269  msgstr ""
 19.1270  
 19.1271 -#: boot.cgi:115
 19.1272 -msgid "<td>Anonymous FTP server</td>"
 19.1273 +#: boot.cgi:114
 19.1274 +msgid "Anonymous FTP server"
 19.1275  msgstr ""
 19.1276  
 19.1277 -#: boot.cgi:117
 19.1278 -msgid "<td>Busybox DHCP server</td>"
 19.1279 +#: boot.cgi:116
 19.1280 +msgid "Busybox DHCP server"
 19.1281  msgstr ""
 19.1282  
 19.1283 -#: boot.cgi:119
 19.1284 -msgid "<td>Linux Kernel log daemon</td>"
 19.1285 +#: boot.cgi:118
 19.1286 +msgid "Linux Kernel log daemon"
 19.1287  msgstr ""
 19.1288  
 19.1289 -#: boot.cgi:121
 19.1290 -msgid "<td>Execute scheduled commands</td>"
 19.1291 +#: boot.cgi:120
 19.1292 +msgid "Execute scheduled commands"
 19.1293  msgstr ""
 19.1294  
 19.1295 -#: boot.cgi:123
 19.1296 -msgid "<td>Small static DNS server daemon</td>"
 19.1297 +#: boot.cgi:122
 19.1298 +msgid "Small static DNS server daemon"
 19.1299  msgstr ""
 19.1300  
 19.1301 -#: boot.cgi:125
 19.1302 -msgid "<td>Transfer a file on tftp request</td>"
 19.1303 +#: boot.cgi:124
 19.1304 +msgid "Transfer a file on tftp request"
 19.1305  msgstr ""
 19.1306  
 19.1307 -#: boot.cgi:127
 19.1308 -msgid "<td>Listen for network connections and launch programs</td>"
 19.1309 +#: boot.cgi:126
 19.1310 +msgid "Listen for network connections and launch programs"
 19.1311  msgstr ""
 19.1312  
 19.1313 -#: boot.cgi:129
 19.1314 -msgid "<td>Manage a ZeroConf IPv4 link-local address</td>"
 19.1315 +#: boot.cgi:128
 19.1316 +msgid "Manage a ZeroConf IPv4 link-local address"
 19.1317  msgstr ""
 19.1318  
 19.1319 -#: boot.cgi:191
 19.1320 +#: boot.cgi:153
 19.1321 +msgid "Started"
 19.1322 +msgstr ""
 19.1323 +
 19.1324 +#: boot.cgi:165
 19.1325 +msgid "Stopped"
 19.1326 +msgstr ""
 19.1327 +
 19.1328 +#: boot.cgi:193
 19.1329  msgid "GRUB Boot loader"
 19.1330  msgstr ""
 19.1331  
 19.1332 -#: boot.cgi:193
 19.1333 +#: boot.cgi:195
 19.1334  msgid "The first application started when the computer powers on"
 19.1335  msgstr ""
 19.1336  
 19.1337 -#: boot.cgi:206 settings.cgi:283
 19.1338 +#: boot.cgi:201
 19.1339 +msgid "Default entry:"
 19.1340 +msgstr ""
 19.1341 +
 19.1342 +#: boot.cgi:203
 19.1343 +msgid "Timeout:"
 19.1344 +msgstr ""
 19.1345 +
 19.1346 +#: boot.cgi:205
 19.1347 +msgid "Splash image:"
 19.1348 +msgstr ""
 19.1349 +
 19.1350 +#: boot.cgi:208 settings.cgi:289
 19.1351  msgid "Change"
 19.1352  msgstr ""
 19.1353  
 19.1354 -#: boot.cgi:211
 19.1355 +#: boot.cgi:210
 19.1356 +msgid "View or edit menu.lst"
 19.1357 +msgstr ""
 19.1358 +
 19.1359 +#: boot.cgi:213
 19.1360  msgid "Boot entries"
 19.1361  msgstr ""
 19.1362  
 19.1363 -#: boot.cgi:217
 19.1364 +#: boot.cgi:219
 19.1365  msgid "Entry"
 19.1366  msgstr ""
 19.1367  
 19.1368 -#: boot.cgi:225
 19.1369 +#: boot.cgi:235
 19.1370  msgid "Web boot is available with gPXE"
 19.1371  msgstr ""
 19.1372  
 19.1373 -#: boot.cgi:235
 19.1374 +#: boot.cgi:245
 19.1375  msgid "Boot &amp; Start services"
 19.1376  msgstr ""
 19.1377  
 19.1378 -#: boot.cgi:237
 19.1379 +#: boot.cgi:246
 19.1380  msgid "Everything that happens before user login"
 19.1381  msgstr ""
 19.1382  
 19.1383 -#: boot.cgi:242 styles/default/header.sh:65
 19.1384 +#: boot.cgi:250 styles/default/header.sh:65
 19.1385  msgid "Boot logs"
 19.1386  msgstr ""
 19.1387  
 19.1388 -#: boot.cgi:245 styles/default/header.sh:69
 19.1389 +#: boot.cgi:253 styles/default/header.sh:69
 19.1390  msgid "Boot loader"
 19.1391  msgstr ""
 19.1392  
 19.1393 -#: boot.cgi:250
 19.1394 +#: boot.cgi:258
 19.1395  msgid "Main configuration file:"
 19.1396  msgstr ""
 19.1397  
 19.1398 -#: boot.cgi:252
 19.1399 +#: boot.cgi:260
 19.1400  msgid "Login manager settings:"
 19.1401  msgstr ""
 19.1402  
 19.1403 -#: boot.cgi:256
 19.1404 +#: boot.cgi:264
 19.1405  msgid "Kernel cmdline"
 19.1406  msgstr ""
 19.1407  
 19.1408 -#: boot.cgi:260
 19.1409 +#: boot.cgi:268
 19.1410  msgid "Local startup commands"
 19.1411  msgstr ""
 19.1412  
 19.1413 -#: boot.cgi:265
 19.1414 +#: boot.cgi:273
 19.1415  msgid "Edit script"
 19.1416  msgstr ""
 19.1417  
 19.1418 @@ -897,59 +1174,99 @@
 19.1419  msgid "TazPanel - Hardware"
 19.1420  msgstr ""
 19.1421  
 19.1422 -#: hardware.cgi:28
 19.1423 +#: hardware.cgi:29
 19.1424  msgid "Detect hardware"
 19.1425  msgstr ""
 19.1426  
 19.1427 -#: hardware.cgi:29
 19.1428 +#: hardware.cgi:30
 19.1429  msgid "Detect PCI and USB hardware"
 19.1430  msgstr ""
 19.1431  
 19.1432 -#: hardware.cgi:42 styles/default/header.sh:75
 19.1433 +#: hardware.cgi:42 hardware.cgi:117 styles/default/header.sh:75
 19.1434  msgid "Kernel modules"
 19.1435  msgstr ""
 19.1436  
 19.1437 +#: hardware.cgi:46
 19.1438 +msgid "Modules search"
 19.1439 +msgstr ""
 19.1440 +
 19.1441  #: hardware.cgi:49
 19.1442  msgid "Manage, search or get information about the Linux kernel modules"
 19.1443  msgstr ""
 19.1444  
 19.1445 -#: hardware.cgi:55
 19.1446 -msgid "Detailed information for module: "
 19.1447 +#: hardware.cgi:56
 19.1448 +#, sh-format
 19.1449 +msgid "Detailed information for module: $get_modinfo"
 19.1450  msgstr ""
 19.1451  
 19.1452 -#: hardware.cgi:71
 19.1453 -msgid "Matching result(s) for: "
 19.1454 +#: hardware.cgi:70
 19.1455 +#, sh-format
 19.1456 +msgid "Matching result(s) for: $get_search"
 19.1457  msgstr ""
 19.1458  
 19.1459 -#: hardware.cgi:84
 19.1460 +#: hardware.cgi:76
 19.1461 +msgid "Module:"
 19.1462 +msgstr ""
 19.1463 +
 19.1464 +#: hardware.cgi:83
 19.1465  msgid "Module"
 19.1466  msgstr ""
 19.1467  
 19.1468 -#: hardware.cgi:85 lib/libtazpanel:206
 19.1469 +#: hardware.cgi:84 lib/libtazpanel:217
 19.1470  msgid "Size"
 19.1471  msgstr ""
 19.1472  
 19.1473 -#: hardware.cgi:86 lib/libtazpanel:208
 19.1474 +#: hardware.cgi:85 lib/libtazpanel:219
 19.1475  msgid "Used"
 19.1476  msgstr ""
 19.1477  
 19.1478 -#: hardware.cgi:87
 19.1479 +#: hardware.cgi:86
 19.1480  msgid "by"
 19.1481  msgstr ""
 19.1482  
 19.1483 -#: hardware.cgi:113
 19.1484 +#: hardware.cgi:112
 19.1485  msgid "Drivers &amp; Devices"
 19.1486  msgstr ""
 19.1487  
 19.1488 -#: hardware.cgi:114
 19.1489 +#: hardware.cgi:113
 19.1490  msgid "Manage your computer hardware"
 19.1491  msgstr ""
 19.1492  
 19.1493 -#: hardware.cgi:171
 19.1494 +#: hardware.cgi:119 styles/default/header.sh:77
 19.1495 +msgid "Detect PCI/USB"
 19.1496 +msgstr ""
 19.1497 +
 19.1498 +#: hardware.cgi:140
 19.1499 +msgid "Battery"
 19.1500 +msgstr ""
 19.1501 +
 19.1502 +#: hardware.cgi:142
 19.1503 +msgid "health"
 19.1504 +msgstr ""
 19.1505 +
 19.1506 +#: hardware.cgi:151
 19.1507 +#, sh-format
 19.1508 +msgid "Discharging $rempct% - $remtimef"
 19.1509 +msgstr ""
 19.1510 +
 19.1511 +#: hardware.cgi:155
 19.1512 +#, sh-format
 19.1513 +msgid "Charging $rempct% - $remtimef"
 19.1514 +msgstr ""
 19.1515 +
 19.1516 +#: hardware.cgi:157
 19.1517 +msgid "Charged 100%"
 19.1518 +msgstr ""
 19.1519 +
 19.1520 +#: hardware.cgi:165
 19.1521 +msgid "Temperature:"
 19.1522 +msgstr ""
 19.1523 +
 19.1524 +#: hardware.cgi:180
 19.1525  msgid "Brightness"
 19.1526  msgstr ""
 19.1527  
 19.1528 -#: hardware.cgi:217
 19.1529 +#: hardware.cgi:242
 19.1530  msgid "System memory"
 19.1531  msgstr ""
 19.1532  
 19.1533 @@ -957,7 +1274,7 @@
 19.1534  msgid "TazPanel - Settings"
 19.1535  msgstr ""
 19.1536  
 19.1537 -#: settings.cgi:88 settings.cgi:176
 19.1538 +#: settings.cgi:87 settings.cgi:183
 19.1539  msgid "Manage users"
 19.1540  msgstr ""
 19.1541  
 19.1542 @@ -989,154 +1306,167 @@
 19.1543  msgid "Shell"
 19.1544  msgstr ""
 19.1545  
 19.1546 -#: settings.cgi:138
 19.1547 +#: settings.cgi:143
 19.1548  msgid "Password:"
 19.1549  msgstr ""
 19.1550  
 19.1551 -#: settings.cgi:140
 19.1552 +#: settings.cgi:145
 19.1553  msgid "Change password"
 19.1554  msgstr ""
 19.1555  
 19.1556 -#: settings.cgi:144
 19.1557 +#: settings.cgi:149
 19.1558  msgid "Add a new user"
 19.1559  msgstr ""
 19.1560  
 19.1561 -#: settings.cgi:147 installer.cgi:467
 19.1562 +#: settings.cgi:154 installer.cgi:465
 19.1563  msgid "User login:"
 19.1564  msgstr ""
 19.1565  
 19.1566 -#: settings.cgi:149
 19.1567 +#: settings.cgi:156
 19.1568  msgid "User password:"
 19.1569  msgstr ""
 19.1570  
 19.1571 -#: settings.cgi:151
 19.1572 +#: settings.cgi:159
 19.1573  msgid "Create user"
 19.1574  msgstr ""
 19.1575  
 19.1576 -#: settings.cgi:154
 19.1577 +#: settings.cgi:163
 19.1578  msgid "Current user sessions"
 19.1579  msgstr ""
 19.1580  
 19.1581 -#: settings.cgi:159
 19.1582 +#: settings.cgi:167
 19.1583  msgid "Last user sessions"
 19.1584  msgstr ""
 19.1585  
 19.1586 -#: settings.cgi:171
 19.1587 +#: settings.cgi:178
 19.1588  msgid "System settings"
 19.1589  msgstr ""
 19.1590  
 19.1591 -#: settings.cgi:172
 19.1592 +#: settings.cgi:179
 19.1593  msgid "Manage system time, users or language settings"
 19.1594  msgstr ""
 19.1595  
 19.1596 -#: settings.cgi:179
 19.1597 +#: settings.cgi:186
 19.1598  msgid "System time"
 19.1599  msgstr ""
 19.1600  
 19.1601 -#: settings.cgi:181
 19.1602 -msgid "Time zome      :"
 19.1603 +#: settings.cgi:189
 19.1604 +msgid "Time zome:"
 19.1605  msgstr ""
 19.1606  
 19.1607 -#: settings.cgi:182
 19.1608 -msgid "System time    :"
 19.1609 +#: settings.cgi:190
 19.1610 +msgid "System time:"
 19.1611  msgstr ""
 19.1612  
 19.1613 -#: settings.cgi:183
 19.1614 -msgid "Hardware clock :"
 19.1615 +#: settings.cgi:191
 19.1616 +msgid "Hardware clock:"
 19.1617  msgstr ""
 19.1618  
 19.1619 -#: settings.cgi:185
 19.1620 +#: settings.cgi:193
 19.1621  msgid "Sync online"
 19.1622  msgstr ""
 19.1623  
 19.1624 -#: settings.cgi:186
 19.1625 +#: settings.cgi:194
 19.1626  msgid "Set hardware clock"
 19.1627  msgstr ""
 19.1628  
 19.1629 -#: settings.cgi:193
 19.1630 +#: settings.cgi:200
 19.1631  msgid "System language"
 19.1632  msgstr ""
 19.1633  
 19.1634 -#: settings.cgi:204
 19.1635 +#: settings.cgi:211
 19.1636  #, sh-format
 19.1637  msgid ""
 19.1638 -"You must logout and login again to your current\n"
 19.1639 -"\t\t\t\tsession to use $new_locale locale."
 19.1640 +"You must logout and login again to your current session to use $new_locale "
 19.1641 +"locale."
 19.1642  msgstr ""
 19.1643  
 19.1644 -#: settings.cgi:207
 19.1645 -msgid "Current system locales: "
 19.1646 +#: settings.cgi:214
 19.1647 +msgid "Current system locales:"
 19.1648  msgstr ""
 19.1649  
 19.1650 -#: settings.cgi:213
 19.1651 +#: settings.cgi:220
 19.1652  msgid "Available locales:"
 19.1653  msgstr ""
 19.1654  
 19.1655 -#: settings.cgi:218 settings.cgi:266 settings.cgi:276
 19.1656 +#: settings.cgi:225 settings.cgi:271 settings.cgi:282
 19.1657  msgid "Activate"
 19.1658  msgstr ""
 19.1659  
 19.1660 -#: settings.cgi:222
 19.1661 +#: settings.cgi:228
 19.1662  msgid "Console keymap"
 19.1663  msgstr ""
 19.1664  
 19.1665 -#: settings.cgi:234
 19.1666 -msgid "Current console keymap: "
 19.1667 +#: settings.cgi:241
 19.1668 +#, sh-format
 19.1669 +msgid "Current console keymap: $keymap"
 19.1670  msgstr ""
 19.1671  
 19.1672 -#: settings.cgi:253
 19.1673 +#: settings.cgi:258
 19.1674  msgid "Suggested keymap for Xorg:"
 19.1675  msgstr ""
 19.1676  
 19.1677 -#: settings.cgi:262
 19.1678 +#: settings.cgi:267
 19.1679  msgid "Available keymaps:"
 19.1680  msgstr ""
 19.1681  
 19.1682 -#: settings.cgi:269
 19.1683 +#: settings.cgi:274
 19.1684  msgid "Panel configuration"
 19.1685  msgstr ""
 19.1686  
 19.1687 -#: settings.cgi:272
 19.1688 +#: settings.cgi:278
 19.1689  msgid "Style:"
 19.1690  msgstr ""
 19.1691  
 19.1692 -#: settings.cgi:281
 19.1693 +#: settings.cgi:287
 19.1694  msgid "Panel password:"
 19.1695  msgstr ""
 19.1696  
 19.1697 -#: settings.cgi:287
 19.1698 -msgid "Configuration files: "
 19.1699 +#: settings.cgi:293
 19.1700 +msgid "Configuration files:"
 19.1701  msgstr ""
 19.1702  
 19.1703 -#: settings.cgi:289 styles/default/header.sh:24
 19.1704 +#: settings.cgi:295 styles/default/header.sh:24
 19.1705  msgid "Panel"
 19.1706  msgstr ""
 19.1707  
 19.1708 -#: settings.cgi:291
 19.1709 +#: settings.cgi:297
 19.1710  msgid "Server"
 19.1711  msgstr ""
 19.1712  
 19.1713 -#: settings.cgi:294
 19.1714 +#: settings.cgi:300
 19.1715  msgid "TazPanel provides a debuging mode and page:"
 19.1716  msgstr ""
 19.1717  
 19.1718 -#: lib/libtazpanel:89
 19.1719 +#: lib/libtazpanel:83
 19.1720 +msgid "connected"
 19.1721 +msgstr ""
 19.1722 +
 19.1723 +#: lib/libtazpanel:100
 19.1724  msgid "IP Address"
 19.1725  msgstr ""
 19.1726  
 19.1727 -#: lib/libtazpanel:90
 19.1728 +#: lib/libtazpanel:101
 19.1729  msgid "Scan ports"
 19.1730  msgstr ""
 19.1731  
 19.1732 -#: lib/libtazpanel:205
 19.1733 +#: lib/libtazpanel:214
 19.1734  msgid "Disk"
 19.1735  msgstr ""
 19.1736  
 19.1737 -#: lib/libtazpanel:207
 19.1738 +#: lib/libtazpanel:215
 19.1739 +msgid "Label"
 19.1740 +msgstr ""
 19.1741 +
 19.1742 +#: lib/libtazpanel:216
 19.1743 +msgid "Type"
 19.1744 +msgstr ""
 19.1745 +
 19.1746 +#: lib/libtazpanel:218
 19.1747  msgid "Available"
 19.1748  msgstr ""
 19.1749  
 19.1750 -#: lib/libtazpanel:209
 19.1751 +#: lib/libtazpanel:220
 19.1752  msgid "Mount point"
 19.1753  msgstr ""
 19.1754  
 19.1755 @@ -1144,261 +1474,260 @@
 19.1756  msgid "TazPanel - Installer"
 19.1757  msgstr ""
 19.1758  
 19.1759 -#: installer.cgi:120 installer.cgi:126
 19.1760 +#: installer.cgi:116
 19.1761 +#, sh-format
 19.1762 +msgid "Creating setup file $INSTFILE."
 19.1763 +msgstr ""
 19.1764 +
 19.1765 +#: installer.cgi:120 installer.cgi:127
 19.1766  msgid "Setup File Error"
 19.1767  msgstr ""
 19.1768  
 19.1769 -#: installer.cgi:141
 19.1770 +#: installer.cgi:121
 19.1771 +#, sh-format
 19.1772 +msgid "The setup file <strong>$INSTFILE</strong> doesn't exist."
 19.1773 +msgstr ""
 19.1774 +
 19.1775 +#: installer.cgi:142
 19.1776  msgid "SliTaz Installer"
 19.1777  msgstr ""
 19.1778  
 19.1779 -#: installer.cgi:143
 19.1780 +#: installer.cgi:144
 19.1781  msgid ""
 19.1782 -"The SliTaz Installer installs or upgrades SliTaz to a hard disk\n"
 19.1783 -"\tdrive from a device like a Live-CD or LiveUSB key, from a SliTaz ISO "
 19.1784 -"file,\n"
 19.1785 -"\tor from the web by downloading an ISO file."
 19.1786 +"The SliTaz Installer installs or upgrades SliTaz to a hard disk drive from a "
 19.1787 +"device like a Live-CD or LiveUSB key, from a SliTaz ISO file, or from the "
 19.1788 +"web by downloading an ISO file."
 19.1789  msgstr ""
 19.1790  
 19.1791  #: installer.cgi:157
 19.1792  msgid ""
 19.1793 -"Install SliTaz on a partition of your hard disk drive. If\n"
 19.1794 -"\tyou decide to format your partition, all data will be lost. If you do not\n"
 19.1795 -"\tformat, all data except for any existing /home directory will be removed,\n"
 19.1796 -"\tthe home directory will be kept as is."
 19.1797 +"Install SliTaz on a partition of your hard disk drive. If you decide to "
 19.1798 +"format your partition, all data will be lost. If you do not format, all data "
 19.1799 +"except for any existing /home directory will be removed, the home directory "
 19.1800 +"will be kept as is."
 19.1801  msgstr ""
 19.1802  
 19.1803 -#: installer.cgi:163
 19.1804 +#: installer.cgi:162
 19.1805  msgid ""
 19.1806 -"Before installation, you may need to create or resize partitions\n"
 19.1807 -"\ton your hard disk drive in order to make space for SliTaz GNU/Linux.\n"
 19.1808 -"\tYou can graphically manage your partitions with Gparted"
 19.1809 +"Before installation, you may need to create or resize partitions on your "
 19.1810 +"hard disk drive in order to make space for SliTaz GNU/Linux. You can "
 19.1811 +"graphically manage your partitions with Gparted"
 19.1812  msgstr ""
 19.1813  
 19.1814 -#: installer.cgi:169 installer.cgi:249 styles/default/header.sh:90
 19.1815 +#: installer.cgi:166 installer.cgi:244 styles/default/header.sh:90
 19.1816  msgid "Install SliTaz"
 19.1817  msgstr ""
 19.1818  
 19.1819 -#: installer.cgi:177
 19.1820 +#: installer.cgi:175
 19.1821  msgid "Upgrade"
 19.1822  msgstr ""
 19.1823  
 19.1824 -#: installer.cgi:179
 19.1825 +#: installer.cgi:177
 19.1826  msgid ""
 19.1827 -"Upgrade an already installed SliTaz system on your hard disk\n"
 19.1828 -"\tdrive. Your /home /etc /var/www directories will be kept, all other "
 19.1829 -"directories\n"
 19.1830 -"\twill be removed. Any additional packages added to your old Slitaz system\n"
 19.1831 -"\twill be updated as long you have an active internet connection."
 19.1832 +"Upgrade an already installed SliTaz system on your hard disk drive. Your /"
 19.1833 +"home /etc /var/www directories will be kept, all other directories will be "
 19.1834 +"removed. Any additional packages added to your old Slitaz system will be "
 19.1835 +"updated as long you have an active internet connection."
 19.1836  msgstr ""
 19.1837  
 19.1838 -#: installer.cgi:186 installer.cgi:261
 19.1839 +#: installer.cgi:182 installer.cgi:257
 19.1840  msgid "Upgrade SliTaz"
 19.1841  msgstr ""
 19.1842  
 19.1843 -#: installer.cgi:194
 19.1844 +#: installer.cgi:190
 19.1845  msgid "Partitioning"
 19.1846  msgstr ""
 19.1847  
 19.1848 -#: installer.cgi:197
 19.1849 +#: installer.cgi:193
 19.1850  msgid ""
 19.1851 -"On most used systems, the hard drive is already dedicated to\n"
 19.1852 -"\tpartitions for Windows<sup>&copy;</sup>, or Linux, or another operating\n"
 19.1853 -"\tsystem. You'll need to resize these partitions in order to make space for\n"
 19.1854 -"\tSliTaz GNU/Linux. SliTaz will co-exist with other operating systems "
 19.1855 -"already\n"
 19.1856 -"\tinstalled on your hard drive."
 19.1857 +"On most used systems, the hard drive is already dedicated to partitions for "
 19.1858 +"Windows<sup>&trade;</sup>, or Linux, or another operating system. You'll "
 19.1859 +"need to resize these partitions in order to make space for SliTaz GNU/Linux. "
 19.1860 +"SliTaz will co-exist with other operating systems already installed on your "
 19.1861 +"hard drive."
 19.1862 +msgstr ""
 19.1863 +
 19.1864 +#: installer.cgi:199
 19.1865 +msgid ""
 19.1866 +"The amount of space needed depends on how much software you plan to install "
 19.1867 +"and how much space you require for users. It's conceivable that you could "
 19.1868 +"run a minimal SliTaz system in 300 megs or less, but 2 gigs is indeed more "
 19.1869 +"comfy."
 19.1870  msgstr ""
 19.1871  
 19.1872  #: installer.cgi:204
 19.1873  msgid ""
 19.1874 -"The amount of space needed depends on how much software you\n"
 19.1875 -"\tplan to install\tand how much space you require for users. It's "
 19.1876 -"conceivable\n"
 19.1877 -"\tthat you could run a minimal SliTaz system in 300 megs or less, but 2 "
 19.1878 -"gigs\n"
 19.1879 -"\tis indeed more comfy."
 19.1880 +"A separate home partition, and a partition that will be used as Linux swap "
 19.1881 +"space may be created if needed. Slitaz detects and uses swap partitions "
 19.1882 +"automatically."
 19.1883  msgstr ""
 19.1884  
 19.1885 -#: installer.cgi:209
 19.1886 +#: installer.cgi:212
 19.1887  msgid ""
 19.1888 -"A separate home partition, and a partition that will be used\n"
 19.1889 -"\tas Linux swap space may be created if needed. Slitaz detects and uses "
 19.1890 -"swap\n"
 19.1891 -"\tpartitions automatically."
 19.1892 +"You can graphically manage your partitions with Gparted. GParted is a "
 19.1893 +"partition editor for graphically managing your disk partitions. Gparted "
 19.1894 +"allows you to create, destroy, resize and copy partitions without data loss."
 19.1895  msgstr ""
 19.1896  
 19.1897 -#: installer.cgi:217
 19.1898 +#: installer.cgi:216
 19.1899  msgid ""
 19.1900 -"You can graphically manage your partitions with Gparted. GParted\n"
 19.1901 -"\tis a partition editor for graphically managing your disk partitions. "
 19.1902 -"Gparted\n"
 19.1903 -"\tallows you to create, destroy, resize and copy partitions without data\n"
 19.1904 -"\tloss."
 19.1905 +"Gparted supports ext2, ext3, ext4, linux swap, ntfs and fat32 filesystems "
 19.1906 +"right out of the box. Support for xjs, jfs, hfs and other filesystems is "
 19.1907 +"available as well but you first need to add drivers for these filesystems by "
 19.1908 +"installing the related packages xfsprogs, jfsutils, linux-hfs and so on."
 19.1909  msgstr ""
 19.1910  
 19.1911  #: installer.cgi:223
 19.1912 -msgid ""
 19.1913 -"Gparted supports ext2, ext3, ext4, linux swap, ntfs and fat32\n"
 19.1914 -"\tfilesystems right out of the box. Support for xjs, jfs, hfs and other\n"
 19.1915 -"\tfilesystems is available as well but you first need to add drivers for\n"
 19.1916 -"\tthese filesystems by installing the related packages xfsprogs, jfsutils,\n"
 19.1917 -"\tlinux-hfs and so on."
 19.1918 -msgstr ""
 19.1919 -
 19.1920 -#: installer.cgi:230
 19.1921  msgid "Execute Gparted"
 19.1922  msgstr ""
 19.1923  
 19.1924 -#: installer.cgi:231
 19.1925 +#: installer.cgi:225
 19.1926  msgid "Continue installation"
 19.1927  msgstr ""
 19.1928  
 19.1929 -#: installer.cgi:232
 19.1930 +#: installer.cgi:227
 19.1931  msgid ""
 19.1932 -"Once you've made room for SliTaz on your drive,\tyou\n"
 19.1933 -"\tshould be able to continue installation."
 19.1934 +"Once you've made room for SliTaz on your drive, you should be able to "
 19.1935 +"continue installation."
 19.1936  msgstr ""
 19.1937  
 19.1938 -#: installer.cgi:237 installer.cgi:501 installer.cgi:512
 19.1939 +#: installer.cgi:232 installer.cgi:502 installer.cgi:513
 19.1940  msgid "Back to Installer Start Page"
 19.1941  msgstr ""
 19.1942  
 19.1943 -#: installer.cgi:239
 19.1944 +#: installer.cgi:234
 19.1945  msgid "Continue Installation"
 19.1946  msgstr ""
 19.1947  
 19.1948 -#: installer.cgi:250
 19.1949 +#: installer.cgi:246
 19.1950  msgid ""
 19.1951 -"You're going to install SliTaz on a partition of your hard disk drive. If\n"
 19.1952 -"\tyou decide to format your HDD, all data will be lost. If you do not\n"
 19.1953 -"\tformat, all data except for any existing /home directory will be removed,\n"
 19.1954 -"\tthe home directory will be kept as is."
 19.1955 +"You're going to install SliTaz on a partition of your hard disk drive. If "
 19.1956 +"you decide to format your HDD, all data will be lost. If you do not format, "
 19.1957 +"all data except for any existing /home directory will be removed, the home "
 19.1958 +"directory will be kept as is."
 19.1959  msgstr ""
 19.1960  
 19.1961 -#: installer.cgi:262
 19.1962 +#: installer.cgi:259
 19.1963  msgid ""
 19.1964 -"You're going to upgrade an already installed SliTaz system on your hard "
 19.1965 -"disk\n"
 19.1966 -"\tdrive. Your /home /etc /var/www directories will be kept, all other "
 19.1967 -"directories\n"
 19.1968 -"\twill be removed. Any additional packages added to your old Slitaz system\n"
 19.1969 -"\twill be updated as long you have an active internet connection."
 19.1970 +"You're going to upgrade an already installed SliTaz system on your hard disk "
 19.1971 +"drive. Your /home /etc /var/www directories will be kept, all other "
 19.1972 +"directories will be removed. Any additional packages added to your old "
 19.1973 +"Slitaz system will be updated as long you have an active internet connection."
 19.1974 +msgstr ""
 19.1975 +
 19.1976 +#: installer.cgi:273
 19.1977 +msgid "Slitaz source media"
 19.1978  msgstr ""
 19.1979  
 19.1980  #: installer.cgi:277
 19.1981 -msgid "Slitaz source media"
 19.1982 +msgid "LiveCD"
 19.1983  msgstr ""
 19.1984  
 19.1985  #: installer.cgi:280
 19.1986 -msgid "LiveCD"
 19.1987 +msgid "LiveUSB:"
 19.1988  msgstr ""
 19.1989  
 19.1990 -#: installer.cgi:283
 19.1991 -msgid "LiveUSB"
 19.1992 +#: installer.cgi:306
 19.1993 +msgid "ISO file:"
 19.1994  msgstr ""
 19.1995  
 19.1996 -#: installer.cgi:309
 19.1997 -msgid "ISO file"
 19.1998 +#: installer.cgi:307
 19.1999 +msgid "Full path to the ISO image file"
 19.2000  msgstr ""
 19.2001  
 19.2002  #: installer.cgi:310
 19.2003 -msgid "Full path to the ISO image file"
 19.2004 +msgid "Web:"
 19.2005 +msgstr ""
 19.2006 +
 19.2007 +#: installer.cgi:311
 19.2008 +msgid "Stable"
 19.2009 +msgstr ""
 19.2010 +
 19.2011 +#: installer.cgi:312
 19.2012 +msgid "Cooking"
 19.2013  msgstr ""
 19.2014  
 19.2015  #: installer.cgi:314
 19.2016 -msgid "Stable"
 19.2017 +msgid "URL:"
 19.2018  msgstr ""
 19.2019  
 19.2020  #: installer.cgi:315
 19.2021 -msgid "Cooking"
 19.2022 -msgstr ""
 19.2023 -
 19.2024 -#: installer.cgi:316
 19.2025 -msgid "URL:"
 19.2026 -msgstr ""
 19.2027 -
 19.2028 -#: installer.cgi:317
 19.2029  msgid "Full url to an ISO image file"
 19.2030  msgstr ""
 19.2031  
 19.2032 -#: installer.cgi:327
 19.2033 +#: installer.cgi:324
 19.2034  msgid "Hard Disk Drive"
 19.2035  msgstr ""
 19.2036  
 19.2037 -#: installer.cgi:336
 19.2038 +#: installer.cgi:333
 19.2039  msgid "Install Slitaz to partition:"
 19.2040  msgstr ""
 19.2041  
 19.2042 -#: installer.cgi:341 installer.cgi:376 installer.cgi:409
 19.2043 +#: installer.cgi:338 installer.cgi:373 installer.cgi:405
 19.2044  msgid "None"
 19.2045  msgstr ""
 19.2046  
 19.2047 -#: installer.cgi:352
 19.2048 -msgid "Format partition as"
 19.2049 +#: installer.cgi:349 installer.cgi:416
 19.2050 +msgid "Format partition as:"
 19.2051  msgstr ""
 19.2052  
 19.2053 -#: installer.cgi:371
 19.2054 +#: installer.cgi:368
 19.2055  msgid "Existing SliTaz partition to upgrade:"
 19.2056  msgstr ""
 19.2057  
 19.2058 -#: installer.cgi:393
 19.2059 +#: installer.cgi:389
 19.2060  msgid "Options"
 19.2061  msgstr ""
 19.2062  
 19.2063 -#: installer.cgi:402
 19.2064 +#: installer.cgi:397
 19.2065  msgid "home partition"
 19.2066  msgstr ""
 19.2067  
 19.2068 -#: installer.cgi:404
 19.2069 +#: installer.cgi:400
 19.2070  msgid "Use a separate partition for /home:"
 19.2071  msgstr ""
 19.2072  
 19.2073 -#: installer.cgi:420
 19.2074 -msgid "Format partition as:"
 19.2075 -msgstr ""
 19.2076 -
 19.2077 -#: installer.cgi:439
 19.2078 +#: installer.cgi:435
 19.2079  msgid "Set Hostname to:"
 19.2080  msgstr ""
 19.2081  
 19.2082 -#: installer.cgi:440
 19.2083 +#: installer.cgi:436
 19.2084  msgid "Name of your system"
 19.2085  msgstr ""
 19.2086  
 19.2087 -#: installer.cgi:451
 19.2088 +#: installer.cgi:446
 19.2089  msgid "Root"
 19.2090  msgstr ""
 19.2091  
 19.2092 -#: installer.cgi:452
 19.2093 +#: installer.cgi:448
 19.2094  msgid "Root passwd:"
 19.2095  msgstr ""
 19.2096  
 19.2097 -#: installer.cgi:453 installer.cgi:455
 19.2098 +#: installer.cgi:449 installer.cgi:452
 19.2099  msgid "Password of root"
 19.2100  msgstr ""
 19.2101  
 19.2102 -#: installer.cgi:454 installer.cgi:473
 19.2103 +#: installer.cgi:451 installer.cgi:473
 19.2104  msgid "Confirm password:"
 19.2105  msgstr ""
 19.2106  
 19.2107 -#: installer.cgi:466
 19.2108 +#: installer.cgi:463
 19.2109  msgid "User"
 19.2110  msgstr ""
 19.2111  
 19.2112 -#: installer.cgi:468
 19.2113 +#: installer.cgi:466
 19.2114  msgid "Name of the first user"
 19.2115  msgstr ""
 19.2116  
 19.2117 -#: installer.cgi:471
 19.2118 +#: installer.cgi:470
 19.2119  msgid "User passwd:"
 19.2120  msgstr ""
 19.2121  
 19.2122 -#: installer.cgi:472 installer.cgi:474
 19.2123 +#: installer.cgi:471 installer.cgi:474
 19.2124  msgid "Password of the first user"
 19.2125  msgstr ""
 19.2126  
 19.2127 -#: installer.cgi:485
 19.2128 +#: installer.cgi:484
 19.2129  msgid "Grub"
 19.2130  msgstr ""
 19.2131  
 19.2132 @@ -1408,58 +1737,90 @@
 19.2133  "install grub by hand yourself."
 19.2134  msgstr ""
 19.2135  
 19.2136 -#: installer.cgi:489
 19.2137 +#: installer.cgi:490
 19.2138  msgid "Enable Windows Dual-Boot."
 19.2139  msgstr ""
 19.2140  
 19.2141 -#: installer.cgi:498
 19.2142 +#: installer.cgi:499
 19.2143  msgid "Back to partitioning"
 19.2144  msgstr ""
 19.2145  
 19.2146 -#: installer.cgi:505
 19.2147 +#: installer.cgi:506
 19.2148  msgid "Proceed to SliTaz installation"
 19.2149  msgstr ""
 19.2150  
 19.2151 -#: installer.cgi:507
 19.2152 +#: installer.cgi:508
 19.2153  msgid "Installation complete. You can now restart (reboot)"
 19.2154  msgstr ""
 19.2155  
 19.2156 -#: installer.cgi:509
 19.2157 +#: installer.cgi:510
 19.2158  msgid "Installation failed. See log"
 19.2159  msgstr ""
 19.2160  
 19.2161 -#: installer.cgi:527
 19.2162 +#: installer.cgi:530
 19.2163  msgid "A web page that points a browser to a different page after 2 seconds"
 19.2164  msgstr ""
 19.2165  
 19.2166 -#: installer.cgi:532
 19.2167 +#: installer.cgi:536
 19.2168  msgid ""
 19.2169 -"If your browser doesn't automatically redirect within a few seconds,\n"
 19.2170 -"you may want to go there manually"
 19.2171 +"If your browser doesn't automatically redirect within a few seconds, you may "
 19.2172 +"want to go there manually"
 19.2173  msgstr ""
 19.2174  
 19.2175 -#: installer.cgi:547 installer.cgi:560
 19.2176 +#: installer.cgi:551 installer.cgi:566
 19.2177  msgid "Tazinst Error"
 19.2178  msgstr ""
 19.2179  
 19.2180 -#: installer.cgi:548
 19.2181 +#: installer.cgi:552
 19.2182  msgid ""
 19.2183 -"the lightweight SliTaz HDD installer\n"
 19.2184 -"is missing. Any installation can not be done without tazinst."
 19.2185 +"<strong>tazinst</strong>, the lightweight SliTaz HDD installer is missing. "
 19.2186 +"Any installation can not be done without tazinst."
 19.2187  msgstr ""
 19.2188  
 19.2189 -#: installer.cgi:550
 19.2190 +#: installer.cgi:555
 19.2191  msgid "Check tazinst' permissions, or reinstall the slitaz-tools package:"
 19.2192  msgstr ""
 19.2193  
 19.2194 -#: installer.cgi:573
 19.2195 +#: installer.cgi:581
 19.2196  msgid "Proceeding: ()"
 19.2197  msgstr ""
 19.2198  
 19.2199 -#: installer.cgi:630 installer.cgi:641
 19.2200 +#: installer.cgi:582
 19.2201 +msgid "Please wait until processing is complete"
 19.2202 +msgstr ""
 19.2203 +
 19.2204 +#: installer.cgi:588
 19.2205 +msgid "Completed."
 19.2206 +msgstr ""
 19.2207 +
 19.2208 +#: installer.cgi:622
 19.2209 +msgid "Hostname error"
 19.2210 +msgstr ""
 19.2211 +
 19.2212 +#: installer.cgi:626
 19.2213 +msgid "Root password error"
 19.2214 +msgstr ""
 19.2215 +
 19.2216 +#: installer.cgi:630
 19.2217 +msgid "User login error"
 19.2218 +msgstr ""
 19.2219 +
 19.2220 +#: installer.cgi:634
 19.2221 +msgid "User password error"
 19.2222 +msgstr ""
 19.2223 +
 19.2224 +#: installer.cgi:637 installer.cgi:648
 19.2225  msgid "Do you really want to continue?"
 19.2226  msgstr ""
 19.2227  
 19.2228 +#: help.cgi:20
 19.2229 +msgid "Manual"
 19.2230 +msgstr ""
 19.2231 +
 19.2232 +#: help.cgi:28
 19.2233 +msgid "TazPanel - Help &amp; Doc"
 19.2234 +msgstr ""
 19.2235 +
 19.2236  #: styles/default/header.sh:29
 19.2237  msgid "Processes"
 19.2238  msgstr ""
 19.2239 @@ -1476,10 +1837,6 @@
 19.2240  msgid "Check updates"
 19.2241  msgstr ""
 19.2242  
 19.2243 -#: styles/default/header.sh:46
 19.2244 -msgid "Network"
 19.2245 -msgstr ""
 19.2246 -
 19.2247  #: styles/default/header.sh:49
 19.2248  msgid "Ethernet"
 19.2249  msgstr ""
 19.2250 @@ -1508,10 +1865,6 @@
 19.2251  msgid "Hardware"
 19.2252  msgstr ""
 19.2253  
 19.2254 -#: styles/default/header.sh:77
 19.2255 -msgid "Detect PCI/USB"
 19.2256 -msgstr ""
 19.2257 -
 19.2258  #: styles/default/header.sh:80
 19.2259  msgid "Live"
 19.2260  msgstr ""
    20.1 --- a/settings.cgi	Fri May 04 12:57:53 2012 +0300
    20.2 +++ b/settings.cgi	Fri May 04 13:00:43 2012 +0300
    20.3 @@ -31,7 +31,7 @@
    20.4  		unset IFS
    20.5  		for cmd in "Delete user" "Lock user" "Unlock user" \
    20.6  			   "Change password" ; do
    20.7 -			[ "$(GET do)" == "$(gettext "$cmd")" ] || continue
    20.8 +			[ "$(GET do)" == "$(gettext "$cmd")" ] || continue			# BUGGY
    20.9  			for user in $users ; do
   20.10  				case "$cmd" in
   20.11  				Delete*)	deluser $user ;;
   20.12 @@ -84,27 +84,29 @@
   20.13  		# Users management
   20.14  		#
   20.15  		cat <<EOT
   20.16 -<a name="users"></a>
   20.17 -<h3>`gettext "Manage users"`</h3>
   20.18 +<h3 id="users">$(gettext 'Manage users')</h3>
   20.19 +
   20.20  <form method="get" action="$SCRIPT_NAME">
   20.21  <div id="actions">
   20.22  	<div class="float-left">
   20.23 -		$(gettext "Selection:")
   20.24 -		<input type="submit" name="do" value="`gettext "Delete user"`" />
   20.25 -		<input type="submit" name="do" value="`gettext "Lock user"`" />
   20.26 -		<input type="submit" name="do" value="`gettext "Unlock user"`" />
   20.27 +		$(gettext 'Selection:')
   20.28 +		<input type="submit" name="do" value="$(gettext 'Delete user')" />
   20.29 +		<input type="submit" name="do" value="$(gettext 'Lock user')" />
   20.30 +		<input type="submit" name="do" value="$(gettext 'Unlock user')" />
   20.31  	</div>
   20.32  </div>
   20.33 -EOT
   20.34 -		table_start
   20.35 -		cat << EOT
   20.36 +
   20.37 +<table class="zebra">
   20.38 +<thead>
   20.39  <tr class="thead">
   20.40 -	<td>`gettext "Login"`</td>
   20.41 -	<td>`gettext "User ID"`</td>
   20.42 -	<td>`gettext "Name"`</td>
   20.43 -	<td>`gettext "Home"`</td>
   20.44 -	<td>`gettext "Shell"`</td>
   20.45 +	<td>$(gettext 'Login')</td>
   20.46 +	<td>$(gettext 'User ID')</td>
   20.47 +	<td>$(gettext 'Name')</td>
   20.48 +	<td>$(gettext 'Home')</td>
   20.49 +	<td>$(gettext 'Shell')</td>
   20.50  </tr>
   20.51 +</thead>
   20.52 +</tbody>
   20.53  EOT
   20.54  		for login in `cat /etc/passwd | cut -d ":" -f 1`
   20.55  		do
   20.56 @@ -132,34 +134,39 @@
   20.57  EOT
   20.58  			fi
   20.59  		done
   20.60 -		table_end
   20.61 +		cat << EOT
   20.62 +</tbody>
   20.63 +</table>
   20.64 +EOT
   20.65  		cat << EOT
   20.66  <p>
   20.67 -	$(gettext "Password":)
   20.68 +	$(gettext 'Password:')
   20.69  	<input type="password" name="password" />
   20.70 -	<input type="submit" name="do" value="`gettext "Change password"`" />
   20.71 +	<input type="submit" name="do" value="$(gettext 'Change password')" />
   20.72  </p>
   20.73  </form>
   20.74  
   20.75 -<h4>`gettext "Add a new user"`</h4>
   20.76 +<h4>$(gettext 'Add a new user')</h4>
   20.77 +
   20.78  <form method="get" action="$SCRIPT_NAME">
   20.79  	<input type="hidden" name="user" />
   20.80 -	<p>`gettext "User login:"`</p>
   20.81 -	<p><input type="text" name="adduser" size="30" /></p>
   20.82 -	<p>`gettext "User password:"`</p>
   20.83 -	<p><input type="password" name="passwd" size="30" /></p>
   20.84 -	<input type="submit" value="`gettext "Create user"`" />
   20.85 +	<table>
   20.86 +		<tr><td>$(gettext 'User login:')</td>
   20.87 +			<td><input type="text" name="adduser" size="30" /></td></tr>
   20.88 +		<tr><td>$(gettext 'User password:')</td>
   20.89 +			<td><input type="password" name="passwd" size="30" /></td></tr>
   20.90 +		<tr><td colspan="2">
   20.91 +			<input type="submit" value="$(gettext 'Create user')" /></td></tr>
   20.92 +	</table>
   20.93  </form>
   20.94  
   20.95 -<h4>`gettext "Current user sessions"`</h4>
   20.96 -<pre>
   20.97 -$(who)
   20.98 -</pre>
   20.99 +<h4>$(gettext 'Current user sessions')</h4>
  20.100  
  20.101 -<h4>`gettext "Last user sessions"`</h4>
  20.102 -<pre>
  20.103 -$(last)
  20.104 -</pre>
  20.105 +<pre>$(who)</pre>
  20.106 +
  20.107 +<h4>$(gettext 'Last user sessions')</h4>
  20.108 +
  20.109 +<pre>$(last)</pre>
  20.110  EOT
  20.111  		;;
  20.112  	*)
  20.113 @@ -168,29 +175,29 @@
  20.114  		#
  20.115  		cat << EOT
  20.116  <div id="wrapper">
  20.117 -	<h2>$(gettext "System settings")</h2>
  20.118 -	<p>$(gettext "Manage system time, users or language settings")<p>
  20.119 +	<h2>$(gettext 'System settings')</h2>
  20.120 +	<p>$(gettext 'Manage system time, users or language settings')<p>
  20.121  </div>
  20.122  <div id="actions">
  20.123  	<a class="button" href="$SCRIPT_NAME?users">
  20.124 -		<img src="$IMAGES/users.png" />$(gettext "Manage users")</a>
  20.125 +		<img src="$IMAGES/users.png" />$(gettext 'Manage users')</a>
  20.126  </div>
  20.127  
  20.128 -<h3>`gettext "System time"`</h3>
  20.129 -<pre>
  20.130 -`gettext "Time zome      :"` `cat /etc/TZ`
  20.131 -`gettext "System time    :"` `date`
  20.132 -`gettext "Hardware clock :"` `hwclock -r`
  20.133 -</pre>
  20.134 -<a class="button" href="$SCRIPT_NAME?rdate">`gettext "Sync online"`</a>
  20.135 -<a class="button" href="$SCRIPT_NAME?hwclock">`gettext "Set hardware clock"`</a>
  20.136 +<h3>$(gettext 'System time')</h3>
  20.137 +
  20.138 +<table>
  20.139 +	<tr><td>$(gettext 'Time zome:')</td><td>$(cat /etc/TZ)</td></tr>
  20.140 +	<tr><td>$(gettext 'System time:')</td><td>$(date)</td></tr>
  20.141 +	<tr><td>$(gettext 'Hardware clock:')</td><td>$(hwclock -r)</tr>
  20.142 +</table>
  20.143 +<a class="button" href="$SCRIPT_NAME?rdate">$(gettext 'Sync online')</a>
  20.144 +<a class="button" href="$SCRIPT_NAME?hwclock">$(gettext 'Set hardware clock')</a>
  20.145  EOT
  20.146  		#
  20.147  		# Locale settings
  20.148  		#
  20.149  		cat << EOT
  20.150 -<a name="locale"></a>
  20.151 -<h3>`gettext "System language"`</h3>
  20.152 +<h3 id="locale">$(gettext 'System language')</h3>
  20.153  <p>
  20.154  EOT
  20.155  		# Check if a new locale was requested
  20.156 @@ -201,25 +208,24 @@
  20.157  			# System configuration
  20.158  			echo "LANG=$new_locale" > /etc/locale.conf
  20.159  			echo "LC_ALL=$new_locale" >> /etc/locale.conf
  20.160 -			eval_gettext "You must logout and login again to your current
  20.161 -				session to use \$new_locale locale."
  20.162 +			eval_gettext "You must logout and login again to your current \
  20.163 +session to use \$new_locale locale."
  20.164  		else
  20.165 -			gettext "Current system locales: "
  20.166 +			gettext 'Current system locales:'
  20.167  			locale -a
  20.168  		fi
  20.169  		cat << EOT
  20.170  </p>
  20.171  <form method="get" action="$SCRIPT_NAME">
  20.172 -	$(gettext "Available locales:")
  20.173 +	$(gettext 'Available locales:')
  20.174  	<select name="gen_locale">
  20.175 -		<option value="en_US">en_US</options>
  20.176 +		<option value="en_US">en__US</options>
  20.177  		$(list_locales)
  20.178  	</select>
  20.179 -	<input type="submit" value="$(gettext "Activate")" />
  20.180 +	<input type="submit" value="$(gettext 'Activate')" />
  20.181  </form>
  20.182  
  20.183 -<a name="keymap"></a>
  20.184 -<h3>`gettext "Console keymap"`</h3>
  20.185 +<h3 id="keymap">$(gettext 'Console keymap')</h3>
  20.186  <p>
  20.187  EOT
  20.188  		# Check if a new keymap was requested
  20.189 @@ -231,9 +237,8 @@
  20.190  				loadkmap < /usr/share/kmap/$new_keymap.kmap
  20.191  			fi
  20.192  		fi
  20.193 -		gettext "Current console keymap: "
  20.194  		keymap=$(cat /etc/keymap.conf)
  20.195 -		echo $keymap
  20.196 +		eval_gettext 'Current console keymap: $keymap'
  20.197  		echo "</p>"
  20.198  		if [ -n "$keymap" ]; then
  20.199  			case "$keymap" in
  20.200 @@ -250,49 +255,50 @@
  20.201  			keyboard_config=/etc/X11/xorg.conf.d/40-Keyboard.conf
  20.202  			cat << EOT
  20.203  <form method="get" action="$SCRIPT_NAME">
  20.204 -	$(gettext "Suggested keymap for Xorg:")
  20.205 +	$(gettext 'Suggested keymap for Xorg:')
  20.206  	<input type="submit" name "apply_xorg_kbd" value="$keymap" />
  20.207  	<a class="button" href="index.cgi?file=$keyboard_config">
  20.208 -		<img src="$IMAGES/edit.png" />$(gettext "Edit")</a>
  20.209 +		<img src="$IMAGES/edit.png" />$(gettext 'Edit')</a>
  20.210  </form>
  20.211  EOT
  20.212  		fi
  20.213  		cat << EOT
  20.214  <form method="get" action="$SCRIPT_NAME">
  20.215 -	$(gettext "Available keymaps:")
  20.216 +	$(gettext 'Available keymaps:')
  20.217  	<select name="gen_keymap">
  20.218  		$(list_keymaps)
  20.219  	</select>
  20.220 -	<input type="submit" value="$(gettext "Activate")" />
  20.221 +	<input type="submit" value="$(gettext 'Activate')" />
  20.222  </form>
  20.223  
  20.224 -<h2>$(gettext "Panel configuration")</h2>
  20.225 +<h2>$(gettext 'Panel configuration')</h2>
  20.226 +
  20.227  <form method="get" action="$SCRIPT_NAME">
  20.228  	<p>
  20.229 -		$(gettext "Style:")
  20.230 +		$(gettext 'Style:')
  20.231  		<select name="style">
  20.232  			$(list_styles)
  20.233  		</select>
  20.234 -		<input type="submit" value="$(gettext "Activate")" />
  20.235 +		<input type="submit" value="$(gettext 'Activate')" />
  20.236  	</p>
  20.237  </form>
  20.238  <form method="get" action="$SCRIPT_NAME">
  20.239  	<p>
  20.240 -		$(gettext "Panel password:")
  20.241 +		$(gettext 'Panel password:')
  20.242  		<input type="password" name="panel_pass"/>
  20.243 -		<input type="submit" value="$(gettext "Change")" />
  20.244 +		<input type="submit" value="$(gettext 'Change')" />
  20.245  	</p>
  20.246  </form>
  20.247  <p>
  20.248 -	$(gettext "Configuration files: ")
  20.249 +	$(gettext 'Configuration files:')
  20.250  	<a class="button" href="index.cgi?file=$CONFIG">
  20.251 -		<img src="$IMAGES/edit.png" />$(gettext "Panel")</a>
  20.252 +		<img src="$IMAGES/edit.png" />$(gettext 'Panel')</a>
  20.253  	<a class="button" href="index.cgi?file=$HTTPD_CONF">
  20.254 -		<img src="$IMAGES/edit.png" />$(gettext "Server")</a>
  20.255 +		<img src="$IMAGES/edit.png" />$(gettext 'Server')</a>
  20.256  </p>
  20.257  <p>
  20.258 -	$(gettext "TazPanel provides a debuging mode and page:")
  20.259 -	<a href='/index.cgi?debug'>debug</a>
  20.260 +	$(gettext 'TazPanel provides a debuging mode and page:')
  20.261 +	<a href="/index.cgi?debug">debug</a>
  20.262  </p>
  20.263  EOT
  20.264  	;;
    21.1 --- a/styles/default/style.css	Fri May 04 12:57:53 2012 +0300
    21.2 +++ b/styles/default/style.css	Fri May 04 13:00:43 2012 +0300
    21.3 @@ -11,7 +11,7 @@
    21.4  body {
    21.5  	background: #ffffff;
    21.6  	color: black;
    21.7 -	font: 13px sans-serif, vernada, arial;
    21.8 +	font: 13px "DejaVu Sans", Ubuntu, "Droid Sans", "Liberation Sans", FreeSans, sans-serif;
    21.9  	margin: 25px 0 0;
   21.10  }
   21.11  
   21.12 @@ -73,7 +73,7 @@
   21.13  }
   21.14  #menu li ul {
   21.15  	display: none; 
   21.16 -	width: 180px;
   21.17 +	min-width: 180px;
   21.18  	background-color: #f1efeb;
   21.19  	border: 1px solid #c1baad;
   21.20  }
   21.21 @@ -100,6 +100,20 @@
   21.22  	border-radius: 2px;
   21.23  	/* border: 1px solid #c1baad; */
   21.24  }
   21.25 +/* addings
   21.26 + * 
   21.27 + */
   21.28 +#menu > ul {
   21.29 +	visibility: hidden;
   21.30 +	opacity: 0;
   21.31 +	transition: visibility 0s linear 0.5s, opacity 0.5s linear;
   21.32 +}
   21.33 +#menu:hover > ul {
   21.34 +	visibility: visible;
   21.35 +	opacity: 1;
   21.36 +	transition-delay: 0s;
   21.37 +}
   21.38 +
   21.39  
   21.40  #icons { margin: 3px 8px; float: right; }
   21.41  #icons img { padding: 0; }
   21.42 @@ -151,8 +165,8 @@
   21.43  #wrapper { margin: 10px 0 20px; }
   21.44  
   21.45  #actions {
   21.46 -	height: 20px;
   21.47 -	margin: 16px 0;
   21.48 +	min-height: 20px;
   21.49 +	padding: 16px 0;
   21.50  }
   21.51  
   21.52  #actions p { margin: 6px 0; }
   21.53 @@ -214,8 +228,12 @@
   21.54  	opacity: 0.9;
   21.55  }
   21.56  
   21.57 -.float-left { float: left;  }
   21.58 -.float-right { float: right; }
   21.59 +.float-left {
   21.60 +	float: left;
   21.61 +}
   21.62 +.float-right {
   21.63 +	float: right;
   21.64 +}
   21.65  
   21.66  /* Table */
   21.67  
   21.68 @@ -241,17 +259,46 @@
   21.69  	font-weight: bold;
   21.70  }
   21.71  
   21.72 -/* syntax_highlighter */
   21.73 +/*
   21.74 + * Table Zebra
   21.75 + */
   21.76 +
   21.77 +table.zebra {
   21.78 +	border: none;
   21.79 +	border-collapse: collapse;
   21.80 +	margin: 16px 0;
   21.81 +	box-shadow: 0 0 0 2px #fff, 0 0 0 3px #ccc;
   21.82 +}
   21.83 +table.zebra tr:nth-child(even) {
   21.84 +	background-color: rgba(0,0,0,0.05);
   21.85 +}
   21.86 +table.zebra thead tr td {
   21.87 +	height: 22px;
   21.88 +	background-color: #eee;
   21.89 +	text-align: center;
   21.90 +	vertical-align: middle;
   21.91 +}
   21.92 +table.zebra td + td {
   21.93 +	border-left: 1px solid #ddd;
   21.94 +}
   21.95 +
   21.96 +
   21.97 +/*
   21.98 + * syntax_highlighter
   21.99 + */
  21.100  
  21.101  span.conf-comment { color: #666; }
  21.102  span.conf-var { color: #392600; }
  21.103  span.conf-val, span.sh-val { color: #f35a00; }
  21.104  span.sh-comment { color: #b20000; }
  21.105 -span.activity-log { color: #888; font-size: 95%; }
  21.106 +span.activity-log { color: #888; }
  21.107  span.diff-rm { color: red; }
  21.108  span.diff-add { color: green; }
  21.109  span.diff-at { color: blue;  }
  21.110 -span.top { color: #00c800; font-weight: bold; font-size: 95%; }
  21.111 +span.top { color: #00c800; font-weight: normal; }
  21.112 +span.kernel-hex { color: #18A423; }
  21.113 +span.kernel-id { color: #287FC7; }
  21.114 +span.kernel-id2 { color: #843523; }
  21.115  
  21.116  /* alert messages */
  21.117  span.msg-ok { color: limegreen; }
  21.118 @@ -260,6 +307,7 @@
  21.119  /* Misc */
  21.120  
  21.121  pre, .pre-main { 
  21.122 +	font: 13px "DejaVu Sans Mono", "Droid Sans Mono", "Liberation Mono", FreeMono, monospace;
  21.123  	background-color: #f8f8f8; 
  21.124  	border: 1px solid #ddd; 
  21.125  	padding: 10px;
  21.126 @@ -277,6 +325,12 @@
  21.127  	cursor: pointer;
  21.128  	color: #000;
  21.129  }
  21.130 +a.button {
  21.131 +	white-space: nowrap;
  21.132 +	height: 16px;
  21.133 +	margin: 2px 0;
  21.134 +	display: inline-block;
  21.135 +}
  21.136  
  21.137  input[type=submit]:hover, select:hover, .button:hover {
  21.138  	background-color: #ddd;
  21.139 @@ -325,3 +379,33 @@
  21.140  
  21.141  #footer a { color: #bbb; }
  21.142  #footer a:hover { color: #555; }
  21.143 +
  21.144 +/* HTML5 Meter */
  21.145 +.meter {
  21.146 +	height: 22px;
  21.147 +	min-width: 200px;
  21.148 +	cursor: default;
  21.149 +}
  21.150 +.meter meter {
  21.151 +	height: inherit;
  21.152 +	width: 100%;
  21.153 +	display: block;
  21.154 +	border: 1px solid #ddd;
  21.155 +	border-radius: 4px;
  21.156 +}
  21.157 +.meter span {
  21.158 +	height: 22px;
  21.159 +	display: block;
  21.160 +	white-space: nowrap;
  21.161 +	position: absolute;
  21.162 +	margin: -18px auto 0 2px;
  21.163 +}
  21.164 +
  21.165 +
  21.166 +a.button, input {
  21.167 +	-webkit-transition: all 0.3s ease-in-out;
  21.168 +	-moz-transition: all 0.3s ease-in-out;
  21.169 +	-o-transition: all 0.3s ease-in-out;
  21.170 +	-ms-transition: all 0.3s ease-in-out;
  21.171 +	transition: all 0.3s ease-in-out;
  21.172 +}
    22.1 --- a/tazpanel	Fri May 04 12:57:53 2012 +0300
    22.2 +++ b/tazpanel	Fri May 04 13:00:43 2012 +0300
    22.3 @@ -32,25 +32,26 @@
    22.4  
    22.5  case "$1" in
    22.6  	start)
    22.7 -		gettext "Starting TazPanel web server on port $HTTPD_PORT..."
    22.8 +		eval_gettext 'Starting TazPanel web server on port $HTTPD_PORT...'
    22.9  		httpd -p $HTTPD_PORT -u root -c $HTTPD_CONF \
   22.10 -			-r "$(gettext "TazPanel Authentication - Default: root:root")" &
   22.11 +			-r "$(gettext 'TazPanel Authentication - Default: root:root')" &
   22.12  		ps | grep "httpd -p $HTTPD_PORT " | grep -v grep | \
   22.13  			awk '{ print $1 }' > $PIDFILE
   22.14  		status ;;
   22.15  	stop)
   22.16 -		gettext "Stopping TazPanel web server..."
   22.17 +		gettext 'Stopping TazPanel web server...'
   22.18  		kill $(cat $PIDFILE) && status ;;
   22.19  	passwd|-p)
   22.20  		echo ""
   22.21 -		gettext "Changing password for TazPanel"
   22.22 -		gettext "New password: " && read pass
   22.23 +		gettext 'Changing password for TazPanel'; echo
   22.24 +		gettext 'New password: ' && read pass
   22.25  		sed -i s"/\/:root:.*/\/:root:$pass/" $HTTPD_CONF
   22.26 -		gettext "Password changed successfully"; echo
   22.27 +		gettext 'Password changed successfully'; echo
   22.28  		echo "" ;;
   22.29  	*)
   22.30 +		program_name="$(basename $0)"
   22.31  		echo ""
   22.32 -		gettext "Usage:" && echo " $(basename $0) [start|stop|passwd]"
   22.33 +		eval_gettext 'Usage: $program_name [start|stop|passwd]'
   22.34  		echo "" ;;
   22.35  esac
   22.36