tazpanel rev 504

Localize 'ISO mine' + make pot & msgmerge
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 12 13:03:50 2015 +0200 (2015-07-12)
parents 4739b419c19f
children 5acb82488629
files boot.cgi index.cgi po/el.po po/es.po po/fr.po po/pl.po po/pt_BR.po po/ru.po po/sv.po po/tazpanel.pot settings.cgi styles/default/header.html
line diff
     1.1 --- a/boot.cgi	Sun Jul 12 10:49:16 2015 +0200
     1.2 +++ b/boot.cgi	Sun Jul 12 13:03:50 2015 +0200
     1.3 @@ -307,9 +307,9 @@
     1.4  				-e s"|splashimage=.*|splashimage=$splash|" \
     1.5  				$GRUBMENU
     1.6  		fi
     1.7 -		default=$(cat $GRUBMENU | grep ^default     | cut -d' ' -f2)
     1.8 -		timeout=$(cat $GRUBMENU | grep ^timeout     | cut -d' ' -f2)
     1.9 -		 splash=$(cat $GRUBMENU | grep ^splashimage | cut -d' ' -f2)
    1.10 +		default=$(grep ^default     $GRUBMENU | cut -d' ' -f2)
    1.11 +		timeout=$(grep ^timeout     $GRUBMENU | cut -d' ' -f2)
    1.12 +		 splash=$(grep ^splashimage $GRUBMENU | cut -d' ' -f2)
    1.13  
    1.14  		xhtml_header "$(_ 'GRUB Boot loader')"
    1.15  				cat <<EOT
    1.16 @@ -385,7 +385,7 @@
    1.17  
    1.18  		echo "<h2>$(_ 'ISO mine')</h2>"
    1.19  
    1.20 -		[ "$iso" ] || msg err 'Invalid ISO image.'
    1.21 +		[ "$iso" ] || msg err "$(_ 'Invalid ISO image.')
    1.22  
    1.23  		if [ "$iso" -a "$action" -a "$action" != "nop" ]; then
    1.24  			case "$action" in
    1.25 @@ -407,17 +407,17 @@
    1.26  EOT
    1.27  		cat <<EOT
    1.28  <table>
    1.29 -	<tr><td>ISO image file full path
    1.30 -			<span data-img="info" title="set /dev/cdrom for a physical CD-ROM"></span>
    1.31 +	<tr><td>$(_ 'ISO image file full path')
    1.32 +			<span data-img="info" title="$(_ 'set /dev/cdrom for a physical CD-ROM')"></span>
    1.33  		</td>
    1.34  		<td><input type="text" name="iso" value="$iso" size="50"/></td></tr>
    1.35 -	<tr><td>Working directory</td>
    1.36 +	<tr><td>$(_ 'Working directory')</td>
    1.37  		<td><input type="text" name="workdir" value="$workdir" size="50"/></td></tr>
    1.38 -	<tr><td>Target partition
    1.39 -			<span data-img="info" title="For hard disk installation only. Will create /slitaz tree and keep other files. No partitioning and no formatting."></span>
    1.40 +	<tr><td>$(_ 'Target partition')
    1.41 +			<span data-img="info" title="$(_ 'For hard disk installation only. Will create /slitaz tree and keep other files. No partitioning and no formatting.')"></span>
    1.42  		</td>
    1.43  		<td><select name="instdev">
    1.44 -			<option value="/dev/null">Choose a partition (optional)</option>
    1.45 +			<option value="/dev/null">$(_ 'Choose a partition (optional)')</option>
    1.46  EOT
    1.47  		blkid | grep -iE "(msdos|vfat|ntfs|ext[234]|xfs|btrfs)" | \
    1.48  		sed -e 's|[A-Z]*ID="[^"]*"||g;s| SEC[^ ]*||;s|LABEL=||;s|:||' \
    1.49 @@ -428,11 +428,11 @@
    1.50  		done 
    1.51  		cat <<EOT
    1.52  			</select></td></tr>
    1.53 -	<tr><td>USB key device
    1.54 -			<span data-img="info" title="For USB boot key only. Will erase the full device."></span>
    1.55 +	<tr><td>$(_ 'USB key device')
    1.56 +			<span data-img="info" title="$(_ 'For USB boot key only. Will erase the full device.')"></span>
    1.57  		</td>
    1.58  		<td><select name="usbkeydev">
    1.59 -			<option value="/dev/null">Choose a USB key (optional)</option>
    1.60 +			<option value="/dev/null">$(_ 'Choose a USB key (optional)')</option>
    1.61  EOT
    1.62  		grep -l 1 /sys/block/*/removable | \
    1.63  		sed 's|/sys/block/\(.*\)/removable|\1|' | while read dev; do
    1.64 @@ -451,7 +451,7 @@
    1.65  		if [ "$iso" ]; then
    1.66  			cat <<EOT
    1.67  <select name="action">
    1.68 -	<option value="nop">Choose an action</option>
    1.69 +	<option value="nop">$(_ 'Choose an action')</option>
    1.70  	$(taziso $iso list | sed -e \
    1.71  		's/"\(.*\)"[\t ]*"\(.*\)"/<option value="\1\">\2<\/option>/' -e \
    1.72  		"s|value=\"$action\"|& selected|")
    1.73 @@ -464,7 +464,7 @@
    1.74  		fi
    1.75  
    1.76  		cat <<EOT
    1.77 -	<button data-icon="cd" name="mine">Mine</button>
    1.78 +	<button data-icon="cd" name="mine">$(_ 'Mine')</button>
    1.79  </footer>
    1.80  </form>
    1.81  </section>
    1.82 @@ -527,7 +527,7 @@
    1.83  		cat <<EOT
    1.84  		</form>
    1.85  	</header>
    1.86 -	<pre><code class="language-bash">$(cat /etc/init.d/local.sh | htmlize)</code></pre>
    1.87 +	<pre><code class="language-bash">$(htmlize < /etc/init.d/local.sh)</code></pre>
    1.88  </section>
    1.89  EOT
    1.90  		;;
     2.1 --- a/index.cgi	Sun Jul 12 10:49:16 2015 +0200
     2.2 +++ b/index.cgi	Sun Jul 12 13:03:50 2015 +0200
     2.3 @@ -120,7 +120,7 @@
     2.4  			<button name="action" value="diff" data-icon="diff">$(_ 'Differences')</button>
     2.5  		</form>
     2.6  	</header>
     2.7 -	<textarea form="editform" name="content" class="wide" rows="30" autofocus>$(cat $file | htmlize)</textarea>
     2.8 +	<textarea form="editform" name="content" class="wide" rows="30" autofocus>$(htmlize < $file)</textarea>
     2.9  </section>
    2.10  EOT
    2.11  #The space before textarea gets muddled when the form is submitted.
    2.12 @@ -196,10 +196,10 @@
    2.13  			case "$file" in
    2.14  				*.sh|*.cgi|*/receipt|*.conf)
    2.15  					echo '<code class="language-bash">'; end_code='</code>'
    2.16 -					cat | htmlize ;;
    2.17 +					htmlize ;;
    2.18  				*.ini)
    2.19  					echo '<code class="language-ini">'; end_code='</code>'
    2.20 -					cat | htmlize ;;
    2.21 +					htmlize ;;
    2.22  				*.conf|*.lst)
    2.23  					syntax_highlighter conf ;;
    2.24  				*Xorg.0.log)
    2.25 @@ -207,7 +207,7 @@
    2.26  				*dmesg.log)
    2.27  					syntax_highlighter kernel ;;
    2.28  				*)
    2.29 -					cat | htmlize ;;
    2.30 +					htmlize ;;
    2.31  			esac < $file
    2.32  			cat <<EOT
    2.33  $end_code</pre>
    2.34 @@ -590,13 +590,13 @@
    2.35  <pre>$(cat /var/log/dmesg.log)</pre>
    2.36  
    2.37  <h2>$(_ 'Boot scripts')</h2>
    2.38 -<pre>$(cat /var/log/boot.log | filter_taztools_msgs)</pre>
    2.39 +<pre>$(filter_taztools_msgs < /var/log/boot.log)</pre>
    2.40  EOT
    2.41  		cat <<EOT
    2.42  	$(ok_status_t)
    2.43  	<tr><td>$(_ 'Creating report footer...')</td>
    2.44  EOT
    2.45 -		cat cat >> $output <<EOT
    2.46 +		cat >> $output <<EOT
    2.47  </body>
    2.48  </html>
    2.49  EOT
    2.50 @@ -706,7 +706,7 @@
    2.51  	</header>
    2.52  	<div>
    2.53  		<pre id="panel-activity">
    2.54 -$(cat $LOG_FILE | tail -n 8 | sort -r | syntax_highlighter activity)</pre>
    2.55 +$(tail -n 8 < $LOG_FILE | sort -r | syntax_highlighter activity)</pre>
    2.56  	</div>
    2.57  </section>
    2.58  EOT
     3.1 --- a/po/el.po	Sun Jul 12 10:49:16 2015 +0200
     3.2 +++ b/po/el.po	Sun Jul 12 13:03:50 2015 +0200
     3.3 @@ -7,7 +7,7 @@
     3.4  msgstr ""
     3.5  "Project-Id-Version: TazPanel 1.5.7\n"
     3.6  "Report-Msgid-Bugs-To: \n"
     3.7 -"POT-Creation-Date: 2015-06-05 20:42+0300\n"
     3.8 +"POT-Creation-Date: 2015-07-12 12:25+0200\n"
     3.9  "PO-Revision-Date: 2012-06-10 17:15+0200\n"
    3.10  "Last-Translator: Douros Dimitris <dourosdimitris@gmail.com>\n"
    3.11  "Language-Team: \n"
    3.12 @@ -55,7 +55,7 @@
    3.13  msgstr "Αποθήκευση"
    3.14  
    3.15  #: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670
    3.16 -#: network.cgi:720 boot.cgi:531 hardware.cgi:483 settings.cgi:766
    3.17 +#: network.cgi:720 boot.cgi:525 hardware.cgi:492 settings.cgi:766
    3.18  msgid "Edit"
    3.19  msgstr "Επεξεργασία"
    3.20  
    3.21 @@ -199,11 +199,11 @@
    3.22  msgid "Getting boot logs..."
    3.23  msgstr "Συγκέντρωση καταγραφών εκκίνησης..."
    3.24  
    3.25 -#: index.cgi:589 boot.cgi:99 styles/default/header.html:74
    3.26 +#: index.cgi:589 boot.cgi:98 styles/default/header.html:74
    3.27  msgid "Kernel messages"
    3.28  msgstr "Μυνήματα πυρήνα"
    3.29  
    3.30 -#: index.cgi:592 boot.cgi:100 styles/default/header.html:75
    3.31 +#: index.cgi:592 boot.cgi:99 styles/default/header.html:75
    3.32  msgid "Boot scripts"
    3.33  msgstr "Δέσμες ενεργειών εκκίνησης"
    3.34  
    3.35 @@ -211,7 +211,7 @@
    3.36  msgid "Creating report footer..."
    3.37  msgstr "Δημιουργία υποσέλιδου αναφοράς..."
    3.38  
    3.39 -#: index.cgi:608 index.cgi:704 boot.cgi:510 boot.cgi:512
    3.40 +#: index.cgi:608 index.cgi:704 boot.cgi:504 boot.cgi:506
    3.41  msgid "View"
    3.42  msgstr ""
    3.43  
    3.44 @@ -264,7 +264,7 @@
    3.45  msgid "Network"
    3.46  msgstr "Δίκτυο"
    3.47  
    3.48 -#: index.cgi:668 hardware.cgi:340
    3.49 +#: index.cgi:668 hardware.cgi:349
    3.50  msgid "Filesystem usage statistics"
    3.51  msgstr "Στατιστικά χρήσης συστήματος αρχείων"
    3.52  
    3.53 @@ -300,11 +300,11 @@
    3.54  "Εδώ μπορείτε να διαμορφώσετε μια ενσύρματη σύνδεση με χρήση του DHCP για να "
    3.55  "πάρει αυτόματα μια τυχαία IP ή να ρυθμίσετε μια στατική/σταθερή IP"
    3.56  
    3.57 -#: network.cgi:247 boot.cgi:152
    3.58 +#: network.cgi:247 boot.cgi:149
    3.59  msgid "Configuration"
    3.60  msgstr "Διαμόρφωση"
    3.61  
    3.62 -#: network.cgi:253 lib/libtazpanel:165
    3.63 +#: network.cgi:253 lib/libtazpanel:167
    3.64  msgid "Interface"
    3.65  msgstr "Διεπαφή"
    3.66  
    3.67 @@ -361,11 +361,11 @@
    3.68  msgid "Help"
    3.69  msgstr ""
    3.70  
    3.71 -#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:292
    3.72 +#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:289
    3.73  msgid "Start"
    3.74  msgstr "Εκκίνηση"
    3.75  
    3.76 -#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:281
    3.77 +#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:278
    3.78  msgid "Stop"
    3.79  msgstr "Σταμάτημα"
    3.80  
    3.81 @@ -385,7 +385,7 @@
    3.82  msgid "(hidden)"
    3.83  msgstr ""
    3.84  
    3.85 -#: network.cgi:349 boot.cgi:150 hardware.cgi:57 lib/libtazpanel:166
    3.86 +#: network.cgi:349 boot.cgi:147 hardware.cgi:57 lib/libtazpanel:168
    3.87  msgid "Name"
    3.88  msgstr "Όνομα"
    3.89  
    3.90 @@ -402,7 +402,7 @@
    3.91  msgid "Encryption"
    3.92  msgstr "Κρυπτογράφιση"
    3.93  
    3.94 -#: network.cgi:353 boot.cgi:153 lib/libtazpanel:167
    3.95 +#: network.cgi:353 boot.cgi:150 lib/libtazpanel:169
    3.96  msgid "Status"
    3.97  msgstr "Κατάσταση"
    3.98  
    3.99 @@ -510,7 +510,7 @@
   3.100  msgid "forward packets between interfaces"
   3.101  msgstr ""
   3.102  
   3.103 -#: network.cgi:656 network.cgi:690 boot.cgi:336 settings.cgi:608
   3.104 +#: network.cgi:656 network.cgi:690 boot.cgi:332 settings.cgi:608
   3.105  #: settings.cgi:722
   3.106  msgid "Change"
   3.107  msgstr "Αλλαγή"
   3.108 @@ -563,173 +563,224 @@
   3.109  msgid "Show more..."
   3.110  msgstr "Εμφάνισε περισσότερα..."
   3.111  
   3.112 -#: boot.cgi:45 boot.cgi:492 styles/default/header.html:80
   3.113 +#: boot.cgi:40 boot.cgi:45 boot.cgi:486 styles/default/header.html:80
   3.114  #, fuzzy
   3.115  msgid "System logs"
   3.116  msgstr "Γλώσσα συστήματος"
   3.117  
   3.118 -#: boot.cgi:96
   3.119 +#: boot.cgi:95
   3.120  msgid "Boot log files"
   3.121  msgstr "Αρχεία καταγραφών εκκίνησης"
   3.122  
   3.123 -#: boot.cgi:101 styles/default/header.html:76
   3.124 +#: boot.cgi:100 styles/default/header.html:76
   3.125  msgid "X server"
   3.126  msgstr "Εξυπηρετητής Χ"
   3.127  
   3.128 -#: boot.cgi:102 styles/default/header.html:77
   3.129 +#: boot.cgi:101 styles/default/header.html:77
   3.130  msgid "X session"
   3.131  msgstr ""
   3.132  
   3.133 -#: boot.cgi:124 boot.cgi:493 styles/default/header.html:81
   3.134 +#: boot.cgi:120 boot.cgi:487 styles/default/header.html:81
   3.135  msgid "Manage daemons"
   3.136  msgstr "Διαχείριση δαιμόνων (daemons)"
   3.137  
   3.138 -#: boot.cgi:126
   3.139 +#: boot.cgi:123
   3.140  msgid "Check, start and stop daemons on SliTaz"
   3.141  msgstr "Έλεγχος, εκκίνηση και σταμάτημα δαιμόνων στο SliTaz"
   3.142  
   3.143 -#: boot.cgi:151 hardware.cgi:168 settings.cgi:434
   3.144 +#: boot.cgi:148 hardware.cgi:177 settings.cgi:434
   3.145  msgid "Description"
   3.146  msgstr "Περιγραφή"
   3.147  
   3.148 -#: boot.cgi:154
   3.149 +#: boot.cgi:151
   3.150  msgid "Action"
   3.151  msgstr "Ενέργεια"
   3.152  
   3.153 -#: boot.cgi:155
   3.154 +#: boot.cgi:152
   3.155  msgid "PID"
   3.156  msgstr ""
   3.157  
   3.158 -#: boot.cgi:180
   3.159 +#: boot.cgi:177
   3.160  msgid "SliTaz Firewall with iptable rules"
   3.161  msgstr "Τοίχος προστασίας SliTaz με κανόνες πίνακα IP"
   3.162  
   3.163 -#: boot.cgi:182
   3.164 +#: boot.cgi:179
   3.165  msgid "Small and fast web server with CGI support"
   3.166  msgstr "Μικρός και γρήγορος εξυπηρετητής ιστού με υποστήριξη CGI"
   3.167  
   3.168 -#: boot.cgi:185
   3.169 +#: boot.cgi:182
   3.170  msgid "Network time protocol daemon"
   3.171  msgstr "Δαίμονας πρωτοκόλλου ώρας δικτύου"
   3.172  
   3.173 -#: boot.cgi:188
   3.174 +#: boot.cgi:185
   3.175  msgid "Anonymous FTP server"
   3.176  msgstr "Ανώνυμος εξυπηρετητής FTP"
   3.177  
   3.178 -#: boot.cgi:191
   3.179 +#: boot.cgi:188
   3.180  msgid "Busybox DHCP server"
   3.181  msgstr "Εξυπηρετητής DHCP Busybox"
   3.182  
   3.183 -#: boot.cgi:194
   3.184 +#: boot.cgi:191
   3.185  msgid "Linux Kernel log daemon"
   3.186  msgstr "Δαίμονας καταγραφής πυρήνα Linux"
   3.187  
   3.188 -#: boot.cgi:197
   3.189 +#: boot.cgi:194
   3.190  msgid "Execute scheduled commands"
   3.191  msgstr "Εκτέλεση προγραμματισμένων εντολών"
   3.192  
   3.193 -#: boot.cgi:200
   3.194 +#: boot.cgi:197
   3.195  msgid "Small static DNS server daemon"
   3.196  msgstr "Δαίμονας μικρού στατικού DNS εξυπηρετητή"
   3.197  
   3.198 -#: boot.cgi:203
   3.199 +#: boot.cgi:200
   3.200  msgid "Transfer a file on tftp request"
   3.201  msgstr "Μεταφορά ενός αρχείου κατόπιν αιτήματος tftp"
   3.202  
   3.203 -#: boot.cgi:206
   3.204 +#: boot.cgi:203
   3.205  #, fuzzy
   3.206  msgid "Printer daemon"
   3.207  msgstr "Διαχείριση δαιμόνων (daemons)"
   3.208  
   3.209 -#: boot.cgi:208
   3.210 +#: boot.cgi:205
   3.211  msgid "Listen for network connections and launch programs"
   3.212  msgstr "Αναμονή για συνδέσεις δικτύου και έναρξη προγραμμάτων"
   3.213  
   3.214 -#: boot.cgi:211
   3.215 +#: boot.cgi:208
   3.216  msgid "Manage a ZeroConf IPv4 link-local address"
   3.217  msgstr "Διαχείριση μίας ZeroConf IPv4 link-local διεύθυνσης"
   3.218  
   3.219 -#: boot.cgi:280
   3.220 +#: boot.cgi:277
   3.221  msgid "Started"
   3.222  msgstr "Ξεκίνησε"
   3.223  
   3.224 -#: boot.cgi:291
   3.225 +#: boot.cgi:288
   3.226  msgid "Stopped"
   3.227  msgstr "Σταμάτησε"
   3.228  
   3.229 -#: boot.cgi:318
   3.230 +#: boot.cgi:314
   3.231  msgid "GRUB Boot loader"
   3.232  msgstr "Φορτωτής εκκίνησης GRUB"
   3.233  
   3.234 -#: boot.cgi:320
   3.235 +#: boot.cgi:316
   3.236  msgid "The first application started when the computer powers on"
   3.237  msgstr "Η πρώτη εφαρμογή που ξεκινά όταν ο υπολογιστής ανοίγει"
   3.238  
   3.239 -#: boot.cgi:327
   3.240 +#: boot.cgi:323
   3.241  msgid "Default entry:"
   3.242  msgstr "Προεπιλεγμένη καταχώρηση:"
   3.243  
   3.244 -#: boot.cgi:329
   3.245 +#: boot.cgi:325
   3.246  msgid "Timeout:"
   3.247  msgstr "Χρονικό όριο:"
   3.248  
   3.249 -#: boot.cgi:331
   3.250 +#: boot.cgi:327
   3.251  msgid "Splash image:"
   3.252  msgstr "Εικόνα εκκίνησης (splash):"
   3.253  
   3.254 -#: boot.cgi:343
   3.255 +#: boot.cgi:339
   3.256  msgid "View or edit menu.lst"
   3.257  msgstr "Προβολή ή επεξεργασία menu.lst"
   3.258  
   3.259 -#: boot.cgi:348
   3.260 +#: boot.cgi:344
   3.261  msgid "Boot entries"
   3.262  msgstr "Καταχωρήσεις εκκίνησης"
   3.263  
   3.264 -#: boot.cgi:355
   3.265 +#: boot.cgi:351
   3.266  msgid "Entry"
   3.267  msgstr "Καταχώρηση"
   3.268  
   3.269 -#: boot.cgi:376
   3.270 +#: boot.cgi:372
   3.271  msgid "Web boot is available with gPXE"
   3.272  msgstr "Η εκκίνηση μέσω δικτύου είναι διαθέσιμη με gPXE"
   3.273  
   3.274 -#: boot.cgi:390 boot.cgi:496 styles/default/header.html:83
   3.275 +#: boot.cgi:386 boot.cgi:490 styles/default/header.html:83
   3.276  msgid "ISO mine"
   3.277  msgstr ""
   3.278  
   3.279 -#: boot.cgi:486
   3.280 +#: boot.cgi:388
   3.281 +msgid "Invalid ISO image."
   3.282 +msgstr ""
   3.283 +
   3.284 +#: boot.cgi:410
   3.285 +msgid "ISO image file full path"
   3.286 +msgstr ""
   3.287 +
   3.288 +#: boot.cgi:411
   3.289 +msgid "set /dev/cdrom for a physical CD-ROM"
   3.290 +msgstr ""
   3.291 +
   3.292 +#: boot.cgi:414
   3.293 +msgid "Working directory"
   3.294 +msgstr ""
   3.295 +
   3.296 +#: boot.cgi:416
   3.297 +msgid "Target partition"
   3.298 +msgstr ""
   3.299 +
   3.300 +#: boot.cgi:417
   3.301 +msgid ""
   3.302 +"For hard disk installation only. Will create /slitaz tree and keep other "
   3.303 +"files. No partitioning and no formatting."
   3.304 +msgstr ""
   3.305 +
   3.306 +#: boot.cgi:420
   3.307 +msgid "Choose a partition (optional)"
   3.308 +msgstr ""
   3.309 +
   3.310 +#: boot.cgi:431
   3.311 +msgid "USB key device"
   3.312 +msgstr ""
   3.313 +
   3.314 +#: boot.cgi:432
   3.315 +msgid "For USB boot key only. Will erase the full device."
   3.316 +msgstr ""
   3.317 +
   3.318 +#: boot.cgi:435
   3.319 +msgid "Choose a USB key (optional)"
   3.320 +msgstr ""
   3.321 +
   3.322 +#: boot.cgi:454
   3.323 +#, fuzzy
   3.324 +msgid "Choose an action"
   3.325 +msgstr "Σύνδεση"
   3.326 +
   3.327 +#: boot.cgi:467
   3.328 +msgid "Mine"
   3.329 +msgstr ""
   3.330 +
   3.331 +#: boot.cgi:480
   3.332  msgid "Boot &amp; Start services"
   3.333  msgstr "Εκκίνηση &amp; Έναρξη υπηρεσιών"
   3.334  
   3.335 -#: boot.cgi:488
   3.336 +#: boot.cgi:482
   3.337  msgid "Everything that happens before user login"
   3.338  msgstr "Όλα όσα συμβαίνουν πρίν τη σύνδεση του χρήστη"
   3.339  
   3.340 -#: boot.cgi:491 styles/default/header.html:72
   3.341 +#: boot.cgi:485 styles/default/header.html:72
   3.342  msgid "Boot logs"
   3.343  msgstr "Καταγραφές εκκίνησης"
   3.344  
   3.345 -#: boot.cgi:499 styles/default/header.html:68
   3.346 +#: boot.cgi:493 styles/default/header.html:68
   3.347  msgid "Boot loader"
   3.348  msgstr "Φορτωτής εκκίνησης (boot loader)"
   3.349  
   3.350 -#: boot.cgi:506
   3.351 +#: boot.cgi:500
   3.352  msgid "Configuration files"
   3.353  msgstr "Αρχεία διαμόρφωσης"
   3.354  
   3.355 -#: boot.cgi:509
   3.356 +#: boot.cgi:503
   3.357  msgid "Main configuration file:"
   3.358  msgstr "Κύριο αρχείο διαμόρφωσης:"
   3.359  
   3.360 -#: boot.cgi:511
   3.361 +#: boot.cgi:505
   3.362  msgid "Login manager settings:"
   3.363  msgstr "Ρυθμίσεις διαχειριστή εισόδου:"
   3.364  
   3.365 -#: boot.cgi:519
   3.366 +#: boot.cgi:513
   3.367  msgid "Kernel cmdline"
   3.368  msgstr "Γραμμή εντολών Πυρήνα"
   3.369  
   3.370 -#: boot.cgi:526
   3.371 +#: boot.cgi:520
   3.372  msgid "Local startup commands"
   3.373  msgstr "Τοπικές εντολές κατά την εκκίνηση"
   3.374  
   3.375 @@ -741,7 +792,7 @@
   3.376  msgid "Bus"
   3.377  msgstr ""
   3.378  
   3.379 -#: hardware.cgi:55 hardware.cgi:525
   3.380 +#: hardware.cgi:55 hardware.cgi:534
   3.381  msgid "Device"
   3.382  msgstr ""
   3.383  
   3.384 @@ -757,190 +808,194 @@
   3.385  msgid "Detect PCI and USB hardware"
   3.386  msgstr "Ανίχνευση υλικού PCI και USB"
   3.387  
   3.388 -#: hardware.cgi:118 hardware.cgi:239 styles/default/header.html:91
   3.389 +#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:91
   3.390  msgid "Kernel modules"
   3.391  msgstr "Αρθρώματα (modules) πυρήνα"
   3.392  
   3.393 -#: hardware.cgi:120
   3.394 +#: hardware.cgi:122
   3.395  msgid "Manage, search or get information about the Linux kernel modules"
   3.396  msgstr ""
   3.397  "Διαχείριση, αναζήτηση ή συλλογή πληροφοριών σχετικά με τα αρθρώματα του "
   3.398  "πυρήνα Linux"
   3.399  
   3.400 -#: hardware.cgi:124
   3.401 +#: hardware.cgi:126
   3.402  msgid "Modules search"
   3.403  msgstr "Αναζήτηση αρθρωμάτων"
   3.404  
   3.405 -#: hardware.cgi:132
   3.406 +#: hardware.cgi:127
   3.407 +msgid "Search"
   3.408 +msgstr ""
   3.409 +
   3.410 +#: hardware.cgi:135
   3.411  msgid "Detailed information for module: %s"
   3.412  msgstr "Λεπτομερείς πληροφορίες για το άρθρωμα: %s"
   3.413  
   3.414 -#: hardware.cgi:152
   3.415 +#: hardware.cgi:159
   3.416  msgid "Matching result(s) for: %s"
   3.417  msgstr "Ταίριασμα αποτελέσματος(-ατων) για: %s"
   3.418  
   3.419 -#: hardware.cgi:158
   3.420 +#: hardware.cgi:166
   3.421  msgid "Module:"
   3.422  msgstr "Άρθρωμα:"
   3.423  
   3.424 -#: hardware.cgi:167
   3.425 +#: hardware.cgi:176
   3.426  msgid "Module"
   3.427  msgstr "Άρθρωμα"
   3.428  
   3.429 -#: hardware.cgi:169 hardware.cgi:527 lib/libtazpanel:295
   3.430 +#: hardware.cgi:178 hardware.cgi:536 lib/libtazpanel:297
   3.431  msgid "Size"
   3.432  msgstr "Μέγεθος"
   3.433  
   3.434 -#: hardware.cgi:170 hardware.cgi:584 lib/libtazpanel:297
   3.435 +#: hardware.cgi:179 hardware.cgi:593 lib/libtazpanel:299
   3.436  msgid "Used"
   3.437  msgstr "Σε χρήση"
   3.438  
   3.439 -#: hardware.cgi:171
   3.440 +#: hardware.cgi:180
   3.441  msgid "by"
   3.442  msgstr "από"
   3.443  
   3.444 -#: hardware.cgi:195
   3.445 +#: hardware.cgi:204
   3.446  msgid "Information for USB Device %s"
   3.447  msgstr ""
   3.448  
   3.449 -#: hardware.cgi:197 hardware.cgi:215
   3.450 +#: hardware.cgi:206 hardware.cgi:224
   3.451  msgid "Detailed information about specified device."
   3.452  msgstr ""
   3.453  
   3.454 -#: hardware.cgi:213
   3.455 +#: hardware.cgi:222
   3.456  msgid "Information for PCI Device %s"
   3.457  msgstr ""
   3.458  
   3.459 -#: hardware.cgi:234
   3.460 +#: hardware.cgi:243
   3.461  msgid "Drivers &amp; Devices"
   3.462  msgstr "Οδηγοί &amp; Συσκευές"
   3.463  
   3.464 -#: hardware.cgi:236
   3.465 +#: hardware.cgi:245
   3.466  msgid "Manage your computer hardware"
   3.467  msgstr "Διαχείριση του υλικού του υπολογιστή σας"
   3.468  
   3.469 -#: hardware.cgi:240 styles/default/header.html:92
   3.470 +#: hardware.cgi:249 styles/default/header.html:92
   3.471  msgid "Detect PCI/USB"
   3.472  msgstr "Ανίχνευση PCI/USB"
   3.473  
   3.474 -#: hardware.cgi:241
   3.475 +#: hardware.cgi:250
   3.476  msgid "Auto-install Xorg video driver"
   3.477  msgstr ""
   3.478  
   3.479 -#: hardware.cgi:251 hardware.cgi:268
   3.480 +#: hardware.cgi:260 hardware.cgi:277
   3.481  msgid "Battery"
   3.482  msgstr "Μπαταρία"
   3.483  
   3.484 -#: hardware.cgi:271
   3.485 +#: hardware.cgi:280
   3.486  msgid "health"
   3.487  msgstr "Υγεία"
   3.488  
   3.489 -#: hardware.cgi:280
   3.490 +#: hardware.cgi:289
   3.491  msgid "Discharging %d%% - %s"
   3.492  msgstr "Αποφορτίζεται %d%% - %s"
   3.493  
   3.494 -#: hardware.cgi:284
   3.495 +#: hardware.cgi:293
   3.496  msgid "Charging %d%% - %s"
   3.497  msgstr "Φορτίζεται %d%% - %s"
   3.498  
   3.499 -#: hardware.cgi:286
   3.500 +#: hardware.cgi:295
   3.501  #, fuzzy
   3.502  msgid "Charged 100%%"
   3.503  msgstr "Φορτίστηκε 100%%"
   3.504  
   3.505 -#: hardware.cgi:305
   3.506 +#: hardware.cgi:314
   3.507  msgid "Temperature:"
   3.508  msgstr "Θερμοκρασία:"
   3.509  
   3.510 -#: hardware.cgi:320
   3.511 +#: hardware.cgi:329
   3.512  msgid "Brightness"
   3.513  msgstr "Φωτεινότητα"
   3.514  
   3.515 -#: hardware.cgi:462
   3.516 +#: hardware.cgi:471
   3.517  #, fuzzy
   3.518  msgid "new mount point:"
   3.519  msgstr "Σημείο προσάρτησης"
   3.520  
   3.521 -#: hardware.cgi:463
   3.522 +#: hardware.cgi:472
   3.523  msgid "read-only"
   3.524  msgstr ""
   3.525  
   3.526 -#: hardware.cgi:478
   3.527 +#: hardware.cgi:487
   3.528  msgid "Filesystems table"
   3.529  msgstr ""
   3.530  
   3.531 -#: hardware.cgi:491 lib/libtazpanel:292
   3.532 +#: hardware.cgi:500 lib/libtazpanel:294
   3.533  msgid "Disk"
   3.534  msgstr "Δίσκος"
   3.535  
   3.536 -#: hardware.cgi:492 lib/libtazpanel:298
   3.537 +#: hardware.cgi:501 lib/libtazpanel:300
   3.538  msgid "Mount point"
   3.539  msgstr "Σημείο προσάρτησης"
   3.540  
   3.541 -#: hardware.cgi:493 lib/libtazpanel:294
   3.542 +#: hardware.cgi:502 lib/libtazpanel:296
   3.543  msgid "Type"
   3.544  msgstr "Τύπος"
   3.545  
   3.546 -#: hardware.cgi:494
   3.547 +#: hardware.cgi:503
   3.548  #, fuzzy
   3.549  msgid "Options"
   3.550  msgstr "Ενέργεια"
   3.551  
   3.552 -#: hardware.cgi:495
   3.553 +#: hardware.cgi:504
   3.554  msgid "Freq"
   3.555  msgstr ""
   3.556  
   3.557 -#: hardware.cgi:496
   3.558 +#: hardware.cgi:505
   3.559  #, fuzzy
   3.560  msgid "Pass"
   3.561  msgstr "Κωδικός:"
   3.562  
   3.563 -#: hardware.cgi:518
   3.564 +#: hardware.cgi:527
   3.565  msgid "Loop devices"
   3.566  msgstr ""
   3.567  
   3.568 -#: hardware.cgi:526
   3.569 +#: hardware.cgi:535
   3.570  #, fuzzy
   3.571  msgid "Backing file"
   3.572  msgstr "Αρχείο ρυθμίσεων"
   3.573  
   3.574 -#: hardware.cgi:528
   3.575 +#: hardware.cgi:537
   3.576  msgid "Access"
   3.577  msgstr ""
   3.578  
   3.579 -#: hardware.cgi:529
   3.580 +#: hardware.cgi:538
   3.581  msgid "Offset"
   3.582  msgstr ""
   3.583  
   3.584 -#: hardware.cgi:538
   3.585 +#: hardware.cgi:547
   3.586  msgid "read/write"
   3.587  msgstr ""
   3.588  
   3.589 -#: hardware.cgi:539 hardware.cgi:564
   3.590 +#: hardware.cgi:548 hardware.cgi:573
   3.591  msgid "read only"
   3.592  msgstr ""
   3.593  
   3.594 -#: hardware.cgi:561
   3.595 +#: hardware.cgi:570
   3.596  msgid "Setup"
   3.597  msgstr ""
   3.598  
   3.599 -#: hardware.cgi:562
   3.600 +#: hardware.cgi:571
   3.601  msgid "new backing file:"
   3.602  msgstr ""
   3.603  
   3.604 -#: hardware.cgi:563
   3.605 +#: hardware.cgi:572
   3.606  msgid "offset in bytes:"
   3.607  msgstr ""
   3.608  
   3.609 -#: hardware.cgi:581
   3.610 +#: hardware.cgi:590
   3.611  msgid "System memory"
   3.612  msgstr "Μνήμη συστήματος"
   3.613  
   3.614 -#: hardware.cgi:587
   3.615 +#: hardware.cgi:596
   3.616  msgid "Buffers"
   3.617  msgstr ""
   3.618  
   3.619 -#: hardware.cgi:590
   3.620 +#: hardware.cgi:599
   3.621  msgid "Free"
   3.622  msgstr ""
   3.623  
   3.624 @@ -1115,11 +1170,11 @@
   3.625  msgid "-d"
   3.626  msgstr "-d"
   3.627  
   3.628 -#: settings.cgi:462 settings.cgi:765 settings.cgi:776 settings.cgi:788
   3.629 +#: settings.cgi:462 settings.cgi:765 settings.cgi:777 settings.cgi:789
   3.630  msgid "Activate"
   3.631  msgstr "Ενεργοποίηση"
   3.632  
   3.633 -#: settings.cgi:474 settings.cgi:497
   3.634 +#: settings.cgi:475 settings.cgi:497
   3.635  msgid "Small quick tweaks for user %s"
   3.636  msgstr ""
   3.637  
   3.638 @@ -1222,31 +1277,31 @@
   3.639  msgid "Suggested keymap for Xorg:"
   3.640  msgstr "Προτεινόμενη διάταξη πληκτρολογίου για το Xorg:"
   3.641  
   3.642 -#: settings.cgi:772
   3.643 +#: settings.cgi:773
   3.644  msgid "Available keymaps:"
   3.645  msgstr "Διαθέσιμες διατάξεις πληκτρολογίου:"
   3.646  
   3.647 -#: settings.cgi:783
   3.648 +#: settings.cgi:784
   3.649  msgid "Panel configuration"
   3.650  msgstr "Διαμόρφωση πίνακα"
   3.651  
   3.652 -#: settings.cgi:786
   3.653 +#: settings.cgi:787
   3.654  msgid "Style:"
   3.655  msgstr "Στύλ:"
   3.656  
   3.657 -#: settings.cgi:792
   3.658 +#: settings.cgi:793
   3.659  msgid "Configuration files:"
   3.660  msgstr "Αρχεία διαμόρφωσης:"
   3.661  
   3.662 -#: settings.cgi:793 styles/default/header.html:42
   3.663 +#: settings.cgi:794 styles/default/header.html:42
   3.664  msgid "Panel"
   3.665  msgstr "Πίνακας"
   3.666  
   3.667 -#: settings.cgi:794
   3.668 +#: settings.cgi:795
   3.669  msgid "Server"
   3.670  msgstr "Εξυπηρετητής"
   3.671  
   3.672 -#: settings.cgi:797
   3.673 +#: settings.cgi:798
   3.674  #, fuzzy
   3.675  msgid "TazPanel provides a debugging mode and page:"
   3.676  msgstr "Το TazPanel παρέχει κατάσταση αποσφαλμάτωσης και σελίδα:"
   3.677 @@ -1255,24 +1310,24 @@
   3.678  msgid "connected"
   3.679  msgstr "συνδεδεμένο"
   3.680  
   3.681 -#: lib/libtazpanel:168
   3.682 +#: lib/libtazpanel:170
   3.683  msgid "IP Address"
   3.684  msgstr "Διεύθυνση IP"
   3.685  
   3.686 -#: lib/libtazpanel:169
   3.687 +#: lib/libtazpanel:171
   3.688  msgid "Scan ports"
   3.689  msgstr "Σάρωση θυρών"
   3.690  
   3.691 -#: lib/libtazpanel:241
   3.692 +#: lib/libtazpanel:243
   3.693  #, fuzzy
   3.694  msgid "Please wait"
   3.695  msgstr "Παρακαλώ περιμένετε..."
   3.696  
   3.697 -#: lib/libtazpanel:293
   3.698 +#: lib/libtazpanel:295
   3.699  msgid "Label"
   3.700  msgstr "Ετικέτα"
   3.701  
   3.702 -#: lib/libtazpanel:296
   3.703 +#: lib/libtazpanel:298
   3.704  msgid "Available"
   3.705  msgstr "Διαθέσιμο"
   3.706  
     4.1 --- a/po/es.po	Sun Jul 12 10:49:16 2015 +0200
     4.2 +++ b/po/es.po	Sun Jul 12 13:03:50 2015 +0200
     4.3 @@ -7,7 +7,7 @@
     4.4  msgstr ""
     4.5  "Project-Id-Version: TazPanel 1.5.7\n"
     4.6  "Report-Msgid-Bugs-To: \n"
     4.7 -"POT-Creation-Date: 2015-06-05 20:42+0300\n"
     4.8 +"POT-Creation-Date: 2015-07-12 12:25+0200\n"
     4.9  "PO-Revision-Date: 2012-06-11 03:13-0000\n"
    4.10  "Last-Translator: kevin fabian quintero <kefaquin@gmail.com>\n"
    4.11  "Language-Team: \n"
    4.12 @@ -53,7 +53,7 @@
    4.13  msgstr "Guardar"
    4.14  
    4.15  #: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670
    4.16 -#: network.cgi:720 boot.cgi:531 hardware.cgi:483 settings.cgi:766
    4.17 +#: network.cgi:720 boot.cgi:525 hardware.cgi:492 settings.cgi:766
    4.18  msgid "Edit"
    4.19  msgstr "Editar"
    4.20  
    4.21 @@ -197,11 +197,11 @@
    4.22  msgid "Getting boot logs..."
    4.23  msgstr "Obteniendo información del paquete..."
    4.24  
    4.25 -#: index.cgi:589 boot.cgi:99 styles/default/header.html:74
    4.26 +#: index.cgi:589 boot.cgi:98 styles/default/header.html:74
    4.27  msgid "Kernel messages"
    4.28  msgstr "Mensajes del núcleo"
    4.29  
    4.30 -#: index.cgi:592 boot.cgi:100 styles/default/header.html:75
    4.31 +#: index.cgi:592 boot.cgi:99 styles/default/header.html:75
    4.32  msgid "Boot scripts"
    4.33  msgstr "Scripts del boot"
    4.34  
    4.35 @@ -209,7 +209,7 @@
    4.36  msgid "Creating report footer..."
    4.37  msgstr "Creando el paquete..."
    4.38  
    4.39 -#: index.cgi:608 index.cgi:704 boot.cgi:510 boot.cgi:512
    4.40 +#: index.cgi:608 index.cgi:704 boot.cgi:504 boot.cgi:506
    4.41  msgid "View"
    4.42  msgstr ""
    4.43  
    4.44 @@ -261,7 +261,7 @@
    4.45  msgid "Network"
    4.46  msgstr "Red"
    4.47  
    4.48 -#: index.cgi:668 hardware.cgi:340
    4.49 +#: index.cgi:668 hardware.cgi:349
    4.50  msgid "Filesystem usage statistics"
    4.51  msgstr "Archivo de estadísticas de uso del sistema"
    4.52  
    4.53 @@ -298,11 +298,11 @@
    4.54  "obtener automáticamente una dirección IP al azar o configurar una dirección "
    4.55  "IP estática / fija"
    4.56  
    4.57 -#: network.cgi:247 boot.cgi:152
    4.58 +#: network.cgi:247 boot.cgi:149
    4.59  msgid "Configuration"
    4.60  msgstr "Configuración"
    4.61  
    4.62 -#: network.cgi:253 lib/libtazpanel:165
    4.63 +#: network.cgi:253 lib/libtazpanel:167
    4.64  msgid "Interface"
    4.65  msgstr "Interface"
    4.66  
    4.67 @@ -359,11 +359,11 @@
    4.68  msgid "Help"
    4.69  msgstr ""
    4.70  
    4.71 -#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:292
    4.72 +#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:289
    4.73  msgid "Start"
    4.74  msgstr "Comenzar"
    4.75  
    4.76 -#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:281
    4.77 +#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:278
    4.78  msgid "Stop"
    4.79  msgstr "Parar"
    4.80  
    4.81 @@ -383,7 +383,7 @@
    4.82  msgid "(hidden)"
    4.83  msgstr ""
    4.84  
    4.85 -#: network.cgi:349 boot.cgi:150 hardware.cgi:57 lib/libtazpanel:166
    4.86 +#: network.cgi:349 boot.cgi:147 hardware.cgi:57 lib/libtazpanel:168
    4.87  msgid "Name"
    4.88  msgstr "Nombre"
    4.89  
    4.90 @@ -400,7 +400,7 @@
    4.91  msgid "Encryption"
    4.92  msgstr "Encriptación"
    4.93  
    4.94 -#: network.cgi:353 boot.cgi:153 lib/libtazpanel:167
    4.95 +#: network.cgi:353 boot.cgi:150 lib/libtazpanel:169
    4.96  msgid "Status"
    4.97  msgstr "Estado"
    4.98  
    4.99 @@ -508,7 +508,7 @@
   4.100  msgid "forward packets between interfaces"
   4.101  msgstr ""
   4.102  
   4.103 -#: network.cgi:656 network.cgi:690 boot.cgi:336 settings.cgi:608
   4.104 +#: network.cgi:656 network.cgi:690 boot.cgi:332 settings.cgi:608
   4.105  #: settings.cgi:722
   4.106  msgid "Change"
   4.107  msgstr "Cambiar"
   4.108 @@ -561,173 +561,224 @@
   4.109  msgid "Show more..."
   4.110  msgstr "Mostrar mas..."
   4.111  
   4.112 -#: boot.cgi:45 boot.cgi:492 styles/default/header.html:80
   4.113 +#: boot.cgi:40 boot.cgi:45 boot.cgi:486 styles/default/header.html:80
   4.114  #, fuzzy
   4.115  msgid "System logs"
   4.116  msgstr "Lenguaje del sistema"
   4.117  
   4.118 -#: boot.cgi:96
   4.119 +#: boot.cgi:95
   4.120  msgid "Boot log files"
   4.121  msgstr "Registro de archivos de boot"
   4.122  
   4.123 -#: boot.cgi:101 styles/default/header.html:76
   4.124 +#: boot.cgi:100 styles/default/header.html:76
   4.125  msgid "X server"
   4.126  msgstr "Servidor X"
   4.127  
   4.128 -#: boot.cgi:102 styles/default/header.html:77
   4.129 +#: boot.cgi:101 styles/default/header.html:77
   4.130  msgid "X session"
   4.131  msgstr ""
   4.132  
   4.133 -#: boot.cgi:124 boot.cgi:493 styles/default/header.html:81
   4.134 +#: boot.cgi:120 boot.cgi:487 styles/default/header.html:81
   4.135  msgid "Manage daemons"
   4.136  msgstr "Manejar demonios"
   4.137  
   4.138 -#: boot.cgi:126
   4.139 +#: boot.cgi:123
   4.140  msgid "Check, start and stop daemons on SliTaz"
   4.141  msgstr "Comprueba, comienza y finaliza demonios en SliTaz"
   4.142  
   4.143 -#: boot.cgi:151 hardware.cgi:168 settings.cgi:434
   4.144 +#: boot.cgi:148 hardware.cgi:177 settings.cgi:434
   4.145  msgid "Description"
   4.146  msgstr "Descripción"
   4.147  
   4.148 -#: boot.cgi:154
   4.149 +#: boot.cgi:151
   4.150  msgid "Action"
   4.151  msgstr "Acción"
   4.152  
   4.153 -#: boot.cgi:155
   4.154 +#: boot.cgi:152
   4.155  msgid "PID"
   4.156  msgstr "PID"
   4.157  
   4.158 -#: boot.cgi:180
   4.159 +#: boot.cgi:177
   4.160  msgid "SliTaz Firewall with iptable rules"
   4.161  msgstr "Slitaz firewall con reglas iptable"
   4.162  
   4.163 -#: boot.cgi:182
   4.164 +#: boot.cgi:179
   4.165  msgid "Small and fast web server with CGI support"
   4.166  msgstr "Pequeño y rápido servidor web con soporte CGI"
   4.167  
   4.168 -#: boot.cgi:185
   4.169 +#: boot.cgi:182
   4.170  msgid "Network time protocol daemon"
   4.171  msgstr "Demonio de protocolo de horario de red"
   4.172  
   4.173 -#: boot.cgi:188
   4.174 +#: boot.cgi:185
   4.175  msgid "Anonymous FTP server"
   4.176  msgstr "Servidor ftp anonimo"
   4.177  
   4.178 -#: boot.cgi:191
   4.179 +#: boot.cgi:188
   4.180  msgid "Busybox DHCP server"
   4.181  msgstr "Servidor DHCP Busybox"
   4.182  
   4.183 -#: boot.cgi:194
   4.184 +#: boot.cgi:191
   4.185  msgid "Linux Kernel log daemon"
   4.186  msgstr "Registro de demonios de Kernel Linux"
   4.187  
   4.188 -#: boot.cgi:197
   4.189 +#: boot.cgi:194
   4.190  msgid "Execute scheduled commands"
   4.191  msgstr "Ejecuta comando programados"
   4.192  
   4.193 -#: boot.cgi:200
   4.194 +#: boot.cgi:197
   4.195  msgid "Small static DNS server daemon"
   4.196  msgstr "Pequeño demonio estatico de servidor DNS"
   4.197  
   4.198 -#: boot.cgi:203
   4.199 +#: boot.cgi:200
   4.200  msgid "Transfer a file on tftp request"
   4.201  msgstr "Transferir un archivo en modo tftp"
   4.202  
   4.203 -#: boot.cgi:206
   4.204 +#: boot.cgi:203
   4.205  #, fuzzy
   4.206  msgid "Printer daemon"
   4.207  msgstr "Manejar demonios"
   4.208  
   4.209 -#: boot.cgi:208
   4.210 +#: boot.cgi:205
   4.211  msgid "Listen for network connections and launch programs"
   4.212  msgstr "Monitor de conexiones de red y programas lanzadas"
   4.213  
   4.214 -#: boot.cgi:211
   4.215 +#: boot.cgi:208
   4.216  msgid "Manage a ZeroConf IPv4 link-local address"
   4.217  msgstr "Administrar una ZeroConf IPv4 dirección local de vínculo"
   4.218  
   4.219 -#: boot.cgi:280
   4.220 +#: boot.cgi:277
   4.221  msgid "Started"
   4.222  msgstr "Iniciado"
   4.223  
   4.224 -#: boot.cgi:291
   4.225 +#: boot.cgi:288
   4.226  msgid "Stopped"
   4.227  msgstr "Detenido"
   4.228  
   4.229 -#: boot.cgi:318
   4.230 +#: boot.cgi:314
   4.231  msgid "GRUB Boot loader"
   4.232  msgstr "Gestor de inicio GRUB"
   4.233  
   4.234 -#: boot.cgi:320
   4.235 +#: boot.cgi:316
   4.236  msgid "The first application started when the computer powers on"
   4.237  msgstr "La primera aplicación cuando se enciende el computador"
   4.238  
   4.239 -#: boot.cgi:327
   4.240 +#: boot.cgi:323
   4.241  msgid "Default entry:"
   4.242  msgstr "Entrada por defecto:"
   4.243  
   4.244 -#: boot.cgi:329
   4.245 +#: boot.cgi:325
   4.246  msgid "Timeout:"
   4.247  msgstr "Tiempo de espera:"
   4.248  
   4.249 -#: boot.cgi:331
   4.250 +#: boot.cgi:327
   4.251  msgid "Splash image:"
   4.252  msgstr "Imagen Splash:"
   4.253  
   4.254 -#: boot.cgi:343
   4.255 +#: boot.cgi:339
   4.256  msgid "View or edit menu.lst"
   4.257  msgstr "Ver o editar menu.lst"
   4.258  
   4.259 -#: boot.cgi:348
   4.260 +#: boot.cgi:344
   4.261  msgid "Boot entries"
   4.262  msgstr "Entradas de arranque"
   4.263  
   4.264 -#: boot.cgi:355
   4.265 +#: boot.cgi:351
   4.266  msgid "Entry"
   4.267  msgstr "Entrada"
   4.268  
   4.269 -#: boot.cgi:376
   4.270 +#: boot.cgi:372
   4.271  msgid "Web boot is available with gPXE"
   4.272  msgstr "Boot web es disponible con gPXE"
   4.273  
   4.274 -#: boot.cgi:390 boot.cgi:496 styles/default/header.html:83
   4.275 +#: boot.cgi:386 boot.cgi:490 styles/default/header.html:83
   4.276  msgid "ISO mine"
   4.277  msgstr ""
   4.278  
   4.279 -#: boot.cgi:486
   4.280 +#: boot.cgi:388
   4.281 +msgid "Invalid ISO image."
   4.282 +msgstr ""
   4.283 +
   4.284 +#: boot.cgi:410
   4.285 +msgid "ISO image file full path"
   4.286 +msgstr ""
   4.287 +
   4.288 +#: boot.cgi:411
   4.289 +msgid "set /dev/cdrom for a physical CD-ROM"
   4.290 +msgstr ""
   4.291 +
   4.292 +#: boot.cgi:414
   4.293 +msgid "Working directory"
   4.294 +msgstr ""
   4.295 +
   4.296 +#: boot.cgi:416
   4.297 +msgid "Target partition"
   4.298 +msgstr ""
   4.299 +
   4.300 +#: boot.cgi:417
   4.301 +msgid ""
   4.302 +"For hard disk installation only. Will create /slitaz tree and keep other "
   4.303 +"files. No partitioning and no formatting."
   4.304 +msgstr ""
   4.305 +
   4.306 +#: boot.cgi:420
   4.307 +msgid "Choose a partition (optional)"
   4.308 +msgstr ""
   4.309 +
   4.310 +#: boot.cgi:431
   4.311 +msgid "USB key device"
   4.312 +msgstr ""
   4.313 +
   4.314 +#: boot.cgi:432
   4.315 +msgid "For USB boot key only. Will erase the full device."
   4.316 +msgstr ""
   4.317 +
   4.318 +#: boot.cgi:435
   4.319 +msgid "Choose a USB key (optional)"
   4.320 +msgstr ""
   4.321 +
   4.322 +#: boot.cgi:454
   4.323 +#, fuzzy
   4.324 +msgid "Choose an action"
   4.325 +msgstr "Conexión"
   4.326 +
   4.327 +#: boot.cgi:467
   4.328 +msgid "Mine"
   4.329 +msgstr ""
   4.330 +
   4.331 +#: boot.cgi:480
   4.332  msgid "Boot &amp; Start services"
   4.333  msgstr "Servicios que inician al arranque"
   4.334  
   4.335 -#: boot.cgi:488
   4.336 +#: boot.cgi:482
   4.337  msgid "Everything that happens before user login"
   4.338  msgstr "Todo lo que sucede antes de iniciar sesión"
   4.339  
   4.340 -#: boot.cgi:491 styles/default/header.html:72
   4.341 +#: boot.cgi:485 styles/default/header.html:72
   4.342  msgid "Boot logs"
   4.343  msgstr "Logs del boot"
   4.344  
   4.345 -#: boot.cgi:499 styles/default/header.html:68
   4.346 +#: boot.cgi:493 styles/default/header.html:68
   4.347  msgid "Boot loader"
   4.348  msgstr "Cargador boot"
   4.349  
   4.350 -#: boot.cgi:506
   4.351 +#: boot.cgi:500
   4.352  msgid "Configuration files"
   4.353  msgstr "Filas de configuración"
   4.354  
   4.355 -#: boot.cgi:509
   4.356 +#: boot.cgi:503
   4.357  msgid "Main configuration file:"
   4.358  msgstr "Archivo de configuración principal:"
   4.359  
   4.360 -#: boot.cgi:511
   4.361 +#: boot.cgi:505
   4.362  msgid "Login manager settings:"
   4.363  msgstr "Configuración del administrador de Inicio de sesion:"
   4.364  
   4.365 -#: boot.cgi:519
   4.366 +#: boot.cgi:513
   4.367  msgid "Kernel cmdline"
   4.368  msgstr "Líneas de comando del núcleo"
   4.369  
   4.370 -#: boot.cgi:526
   4.371 +#: boot.cgi:520
   4.372  msgid "Local startup commands"
   4.373  msgstr "Comandos de inicio"
   4.374  
   4.375 @@ -739,7 +790,7 @@
   4.376  msgid "Bus"
   4.377  msgstr ""
   4.378  
   4.379 -#: hardware.cgi:55 hardware.cgi:525
   4.380 +#: hardware.cgi:55 hardware.cgi:534
   4.381  msgid "Device"
   4.382  msgstr ""
   4.383  
   4.384 @@ -756,190 +807,194 @@
   4.385  msgid "Detect PCI and USB hardware"
   4.386  msgstr "Detectar hardware PCI y USB"
   4.387  
   4.388 -#: hardware.cgi:118 hardware.cgi:239 styles/default/header.html:91
   4.389 +#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:91
   4.390  msgid "Kernel modules"
   4.391  msgstr "Módulos del núcleo"
   4.392  
   4.393 -#: hardware.cgi:120
   4.394 +#: hardware.cgi:122
   4.395  msgid "Manage, search or get information about the Linux kernel modules"
   4.396  msgstr ""
   4.397  "Gestionar, buscar u obtener información sobre los módulos del kernel de Linux"
   4.398  
   4.399 -#: hardware.cgi:124
   4.400 +#: hardware.cgi:126
   4.401  msgid "Modules search"
   4.402  msgstr "Buscar módulos"
   4.403  
   4.404 -#: hardware.cgi:132
   4.405 +#: hardware.cgi:127
   4.406 +msgid "Search"
   4.407 +msgstr ""
   4.408 +
   4.409 +#: hardware.cgi:135
   4.410  msgid "Detailed information for module: %s"
   4.411  msgstr "Informacion detallada del módulo: %s"
   4.412  
   4.413 -#: hardware.cgi:152
   4.414 +#: hardware.cgi:159
   4.415  msgid "Matching result(s) for: %s"
   4.416  msgstr "Resultado(s) para: %s"
   4.417  
   4.418 -#: hardware.cgi:158
   4.419 +#: hardware.cgi:166
   4.420  msgid "Module:"
   4.421  msgstr "Módulo:"
   4.422  
   4.423 -#: hardware.cgi:167
   4.424 +#: hardware.cgi:176
   4.425  msgid "Module"
   4.426  msgstr "Módulo"
   4.427  
   4.428 -#: hardware.cgi:169 hardware.cgi:527 lib/libtazpanel:295
   4.429 +#: hardware.cgi:178 hardware.cgi:536 lib/libtazpanel:297
   4.430  msgid "Size"
   4.431  msgstr "Tamaño"
   4.432  
   4.433 -#: hardware.cgi:170 hardware.cgi:584 lib/libtazpanel:297
   4.434 +#: hardware.cgi:179 hardware.cgi:593 lib/libtazpanel:299
   4.435  msgid "Used"
   4.436  msgstr "Usado"
   4.437  
   4.438 -#: hardware.cgi:171
   4.439 +#: hardware.cgi:180
   4.440  msgid "by"
   4.441  msgstr "por"
   4.442  
   4.443 -#: hardware.cgi:195
   4.444 +#: hardware.cgi:204
   4.445  msgid "Information for USB Device %s"
   4.446  msgstr ""
   4.447  
   4.448 -#: hardware.cgi:197 hardware.cgi:215
   4.449 +#: hardware.cgi:206 hardware.cgi:224
   4.450  msgid "Detailed information about specified device."
   4.451  msgstr ""
   4.452  
   4.453 -#: hardware.cgi:213
   4.454 +#: hardware.cgi:222
   4.455  msgid "Information for PCI Device %s"
   4.456  msgstr ""
   4.457  
   4.458 -#: hardware.cgi:234
   4.459 +#: hardware.cgi:243
   4.460  msgid "Drivers &amp; Devices"
   4.461  msgstr "Controladores &amp; Dispositivos"
   4.462  
   4.463 -#: hardware.cgi:236
   4.464 +#: hardware.cgi:245
   4.465  msgid "Manage your computer hardware"
   4.466  msgstr "Maneja tu hardware"
   4.467  
   4.468 -#: hardware.cgi:240 styles/default/header.html:92
   4.469 +#: hardware.cgi:249 styles/default/header.html:92
   4.470  msgid "Detect PCI/USB"
   4.471  msgstr "Detectar PCI/USB"
   4.472  
   4.473 -#: hardware.cgi:241
   4.474 +#: hardware.cgi:250
   4.475  msgid "Auto-install Xorg video driver"
   4.476  msgstr ""
   4.477  
   4.478 -#: hardware.cgi:251 hardware.cgi:268
   4.479 +#: hardware.cgi:260 hardware.cgi:277
   4.480  msgid "Battery"
   4.481  msgstr "Bateria"
   4.482  
   4.483 -#: hardware.cgi:271
   4.484 +#: hardware.cgi:280
   4.485  msgid "health"
   4.486  msgstr "Estado"
   4.487  
   4.488 -#: hardware.cgi:280
   4.489 +#: hardware.cgi:289
   4.490  msgid "Discharging %d%% - %s"
   4.491  msgstr "Descargando %d%% - %s"
   4.492  
   4.493 -#: hardware.cgi:284
   4.494 +#: hardware.cgi:293
   4.495  #, fuzzy
   4.496  msgid "Charging %d%% - %s"
   4.497  msgstr "Cargando %s%% - %s"
   4.498  
   4.499 -#: hardware.cgi:286
   4.500 +#: hardware.cgi:295
   4.501  #, fuzzy
   4.502  msgid "Charged 100%%"
   4.503  msgstr "Cargado 100%%"
   4.504  
   4.505 -#: hardware.cgi:305
   4.506 +#: hardware.cgi:314
   4.507  msgid "Temperature:"
   4.508  msgstr "Temperatura:"
   4.509  
   4.510 -#: hardware.cgi:320
   4.511 +#: hardware.cgi:329
   4.512  msgid "Brightness"
   4.513  msgstr "Brillo"
   4.514  
   4.515 -#: hardware.cgi:462
   4.516 +#: hardware.cgi:471
   4.517  #, fuzzy
   4.518  msgid "new mount point:"
   4.519  msgstr "Punto de montaje"
   4.520  
   4.521 -#: hardware.cgi:463
   4.522 +#: hardware.cgi:472
   4.523  msgid "read-only"
   4.524  msgstr ""
   4.525  
   4.526 -#: hardware.cgi:478
   4.527 +#: hardware.cgi:487
   4.528  msgid "Filesystems table"
   4.529  msgstr ""
   4.530  
   4.531 -#: hardware.cgi:491 lib/libtazpanel:292
   4.532 +#: hardware.cgi:500 lib/libtazpanel:294
   4.533  msgid "Disk"
   4.534  msgstr "Disco"
   4.535  
   4.536 -#: hardware.cgi:492 lib/libtazpanel:298
   4.537 +#: hardware.cgi:501 lib/libtazpanel:300
   4.538  msgid "Mount point"
   4.539  msgstr "Punto de montaje"
   4.540  
   4.541 -#: hardware.cgi:493 lib/libtazpanel:294
   4.542 +#: hardware.cgi:502 lib/libtazpanel:296
   4.543  msgid "Type"
   4.544  msgstr "Tipo"
   4.545  
   4.546 -#: hardware.cgi:494
   4.547 +#: hardware.cgi:503
   4.548  #, fuzzy
   4.549  msgid "Options"
   4.550  msgstr "Acción"
   4.551  
   4.552 -#: hardware.cgi:495
   4.553 +#: hardware.cgi:504
   4.554  msgid "Freq"
   4.555  msgstr ""
   4.556  
   4.557 -#: hardware.cgi:496
   4.558 +#: hardware.cgi:505
   4.559  #, fuzzy
   4.560  msgid "Pass"
   4.561  msgstr "Contraseña:"
   4.562  
   4.563 -#: hardware.cgi:518
   4.564 +#: hardware.cgi:527
   4.565  msgid "Loop devices"
   4.566  msgstr ""
   4.567  
   4.568 -#: hardware.cgi:526
   4.569 +#: hardware.cgi:535
   4.570  #, fuzzy
   4.571  msgid "Backing file"
   4.572  msgstr "Archivo de configuración"
   4.573  
   4.574 -#: hardware.cgi:528
   4.575 +#: hardware.cgi:537
   4.576  msgid "Access"
   4.577  msgstr ""
   4.578  
   4.579 -#: hardware.cgi:529
   4.580 +#: hardware.cgi:538
   4.581  msgid "Offset"
   4.582  msgstr ""
   4.583  
   4.584 -#: hardware.cgi:538
   4.585 +#: hardware.cgi:547
   4.586  msgid "read/write"
   4.587  msgstr ""
   4.588  
   4.589 -#: hardware.cgi:539 hardware.cgi:564
   4.590 +#: hardware.cgi:548 hardware.cgi:573
   4.591  msgid "read only"
   4.592  msgstr ""
   4.593  
   4.594 -#: hardware.cgi:561
   4.595 +#: hardware.cgi:570
   4.596  msgid "Setup"
   4.597  msgstr ""
   4.598  
   4.599 -#: hardware.cgi:562
   4.600 +#: hardware.cgi:571
   4.601  msgid "new backing file:"
   4.602  msgstr ""
   4.603  
   4.604 -#: hardware.cgi:563
   4.605 +#: hardware.cgi:572
   4.606  msgid "offset in bytes:"
   4.607  msgstr ""
   4.608  
   4.609 -#: hardware.cgi:581
   4.610 +#: hardware.cgi:590
   4.611  msgid "System memory"
   4.612  msgstr "Memoria del sistema"
   4.613  
   4.614 -#: hardware.cgi:587
   4.615 +#: hardware.cgi:596
   4.616  msgid "Buffers"
   4.617  msgstr ""
   4.618  
   4.619 -#: hardware.cgi:590
   4.620 +#: hardware.cgi:599
   4.621  msgid "Free"
   4.622  msgstr ""
   4.623  
   4.624 @@ -1114,11 +1169,11 @@
   4.625  msgid "-d"
   4.626  msgstr "-d"
   4.627  
   4.628 -#: settings.cgi:462 settings.cgi:765 settings.cgi:776 settings.cgi:788
   4.629 +#: settings.cgi:462 settings.cgi:765 settings.cgi:777 settings.cgi:789
   4.630  msgid "Activate"
   4.631  msgstr "Activado"
   4.632  
   4.633 -#: settings.cgi:474 settings.cgi:497
   4.634 +#: settings.cgi:475 settings.cgi:497
   4.635  msgid "Small quick tweaks for user %s"
   4.636  msgstr ""
   4.637  
   4.638 @@ -1220,31 +1275,31 @@
   4.639  msgid "Suggested keymap for Xorg:"
   4.640  msgstr "Mapa de teclado sugerido para Xorg:"
   4.641  
   4.642 -#: settings.cgi:772
   4.643 +#: settings.cgi:773
   4.644  msgid "Available keymaps:"
   4.645  msgstr "Mapas de teclado disponibles:"
   4.646  
   4.647 -#: settings.cgi:783
   4.648 +#: settings.cgi:784
   4.649  msgid "Panel configuration"
   4.650  msgstr "Configuración del panel"
   4.651  
   4.652 -#: settings.cgi:786
   4.653 +#: settings.cgi:787
   4.654  msgid "Style:"
   4.655  msgstr "Estilo:"
   4.656  
   4.657 -#: settings.cgi:792
   4.658 +#: settings.cgi:793
   4.659  msgid "Configuration files:"
   4.660  msgstr "Archivos de configuración:"
   4.661  
   4.662 -#: settings.cgi:793 styles/default/header.html:42
   4.663 +#: settings.cgi:794 styles/default/header.html:42
   4.664  msgid "Panel"
   4.665  msgstr "Panel"
   4.666  
   4.667 -#: settings.cgi:794
   4.668 +#: settings.cgi:795
   4.669  msgid "Server"
   4.670  msgstr "Servidor"
   4.671  
   4.672 -#: settings.cgi:797
   4.673 +#: settings.cgi:798
   4.674  #, fuzzy
   4.675  msgid "TazPanel provides a debugging mode and page:"
   4.676  msgstr "TazPanel proporciona un modo de depuración y una página:"
   4.677 @@ -1253,24 +1308,24 @@
   4.678  msgid "connected"
   4.679  msgstr "conectado"
   4.680  
   4.681 -#: lib/libtazpanel:168
   4.682 +#: lib/libtazpanel:170
   4.683  msgid "IP Address"
   4.684  msgstr "Dirección IP"
   4.685  
   4.686 -#: lib/libtazpanel:169
   4.687 +#: lib/libtazpanel:171
   4.688  msgid "Scan ports"
   4.689  msgstr "Escanear puertos"
   4.690  
   4.691 -#: lib/libtazpanel:241
   4.692 +#: lib/libtazpanel:243
   4.693  #, fuzzy
   4.694  msgid "Please wait"
   4.695  msgstr "Por favor espere..."
   4.696  
   4.697 -#: lib/libtazpanel:293
   4.698 +#: lib/libtazpanel:295
   4.699  msgid "Label"
   4.700  msgstr "Etiqueta"
   4.701  
   4.702 -#: lib/libtazpanel:296
   4.703 +#: lib/libtazpanel:298
   4.704  msgid "Available"
   4.705  msgstr "Disponible"
   4.706  
     5.1 --- a/po/fr.po	Sun Jul 12 10:49:16 2015 +0200
     5.2 +++ b/po/fr.po	Sun Jul 12 13:03:50 2015 +0200
     5.3 @@ -8,7 +8,7 @@
     5.4  msgstr ""
     5.5  "Project-Id-Version: TazPanel 1.5.7\n"
     5.6  "Report-Msgid-Bugs-To: \n"
     5.7 -"POT-Creation-Date: 2015-06-05 20:42+0300\n"
     5.8 +"POT-Creation-Date: 2015-07-12 12:25+0200\n"
     5.9  "PO-Revision-Date: 2012-12-20 10:15+0100\n"
    5.10  "Last-Translator: Stanislas Leduc <shann@slitaz.org>\n"
    5.11  "Language-Team: French\n"
    5.12 @@ -55,7 +55,7 @@
    5.13  msgstr "Enregistrer"
    5.14  
    5.15  #: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670
    5.16 -#: network.cgi:720 boot.cgi:531 hardware.cgi:483 settings.cgi:766
    5.17 +#: network.cgi:720 boot.cgi:525 hardware.cgi:492 settings.cgi:766
    5.18  msgid "Edit"
    5.19  msgstr "Éditer"
    5.20  
    5.21 @@ -86,7 +86,7 @@
    5.22  
    5.23  #: index.cgi:295
    5.24  msgid "Run any command at your own risk, avoid interactive commands (%s)"
    5.25 -msgstr "Lance à vos risques et périls une commande non interactive (%s)"
    5.26 +msgstr "Lance à vos risques et périls une commande non interactive (pas %s)"
    5.27  
    5.28  #: index.cgi:300
    5.29  msgid "Downloading to: %s"
    5.30 @@ -198,11 +198,11 @@
    5.31  msgid "Getting boot logs..."
    5.32  msgstr "Collecte des journaux de démarrage..."
    5.33  
    5.34 -#: index.cgi:589 boot.cgi:99 styles/default/header.html:74
    5.35 +#: index.cgi:589 boot.cgi:98 styles/default/header.html:74
    5.36  msgid "Kernel messages"
    5.37  msgstr "Messages du noyau"
    5.38  
    5.39 -#: index.cgi:592 boot.cgi:100 styles/default/header.html:75
    5.40 +#: index.cgi:592 boot.cgi:99 styles/default/header.html:75
    5.41  msgid "Boot scripts"
    5.42  msgstr "Scripts de démarrage"
    5.43  
    5.44 @@ -210,7 +210,7 @@
    5.45  msgid "Creating report footer..."
    5.46  msgstr "Création du pied de page du rapport..."
    5.47  
    5.48 -#: index.cgi:608 index.cgi:704 boot.cgi:510 boot.cgi:512
    5.49 +#: index.cgi:608 index.cgi:704 boot.cgi:504 boot.cgi:506
    5.50  msgid "View"
    5.51  msgstr "Voir"
    5.52  
    5.53 @@ -262,7 +262,7 @@
    5.54  msgid "Network"
    5.55  msgstr "Réseau"
    5.56  
    5.57 -#: index.cgi:668 hardware.cgi:340
    5.58 +#: index.cgi:668 hardware.cgi:349
    5.59  msgid "Filesystem usage statistics"
    5.60  msgstr "Utilisation des systèmes de fichiers"
    5.61  
    5.62 @@ -299,11 +299,11 @@
    5.63  "DHCP pour obtenir automatiquement une adresse IP aléatoire ou configurer une "
    5.64  "adresse IP statique / fixe"
    5.65  
    5.66 -#: network.cgi:247 boot.cgi:152
    5.67 +#: network.cgi:247 boot.cgi:149
    5.68  msgid "Configuration"
    5.69  msgstr "Configuration"
    5.70  
    5.71 -#: network.cgi:253 lib/libtazpanel:165
    5.72 +#: network.cgi:253 lib/libtazpanel:167
    5.73  msgid "Interface"
    5.74  msgstr "Interface"
    5.75  
    5.76 @@ -360,11 +360,11 @@
    5.77  msgid "Help"
    5.78  msgstr "Aide"
    5.79  
    5.80 -#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:292
    5.81 +#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:289
    5.82  msgid "Start"
    5.83  msgstr "Démarrer"
    5.84  
    5.85 -#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:281
    5.86 +#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:278
    5.87  msgid "Stop"
    5.88  msgstr "Arrêter"
    5.89  
    5.90 @@ -384,7 +384,7 @@
    5.91  msgid "(hidden)"
    5.92  msgstr "(caché)"
    5.93  
    5.94 -#: network.cgi:349 boot.cgi:150 hardware.cgi:57 lib/libtazpanel:166
    5.95 +#: network.cgi:349 boot.cgi:147 hardware.cgi:57 lib/libtazpanel:168
    5.96  msgid "Name"
    5.97  msgstr "Nom"
    5.98  
    5.99 @@ -400,7 +400,7 @@
   5.100  msgid "Encryption"
   5.101  msgstr "Chiffrement"
   5.102  
   5.103 -#: network.cgi:353 boot.cgi:153 lib/libtazpanel:167
   5.104 +#: network.cgi:353 boot.cgi:150 lib/libtazpanel:169
   5.105  msgid "Status"
   5.106  msgstr "État"
   5.107  
   5.108 @@ -504,7 +504,7 @@
   5.109  msgid "forward packets between interfaces"
   5.110  msgstr "Echange de paquets entre interfaces"
   5.111  
   5.112 -#: network.cgi:656 network.cgi:690 boot.cgi:336 settings.cgi:608
   5.113 +#: network.cgi:656 network.cgi:690 boot.cgi:332 settings.cgi:608
   5.114  #: settings.cgi:722
   5.115  msgid "Change"
   5.116  msgstr "Changer"
   5.117 @@ -558,172 +558,225 @@
   5.118  msgid "Show more..."
   5.119  msgstr "En voir plus..."
   5.120  
   5.121 -#: boot.cgi:45 boot.cgi:492 styles/default/header.html:80
   5.122 +#: boot.cgi:40 boot.cgi:45 boot.cgi:486 styles/default/header.html:80
   5.123  msgid "System logs"
   5.124  msgstr "Journaux système"
   5.125  
   5.126 -#: boot.cgi:96
   5.127 +#: boot.cgi:95
   5.128  msgid "Boot log files"
   5.129  msgstr "Journaux de démarrage"
   5.130  
   5.131 -#: boot.cgi:101 styles/default/header.html:76
   5.132 +#: boot.cgi:100 styles/default/header.html:76
   5.133  msgid "X server"
   5.134  msgstr "Serveur X"
   5.135  
   5.136 -#: boot.cgi:102 styles/default/header.html:77
   5.137 +#: boot.cgi:101 styles/default/header.html:77
   5.138  msgid "X session"
   5.139  msgstr "Session X"
   5.140  
   5.141 -#: boot.cgi:124 boot.cgi:493 styles/default/header.html:81
   5.142 +#: boot.cgi:120 boot.cgi:487 styles/default/header.html:81
   5.143  msgid "Manage daemons"
   5.144  msgstr "Gérer les démons"
   5.145  
   5.146 -#: boot.cgi:126
   5.147 +#: boot.cgi:123
   5.148  msgid "Check, start and stop daemons on SliTaz"
   5.149  msgstr "Vérifier, démarrer et arrêter les démons sur SliTaz"
   5.150  
   5.151 -#: boot.cgi:151 hardware.cgi:168 settings.cgi:434
   5.152 +#: boot.cgi:148 hardware.cgi:177 settings.cgi:434
   5.153  msgid "Description"
   5.154  msgstr "Description"
   5.155  
   5.156 -#: boot.cgi:154
   5.157 +#: boot.cgi:151
   5.158  msgid "Action"
   5.159  msgstr "Action"
   5.160  
   5.161 -#: boot.cgi:155
   5.162 +#: boot.cgi:152
   5.163  msgid "PID"
   5.164  msgstr "PID"
   5.165  
   5.166 -#: boot.cgi:180
   5.167 +#: boot.cgi:177
   5.168  msgid "SliTaz Firewall with iptable rules"
   5.169  msgstr "Pare-feu SliTaz avec les règles iptables"
   5.170  
   5.171 -#: boot.cgi:182
   5.172 +#: boot.cgi:179
   5.173  msgid "Small and fast web server with CGI support"
   5.174  msgstr "Serveur web léger et rapide avec support de CGI"
   5.175  
   5.176 -#: boot.cgi:185
   5.177 +#: boot.cgi:182
   5.178  msgid "Network time protocol daemon"
   5.179  msgstr "Démon Network Time Protocol"
   5.180  
   5.181 -#: boot.cgi:188
   5.182 +#: boot.cgi:185
   5.183  msgid "Anonymous FTP server"
   5.184  msgstr "Serveur anonyme FTP"
   5.185  
   5.186 -#: boot.cgi:191
   5.187 +#: boot.cgi:188
   5.188  msgid "Busybox DHCP server"
   5.189  msgstr "Serveur DHCP Busybox"
   5.190  
   5.191 -#: boot.cgi:194
   5.192 +#: boot.cgi:191
   5.193  msgid "Linux Kernel log daemon"
   5.194  msgstr "Démon Linux Kernel log"
   5.195  
   5.196 -#: boot.cgi:197
   5.197 +#: boot.cgi:194
   5.198  msgid "Execute scheduled commands"
   5.199  msgstr "Exécuter des commandes planifiées"
   5.200  
   5.201 -#: boot.cgi:200
   5.202 +#: boot.cgi:197
   5.203  msgid "Small static DNS server daemon"
   5.204  msgstr "Démon du petit serveur DNS statique"
   5.205  
   5.206 -#: boot.cgi:203
   5.207 +#: boot.cgi:200
   5.208  msgid "Transfer a file on tftp request"
   5.209  msgstr "Transférer un fichier à travers une requête TFTP"
   5.210  
   5.211 -#: boot.cgi:206
   5.212 +#: boot.cgi:203
   5.213  #, fuzzy
   5.214  msgid "Printer daemon"
   5.215  msgstr "Gérer les démons"
   5.216  
   5.217 -#: boot.cgi:208
   5.218 +#: boot.cgi:205
   5.219  msgid "Listen for network connections and launch programs"
   5.220  msgstr "Écoute des connexions réseau et lancement de programmes"
   5.221  
   5.222 -#: boot.cgi:211
   5.223 +#: boot.cgi:208
   5.224  msgid "Manage a ZeroConf IPv4 link-local address"
   5.225  msgstr "Gestion d'une adresse ZeroConf IPv4 link-local"
   5.226  
   5.227 -#: boot.cgi:280
   5.228 +#: boot.cgi:277
   5.229  msgid "Started"
   5.230  msgstr "Démarré"
   5.231  
   5.232 -#: boot.cgi:291
   5.233 +#: boot.cgi:288
   5.234  msgid "Stopped"
   5.235  msgstr "Arrêté"
   5.236  
   5.237 -#: boot.cgi:318
   5.238 +#: boot.cgi:314
   5.239  msgid "GRUB Boot loader"
   5.240  msgstr "Gestionnaire de d'amorçage GRUB"
   5.241  
   5.242 -#: boot.cgi:320
   5.243 +#: boot.cgi:316
   5.244  msgid "The first application started when the computer powers on"
   5.245  msgstr "La première application démarrée au lancement du système"
   5.246  
   5.247 -#: boot.cgi:327
   5.248 +#: boot.cgi:323
   5.249  msgid "Default entry:"
   5.250  msgstr "Entrée par défaut :"
   5.251  
   5.252 -#: boot.cgi:329
   5.253 +#: boot.cgi:325
   5.254  msgid "Timeout:"
   5.255  msgstr "Temps d'attente :"
   5.256  
   5.257 -#: boot.cgi:331
   5.258 +#: boot.cgi:327
   5.259  msgid "Splash image:"
   5.260  msgstr "Image à afficher pendant le démarrage :"
   5.261  
   5.262 -#: boot.cgi:343
   5.263 +#: boot.cgi:339
   5.264  msgid "View or edit menu.lst"
   5.265  msgstr "Voir ou éditer le fichier menu.lst"
   5.266  
   5.267 -#: boot.cgi:348
   5.268 +#: boot.cgi:344
   5.269  msgid "Boot entries"
   5.270  msgstr "Entrées de Grub"
   5.271  
   5.272 -#: boot.cgi:355
   5.273 +#: boot.cgi:351
   5.274  msgid "Entry"
   5.275  msgstr "Entrée"
   5.276  
   5.277 -#: boot.cgi:376
   5.278 +#: boot.cgi:372
   5.279  msgid "Web boot is available with gPXE"
   5.280  msgstr "Le démarrage réseau est disponible avec gPXE"
   5.281  
   5.282 -#: boot.cgi:390 boot.cgi:496 styles/default/header.html:83
   5.283 +#: boot.cgi:386 boot.cgi:490 styles/default/header.html:83
   5.284  msgid "ISO mine"
   5.285  msgstr "Exploiter l'ISO"
   5.286  
   5.287 -#: boot.cgi:486
   5.288 +#: boot.cgi:388
   5.289 +msgid "Invalid ISO image."
   5.290 +msgstr "Image ISO non valide"
   5.291 +
   5.292 +#: boot.cgi:410
   5.293 +msgid "ISO image file full path"
   5.294 +msgstr "Chemin complet de l'image ISO"
   5.295 +
   5.296 +#: boot.cgi:411
   5.297 +msgid "set /dev/cdrom for a physical CD-ROM"
   5.298 +msgstr "Mettre /dev/cdrom pour un lecteur de CD-ROM"
   5.299 +
   5.300 +#: boot.cgi:414
   5.301 +msgid "Working directory"
   5.302 +msgstr "Répertoire de travail"
   5.303 +
   5.304 +#: boot.cgi:416
   5.305 +msgid "Target partition"
   5.306 +msgstr "Partition cible"
   5.307 +
   5.308 +#: boot.cgi:417
   5.309 +msgid ""
   5.310 +"For hard disk installation only. Will create /slitaz tree and keep other "
   5.311 +"files. No partitioning and no formatting."
   5.312 +msgstr ""
   5.313 +"Seulement pour l'installation sur disque. Créera l'arborescence /slitaz "
   5.314 +"et conservera les autres fichiers. Ni repartionnage, ni formatage"
   5.315 +
   5.316 +#: boot.cgi:420
   5.317 +msgid "Choose a partition (optional)"
   5.318 +msgstr "Choisissez une partition (optionnel)"
   5.319 +
   5.320 +#: boot.cgi:431
   5.321 +msgid "USB key device"
   5.322 +msgstr "Clé USB"
   5.323 +
   5.324 +#: boot.cgi:432
   5.325 +msgid "For USB boot key only. Will erase the full device."
   5.326 +msgstr "Pour démarrer sur USB seulement. Effacera toute la clé USB."
   5.327 +
   5.328 +#: boot.cgi:435
   5.329 +msgid "Choose a USB key (optional)"
   5.330 +msgstr "Choisissez une clé USB (optionnel)"
   5.331 +
   5.332 +#: boot.cgi:454
   5.333 +#, fuzzy
   5.334 +msgid "Choose an action"
   5.335 +msgstr "Connexion"
   5.336 +
   5.337 +#: boot.cgi:467
   5.338 +msgid "Mine"
   5.339 +msgstr "Effectuer"
   5.340 +
   5.341 +#: boot.cgi:480
   5.342  msgid "Boot &amp; Start services"
   5.343  msgstr "Démarrage &amp; lancement des services"
   5.344  
   5.345 -#: boot.cgi:488
   5.346 +#: boot.cgi:482
   5.347  msgid "Everything that happens before user login"
   5.348  msgstr "Tout ce qui se produit avant le login de l'utilisateur"
   5.349  
   5.350 -#: boot.cgi:491 styles/default/header.html:72
   5.351 +#: boot.cgi:485 styles/default/header.html:72
   5.352  msgid "Boot logs"
   5.353  msgstr "Journaux de démarrage"
   5.354  
   5.355 -#: boot.cgi:499 styles/default/header.html:68
   5.356 +#: boot.cgi:493 styles/default/header.html:68
   5.357  msgid "Boot loader"
   5.358  msgstr "Chargeur d'amorçage"
   5.359  
   5.360 -#: boot.cgi:506
   5.361 +#: boot.cgi:500
   5.362  msgid "Configuration files"
   5.363  msgstr "Fichiers de configuration"
   5.364  
   5.365 -#: boot.cgi:509
   5.366 +#: boot.cgi:503
   5.367  msgid "Main configuration file:"
   5.368  msgstr "Fichier de configuration principal :"
   5.369  
   5.370 -#: boot.cgi:511
   5.371 +#: boot.cgi:505
   5.372  msgid "Login manager settings:"
   5.373  msgstr "Réglages du gestionnaire de session :"
   5.374  
   5.375 -#: boot.cgi:519
   5.376 +#: boot.cgi:513
   5.377  msgid "Kernel cmdline"
   5.378  msgstr "Ligne de commande passée au noyau"
   5.379  
   5.380 -#: boot.cgi:526
   5.381 +#: boot.cgi:520
   5.382  msgid "Local startup commands"
   5.383  msgstr "Commandes supplémentaires lors du démarrage"
   5.384  
   5.385 @@ -735,7 +788,7 @@
   5.386  msgid "Bus"
   5.387  msgstr ""
   5.388  
   5.389 -#: hardware.cgi:55 hardware.cgi:525
   5.390 +#: hardware.cgi:55 hardware.cgi:534
   5.391  msgid "Device"
   5.392  msgstr ""
   5.393  
   5.394 @@ -752,184 +805,188 @@
   5.395  msgid "Detect PCI and USB hardware"
   5.396  msgstr "Détecter le matériel PCI/USB"
   5.397  
   5.398 -#: hardware.cgi:118 hardware.cgi:239 styles/default/header.html:91
   5.399 +#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:91
   5.400  msgid "Kernel modules"
   5.401  msgstr "Modules du noyau"
   5.402  
   5.403 -#: hardware.cgi:120
   5.404 +#: hardware.cgi:122
   5.405  msgid "Manage, search or get information about the Linux kernel modules"
   5.406  msgstr ""
   5.407  "Gérer, rechercher ou obtenir des informations sur les modules du noyau Linux"
   5.408  
   5.409 -#: hardware.cgi:124
   5.410 +#: hardware.cgi:126
   5.411  msgid "Modules search"
   5.412  msgstr "Recherche de modules"
   5.413  
   5.414 -#: hardware.cgi:132
   5.415 +#: hardware.cgi:127
   5.416 +msgid "Search"
   5.417 +msgstr ""
   5.418 +
   5.419 +#: hardware.cgi:135
   5.420  msgid "Detailed information for module: %s"
   5.421  msgstr "Les informations détaillées pour le module : %s"
   5.422  
   5.423 -#: hardware.cgi:152
   5.424 +#: hardware.cgi:159
   5.425  msgid "Matching result(s) for: %s"
   5.426  msgstr "Résultats correspondants pour : %s"
   5.427  
   5.428 -#: hardware.cgi:158
   5.429 +#: hardware.cgi:166
   5.430  msgid "Module:"
   5.431  msgstr "Module :"
   5.432  
   5.433 -#: hardware.cgi:167
   5.434 +#: hardware.cgi:176
   5.435  msgid "Module"
   5.436  msgstr "Module"
   5.437  
   5.438 -#: hardware.cgi:169 hardware.cgi:527 lib/libtazpanel:295
   5.439 +#: hardware.cgi:178 hardware.cgi:536 lib/libtazpanel:297
   5.440  msgid "Size"
   5.441  msgstr "Taille"
   5.442  
   5.443 -#: hardware.cgi:170 hardware.cgi:584 lib/libtazpanel:297
   5.444 +#: hardware.cgi:179 hardware.cgi:593 lib/libtazpanel:299
   5.445  msgid "Used"
   5.446  msgstr "Utilisé"
   5.447  
   5.448 -#: hardware.cgi:171
   5.449 +#: hardware.cgi:180
   5.450  msgid "by"
   5.451  msgstr "par"
   5.452  
   5.453 -#: hardware.cgi:195
   5.454 +#: hardware.cgi:204
   5.455  msgid "Information for USB Device %s"
   5.456  msgstr "Détails du périphérique USB %s"
   5.457  
   5.458 -#: hardware.cgi:197 hardware.cgi:215
   5.459 +#: hardware.cgi:206 hardware.cgi:224
   5.460  msgid "Detailed information about specified device."
   5.461  msgstr "Détails sur un périphérique."
   5.462  
   5.463 -#: hardware.cgi:213
   5.464 +#: hardware.cgi:222
   5.465  msgid "Information for PCI Device %s"
   5.466  msgstr "Détails du périphérique PCI %s"
   5.467  
   5.468 -#: hardware.cgi:234
   5.469 +#: hardware.cgi:243
   5.470  msgid "Drivers &amp; Devices"
   5.471  msgstr "Pilotes &amp; périphériques"
   5.472  
   5.473 -#: hardware.cgi:236
   5.474 +#: hardware.cgi:245
   5.475  msgid "Manage your computer hardware"
   5.476  msgstr "Gérer le matériel de l'ordinateur"
   5.477  
   5.478 -#: hardware.cgi:240 styles/default/header.html:92
   5.479 +#: hardware.cgi:249 styles/default/header.html:92
   5.480  msgid "Detect PCI/USB"
   5.481  msgstr "Détecter le matériel PCI/USB"
   5.482  
   5.483 -#: hardware.cgi:241
   5.484 +#: hardware.cgi:250
   5.485  msgid "Auto-install Xorg video driver"
   5.486  msgstr "Installation du driver vidéo Xorg"
   5.487  
   5.488 -#: hardware.cgi:251 hardware.cgi:268
   5.489 +#: hardware.cgi:260 hardware.cgi:277
   5.490  msgid "Battery"
   5.491  msgstr "Batterie"
   5.492  
   5.493 -#: hardware.cgi:271
   5.494 +#: hardware.cgi:280
   5.495  msgid "health"
   5.496  msgstr "santé"
   5.497  
   5.498 -#: hardware.cgi:280
   5.499 +#: hardware.cgi:289
   5.500  msgid "Discharging %d%% - %s"
   5.501  msgstr "Déchargement %d%% - %s"
   5.502  
   5.503 -#: hardware.cgi:284
   5.504 +#: hardware.cgi:293
   5.505  msgid "Charging %d%% - %s"
   5.506  msgstr "Chargement %d%% - %s"
   5.507  
   5.508 -#: hardware.cgi:286
   5.509 +#: hardware.cgi:295
   5.510  msgid "Charged 100%%"
   5.511  msgstr "Chargée à 100%%"
   5.512  
   5.513 -#: hardware.cgi:305
   5.514 +#: hardware.cgi:314
   5.515  msgid "Temperature:"
   5.516  msgstr "Température :"
   5.517  
   5.518 -#: hardware.cgi:320
   5.519 +#: hardware.cgi:329
   5.520  msgid "Brightness"
   5.521  msgstr "Luminosité d'écran"
   5.522  
   5.523 -#: hardware.cgi:462
   5.524 +#: hardware.cgi:471
   5.525  msgid "new mount point:"
   5.526  msgstr "Point de montage"
   5.527  
   5.528 -#: hardware.cgi:463
   5.529 +#: hardware.cgi:472
   5.530  msgid "read-only"
   5.531  msgstr "lecture seule"
   5.532  
   5.533 -#: hardware.cgi:478
   5.534 +#: hardware.cgi:487
   5.535  msgid "Filesystems table"
   5.536  msgstr "Systèmes de fichiers"
   5.537  
   5.538 -#: hardware.cgi:491 lib/libtazpanel:292
   5.539 +#: hardware.cgi:500 lib/libtazpanel:294
   5.540  msgid "Disk"
   5.541  msgstr "Disque"
   5.542  
   5.543 -#: hardware.cgi:492 lib/libtazpanel:298
   5.544 +#: hardware.cgi:501 lib/libtazpanel:300
   5.545  msgid "Mount point"
   5.546  msgstr "Point de montage"
   5.547  
   5.548 -#: hardware.cgi:493 lib/libtazpanel:294
   5.549 +#: hardware.cgi:502 lib/libtazpanel:296
   5.550  msgid "Type"
   5.551  msgstr "Type"
   5.552  
   5.553 -#: hardware.cgi:494
   5.554 +#: hardware.cgi:503
   5.555  msgid "Options"
   5.556  msgstr ""
   5.557  
   5.558 -#: hardware.cgi:495
   5.559 +#: hardware.cgi:504
   5.560  msgid "Freq"
   5.561  msgstr ""
   5.562  
   5.563 -#: hardware.cgi:496
   5.564 +#: hardware.cgi:505
   5.565  msgid "Pass"
   5.566  msgstr "Passe"
   5.567  
   5.568 -#: hardware.cgi:518
   5.569 +#: hardware.cgi:527
   5.570  msgid "Loop devices"
   5.571  msgstr ""
   5.572  
   5.573 -#: hardware.cgi:526
   5.574 +#: hardware.cgi:535
   5.575  msgid "Backing file"
   5.576  msgstr "Fichier conteneur"
   5.577  
   5.578 -#: hardware.cgi:528
   5.579 +#: hardware.cgi:537
   5.580  msgid "Access"
   5.581  msgstr "Accès"
   5.582  
   5.583 -#: hardware.cgi:529
   5.584 +#: hardware.cgi:538
   5.585  msgid "Offset"
   5.586  msgstr ""
   5.587  
   5.588 -#: hardware.cgi:538
   5.589 +#: hardware.cgi:547
   5.590  msgid "read/write"
   5.591  msgstr "lecture/écriture"
   5.592  
   5.593 -#: hardware.cgi:539 hardware.cgi:564
   5.594 +#: hardware.cgi:548 hardware.cgi:573
   5.595  msgid "read only"
   5.596  msgstr "lecture seule"
   5.597  
   5.598 -#: hardware.cgi:561
   5.599 +#: hardware.cgi:570
   5.600  msgid "Setup"
   5.601  msgstr "Définir"
   5.602  
   5.603 -#: hardware.cgi:562
   5.604 +#: hardware.cgi:571
   5.605  msgid "new backing file:"
   5.606  msgstr "nouveau fichier associé :"
   5.607  
   5.608 -#: hardware.cgi:563
   5.609 +#: hardware.cgi:572
   5.610  msgid "offset in bytes:"
   5.611  msgstr "offset en octets :"
   5.612  
   5.613 -#: hardware.cgi:581
   5.614 +#: hardware.cgi:590
   5.615  msgid "System memory"
   5.616  msgstr "Mémoire système"
   5.617  
   5.618 -#: hardware.cgi:587
   5.619 +#: hardware.cgi:596
   5.620  msgid "Buffers"
   5.621  msgstr ""
   5.622  
   5.623 -#: hardware.cgi:590
   5.624 +#: hardware.cgi:599
   5.625  msgid "Free"
   5.626  msgstr "Libre"
   5.627  
   5.628 @@ -1107,11 +1164,11 @@
   5.629  msgid "-d"
   5.630  msgstr "-d"
   5.631  
   5.632 -#: settings.cgi:462 settings.cgi:765 settings.cgi:776 settings.cgi:788
   5.633 +#: settings.cgi:462 settings.cgi:765 settings.cgi:777 settings.cgi:789
   5.634  msgid "Activate"
   5.635  msgstr "Activer"
   5.636  
   5.637 -#: settings.cgi:474 settings.cgi:497
   5.638 +#: settings.cgi:475 settings.cgi:497
   5.639  msgid "Small quick tweaks for user %s"
   5.640  msgstr "Ajustements pour l'utilisateur %s"
   5.641  
   5.642 @@ -1216,31 +1273,31 @@
   5.643  msgid "Suggested keymap for Xorg:"
   5.644  msgstr "Type de claviers suggéré pour Xorg :"
   5.645  
   5.646 -#: settings.cgi:772
   5.647 +#: settings.cgi:773
   5.648  msgid "Available keymaps:"
   5.649  msgstr "Claviers disponibles :"
   5.650  
   5.651 -#: settings.cgi:783
   5.652 +#: settings.cgi:784
   5.653  msgid "Panel configuration"
   5.654  msgstr "Configuration du panneau"
   5.655  
   5.656 -#: settings.cgi:786
   5.657 +#: settings.cgi:787
   5.658  msgid "Style:"
   5.659  msgstr "Style :"
   5.660  
   5.661 -#: settings.cgi:792
   5.662 +#: settings.cgi:793
   5.663  msgid "Configuration files:"
   5.664  msgstr "Fichiers de configuration :"
   5.665  
   5.666 -#: settings.cgi:793 styles/default/header.html:42
   5.667 +#: settings.cgi:794 styles/default/header.html:42
   5.668  msgid "Panel"
   5.669  msgstr "Panneau"
   5.670  
   5.671 -#: settings.cgi:794
   5.672 +#: settings.cgi:795
   5.673  msgid "Server"
   5.674  msgstr "Serveur"
   5.675  
   5.676 -#: settings.cgi:797
   5.677 +#: settings.cgi:798
   5.678  msgid "TazPanel provides a debugging mode and page:"
   5.679  msgstr "TazPanel fournit un mode et une page de debug :"
   5.680  
   5.681 @@ -1248,24 +1305,24 @@
   5.682  msgid "connected"
   5.683  msgstr "Connecté"
   5.684  
   5.685 -#: lib/libtazpanel:168
   5.686 +#: lib/libtazpanel:170
   5.687  msgid "IP Address"
   5.688  msgstr "Adresse IP"
   5.689  
   5.690 -#: lib/libtazpanel:169
   5.691 +#: lib/libtazpanel:171
   5.692  msgid "Scan ports"
   5.693  msgstr "Scan des ports"
   5.694  
   5.695 -#: lib/libtazpanel:241
   5.696 +#: lib/libtazpanel:243
   5.697  #, fuzzy
   5.698  msgid "Please wait"
   5.699  msgstr "merci de patientier..."
   5.700  
   5.701 -#: lib/libtazpanel:293
   5.702 +#: lib/libtazpanel:295
   5.703  msgid "Label"
   5.704  msgstr "Etiquette"
   5.705  
   5.706 -#: lib/libtazpanel:296
   5.707 +#: lib/libtazpanel:298
   5.708  msgid "Available"
   5.709  msgstr "Disponible"
   5.710  
     6.1 --- a/po/pl.po	Sun Jul 12 10:49:16 2015 +0200
     6.2 +++ b/po/pl.po	Sun Jul 12 13:03:50 2015 +0200
     6.3 @@ -7,7 +7,7 @@
     6.4  msgstr ""
     6.5  "Project-Id-Version: TazPanel 1.4.3\n"
     6.6  "Report-Msgid-Bugs-To: \n"
     6.7 -"POT-Creation-Date: 2015-06-05 20:42+0300\n"
     6.8 +"POT-Creation-Date: 2015-07-12 12:25+0200\n"
     6.9  "PO-Revision-Date: 2013-07-23 12:33+0100\n"
    6.10  "Last-Translator: Paweł Pyrczak <tkr.tkr.pl@gmail.com>\n"
    6.11  "Language-Team: \n"
    6.12 @@ -58,7 +58,7 @@
    6.13  msgstr "Zapisz"
    6.14  
    6.15  #: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670
    6.16 -#: network.cgi:720 boot.cgi:531 hardware.cgi:483 settings.cgi:766
    6.17 +#: network.cgi:720 boot.cgi:525 hardware.cgi:492 settings.cgi:766
    6.18  msgid "Edit"
    6.19  msgstr "Edytuj"
    6.20  
    6.21 @@ -202,11 +202,11 @@
    6.22  msgid "Getting boot logs..."
    6.23  msgstr "Pobieranie logów uruchamiania..."
    6.24  
    6.25 -#: index.cgi:589 boot.cgi:99 styles/default/header.html:74
    6.26 +#: index.cgi:589 boot.cgi:98 styles/default/header.html:74
    6.27  msgid "Kernel messages"
    6.28  msgstr "Komunikaty Jadra Linux (Kernel messages)"
    6.29  
    6.30 -#: index.cgi:592 boot.cgi:100 styles/default/header.html:75
    6.31 +#: index.cgi:592 boot.cgi:99 styles/default/header.html:75
    6.32  msgid "Boot scripts"
    6.33  msgstr "Skrypty uruchamiania"
    6.34  
    6.35 @@ -214,7 +214,7 @@
    6.36  msgid "Creating report footer..."
    6.37  msgstr "Tworzenie stopki raportu..."
    6.38  
    6.39 -#: index.cgi:608 index.cgi:704 boot.cgi:510 boot.cgi:512
    6.40 +#: index.cgi:608 index.cgi:704 boot.cgi:504 boot.cgi:506
    6.41  msgid "View"
    6.42  msgstr ""
    6.43  
    6.44 @@ -266,7 +266,7 @@
    6.45  msgid "Network"
    6.46  msgstr "Sieć"
    6.47  
    6.48 -#: index.cgi:668 hardware.cgi:340
    6.49 +#: index.cgi:668 hardware.cgi:349
    6.50  msgid "Filesystem usage statistics"
    6.51  msgstr "Statystyka użycia systemu plików"
    6.52  
    6.53 @@ -303,11 +303,11 @@
    6.54  "automatycznie pobierać losowy adres IP, albo skonfigurować dla połączenia "
    6.55  "statyczny/stały adres IP"
    6.56  
    6.57 -#: network.cgi:247 boot.cgi:152
    6.58 +#: network.cgi:247 boot.cgi:149
    6.59  msgid "Configuration"
    6.60  msgstr "Konfiguracja"
    6.61  
    6.62 -#: network.cgi:253 lib/libtazpanel:165
    6.63 +#: network.cgi:253 lib/libtazpanel:167
    6.64  msgid "Interface"
    6.65  msgstr "Interfejs"
    6.66  
    6.67 @@ -364,11 +364,11 @@
    6.68  msgid "Help"
    6.69  msgstr ""
    6.70  
    6.71 -#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:292
    6.72 +#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:289
    6.73  msgid "Start"
    6.74  msgstr "Start"
    6.75  
    6.76 -#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:281
    6.77 +#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:278
    6.78  msgid "Stop"
    6.79  msgstr "Stop"
    6.80  
    6.81 @@ -388,7 +388,7 @@
    6.82  msgid "(hidden)"
    6.83  msgstr ""
    6.84  
    6.85 -#: network.cgi:349 boot.cgi:150 hardware.cgi:57 lib/libtazpanel:166
    6.86 +#: network.cgi:349 boot.cgi:147 hardware.cgi:57 lib/libtazpanel:168
    6.87  msgid "Name"
    6.88  msgstr "Nazwa"
    6.89  
    6.90 @@ -405,7 +405,7 @@
    6.91  msgid "Encryption"
    6.92  msgstr "Szyfrowanie"
    6.93  
    6.94 -#: network.cgi:353 boot.cgi:153 lib/libtazpanel:167
    6.95 +#: network.cgi:353 boot.cgi:150 lib/libtazpanel:169
    6.96  msgid "Status"
    6.97  msgstr "Status"
    6.98  
    6.99 @@ -513,7 +513,7 @@
   6.100  msgid "forward packets between interfaces"
   6.101  msgstr ""
   6.102  
   6.103 -#: network.cgi:656 network.cgi:690 boot.cgi:336 settings.cgi:608
   6.104 +#: network.cgi:656 network.cgi:690 boot.cgi:332 settings.cgi:608
   6.105  #: settings.cgi:722
   6.106  msgid "Change"
   6.107  msgstr "Zmień"
   6.108 @@ -566,173 +566,224 @@
   6.109  msgid "Show more..."
   6.110  msgstr "Pokaż więcej..."
   6.111  
   6.112 -#: boot.cgi:45 boot.cgi:492 styles/default/header.html:80
   6.113 +#: boot.cgi:40 boot.cgi:45 boot.cgi:486 styles/default/header.html:80
   6.114  #, fuzzy
   6.115  msgid "System logs"
   6.116  msgstr "Język systemu"
   6.117  
   6.118 -#: boot.cgi:96
   6.119 +#: boot.cgi:95
   6.120  msgid "Boot log files"
   6.121  msgstr "Logi uruchamiania"
   6.122  
   6.123 -#: boot.cgi:101 styles/default/header.html:76
   6.124 +#: boot.cgi:100 styles/default/header.html:76
   6.125  msgid "X server"
   6.126  msgstr "Serwer X"
   6.127  
   6.128 -#: boot.cgi:102 styles/default/header.html:77
   6.129 +#: boot.cgi:101 styles/default/header.html:77
   6.130  msgid "X session"
   6.131  msgstr ""
   6.132  
   6.133 -#: boot.cgi:124 boot.cgi:493 styles/default/header.html:81
   6.134 +#: boot.cgi:120 boot.cgi:487 styles/default/header.html:81
   6.135  msgid "Manage daemons"
   6.136  msgstr "Zarządzaj usługami (daemons)"
   6.137  
   6.138 -#: boot.cgi:126
   6.139 +#: boot.cgi:123
   6.140  msgid "Check, start and stop daemons on SliTaz"
   6.141  msgstr "Sprawdź, uruchom i wyłącz usługi (daemons) w SliTaz"
   6.142  
   6.143 -#: boot.cgi:151 hardware.cgi:168 settings.cgi:434
   6.144 +#: boot.cgi:148 hardware.cgi:177 settings.cgi:434
   6.145  msgid "Description"
   6.146  msgstr "Opis"
   6.147  
   6.148 -#: boot.cgi:154
   6.149 +#: boot.cgi:151
   6.150  msgid "Action"
   6.151  msgstr "Akcja"
   6.152  
   6.153 -#: boot.cgi:155
   6.154 +#: boot.cgi:152
   6.155  msgid "PID"
   6.156  msgstr "PID"
   6.157  
   6.158 -#: boot.cgi:180
   6.159 +#: boot.cgi:177
   6.160  msgid "SliTaz Firewall with iptable rules"
   6.161  msgstr "Firewall i ustawienia iptables w SliTaz"
   6.162  
   6.163 -#: boot.cgi:182
   6.164 +#: boot.cgi:179
   6.165  msgid "Small and fast web server with CGI support"
   6.166  msgstr "Niewielki i szybki serwer web z obsługą CGI"
   6.167  
   6.168 -#: boot.cgi:185
   6.169 +#: boot.cgi:182
   6.170  msgid "Network time protocol daemon"
   6.171  msgstr "Usługa protokołu czasu sieciowego (NTP)"
   6.172  
   6.173 -#: boot.cgi:188
   6.174 +#: boot.cgi:185
   6.175  msgid "Anonymous FTP server"
   6.176  msgstr "Annimowy serwer FTP"
   6.177  
   6.178 -#: boot.cgi:191
   6.179 +#: boot.cgi:188
   6.180  msgid "Busybox DHCP server"
   6.181  msgstr "Serwer DHCP Busybox"
   6.182  
   6.183 -#: boot.cgi:194
   6.184 +#: boot.cgi:191
   6.185  msgid "Linux Kernel log daemon"
   6.186  msgstr "Usługa logów Jadra Linux"
   6.187  
   6.188 -#: boot.cgi:197
   6.189 +#: boot.cgi:194
   6.190  msgid "Execute scheduled commands"
   6.191  msgstr "Wykonuje zaplanowane polecenia"
   6.192  
   6.193 -#: boot.cgi:200
   6.194 +#: boot.cgi:197
   6.195  msgid "Small static DNS server daemon"
   6.196  msgstr "Usługa statycznego, niewielkiego serwera DNS"
   6.197  
   6.198 -#: boot.cgi:203
   6.199 +#: boot.cgi:200
   6.200  msgid "Transfer a file on tftp request"
   6.201  msgstr "Przesyła pliki przy pomocy protokołu TFTP (np web boot)"
   6.202  
   6.203 -#: boot.cgi:206
   6.204 +#: boot.cgi:203
   6.205  #, fuzzy
   6.206  msgid "Printer daemon"
   6.207  msgstr "Zarządzaj usługami (daemons)"
   6.208  
   6.209 -#: boot.cgi:208
   6.210 +#: boot.cgi:205
   6.211  msgid "Listen for network connections and launch programs"
   6.212  msgstr "Nasłuchuje połączeń sieciowych i uruchamia odpowiednie usługi"
   6.213  
   6.214 -#: boot.cgi:211
   6.215 +#: boot.cgi:208
   6.216  msgid "Manage a ZeroConf IPv4 link-local address"
   6.217  msgstr "Zarządzaj ZeroConf IPv4 link-local address"
   6.218  
   6.219 -#: boot.cgi:280
   6.220 +#: boot.cgi:277
   6.221  msgid "Started"
   6.222  msgstr "Uruchomiony"
   6.223  
   6.224 -#: boot.cgi:291
   6.225 +#: boot.cgi:288
   6.226  msgid "Stopped"
   6.227  msgstr "Zatrzymany"
   6.228  
   6.229 -#: boot.cgi:318
   6.230 +#: boot.cgi:314
   6.231  msgid "GRUB Boot loader"
   6.232  msgstr "Boot loader GRUB"
   6.233  
   6.234 -#: boot.cgi:320
   6.235 +#: boot.cgi:316
   6.236  msgid "The first application started when the computer powers on"
   6.237  msgstr "Pierwsza aplikacja uruchamiana tuż po włączeniu komputera"
   6.238  
   6.239 -#: boot.cgi:327
   6.240 +#: boot.cgi:323
   6.241  msgid "Default entry:"
   6.242  msgstr "Domyślny wpis:"
   6.243  
   6.244 -#: boot.cgi:329
   6.245 +#: boot.cgi:325
   6.246  msgid "Timeout:"
   6.247  msgstr "Timeout:"
   6.248  
   6.249 -#: boot.cgi:331
   6.250 +#: boot.cgi:327
   6.251  msgid "Splash image:"
   6.252  msgstr "Obraz powitalny:"
   6.253  
   6.254 -#: boot.cgi:343
   6.255 +#: boot.cgi:339
   6.256  msgid "View or edit menu.lst"
   6.257  msgstr "Zobacz albo edytuj menu.lst"
   6.258  
   6.259 -#: boot.cgi:348
   6.260 +#: boot.cgi:344
   6.261  msgid "Boot entries"
   6.262  msgstr "Wpisy boot"
   6.263  
   6.264 -#: boot.cgi:355
   6.265 +#: boot.cgi:351
   6.266  msgid "Entry"
   6.267  msgstr "Wpis"
   6.268  
   6.269 -#: boot.cgi:376
   6.270 +#: boot.cgi:372
   6.271  msgid "Web boot is available with gPXE"
   6.272  msgstr "Uruchamianie przez sieć jest dostępne poprzez gPXE"
   6.273  
   6.274 -#: boot.cgi:390 boot.cgi:496 styles/default/header.html:83
   6.275 +#: boot.cgi:386 boot.cgi:490 styles/default/header.html:83
   6.276  msgid "ISO mine"
   6.277  msgstr ""
   6.278  
   6.279 -#: boot.cgi:486
   6.280 +#: boot.cgi:388
   6.281 +msgid "Invalid ISO image."
   6.282 +msgstr ""
   6.283 +
   6.284 +#: boot.cgi:410
   6.285 +msgid "ISO image file full path"
   6.286 +msgstr ""
   6.287 +
   6.288 +#: boot.cgi:411
   6.289 +msgid "set /dev/cdrom for a physical CD-ROM"
   6.290 +msgstr ""
   6.291 +
   6.292 +#: boot.cgi:414
   6.293 +msgid "Working directory"
   6.294 +msgstr ""
   6.295 +
   6.296 +#: boot.cgi:416
   6.297 +msgid "Target partition"
   6.298 +msgstr ""
   6.299 +
   6.300 +#: boot.cgi:417
   6.301 +msgid ""
   6.302 +"For hard disk installation only. Will create /slitaz tree and keep other "
   6.303 +"files. No partitioning and no formatting."
   6.304 +msgstr ""
   6.305 +
   6.306 +#: boot.cgi:420
   6.307 +msgid "Choose a partition (optional)"
   6.308 +msgstr ""
   6.309 +
   6.310 +#: boot.cgi:431
   6.311 +msgid "USB key device"
   6.312 +msgstr ""
   6.313 +
   6.314 +#: boot.cgi:432
   6.315 +msgid "For USB boot key only. Will erase the full device."
   6.316 +msgstr ""
   6.317 +
   6.318 +#: boot.cgi:435
   6.319 +msgid "Choose a USB key (optional)"
   6.320 +msgstr ""
   6.321 +
   6.322 +#: boot.cgi:454
   6.323 +#, fuzzy
   6.324 +msgid "Choose an action"
   6.325 +msgstr "Połączenie"
   6.326 +
   6.327 +#: boot.cgi:467
   6.328 +msgid "Mine"
   6.329 +msgstr ""
   6.330 +
   6.331 +#: boot.cgi:480
   6.332  msgid "Boot &amp; Start services"
   6.333  msgstr "Uruchamianie i Start Usług"
   6.334  
   6.335 -#: boot.cgi:488
   6.336 +#: boot.cgi:482
   6.337  msgid "Everything that happens before user login"
   6.338  msgstr "Wszystko co się wydarzyło przed zalogowaniem uzytkownika"
   6.339  
   6.340 -#: boot.cgi:491 styles/default/header.html:72
   6.341 +#: boot.cgi:485 styles/default/header.html:72
   6.342  msgid "Boot logs"
   6.343  msgstr "Logi uruchamiania (boot)"
   6.344  
   6.345 -#: boot.cgi:499 styles/default/header.html:68
   6.346 +#: boot.cgi:493 styles/default/header.html:68
   6.347  msgid "Boot loader"
   6.348  msgstr "Program rozruchowy (boot loader)"
   6.349  
   6.350 -#: boot.cgi:506
   6.351 +#: boot.cgi:500
   6.352  msgid "Configuration files"
   6.353  msgstr "Pliki konfiguracyjne"
   6.354  
   6.355 -#: boot.cgi:509
   6.356 +#: boot.cgi:503
   6.357  msgid "Main configuration file:"
   6.358  msgstr "Główny plik konfiguracyjny:"
   6.359  
   6.360 -#: boot.cgi:511
   6.361 +#: boot.cgi:505
   6.362  msgid "Login manager settings:"
   6.363  msgstr "Ustawienia menadżera logowania:"
   6.364  
   6.365 -#: boot.cgi:519
   6.366 +#: boot.cgi:513
   6.367  msgid "Kernel cmdline"
   6.368  msgstr "Wiersz poleceń jądra"
   6.369  
   6.370 -#: boot.cgi:526
   6.371 +#: boot.cgi:520
   6.372  msgid "Local startup commands"
   6.373  msgstr "Lokalne polecenia podczas uruchamiania"
   6.374  
   6.375 @@ -744,7 +795,7 @@
   6.376  msgid "Bus"
   6.377  msgstr ""
   6.378  
   6.379 -#: hardware.cgi:55 hardware.cgi:525
   6.380 +#: hardware.cgi:55 hardware.cgi:534
   6.381  msgid "Device"
   6.382  msgstr ""
   6.383  
   6.384 @@ -761,189 +812,193 @@
   6.385  msgid "Detect PCI and USB hardware"
   6.386  msgstr "Wykryj urządzenia PCI i USB"
   6.387  
   6.388 -#: hardware.cgi:118 hardware.cgi:239 styles/default/header.html:91
   6.389 +#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:91
   6.390  msgid "Kernel modules"
   6.391  msgstr "Moduły jądra Linux"
   6.392  
   6.393 -#: hardware.cgi:120
   6.394 +#: hardware.cgi:122
   6.395  msgid "Manage, search or get information about the Linux kernel modules"
   6.396  msgstr "Zarządzaj, szukaj albo pobierz informacje na temat modułów jądra Linux"
   6.397  
   6.398 -#: hardware.cgi:124
   6.399 +#: hardware.cgi:126
   6.400  msgid "Modules search"
   6.401  msgstr "Szukaj moduły"
   6.402  
   6.403 -#: hardware.cgi:132
   6.404 +#: hardware.cgi:127
   6.405 +msgid "Search"
   6.406 +msgstr ""
   6.407 +
   6.408 +#: hardware.cgi:135
   6.409  msgid "Detailed information for module: %s"
   6.410  msgstr "Szczegółowe informacje dla modułu: %s"
   6.411  
   6.412 -#: hardware.cgi:152
   6.413 +#: hardware.cgi:159
   6.414  msgid "Matching result(s) for: %s"
   6.415  msgstr "Pasujące rezultat(y) dla: %s"
   6.416  
   6.417 -#: hardware.cgi:158
   6.418 +#: hardware.cgi:166
   6.419  msgid "Module:"
   6.420  msgstr "Moduł:"
   6.421  
   6.422 -#: hardware.cgi:167
   6.423 +#: hardware.cgi:176
   6.424  msgid "Module"
   6.425  msgstr "Moduł"
   6.426  
   6.427 -#: hardware.cgi:169 hardware.cgi:527 lib/libtazpanel:295
   6.428 +#: hardware.cgi:178 hardware.cgi:536 lib/libtazpanel:297
   6.429  msgid "Size"
   6.430  msgstr "Rozmiar"
   6.431  
   6.432 -#: hardware.cgi:170 hardware.cgi:584 lib/libtazpanel:297
   6.433 +#: hardware.cgi:179 hardware.cgi:593 lib/libtazpanel:299
   6.434  msgid "Used"
   6.435  msgstr "Używany"
   6.436  
   6.437 -#: hardware.cgi:171
   6.438 +#: hardware.cgi:180
   6.439  msgid "by"
   6.440  msgstr "przez"
   6.441  
   6.442 -#: hardware.cgi:195
   6.443 +#: hardware.cgi:204
   6.444  msgid "Information for USB Device %s"
   6.445  msgstr "Informacje i urządzeniu USB %s"
   6.446  
   6.447 -#: hardware.cgi:197 hardware.cgi:215
   6.448 +#: hardware.cgi:206 hardware.cgi:224
   6.449  msgid "Detailed information about specified device."
   6.450  msgstr "Szczegółowe informacje o wybranym urządzeniu."
   6.451  
   6.452 -#: hardware.cgi:213
   6.453 +#: hardware.cgi:222
   6.454  msgid "Information for PCI Device %s"
   6.455  msgstr "Informacje o urządzeniu PCI %s"
   6.456  
   6.457 -#: hardware.cgi:234
   6.458 +#: hardware.cgi:243
   6.459  msgid "Drivers &amp; Devices"
   6.460  msgstr "Sterowniki i Urządzenia"
   6.461  
   6.462 -#: hardware.cgi:236
   6.463 +#: hardware.cgi:245
   6.464  msgid "Manage your computer hardware"
   6.465  msgstr "Zarządzanie sprzętem i podłączonymi urządzeniami"
   6.466  
   6.467 -#: hardware.cgi:240 styles/default/header.html:92
   6.468 +#: hardware.cgi:249 styles/default/header.html:92
   6.469  msgid "Detect PCI/USB"
   6.470  msgstr "Wykryj urządzenia PCI/USB"
   6.471  
   6.472 -#: hardware.cgi:241
   6.473 +#: hardware.cgi:250
   6.474  msgid "Auto-install Xorg video driver"
   6.475  msgstr ""
   6.476  
   6.477 -#: hardware.cgi:251 hardware.cgi:268
   6.478 +#: hardware.cgi:260 hardware.cgi:277
   6.479  msgid "Battery"
   6.480  msgstr "Bateria"
   6.481  
   6.482 -#: hardware.cgi:271
   6.483 +#: hardware.cgi:280
   6.484  msgid "health"
   6.485  msgstr "zużycie"
   6.486  
   6.487 -#: hardware.cgi:280
   6.488 +#: hardware.cgi:289
   6.489  msgid "Discharging %d%% - %s"
   6.490  msgstr "Rozładowywanie %d%% - %s"
   6.491  
   6.492 -#: hardware.cgi:284
   6.493 +#: hardware.cgi:293
   6.494  msgid "Charging %d%% - %s"
   6.495  msgstr "Ładowanie %d%% - %s"
   6.496  
   6.497 -#: hardware.cgi:286
   6.498 +#: hardware.cgi:295
   6.499  #, fuzzy
   6.500  msgid "Charged 100%%"
   6.501  msgstr "Naładowana w 100%%"
   6.502  
   6.503 -#: hardware.cgi:305
   6.504 +#: hardware.cgi:314
   6.505  msgid "Temperature:"
   6.506  msgstr "Temperatura:"
   6.507  
   6.508 -#: hardware.cgi:320
   6.509 +#: hardware.cgi:329
   6.510  msgid "Brightness"
   6.511  msgstr "Jasność ekranu"
   6.512  
   6.513 -#: hardware.cgi:462
   6.514 +#: hardware.cgi:471
   6.515  #, fuzzy
   6.516  msgid "new mount point:"
   6.517  msgstr "Punkt montowania"
   6.518  
   6.519 -#: hardware.cgi:463
   6.520 +#: hardware.cgi:472
   6.521  msgid "read-only"
   6.522  msgstr ""
   6.523  
   6.524 -#: hardware.cgi:478
   6.525 +#: hardware.cgi:487
   6.526  msgid "Filesystems table"
   6.527  msgstr "Tabela systemów plików"
   6.528  
   6.529 -#: hardware.cgi:491 lib/libtazpanel:292
   6.530 +#: hardware.cgi:500 lib/libtazpanel:294
   6.531  msgid "Disk"
   6.532  msgstr "Dysk"
   6.533  
   6.534 -#: hardware.cgi:492 lib/libtazpanel:298
   6.535 +#: hardware.cgi:501 lib/libtazpanel:300
   6.536  msgid "Mount point"
   6.537  msgstr "Punkt montowania"
   6.538  
   6.539 -#: hardware.cgi:493 lib/libtazpanel:294
   6.540 +#: hardware.cgi:502 lib/libtazpanel:296
   6.541  msgid "Type"
   6.542  msgstr "Typ"
   6.543  
   6.544 -#: hardware.cgi:494
   6.545 +#: hardware.cgi:503
   6.546  #, fuzzy
   6.547  msgid "Options"
   6.548  msgstr "Akcja"
   6.549  
   6.550 -#: hardware.cgi:495
   6.551 +#: hardware.cgi:504
   6.552  msgid "Freq"
   6.553  msgstr ""
   6.554  
   6.555 -#: hardware.cgi:496
   6.556 +#: hardware.cgi:505
   6.557  #, fuzzy
   6.558  msgid "Pass"
   6.559  msgstr "Hasło:"
   6.560  
   6.561 -#: hardware.cgi:518
   6.562 +#: hardware.cgi:527
   6.563  msgid "Loop devices"
   6.564  msgstr ""
   6.565  
   6.566 -#: hardware.cgi:526
   6.567 +#: hardware.cgi:535
   6.568  #, fuzzy
   6.569  msgid "Backing file"
   6.570  msgstr "Plik konfiguracyjny"
   6.571  
   6.572 -#: hardware.cgi:528
   6.573 +#: hardware.cgi:537
   6.574  #, fuzzy
   6.575  msgid "Access"
   6.576  msgstr "Punkt dostępowy"
   6.577  
   6.578 -#: hardware.cgi:529
   6.579 +#: hardware.cgi:538
   6.580  msgid "Offset"
   6.581  msgstr ""
   6.582  
   6.583 -#: hardware.cgi:538
   6.584 +#: hardware.cgi:547
   6.585  msgid "read/write"
   6.586  msgstr ""
   6.587  
   6.588 -#: hardware.cgi:539 hardware.cgi:564
   6.589 +#: hardware.cgi:548 hardware.cgi:573
   6.590  msgid "read only"
   6.591  msgstr ""
   6.592  
   6.593 -#: hardware.cgi:561
   6.594 +#: hardware.cgi:570
   6.595  msgid "Setup"
   6.596  msgstr ""
   6.597  
   6.598 -#: hardware.cgi:562
   6.599 +#: hardware.cgi:571
   6.600  msgid "new backing file:"
   6.601  msgstr ""
   6.602  
   6.603 -#: hardware.cgi:563
   6.604 +#: hardware.cgi:572
   6.605  msgid "offset in bytes:"
   6.606  msgstr ""
   6.607  
   6.608 -#: hardware.cgi:581
   6.609 +#: hardware.cgi:590
   6.610  msgid "System memory"
   6.611  msgstr "Pamięć systemowa"
   6.612  
   6.613 -#: hardware.cgi:587
   6.614 +#: hardware.cgi:596
   6.615  msgid "Buffers"
   6.616  msgstr ""
   6.617  
   6.618 -#: hardware.cgi:590
   6.619 +#: hardware.cgi:599
   6.620  msgid "Free"
   6.621  msgstr ""
   6.622  
   6.623 @@ -1122,11 +1177,11 @@
   6.624  msgid "-d"
   6.625  msgstr "-d"
   6.626  
   6.627 -#: settings.cgi:462 settings.cgi:765 settings.cgi:776 settings.cgi:788
   6.628 +#: settings.cgi:462 settings.cgi:765 settings.cgi:777 settings.cgi:789
   6.629  msgid "Activate"
   6.630  msgstr "Aktywuj"
   6.631  
   6.632 -#: settings.cgi:474 settings.cgi:497
   6.633 +#: settings.cgi:475 settings.cgi:497
   6.634  msgid "Small quick tweaks for user %s"
   6.635  msgstr ""
   6.636  
   6.637 @@ -1230,31 +1285,31 @@
   6.638  msgid "Suggested keymap for Xorg:"
   6.639  msgstr "Sugerowany układ klawiatury dla Xorg:"
   6.640  
   6.641 -#: settings.cgi:772
   6.642 +#: settings.cgi:773
   6.643  msgid "Available keymaps:"
   6.644  msgstr "Dostępne układy klawiatury:"
   6.645  
   6.646 -#: settings.cgi:783
   6.647 +#: settings.cgi:784
   6.648  msgid "Panel configuration"
   6.649  msgstr "Konfiguracja Panelu"
   6.650  
   6.651 -#: settings.cgi:786
   6.652 +#: settings.cgi:787
   6.653  msgid "Style:"
   6.654  msgstr "Styl:"
   6.655  
   6.656 -#: settings.cgi:792
   6.657 +#: settings.cgi:793
   6.658  msgid "Configuration files:"
   6.659  msgstr "Pliki konfiguracyjne:"
   6.660  
   6.661 -#: settings.cgi:793 styles/default/header.html:42
   6.662 +#: settings.cgi:794 styles/default/header.html:42
   6.663  msgid "Panel"
   6.664  msgstr "Panel"
   6.665  
   6.666 -#: settings.cgi:794
   6.667 +#: settings.cgi:795
   6.668  msgid "Server"
   6.669  msgstr "Serwer"
   6.670  
   6.671 -#: settings.cgi:797
   6.672 +#: settings.cgi:798
   6.673  #, fuzzy
   6.674  msgid "TazPanel provides a debugging mode and page:"
   6.675  msgstr "TazPanel udostępnia tryb debugowania i stronę:"
   6.676 @@ -1263,24 +1318,24 @@
   6.677  msgid "connected"
   6.678  msgstr "połączony"
   6.679  
   6.680 -#: lib/libtazpanel:168
   6.681 +#: lib/libtazpanel:170
   6.682  msgid "IP Address"
   6.683  msgstr "Adres IP"
   6.684  
   6.685 -#: lib/libtazpanel:169
   6.686 +#: lib/libtazpanel:171
   6.687  msgid "Scan ports"
   6.688  msgstr "Skanuj porty"
   6.689  
   6.690 -#: lib/libtazpanel:241
   6.691 +#: lib/libtazpanel:243
   6.692  #, fuzzy
   6.693  msgid "Please wait"
   6.694  msgstr "Proszę czekać..."
   6.695  
   6.696 -#: lib/libtazpanel:293
   6.697 +#: lib/libtazpanel:295
   6.698  msgid "Label"
   6.699  msgstr "Etykieta"
   6.700  
   6.701 -#: lib/libtazpanel:296
   6.702 +#: lib/libtazpanel:298
   6.703  msgid "Available"
   6.704  msgstr "Dostepny"
   6.705  
     7.1 --- a/po/pt_BR.po	Sun Jul 12 10:49:16 2015 +0200
     7.2 +++ b/po/pt_BR.po	Sun Jul 12 13:03:50 2015 +0200
     7.3 @@ -7,7 +7,7 @@
     7.4  msgstr ""
     7.5  "Project-Id-Version: TazPanel 1.5.7\n"
     7.6  "Report-Msgid-Bugs-To: \n"
     7.7 -"POT-Creation-Date: 2015-06-05 20:42+0300\n"
     7.8 +"POT-Creation-Date: 2015-07-12 12:25+0200\n"
     7.9  "PO-Revision-Date: 2014-03-06 22:24-0300\n"
    7.10  "Last-Translator: Claudinei Pereira <claudinei@slitaz.org>, 2014\n"
    7.11  "Language-Team: Portuguese <i18n@slitaz.org>\n"
    7.12 @@ -54,7 +54,7 @@
    7.13  msgstr "Salvar"
    7.14  
    7.15  #: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670
    7.16 -#: network.cgi:720 boot.cgi:531 hardware.cgi:483 settings.cgi:766
    7.17 +#: network.cgi:720 boot.cgi:525 hardware.cgi:492 settings.cgi:766
    7.18  msgid "Edit"
    7.19  msgstr "Editar"
    7.20  
    7.21 @@ -198,11 +198,11 @@
    7.22  msgid "Getting boot logs..."
    7.23  msgstr "Gerando logs de boot..."
    7.24  
    7.25 -#: index.cgi:589 boot.cgi:99 styles/default/header.html:74
    7.26 +#: index.cgi:589 boot.cgi:98 styles/default/header.html:74
    7.27  msgid "Kernel messages"
    7.28  msgstr "Mensagens do kernel"
    7.29  
    7.30 -#: index.cgi:592 boot.cgi:100 styles/default/header.html:75
    7.31 +#: index.cgi:592 boot.cgi:99 styles/default/header.html:75
    7.32  msgid "Boot scripts"
    7.33  msgstr "Scripts de boot"
    7.34  
    7.35 @@ -210,7 +210,7 @@
    7.36  msgid "Creating report footer..."
    7.37  msgstr "Criando rodapé do relatório..."
    7.38  
    7.39 -#: index.cgi:608 index.cgi:704 boot.cgi:510 boot.cgi:512
    7.40 +#: index.cgi:608 index.cgi:704 boot.cgi:504 boot.cgi:506
    7.41  msgid "View"
    7.42  msgstr ""
    7.43  
    7.44 @@ -262,7 +262,7 @@
    7.45  msgid "Network"
    7.46  msgstr "Rede"
    7.47  
    7.48 -#: index.cgi:668 hardware.cgi:340
    7.49 +#: index.cgi:668 hardware.cgi:349
    7.50  msgid "Filesystem usage statistics"
    7.51  msgstr "Estatísticas de utilização do sistema de arquivos"
    7.52  
    7.53 @@ -298,11 +298,11 @@
    7.54  "Aqui você pode configurar conexões cabeadas usando DHCP para obter "
    7.55  "automaticamente um IP aleatório ou configurar um IP fixo"
    7.56  
    7.57 -#: network.cgi:247 boot.cgi:152
    7.58 +#: network.cgi:247 boot.cgi:149
    7.59  msgid "Configuration"
    7.60  msgstr "Configuração"
    7.61  
    7.62 -#: network.cgi:253 lib/libtazpanel:165
    7.63 +#: network.cgi:253 lib/libtazpanel:167
    7.64  msgid "Interface"
    7.65  msgstr "Interface"
    7.66  
    7.67 @@ -359,11 +359,11 @@
    7.68  msgid "Help"
    7.69  msgstr ""
    7.70  
    7.71 -#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:292
    7.72 +#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:289
    7.73  msgid "Start"
    7.74  msgstr "Iniciar"
    7.75  
    7.76 -#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:281
    7.77 +#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:278
    7.78  msgid "Stop"
    7.79  msgstr "Parar"
    7.80  
    7.81 @@ -383,7 +383,7 @@
    7.82  msgid "(hidden)"
    7.83  msgstr ""
    7.84  
    7.85 -#: network.cgi:349 boot.cgi:150 hardware.cgi:57 lib/libtazpanel:166
    7.86 +#: network.cgi:349 boot.cgi:147 hardware.cgi:57 lib/libtazpanel:168
    7.87  msgid "Name"
    7.88  msgstr "Nome"
    7.89  
    7.90 @@ -400,7 +400,7 @@
    7.91  msgid "Encryption"
    7.92  msgstr "Encriptação"
    7.93  
    7.94 -#: network.cgi:353 boot.cgi:153 lib/libtazpanel:167
    7.95 +#: network.cgi:353 boot.cgi:150 lib/libtazpanel:169
    7.96  msgid "Status"
    7.97  msgstr "Status"
    7.98  
    7.99 @@ -508,7 +508,7 @@
   7.100  msgid "forward packets between interfaces"
   7.101  msgstr ""
   7.102  
   7.103 -#: network.cgi:656 network.cgi:690 boot.cgi:336 settings.cgi:608
   7.104 +#: network.cgi:656 network.cgi:690 boot.cgi:332 settings.cgi:608
   7.105  #: settings.cgi:722
   7.106  msgid "Change"
   7.107  msgstr "Alterar"
   7.108 @@ -561,173 +561,224 @@
   7.109  msgid "Show more..."
   7.110  msgstr "Mostrar mais..."
   7.111  
   7.112 -#: boot.cgi:45 boot.cgi:492 styles/default/header.html:80
   7.113 +#: boot.cgi:40 boot.cgi:45 boot.cgi:486 styles/default/header.html:80
   7.114  #, fuzzy
   7.115  msgid "System logs"
   7.116  msgstr "Linguagem do sistema"
   7.117  
   7.118 -#: boot.cgi:96
   7.119 +#: boot.cgi:95
   7.120  msgid "Boot log files"
   7.121  msgstr "Arquivos de log de boot"
   7.122  
   7.123 -#: boot.cgi:101 styles/default/header.html:76
   7.124 +#: boot.cgi:100 styles/default/header.html:76
   7.125  msgid "X server"
   7.126  msgstr "Servidor X"
   7.127  
   7.128 -#: boot.cgi:102 styles/default/header.html:77
   7.129 +#: boot.cgi:101 styles/default/header.html:77
   7.130  msgid "X session"
   7.131  msgstr ""
   7.132  
   7.133 -#: boot.cgi:124 boot.cgi:493 styles/default/header.html:81
   7.134 +#: boot.cgi:120 boot.cgi:487 styles/default/header.html:81
   7.135  msgid "Manage daemons"
   7.136  msgstr "Gerenciar daemons"
   7.137  
   7.138 -#: boot.cgi:126
   7.139 +#: boot.cgi:123
   7.140  msgid "Check, start and stop daemons on SliTaz"
   7.141  msgstr "Checar, iniciar e parar daemons no SliTaz"
   7.142  
   7.143 -#: boot.cgi:151 hardware.cgi:168 settings.cgi:434
   7.144 +#: boot.cgi:148 hardware.cgi:177 settings.cgi:434
   7.145  msgid "Description"
   7.146  msgstr "Descrição"
   7.147  
   7.148 -#: boot.cgi:154
   7.149 +#: boot.cgi:151
   7.150  msgid "Action"
   7.151  msgstr "Ação"
   7.152  
   7.153 -#: boot.cgi:155
   7.154 +#: boot.cgi:152
   7.155  msgid "PID"
   7.156  msgstr "PID"
   7.157  
   7.158 -#: boot.cgi:180
   7.159 +#: boot.cgi:177
   7.160  msgid "SliTaz Firewall with iptable rules"
   7.161  msgstr "Firewall do SliTaz com regras do iptables"
   7.162  
   7.163 -#: boot.cgi:182
   7.164 +#: boot.cgi:179
   7.165  msgid "Small and fast web server with CGI support"
   7.166  msgstr "Pequeno e rápido servidor web com suporte a CGI"
   7.167  
   7.168 -#: boot.cgi:185
   7.169 +#: boot.cgi:182
   7.170  msgid "Network time protocol daemon"
   7.171  msgstr "Daemon do protocolo de tempo de rede"
   7.172  
   7.173 -#: boot.cgi:188
   7.174 +#: boot.cgi:185
   7.175  msgid "Anonymous FTP server"
   7.176  msgstr "Servidor FTP anônimo"
   7.177  
   7.178 -#: boot.cgi:191
   7.179 +#: boot.cgi:188
   7.180  msgid "Busybox DHCP server"
   7.181  msgstr "Servidor DHCP do busybox"
   7.182  
   7.183 -#: boot.cgi:194
   7.184 +#: boot.cgi:191
   7.185  msgid "Linux Kernel log daemon"
   7.186  msgstr "Daemon de log do kernel Linux"
   7.187  
   7.188 -#: boot.cgi:197
   7.189 +#: boot.cgi:194
   7.190  msgid "Execute scheduled commands"
   7.191  msgstr "Executar comandos agendados"
   7.192  
   7.193 -#: boot.cgi:200
   7.194 +#: boot.cgi:197
   7.195  msgid "Small static DNS server daemon"
   7.196  msgstr "Daemon do pequeno servidor estático de DNS"
   7.197  
   7.198 -#: boot.cgi:203
   7.199 +#: boot.cgi:200
   7.200  msgid "Transfer a file on tftp request"
   7.201  msgstr "Transferir um arquivo por requisição tftp"
   7.202  
   7.203 -#: boot.cgi:206
   7.204 +#: boot.cgi:203
   7.205  #, fuzzy
   7.206  msgid "Printer daemon"
   7.207  msgstr "Gerenciar daemons"
   7.208  
   7.209 -#: boot.cgi:208
   7.210 +#: boot.cgi:205
   7.211  msgid "Listen for network connections and launch programs"
   7.212  msgstr "Esperar por uma conexão de rede e executa programas"
   7.213  
   7.214 -#: boot.cgi:211
   7.215 +#: boot.cgi:208
   7.216  msgid "Manage a ZeroConf IPv4 link-local address"
   7.217  msgstr "Gerencia um endereço IPv4 pelo ZeroConf"
   7.218  
   7.219 -#: boot.cgi:280
   7.220 +#: boot.cgi:277
   7.221  msgid "Started"
   7.222  msgstr "Iniciado"
   7.223  
   7.224 -#: boot.cgi:291
   7.225 +#: boot.cgi:288
   7.226  msgid "Stopped"
   7.227  msgstr "Parado"
   7.228  
   7.229 -#: boot.cgi:318
   7.230 +#: boot.cgi:314
   7.231  msgid "GRUB Boot loader"
   7.232  msgstr "Gerenciador de boot GRUB"
   7.233  
   7.234 -#: boot.cgi:320
   7.235 +#: boot.cgi:316
   7.236  msgid "The first application started when the computer powers on"
   7.237  msgstr "O primeiro aplicativo iniciado quando o computador é ligado"
   7.238  
   7.239 -#: boot.cgi:327
   7.240 +#: boot.cgi:323
   7.241  msgid "Default entry:"
   7.242  msgstr "Entrada padrão:"
   7.243  
   7.244 -#: boot.cgi:329
   7.245 +#: boot.cgi:325
   7.246  msgid "Timeout:"
   7.247  msgstr "Timeout:"
   7.248  
   7.249 -#: boot.cgi:331
   7.250 +#: boot.cgi:327
   7.251  msgid "Splash image:"
   7.252  msgstr "Splash image:"
   7.253  
   7.254 -#: boot.cgi:343
   7.255 +#: boot.cgi:339
   7.256  msgid "View or edit menu.lst"
   7.257  msgstr "Ver ou alterar o menu.lst"
   7.258  
   7.259 -#: boot.cgi:348
   7.260 +#: boot.cgi:344
   7.261  msgid "Boot entries"
   7.262  msgstr "Entradas de boot"
   7.263  
   7.264 -#: boot.cgi:355
   7.265 +#: boot.cgi:351
   7.266  msgid "Entry"
   7.267  msgstr "Entrada"
   7.268  
   7.269 -#: boot.cgi:376
   7.270 +#: boot.cgi:372
   7.271  msgid "Web boot is available with gPXE"
   7.272  msgstr "Boot via web está disponível pelo gPXE"
   7.273  
   7.274 -#: boot.cgi:390 boot.cgi:496 styles/default/header.html:83
   7.275 +#: boot.cgi:386 boot.cgi:490 styles/default/header.html:83
   7.276  msgid "ISO mine"
   7.277  msgstr ""
   7.278  
   7.279 -#: boot.cgi:486
   7.280 +#: boot.cgi:388
   7.281 +msgid "Invalid ISO image."
   7.282 +msgstr ""
   7.283 +
   7.284 +#: boot.cgi:410
   7.285 +msgid "ISO image file full path"
   7.286 +msgstr ""
   7.287 +
   7.288 +#: boot.cgi:411
   7.289 +msgid "set /dev/cdrom for a physical CD-ROM"
   7.290 +msgstr ""
   7.291 +
   7.292 +#: boot.cgi:414
   7.293 +msgid "Working directory"
   7.294 +msgstr ""
   7.295 +
   7.296 +#: boot.cgi:416
   7.297 +msgid "Target partition"
   7.298 +msgstr ""
   7.299 +
   7.300 +#: boot.cgi:417
   7.301 +msgid ""
   7.302 +"For hard disk installation only. Will create /slitaz tree and keep other "
   7.303 +"files. No partitioning and no formatting."
   7.304 +msgstr ""
   7.305 +
   7.306 +#: boot.cgi:420
   7.307 +msgid "Choose a partition (optional)"
   7.308 +msgstr ""
   7.309 +
   7.310 +#: boot.cgi:431
   7.311 +msgid "USB key device"
   7.312 +msgstr ""
   7.313 +
   7.314 +#: boot.cgi:432
   7.315 +msgid "For USB boot key only. Will erase the full device."
   7.316 +msgstr ""
   7.317 +
   7.318 +#: boot.cgi:435
   7.319 +msgid "Choose a USB key (optional)"
   7.320 +msgstr ""
   7.321 +
   7.322 +#: boot.cgi:454
   7.323 +#, fuzzy
   7.324 +msgid "Choose an action"
   7.325 +msgstr "Conexão"
   7.326 +
   7.327 +#: boot.cgi:467
   7.328 +msgid "Mine"
   7.329 +msgstr ""
   7.330 +
   7.331 +#: boot.cgi:480
   7.332  msgid "Boot &amp; Start services"
   7.333  msgstr "Serviços de Boot &amp; inicialização"
   7.334  
   7.335 -#: boot.cgi:488
   7.336 +#: boot.cgi:482
   7.337  msgid "Everything that happens before user login"
   7.338  msgstr "Tudo o que ocorre antes do login de usuário"
   7.339  
   7.340 -#: boot.cgi:491 styles/default/header.html:72
   7.341 +#: boot.cgi:485 styles/default/header.html:72
   7.342  msgid "Boot logs"
   7.343  msgstr "Logs de boot"
   7.344  
   7.345 -#: boot.cgi:499 styles/default/header.html:68
   7.346 +#: boot.cgi:493 styles/default/header.html:68
   7.347  msgid "Boot loader"
   7.348  msgstr "Gerenciador de boot"
   7.349  
   7.350 -#: boot.cgi:506
   7.351 +#: boot.cgi:500
   7.352  msgid "Configuration files"
   7.353  msgstr "Arquivos de configuração"
   7.354  
   7.355 -#: boot.cgi:509
   7.356 +#: boot.cgi:503
   7.357  msgid "Main configuration file:"
   7.358  msgstr "Arquivo de configuração principal:"
   7.359  
   7.360 -#: boot.cgi:511
   7.361 +#: boot.cgi:505
   7.362  msgid "Login manager settings:"
   7.363  msgstr "Configurações do gerenciador de login:"
   7.364  
   7.365 -#: boot.cgi:519
   7.366 +#: boot.cgi:513
   7.367  msgid "Kernel cmdline"
   7.368  msgstr "Opções de linha de comando do kernel"
   7.369  
   7.370 -#: boot.cgi:526
   7.371 +#: boot.cgi:520
   7.372  msgid "Local startup commands"
   7.373  msgstr "Comandos de inicialização locais"
   7.374  
   7.375 @@ -739,7 +790,7 @@
   7.376  msgid "Bus"
   7.377  msgstr ""
   7.378  
   7.379 -#: hardware.cgi:55 hardware.cgi:525
   7.380 +#: hardware.cgi:55 hardware.cgi:534
   7.381  msgid "Device"
   7.382  msgstr ""
   7.383  
   7.384 @@ -756,187 +807,191 @@
   7.385  msgid "Detect PCI and USB hardware"
   7.386  msgstr "Detectar hardware PCI e USB"
   7.387  
   7.388 -#: hardware.cgi:118 hardware.cgi:239 styles/default/header.html:91
   7.389 +#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:91
   7.390  msgid "Kernel modules"
   7.391  msgstr "Módulos de kernel"
   7.392  
   7.393 -#: hardware.cgi:120
   7.394 +#: hardware.cgi:122
   7.395  msgid "Manage, search or get information about the Linux kernel modules"
   7.396  msgstr "Gerenciar, buscar e obter informações sobre módulos do kernel linux"
   7.397  
   7.398 -#: hardware.cgi:124
   7.399 +#: hardware.cgi:126
   7.400  msgid "Modules search"
   7.401  msgstr "Busca de módulos"
   7.402  
   7.403 -#: hardware.cgi:132
   7.404 +#: hardware.cgi:127
   7.405 +msgid "Search"
   7.406 +msgstr ""
   7.407 +
   7.408 +#: hardware.cgi:135
   7.409  msgid "Detailed information for module: %s"
   7.410  msgstr "Informações detalhadas de módulo: %s"
   7.411  
   7.412 -#: hardware.cgi:152
   7.413 +#: hardware.cgi:159
   7.414  msgid "Matching result(s) for: %s"
   7.415  msgstr "Resultado(s) encontrado(s) para: %s"
   7.416  
   7.417 -#: hardware.cgi:158
   7.418 +#: hardware.cgi:166
   7.419  msgid "Module:"
   7.420  msgstr "Módulo:"
   7.421  
   7.422 -#: hardware.cgi:167
   7.423 +#: hardware.cgi:176
   7.424  msgid "Module"
   7.425  msgstr "Módulo"
   7.426  
   7.427 -#: hardware.cgi:169 hardware.cgi:527 lib/libtazpanel:295
   7.428 +#: hardware.cgi:178 hardware.cgi:536 lib/libtazpanel:297
   7.429  msgid "Size"
   7.430  msgstr "Tamanho"
   7.431  
   7.432 -#: hardware.cgi:170 hardware.cgi:584 lib/libtazpanel:297
   7.433 +#: hardware.cgi:179 hardware.cgi:593 lib/libtazpanel:299
   7.434  msgid "Used"
   7.435  msgstr "Usado"
   7.436  
   7.437 -#: hardware.cgi:171
   7.438 +#: hardware.cgi:180
   7.439  msgid "by"
   7.440  msgstr "por"
   7.441  
   7.442 -#: hardware.cgi:195
   7.443 +#: hardware.cgi:204
   7.444  msgid "Information for USB Device %s"
   7.445  msgstr "Informação sobre o dispositivo USB %s"
   7.446  
   7.447 -#: hardware.cgi:197 hardware.cgi:215
   7.448 +#: hardware.cgi:206 hardware.cgi:224
   7.449  msgid "Detailed information about specified device."
   7.450  msgstr "Informação detalhada sobre um dispositivo específico."
   7.451  
   7.452 -#: hardware.cgi:213
   7.453 +#: hardware.cgi:222
   7.454  msgid "Information for PCI Device %s"
   7.455  msgstr "Informação sobre o dispositivo PCI %s"
   7.456  
   7.457 -#: hardware.cgi:234
   7.458 +#: hardware.cgi:243
   7.459  msgid "Drivers &amp; Devices"
   7.460  msgstr "Drivers &amp; dispositivos"
   7.461  
   7.462 -#: hardware.cgi:236
   7.463 +#: hardware.cgi:245
   7.464  msgid "Manage your computer hardware"
   7.465  msgstr "Gerencie o hardware de seu computador"
   7.466  
   7.467 -#: hardware.cgi:240 styles/default/header.html:92
   7.468 +#: hardware.cgi:249 styles/default/header.html:92
   7.469  msgid "Detect PCI/USB"
   7.470  msgstr "Detectar PCI/USB"
   7.471  
   7.472 -#: hardware.cgi:241
   7.473 +#: hardware.cgi:250
   7.474  msgid "Auto-install Xorg video driver"
   7.475  msgstr ""
   7.476  
   7.477 -#: hardware.cgi:251 hardware.cgi:268
   7.478 +#: hardware.cgi:260 hardware.cgi:277
   7.479  msgid "Battery"
   7.480  msgstr "Bateria"
   7.481  
   7.482 -#: hardware.cgi:271
   7.483 +#: hardware.cgi:280
   7.484  msgid "health"
   7.485  msgstr "estado"
   7.486  
   7.487 -#: hardware.cgi:280
   7.488 +#: hardware.cgi:289
   7.489  msgid "Discharging %d%% - %s"
   7.490  msgstr "Descarregando %d%% - %s"
   7.491  
   7.492 -#: hardware.cgi:284
   7.493 +#: hardware.cgi:293
   7.494  msgid "Charging %d%% - %s"
   7.495  msgstr "Carregando %d%% - %s"
   7.496  
   7.497 -#: hardware.cgi:286
   7.498 +#: hardware.cgi:295
   7.499  #, fuzzy
   7.500  msgid "Charged 100%%"
   7.501  msgstr "Carregada 100%%"
   7.502  
   7.503 -#: hardware.cgi:305
   7.504 +#: hardware.cgi:314
   7.505  msgid "Temperature:"
   7.506  msgstr "Temperatura:"
   7.507  
   7.508 -#: hardware.cgi:320
   7.509 +#: hardware.cgi:329
   7.510  msgid "Brightness"
   7.511  msgstr "Brilho"
   7.512  
   7.513 -#: hardware.cgi:462
   7.514 +#: hardware.cgi:471
   7.515  #, fuzzy
   7.516  msgid "new mount point:"
   7.517  msgstr "Ponto de montagem"
   7.518  
   7.519 -#: hardware.cgi:463
   7.520 +#: hardware.cgi:472
   7.521  msgid "read-only"
   7.522  msgstr ""
   7.523  
   7.524 -#: hardware.cgi:478
   7.525 +#: hardware.cgi:487
   7.526  msgid "Filesystems table"
   7.527  msgstr "Tabela do sistema de arquivos"
   7.528  
   7.529 -#: hardware.cgi:491 lib/libtazpanel:292
   7.530 +#: hardware.cgi:500 lib/libtazpanel:294
   7.531  msgid "Disk"
   7.532  msgstr "Disco"
   7.533  
   7.534 -#: hardware.cgi:492 lib/libtazpanel:298
   7.535 +#: hardware.cgi:501 lib/libtazpanel:300
   7.536  msgid "Mount point"
   7.537  msgstr "Ponto de montagem"
   7.538  
   7.539 -#: hardware.cgi:493 lib/libtazpanel:294
   7.540 +#: hardware.cgi:502 lib/libtazpanel:296
   7.541  msgid "Type"
   7.542  msgstr "Tipo"
   7.543  
   7.544 -#: hardware.cgi:494
   7.545 +#: hardware.cgi:503
   7.546  msgid "Options"
   7.547  msgstr "Opções"
   7.548  
   7.549 -#: hardware.cgi:495
   7.550 +#: hardware.cgi:504
   7.551  msgid "Freq"
   7.552  msgstr "Freq"
   7.553  
   7.554 -#: hardware.cgi:496
   7.555 +#: hardware.cgi:505
   7.556  msgid "Pass"
   7.557  msgstr "Senha"
   7.558  
   7.559 -#: hardware.cgi:518
   7.560 +#: hardware.cgi:527
   7.561  msgid "Loop devices"
   7.562  msgstr "Dispositivos em loop"
   7.563  
   7.564 -#: hardware.cgi:526
   7.565 +#: hardware.cgi:535
   7.566  #, fuzzy
   7.567  msgid "Backing file"
   7.568  msgstr "Arquivo de configuração"
   7.569  
   7.570 -#: hardware.cgi:528
   7.571 +#: hardware.cgi:537
   7.572  #, fuzzy
   7.573  msgid "Access"
   7.574  msgstr "Ponto de acesso"
   7.575  
   7.576 -#: hardware.cgi:529
   7.577 +#: hardware.cgi:538
   7.578  msgid "Offset"
   7.579  msgstr ""
   7.580  
   7.581 -#: hardware.cgi:538
   7.582 +#: hardware.cgi:547
   7.583  msgid "read/write"
   7.584  msgstr ""
   7.585  
   7.586 -#: hardware.cgi:539 hardware.cgi:564
   7.587 +#: hardware.cgi:548 hardware.cgi:573
   7.588  msgid "read only"
   7.589  msgstr ""
   7.590  
   7.591 -#: hardware.cgi:561
   7.592 +#: hardware.cgi:570
   7.593  msgid "Setup"
   7.594  msgstr ""
   7.595  
   7.596 -#: hardware.cgi:562
   7.597 +#: hardware.cgi:571
   7.598  msgid "new backing file:"
   7.599  msgstr ""
   7.600  
   7.601 -#: hardware.cgi:563
   7.602 +#: hardware.cgi:572
   7.603  msgid "offset in bytes:"
   7.604  msgstr ""
   7.605  
   7.606 -#: hardware.cgi:581
   7.607 +#: hardware.cgi:590
   7.608  msgid "System memory"
   7.609  msgstr "Memória do sistema"
   7.610  
   7.611 -#: hardware.cgi:587
   7.612 +#: hardware.cgi:596
   7.613  msgid "Buffers"
   7.614  msgstr ""
   7.615  
   7.616 -#: hardware.cgi:590
   7.617 +#: hardware.cgi:599
   7.618  msgid "Free"
   7.619  msgstr ""
   7.620  
   7.621 @@ -1115,11 +1170,11 @@
   7.622  msgid "-d"
   7.623  msgstr "-d"
   7.624  
   7.625 -#: settings.cgi:462 settings.cgi:765 settings.cgi:776 settings.cgi:788
   7.626 +#: settings.cgi:462 settings.cgi:765 settings.cgi:777 settings.cgi:789
   7.627  msgid "Activate"
   7.628  msgstr "Ativar"
   7.629  
   7.630 -#: settings.cgi:474 settings.cgi:497
   7.631 +#: settings.cgi:475 settings.cgi:497
   7.632  msgid "Small quick tweaks for user %s"
   7.633  msgstr ""
   7.634  
   7.635 @@ -1220,31 +1275,31 @@
   7.636  msgid "Suggested keymap for Xorg:"
   7.637  msgstr "Mapa de teclado sugerido para o Xorg:"
   7.638  
   7.639 -#: settings.cgi:772
   7.640 +#: settings.cgi:773
   7.641  msgid "Available keymaps:"
   7.642  msgstr "Mapa de teclado disponíveis:"
   7.643  
   7.644 -#: settings.cgi:783
   7.645 +#: settings.cgi:784
   7.646  msgid "Panel configuration"
   7.647  msgstr "Configuração do Painel"
   7.648  
   7.649 -#: settings.cgi:786
   7.650 +#: settings.cgi:787
   7.651  msgid "Style:"
   7.652  msgstr "Estilo:"
   7.653  
   7.654 -#: settings.cgi:792
   7.655 +#: settings.cgi:793
   7.656  msgid "Configuration files:"
   7.657  msgstr "Arquivos de configuração:"
   7.658  
   7.659 -#: settings.cgi:793 styles/default/header.html:42
   7.660 +#: settings.cgi:794 styles/default/header.html:42
   7.661  msgid "Panel"
   7.662  msgstr "Painel"
   7.663  
   7.664 -#: settings.cgi:794
   7.665 +#: settings.cgi:795
   7.666  msgid "Server"
   7.667  msgstr "Servidor"
   7.668  
   7.669 -#: settings.cgi:797
   7.670 +#: settings.cgi:798
   7.671  msgid "TazPanel provides a debugging mode and page:"
   7.672  msgstr "O TazPanel oferece um modo de debug e uma página dedicada:"
   7.673  
   7.674 @@ -1252,24 +1307,24 @@
   7.675  msgid "connected"
   7.676  msgstr "Conectado"
   7.677  
   7.678 -#: lib/libtazpanel:168
   7.679 +#: lib/libtazpanel:170
   7.680  msgid "IP Address"
   7.681  msgstr "Endereço IP"
   7.682  
   7.683 -#: lib/libtazpanel:169
   7.684 +#: lib/libtazpanel:171
   7.685  msgid "Scan ports"
   7.686  msgstr "Buscar portas"
   7.687  
   7.688 -#: lib/libtazpanel:241
   7.689 +#: lib/libtazpanel:243
   7.690  #, fuzzy
   7.691  msgid "Please wait"
   7.692  msgstr "Favor aguardar..."
   7.693  
   7.694 -#: lib/libtazpanel:293
   7.695 +#: lib/libtazpanel:295
   7.696  msgid "Label"
   7.697  msgstr "Rótulo"
   7.698  
   7.699 -#: lib/libtazpanel:296
   7.700 +#: lib/libtazpanel:298
   7.701  msgid "Available"
   7.702  msgstr "Disponível"
   7.703  
     8.1 --- a/po/ru.po	Sun Jul 12 10:49:16 2015 +0200
     8.2 +++ b/po/ru.po	Sun Jul 12 13:03:50 2015 +0200
     8.3 @@ -7,7 +7,7 @@
     8.4  msgstr ""
     8.5  "Project-Id-Version: TazPanel 1.5.7\n"
     8.6  "Report-Msgid-Bugs-To: \n"
     8.7 -"POT-Creation-Date: 2015-06-05 20:42+0300\n"
     8.8 +"POT-Creation-Date: 2015-07-12 12:25+0200\n"
     8.9  "PO-Revision-Date: 2015-06-05 19:00+0300\n"
    8.10  "Last-Translator: Aleksej Bobylev <al.bobylev@gmail.com>\n"
    8.11  "Language-Team: \n"
    8.12 @@ -57,7 +57,7 @@
    8.13  msgstr "Сохранить"
    8.14  
    8.15  #: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670
    8.16 -#: network.cgi:720 boot.cgi:531 hardware.cgi:483 settings.cgi:766
    8.17 +#: network.cgi:720 boot.cgi:525 hardware.cgi:492 settings.cgi:766
    8.18  msgid "Edit"
    8.19  msgstr "Правка"
    8.20  
    8.21 @@ -200,11 +200,11 @@
    8.22  msgid "Getting boot logs..."
    8.23  msgstr "Получение журналов загрузки…"
    8.24  
    8.25 -#: index.cgi:589 boot.cgi:99 styles/default/header.html:74
    8.26 +#: index.cgi:589 boot.cgi:98 styles/default/header.html:74
    8.27  msgid "Kernel messages"
    8.28  msgstr "Сообщения ядра"
    8.29  
    8.30 -#: index.cgi:592 boot.cgi:100 styles/default/header.html:75
    8.31 +#: index.cgi:592 boot.cgi:99 styles/default/header.html:75
    8.32  msgid "Boot scripts"
    8.33  msgstr "Загрузочные скрипты"
    8.34  
    8.35 @@ -212,7 +212,7 @@
    8.36  msgid "Creating report footer..."
    8.37  msgstr "Завершение создание отчёта…"
    8.38  
    8.39 -#: index.cgi:608 index.cgi:704 boot.cgi:510 boot.cgi:512
    8.40 +#: index.cgi:608 index.cgi:704 boot.cgi:504 boot.cgi:506
    8.41  msgid "View"
    8.42  msgstr "Смотреть"
    8.43  
    8.44 @@ -262,7 +262,7 @@
    8.45  msgid "Network"
    8.46  msgstr "Сети"
    8.47  
    8.48 -#: index.cgi:668 hardware.cgi:340
    8.49 +#: index.cgi:668 hardware.cgi:349
    8.50  msgid "Filesystem usage statistics"
    8.51  msgstr "Статистика использования файловых систем"
    8.52  
    8.53 @@ -299,11 +299,11 @@
    8.54  "автоматического получения случайного IP, или указать статический "
    8.55  "(фиксированный) IP"
    8.56  
    8.57 -#: network.cgi:247 boot.cgi:152
    8.58 +#: network.cgi:247 boot.cgi:149
    8.59  msgid "Configuration"
    8.60  msgstr "Настройки"
    8.61  
    8.62 -#: network.cgi:253 lib/libtazpanel:165
    8.63 +#: network.cgi:253 lib/libtazpanel:167
    8.64  msgid "Interface"
    8.65  msgstr "Интерфейс"
    8.66  
    8.67 @@ -359,11 +359,11 @@
    8.68  msgid "Help"
    8.69  msgstr "Справка"
    8.70  
    8.71 -#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:292
    8.72 +#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:289
    8.73  msgid "Start"
    8.74  msgstr "Запустить"
    8.75  
    8.76 -#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:281
    8.77 +#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:278
    8.78  msgid "Stop"
    8.79  msgstr "Остановить"
    8.80  
    8.81 @@ -383,7 +383,7 @@
    8.82  msgid "(hidden)"
    8.83  msgstr "(скрыто)"
    8.84  
    8.85 -#: network.cgi:349 boot.cgi:150 hardware.cgi:57 lib/libtazpanel:166
    8.86 +#: network.cgi:349 boot.cgi:147 hardware.cgi:57 lib/libtazpanel:168
    8.87  msgid "Name"
    8.88  msgstr "Название"
    8.89  
    8.90 @@ -399,7 +399,7 @@
    8.91  msgid "Encryption"
    8.92  msgstr "Шифрование"
    8.93  
    8.94 -#: network.cgi:353 boot.cgi:153 lib/libtazpanel:167
    8.95 +#: network.cgi:353 boot.cgi:150 lib/libtazpanel:169
    8.96  msgid "Status"
    8.97  msgstr "Состояние"
    8.98  
    8.99 @@ -503,7 +503,7 @@
   8.100  msgid "forward packets between interfaces"
   8.101  msgstr "включить форвардинг пакетов между интерфейсами"
   8.102  
   8.103 -#: network.cgi:656 network.cgi:690 boot.cgi:336 settings.cgi:608
   8.104 +#: network.cgi:656 network.cgi:690 boot.cgi:332 settings.cgi:608
   8.105  #: settings.cgi:722
   8.106  msgid "Change"
   8.107  msgstr "Изменить"
   8.108 @@ -556,171 +556,222 @@
   8.109  msgid "Show more..."
   8.110  msgstr "Показать больше…"
   8.111  
   8.112 -#: boot.cgi:45 boot.cgi:492 styles/default/header.html:80
   8.113 +#: boot.cgi:40 boot.cgi:45 boot.cgi:486 styles/default/header.html:80
   8.114  msgid "System logs"
   8.115  msgstr "Системные журналы"
   8.116  
   8.117 -#: boot.cgi:96
   8.118 +#: boot.cgi:95
   8.119  msgid "Boot log files"
   8.120  msgstr "Журналы загрузки"
   8.121  
   8.122 -#: boot.cgi:101 styles/default/header.html:76
   8.123 +#: boot.cgi:100 styles/default/header.html:76
   8.124  msgid "X server"
   8.125  msgstr "X-сервер"
   8.126  
   8.127 -#: boot.cgi:102 styles/default/header.html:77
   8.128 +#: boot.cgi:101 styles/default/header.html:77
   8.129  msgid "X session"
   8.130  msgstr "Сеанс X"
   8.131  
   8.132 -#: boot.cgi:124 boot.cgi:493 styles/default/header.html:81
   8.133 +#: boot.cgi:120 boot.cgi:487 styles/default/header.html:81
   8.134  msgid "Manage daemons"
   8.135  msgstr "Управление службами"
   8.136  
   8.137 -#: boot.cgi:126
   8.138 +#: boot.cgi:123
   8.139  msgid "Check, start and stop daemons on SliTaz"
   8.140  msgstr "Проверка, запуск и остановка служб SliTaz"
   8.141  
   8.142 -#: boot.cgi:151 hardware.cgi:168 settings.cgi:434
   8.143 +#: boot.cgi:148 hardware.cgi:177 settings.cgi:434
   8.144  msgid "Description"
   8.145  msgstr "Описание"
   8.146  
   8.147 -#: boot.cgi:154
   8.148 +#: boot.cgi:151
   8.149  msgid "Action"
   8.150  msgstr "Действие"
   8.151  
   8.152 -#: boot.cgi:155
   8.153 +#: boot.cgi:152
   8.154  msgid "PID"
   8.155  msgstr "PID"
   8.156  
   8.157 -#: boot.cgi:180
   8.158 +#: boot.cgi:177
   8.159  msgid "SliTaz Firewall with iptable rules"
   8.160  msgstr "Брандмауэр SliTaz с правилами iptable"
   8.161  
   8.162 -#: boot.cgi:182
   8.163 +#: boot.cgi:179
   8.164  msgid "Small and fast web server with CGI support"
   8.165  msgstr "Маленький и быстрый веб-сервер с поддержкой CGI"
   8.166  
   8.167 -#: boot.cgi:185
   8.168 +#: boot.cgi:182
   8.169  msgid "Network time protocol daemon"
   8.170  msgstr "Служба протокола сетевого времени"
   8.171  
   8.172 -#: boot.cgi:188
   8.173 +#: boot.cgi:185
   8.174  msgid "Anonymous FTP server"
   8.175  msgstr "Анонимный сервер FTP"
   8.176  
   8.177 -#: boot.cgi:191
   8.178 +#: boot.cgi:188
   8.179  msgid "Busybox DHCP server"
   8.180  msgstr "Сервер DHCP из Busybox"
   8.181  
   8.182 -#: boot.cgi:194
   8.183 +#: boot.cgi:191
   8.184  msgid "Linux Kernel log daemon"
   8.185  msgstr "Служба журнала ядра Linux"
   8.186  
   8.187 -#: boot.cgi:197
   8.188 +#: boot.cgi:194
   8.189  msgid "Execute scheduled commands"
   8.190  msgstr "Выполнение запланированных команд"
   8.191  
   8.192 -#: boot.cgi:200
   8.193 +#: boot.cgi:197
   8.194  msgid "Small static DNS server daemon"
   8.195  msgstr "Служба маленького статического сервера DNS"
   8.196  
   8.197 -#: boot.cgi:203
   8.198 +#: boot.cgi:200
   8.199  msgid "Transfer a file on tftp request"
   8.200  msgstr "Передача файлов по запросу TFTP"
   8.201  
   8.202 -#: boot.cgi:206
   8.203 +#: boot.cgi:203
   8.204  msgid "Printer daemon"
   8.205  msgstr "Служба печати"
   8.206  
   8.207 -#: boot.cgi:208
   8.208 +#: boot.cgi:205
   8.209  msgid "Listen for network connections and launch programs"
   8.210  msgstr "Прослушивание сетевых соединений и запуск программ"
   8.211  
   8.212 -#: boot.cgi:211
   8.213 +#: boot.cgi:208
   8.214  msgid "Manage a ZeroConf IPv4 link-local address"
   8.215  msgstr "Управление присоединенным-локальным адресом ZeroConf IPv4"
   8.216  
   8.217 -#: boot.cgi:280
   8.218 +#: boot.cgi:277
   8.219  msgid "Started"
   8.220  msgstr "Запущен"
   8.221  
   8.222 -#: boot.cgi:291
   8.223 +#: boot.cgi:288
   8.224  msgid "Stopped"
   8.225  msgstr "Остановлен"
   8.226  
   8.227 -#: boot.cgi:318
   8.228 +#: boot.cgi:314
   8.229  msgid "GRUB Boot loader"
   8.230  msgstr "Загрузчик GRUB"
   8.231  
   8.232 -#: boot.cgi:320
   8.233 +#: boot.cgi:316
   8.234  msgid "The first application started when the computer powers on"
   8.235  msgstr "Первое приложение, запускаемое при включении питания"
   8.236  
   8.237 -#: boot.cgi:327
   8.238 +#: boot.cgi:323
   8.239  msgid "Default entry:"
   8.240  msgstr "Пункт по умолчанию:"
   8.241  
   8.242 -#: boot.cgi:329
   8.243 +#: boot.cgi:325
   8.244  msgid "Timeout:"
   8.245  msgstr "Таймаут:"
   8.246  
   8.247 -#: boot.cgi:331
   8.248 +#: boot.cgi:327
   8.249  msgid "Splash image:"
   8.250  msgstr "Загрузочная картинка:"
   8.251  
   8.252 -#: boot.cgi:343
   8.253 +#: boot.cgi:339
   8.254  msgid "View or edit menu.lst"
   8.255  msgstr "Просмотр и правка menu.lst"
   8.256  
   8.257 -#: boot.cgi:348
   8.258 +#: boot.cgi:344
   8.259  msgid "Boot entries"
   8.260  msgstr "Загрузочные пункты"
   8.261  
   8.262 -#: boot.cgi:355
   8.263 +#: boot.cgi:351
   8.264  msgid "Entry"
   8.265  msgstr "Пункт"
   8.266  
   8.267 -#: boot.cgi:376
   8.268 +#: boot.cgi:372
   8.269  msgid "Web boot is available with gPXE"
   8.270  msgstr "Доступна веб-загрузка с gPXE"
   8.271  
   8.272 -#: boot.cgi:390 boot.cgi:496 styles/default/header.html:83
   8.273 +#: boot.cgi:386 boot.cgi:490 styles/default/header.html:83
   8.274  msgid "ISO mine"
   8.275  msgstr "Создание ISO-образов"
   8.276  
   8.277 -#: boot.cgi:486
   8.278 +#: boot.cgi:388
   8.279 +msgid "Invalid ISO image."
   8.280 +msgstr ""
   8.281 +
   8.282 +#: boot.cgi:410
   8.283 +msgid "ISO image file full path"
   8.284 +msgstr ""
   8.285 +
   8.286 +#: boot.cgi:411
   8.287 +msgid "set /dev/cdrom for a physical CD-ROM"
   8.288 +msgstr ""
   8.289 +
   8.290 +#: boot.cgi:414
   8.291 +msgid "Working directory"
   8.292 +msgstr ""
   8.293 +
   8.294 +#: boot.cgi:416
   8.295 +msgid "Target partition"
   8.296 +msgstr ""
   8.297 +
   8.298 +#: boot.cgi:417
   8.299 +msgid ""
   8.300 +"For hard disk installation only. Will create /slitaz tree and keep other "
   8.301 +"files. No partitioning and no formatting."
   8.302 +msgstr ""
   8.303 +
   8.304 +#: boot.cgi:420
   8.305 +msgid "Choose a partition (optional)"
   8.306 +msgstr ""
   8.307 +
   8.308 +#: boot.cgi:431
   8.309 +msgid "USB key device"
   8.310 +msgstr ""
   8.311 +
   8.312 +#: boot.cgi:432
   8.313 +msgid "For USB boot key only. Will erase the full device."
   8.314 +msgstr ""
   8.315 +
   8.316 +#: boot.cgi:435
   8.317 +msgid "Choose a USB key (optional)"
   8.318 +msgstr ""
   8.319 +
   8.320 +#: boot.cgi:454
   8.321 +#, fuzzy
   8.322 +msgid "Choose an action"
   8.323 +msgstr "Соединение"
   8.324 +
   8.325 +#: boot.cgi:467
   8.326 +msgid "Mine"
   8.327 +msgstr ""
   8.328 +
   8.329 +#: boot.cgi:480
   8.330  msgid "Boot &amp; Start services"
   8.331  msgstr "Загрузка и запуск служб"
   8.332  
   8.333 -#: boot.cgi:488
   8.334 +#: boot.cgi:482
   8.335  msgid "Everything that happens before user login"
   8.336  msgstr "Всё, что происходит перед входом пользователя в систему"
   8.337  
   8.338 -#: boot.cgi:491 styles/default/header.html:72
   8.339 +#: boot.cgi:485 styles/default/header.html:72
   8.340  msgid "Boot logs"
   8.341  msgstr "Журналы загрузки"
   8.342  
   8.343 -#: boot.cgi:499 styles/default/header.html:68
   8.344 +#: boot.cgi:493 styles/default/header.html:68
   8.345  msgid "Boot loader"
   8.346  msgstr "Загрузчик"
   8.347  
   8.348 -#: boot.cgi:506
   8.349 +#: boot.cgi:500
   8.350  msgid "Configuration files"
   8.351  msgstr "Файлы настроек"
   8.352  
   8.353 -#: boot.cgi:509
   8.354 +#: boot.cgi:503
   8.355  msgid "Main configuration file:"
   8.356  msgstr "Главный файл настроек:"
   8.357  
   8.358 -#: boot.cgi:511
   8.359 +#: boot.cgi:505
   8.360  msgid "Login manager settings:"
   8.361  msgstr "Настройки менеджера входа в систему:"
   8.362  
   8.363 -#: boot.cgi:519
   8.364 +#: boot.cgi:513
   8.365  msgid "Kernel cmdline"
   8.366  msgstr "Командная строка ядра"
   8.367  
   8.368 -#: boot.cgi:526
   8.369 +#: boot.cgi:520
   8.370  msgid "Local startup commands"
   8.371  msgstr "Локальные команды запуска"
   8.372  
   8.373 @@ -732,7 +783,7 @@
   8.374  msgid "Bus"
   8.375  msgstr "Шина"
   8.376  
   8.377 -#: hardware.cgi:55 hardware.cgi:525
   8.378 +#: hardware.cgi:55 hardware.cgi:534
   8.379  msgid "Device"
   8.380  msgstr "Устройство"
   8.381  
   8.382 @@ -748,183 +799,187 @@
   8.383  msgid "Detect PCI and USB hardware"
   8.384  msgstr "Определение оборудования PCI и USB"
   8.385  
   8.386 -#: hardware.cgi:118 hardware.cgi:239 styles/default/header.html:91
   8.387 +#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:91
   8.388  msgid "Kernel modules"
   8.389  msgstr "Модули ядра"
   8.390  
   8.391 -#: hardware.cgi:120
   8.392 +#: hardware.cgi:122
   8.393  msgid "Manage, search or get information about the Linux kernel modules"
   8.394  msgstr "Управление, поиск и сведения о модулях ядра Linux"
   8.395  
   8.396 -#: hardware.cgi:124
   8.397 +#: hardware.cgi:126
   8.398  msgid "Modules search"
   8.399  msgstr "Поиск модулей"
   8.400  
   8.401 -#: hardware.cgi:132
   8.402 +#: hardware.cgi:127
   8.403 +msgid "Search"
   8.404 +msgstr ""
   8.405 +
   8.406 +#: hardware.cgi:135
   8.407  msgid "Detailed information for module: %s"
   8.408  msgstr "Подробности о модуле %s"
   8.409  
   8.410 -#: hardware.cgi:152
   8.411 +#: hardware.cgi:159
   8.412  msgid "Matching result(s) for: %s"
   8.413  msgstr "Результаты поиска %s"
   8.414  
   8.415 -#: hardware.cgi:158
   8.416 +#: hardware.cgi:166
   8.417  msgid "Module:"
   8.418  msgstr "Модуль:"
   8.419  
   8.420 -#: hardware.cgi:167
   8.421 +#: hardware.cgi:176
   8.422  msgid "Module"
   8.423  msgstr "Модуль"
   8.424  
   8.425 -#: hardware.cgi:169 hardware.cgi:527 lib/libtazpanel:295
   8.426 +#: hardware.cgi:178 hardware.cgi:536 lib/libtazpanel:297
   8.427  msgid "Size"
   8.428  msgstr "Размер"
   8.429  
   8.430 -#: hardware.cgi:170 hardware.cgi:584 lib/libtazpanel:297
   8.431 +#: hardware.cgi:179 hardware.cgi:593 lib/libtazpanel:299
   8.432  msgid "Used"
   8.433  msgstr "Используется"
   8.434  
   8.435 -#: hardware.cgi:171
   8.436 +#: hardware.cgi:180
   8.437  msgid "by"
   8.438  msgstr "кем"
   8.439  
   8.440 -#: hardware.cgi:195
   8.441 +#: hardware.cgi:204
   8.442  msgid "Information for USB Device %s"
   8.443  msgstr "Информация о USB-устройстве %s"
   8.444  
   8.445 -#: hardware.cgi:197 hardware.cgi:215
   8.446 +#: hardware.cgi:206 hardware.cgi:224
   8.447  msgid "Detailed information about specified device."
   8.448  msgstr "Подробная информация о выбранном устройстве."
   8.449  
   8.450 -#: hardware.cgi:213
   8.451 +#: hardware.cgi:222
   8.452  msgid "Information for PCI Device %s"
   8.453  msgstr "Информация о PCI-устройстве %s"
   8.454  
   8.455 -#: hardware.cgi:234
   8.456 +#: hardware.cgi:243
   8.457  msgid "Drivers &amp; Devices"
   8.458  msgstr "Драйверы и устройства"
   8.459  
   8.460 -#: hardware.cgi:236
   8.461 +#: hardware.cgi:245
   8.462  msgid "Manage your computer hardware"
   8.463  msgstr "Управление вашим компьютерным оборудованием"
   8.464  
   8.465 -#: hardware.cgi:240 styles/default/header.html:92
   8.466 +#: hardware.cgi:249 styles/default/header.html:92
   8.467  msgid "Detect PCI/USB"
   8.468  msgstr "Определить PCI/USB"
   8.469  
   8.470 -#: hardware.cgi:241
   8.471 +#: hardware.cgi:250
   8.472  msgid "Auto-install Xorg video driver"
   8.473  msgstr "Авто-установка видео-драйвера Xorg"
   8.474  
   8.475 -#: hardware.cgi:251 hardware.cgi:268
   8.476 +#: hardware.cgi:260 hardware.cgi:277
   8.477  msgid "Battery"
   8.478  msgstr "Батарея"
   8.479  
   8.480 -#: hardware.cgi:271
   8.481 +#: hardware.cgi:280
   8.482  msgid "health"
   8.483  msgstr "здоровье"
   8.484  
   8.485 -#: hardware.cgi:280
   8.486 +#: hardware.cgi:289
   8.487  msgid "Discharging %d%% - %s"
   8.488  msgstr "Разряжается: %d %% — осталось %s"
   8.489  
   8.490 -#: hardware.cgi:284
   8.491 +#: hardware.cgi:293
   8.492  msgid "Charging %d%% - %s"
   8.493  msgstr "Заряжается: %d %% — осталось %s"
   8.494  
   8.495 -#: hardware.cgi:286
   8.496 +#: hardware.cgi:295
   8.497  msgid "Charged 100%%"
   8.498  msgstr "Полностью заряжена"
   8.499  
   8.500 -#: hardware.cgi:305
   8.501 +#: hardware.cgi:314
   8.502  msgid "Temperature:"
   8.503  msgstr "Температура:"
   8.504  
   8.505 -#: hardware.cgi:320
   8.506 +#: hardware.cgi:329
   8.507  msgid "Brightness"
   8.508  msgstr "Яркость"
   8.509  
   8.510 -#: hardware.cgi:462
   8.511 +#: hardware.cgi:471
   8.512  msgid "new mount point:"
   8.513  msgstr "новая точка монтирования:"
   8.514  
   8.515 -#: hardware.cgi:463
   8.516 +#: hardware.cgi:472
   8.517  msgid "read-only"
   8.518  msgstr "только-чтение"
   8.519  
   8.520 -#: hardware.cgi:478
   8.521 +#: hardware.cgi:487
   8.522  msgid "Filesystems table"
   8.523  msgstr "Таблица файловых систем"
   8.524  
   8.525 -#: hardware.cgi:491 lib/libtazpanel:292
   8.526 +#: hardware.cgi:500 lib/libtazpanel:294
   8.527  msgid "Disk"
   8.528  msgstr "Диск"
   8.529  
   8.530 -#: hardware.cgi:492 lib/libtazpanel:298
   8.531 +#: hardware.cgi:501 lib/libtazpanel:300
   8.532  msgid "Mount point"
   8.533  msgstr "Точка монтирования"
   8.534  
   8.535 -#: hardware.cgi:493 lib/libtazpanel:294
   8.536 +#: hardware.cgi:502 lib/libtazpanel:296
   8.537  msgid "Type"
   8.538  msgstr "Тип"
   8.539  
   8.540 -#: hardware.cgi:494
   8.541 +#: hardware.cgi:503
   8.542  msgid "Options"
   8.543  msgstr "Параметры"
   8.544  
   8.545 -#: hardware.cgi:495
   8.546 +#: hardware.cgi:504
   8.547  msgid "Freq"
   8.548  msgstr "Резерв."
   8.549  
   8.550 -#: hardware.cgi:496
   8.551 +#: hardware.cgi:505
   8.552  msgid "Pass"
   8.553  msgstr "Проверка"
   8.554  
   8.555 -#: hardware.cgi:518
   8.556 +#: hardware.cgi:527
   8.557  msgid "Loop devices"
   8.558  msgstr "Устройства loop"
   8.559  
   8.560 -#: hardware.cgi:526
   8.561 +#: hardware.cgi:535
   8.562  msgid "Backing file"
   8.563  msgstr "Файл образа"
   8.564  
   8.565 -#: hardware.cgi:528
   8.566 +#: hardware.cgi:537
   8.567  msgid "Access"
   8.568  msgstr "Доступ"
   8.569  
   8.570 -#: hardware.cgi:529
   8.571 +#: hardware.cgi:538
   8.572  msgid "Offset"
   8.573  msgstr "Смещение"
   8.574  
   8.575 -#: hardware.cgi:538
   8.576 +#: hardware.cgi:547
   8.577  msgid "read/write"
   8.578  msgstr "чтение/запись"
   8.579  
   8.580 -#: hardware.cgi:539 hardware.cgi:564
   8.581 +#: hardware.cgi:548 hardware.cgi:573
   8.582  msgid "read only"
   8.583  msgstr "только чтение"
   8.584  
   8.585 -#: hardware.cgi:561
   8.586 +#: hardware.cgi:570
   8.587  msgid "Setup"
   8.588  msgstr "Установить"
   8.589  
   8.590 -#: hardware.cgi:562
   8.591 +#: hardware.cgi:571
   8.592  msgid "new backing file:"
   8.593  msgstr "новый файл образа:"
   8.594  
   8.595 -#: hardware.cgi:563
   8.596 +#: hardware.cgi:572
   8.597  msgid "offset in bytes:"
   8.598  msgstr "смещение в байтах:"
   8.599  
   8.600 -#: hardware.cgi:581
   8.601 +#: hardware.cgi:590
   8.602  msgid "System memory"
   8.603  msgstr "Системная память"
   8.604  
   8.605 -#: hardware.cgi:587
   8.606 +#: hardware.cgi:596
   8.607  msgid "Buffers"
   8.608  msgstr "Буферы"
   8.609  
   8.610 -#: hardware.cgi:590
   8.611 +#: hardware.cgi:599
   8.612  msgid "Free"
   8.613  msgstr "Свободно"
   8.614  
   8.615 @@ -1101,11 +1156,11 @@
   8.616  msgid "-d"
   8.617  msgstr "-d"
   8.618  
   8.619 -#: settings.cgi:462 settings.cgi:765 settings.cgi:776 settings.cgi:788
   8.620 +#: settings.cgi:462 settings.cgi:765 settings.cgi:777 settings.cgi:789
   8.621  msgid "Activate"
   8.622  msgstr "Активировать"
   8.623  
   8.624 -#: settings.cgi:474 settings.cgi:497
   8.625 +#: settings.cgi:475 settings.cgi:497
   8.626  msgid "Small quick tweaks for user %s"
   8.627  msgstr "Быстрые настройки для пользователя %s"
   8.628  
   8.629 @@ -1208,31 +1263,31 @@
   8.630  msgid "Suggested keymap for Xorg:"
   8.631  msgstr "Предлагаемая раскладка клавиатуры для Xorg:"
   8.632  
   8.633 -#: settings.cgi:772
   8.634 +#: settings.cgi:773
   8.635  msgid "Available keymaps:"
   8.636  msgstr "Доступные раскладки:"
   8.637  
   8.638 -#: settings.cgi:783
   8.639 +#: settings.cgi:784
   8.640  msgid "Panel configuration"
   8.641  msgstr "Настройка панели"
   8.642  
   8.643 -#: settings.cgi:786
   8.644 +#: settings.cgi:787
   8.645  msgid "Style:"
   8.646  msgstr "Стиль:"
   8.647  
   8.648 -#: settings.cgi:792
   8.649 +#: settings.cgi:793
   8.650  msgid "Configuration files:"
   8.651  msgstr "Файлы настроек:"
   8.652  
   8.653 -#: settings.cgi:793 styles/default/header.html:42
   8.654 +#: settings.cgi:794 styles/default/header.html:42
   8.655  msgid "Panel"
   8.656  msgstr "Панель"
   8.657  
   8.658 -#: settings.cgi:794
   8.659 +#: settings.cgi:795
   8.660  msgid "Server"
   8.661  msgstr "Сервер"
   8.662  
   8.663 -#: settings.cgi:797
   8.664 +#: settings.cgi:798
   8.665  msgid "TazPanel provides a debugging mode and page:"
   8.666  msgstr "TazPanel поддерживает отладочный режим и страницу:"
   8.667  
   8.668 @@ -1240,23 +1295,23 @@
   8.669  msgid "connected"
   8.670  msgstr "соединён"
   8.671  
   8.672 -#: lib/libtazpanel:168
   8.673 +#: lib/libtazpanel:170
   8.674  msgid "IP Address"
   8.675  msgstr "Адрес IP"
   8.676  
   8.677 -#: lib/libtazpanel:169
   8.678 +#: lib/libtazpanel:171
   8.679  msgid "Scan ports"
   8.680  msgstr "Сканировать порты"
   8.681  
   8.682 -#: lib/libtazpanel:241
   8.683 +#: lib/libtazpanel:243
   8.684  msgid "Please wait"
   8.685  msgstr "Пожалуйста, подождите"
   8.686  
   8.687 -#: lib/libtazpanel:293
   8.688 +#: lib/libtazpanel:295
   8.689  msgid "Label"
   8.690  msgstr "Метка"
   8.691  
   8.692 -#: lib/libtazpanel:296
   8.693 +#: lib/libtazpanel:298
   8.694  msgid "Available"
   8.695  msgstr "Доступно"
   8.696  
     9.1 --- a/po/sv.po	Sun Jul 12 10:49:16 2015 +0200
     9.2 +++ b/po/sv.po	Sun Jul 12 13:03:50 2015 +0200
     9.3 @@ -7,7 +7,7 @@
     9.4  msgstr ""
     9.5  "Project-Id-Version: TazPanel 1.4.3\n"
     9.6  "Report-Msgid-Bugs-To: \n"
     9.7 -"POT-Creation-Date: 2015-06-05 20:42+0300\n"
     9.8 +"POT-Creation-Date: 2015-07-12 12:25+0200\n"
     9.9  "PO-Revision-Date: 2012-07-11 11:33-0000\n"
    9.10  "Last-Translator: Emil Eklund <emileklund123@gmail.com>\n"
    9.11  "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
    9.12 @@ -54,7 +54,7 @@
    9.13  msgstr "Spara"
    9.14  
    9.15  #: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670
    9.16 -#: network.cgi:720 boot.cgi:531 hardware.cgi:483 settings.cgi:766
    9.17 +#: network.cgi:720 boot.cgi:525 hardware.cgi:492 settings.cgi:766
    9.18  msgid "Edit"
    9.19  msgstr "Ändra"
    9.20  
    9.21 @@ -198,11 +198,11 @@
    9.22  msgid "Getting boot logs..."
    9.23  msgstr "Skaffar start loggar..."
    9.24  
    9.25 -#: index.cgi:589 boot.cgi:99 styles/default/header.html:74
    9.26 +#: index.cgi:589 boot.cgi:98 styles/default/header.html:74
    9.27  msgid "Kernel messages"
    9.28  msgstr "Meddelanden från kärnan"
    9.29  
    9.30 -#: index.cgi:592 boot.cgi:100 styles/default/header.html:75
    9.31 +#: index.cgi:592 boot.cgi:99 styles/default/header.html:75
    9.32  msgid "Boot scripts"
    9.33  msgstr "Start skript"
    9.34  
    9.35 @@ -210,7 +210,7 @@
    9.36  msgid "Creating report footer..."
    9.37  msgstr "Skapar rapport fot..."
    9.38  
    9.39 -#: index.cgi:608 index.cgi:704 boot.cgi:510 boot.cgi:512
    9.40 +#: index.cgi:608 index.cgi:704 boot.cgi:504 boot.cgi:506
    9.41  msgid "View"
    9.42  msgstr ""
    9.43  
    9.44 @@ -262,7 +262,7 @@
    9.45  msgid "Network"
    9.46  msgstr "Nätverk"
    9.47  
    9.48 -#: index.cgi:668 hardware.cgi:340
    9.49 +#: index.cgi:668 hardware.cgi:349
    9.50  msgid "Filesystem usage statistics"
    9.51  msgstr "Filsystemsanvändning"
    9.52  
    9.53 @@ -298,11 +298,11 @@
    9.54  "Här kan du konfigurera en trådbunden anslutning med DHCP för att automatiskt "
    9.55  "få en slumpmässig IP eller konfigurera en statisk/fast IP"
    9.56  
    9.57 -#: network.cgi:247 boot.cgi:152
    9.58 +#: network.cgi:247 boot.cgi:149
    9.59  msgid "Configuration"
    9.60  msgstr "Konfiguration"
    9.61  
    9.62 -#: network.cgi:253 lib/libtazpanel:165
    9.63 +#: network.cgi:253 lib/libtazpanel:167
    9.64  msgid "Interface"
    9.65  msgstr "Enhet"
    9.66  
    9.67 @@ -359,11 +359,11 @@
    9.68  msgid "Help"
    9.69  msgstr ""
    9.70  
    9.71 -#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:292
    9.72 +#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:289
    9.73  msgid "Start"
    9.74  msgstr "Start"
    9.75  
    9.76 -#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:281
    9.77 +#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:278
    9.78  msgid "Stop"
    9.79  msgstr "Stop"
    9.80  
    9.81 @@ -383,7 +383,7 @@
    9.82  msgid "(hidden)"
    9.83  msgstr ""
    9.84  
    9.85 -#: network.cgi:349 boot.cgi:150 hardware.cgi:57 lib/libtazpanel:166
    9.86 +#: network.cgi:349 boot.cgi:147 hardware.cgi:57 lib/libtazpanel:168
    9.87  msgid "Name"
    9.88  msgstr "Namn"
    9.89  
    9.90 @@ -400,7 +400,7 @@
    9.91  msgid "Encryption"
    9.92  msgstr "Kryptering"
    9.93  
    9.94 -#: network.cgi:353 boot.cgi:153 lib/libtazpanel:167
    9.95 +#: network.cgi:353 boot.cgi:150 lib/libtazpanel:169
    9.96  msgid "Status"
    9.97  msgstr "Status"
    9.98  
    9.99 @@ -507,7 +507,7 @@
   9.100  msgid "forward packets between interfaces"
   9.101  msgstr ""
   9.102  
   9.103 -#: network.cgi:656 network.cgi:690 boot.cgi:336 settings.cgi:608
   9.104 +#: network.cgi:656 network.cgi:690 boot.cgi:332 settings.cgi:608
   9.105  #: settings.cgi:722
   9.106  msgid "Change"
   9.107  msgstr "Ändra"
   9.108 @@ -560,173 +560,224 @@
   9.109  msgid "Show more..."
   9.110  msgstr "Visa mer..."
   9.111  
   9.112 -#: boot.cgi:45 boot.cgi:492 styles/default/header.html:80
   9.113 +#: boot.cgi:40 boot.cgi:45 boot.cgi:486 styles/default/header.html:80
   9.114  #, fuzzy
   9.115  msgid "System logs"
   9.116  msgstr "System språk"
   9.117  
   9.118 -#: boot.cgi:96
   9.119 +#: boot.cgi:95
   9.120  msgid "Boot log files"
   9.121  msgstr "Start log filer"
   9.122  
   9.123 -#: boot.cgi:101 styles/default/header.html:76
   9.124 +#: boot.cgi:100 styles/default/header.html:76
   9.125  msgid "X server"
   9.126  msgstr "X server"
   9.127  
   9.128 -#: boot.cgi:102 styles/default/header.html:77
   9.129 +#: boot.cgi:101 styles/default/header.html:77
   9.130  msgid "X session"
   9.131  msgstr ""
   9.132  
   9.133 -#: boot.cgi:124 boot.cgi:493 styles/default/header.html:81
   9.134 +#: boot.cgi:120 boot.cgi:487 styles/default/header.html:81
   9.135  msgid "Manage daemons"
   9.136  msgstr "Hantera daemoner"
   9.137  
   9.138 -#: boot.cgi:126
   9.139 +#: boot.cgi:123
   9.140  msgid "Check, start and stop daemons on SliTaz"
   9.141  msgstr "Konstrollera, starta och stopa daemoner i SliTaz"
   9.142  
   9.143 -#: boot.cgi:151 hardware.cgi:168 settings.cgi:434
   9.144 +#: boot.cgi:148 hardware.cgi:177 settings.cgi:434
   9.145  msgid "Description"
   9.146  msgstr "Beskrivning"
   9.147  
   9.148 -#: boot.cgi:154
   9.149 +#: boot.cgi:151
   9.150  msgid "Action"
   9.151  msgstr "Handling"
   9.152  
   9.153 -#: boot.cgi:155
   9.154 +#: boot.cgi:152
   9.155  msgid "PID"
   9.156  msgstr "PID"
   9.157  
   9.158 -#: boot.cgi:180
   9.159 +#: boot.cgi:177
   9.160  msgid "SliTaz Firewall with iptable rules"
   9.161  msgstr "Slitaz Brandvägg med iptable regler"
   9.162  
   9.163 -#: boot.cgi:182
   9.164 +#: boot.cgi:179
   9.165  msgid "Small and fast web server with CGI support"
   9.166  msgstr "Liten och snabb webbserver med CGI stöd"
   9.167  
   9.168 -#: boot.cgi:185
   9.169 +#: boot.cgi:182
   9.170  msgid "Network time protocol daemon"
   9.171  msgstr "Nätverkstids protokoll daemon"
   9.172  
   9.173 -#: boot.cgi:188
   9.174 +#: boot.cgi:185
   9.175  msgid "Anonymous FTP server"
   9.176  msgstr "Anonymous FTP server"
   9.177  
   9.178 -#: boot.cgi:191
   9.179 +#: boot.cgi:188
   9.180  msgid "Busybox DHCP server"
   9.181  msgstr "Busybox DHCP server"
   9.182  
   9.183 -#: boot.cgi:194
   9.184 +#: boot.cgi:191
   9.185  msgid "Linux Kernel log daemon"
   9.186  msgstr "Linux Kärna log daemon"
   9.187  
   9.188 -#: boot.cgi:197
   9.189 +#: boot.cgi:194
   9.190  msgid "Execute scheduled commands"
   9.191  msgstr "Utför schemalagda kommandon"
   9.192  
   9.193 -#: boot.cgi:200
   9.194 +#: boot.cgi:197
   9.195  msgid "Small static DNS server daemon"
   9.196  msgstr "Liten statisk DNS server daemon"
   9.197  
   9.198 -#: boot.cgi:203
   9.199 +#: boot.cgi:200
   9.200  msgid "Transfer a file on tftp request"
   9.201  msgstr "Överför en fil via tftp begäran"
   9.202  
   9.203 -#: boot.cgi:206
   9.204 +#: boot.cgi:203
   9.205  #, fuzzy
   9.206  msgid "Printer daemon"
   9.207  msgstr "Hantera daemoner"
   9.208  
   9.209 -#: boot.cgi:208
   9.210 +#: boot.cgi:205
   9.211  msgid "Listen for network connections and launch programs"
   9.212  msgstr "Lysnna efter nätverksanslutningar och starta pogram"
   9.213  
   9.214 -#: boot.cgi:211
   9.215 +#: boot.cgi:208
   9.216  msgid "Manage a ZeroConf IPv4 link-local address"
   9.217  msgstr "Hantera en ZeroConf IPv4 link-lokal adress"
   9.218  
   9.219 -#: boot.cgi:280
   9.220 +#: boot.cgi:277
   9.221  msgid "Started"
   9.222  msgstr "Startade"
   9.223  
   9.224 -#: boot.cgi:291
   9.225 +#: boot.cgi:288
   9.226  msgid "Stopped"
   9.227  msgstr "Stannade"
   9.228  
   9.229 -#: boot.cgi:318
   9.230 +#: boot.cgi:314
   9.231  msgid "GRUB Boot loader"
   9.232  msgstr "GRUB Boot loader"
   9.233  
   9.234 -#: boot.cgi:320
   9.235 +#: boot.cgi:316
   9.236  msgid "The first application started when the computer powers on"
   9.237  msgstr "Den första applikationen startade när datorn startar"
   9.238  
   9.239 -#: boot.cgi:327
   9.240 +#: boot.cgi:323
   9.241  msgid "Default entry:"
   9.242  msgstr "Standard svar:"
   9.243  
   9.244 -#: boot.cgi:329
   9.245 +#: boot.cgi:325
   9.246  msgid "Timeout:"
   9.247  msgstr "Timeout:"
   9.248  
   9.249 -#: boot.cgi:331
   9.250 +#: boot.cgi:327
   9.251  msgid "Splash image:"
   9.252  msgstr "Splash image:"
   9.253  
   9.254 -#: boot.cgi:343
   9.255 +#: boot.cgi:339
   9.256  msgid "View or edit menu.lst"
   9.257  msgstr "Visa eller ändra menu.lst"
   9.258  
   9.259 -#: boot.cgi:348
   9.260 +#: boot.cgi:344
   9.261  msgid "Boot entries"
   9.262  msgstr "Start up bidrag"
   9.263  
   9.264 -#: boot.cgi:355
   9.265 +#: boot.cgi:351
   9.266  msgid "Entry"
   9.267  msgstr "Bidrag"
   9.268  
   9.269 -#: boot.cgi:376
   9.270 +#: boot.cgi:372
   9.271  msgid "Web boot is available with gPXE"
   9.272  msgstr "Nät start är tillgänglig med gPXE"
   9.273  
   9.274 -#: boot.cgi:390 boot.cgi:496 styles/default/header.html:83
   9.275 +#: boot.cgi:386 boot.cgi:490 styles/default/header.html:83
   9.276  msgid "ISO mine"
   9.277  msgstr ""
   9.278  
   9.279 -#: boot.cgi:486
   9.280 +#: boot.cgi:388
   9.281 +msgid "Invalid ISO image."
   9.282 +msgstr ""
   9.283 +
   9.284 +#: boot.cgi:410
   9.285 +msgid "ISO image file full path"
   9.286 +msgstr ""
   9.287 +
   9.288 +#: boot.cgi:411
   9.289 +msgid "set /dev/cdrom for a physical CD-ROM"
   9.290 +msgstr ""
   9.291 +
   9.292 +#: boot.cgi:414
   9.293 +msgid "Working directory"
   9.294 +msgstr ""
   9.295 +
   9.296 +#: boot.cgi:416
   9.297 +msgid "Target partition"
   9.298 +msgstr ""
   9.299 +
   9.300 +#: boot.cgi:417
   9.301 +msgid ""
   9.302 +"For hard disk installation only. Will create /slitaz tree and keep other "
   9.303 +"files. No partitioning and no formatting."
   9.304 +msgstr ""
   9.305 +
   9.306 +#: boot.cgi:420
   9.307 +msgid "Choose a partition (optional)"
   9.308 +msgstr ""
   9.309 +
   9.310 +#: boot.cgi:431
   9.311 +msgid "USB key device"
   9.312 +msgstr ""
   9.313 +
   9.314 +#: boot.cgi:432
   9.315 +msgid "For USB boot key only. Will erase the full device."
   9.316 +msgstr ""
   9.317 +
   9.318 +#: boot.cgi:435
   9.319 +msgid "Choose a USB key (optional)"
   9.320 +msgstr ""
   9.321 +
   9.322 +#: boot.cgi:454
   9.323 +#, fuzzy
   9.324 +msgid "Choose an action"
   9.325 +msgstr "Anslutning"
   9.326 +
   9.327 +#: boot.cgi:467
   9.328 +msgid "Mine"
   9.329 +msgstr ""
   9.330 +
   9.331 +#: boot.cgi:480
   9.332  msgid "Boot &amp; Start services"
   9.333  msgstr "Starta &amp; Starta tjänster"
   9.334  
   9.335 -#: boot.cgi:488
   9.336 +#: boot.cgi:482
   9.337  msgid "Everything that happens before user login"
   9.338  msgstr "Allting som händer innan användaren loggar in"
   9.339  
   9.340 -#: boot.cgi:491 styles/default/header.html:72
   9.341 +#: boot.cgi:485 styles/default/header.html:72
   9.342  msgid "Boot logs"
   9.343  msgstr "Start uo loggar"
   9.344  
   9.345 -#: boot.cgi:499 styles/default/header.html:68
   9.346 +#: boot.cgi:493 styles/default/header.html:68
   9.347  msgid "Boot loader"
   9.348  msgstr "Start laddare"
   9.349  
   9.350 -#: boot.cgi:506
   9.351 +#: boot.cgi:500
   9.352  msgid "Configuration files"
   9.353  msgstr "Configurations filer"
   9.354  
   9.355 -#: boot.cgi:509
   9.356 +#: boot.cgi:503
   9.357  msgid "Main configuration file:"
   9.358  msgstr "Huvud konfigureringsfil:"
   9.359  
   9.360 -#: boot.cgi:511
   9.361 +#: boot.cgi:505
   9.362  msgid "Login manager settings:"
   9.363  msgstr "Login hanterar inställningar:"
   9.364  
   9.365 -#: boot.cgi:519
   9.366 +#: boot.cgi:513
   9.367  msgid "Kernel cmdline"
   9.368  msgstr "Kärn kommando linje"
   9.369  
   9.370 -#: boot.cgi:526
   9.371 +#: boot.cgi:520
   9.372  msgid "Local startup commands"
   9.373  msgstr "Lokala start kommandon"
   9.374  
   9.375 @@ -738,7 +789,7 @@
   9.376  msgid "Bus"
   9.377  msgstr ""
   9.378  
   9.379 -#: hardware.cgi:55 hardware.cgi:525
   9.380 +#: hardware.cgi:55 hardware.cgi:534
   9.381  msgid "Device"
   9.382  msgstr ""
   9.383  
   9.384 @@ -755,189 +806,193 @@
   9.385  msgid "Detect PCI and USB hardware"
   9.386  msgstr "Upptäck PCI och USB hårdvara"
   9.387  
   9.388 -#: hardware.cgi:118 hardware.cgi:239 styles/default/header.html:91
   9.389 +#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:91
   9.390  msgid "Kernel modules"
   9.391  msgstr "Kärn moduler"
   9.392  
   9.393 -#: hardware.cgi:120
   9.394 +#: hardware.cgi:122
   9.395  msgid "Manage, search or get information about the Linux kernel modules"
   9.396  msgstr "Hantera, sök eller samla information om Linux kärnmoduler"
   9.397  
   9.398 -#: hardware.cgi:124
   9.399 +#: hardware.cgi:126
   9.400  msgid "Modules search"
   9.401  msgstr "Moduler sökning"
   9.402  
   9.403 -#: hardware.cgi:132
   9.404 +#: hardware.cgi:127
   9.405 +msgid "Search"
   9.406 +msgstr ""
   9.407 +
   9.408 +#: hardware.cgi:135
   9.409  msgid "Detailed information for module: %s"
   9.410  msgstr "Detaljerad information för modul: %s"
   9.411  
   9.412 -#: hardware.cgi:152
   9.413 +#: hardware.cgi:159
   9.414  msgid "Matching result(s) for: %s"
   9.415  msgstr "Matchande resultat för: %s"
   9.416  
   9.417 -#: hardware.cgi:158
   9.418 +#: hardware.cgi:166
   9.419  msgid "Module:"
   9.420  msgstr "Modul:"
   9.421  
   9.422 -#: hardware.cgi:167
   9.423 +#: hardware.cgi:176
   9.424  msgid "Module"
   9.425  msgstr "Modul"
   9.426  
   9.427 -#: hardware.cgi:169 hardware.cgi:527 lib/libtazpanel:295
   9.428 +#: hardware.cgi:178 hardware.cgi:536 lib/libtazpanel:297
   9.429  msgid "Size"
   9.430  msgstr "Storlek"
   9.431  
   9.432 -#: hardware.cgi:170 hardware.cgi:584 lib/libtazpanel:297
   9.433 +#: hardware.cgi:179 hardware.cgi:593 lib/libtazpanel:299
   9.434  msgid "Used"
   9.435  msgstr "Använd"
   9.436  
   9.437 -#: hardware.cgi:171
   9.438 +#: hardware.cgi:180
   9.439  msgid "by"
   9.440  msgstr "av"
   9.441  
   9.442 -#: hardware.cgi:195
   9.443 +#: hardware.cgi:204
   9.444  msgid "Information for USB Device %s"
   9.445  msgstr ""
   9.446  
   9.447 -#: hardware.cgi:197 hardware.cgi:215
   9.448 +#: hardware.cgi:206 hardware.cgi:224
   9.449  msgid "Detailed information about specified device."
   9.450  msgstr ""
   9.451  
   9.452 -#: hardware.cgi:213
   9.453 +#: hardware.cgi:222
   9.454  msgid "Information for PCI Device %s"
   9.455  msgstr ""
   9.456  
   9.457 -#: hardware.cgi:234
   9.458 +#: hardware.cgi:243
   9.459  msgid "Drivers &amp; Devices"
   9.460  msgstr "Drivrutiner &amp; Enheter"
   9.461  
   9.462 -#: hardware.cgi:236
   9.463 +#: hardware.cgi:245
   9.464  msgid "Manage your computer hardware"
   9.465  msgstr "Hantera din dators hårdvara"
   9.466  
   9.467 -#: hardware.cgi:240 styles/default/header.html:92
   9.468 +#: hardware.cgi:249 styles/default/header.html:92
   9.469  msgid "Detect PCI/USB"
   9.470  msgstr "Upptäckt PCI/USB"
   9.471  
   9.472 -#: hardware.cgi:241
   9.473 +#: hardware.cgi:250
   9.474  msgid "Auto-install Xorg video driver"
   9.475  msgstr ""
   9.476  
   9.477 -#: hardware.cgi:251 hardware.cgi:268
   9.478 +#: hardware.cgi:260 hardware.cgi:277
   9.479  msgid "Battery"
   9.480  msgstr "Batteri"
   9.481  
   9.482 -#: hardware.cgi:271
   9.483 +#: hardware.cgi:280
   9.484  msgid "health"
   9.485  msgstr "hälsa"
   9.486  
   9.487 -#: hardware.cgi:280
   9.488 +#: hardware.cgi:289
   9.489  msgid "Discharging %d%% - %s"
   9.490  msgstr "Laddar ur %d%% - %s"
   9.491  
   9.492 -#: hardware.cgi:284
   9.493 +#: hardware.cgi:293
   9.494  msgid "Charging %d%% - %s"
   9.495  msgstr "Laddar %d%% - %s"
   9.496  
   9.497 -#: hardware.cgi:286
   9.498 +#: hardware.cgi:295
   9.499  #, fuzzy
   9.500  msgid "Charged 100%%"
   9.501  msgstr "Laddad 100%%"
   9.502  
   9.503 -#: hardware.cgi:305
   9.504 +#: hardware.cgi:314
   9.505  msgid "Temperature:"
   9.506  msgstr "Temperatur:"
   9.507  
   9.508 -#: hardware.cgi:320
   9.509 +#: hardware.cgi:329
   9.510  msgid "Brightness"
   9.511  msgstr "Ljusstyrka"
   9.512  
   9.513 -#: hardware.cgi:462
   9.514 +#: hardware.cgi:471
   9.515  #, fuzzy
   9.516  msgid "new mount point:"
   9.517  msgstr "Monteringspunkt"
   9.518  
   9.519 -#: hardware.cgi:463
   9.520 +#: hardware.cgi:472
   9.521  msgid "read-only"
   9.522  msgstr ""
   9.523  
   9.524 -#: hardware.cgi:478
   9.525 +#: hardware.cgi:487
   9.526  msgid "Filesystems table"
   9.527  msgstr ""
   9.528  
   9.529 -#: hardware.cgi:491 lib/libtazpanel:292
   9.530 +#: hardware.cgi:500 lib/libtazpanel:294
   9.531  msgid "Disk"
   9.532  msgstr "Disk"
   9.533  
   9.534 -#: hardware.cgi:492 lib/libtazpanel:298
   9.535 +#: hardware.cgi:501 lib/libtazpanel:300
   9.536  msgid "Mount point"
   9.537  msgstr "Monteringspunkt"
   9.538  
   9.539 -#: hardware.cgi:493 lib/libtazpanel:294
   9.540 +#: hardware.cgi:502 lib/libtazpanel:296
   9.541  msgid "Type"
   9.542  msgstr "Sort"
   9.543  
   9.544 -#: hardware.cgi:494
   9.545 +#: hardware.cgi:503
   9.546  #, fuzzy
   9.547  msgid "Options"
   9.548  msgstr "Handling"
   9.549  
   9.550 -#: hardware.cgi:495
   9.551 +#: hardware.cgi:504
   9.552  msgid "Freq"
   9.553  msgstr ""
   9.554  
   9.555 -#: hardware.cgi:496
   9.556 +#: hardware.cgi:505
   9.557  #, fuzzy
   9.558  msgid "Pass"
   9.559  msgstr "Lösenord:"
   9.560  
   9.561 -#: hardware.cgi:518
   9.562 +#: hardware.cgi:527
   9.563  msgid "Loop devices"
   9.564  msgstr ""
   9.565  
   9.566 -#: hardware.cgi:526
   9.567 +#: hardware.cgi:535
   9.568  #, fuzzy
   9.569  msgid "Backing file"
   9.570  msgstr "Konfigurerings fil"
   9.571  
   9.572 -#: hardware.cgi:528
   9.573 +#: hardware.cgi:537
   9.574  #, fuzzy
   9.575  msgid "Access"
   9.576  msgstr "Åtkomst punkt"
   9.577  
   9.578 -#: hardware.cgi:529
   9.579 +#: hardware.cgi:538
   9.580  msgid "Offset"
   9.581  msgstr ""
   9.582  
   9.583 -#: hardware.cgi:538
   9.584 +#: hardware.cgi:547
   9.585  msgid "read/write"
   9.586  msgstr ""
   9.587  
   9.588 -#: hardware.cgi:539 hardware.cgi:564
   9.589 +#: hardware.cgi:548 hardware.cgi:573
   9.590  msgid "read only"
   9.591  msgstr ""
   9.592  
   9.593 -#: hardware.cgi:561
   9.594 +#: hardware.cgi:570
   9.595  msgid "Setup"
   9.596  msgstr ""
   9.597  
   9.598 -#: hardware.cgi:562
   9.599 +#: hardware.cgi:571
   9.600  msgid "new backing file:"
   9.601  msgstr ""
   9.602  
   9.603 -#: hardware.cgi:563
   9.604 +#: hardware.cgi:572
   9.605  msgid "offset in bytes:"
   9.606  msgstr ""
   9.607  
   9.608 -#: hardware.cgi:581
   9.609 +#: hardware.cgi:590
   9.610  msgid "System memory"
   9.611  msgstr "System minne"
   9.612  
   9.613 -#: hardware.cgi:587
   9.614 +#: hardware.cgi:596
   9.615  msgid "Buffers"
   9.616  msgstr ""
   9.617  
   9.618 -#: hardware.cgi:590
   9.619 +#: hardware.cgi:599
   9.620  msgid "Free"
   9.621  msgstr ""
   9.622  
   9.623 @@ -1116,11 +1171,11 @@
   9.624  msgid "-d"
   9.625  msgstr "-d"
   9.626  
   9.627 -#: settings.cgi:462 settings.cgi:765 settings.cgi:776 settings.cgi:788
   9.628 +#: settings.cgi:462 settings.cgi:765 settings.cgi:777 settings.cgi:789
   9.629  msgid "Activate"
   9.630  msgstr "Aktivera"
   9.631  
   9.632 -#: settings.cgi:474 settings.cgi:497
   9.633 +#: settings.cgi:475 settings.cgi:497
   9.634  msgid "Small quick tweaks for user %s"
   9.635  msgstr ""
   9.636  
   9.637 @@ -1223,31 +1278,31 @@
   9.638  msgid "Suggested keymap for Xorg:"
   9.639  msgstr "Föreslaget tangentbordsspråk för Xorg:"
   9.640  
   9.641 -#: settings.cgi:772
   9.642 +#: settings.cgi:773
   9.643  msgid "Available keymaps:"
   9.644  msgstr "Tillgängliga tangentbordsspråk:"
   9.645  
   9.646 -#: settings.cgi:783
   9.647 +#: settings.cgi:784
   9.648  msgid "Panel configuration"
   9.649  msgstr "Panel konfiguration"
   9.650  
   9.651 -#: settings.cgi:786
   9.652 +#: settings.cgi:787
   9.653  msgid "Style:"
   9.654  msgstr "Stil:"
   9.655  
   9.656 -#: settings.cgi:792
   9.657 +#: settings.cgi:793
   9.658  msgid "Configuration files:"
   9.659  msgstr "Konfigurations filer:"
   9.660  
   9.661 -#: settings.cgi:793 styles/default/header.html:42
   9.662 +#: settings.cgi:794 styles/default/header.html:42
   9.663  msgid "Panel"
   9.664  msgstr "Panel"
   9.665  
   9.666 -#: settings.cgi:794
   9.667 +#: settings.cgi:795
   9.668  msgid "Server"
   9.669  msgstr "Server"
   9.670  
   9.671 -#: settings.cgi:797
   9.672 +#: settings.cgi:798
   9.673  #, fuzzy
   9.674  msgid "TazPanel provides a debugging mode and page:"
   9.675  msgstr "TazPanel förser ett debugging läge och sida:"
   9.676 @@ -1256,24 +1311,24 @@
   9.677  msgid "connected"
   9.678  msgstr "ansluten"
   9.679  
   9.680 -#: lib/libtazpanel:168
   9.681 +#: lib/libtazpanel:170
   9.682  msgid "IP Address"
   9.683  msgstr "IP adress"
   9.684  
   9.685 -#: lib/libtazpanel:169
   9.686 +#: lib/libtazpanel:171
   9.687  msgid "Scan ports"
   9.688  msgstr "Skanna portar"
   9.689  
   9.690 -#: lib/libtazpanel:241
   9.691 +#: lib/libtazpanel:243
   9.692  #, fuzzy
   9.693  msgid "Please wait"
   9.694  msgstr "Var god vänta..."
   9.695  
   9.696 -#: lib/libtazpanel:293
   9.697 +#: lib/libtazpanel:295
   9.698  msgid "Label"
   9.699  msgstr "Etikett"
   9.700  
   9.701 -#: lib/libtazpanel:296
   9.702 +#: lib/libtazpanel:298
   9.703  msgid "Available"
   9.704  msgstr "Tillgängligt"
   9.705  
    10.1 --- a/po/tazpanel.pot	Sun Jul 12 10:49:16 2015 +0200
    10.2 +++ b/po/tazpanel.pot	Sun Jul 12 13:03:50 2015 +0200
    10.3 @@ -8,7 +8,7 @@
    10.4  msgstr ""
    10.5  "Project-Id-Version: TazPanel 1.8.2\n"
    10.6  "Report-Msgid-Bugs-To: \n"
    10.7 -"POT-Creation-Date: 2015-06-05 20:42+0300\n"
    10.8 +"POT-Creation-Date: 2015-07-12 12:25+0200\n"
    10.9  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
   10.10  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
   10.11  "Language-Team: LANGUAGE <LL@li.org>\n"
   10.12 @@ -54,7 +54,7 @@
   10.13  msgstr ""
   10.14  
   10.15  #: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670
   10.16 -#: network.cgi:720 boot.cgi:531 hardware.cgi:483 settings.cgi:766
   10.17 +#: network.cgi:720 boot.cgi:525 hardware.cgi:492 settings.cgi:766
   10.18  msgid "Edit"
   10.19  msgstr ""
   10.20  
   10.21 @@ -195,11 +195,11 @@
   10.22  msgid "Getting boot logs..."
   10.23  msgstr ""
   10.24  
   10.25 -#: index.cgi:589 boot.cgi:99 styles/default/header.html:74
   10.26 +#: index.cgi:589 boot.cgi:98 styles/default/header.html:74
   10.27  msgid "Kernel messages"
   10.28  msgstr ""
   10.29  
   10.30 -#: index.cgi:592 boot.cgi:100 styles/default/header.html:75
   10.31 +#: index.cgi:592 boot.cgi:99 styles/default/header.html:75
   10.32  msgid "Boot scripts"
   10.33  msgstr ""
   10.34  
   10.35 @@ -207,7 +207,7 @@
   10.36  msgid "Creating report footer..."
   10.37  msgstr ""
   10.38  
   10.39 -#: index.cgi:608 index.cgi:704 boot.cgi:510 boot.cgi:512
   10.40 +#: index.cgi:608 index.cgi:704 boot.cgi:504 boot.cgi:506
   10.41  msgid "View"
   10.42  msgstr ""
   10.43  
   10.44 @@ -257,7 +257,7 @@
   10.45  msgid "Network"
   10.46  msgstr ""
   10.47  
   10.48 -#: index.cgi:668 hardware.cgi:340
   10.49 +#: index.cgi:668 hardware.cgi:349
   10.50  msgid "Filesystem usage statistics"
   10.51  msgstr ""
   10.52  
   10.53 @@ -291,11 +291,11 @@
   10.54  "random IP or configure a static/fixed IP"
   10.55  msgstr ""
   10.56  
   10.57 -#: network.cgi:247 boot.cgi:152
   10.58 +#: network.cgi:247 boot.cgi:149
   10.59  msgid "Configuration"
   10.60  msgstr ""
   10.61  
   10.62 -#: network.cgi:253 lib/libtazpanel:165
   10.63 +#: network.cgi:253 lib/libtazpanel:167
   10.64  msgid "Interface"
   10.65  msgstr ""
   10.66  
   10.67 @@ -351,11 +351,11 @@
   10.68  msgid "Help"
   10.69  msgstr ""
   10.70  
   10.71 -#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:292
   10.72 +#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:289
   10.73  msgid "Start"
   10.74  msgstr ""
   10.75  
   10.76 -#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:281
   10.77 +#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:278
   10.78  msgid "Stop"
   10.79  msgstr ""
   10.80  
   10.81 @@ -373,7 +373,7 @@
   10.82  msgid "(hidden)"
   10.83  msgstr ""
   10.84  
   10.85 -#: network.cgi:349 boot.cgi:150 hardware.cgi:57 lib/libtazpanel:166
   10.86 +#: network.cgi:349 boot.cgi:147 hardware.cgi:57 lib/libtazpanel:168
   10.87  msgid "Name"
   10.88  msgstr ""
   10.89  
   10.90 @@ -389,7 +389,7 @@
   10.91  msgid "Encryption"
   10.92  msgstr ""
   10.93  
   10.94 -#: network.cgi:353 boot.cgi:153 lib/libtazpanel:167
   10.95 +#: network.cgi:353 boot.cgi:150 lib/libtazpanel:169
   10.96  msgid "Status"
   10.97  msgstr ""
   10.98  
   10.99 @@ -491,7 +491,7 @@
  10.100  msgid "forward packets between interfaces"
  10.101  msgstr ""
  10.102  
  10.103 -#: network.cgi:656 network.cgi:690 boot.cgi:336 settings.cgi:608
  10.104 +#: network.cgi:656 network.cgi:690 boot.cgi:332 settings.cgi:608
  10.105  #: settings.cgi:722
  10.106  msgid "Change"
  10.107  msgstr ""
  10.108 @@ -544,171 +544,221 @@
  10.109  msgid "Show more..."
  10.110  msgstr ""
  10.111  
  10.112 -#: boot.cgi:45 boot.cgi:492 styles/default/header.html:80
  10.113 +#: boot.cgi:40 boot.cgi:45 boot.cgi:486 styles/default/header.html:80
  10.114  msgid "System logs"
  10.115  msgstr ""
  10.116  
  10.117 -#: boot.cgi:96
  10.118 +#: boot.cgi:95
  10.119  msgid "Boot log files"
  10.120  msgstr ""
  10.121  
  10.122 -#: boot.cgi:101 styles/default/header.html:76
  10.123 +#: boot.cgi:100 styles/default/header.html:76
  10.124  msgid "X server"
  10.125  msgstr ""
  10.126  
  10.127 -#: boot.cgi:102 styles/default/header.html:77
  10.128 +#: boot.cgi:101 styles/default/header.html:77
  10.129  msgid "X session"
  10.130  msgstr ""
  10.131  
  10.132 -#: boot.cgi:124 boot.cgi:493 styles/default/header.html:81
  10.133 +#: boot.cgi:120 boot.cgi:487 styles/default/header.html:81
  10.134  msgid "Manage daemons"
  10.135  msgstr ""
  10.136  
  10.137 -#: boot.cgi:126
  10.138 +#: boot.cgi:123
  10.139  msgid "Check, start and stop daemons on SliTaz"
  10.140  msgstr ""
  10.141  
  10.142 -#: boot.cgi:151 hardware.cgi:168 settings.cgi:434
  10.143 +#: boot.cgi:148 hardware.cgi:177 settings.cgi:434
  10.144  msgid "Description"
  10.145  msgstr ""
  10.146  
  10.147 -#: boot.cgi:154
  10.148 +#: boot.cgi:151
  10.149  msgid "Action"
  10.150  msgstr ""
  10.151  
  10.152 -#: boot.cgi:155
  10.153 +#: boot.cgi:152
  10.154  msgid "PID"
  10.155  msgstr ""
  10.156  
  10.157 -#: boot.cgi:180
  10.158 +#: boot.cgi:177
  10.159  msgid "SliTaz Firewall with iptable rules"
  10.160  msgstr ""
  10.161  
  10.162 -#: boot.cgi:182
  10.163 +#: boot.cgi:179
  10.164  msgid "Small and fast web server with CGI support"
  10.165  msgstr ""
  10.166  
  10.167 -#: boot.cgi:185
  10.168 +#: boot.cgi:182
  10.169  msgid "Network time protocol daemon"
  10.170  msgstr ""
  10.171  
  10.172 -#: boot.cgi:188
  10.173 +#: boot.cgi:185
  10.174  msgid "Anonymous FTP server"
  10.175  msgstr ""
  10.176  
  10.177 -#: boot.cgi:191
  10.178 +#: boot.cgi:188
  10.179  msgid "Busybox DHCP server"
  10.180  msgstr ""
  10.181  
  10.182 -#: boot.cgi:194
  10.183 +#: boot.cgi:191
  10.184  msgid "Linux Kernel log daemon"
  10.185  msgstr ""
  10.186  
  10.187 -#: boot.cgi:197
  10.188 +#: boot.cgi:194
  10.189  msgid "Execute scheduled commands"
  10.190  msgstr ""
  10.191  
  10.192 -#: boot.cgi:200
  10.193 +#: boot.cgi:197
  10.194  msgid "Small static DNS server daemon"
  10.195  msgstr ""
  10.196  
  10.197 -#: boot.cgi:203
  10.198 +#: boot.cgi:200
  10.199  msgid "Transfer a file on tftp request"
  10.200  msgstr ""
  10.201  
  10.202 -#: boot.cgi:206
  10.203 +#: boot.cgi:203
  10.204  msgid "Printer daemon"
  10.205  msgstr ""
  10.206  
  10.207 -#: boot.cgi:208
  10.208 +#: boot.cgi:205
  10.209  msgid "Listen for network connections and launch programs"
  10.210  msgstr ""
  10.211  
  10.212 -#: boot.cgi:211
  10.213 +#: boot.cgi:208
  10.214  msgid "Manage a ZeroConf IPv4 link-local address"
  10.215  msgstr ""
  10.216  
  10.217 -#: boot.cgi:280
  10.218 +#: boot.cgi:277
  10.219  msgid "Started"
  10.220  msgstr ""
  10.221  
  10.222 -#: boot.cgi:291
  10.223 +#: boot.cgi:288
  10.224  msgid "Stopped"
  10.225  msgstr ""
  10.226  
  10.227 -#: boot.cgi:318
  10.228 +#: boot.cgi:314
  10.229  msgid "GRUB Boot loader"
  10.230  msgstr ""
  10.231  
  10.232 -#: boot.cgi:320
  10.233 +#: boot.cgi:316
  10.234  msgid "The first application started when the computer powers on"
  10.235  msgstr ""
  10.236  
  10.237 -#: boot.cgi:327
  10.238 +#: boot.cgi:323
  10.239  msgid "Default entry:"
  10.240  msgstr ""
  10.241  
  10.242 -#: boot.cgi:329
  10.243 +#: boot.cgi:325
  10.244  msgid "Timeout:"
  10.245  msgstr ""
  10.246  
  10.247 -#: boot.cgi:331
  10.248 +#: boot.cgi:327
  10.249  msgid "Splash image:"
  10.250  msgstr ""
  10.251  
  10.252 -#: boot.cgi:343
  10.253 +#: boot.cgi:339
  10.254  msgid "View or edit menu.lst"
  10.255  msgstr ""
  10.256  
  10.257 -#: boot.cgi:348
  10.258 +#: boot.cgi:344
  10.259  msgid "Boot entries"
  10.260  msgstr ""
  10.261  
  10.262 -#: boot.cgi:355
  10.263 +#: boot.cgi:351
  10.264  msgid "Entry"
  10.265  msgstr ""
  10.266  
  10.267 -#: boot.cgi:376
  10.268 +#: boot.cgi:372
  10.269  msgid "Web boot is available with gPXE"
  10.270  msgstr ""
  10.271  
  10.272 -#: boot.cgi:390 boot.cgi:496 styles/default/header.html:83
  10.273 +#: boot.cgi:386 boot.cgi:490 styles/default/header.html:83
  10.274  msgid "ISO mine"
  10.275  msgstr ""
  10.276  
  10.277 -#: boot.cgi:486
  10.278 +#: boot.cgi:388
  10.279 +msgid "Invalid ISO image."
  10.280 +msgstr ""
  10.281 +
  10.282 +#: boot.cgi:410
  10.283 +msgid "ISO image file full path"
  10.284 +msgstr ""
  10.285 +
  10.286 +#: boot.cgi:411
  10.287 +msgid "set /dev/cdrom for a physical CD-ROM"
  10.288 +msgstr ""
  10.289 +
  10.290 +#: boot.cgi:414
  10.291 +msgid "Working directory"
  10.292 +msgstr ""
  10.293 +
  10.294 +#: boot.cgi:416
  10.295 +msgid "Target partition"
  10.296 +msgstr ""
  10.297 +
  10.298 +#: boot.cgi:417
  10.299 +msgid ""
  10.300 +"For hard disk installation only. Will create /slitaz tree and keep other "
  10.301 +"files. No partitioning and no formatting."
  10.302 +msgstr ""
  10.303 +
  10.304 +#: boot.cgi:420
  10.305 +msgid "Choose a partition (optional)"
  10.306 +msgstr ""
  10.307 +
  10.308 +#: boot.cgi:431
  10.309 +msgid "USB key device"
  10.310 +msgstr ""
  10.311 +
  10.312 +#: boot.cgi:432
  10.313 +msgid "For USB boot key only. Will erase the full device."
  10.314 +msgstr ""
  10.315 +
  10.316 +#: boot.cgi:435
  10.317 +msgid "Choose a USB key (optional)"
  10.318 +msgstr ""
  10.319 +
  10.320 +#: boot.cgi:454
  10.321 +msgid "Choose an action"
  10.322 +msgstr ""
  10.323 +
  10.324 +#: boot.cgi:467
  10.325 +msgid "Mine"
  10.326 +msgstr ""
  10.327 +
  10.328 +#: boot.cgi:480
  10.329  msgid "Boot &amp; Start services"
  10.330  msgstr ""
  10.331  
  10.332 -#: boot.cgi:488
  10.333 +#: boot.cgi:482
  10.334  msgid "Everything that happens before user login"
  10.335  msgstr ""
  10.336  
  10.337 -#: boot.cgi:491 styles/default/header.html:72
  10.338 +#: boot.cgi:485 styles/default/header.html:72
  10.339  msgid "Boot logs"
  10.340  msgstr ""
  10.341  
  10.342 -#: boot.cgi:499 styles/default/header.html:68
  10.343 +#: boot.cgi:493 styles/default/header.html:68
  10.344  msgid "Boot loader"
  10.345  msgstr ""
  10.346  
  10.347 -#: boot.cgi:506
  10.348 +#: boot.cgi:500
  10.349  msgid "Configuration files"
  10.350  msgstr ""
  10.351  
  10.352 -#: boot.cgi:509
  10.353 +#: boot.cgi:503
  10.354  msgid "Main configuration file:"
  10.355  msgstr ""
  10.356  
  10.357 -#: boot.cgi:511
  10.358 +#: boot.cgi:505
  10.359  msgid "Login manager settings:"
  10.360  msgstr ""
  10.361  
  10.362 -#: boot.cgi:519
  10.363 +#: boot.cgi:513
  10.364  msgid "Kernel cmdline"
  10.365  msgstr ""
  10.366  
  10.367 -#: boot.cgi:526
  10.368 +#: boot.cgi:520
  10.369  msgid "Local startup commands"
  10.370  msgstr ""
  10.371  
  10.372 @@ -720,7 +770,7 @@
  10.373  msgid "Bus"
  10.374  msgstr ""
  10.375  
  10.376 -#: hardware.cgi:55 hardware.cgi:525
  10.377 +#: hardware.cgi:55 hardware.cgi:534
  10.378  msgid "Device"
  10.379  msgstr ""
  10.380  
  10.381 @@ -736,183 +786,187 @@
  10.382  msgid "Detect PCI and USB hardware"
  10.383  msgstr ""
  10.384  
  10.385 -#: hardware.cgi:118 hardware.cgi:239 styles/default/header.html:91
  10.386 +#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:91
  10.387  msgid "Kernel modules"
  10.388  msgstr ""
  10.389  
  10.390 -#: hardware.cgi:120
  10.391 +#: hardware.cgi:122
  10.392  msgid "Manage, search or get information about the Linux kernel modules"
  10.393  msgstr ""
  10.394  
  10.395 -#: hardware.cgi:124
  10.396 +#: hardware.cgi:126
  10.397  msgid "Modules search"
  10.398  msgstr ""
  10.399  
  10.400 -#: hardware.cgi:132
  10.401 +#: hardware.cgi:127
  10.402 +msgid "Search"
  10.403 +msgstr ""
  10.404 +
  10.405 +#: hardware.cgi:135
  10.406  msgid "Detailed information for module: %s"
  10.407  msgstr ""
  10.408  
  10.409 -#: hardware.cgi:152
  10.410 +#: hardware.cgi:159
  10.411  msgid "Matching result(s) for: %s"
  10.412  msgstr ""
  10.413  
  10.414 -#: hardware.cgi:158
  10.415 +#: hardware.cgi:166
  10.416  msgid "Module:"
  10.417  msgstr ""
  10.418  
  10.419 -#: hardware.cgi:167
  10.420 +#: hardware.cgi:176
  10.421  msgid "Module"
  10.422  msgstr ""
  10.423  
  10.424 -#: hardware.cgi:169 hardware.cgi:527 lib/libtazpanel:295
  10.425 +#: hardware.cgi:178 hardware.cgi:536 lib/libtazpanel:297
  10.426  msgid "Size"
  10.427  msgstr ""
  10.428  
  10.429 -#: hardware.cgi:170 hardware.cgi:584 lib/libtazpanel:297
  10.430 +#: hardware.cgi:179 hardware.cgi:593 lib/libtazpanel:299
  10.431  msgid "Used"
  10.432  msgstr ""
  10.433  
  10.434 -#: hardware.cgi:171
  10.435 +#: hardware.cgi:180
  10.436  msgid "by"
  10.437  msgstr ""
  10.438  
  10.439 -#: hardware.cgi:195
  10.440 +#: hardware.cgi:204
  10.441  msgid "Information for USB Device %s"
  10.442  msgstr ""
  10.443  
  10.444 -#: hardware.cgi:197 hardware.cgi:215
  10.445 +#: hardware.cgi:206 hardware.cgi:224
  10.446  msgid "Detailed information about specified device."
  10.447  msgstr ""
  10.448  
  10.449 -#: hardware.cgi:213
  10.450 +#: hardware.cgi:222
  10.451  msgid "Information for PCI Device %s"
  10.452  msgstr ""
  10.453  
  10.454 -#: hardware.cgi:234
  10.455 +#: hardware.cgi:243
  10.456  msgid "Drivers &amp; Devices"
  10.457  msgstr ""
  10.458  
  10.459 -#: hardware.cgi:236
  10.460 +#: hardware.cgi:245
  10.461  msgid "Manage your computer hardware"
  10.462  msgstr ""
  10.463  
  10.464 -#: hardware.cgi:240 styles/default/header.html:92
  10.465 +#: hardware.cgi:249 styles/default/header.html:92
  10.466  msgid "Detect PCI/USB"
  10.467  msgstr ""
  10.468  
  10.469 -#: hardware.cgi:241
  10.470 +#: hardware.cgi:250
  10.471  msgid "Auto-install Xorg video driver"
  10.472  msgstr ""
  10.473  
  10.474 -#: hardware.cgi:251 hardware.cgi:268
  10.475 +#: hardware.cgi:260 hardware.cgi:277
  10.476  msgid "Battery"
  10.477  msgstr ""
  10.478  
  10.479 -#: hardware.cgi:271
  10.480 +#: hardware.cgi:280
  10.481  msgid "health"
  10.482  msgstr ""
  10.483  
  10.484 -#: hardware.cgi:280
  10.485 +#: hardware.cgi:289
  10.486  msgid "Discharging %d%% - %s"
  10.487  msgstr ""
  10.488  
  10.489 -#: hardware.cgi:284
  10.490 +#: hardware.cgi:293
  10.491  msgid "Charging %d%% - %s"
  10.492  msgstr ""
  10.493  
  10.494 -#: hardware.cgi:286
  10.495 +#: hardware.cgi:295
  10.496  msgid "Charged 100%%"
  10.497  msgstr ""
  10.498  
  10.499 -#: hardware.cgi:305
  10.500 +#: hardware.cgi:314
  10.501  msgid "Temperature:"
  10.502  msgstr ""
  10.503  
  10.504 -#: hardware.cgi:320
  10.505 +#: hardware.cgi:329
  10.506  msgid "Brightness"
  10.507  msgstr ""
  10.508  
  10.509 -#: hardware.cgi:462
  10.510 +#: hardware.cgi:471
  10.511  msgid "new mount point:"
  10.512  msgstr ""
  10.513  
  10.514 -#: hardware.cgi:463
  10.515 +#: hardware.cgi:472
  10.516  msgid "read-only"
  10.517  msgstr ""
  10.518  
  10.519 -#: hardware.cgi:478
  10.520 +#: hardware.cgi:487
  10.521  msgid "Filesystems table"
  10.522  msgstr ""
  10.523  
  10.524 -#: hardware.cgi:491 lib/libtazpanel:292
  10.525 +#: hardware.cgi:500 lib/libtazpanel:294
  10.526  msgid "Disk"
  10.527  msgstr ""
  10.528  
  10.529 -#: hardware.cgi:492 lib/libtazpanel:298
  10.530 +#: hardware.cgi:501 lib/libtazpanel:300
  10.531  msgid "Mount point"
  10.532  msgstr ""
  10.533  
  10.534 -#: hardware.cgi:493 lib/libtazpanel:294
  10.535 +#: hardware.cgi:502 lib/libtazpanel:296
  10.536  msgid "Type"
  10.537  msgstr ""
  10.538  
  10.539 -#: hardware.cgi:494
  10.540 +#: hardware.cgi:503
  10.541  msgid "Options"
  10.542  msgstr ""
  10.543  
  10.544 -#: hardware.cgi:495
  10.545 +#: hardware.cgi:504
  10.546  msgid "Freq"
  10.547  msgstr ""
  10.548  
  10.549 -#: hardware.cgi:496
  10.550 +#: hardware.cgi:505
  10.551  msgid "Pass"
  10.552  msgstr ""
  10.553  
  10.554 -#: hardware.cgi:518
  10.555 +#: hardware.cgi:527
  10.556  msgid "Loop devices"
  10.557  msgstr ""
  10.558  
  10.559 -#: hardware.cgi:526
  10.560 +#: hardware.cgi:535
  10.561  msgid "Backing file"
  10.562  msgstr ""
  10.563  
  10.564 -#: hardware.cgi:528
  10.565 +#: hardware.cgi:537
  10.566  msgid "Access"
  10.567  msgstr ""
  10.568  
  10.569 -#: hardware.cgi:529
  10.570 +#: hardware.cgi:538
  10.571  msgid "Offset"
  10.572  msgstr ""
  10.573  
  10.574 -#: hardware.cgi:538
  10.575 +#: hardware.cgi:547
  10.576  msgid "read/write"
  10.577  msgstr ""
  10.578  
  10.579 -#: hardware.cgi:539 hardware.cgi:564
  10.580 +#: hardware.cgi:548 hardware.cgi:573
  10.581  msgid "read only"
  10.582  msgstr ""
  10.583  
  10.584 -#: hardware.cgi:561
  10.585 +#: hardware.cgi:570
  10.586  msgid "Setup"
  10.587  msgstr ""
  10.588  
  10.589 -#: hardware.cgi:562
  10.590 +#: hardware.cgi:571
  10.591  msgid "new backing file:"
  10.592  msgstr ""
  10.593  
  10.594 -#: hardware.cgi:563
  10.595 +#: hardware.cgi:572
  10.596  msgid "offset in bytes:"
  10.597  msgstr ""
  10.598  
  10.599 -#: hardware.cgi:581
  10.600 +#: hardware.cgi:590
  10.601  msgid "System memory"
  10.602  msgstr ""
  10.603  
  10.604 -#: hardware.cgi:587
  10.605 +#: hardware.cgi:596
  10.606  msgid "Buffers"
  10.607  msgstr ""
  10.608  
  10.609 -#: hardware.cgi:590
  10.610 +#: hardware.cgi:599
  10.611  msgid "Free"
  10.612  msgstr ""
  10.613  
  10.614 @@ -1086,11 +1140,11 @@
  10.615  msgid "-d"
  10.616  msgstr ""
  10.617  
  10.618 -#: settings.cgi:462 settings.cgi:765 settings.cgi:776 settings.cgi:788
  10.619 +#: settings.cgi:462 settings.cgi:765 settings.cgi:777 settings.cgi:789
  10.620  msgid "Activate"
  10.621  msgstr ""
  10.622  
  10.623 -#: settings.cgi:474 settings.cgi:497
  10.624 +#: settings.cgi:475 settings.cgi:497
  10.625  msgid "Small quick tweaks for user %s"
  10.626  msgstr ""
  10.627  
  10.628 @@ -1189,31 +1243,31 @@
  10.629  msgid "Suggested keymap for Xorg:"
  10.630  msgstr ""
  10.631  
  10.632 -#: settings.cgi:772
  10.633 +#: settings.cgi:773
  10.634  msgid "Available keymaps:"
  10.635  msgstr ""
  10.636  
  10.637 -#: settings.cgi:783
  10.638 +#: settings.cgi:784
  10.639  msgid "Panel configuration"
  10.640  msgstr ""
  10.641  
  10.642 -#: settings.cgi:786
  10.643 +#: settings.cgi:787
  10.644  msgid "Style:"
  10.645  msgstr ""
  10.646  
  10.647 -#: settings.cgi:792
  10.648 +#: settings.cgi:793
  10.649  msgid "Configuration files:"
  10.650  msgstr ""
  10.651  
  10.652 -#: settings.cgi:793 styles/default/header.html:42
  10.653 +#: settings.cgi:794 styles/default/header.html:42
  10.654  msgid "Panel"
  10.655  msgstr ""
  10.656  
  10.657 -#: settings.cgi:794
  10.658 +#: settings.cgi:795
  10.659  msgid "Server"
  10.660  msgstr ""
  10.661  
  10.662 -#: settings.cgi:797
  10.663 +#: settings.cgi:798
  10.664  msgid "TazPanel provides a debugging mode and page:"
  10.665  msgstr ""
  10.666  
  10.667 @@ -1221,23 +1275,23 @@
  10.668  msgid "connected"
  10.669  msgstr ""
  10.670  
  10.671 -#: lib/libtazpanel:168
  10.672 +#: lib/libtazpanel:170
  10.673  msgid "IP Address"
  10.674  msgstr ""
  10.675  
  10.676 -#: lib/libtazpanel:169
  10.677 +#: lib/libtazpanel:171
  10.678  msgid "Scan ports"
  10.679  msgstr ""
  10.680  
  10.681 -#: lib/libtazpanel:241
  10.682 +#: lib/libtazpanel:243
  10.683  msgid "Please wait"
  10.684  msgstr ""
  10.685  
  10.686 -#: lib/libtazpanel:293
  10.687 +#: lib/libtazpanel:295
  10.688  msgid "Label"
  10.689  msgstr ""
  10.690  
  10.691 -#: lib/libtazpanel:296
  10.692 +#: lib/libtazpanel:298
  10.693  msgid "Available"
  10.694  msgstr ""
  10.695  
    11.1 --- a/settings.cgi	Sun Jul 12 10:49:16 2015 +0200
    11.2 +++ b/settings.cgi	Sun Jul 12 13:03:50 2015 +0200
    11.3 @@ -764,6 +764,7 @@
    11.4  		$(_ 'Suggested keymap for Xorg:') $keymap
    11.5  		<button form="settings" name="apply_xorg_kbd" value="$keymap" data-icon="ok">$(_ 'Activate')</button>
    11.6  		<button form="index" name="file" value="$keyboard_config" data-icon="edit">$(_ 'Edit')</button>
    11.7 +		<input form="index" type="hidden" name="action" value="edit" />
    11.8  		<br/>
    11.9  EOT
   11.10  		fi
    12.1 --- a/styles/default/header.html	Sun Jul 12 10:49:16 2015 +0200
    12.2 +++ b/styles/default/header.html	Sun Jul 12 13:03:50 2015 +0200
    12.3 @@ -52,7 +52,7 @@
    12.4     <span>$(_ 'Network')</span>
    12.5     <menu>
    12.6      <li><a data-icon="info" href="network.cgi">$(_ 'Summary')</a></li>
    12.7 -    <li><a data-icon="conf" href="index.cgi?file=/etc/network.conf">$(_ 'Config file')</a></li>
    12.8 +    <li><a data-icon="conf" href="index.cgi?file=/etc/network.conf&action=edit">$(_ 'Config file')</a></li>
    12.9      <li><a data-icon="eth"  href="network.cgi?eth">$(_ 'Ethernet')</a></li>
   12.10      <li><a data-icon="wifi" href="network.cgi?wifi">$(_ 'Wireless')</a></li>
   12.11      $(extra_menu network)