# HG changeset patch # User Aleksej Bobylev # Date 1440557468 -10800 # Node ID 3d4145137792522c174ee78ce3b322842d08c701 # Parent 4f619f973b8882947de23e5858306a9cc1dce4da Add hosts.cgi; update translations diff -r 4f619f973b88 -r 3d4145137792 Makefile --- a/Makefile Mon Aug 24 01:05:08 2015 +0300 +++ b/Makefile Wed Aug 26 05:51:08 2015 +0300 @@ -5,7 +5,7 @@ DESTDIR?= LINGUAS?=el es fr pl pt_BR ru sv PANEL?=/var/www/tazpanel -BASECGI?=boot.cgi hardware.cgi help.cgi index.cgi network.cgi settings.cgi +BASECGI?=boot.cgi hardware.cgi help.cgi index.cgi network.cgi hosts.cgi settings.cgi EXTRACGI?=floppy.cgi powersaving.cgi VERSION:=$(shell grep ^VERSION tazpanel | cut -d= -f2) @@ -25,7 +25,7 @@ --from-code="UTF-8" \ --package-name="TazPanel" \ --package-version="$(VERSION)" \ - ./tazpanel ./index.cgi ./network.cgi ./boot.cgi \ + ./tazpanel ./index.cgi ./network.cgi ./hosts.cgi ./boot.cgi \ ./hardware.cgi ./settings.cgi ./lib/libtazpanel ./help.cgi \ ./styles/default/header.html ./styles/default/footer.html diff -r 4f619f973b88 -r 3d4145137792 hosts.cgi --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hosts.cgi Wed Aug 26 05:51:08 2015 +0300 @@ -0,0 +1,301 @@ +#!/bin/sh +# +# Manage /etc/hosts CGI interface - to use hosts as Ad blocker +# +# Copyright (C) 2015 SliTaz GNU/Linux - BSD License +# + + +# Common functions from libtazpanel + +. lib/libtazpanel +get_config +header + +TITLE=$(_ 'Network') +xhtml_header "$(_ 'Use hosts file as Ad blocker')" + +found=$(mktemp) + +# Find the hosts list +hosts=$(echo "$QUERY_STRING&" | awk ' + BEGIN { RS="&"; FS="=" } + $1=="host" { printf "%s ", $2 } +') +hosts=$(httpd -d "${hosts% }") +# now hosts='host1 host2 ... hostn' + +# Folder to save downloaded and installed hosts lists +HOSTSDIR='/var/cache/tazpanel/hosts' +mkdir -p "$HOSTSDIR" + + + + +# List the lists data: name, about URL, download URL, update frequency, code letter +listlist() { + # Another free to use list, but not free to modify with its EULA (and very big: 12MB!) + # hpHosts List http://hosts-file.net/ + echo " +MVPs.org List http://winhelp2002.mvps.org/hosts.htm http://winhelp2002.mvps.org/hosts.zip monthly M +Dan Pollock List http://someonewhocares.org/hosts/ http://someonewhocares.org/hosts/zero/hosts regularly P +Malware Domain List http://www.malwaredomainlist.com/ http://www.malwaredomainlist.com/hostslist/hosts.txt regularly D +Peter Lowe List http://pgl.yoyo.org/adservers/ http://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&mimetype=plaintext regularly L +" +} + +# Get the list specifications: name and download URL +getlistspec() { + # Input: code letter + local line="$(listlist | grep "$1\$")" + name="$(echo "$line" | cut -d$'\t' -f1)" + url="$( echo "$line" | cut -d$'\t' -f3)" +} + +# Install the list +instlist() { + # Input: list=code letter, url=download url + file="$HOSTSDIR/$list" + [ -f "$file" ] && rm "$file" + busybox wget -O "$file" "$url" + case $url in + *zip) + mv "$file" "$file.zip" + busybox unzip "$file.zip" HOSTS >/dev/null + mv HOSTS "$file" + rm "$file.zip" + ;; + esac + # Add entries to hosts file + awk -vl="$list" '$1=="0.0.0.0"||$1=="127.0.0.1"{printf "0.0.0.0 %s #%s\n", $2, l}' "$file" | fgrep -v localhost >> /etc/hosts + # Clean the list + echo -n > "$file" + touch "$file.up" + + # Remove the duplicate entries + hostsnew=$(mktemp) + grep "^0.0.0.0" /etc/hosts | sort -k2,2 -u -o "$hostsnew" + sed -i '/^0.0.0.0/d' /etc/hosts + cat "$hostsnew" >> /etc/hosts + rm "$hostsnew" + + # Prevent user-disabled entries to re-appeare + grep "^#0.0.0.0" /etc/hosts | while read null host; do + sed -i "/^0.0.0.0 $host #/d" /etc/hosts + done +} + +# Remove the list +remlist() { + # Input: list=code letter + sed -i "/#$list$/d" /etc/hosts + file="$HOSTSDIR/$list" + rm "$file" "$file.up" "$file.avail" +} + + + +case " $(GET) " in + + *\ add\ *) + # Add given host + + host="$(GET add)" + + echo "0.0.0.0 $host #U" >> /etc/hosts + echo -n '

' + _ 'Host "%s" added to /etc/hosts.' "$host" + echo '

' + ;; + + *\ disable\ *) + # Disable given hosts + + for host in $hosts; do + sed -i "s|^0.0.0.0[ \t][ \t]*$host\$|#\0|" /etc/hosts + sed -i "s|^0.0.0.0[ \t][ \t]*$host .*|#\0|" /etc/hosts + done + r=$(echo "$hosts" | tr ' ' '\n' | wc -l) + echo -n '

' + _p '%d record disabled' \ + '%d records disabled' "$r" "$r" + echo '

' + ;; + + *\ instlist\ *) + # Install list + + list="$(GET instlist)" + getlistspec "$list" + echo "

$(_ 'Installing the "%s"...' "$name") " + instlist + echo "$(_ 'Done')

" + ;; + + *\ uplist\ *) + # Update list + + list="$(GET uplist)" + getlistspec "$list" + echo "

$(_ 'Updating the "%s"...' "$name") " + remlist; instlist + echo "$(_ 'Done')

" + ;; + + *\ remlist\ *) + # Remove list + + list="$(GET remlist)" + getlistspec "$list" + echo "

$(_ 'Removing the "%s"...' "$name") " + remlist + echo "$(_ 'Done')

" + ;; + +esac + +# When search term given +term=$(GET term) +if [ -z "$term" ]; then + getdb hosts | fgrep 0.0.0.0 > "$found" + r=$(wc -l < "$found") + echo -n '

' + _p '%d record used for Ad blocking' \ + '%d records used for Ad blocking' "$r" "$r" +else + getdb hosts | fgrep 0.0.0.0 | fgrep "$term" > "$found" + r=$(wc -l < "$found") + echo -n '

' + _p '%d record found for "%s"' \ + '%d records found for "%s"' "$r" "$r" "$term" +fi + +[ "$r" -gt 100 ] && _ ' (The list is limited to the first 100 entries.)' +echo '

' + +cat < +
+ $(_ 'Hosts') +
+ +
+
+
+
+EOT
+head -n100 "$found" | awk '{
+	printf "\n", $2, $2;
+}'
+rm "$found"
+cat <
+		
+ +
+ + + +
+
$(_ 'Add')
+
+
+ $(_ 'Host:') + +
+
+ +
+
+
+ +
+
$(_ 'Manage lists')
+
$(_ 'You can use one or more prepared hosts files to block advertisements, malware and other irritants.')
+
+ + + + + + + + + + +EOT + +IFS=$'\t' +listlist | while read name info url updated letter; do + [ -z "$name" ] && continue + + cat < + + + + ' +done + + cat < +
$(_ 'Name')$(_ 'Details')$(_ 'Updates')$(_ 'Actions')
$name$(_ 'info') + $([ "$updated" == 'monthly' ] && _ 'Updated monthly') + $([ "$updated" == 'regularly' ] && _ 'Updated regularly') + +EOT + + if [ -e "$HOSTSDIR/$letter" ]; then + # List installed + + # Check for upgrades (once a day) + if [ -f "$HOSTSDIR/$letter.up" ]; then + # Update checked previously + if [ "$(($(date -u +%s) - 86400))" -gt "$(date -ur "$HOSTSDIR/$letter.up" +%s)" ]; then + # Update checked more than one day (86400 seconds) ago + check='yes' + else + # Update checked within one day + check='no' + fi + else + # Update not checked yet + check='yes' + fi + + if [ "$check" == 'yes' ]; then + # Check for update (not really download) + busybox wget -s --header "If-Modified-Since: $(date -Rur "$HOSTSDIR/$letter")" "$url" + if [ "$?" -eq 0 ]; then + # Upgrade available + touch "$HOSTSDIR/$letter.avail" + else + # Upgrade not available + rm "$HOSTSDIR/$letter.avail" 2>/dev/null + fi + touch "$HOSTSDIR/$letter.up" + fi + + if [ -f "$HOSTSDIR/$letter.avail" ]; then + cat <$(_ 'Upgrade') +EOT + fi + + cat <$(_ 'Remove') +EOT + + else + # List not installed + cat <$(_ 'Install') +EOT + fi + echo '
+
+
+EOT + +xhtml_footer +exit 0 diff -r 4f619f973b88 -r 3d4145137792 network.cgi --- a/network.cgi Mon Aug 24 01:05:08 2015 +0300 +++ b/network.cgi Wed Aug 26 05:51:08 2015 +0300 @@ -617,100 +617,6 @@ ;; - *\ hosts\ *) - # Configure to use hosts as Ad blocker - xhtml_header "$(_ 'Use hosts file as Ad blocker')" - - term=$(GET term) - found=$(mktemp) - - # Find the hosts list - hosts=$(echo "$QUERY_STRING&" | awk ' - BEGIN { RS="&"; FS="=" } - $1=="host" { printf "%s ", $2 } - ') - hosts=$(httpd -d "${hosts% }") - # now hosts='host1 host2 ... hostn' - - if [ -n "$(GET add)" ]; then - # Add given host - - host="$(GET add)" - - echo "0.0.0.0 $host #U" >> /etc/hosts - echo -n '

' - _ 'Host "%s" added to /etc/hosts.' "$host" - echo '

' - - elif [ -n "$hosts" ]; then - # Disable given hosts - - for host in $hosts; do - sed -i "s|^0.0.0.0[ \t][ \t]*$host\$|#\0|" /etc/hosts - sed -i "s|^0.0.0.0[ \t][ \t]*$host .*|#\0|" /etc/hosts - done - r=$(echo "$hosts" | tr ' ' '\n' | wc -l) - echo -n '

' - _p '%d record disabled' \ - '%d records disabled' "$r" "$r" - echo '

' - fi - - # When search term given - if [ -z "$term" ]; then - getdb hosts | fgrep 0.0.0.0 > "$found" - r=$(wc -l < "$found") - echo -n '

' - _p '%d record used for Ad blocking' \ - '%d records used for Ad blocking' "$r" "$r" - else - getdb hosts | fgrep 0.0.0.0 | fgrep "$term" > "$found" - r=$(wc -l < "$found") - echo -n '

' - _p '%d record found for "%s"' \ - '%d records found for "%s"' "$r" "$r" "$term" - fi - - [ "$r" -gt 100 ] && _ ' (The list is limited to the first 100 entries.)' - echo '

' - - cat < -
- $(_ 'Hosts') -
- - -
-
-
-EOT
-		sort "$found" | head -n100 | awk '{
-			printf "\n", $2, $2;
-		}'
-		rm "$found"
-		cat <
-		
- -
- - -
-
$(_ 'Add')
-
-
- - $(_ 'Host:') - - -
-
-
-EOT - ;; - - *) # Main Network page starting with a summary xhtml_header "$(_ 'Manage network connections and services')" @@ -763,13 +669,13 @@
$(_ 'Hosts'; edit_button /etc/hosts)
$(r=$(getdb hosts | wc -l); - _p '%s record in the hosts DB' \ - '%s records in the hosts DB' "$r" \ + _p '%d record in the hosts DB' \ + '%d records in the hosts DB' "$r" \ "$r")
$(getdb hosts | fgrep -v 0.0.0.0)
-
- + + $(_ 'Use hosts file as Ad blocker')
diff -r 4f619f973b88 -r 3d4145137792 po/el.po --- a/po/el.po Mon Aug 24 01:05:08 2015 +0300 +++ b/po/el.po Wed Aug 26 05:51:08 2015 +0300 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: TazPanel 1.5.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-12 12:25+0200\n" +"POT-Creation-Date: 2015-08-26 05:27+0300\n" "PO-Revision-Date: 2012-06-10 17:15+0200\n" "Last-Translator: Douros Dimitris \n" "Language-Team: \n" @@ -15,26 +15,27 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Language: Greek\n" "X-Poedit-Country: GREECE\n" -#: tazpanel:52 +#: tazpanel:54 msgid "TazPanel is already running." msgstr "" -#: tazpanel:55 +#: tazpanel:57 msgid "Starting TazPanel web server on port %d..." msgstr "Εκκίνηση εξυπηρετητή ιστού TazPanel στη θύρα %d..." -#: tazpanel:57 +#: tazpanel:59 msgid "TazPanel Authentication - Default: root:root" msgstr "Πιστοποίηση TazPanel - Προεπιλογή: root:root" -#: tazpanel:64 +#: tazpanel:66 msgid "TazPanel is not running." msgstr "" -#: tazpanel:67 +#: tazpanel:69 msgid "Stopping TazPanel web server..." msgstr "Σταμάτημα εξυπηρετητή ιστού TazPanel..." @@ -54,13 +55,12 @@ msgid "Save" msgstr "Αποθήκευση" -#: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670 -#: network.cgi:720 boot.cgi:525 hardware.cgi:492 settings.cgi:766 +#: index.cgi:174 settings.cgi:784 lib/libtazpanel:378 msgid "Edit" msgstr "Επεξεργασία" -#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:630 -#: styles/default/header.html:46 +#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:679 +#: styles/default/header.html:49 msgid "Terminal" msgstr "Τερματικό" @@ -69,7 +69,7 @@ msgid "History" msgstr "Περιοχή" -#: index.cgi:247 lib/libtazpanel:348 +#: index.cgi:247 lib/libtazpanel:361 msgid "Back" msgstr "" @@ -101,7 +101,7 @@ msgid "Please, don't run interactive command \"%s\"" msgstr "" -#: index.cgi:330 styles/default/header.html:98 +#: index.cgi:330 styles/default/header.html:101 msgid "Settings" msgstr "Ρυθμίσεις" @@ -127,7 +127,7 @@ msgid "Apply" msgstr "" -#: index.cgi:445 index.cgi:631 +#: index.cgi:445 index.cgi:680 msgid "Process activity" msgstr "Δραστηριότητα διεργασιών" @@ -199,100 +199,115 @@ msgid "Getting boot logs..." msgstr "Συγκέντρωση καταγραφών εκκίνησης..." -#: index.cgi:589 boot.cgi:98 styles/default/header.html:74 +#: index.cgi:589 boot.cgi:93 styles/default/header.html:77 msgid "Kernel messages" msgstr "Μυνήματα πυρήνα" -#: index.cgi:592 boot.cgi:99 styles/default/header.html:75 +#: index.cgi:592 boot.cgi:94 styles/default/header.html:78 msgid "Boot scripts" msgstr "Δέσμες ενεργειών εκκίνησης" #: index.cgi:597 +#, fuzzy +msgid "Getting package list..." +msgstr "Συγκέντρωση πληροφοριών υλικού..." + +#: index.cgi:600 +msgid "Packages" +msgstr "" + +#: index.cgi:638 +#, fuzzy +msgid "Getting extra reports..." +msgstr "Συγκέντρωση καταγραφών εκκίνησης..." + +#: index.cgi:646 msgid "Creating report footer..." msgstr "Δημιουργία υποσέλιδου αναφοράς..." -#: index.cgi:608 index.cgi:704 boot.cgi:504 boot.cgi:506 +#: index.cgi:657 index.cgi:753 boot.cgi:499 boot.cgi:501 msgid "View" msgstr "" -#: index.cgi:613 +#: index.cgi:662 msgid "This report can be attached with a bug report on:" msgstr "" "Αυτή η αναφορά μπορεί να επισυναφθεί μαζί με μια αναφορά σφάλματος στο:" -#: index.cgi:623 +#: index.cgi:672 msgid "SliTaz administration and configuration Panel" msgstr "Πίνακας διαχείρισης και ρύθμισης παραμέτρων SliTaz" -#: index.cgi:632 +#: index.cgi:681 msgid "Create a report" msgstr "Δημιουργία μιας αναφοράς" -#: index.cgi:636 styles/default/header.html:44 styles/default/header.html:54 -#: styles/default/header.html:64 styles/default/header.html:90 -#: styles/default/header.html:100 +#: index.cgi:685 styles/default/header.html:47 styles/default/header.html:57 +#: styles/default/header.html:67 styles/default/header.html:93 +#: styles/default/header.html:103 msgid "Summary" msgstr "Σύνοψη" -#: index.cgi:638 +#: index.cgi:687 hosts.cgi:203 #, fuzzy msgid "Host:" msgstr "Τοπικός υπολογιστής (Host): %s" -#: index.cgi:639 +#: index.cgi:688 msgid "Uptime:" msgstr "Χρόνος απρόσκοπτης λειτουργίας:" -#: index.cgi:642 +#: index.cgi:691 msgid "Memory in Mb:" msgstr "Μνήμη σε Mb:" -#: index.cgi:644 +#: index.cgi:693 msgid "Total: %d, Used: %d, Free: %d" msgstr "Σύνολο: %d, Σε χρήση: %d, Ελεύθερα: %d" -#: index.cgi:648 +#: index.cgi:697 msgid "Linux kernel:" msgstr "Πυρήνας Linux:" -#: index.cgi:657 +#: index.cgi:706 #, fuzzy msgid "Network status" msgstr "Κατάσταση δικτύου" -#: index.cgi:659 network.cgi:15 network.cgi:215 styles/default/header.html:52 +#: index.cgi:708 network.cgi:15 network.cgi:216 hosts.cgi:15 +#: styles/default/header.html:55 msgid "Network" msgstr "Δίκτυο" -#: index.cgi:668 hardware.cgi:349 +#: index.cgi:717 hardware.cgi:349 msgid "Filesystem usage statistics" msgstr "Στατιστικά χρήσης συστήματος αρχείων" -#: index.cgi:670 styles/default/header.html:93 +#: index.cgi:719 styles/default/header.html:96 msgid "Disks" msgstr "" -#: index.cgi:702 +#: index.cgi:751 msgid "Panel Activity" msgstr "Δραστηριότητα Πίνακα" -#: network.cgi:152 +#: network.cgi:153 msgid "Changed hostname: %s" msgstr "Αλλαγμένο όνομα υπολογιστή: %s" -#: network.cgi:209 +#: network.cgi:210 msgid "Scanning open ports..." msgstr "Σάρωση ανοιχτών θυρών..." -#: network.cgi:214 +#: network.cgi:215 msgid "Port scanning for %s" msgstr "Σάρωση θύρας για %s" -#: network.cgi:225 +#: network.cgi:226 msgid "Ethernet connection" msgstr "Ενσύρματη σύνδεση" -#: network.cgi:243 +#: network.cgi:244 msgid "" "Here you can configure a wired connection using DHCP to automatically get a " "random IP or configure a static/fixed IP" @@ -300,80 +315,80 @@ "Εδώ μπορείτε να διαμορφώσετε μια ενσύρματη σύνδεση με χρήση του DHCP για να " "πάρει αυτόματα μια τυχαία IP ή να ρυθμίσετε μια στατική/σταθερή IP" -#: network.cgi:247 boot.cgi:149 +#: network.cgi:248 boot.cgi:144 msgid "Configuration" msgstr "Διαμόρφωση" -#: network.cgi:253 lib/libtazpanel:167 +#: network.cgi:254 lib/libtazpanel:170 msgid "Interface" msgstr "Διεπαφή" -#: network.cgi:261 +#: network.cgi:262 msgid "Static IP" msgstr "" -#: network.cgi:263 +#: network.cgi:264 msgid "Use static IP" msgstr "" -#: network.cgi:265 +#: network.cgi:266 msgid "IP address" msgstr "Διεύθυνση IP" -#: network.cgi:268 +#: network.cgi:269 msgid "Netmask" msgstr "Μάσκα δικτύου" -#: network.cgi:271 +#: network.cgi:272 msgid "Gateway" msgstr "Πύλη" -#: network.cgi:274 +#: network.cgi:275 msgid "DNS server" msgstr "Εξυπηρετητής DNS" -#: network.cgi:277 network.cgi:297 +#: network.cgi:278 network.cgi:298 msgid "Wake up" msgstr "" -#: network.cgi:279 +#: network.cgi:280 msgid "Wake up machines by network" msgstr "" -#: network.cgi:281 +#: network.cgi:282 msgid "MAC address to wake up" msgstr "" -#: network.cgi:282 network.cgi:287 +#: network.cgi:283 network.cgi:288 msgid "Leave empty for a general wakeup" msgstr "" -#: network.cgi:283 +#: network.cgi:284 msgid "List" msgstr "" -#: network.cgi:286 +#: network.cgi:287 #, fuzzy msgid "MAC/IP address password" msgstr "Αλλαγή κωδικού" -#: network.cgi:288 +#: network.cgi:289 msgid "Help" msgstr "" -#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:289 +#: network.cgi:296 network.cgi:446 network.cgi:639 boot.cgi:284 msgid "Start" msgstr "Εκκίνηση" -#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:278 +#: network.cgi:297 network.cgi:447 network.cgi:640 boot.cgi:273 msgid "Stop" msgstr "Σταμάτημα" -#: network.cgi:321 network.cgi:591 +#: network.cgi:322 network.cgi:602 msgid "Configuration file" msgstr "Αρχείο διαμόρφωσης" -#: network.cgi:331 +#: network.cgi:327 msgid "" "These values are the ethernet settings in the main /etc/network.conf " "configuration file" @@ -381,103 +396,112 @@ "Οι τιμές αυτές είναι οι ρυθμίσεις του ethernet στο κύριο αρχείο διαμόρφωσης /" "etc/network.conf" -#: network.cgi:343 +#: network.cgi:339 msgid "(hidden)" msgstr "" -#: network.cgi:349 boot.cgi:147 hardware.cgi:57 lib/libtazpanel:168 +#: network.cgi:345 hosts.cgi:219 boot.cgi:142 hardware.cgi:57 +#: lib/libtazpanel:171 msgid "Name" msgstr "Όνομα" -#: network.cgi:350 +#: network.cgi:346 msgid "Signal level" msgstr "" -#: network.cgi:351 +#: network.cgi:347 #, fuzzy msgid "Channel" msgstr "Αλλαγή" -#: network.cgi:352 +#: network.cgi:348 msgid "Encryption" msgstr "Κρυπτογράφιση" -#: network.cgi:353 boot.cgi:150 lib/libtazpanel:169 +#: network.cgi:349 boot.cgi:145 lib/libtazpanel:172 msgid "Status" msgstr "Κατάσταση" -#: network.cgi:404 network.cgi:486 network.cgi:508 +#: network.cgi:400 network.cgi:482 network.cgi:504 msgid "None" msgstr "" -#: network.cgi:410 +#: network.cgi:406 msgid "Connected" msgstr "Συνδεδεμένο" -#: network.cgi:436 +#: network.cgi:432 msgid "Wireless connection" msgstr "Ασύρματη σύνδεση" -#: network.cgi:452 lib/libtazpanel:150 +#: network.cgi:448 lib/libtazpanel:153 msgid "Scan" msgstr "Σάρωση" -#: network.cgi:460 +#: network.cgi:456 msgid "Scanning wireless interface..." msgstr "Σάρωση ασύρματης διεπαφής..." -#: network.cgi:474 +#: network.cgi:470 msgid "Connection" msgstr "Σύνδεση" -#: network.cgi:480 +#: network.cgi:476 #, fuzzy msgid "Network SSID" msgstr "Δίκτυο" -#: network.cgi:484 +#: network.cgi:480 msgid "Security" msgstr "" -#: network.cgi:495 +#: network.cgi:491 msgid "EAP method" msgstr "" -#: network.cgi:506 +#: network.cgi:502 msgid "Phase 2 authentication" msgstr "" -#: network.cgi:518 +#: network.cgi:514 msgid "CA certificate" msgstr "" -#: network.cgi:523 +#: network.cgi:519 msgid "User certificate" msgstr "" -#: network.cgi:528 +#: network.cgi:524 msgid "Identity" msgstr "" -#: network.cgi:533 +#: network.cgi:529 msgid "Anonymous identity" msgstr "" -#: network.cgi:538 +#: network.cgi:534 #, fuzzy msgid "Password" msgstr "Κωδικός:" -#: network.cgi:541 +#: network.cgi:537 #, fuzzy msgid "Show password" msgstr "Νέος κωδικός: " -#: network.cgi:582 +#: network.cgi:549 network.cgi:678 msgid "Configure" msgstr "Διαμόρφωση" -#: network.cgi:601 +#: network.cgi:550 +msgid "Share" +msgstr "" + +#: network.cgi:591 +msgid "Share Wi-Fi network with your friends" +msgstr "" + +#: network.cgi:607 msgid "" "These values are the wifi settings in the main /etc/network.conf " "configuration file" @@ -485,77 +509,187 @@ "Αυτές οι τιμές είναι οι ρυθμίσεις του wifi στο κύριο αρχείο ρυθμίσεων /etc/" "network.conf" -#: network.cgi:607 +#: network.cgi:613 msgid "Output of iwconfig" msgstr "Έξοδος του iwconfig" -#: network.cgi:616 +#: network.cgi:622 msgid "Manage network connections and services" msgstr "Διαχείριση συνδέσεων δυκτίου και υπηρεσιών" -#: network.cgi:635 +#: network.cgi:641 msgid "Restart" msgstr "Επανεκκίνηση" -#: network.cgi:639 +#: network.cgi:645 msgid "Configuration:" msgstr "Διαμόρφωση:" -#: network.cgi:647 +#: network.cgi:653 #, fuzzy msgid "Network interfaces" msgstr "Κατάσταση δικτύου" -#: network.cgi:654 +#: network.cgi:660 msgid "forward packets between interfaces" msgstr "" -#: network.cgi:656 network.cgi:690 boot.cgi:332 settings.cgi:608 -#: settings.cgi:722 +#: network.cgi:662 network.cgi:693 boot.cgi:327 settings.cgi:626 +#: settings.cgi:740 msgid "Change" msgstr "Αλλαγή" -#: network.cgi:665 +#: network.cgi:670 hosts.cgi:179 msgid "Hosts" msgstr "" -#: network.cgi:682 +#: network.cgi:672 +msgid "%d record in the hosts DB" +msgid_plural "%d records in the hosts DB" +msgstr[0] "" +msgstr[1] "" + +#: network.cgi:679 hosts.cgi:16 +msgid "Use hosts file as Ad blocker" +msgstr "" + +#: network.cgi:686 msgid "Hostname" msgstr "Όνομα υπολογιστή (Hostname)" -#: network.cgi:702 +#: network.cgi:705 msgid "Output of ifconfig" msgstr "Έξοδος του ifconfig" -#: network.cgi:708 +#: network.cgi:711 msgid "Routing table" msgstr "Πίνακας δρομολόγησης" -#: network.cgi:715 +#: network.cgi:717 msgid "Domain name resolution" msgstr "Επίλυση ονομάτων τομέα" -#: network.cgi:730 +#: network.cgi:723 msgid "ARP table" msgstr "Πίνακας ARP" -#: network.cgi:750 +#: network.cgi:743 msgid "Proxy" msgstr "" -#: network.cgi:751 +#: network.cgi:744 hosts.cgi:200 hosts.cgi:207 msgid "Add" msgstr "" -#: network.cgi:764 +#: network.cgi:757 msgid "IP Connections" msgstr "Συνδέσεις IP" -#: network.cgi:774 +#: network.cgi:765 msgid "Firewall" msgstr "" -#: boot.cgi:16 styles/default/header.html:62 +#: network.cgi:766 +msgid "Port knocker" +msgstr "" + +#: hosts.cgi:107 +msgid "Host \"%s\" added to /etc/hosts." +msgstr "" + +#: hosts.cgi:120 +msgid "%d record disabled" +msgid_plural "%d records disabled" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:130 +msgid "Installing the \"%s\"..." +msgstr "" + +#: hosts.cgi:132 hosts.cgi:142 hosts.cgi:152 +msgid "Done" +msgstr "" + +#: hosts.cgi:140 +msgid "Updating the \"%s\"..." +msgstr "" + +#: hosts.cgi:150 +#, fuzzy +msgid "Removing the \"%s\"..." +msgstr "Αναφορά σε: %s" + +#: hosts.cgi:163 +msgid "%d record used for Ad blocking" +msgid_plural "%d records used for Ad blocking" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:169 +msgid "%d record found for \"%s\"" +msgid_plural "%d records found for \"%s\"" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:173 +msgid " (The list is limited to the first 100 entries.)" +msgstr "" + +#: hosts.cgi:194 +#, fuzzy +msgid "Disable selected" +msgstr "Απενεργοποίηση" + +#: hosts.cgi:213 +#, fuzzy +msgid "Manage lists" +msgstr "Διαχείριση χρηστών" + +#: hosts.cgi:214 +msgid "" +"You can use one or more prepared hosts files to block advertisements, " +"malware and other irritants." +msgstr "" + +#: hosts.cgi:220 +msgid "Details" +msgstr "" + +#: hosts.cgi:221 +msgid "Updates" +msgstr "" + +#: hosts.cgi:222 +#, fuzzy +msgid "Actions" +msgstr "Ενέργεια" + +#: hosts.cgi:235 +msgid "info" +msgstr "" + +#: hosts.cgi:237 +msgid "Updated monthly" +msgstr "" + +#: hosts.cgi:238 +msgid "Updated regularly" +msgstr "" + +#: hosts.cgi:276 +msgid "Upgrade" +msgstr "" + +#: hosts.cgi:281 +msgid "Remove" +msgstr "" + +#: hosts.cgi:287 +msgid "Install" +msgstr "" + +#: boot.cgi:16 styles/default/header.html:65 msgid "Boot" msgstr "Εκκίνηση" @@ -563,228 +697,228 @@ msgid "Show more..." msgstr "Εμφάνισε περισσότερα..." -#: boot.cgi:40 boot.cgi:45 boot.cgi:486 styles/default/header.html:80 +#: boot.cgi:40 boot.cgi:45 boot.cgi:481 styles/default/header.html:83 #, fuzzy msgid "System logs" msgstr "Γλώσσα συστήματος" -#: boot.cgi:95 +#: boot.cgi:90 msgid "Boot log files" msgstr "Αρχεία καταγραφών εκκίνησης" -#: boot.cgi:100 styles/default/header.html:76 +#: boot.cgi:95 styles/default/header.html:79 msgid "X server" msgstr "Εξυπηρετητής Χ" -#: boot.cgi:101 styles/default/header.html:77 +#: boot.cgi:96 styles/default/header.html:80 msgid "X session" msgstr "" -#: boot.cgi:120 boot.cgi:487 styles/default/header.html:81 +#: boot.cgi:115 boot.cgi:482 styles/default/header.html:84 msgid "Manage daemons" msgstr "Διαχείριση δαιμόνων (daemons)" -#: boot.cgi:123 +#: boot.cgi:118 msgid "Check, start and stop daemons on SliTaz" msgstr "Έλεγχος, εκκίνηση και σταμάτημα δαιμόνων στο SliTaz" -#: boot.cgi:148 hardware.cgi:177 settings.cgi:434 +#: boot.cgi:143 hardware.cgi:177 settings.cgi:452 msgid "Description" msgstr "Περιγραφή" -#: boot.cgi:151 +#: boot.cgi:146 msgid "Action" msgstr "Ενέργεια" -#: boot.cgi:152 +#: boot.cgi:147 msgid "PID" msgstr "" -#: boot.cgi:177 +#: boot.cgi:172 msgid "SliTaz Firewall with iptable rules" msgstr "Τοίχος προστασίας SliTaz με κανόνες πίνακα IP" -#: boot.cgi:179 +#: boot.cgi:174 msgid "Small and fast web server with CGI support" msgstr "Μικρός και γρήγορος εξυπηρετητής ιστού με υποστήριξη CGI" -#: boot.cgi:182 +#: boot.cgi:177 msgid "Network time protocol daemon" msgstr "Δαίμονας πρωτοκόλλου ώρας δικτύου" -#: boot.cgi:185 +#: boot.cgi:180 msgid "Anonymous FTP server" msgstr "Ανώνυμος εξυπηρετητής FTP" -#: boot.cgi:188 +#: boot.cgi:183 msgid "Busybox DHCP server" msgstr "Εξυπηρετητής DHCP Busybox" -#: boot.cgi:191 +#: boot.cgi:186 msgid "Linux Kernel log daemon" msgstr "Δαίμονας καταγραφής πυρήνα Linux" -#: boot.cgi:194 +#: boot.cgi:189 msgid "Execute scheduled commands" msgstr "Εκτέλεση προγραμματισμένων εντολών" -#: boot.cgi:197 +#: boot.cgi:192 msgid "Small static DNS server daemon" msgstr "Δαίμονας μικρού στατικού DNS εξυπηρετητή" -#: boot.cgi:200 +#: boot.cgi:195 msgid "Transfer a file on tftp request" msgstr "Μεταφορά ενός αρχείου κατόπιν αιτήματος tftp" -#: boot.cgi:203 +#: boot.cgi:198 #, fuzzy msgid "Printer daemon" msgstr "Διαχείριση δαιμόνων (daemons)" -#: boot.cgi:205 +#: boot.cgi:200 msgid "Listen for network connections and launch programs" msgstr "Αναμονή για συνδέσεις δικτύου και έναρξη προγραμμάτων" -#: boot.cgi:208 +#: boot.cgi:203 msgid "Manage a ZeroConf IPv4 link-local address" msgstr "Διαχείριση μίας ZeroConf IPv4 link-local διεύθυνσης" -#: boot.cgi:277 +#: boot.cgi:272 msgid "Started" msgstr "Ξεκίνησε" -#: boot.cgi:288 +#: boot.cgi:283 msgid "Stopped" msgstr "Σταμάτησε" -#: boot.cgi:314 +#: boot.cgi:309 msgid "GRUB Boot loader" msgstr "Φορτωτής εκκίνησης GRUB" -#: boot.cgi:316 +#: boot.cgi:311 msgid "The first application started when the computer powers on" msgstr "Η πρώτη εφαρμογή που ξεκινά όταν ο υπολογιστής ανοίγει" -#: boot.cgi:323 +#: boot.cgi:318 msgid "Default entry:" msgstr "Προεπιλεγμένη καταχώρηση:" -#: boot.cgi:325 +#: boot.cgi:320 msgid "Timeout:" msgstr "Χρονικό όριο:" -#: boot.cgi:327 +#: boot.cgi:322 msgid "Splash image:" msgstr "Εικόνα εκκίνησης (splash):" -#: boot.cgi:339 +#: boot.cgi:334 msgid "View or edit menu.lst" msgstr "Προβολή ή επεξεργασία menu.lst" -#: boot.cgi:344 +#: boot.cgi:339 msgid "Boot entries" msgstr "Καταχωρήσεις εκκίνησης" -#: boot.cgi:351 +#: boot.cgi:346 msgid "Entry" msgstr "Καταχώρηση" -#: boot.cgi:372 +#: boot.cgi:367 msgid "Web boot is available with gPXE" msgstr "Η εκκίνηση μέσω δικτύου είναι διαθέσιμη με gPXE" -#: boot.cgi:386 boot.cgi:490 styles/default/header.html:83 +#: boot.cgi:381 boot.cgi:485 styles/default/header.html:86 msgid "ISO mine" msgstr "" -#: boot.cgi:388 +#: boot.cgi:383 msgid "Invalid ISO image." msgstr "" -#: boot.cgi:410 +#: boot.cgi:403 msgid "ISO image file full path" msgstr "" -#: boot.cgi:411 +#: boot.cgi:404 msgid "set /dev/cdrom for a physical CD-ROM" msgstr "" -#: boot.cgi:414 +#: boot.cgi:407 msgid "Working directory" msgstr "" -#: boot.cgi:416 +#: boot.cgi:409 msgid "Target partition" msgstr "" -#: boot.cgi:417 +#: boot.cgi:410 msgid "" "For hard disk installation only. Will create /slitaz tree and keep other " "files. No partitioning and no formatting." msgstr "" -#: boot.cgi:420 +#: boot.cgi:413 msgid "Choose a partition (optional)" msgstr "" -#: boot.cgi:431 +#: boot.cgi:424 msgid "USB key device" msgstr "" -#: boot.cgi:432 +#: boot.cgi:425 msgid "For USB boot key only. Will erase the full device." msgstr "" -#: boot.cgi:435 +#: boot.cgi:428 msgid "Choose a USB key (optional)" msgstr "" -#: boot.cgi:454 +#: boot.cgi:449 #, fuzzy msgid "Choose an action" msgstr "Σύνδεση" -#: boot.cgi:467 +#: boot.cgi:462 msgid "Mine" msgstr "" -#: boot.cgi:480 +#: boot.cgi:475 msgid "Boot & Start services" msgstr "Εκκίνηση & Έναρξη υπηρεσιών" -#: boot.cgi:482 +#: boot.cgi:477 msgid "Everything that happens before user login" msgstr "Όλα όσα συμβαίνουν πρίν τη σύνδεση του χρήστη" -#: boot.cgi:485 styles/default/header.html:72 +#: boot.cgi:480 styles/default/header.html:75 msgid "Boot logs" msgstr "Καταγραφές εκκίνησης" -#: boot.cgi:493 styles/default/header.html:68 +#: boot.cgi:488 styles/default/header.html:71 msgid "Boot loader" msgstr "Φορτωτής εκκίνησης (boot loader)" -#: boot.cgi:500 +#: boot.cgi:495 msgid "Configuration files" msgstr "Αρχεία διαμόρφωσης" -#: boot.cgi:503 +#: boot.cgi:498 msgid "Main configuration file:" msgstr "Κύριο αρχείο διαμόρφωσης:" -#: boot.cgi:505 +#: boot.cgi:500 msgid "Login manager settings:" msgstr "Ρυθμίσεις διαχειριστή εισόδου:" -#: boot.cgi:513 +#: boot.cgi:508 msgid "Kernel cmdline" msgstr "Γραμμή εντολών Πυρήνα" -#: boot.cgi:520 +#: boot.cgi:515 msgid "Local startup commands" msgstr "Τοπικές εντολές κατά την εκκίνηση" -#: hardware.cgi:13 styles/default/header.html:88 +#: hardware.cgi:13 styles/default/header.html:91 msgid "Hardware" msgstr "Υλικό" @@ -792,7 +926,7 @@ msgid "Bus" msgstr "" -#: hardware.cgi:55 hardware.cgi:534 +#: hardware.cgi:55 hardware.cgi:527 msgid "Device" msgstr "" @@ -808,7 +942,7 @@ msgid "Detect PCI and USB hardware" msgstr "Ανίχνευση υλικού PCI και USB" -#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:91 +#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:94 msgid "Kernel modules" msgstr "Αρθρώματα (modules) πυρήνα" @@ -842,11 +976,11 @@ msgid "Module" msgstr "Άρθρωμα" -#: hardware.cgi:178 hardware.cgi:536 lib/libtazpanel:297 +#: hardware.cgi:178 hardware.cgi:529 lib/libtazpanel:312 msgid "Size" msgstr "Μέγεθος" -#: hardware.cgi:179 hardware.cgi:593 lib/libtazpanel:299 +#: hardware.cgi:179 hardware.cgi:586 lib/libtazpanel:314 msgid "Used" msgstr "Σε χρήση" @@ -874,7 +1008,7 @@ msgid "Manage your computer hardware" msgstr "Διαχείριση του υλικού του υπολογιστή σας" -#: hardware.cgi:249 styles/default/header.html:92 +#: hardware.cgi:249 styles/default/header.html:95 msgid "Detect PCI/USB" msgstr "Ανίχνευση PCI/USB" @@ -924,78 +1058,78 @@ msgid "Filesystems table" msgstr "" -#: hardware.cgi:500 lib/libtazpanel:294 +#: hardware.cgi:493 lib/libtazpanel:309 msgid "Disk" msgstr "Δίσκος" -#: hardware.cgi:501 lib/libtazpanel:300 +#: hardware.cgi:494 lib/libtazpanel:315 msgid "Mount point" msgstr "Σημείο προσάρτησης" -#: hardware.cgi:502 lib/libtazpanel:296 +#: hardware.cgi:495 lib/libtazpanel:311 msgid "Type" msgstr "Τύπος" -#: hardware.cgi:503 +#: hardware.cgi:496 #, fuzzy msgid "Options" msgstr "Ενέργεια" -#: hardware.cgi:504 +#: hardware.cgi:497 msgid "Freq" msgstr "" -#: hardware.cgi:505 +#: hardware.cgi:498 #, fuzzy msgid "Pass" msgstr "Κωδικός:" -#: hardware.cgi:527 +#: hardware.cgi:520 msgid "Loop devices" msgstr "" -#: hardware.cgi:535 +#: hardware.cgi:528 #, fuzzy msgid "Backing file" msgstr "Αρχείο ρυθμίσεων" -#: hardware.cgi:537 +#: hardware.cgi:530 msgid "Access" msgstr "" -#: hardware.cgi:538 +#: hardware.cgi:531 msgid "Offset" msgstr "" -#: hardware.cgi:547 +#: hardware.cgi:540 msgid "read/write" msgstr "" -#: hardware.cgi:548 hardware.cgi:573 +#: hardware.cgi:541 hardware.cgi:566 msgid "read only" msgstr "" -#: hardware.cgi:570 +#: hardware.cgi:563 msgid "Setup" msgstr "" -#: hardware.cgi:571 +#: hardware.cgi:564 msgid "new backing file:" msgstr "" -#: hardware.cgi:572 +#: hardware.cgi:565 msgid "offset in bytes:" msgstr "" -#: hardware.cgi:590 +#: hardware.cgi:583 msgid "System memory" msgstr "Μνήμη συστήματος" -#: hardware.cgi:596 +#: hardware.cgi:589 msgid "Buffers" msgstr "" -#: hardware.cgi:599 +#: hardware.cgi:592 msgid "Free" msgstr "" @@ -1003,335 +1137,340 @@ msgid "System settings" msgstr "Ρυθμίσεις συστήματος" -#: settings.cgi:82 settings.cgi:621 settings.cgi:648 settings.cgi:653 +#: settings.cgi:100 settings.cgi:639 settings.cgi:666 settings.cgi:671 msgid "Set date" msgstr "" -#: settings.cgi:208 settings.cgi:595 +#: settings.cgi:226 settings.cgi:613 msgid "Manage groups" msgstr "" -#: settings.cgi:216 settings.cgi:293 +#: settings.cgi:234 settings.cgi:311 msgid "Selection:" msgstr "Επιλογή:" -#: settings.cgi:217 +#: settings.cgi:235 msgid "Delete group" msgstr "" -#: settings.cgi:224 +#: settings.cgi:242 msgid "Group" msgstr "" -#: settings.cgi:225 +#: settings.cgi:243 msgid "Group ID" msgstr "" -#: settings.cgi:226 +#: settings.cgi:244 msgid "Members" msgstr "" -#: settings.cgi:253 +#: settings.cgi:271 msgid "Add a new group" msgstr "" -#: settings.cgi:256 settings.cgi:268 +#: settings.cgi:274 settings.cgi:286 msgid "Group name:" msgstr "" -#: settings.cgi:257 +#: settings.cgi:275 msgid "Create group" msgstr "" -#: settings.cgi:264 +#: settings.cgi:282 msgid "Manage group membership" msgstr "" -#: settings.cgi:269 settings.cgi:356 +#: settings.cgi:287 settings.cgi:374 msgid "User name:" msgstr "" -#: settings.cgi:272 +#: settings.cgi:290 msgid "Add user" msgstr "" -#: settings.cgi:273 +#: settings.cgi:291 msgid "Remove user" msgstr "" -#: settings.cgi:286 settings.cgi:594 +#: settings.cgi:304 settings.cgi:612 msgid "Manage users" msgstr "Διαχείριση χρηστών" -#: settings.cgi:294 +#: settings.cgi:312 msgid "Delete user" msgstr "Διαγραφή χρήστη" -#: settings.cgi:295 +#: settings.cgi:313 msgid "Lock user" msgstr "Κλείδωμα χρήστη" -#: settings.cgi:296 +#: settings.cgi:314 msgid "Unlock user" msgstr "Ξεκλείδωμα χρήστη" -#: settings.cgi:302 +#: settings.cgi:320 msgid "Login" msgstr "Είσοδος" -#: settings.cgi:303 +#: settings.cgi:321 msgid "User ID" msgstr "ID χρήστη" -#: settings.cgi:304 +#: settings.cgi:322 #, fuzzy msgid "User Name" msgstr "ID χρήστη" -#: settings.cgi:305 +#: settings.cgi:323 msgid "Home" msgstr "Σπίτι" -#: settings.cgi:306 +#: settings.cgi:324 msgid "Shell" msgstr "Κέλυφος" -#: settings.cgi:340 +#: settings.cgi:358 msgid "Password:" msgstr "Κωδικός:" -#: settings.cgi:342 +#: settings.cgi:359 +#, fuzzy +msgid "New password" +msgstr "Νέος κωδικός: " + +#: settings.cgi:360 msgid "Change password" msgstr "Αλλαγή κωδικού" -#: settings.cgi:349 +#: settings.cgi:367 msgid "Add a new user" msgstr "Προσθήκη νέου χρήστη" -#: settings.cgi:354 +#: settings.cgi:372 msgid "User login:" msgstr "Όνομα χρήστη:" -#: settings.cgi:358 +#: settings.cgi:376 msgid "User password:" msgstr "Κωδικός χρήστη:" -#: settings.cgi:363 +#: settings.cgi:381 msgid "Create user" msgstr "Δημιουργία χρήστη" -#: settings.cgi:373 +#: settings.cgi:391 msgid "Current user sessions" msgstr "Συνεδρίες τρέχοντος χρήστη" -#: settings.cgi:383 +#: settings.cgi:401 msgid "Last user sessions" msgstr "Συνεδρίες προηγούμενου χρήστη" -#: settings.cgi:395 +#: settings.cgi:413 msgid "Choose locale" msgstr "Επιλογή εντοπιότητας" -#: settings.cgi:398 +#: settings.cgi:416 msgid "Please wait..." msgstr "Παρακαλώ περιμένετε..." -#: settings.cgi:403 +#: settings.cgi:421 msgid "Current locale settings:" msgstr "Τρέχουσες ρυθμίσεις εντοπιότητας:" -#: settings.cgi:410 +#: settings.cgi:428 msgid "Locales that are currently installed on the machine:" msgstr "Ρυθμίσεις εντοπιότητας που είναι εγκατεστημένες στο σύστημα:" -#: settings.cgi:420 +#: settings.cgi:438 msgid "" "Can't see your language?
You can install glibc-locale to see a larger list of available locales." msgstr "" -#: settings.cgi:427 +#: settings.cgi:445 msgid "Available locales:" msgstr "Διαθέσιμες ρυθμίσες εντοπιότητας:" -#: settings.cgi:431 +#: settings.cgi:449 msgid "Code" msgstr "Κωδικός" -#: settings.cgi:432 +#: settings.cgi:450 msgid "Language" msgstr "Γλώσσα" -#: settings.cgi:433 +#: settings.cgi:451 msgid "Territory" msgstr "Περιοχή" -#: settings.cgi:450 settings.cgi:451 +#: settings.cgi:468 settings.cgi:469 msgid "-d" msgstr "-d" -#: settings.cgi:462 settings.cgi:765 settings.cgi:777 settings.cgi:789 +#: settings.cgi:480 settings.cgi:783 settings.cgi:795 settings.cgi:807 msgid "Activate" msgstr "Ενεργοποίηση" -#: settings.cgi:475 settings.cgi:497 +#: settings.cgi:493 settings.cgi:515 msgid "Small quick tweaks for user %s" msgstr "" -#: settings.cgi:500 +#: settings.cgi:518 #, fuzzy msgid "Terminal prompt" msgstr "Τερματικό" -#: settings.cgi:506 +#: settings.cgi:524 msgid "Monochrome" msgstr "" -#: settings.cgi:515 +#: settings.cgi:533 msgid "Colored" msgstr "" -#: settings.cgi:524 settings.cgi:572 +#: settings.cgi:542 settings.cgi:590 #, fuzzy msgid "Manual edit: %s" msgstr "Χειροκίνητη επεξεργασία" -#: settings.cgi:525 +#: settings.cgi:543 msgid "" "To take effect: log out and log in to system or execute command in the " "terminal:" msgstr "" -#: settings.cgi:533 +#: settings.cgi:551 msgid "Menu button appearance" msgstr "" -#: settings.cgi:538 +#: settings.cgi:556 msgid "Icon:" msgstr "" -#: settings.cgi:541 settings.cgi:562 +#: settings.cgi:559 settings.cgi:580 msgid "Do not show" msgstr "" -#: settings.cgi:559 +#: settings.cgi:577 msgid "Text:" msgstr "" -#: settings.cgi:566 +#: settings.cgi:584 msgid "Show text" msgstr "" -#: settings.cgi:589 +#: settings.cgi:607 msgid "Manage system time, users or language settings" msgstr "Διαχείριση ώρας συστήματος, χρηστών και γλωσσικών ρυθμίσεων" -#: settings.cgi:599 +#: settings.cgi:617 msgid "System time" msgstr "Ώρα συστήματος" -#: settings.cgi:602 +#: settings.cgi:620 msgid "Time zone:" msgstr "Ζώνη ώρας:" -#: settings.cgi:611 +#: settings.cgi:629 msgid "System time:" msgstr "Ώρα συστήματος:" -#: settings.cgi:613 +#: settings.cgi:631 msgid "Sync online" msgstr "Συγχρονισμός μέσω δικτύου" -#: settings.cgi:616 +#: settings.cgi:634 msgid "Hardware clock:" msgstr "Ρολόι υπολογιστή:" -#: settings.cgi:618 +#: settings.cgi:636 msgid "Set hardware clock" msgstr "Ορισμός ρολογιού υπολογιστή" -#: settings.cgi:704 +#: settings.cgi:722 msgid "System language" msgstr "Γλώσσα συστήματος" -#: settings.cgi:717 +#: settings.cgi:735 msgid "" "You must logout and login again to your current session to use %s locale." msgstr "" "Πρέπει να αποσυνδεθείτε και να συνδεθείτε πάλι στην τρέχουσα συνεδρία σας " "για να χρησιμοποιήσετε τα %s locale." -#: settings.cgi:720 +#: settings.cgi:738 msgid "Current system locale:" msgstr "Τρέχουσα εντοπιότητα συστήματος:" -#: settings.cgi:732 +#: settings.cgi:750 msgid "Keyboard layout" msgstr "" -#: settings.cgi:746 +#: settings.cgi:764 msgid "Current console keymap: %s" msgstr "Τρέχουσα διάταξη πληκτρολογίου κονσόλας: %s" -#: settings.cgi:764 +#: settings.cgi:782 msgid "Suggested keymap for Xorg:" msgstr "Προτεινόμενη διάταξη πληκτρολογίου για το Xorg:" -#: settings.cgi:773 +#: settings.cgi:791 msgid "Available keymaps:" msgstr "Διαθέσιμες διατάξεις πληκτρολογίου:" -#: settings.cgi:784 +#: settings.cgi:802 msgid "Panel configuration" msgstr "Διαμόρφωση πίνακα" -#: settings.cgi:787 +#: settings.cgi:805 msgid "Style:" msgstr "Στύλ:" -#: settings.cgi:793 +#: settings.cgi:811 msgid "Configuration files:" msgstr "Αρχεία διαμόρφωσης:" -#: settings.cgi:794 styles/default/header.html:42 +#: settings.cgi:812 styles/default/header.html:45 msgid "Panel" msgstr "Πίνακας" -#: settings.cgi:795 +#: settings.cgi:813 msgid "Server" msgstr "Εξυπηρετητής" -#: settings.cgi:798 +#: settings.cgi:816 #, fuzzy msgid "TazPanel provides a debugging mode and page:" msgstr "Το TazPanel παρέχει κατάσταση αποσφαλμάτωσης και σελίδα:" -#: lib/libtazpanel:153 +#: lib/libtazpanel:156 msgid "connected" msgstr "συνδεδεμένο" -#: lib/libtazpanel:170 +#: lib/libtazpanel:173 msgid "IP Address" msgstr "Διεύθυνση IP" -#: lib/libtazpanel:171 +#: lib/libtazpanel:174 msgid "Scan ports" msgstr "Σάρωση θυρών" -#: lib/libtazpanel:243 +#: lib/libtazpanel:249 #, fuzzy msgid "Please wait" msgstr "Παρακαλώ περιμένετε..." -#: lib/libtazpanel:295 +#: lib/libtazpanel:310 msgid "Label" msgstr "Ετικέτα" -#: lib/libtazpanel:298 +#: lib/libtazpanel:313 msgid "Available" msgstr "Διαθέσιμο" -#: lib/libtazpanel:367 +#: lib/libtazpanel:392 msgid "You must be root to show this page." msgstr "" @@ -1343,60 +1482,60 @@ msgid "Help & Doc" msgstr "Βοήθεια & Doc" -#: styles/default/header.html:32 +#: styles/default/header.html:35 #, fuzzy msgid "Confirm break" msgstr "Διαμόρφωση" -#: styles/default/header.html:45 +#: styles/default/header.html:48 msgid "Processes" msgstr "Διεργασίες" -#: styles/default/header.html:47 +#: styles/default/header.html:50 msgid "Create Report" msgstr "Δημιουργία αναφοράς" -#: styles/default/header.html:55 +#: styles/default/header.html:58 msgid "Config file" msgstr "Αρχείο ρυθμίσεων" -#: styles/default/header.html:56 +#: styles/default/header.html:59 msgid "Ethernet" msgstr "Ενσύρματη σύνδεση" -#: styles/default/header.html:57 +#: styles/default/header.html:60 msgid "Wireless" msgstr "Ασύρματη σύνδεση" -#: styles/default/header.html:101 +#: styles/default/header.html:104 msgid "Users" msgstr "Χρήστες" -#: styles/default/header.html:102 +#: styles/default/header.html:105 msgid "Groups" msgstr "" -#: styles/default/header.html:103 +#: styles/default/header.html:106 msgid "Tweaks" msgstr "" -#: styles/default/header.html:119 +#: styles/default/header.html:122 msgid "Some features are disabled." msgstr "" -#: styles/default/header.html:124 +#: styles/default/header.html:127 msgid "You are logged in to the TazPanel as user %s." msgstr "" -#: styles/default/header.html:125 +#: styles/default/header.html:128 msgid "Click to re-login." msgstr "" -#: styles/default/header.html:135 +#: styles/default/header.html:138 msgid "Copyright" msgstr "Πνευματικά Δικαιώματα (Copyright)" -#: styles/default/header.html:137 +#: styles/default/header.html:140 msgid "BSD License" msgstr "Άδεια BSD" @@ -1406,9 +1545,6 @@ #~ msgid "Changing password for TazPanel" #~ msgstr "Αλλαγή κωδικού για TazPanel" -#~ msgid "New password: " -#~ msgstr "Νέος κωδικός: " - #~ msgid "Password changed successfully" #~ msgstr "Ο κωδικός άλλαξε επιτυχώς" @@ -1446,9 +1582,6 @@ #~ msgid "Activate (DHCP)" #~ msgstr "Ενεργοποίηση (DHCP)" -#~ msgid "Disable" -#~ msgstr "Απενεργοποίηση" - #~ msgid "Wifi name (ESSID)" #~ msgstr "Όνομα wifi (ESSID)" diff -r 4f619f973b88 -r 3d4145137792 po/es.po --- a/po/es.po Mon Aug 24 01:05:08 2015 +0300 +++ b/po/es.po Wed Aug 26 05:51:08 2015 +0300 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: TazPanel 1.5.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-12 12:25+0200\n" +"POT-Creation-Date: 2015-08-26 05:27+0300\n" "PO-Revision-Date: 2012-06-11 03:13-0000\n" "Last-Translator: kevin fabian quintero \n" "Language-Team: \n" @@ -15,24 +15,25 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: tazpanel:52 +#: tazpanel:54 msgid "TazPanel is already running." msgstr "" -#: tazpanel:55 +#: tazpanel:57 msgid "Starting TazPanel web server on port %d..." msgstr "Iniciar Tazpanel web server en el puerto %d..." -#: tazpanel:57 +#: tazpanel:59 msgid "TazPanel Authentication - Default: root:root" msgstr "Autenticación TazPanel - Por defecto: root:root" -#: tazpanel:64 +#: tazpanel:66 msgid "TazPanel is not running." msgstr "" -#: tazpanel:67 +#: tazpanel:69 msgid "Stopping TazPanel web server..." msgstr "Parar el servidor web TazPanel..." @@ -52,13 +53,12 @@ msgid "Save" msgstr "Guardar" -#: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670 -#: network.cgi:720 boot.cgi:525 hardware.cgi:492 settings.cgi:766 +#: index.cgi:174 settings.cgi:784 lib/libtazpanel:378 msgid "Edit" msgstr "Editar" -#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:630 -#: styles/default/header.html:46 +#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:679 +#: styles/default/header.html:49 msgid "Terminal" msgstr "Terminal" @@ -67,7 +67,7 @@ msgid "History" msgstr "Territorio" -#: index.cgi:247 lib/libtazpanel:348 +#: index.cgi:247 lib/libtazpanel:361 msgid "Back" msgstr "" @@ -99,7 +99,7 @@ msgid "Please, don't run interactive command \"%s\"" msgstr "" -#: index.cgi:330 styles/default/header.html:98 +#: index.cgi:330 styles/default/header.html:101 msgid "Settings" msgstr "Configuracion" @@ -125,7 +125,7 @@ msgid "Apply" msgstr "" -#: index.cgi:445 index.cgi:631 +#: index.cgi:445 index.cgi:680 msgid "Process activity" msgstr "Actividad de los procesos" @@ -197,99 +197,114 @@ msgid "Getting boot logs..." msgstr "Obteniendo información del paquete..." -#: index.cgi:589 boot.cgi:98 styles/default/header.html:74 +#: index.cgi:589 boot.cgi:93 styles/default/header.html:77 msgid "Kernel messages" msgstr "Mensajes del núcleo" -#: index.cgi:592 boot.cgi:99 styles/default/header.html:75 +#: index.cgi:592 boot.cgi:94 styles/default/header.html:78 msgid "Boot scripts" msgstr "Scripts del boot" #: index.cgi:597 +#, fuzzy +msgid "Getting package list..." +msgstr "Obteniendo información del paquete..." + +#: index.cgi:600 +msgid "Packages" +msgstr "" + +#: index.cgi:638 +#, fuzzy +msgid "Getting extra reports..." +msgstr "Obteniendo información del paquete..." + +#: index.cgi:646 msgid "Creating report footer..." msgstr "Creando el paquete..." -#: index.cgi:608 index.cgi:704 boot.cgi:504 boot.cgi:506 +#: index.cgi:657 index.cgi:753 boot.cgi:499 boot.cgi:501 msgid "View" msgstr "" -#: index.cgi:613 +#: index.cgi:662 msgid "This report can be attached with a bug report on:" msgstr "Este reporte puede ser agregado con uno de bugs en:" -#: index.cgi:623 +#: index.cgi:672 msgid "SliTaz administration and configuration Panel" msgstr "SliTaz Administración y configuración del Panel" -#: index.cgi:632 +#: index.cgi:681 msgid "Create a report" msgstr "Crear un reporte" -#: index.cgi:636 styles/default/header.html:44 styles/default/header.html:54 -#: styles/default/header.html:64 styles/default/header.html:90 -#: styles/default/header.html:100 +#: index.cgi:685 styles/default/header.html:47 styles/default/header.html:57 +#: styles/default/header.html:67 styles/default/header.html:93 +#: styles/default/header.html:103 msgid "Summary" msgstr "Sumario" -#: index.cgi:638 +#: index.cgi:687 hosts.cgi:203 #, fuzzy msgid "Host:" msgstr "Hosts" -#: index.cgi:639 +#: index.cgi:688 msgid "Uptime:" msgstr "Tiempo encendido:" -#: index.cgi:642 +#: index.cgi:691 msgid "Memory in Mb:" msgstr "Memoria en Mb:" -#: index.cgi:644 +#: index.cgi:693 msgid "Total: %d, Used: %d, Free: %d" msgstr "Total: %d, Usad: %d, Libre: %d" -#: index.cgi:648 +#: index.cgi:697 msgid "Linux kernel:" msgstr "Kernel Linux:" -#: index.cgi:657 +#: index.cgi:706 #, fuzzy msgid "Network status" msgstr "Estado de red" -#: index.cgi:659 network.cgi:15 network.cgi:215 styles/default/header.html:52 +#: index.cgi:708 network.cgi:15 network.cgi:216 hosts.cgi:15 +#: styles/default/header.html:55 msgid "Network" msgstr "Red" -#: index.cgi:668 hardware.cgi:349 +#: index.cgi:717 hardware.cgi:349 msgid "Filesystem usage statistics" msgstr "Archivo de estadísticas de uso del sistema" -#: index.cgi:670 styles/default/header.html:93 +#: index.cgi:719 styles/default/header.html:96 msgid "Disks" msgstr "" -#: index.cgi:702 +#: index.cgi:751 msgid "Panel Activity" msgstr "Panel Actividad" -#: network.cgi:152 +#: network.cgi:153 msgid "Changed hostname: %s" msgstr "Cambiado el nombre de host: %s" -#: network.cgi:209 +#: network.cgi:210 msgid "Scanning open ports..." msgstr "Escaneando puertos abiertos..." -#: network.cgi:214 +#: network.cgi:215 msgid "Port scanning for %s" msgstr "Escaneo de puertos %s" -#: network.cgi:225 +#: network.cgi:226 msgid "Ethernet connection" msgstr "Conexión Ethernet" -#: network.cgi:243 +#: network.cgi:244 msgid "" "Here you can configure a wired connection using DHCP to automatically get a " "random IP or configure a static/fixed IP" @@ -298,80 +313,80 @@ "obtener automáticamente una dirección IP al azar o configurar una dirección " "IP estática / fija" -#: network.cgi:247 boot.cgi:149 +#: network.cgi:248 boot.cgi:144 msgid "Configuration" msgstr "Configuración" -#: network.cgi:253 lib/libtazpanel:167 +#: network.cgi:254 lib/libtazpanel:170 msgid "Interface" msgstr "Interface" -#: network.cgi:261 +#: network.cgi:262 msgid "Static IP" msgstr "" -#: network.cgi:263 +#: network.cgi:264 msgid "Use static IP" msgstr "" -#: network.cgi:265 +#: network.cgi:266 msgid "IP address" msgstr "Dirección IP" -#: network.cgi:268 +#: network.cgi:269 msgid "Netmask" msgstr "Máscara de red" -#: network.cgi:271 +#: network.cgi:272 msgid "Gateway" msgstr "Puerta de enlace" -#: network.cgi:274 +#: network.cgi:275 msgid "DNS server" msgstr "Servidor DNS" -#: network.cgi:277 network.cgi:297 +#: network.cgi:278 network.cgi:298 msgid "Wake up" msgstr "" -#: network.cgi:279 +#: network.cgi:280 msgid "Wake up machines by network" msgstr "" -#: network.cgi:281 +#: network.cgi:282 msgid "MAC address to wake up" msgstr "" -#: network.cgi:282 network.cgi:287 +#: network.cgi:283 network.cgi:288 msgid "Leave empty for a general wakeup" msgstr "" -#: network.cgi:283 +#: network.cgi:284 msgid "List" msgstr "" -#: network.cgi:286 +#: network.cgi:287 #, fuzzy msgid "MAC/IP address password" msgstr "Cambiar contraseña" -#: network.cgi:288 +#: network.cgi:289 msgid "Help" msgstr "" -#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:289 +#: network.cgi:296 network.cgi:446 network.cgi:639 boot.cgi:284 msgid "Start" msgstr "Comenzar" -#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:278 +#: network.cgi:297 network.cgi:447 network.cgi:640 boot.cgi:273 msgid "Stop" msgstr "Parar" -#: network.cgi:321 network.cgi:591 +#: network.cgi:322 network.cgi:602 msgid "Configuration file" msgstr "Fila de configuración" -#: network.cgi:331 +#: network.cgi:327 msgid "" "These values are the ethernet settings in the main /etc/network.conf " "configuration file" @@ -379,103 +394,112 @@ "Estos valores son los valores de Ethernet en el archivo principal de /etc/" "network.conf de configuración" -#: network.cgi:343 +#: network.cgi:339 msgid "(hidden)" msgstr "" -#: network.cgi:349 boot.cgi:147 hardware.cgi:57 lib/libtazpanel:168 +#: network.cgi:345 hosts.cgi:219 boot.cgi:142 hardware.cgi:57 +#: lib/libtazpanel:171 msgid "Name" msgstr "Nombre" -#: network.cgi:350 +#: network.cgi:346 msgid "Signal level" msgstr "" -#: network.cgi:351 +#: network.cgi:347 #, fuzzy msgid "Channel" msgstr "Cambiar" -#: network.cgi:352 +#: network.cgi:348 msgid "Encryption" msgstr "Encriptación" -#: network.cgi:353 boot.cgi:150 lib/libtazpanel:169 +#: network.cgi:349 boot.cgi:145 lib/libtazpanel:172 msgid "Status" msgstr "Estado" -#: network.cgi:404 network.cgi:486 network.cgi:508 +#: network.cgi:400 network.cgi:482 network.cgi:504 msgid "None" msgstr "" -#: network.cgi:410 +#: network.cgi:406 msgid "Connected" msgstr "Conectado" -#: network.cgi:436 +#: network.cgi:432 msgid "Wireless connection" msgstr "Conexión inalambrica" -#: network.cgi:452 lib/libtazpanel:150 +#: network.cgi:448 lib/libtazpanel:153 msgid "Scan" msgstr "Escanear" -#: network.cgi:460 +#: network.cgi:456 msgid "Scanning wireless interface..." msgstr "Escaneando interfaz inalámbrica..." -#: network.cgi:474 +#: network.cgi:470 msgid "Connection" msgstr "Conexión" -#: network.cgi:480 +#: network.cgi:476 #, fuzzy msgid "Network SSID" msgstr "Red" -#: network.cgi:484 +#: network.cgi:480 msgid "Security" msgstr "" -#: network.cgi:495 +#: network.cgi:491 msgid "EAP method" msgstr "" -#: network.cgi:506 +#: network.cgi:502 msgid "Phase 2 authentication" msgstr "" -#: network.cgi:518 +#: network.cgi:514 msgid "CA certificate" msgstr "" -#: network.cgi:523 +#: network.cgi:519 msgid "User certificate" msgstr "" -#: network.cgi:528 +#: network.cgi:524 msgid "Identity" msgstr "" -#: network.cgi:533 +#: network.cgi:529 msgid "Anonymous identity" msgstr "" -#: network.cgi:538 +#: network.cgi:534 #, fuzzy msgid "Password" msgstr "Contraseña:" -#: network.cgi:541 +#: network.cgi:537 #, fuzzy msgid "Show password" msgstr "Nueva contraseña: " -#: network.cgi:582 +#: network.cgi:549 network.cgi:678 msgid "Configure" msgstr "Configuración" -#: network.cgi:601 +#: network.cgi:550 +msgid "Share" +msgstr "" + +#: network.cgi:591 +msgid "Share Wi-Fi network with your friends" +msgstr "" + +#: network.cgi:607 msgid "" "These values are the wifi settings in the main /etc/network.conf " "configuration file" @@ -483,77 +507,187 @@ "Estos valores son los valores de wifi en el archivo de configuración /etc/" "network.conf" -#: network.cgi:607 +#: network.cgi:613 msgid "Output of iwconfig" msgstr "Salida de iwconfig" -#: network.cgi:616 +#: network.cgi:622 msgid "Manage network connections and services" msgstr "Administrar conexiones de red y servicios" -#: network.cgi:635 +#: network.cgi:641 msgid "Restart" msgstr "Comenzar" -#: network.cgi:639 +#: network.cgi:645 msgid "Configuration:" msgstr "Configuración:" -#: network.cgi:647 +#: network.cgi:653 #, fuzzy msgid "Network interfaces" msgstr "Estado de red" -#: network.cgi:654 +#: network.cgi:660 msgid "forward packets between interfaces" msgstr "" -#: network.cgi:656 network.cgi:690 boot.cgi:332 settings.cgi:608 -#: settings.cgi:722 +#: network.cgi:662 network.cgi:693 boot.cgi:327 settings.cgi:626 +#: settings.cgi:740 msgid "Change" msgstr "Cambiar" -#: network.cgi:665 +#: network.cgi:670 hosts.cgi:179 msgid "Hosts" msgstr "Hosts" -#: network.cgi:682 +#: network.cgi:672 +msgid "%d record in the hosts DB" +msgid_plural "%d records in the hosts DB" +msgstr[0] "" +msgstr[1] "" + +#: network.cgi:679 hosts.cgi:16 +msgid "Use hosts file as Ad blocker" +msgstr "" + +#: network.cgi:686 msgid "Hostname" msgstr "Nombre de la máquina" -#: network.cgi:702 +#: network.cgi:705 msgid "Output of ifconfig" msgstr "Salida de ifconfig" -#: network.cgi:708 +#: network.cgi:711 msgid "Routing table" msgstr "Tabla de enrutamiento" -#: network.cgi:715 +#: network.cgi:717 msgid "Domain name resolution" msgstr "Resolución de nombres de dominio" -#: network.cgi:730 +#: network.cgi:723 msgid "ARP table" msgstr "Tabla ARP" -#: network.cgi:750 +#: network.cgi:743 msgid "Proxy" msgstr "" -#: network.cgi:751 +#: network.cgi:744 hosts.cgi:200 hosts.cgi:207 msgid "Add" msgstr "" -#: network.cgi:764 +#: network.cgi:757 msgid "IP Connections" msgstr "Conexiónes IP" -#: network.cgi:774 +#: network.cgi:765 msgid "Firewall" msgstr "" -#: boot.cgi:16 styles/default/header.html:62 +#: network.cgi:766 +msgid "Port knocker" +msgstr "" + +#: hosts.cgi:107 +msgid "Host \"%s\" added to /etc/hosts." +msgstr "" + +#: hosts.cgi:120 +msgid "%d record disabled" +msgid_plural "%d records disabled" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:130 +msgid "Installing the \"%s\"..." +msgstr "" + +#: hosts.cgi:132 hosts.cgi:142 hosts.cgi:152 +msgid "Done" +msgstr "" + +#: hosts.cgi:140 +msgid "Updating the \"%s\"..." +msgstr "" + +#: hosts.cgi:150 +#, fuzzy +msgid "Removing the \"%s\"..." +msgstr "Reportando a: %s" + +#: hosts.cgi:163 +msgid "%d record used for Ad blocking" +msgid_plural "%d records used for Ad blocking" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:169 +msgid "%d record found for \"%s\"" +msgid_plural "%d records found for \"%s\"" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:173 +msgid " (The list is limited to the first 100 entries.)" +msgstr "" + +#: hosts.cgi:194 +#, fuzzy +msgid "Disable selected" +msgstr "Desactivado" + +#: hosts.cgi:213 +#, fuzzy +msgid "Manage lists" +msgstr "Manejar usuarios" + +#: hosts.cgi:214 +msgid "" +"You can use one or more prepared hosts files to block advertisements, " +"malware and other irritants." +msgstr "" + +#: hosts.cgi:220 +msgid "Details" +msgstr "" + +#: hosts.cgi:221 +msgid "Updates" +msgstr "" + +#: hosts.cgi:222 +#, fuzzy +msgid "Actions" +msgstr "Acción" + +#: hosts.cgi:235 +msgid "info" +msgstr "" + +#: hosts.cgi:237 +msgid "Updated monthly" +msgstr "" + +#: hosts.cgi:238 +msgid "Updated regularly" +msgstr "" + +#: hosts.cgi:276 +msgid "Upgrade" +msgstr "" + +#: hosts.cgi:281 +msgid "Remove" +msgstr "" + +#: hosts.cgi:287 +msgid "Install" +msgstr "" + +#: boot.cgi:16 styles/default/header.html:65 msgid "Boot" msgstr "Arranque" @@ -561,228 +695,228 @@ msgid "Show more..." msgstr "Mostrar mas..." -#: boot.cgi:40 boot.cgi:45 boot.cgi:486 styles/default/header.html:80 +#: boot.cgi:40 boot.cgi:45 boot.cgi:481 styles/default/header.html:83 #, fuzzy msgid "System logs" msgstr "Lenguaje del sistema" -#: boot.cgi:95 +#: boot.cgi:90 msgid "Boot log files" msgstr "Registro de archivos de boot" -#: boot.cgi:100 styles/default/header.html:76 +#: boot.cgi:95 styles/default/header.html:79 msgid "X server" msgstr "Servidor X" -#: boot.cgi:101 styles/default/header.html:77 +#: boot.cgi:96 styles/default/header.html:80 msgid "X session" msgstr "" -#: boot.cgi:120 boot.cgi:487 styles/default/header.html:81 +#: boot.cgi:115 boot.cgi:482 styles/default/header.html:84 msgid "Manage daemons" msgstr "Manejar demonios" -#: boot.cgi:123 +#: boot.cgi:118 msgid "Check, start and stop daemons on SliTaz" msgstr "Comprueba, comienza y finaliza demonios en SliTaz" -#: boot.cgi:148 hardware.cgi:177 settings.cgi:434 +#: boot.cgi:143 hardware.cgi:177 settings.cgi:452 msgid "Description" msgstr "Descripción" -#: boot.cgi:151 +#: boot.cgi:146 msgid "Action" msgstr "Acción" -#: boot.cgi:152 +#: boot.cgi:147 msgid "PID" msgstr "PID" -#: boot.cgi:177 +#: boot.cgi:172 msgid "SliTaz Firewall with iptable rules" msgstr "Slitaz firewall con reglas iptable" -#: boot.cgi:179 +#: boot.cgi:174 msgid "Small and fast web server with CGI support" msgstr "Pequeño y rápido servidor web con soporte CGI" -#: boot.cgi:182 +#: boot.cgi:177 msgid "Network time protocol daemon" msgstr "Demonio de protocolo de horario de red" -#: boot.cgi:185 +#: boot.cgi:180 msgid "Anonymous FTP server" msgstr "Servidor ftp anonimo" -#: boot.cgi:188 +#: boot.cgi:183 msgid "Busybox DHCP server" msgstr "Servidor DHCP Busybox" -#: boot.cgi:191 +#: boot.cgi:186 msgid "Linux Kernel log daemon" msgstr "Registro de demonios de Kernel Linux" -#: boot.cgi:194 +#: boot.cgi:189 msgid "Execute scheduled commands" msgstr "Ejecuta comando programados" -#: boot.cgi:197 +#: boot.cgi:192 msgid "Small static DNS server daemon" msgstr "Pequeño demonio estatico de servidor DNS" -#: boot.cgi:200 +#: boot.cgi:195 msgid "Transfer a file on tftp request" msgstr "Transferir un archivo en modo tftp" -#: boot.cgi:203 +#: boot.cgi:198 #, fuzzy msgid "Printer daemon" msgstr "Manejar demonios" -#: boot.cgi:205 +#: boot.cgi:200 msgid "Listen for network connections and launch programs" msgstr "Monitor de conexiones de red y programas lanzadas" -#: boot.cgi:208 +#: boot.cgi:203 msgid "Manage a ZeroConf IPv4 link-local address" msgstr "Administrar una ZeroConf IPv4 dirección local de vínculo" -#: boot.cgi:277 +#: boot.cgi:272 msgid "Started" msgstr "Iniciado" -#: boot.cgi:288 +#: boot.cgi:283 msgid "Stopped" msgstr "Detenido" -#: boot.cgi:314 +#: boot.cgi:309 msgid "GRUB Boot loader" msgstr "Gestor de inicio GRUB" -#: boot.cgi:316 +#: boot.cgi:311 msgid "The first application started when the computer powers on" msgstr "La primera aplicación cuando se enciende el computador" -#: boot.cgi:323 +#: boot.cgi:318 msgid "Default entry:" msgstr "Entrada por defecto:" -#: boot.cgi:325 +#: boot.cgi:320 msgid "Timeout:" msgstr "Tiempo de espera:" -#: boot.cgi:327 +#: boot.cgi:322 msgid "Splash image:" msgstr "Imagen Splash:" -#: boot.cgi:339 +#: boot.cgi:334 msgid "View or edit menu.lst" msgstr "Ver o editar menu.lst" -#: boot.cgi:344 +#: boot.cgi:339 msgid "Boot entries" msgstr "Entradas de arranque" -#: boot.cgi:351 +#: boot.cgi:346 msgid "Entry" msgstr "Entrada" -#: boot.cgi:372 +#: boot.cgi:367 msgid "Web boot is available with gPXE" msgstr "Boot web es disponible con gPXE" -#: boot.cgi:386 boot.cgi:490 styles/default/header.html:83 +#: boot.cgi:381 boot.cgi:485 styles/default/header.html:86 msgid "ISO mine" msgstr "" -#: boot.cgi:388 +#: boot.cgi:383 msgid "Invalid ISO image." msgstr "" -#: boot.cgi:410 +#: boot.cgi:403 msgid "ISO image file full path" msgstr "" -#: boot.cgi:411 +#: boot.cgi:404 msgid "set /dev/cdrom for a physical CD-ROM" msgstr "" -#: boot.cgi:414 +#: boot.cgi:407 msgid "Working directory" msgstr "" -#: boot.cgi:416 +#: boot.cgi:409 msgid "Target partition" msgstr "" -#: boot.cgi:417 +#: boot.cgi:410 msgid "" "For hard disk installation only. Will create /slitaz tree and keep other " "files. No partitioning and no formatting." msgstr "" -#: boot.cgi:420 +#: boot.cgi:413 msgid "Choose a partition (optional)" msgstr "" -#: boot.cgi:431 +#: boot.cgi:424 msgid "USB key device" msgstr "" -#: boot.cgi:432 +#: boot.cgi:425 msgid "For USB boot key only. Will erase the full device." msgstr "" -#: boot.cgi:435 +#: boot.cgi:428 msgid "Choose a USB key (optional)" msgstr "" -#: boot.cgi:454 +#: boot.cgi:449 #, fuzzy msgid "Choose an action" msgstr "Conexión" -#: boot.cgi:467 +#: boot.cgi:462 msgid "Mine" msgstr "" -#: boot.cgi:480 +#: boot.cgi:475 msgid "Boot & Start services" msgstr "Servicios que inician al arranque" -#: boot.cgi:482 +#: boot.cgi:477 msgid "Everything that happens before user login" msgstr "Todo lo que sucede antes de iniciar sesión" -#: boot.cgi:485 styles/default/header.html:72 +#: boot.cgi:480 styles/default/header.html:75 msgid "Boot logs" msgstr "Logs del boot" -#: boot.cgi:493 styles/default/header.html:68 +#: boot.cgi:488 styles/default/header.html:71 msgid "Boot loader" msgstr "Cargador boot" -#: boot.cgi:500 +#: boot.cgi:495 msgid "Configuration files" msgstr "Filas de configuración" -#: boot.cgi:503 +#: boot.cgi:498 msgid "Main configuration file:" msgstr "Archivo de configuración principal:" -#: boot.cgi:505 +#: boot.cgi:500 msgid "Login manager settings:" msgstr "Configuración del administrador de Inicio de sesion:" -#: boot.cgi:513 +#: boot.cgi:508 msgid "Kernel cmdline" msgstr "Líneas de comando del núcleo" -#: boot.cgi:520 +#: boot.cgi:515 msgid "Local startup commands" msgstr "Comandos de inicio" -#: hardware.cgi:13 styles/default/header.html:88 +#: hardware.cgi:13 styles/default/header.html:91 msgid "Hardware" msgstr "Hardware" @@ -790,7 +924,7 @@ msgid "Bus" msgstr "" -#: hardware.cgi:55 hardware.cgi:534 +#: hardware.cgi:55 hardware.cgi:527 msgid "Device" msgstr "" @@ -807,7 +941,7 @@ msgid "Detect PCI and USB hardware" msgstr "Detectar hardware PCI y USB" -#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:91 +#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:94 msgid "Kernel modules" msgstr "Módulos del núcleo" @@ -840,11 +974,11 @@ msgid "Module" msgstr "Módulo" -#: hardware.cgi:178 hardware.cgi:536 lib/libtazpanel:297 +#: hardware.cgi:178 hardware.cgi:529 lib/libtazpanel:312 msgid "Size" msgstr "Tamaño" -#: hardware.cgi:179 hardware.cgi:593 lib/libtazpanel:299 +#: hardware.cgi:179 hardware.cgi:586 lib/libtazpanel:314 msgid "Used" msgstr "Usado" @@ -872,7 +1006,7 @@ msgid "Manage your computer hardware" msgstr "Maneja tu hardware" -#: hardware.cgi:249 styles/default/header.html:92 +#: hardware.cgi:249 styles/default/header.html:95 msgid "Detect PCI/USB" msgstr "Detectar PCI/USB" @@ -923,78 +1057,78 @@ msgid "Filesystems table" msgstr "" -#: hardware.cgi:500 lib/libtazpanel:294 +#: hardware.cgi:493 lib/libtazpanel:309 msgid "Disk" msgstr "Disco" -#: hardware.cgi:501 lib/libtazpanel:300 +#: hardware.cgi:494 lib/libtazpanel:315 msgid "Mount point" msgstr "Punto de montaje" -#: hardware.cgi:502 lib/libtazpanel:296 +#: hardware.cgi:495 lib/libtazpanel:311 msgid "Type" msgstr "Tipo" -#: hardware.cgi:503 +#: hardware.cgi:496 #, fuzzy msgid "Options" msgstr "Acción" -#: hardware.cgi:504 +#: hardware.cgi:497 msgid "Freq" msgstr "" -#: hardware.cgi:505 +#: hardware.cgi:498 #, fuzzy msgid "Pass" msgstr "Contraseña:" -#: hardware.cgi:527 +#: hardware.cgi:520 msgid "Loop devices" msgstr "" -#: hardware.cgi:535 +#: hardware.cgi:528 #, fuzzy msgid "Backing file" msgstr "Archivo de configuración" -#: hardware.cgi:537 +#: hardware.cgi:530 msgid "Access" msgstr "" -#: hardware.cgi:538 +#: hardware.cgi:531 msgid "Offset" msgstr "" -#: hardware.cgi:547 +#: hardware.cgi:540 msgid "read/write" msgstr "" -#: hardware.cgi:548 hardware.cgi:573 +#: hardware.cgi:541 hardware.cgi:566 msgid "read only" msgstr "" -#: hardware.cgi:570 +#: hardware.cgi:563 msgid "Setup" msgstr "" -#: hardware.cgi:571 +#: hardware.cgi:564 msgid "new backing file:" msgstr "" -#: hardware.cgi:572 +#: hardware.cgi:565 msgid "offset in bytes:" msgstr "" -#: hardware.cgi:590 +#: hardware.cgi:583 msgid "System memory" msgstr "Memoria del sistema" -#: hardware.cgi:596 +#: hardware.cgi:589 msgid "Buffers" msgstr "" -#: hardware.cgi:599 +#: hardware.cgi:592 msgid "Free" msgstr "" @@ -1002,334 +1136,339 @@ msgid "System settings" msgstr "Configuraciónes del sistema" -#: settings.cgi:82 settings.cgi:621 settings.cgi:648 settings.cgi:653 +#: settings.cgi:100 settings.cgi:639 settings.cgi:666 settings.cgi:671 msgid "Set date" msgstr "" -#: settings.cgi:208 settings.cgi:595 +#: settings.cgi:226 settings.cgi:613 msgid "Manage groups" msgstr "" -#: settings.cgi:216 settings.cgi:293 +#: settings.cgi:234 settings.cgi:311 msgid "Selection:" msgstr "Selección:" -#: settings.cgi:217 +#: settings.cgi:235 msgid "Delete group" msgstr "" -#: settings.cgi:224 +#: settings.cgi:242 msgid "Group" msgstr "" -#: settings.cgi:225 +#: settings.cgi:243 msgid "Group ID" msgstr "" -#: settings.cgi:226 +#: settings.cgi:244 msgid "Members" msgstr "" -#: settings.cgi:253 +#: settings.cgi:271 msgid "Add a new group" msgstr "" -#: settings.cgi:256 settings.cgi:268 +#: settings.cgi:274 settings.cgi:286 msgid "Group name:" msgstr "" -#: settings.cgi:257 +#: settings.cgi:275 msgid "Create group" msgstr "" -#: settings.cgi:264 +#: settings.cgi:282 msgid "Manage group membership" msgstr "" -#: settings.cgi:269 settings.cgi:356 +#: settings.cgi:287 settings.cgi:374 msgid "User name:" msgstr "" -#: settings.cgi:272 +#: settings.cgi:290 msgid "Add user" msgstr "" -#: settings.cgi:273 +#: settings.cgi:291 msgid "Remove user" msgstr "" -#: settings.cgi:286 settings.cgi:594 +#: settings.cgi:304 settings.cgi:612 msgid "Manage users" msgstr "Manejar usuarios" -#: settings.cgi:294 +#: settings.cgi:312 msgid "Delete user" msgstr "Borrar usuario" -#: settings.cgi:295 +#: settings.cgi:313 msgid "Lock user" msgstr "Bloquear usuario" -#: settings.cgi:296 +#: settings.cgi:314 msgid "Unlock user" msgstr "Desbloquear usuario" -#: settings.cgi:302 +#: settings.cgi:320 msgid "Login" msgstr "Inicio de sesion" -#: settings.cgi:303 +#: settings.cgi:321 msgid "User ID" msgstr "ID del usuario" -#: settings.cgi:304 +#: settings.cgi:322 #, fuzzy msgid "User Name" msgstr "ID del usuario" -#: settings.cgi:305 +#: settings.cgi:323 msgid "Home" msgstr "Home" -#: settings.cgi:306 +#: settings.cgi:324 msgid "Shell" msgstr "Shell" -#: settings.cgi:340 +#: settings.cgi:358 msgid "Password:" msgstr "Contraseña:" -#: settings.cgi:342 +#: settings.cgi:359 +#, fuzzy +msgid "New password" +msgstr "Nueva contraseña: " + +#: settings.cgi:360 msgid "Change password" msgstr "Cambiar contraseña" -#: settings.cgi:349 +#: settings.cgi:367 msgid "Add a new user" msgstr "Agregar un nuevo usuario" -#: settings.cgi:354 +#: settings.cgi:372 msgid "User login:" msgstr "Usuario Inicio de sesion:" -#: settings.cgi:358 +#: settings.cgi:376 msgid "User password:" msgstr "Contraseña de usuario:" -#: settings.cgi:363 +#: settings.cgi:381 msgid "Create user" msgstr "Crear usuario" -#: settings.cgi:373 +#: settings.cgi:391 msgid "Current user sessions" msgstr "Sesiones actuales del usuario" -#: settings.cgi:383 +#: settings.cgi:401 msgid "Last user sessions" msgstr "Últimas sesiones de usuarios" -#: settings.cgi:395 +#: settings.cgi:413 msgid "Choose locale" msgstr "Elija region" -#: settings.cgi:398 +#: settings.cgi:416 msgid "Please wait..." msgstr "Por favor espere..." -#: settings.cgi:403 +#: settings.cgi:421 msgid "Current locale settings:" msgstr "La configuración regional actual:" -#: settings.cgi:410 +#: settings.cgi:428 msgid "Locales that are currently installed on the machine:" msgstr "Regiones instaladas actualmente en la maquina:" -#: settings.cgi:420 +#: settings.cgi:438 msgid "" "Can't see your language?
You can install glibc-locale to see a larger list of available locales." msgstr "" -#: settings.cgi:427 +#: settings.cgi:445 msgid "Available locales:" msgstr "Regiones disponibles:" -#: settings.cgi:431 +#: settings.cgi:449 msgid "Code" msgstr "Codigo" -#: settings.cgi:432 +#: settings.cgi:450 msgid "Language" msgstr "Lenguaje" -#: settings.cgi:433 +#: settings.cgi:451 msgid "Territory" msgstr "Territorio" -#: settings.cgi:450 settings.cgi:451 +#: settings.cgi:468 settings.cgi:469 msgid "-d" msgstr "-d" -#: settings.cgi:462 settings.cgi:765 settings.cgi:777 settings.cgi:789 +#: settings.cgi:480 settings.cgi:783 settings.cgi:795 settings.cgi:807 msgid "Activate" msgstr "Activado" -#: settings.cgi:475 settings.cgi:497 +#: settings.cgi:493 settings.cgi:515 msgid "Small quick tweaks for user %s" msgstr "" -#: settings.cgi:500 +#: settings.cgi:518 #, fuzzy msgid "Terminal prompt" msgstr "Terminal" -#: settings.cgi:506 +#: settings.cgi:524 msgid "Monochrome" msgstr "" -#: settings.cgi:515 +#: settings.cgi:533 msgid "Colored" msgstr "" -#: settings.cgi:524 settings.cgi:572 +#: settings.cgi:542 settings.cgi:590 #, fuzzy msgid "Manual edit: %s" msgstr "Editar manualmente" -#: settings.cgi:525 +#: settings.cgi:543 msgid "" "To take effect: log out and log in to system or execute command in the " "terminal:" msgstr "" -#: settings.cgi:533 +#: settings.cgi:551 msgid "Menu button appearance" msgstr "" -#: settings.cgi:538 +#: settings.cgi:556 msgid "Icon:" msgstr "" -#: settings.cgi:541 settings.cgi:562 +#: settings.cgi:559 settings.cgi:580 msgid "Do not show" msgstr "" -#: settings.cgi:559 +#: settings.cgi:577 msgid "Text:" msgstr "" -#: settings.cgi:566 +#: settings.cgi:584 msgid "Show text" msgstr "" -#: settings.cgi:589 +#: settings.cgi:607 msgid "Manage system time, users or language settings" msgstr "" "Administrar el tiempo del sistema, los usuarios o la configuración de idioma" -#: settings.cgi:599 +#: settings.cgi:617 msgid "System time" msgstr "Hora del sistema" -#: settings.cgi:602 +#: settings.cgi:620 msgid "Time zone:" msgstr "Zona Horaria:" -#: settings.cgi:611 +#: settings.cgi:629 msgid "System time:" msgstr "Hora del sistema:" -#: settings.cgi:613 +#: settings.cgi:631 msgid "Sync online" msgstr "Sincronizar en línea" -#: settings.cgi:616 +#: settings.cgi:634 msgid "Hardware clock:" msgstr "Reloj hardware:" -#: settings.cgi:618 +#: settings.cgi:636 msgid "Set hardware clock" msgstr "Configurar el reloj hardware" -#: settings.cgi:704 +#: settings.cgi:722 msgid "System language" msgstr "Lenguaje del sistema" -#: settings.cgi:717 +#: settings.cgi:735 msgid "" "You must logout and login again to your current session to use %s locale." msgstr "Usted debe iniciar sesion de nuevo para usar %s locale." -#: settings.cgi:720 +#: settings.cgi:738 msgid "Current system locale:" msgstr "Configuración regional del sistema actual:" -#: settings.cgi:732 +#: settings.cgi:750 msgid "Keyboard layout" msgstr "" -#: settings.cgi:746 +#: settings.cgi:764 msgid "Current console keymap: %s" msgstr "Actual mapa de teclado de la consola: %s" -#: settings.cgi:764 +#: settings.cgi:782 msgid "Suggested keymap for Xorg:" msgstr "Mapa de teclado sugerido para Xorg:" -#: settings.cgi:773 +#: settings.cgi:791 msgid "Available keymaps:" msgstr "Mapas de teclado disponibles:" -#: settings.cgi:784 +#: settings.cgi:802 msgid "Panel configuration" msgstr "Configuración del panel" -#: settings.cgi:787 +#: settings.cgi:805 msgid "Style:" msgstr "Estilo:" -#: settings.cgi:793 +#: settings.cgi:811 msgid "Configuration files:" msgstr "Archivos de configuración:" -#: settings.cgi:794 styles/default/header.html:42 +#: settings.cgi:812 styles/default/header.html:45 msgid "Panel" msgstr "Panel" -#: settings.cgi:795 +#: settings.cgi:813 msgid "Server" msgstr "Servidor" -#: settings.cgi:798 +#: settings.cgi:816 #, fuzzy msgid "TazPanel provides a debugging mode and page:" msgstr "TazPanel proporciona un modo de depuración y una página:" -#: lib/libtazpanel:153 +#: lib/libtazpanel:156 msgid "connected" msgstr "conectado" -#: lib/libtazpanel:170 +#: lib/libtazpanel:173 msgid "IP Address" msgstr "Dirección IP" -#: lib/libtazpanel:171 +#: lib/libtazpanel:174 msgid "Scan ports" msgstr "Escanear puertos" -#: lib/libtazpanel:243 +#: lib/libtazpanel:249 #, fuzzy msgid "Please wait" msgstr "Por favor espere..." -#: lib/libtazpanel:295 +#: lib/libtazpanel:310 msgid "Label" msgstr "Etiqueta" -#: lib/libtazpanel:298 +#: lib/libtazpanel:313 msgid "Available" msgstr "Disponible" -#: lib/libtazpanel:367 +#: lib/libtazpanel:392 msgid "You must be root to show this page." msgstr "" @@ -1341,60 +1480,60 @@ msgid "Help & Doc" msgstr "Ayuda & Documentacion" -#: styles/default/header.html:32 +#: styles/default/header.html:35 #, fuzzy msgid "Confirm break" msgstr "Configuración" -#: styles/default/header.html:45 +#: styles/default/header.html:48 msgid "Processes" msgstr "Procesos" -#: styles/default/header.html:47 +#: styles/default/header.html:50 msgid "Create Report" msgstr "Crear un Reporte" -#: styles/default/header.html:55 +#: styles/default/header.html:58 msgid "Config file" msgstr "Archivo de configuración" -#: styles/default/header.html:56 +#: styles/default/header.html:59 msgid "Ethernet" msgstr "Ethernet" -#: styles/default/header.html:57 +#: styles/default/header.html:60 msgid "Wireless" msgstr "Inalámbrica" -#: styles/default/header.html:101 +#: styles/default/header.html:104 msgid "Users" msgstr "Usuarios" -#: styles/default/header.html:102 +#: styles/default/header.html:105 msgid "Groups" msgstr "" -#: styles/default/header.html:103 +#: styles/default/header.html:106 msgid "Tweaks" msgstr "" -#: styles/default/header.html:119 +#: styles/default/header.html:122 msgid "Some features are disabled." msgstr "" -#: styles/default/header.html:124 +#: styles/default/header.html:127 msgid "You are logged in to the TazPanel as user %s." msgstr "" -#: styles/default/header.html:125 +#: styles/default/header.html:128 msgid "Click to re-login." msgstr "" -#: styles/default/header.html:135 +#: styles/default/header.html:138 msgid "Copyright" msgstr "Derechos de autor" -#: styles/default/header.html:137 +#: styles/default/header.html:140 msgid "BSD License" msgstr "Licencia BSD" @@ -1404,9 +1543,6 @@ #~ msgid "Changing password for TazPanel" #~ msgstr "Cambiando contraseña para TazPanel" -#~ msgid "New password: " -#~ msgstr "Nueva contraseña: " - #~ msgid "Password changed successfully" #~ msgstr "Contraseña cambiada exitosamente" @@ -1444,9 +1580,6 @@ #~ msgid "Activate (DHCP)" #~ msgstr "Activar (DHCP)" -#~ msgid "Disable" -#~ msgstr "Desactivado" - #~ msgid "Wifi name (ESSID)" #~ msgstr "Red Wifi (ESSID)" diff -r 4f619f973b88 -r 3d4145137792 po/fr.po --- a/po/fr.po Mon Aug 24 01:05:08 2015 +0300 +++ b/po/fr.po Wed Aug 26 05:51:08 2015 +0300 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: TazPanel 1.5.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-12 12:25+0200\n" +"POT-Creation-Date: 2015-08-26 05:27+0300\n" "PO-Revision-Date: 2012-12-20 10:15+0100\n" "Last-Translator: Stanislas Leduc \n" "Language-Team: French\n" @@ -18,23 +18,23 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: tazpanel:52 +#: tazpanel:54 msgid "TazPanel is already running." msgstr "TazPanel est déjà actif." -#: tazpanel:55 +#: tazpanel:57 msgid "Starting TazPanel web server on port %d..." msgstr "Lancement du serveur TazPanel sur le port %d..." -#: tazpanel:57 +#: tazpanel:59 msgid "TazPanel Authentication - Default: root:root" msgstr "TazPanel Authentification - Defaut : root:root" -#: tazpanel:64 +#: tazpanel:66 msgid "TazPanel is not running." msgstr "TazPanel n'est pas actif." -#: tazpanel:67 +#: tazpanel:69 msgid "Stopping TazPanel web server..." msgstr "Arrêt du serveur web TazPanel..." @@ -54,13 +54,12 @@ msgid "Save" msgstr "Enregistrer" -#: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670 -#: network.cgi:720 boot.cgi:525 hardware.cgi:492 settings.cgi:766 +#: index.cgi:174 settings.cgi:784 lib/libtazpanel:378 msgid "Edit" msgstr "Éditer" -#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:630 -#: styles/default/header.html:46 +#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:679 +#: styles/default/header.html:49 msgid "Terminal" msgstr "Terminal" @@ -68,7 +67,7 @@ msgid "History" msgstr "Historique" -#: index.cgi:247 lib/libtazpanel:348 +#: index.cgi:247 lib/libtazpanel:361 msgid "Back" msgstr "Retour" @@ -100,7 +99,7 @@ msgid "Please, don't run interactive command \"%s\"" msgstr "Veuillez ne pas lancer de commande interactive \"%s\"" -#: index.cgi:330 styles/default/header.html:98 +#: index.cgi:330 styles/default/header.html:101 msgid "Settings" msgstr "Paramètres" @@ -126,7 +125,7 @@ msgid "Apply" msgstr "Appliquer" -#: index.cgi:445 index.cgi:631 +#: index.cgi:445 index.cgi:680 msgid "Process activity" msgstr "Activité des processus" @@ -198,99 +197,114 @@ msgid "Getting boot logs..." msgstr "Collecte des journaux de démarrage..." -#: index.cgi:589 boot.cgi:98 styles/default/header.html:74 +#: index.cgi:589 boot.cgi:93 styles/default/header.html:77 msgid "Kernel messages" msgstr "Messages du noyau" -#: index.cgi:592 boot.cgi:99 styles/default/header.html:75 +#: index.cgi:592 boot.cgi:94 styles/default/header.html:78 msgid "Boot scripts" msgstr "Scripts de démarrage" #: index.cgi:597 +#, fuzzy +msgid "Getting package list..." +msgstr "Collecte d'informations sur le matériel..." + +#: index.cgi:600 +msgid "Packages" +msgstr "" + +#: index.cgi:638 +#, fuzzy +msgid "Getting extra reports..." +msgstr "Collecte des journaux de démarrage..." + +#: index.cgi:646 msgid "Creating report footer..." msgstr "Création du pied de page du rapport..." -#: index.cgi:608 index.cgi:704 boot.cgi:504 boot.cgi:506 +#: index.cgi:657 index.cgi:753 boot.cgi:499 boot.cgi:501 msgid "View" msgstr "Voir" -#: index.cgi:613 +#: index.cgi:662 msgid "This report can be attached with a bug report on:" msgstr "Ce rapport peut être attaché avec un rapport de bogue sur :" -#: index.cgi:623 +#: index.cgi:672 msgid "SliTaz administration and configuration Panel" msgstr "Panneau de Configuration et d'Administration de SliTaz" -#: index.cgi:632 +#: index.cgi:681 msgid "Create a report" msgstr "Créer un rapport" -#: index.cgi:636 styles/default/header.html:44 styles/default/header.html:54 -#: styles/default/header.html:64 styles/default/header.html:90 -#: styles/default/header.html:100 +#: index.cgi:685 styles/default/header.html:47 styles/default/header.html:57 +#: styles/default/header.html:67 styles/default/header.html:93 +#: styles/default/header.html:103 msgid "Summary" msgstr "Résumé" -#: index.cgi:638 +#: index.cgi:687 hosts.cgi:203 #, fuzzy msgid "Host:" msgstr "Hôtes" -#: index.cgi:639 +#: index.cgi:688 msgid "Uptime:" msgstr "Allumé depuis :" -#: index.cgi:642 +#: index.cgi:691 msgid "Memory in Mb:" msgstr "Mémoire en Mb :" -#: index.cgi:644 +#: index.cgi:693 msgid "Total: %d, Used: %d, Free: %d" msgstr "Total : %d, Utilisé : %d, Disponible : %d" -#: index.cgi:648 +#: index.cgi:697 msgid "Linux kernel:" msgstr "Noyau Linux :" -#: index.cgi:657 +#: index.cgi:706 #, fuzzy msgid "Network status" msgstr "Interfaces réseau" -#: index.cgi:659 network.cgi:15 network.cgi:215 styles/default/header.html:52 +#: index.cgi:708 network.cgi:15 network.cgi:216 hosts.cgi:15 +#: styles/default/header.html:55 msgid "Network" msgstr "Réseau" -#: index.cgi:668 hardware.cgi:349 +#: index.cgi:717 hardware.cgi:349 msgid "Filesystem usage statistics" msgstr "Utilisation des systèmes de fichiers" -#: index.cgi:670 styles/default/header.html:93 +#: index.cgi:719 styles/default/header.html:96 msgid "Disks" msgstr "Disques" -#: index.cgi:702 +#: index.cgi:751 msgid "Panel Activity" msgstr "Dernières actions" -#: network.cgi:152 +#: network.cgi:153 msgid "Changed hostname: %s" msgstr "Nouveau hostname: %s" -#: network.cgi:209 +#: network.cgi:210 msgid "Scanning open ports..." msgstr "Balayage des ports ouverts..." -#: network.cgi:214 +#: network.cgi:215 msgid "Port scanning for %s" msgstr "Scanning du port %s" -#: network.cgi:225 +#: network.cgi:226 msgid "Ethernet connection" msgstr "Connexion réseau" -#: network.cgi:243 +#: network.cgi:244 msgid "" "Here you can configure a wired connection using DHCP to automatically get a " "random IP or configure a static/fixed IP" @@ -299,80 +313,80 @@ "DHCP pour obtenir automatiquement une adresse IP aléatoire ou configurer une " "adresse IP statique / fixe" -#: network.cgi:247 boot.cgi:149 +#: network.cgi:248 boot.cgi:144 msgid "Configuration" msgstr "Configuration" -#: network.cgi:253 lib/libtazpanel:167 +#: network.cgi:254 lib/libtazpanel:170 msgid "Interface" msgstr "Interface" -#: network.cgi:261 +#: network.cgi:262 msgid "Static IP" msgstr "IP statique" -#: network.cgi:263 +#: network.cgi:264 msgid "Use static IP" msgstr "Utiliser une IP statique" -#: network.cgi:265 +#: network.cgi:266 msgid "IP address" msgstr "Adresse IP" -#: network.cgi:268 +#: network.cgi:269 msgid "Netmask" msgstr "Masque de sous-réseau" -#: network.cgi:271 +#: network.cgi:272 msgid "Gateway" msgstr "Passerelle" -#: network.cgi:274 +#: network.cgi:275 msgid "DNS server" msgstr "Serveur DNS" -#: network.cgi:277 network.cgi:297 +#: network.cgi:278 network.cgi:298 msgid "Wake up" msgstr "Réveiller" -#: network.cgi:279 +#: network.cgi:280 msgid "Wake up machines by network" msgstr "Réveiller des machines par le réseau" -#: network.cgi:281 +#: network.cgi:282 msgid "MAC address to wake up" msgstr "Adresse MAC à réveiller" -#: network.cgi:282 network.cgi:287 +#: network.cgi:283 network.cgi:288 msgid "Leave empty for a general wakeup" msgstr "Laissez vide pour un reveil général" -#: network.cgi:283 +#: network.cgi:284 msgid "List" msgstr "Liste" -#: network.cgi:286 +#: network.cgi:287 #, fuzzy msgid "MAC/IP address password" msgstr "Changer le mot de passe" -#: network.cgi:288 +#: network.cgi:289 msgid "Help" msgstr "Aide" -#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:289 +#: network.cgi:296 network.cgi:446 network.cgi:639 boot.cgi:284 msgid "Start" msgstr "Démarrer" -#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:278 +#: network.cgi:297 network.cgi:447 network.cgi:640 boot.cgi:273 msgid "Stop" msgstr "Arrêter" -#: network.cgi:321 network.cgi:591 +#: network.cgi:322 network.cgi:602 msgid "Configuration file" msgstr "Fichier de configuration" -#: network.cgi:331 +#: network.cgi:327 msgid "" "These values are the ethernet settings in the main /etc/network.conf " "configuration file" @@ -380,99 +394,108 @@ "Ces valeurs sont celles des paramètres Ethernet dans le fichier de " "configuration principal /etc/network.conf" -#: network.cgi:343 +#: network.cgi:339 msgid "(hidden)" msgstr "(caché)" -#: network.cgi:349 boot.cgi:147 hardware.cgi:57 lib/libtazpanel:168 +#: network.cgi:345 hosts.cgi:219 boot.cgi:142 hardware.cgi:57 +#: lib/libtazpanel:171 msgid "Name" msgstr "Nom" -#: network.cgi:350 +#: network.cgi:346 msgid "Signal level" msgstr "Puissance du signal" -#: network.cgi:351 +#: network.cgi:347 msgid "Channel" msgstr "Canal" -#: network.cgi:352 +#: network.cgi:348 msgid "Encryption" msgstr "Chiffrement" -#: network.cgi:353 boot.cgi:150 lib/libtazpanel:169 +#: network.cgi:349 boot.cgi:145 lib/libtazpanel:172 msgid "Status" msgstr "État" -#: network.cgi:404 network.cgi:486 network.cgi:508 +#: network.cgi:400 network.cgi:482 network.cgi:504 msgid "None" msgstr "Sans" -#: network.cgi:410 +#: network.cgi:406 msgid "Connected" msgstr "Connecté" -#: network.cgi:436 +#: network.cgi:432 msgid "Wireless connection" msgstr "Connection sans fil" -#: network.cgi:452 lib/libtazpanel:150 +#: network.cgi:448 lib/libtazpanel:153 msgid "Scan" msgstr "Scanner" -#: network.cgi:460 +#: network.cgi:456 msgid "Scanning wireless interface..." msgstr "Scan des interfaces sans-fil..." -#: network.cgi:474 +#: network.cgi:470 msgid "Connection" msgstr "Connexion" -#: network.cgi:480 +#: network.cgi:476 msgid "Network SSID" msgstr "SSID réseau" -#: network.cgi:484 +#: network.cgi:480 msgid "Security" msgstr "Sécurité" -#: network.cgi:495 +#: network.cgi:491 msgid "EAP method" msgstr "méthode EAP" -#: network.cgi:506 +#: network.cgi:502 msgid "Phase 2 authentication" msgstr "Authentification pour la phase 2" -#: network.cgi:518 +#: network.cgi:514 msgid "CA certificate" msgstr "Certificat CA" -#: network.cgi:523 +#: network.cgi:519 msgid "User certificate" msgstr "Cartificat utilisateur" -#: network.cgi:528 +#: network.cgi:524 msgid "Identity" msgstr "Identité" -#: network.cgi:533 +#: network.cgi:529 msgid "Anonymous identity" msgstr "Identité anonyme" -#: network.cgi:538 +#: network.cgi:534 msgid "Password" msgstr "Mot de passe" -#: network.cgi:541 +#: network.cgi:537 msgid "Show password" msgstr "Affiche le mot de passe" -#: network.cgi:582 +#: network.cgi:549 network.cgi:678 msgid "Configure" msgstr "Configurer" -#: network.cgi:601 +#: network.cgi:550 +msgid "Share" +msgstr "" + +#: network.cgi:591 +msgid "Share Wi-Fi network with your friends" +msgstr "" + +#: network.cgi:607 msgid "" "These values are the wifi settings in the main /etc/network.conf " "configuration file" @@ -480,77 +503,188 @@ "Ces valeurs sont celles des paramètres wifi dans le fichier de configuration " "principal /etc/network.conf" -#: network.cgi:607 +#: network.cgi:613 msgid "Output of iwconfig" msgstr "Sortie de la commande iwconfig" -#: network.cgi:616 +#: network.cgi:622 msgid "Manage network connections and services" msgstr "Gérer les connexions réseau et les services" -#: network.cgi:635 +#: network.cgi:641 msgid "Restart" msgstr "Redémarrer" -#: network.cgi:639 +#: network.cgi:645 msgid "Configuration:" msgstr "Configuration :" -#: network.cgi:647 +#: network.cgi:653 msgid "Network interfaces" msgstr "Interfaces réseau" -#: network.cgi:654 +#: network.cgi:660 msgid "forward packets between interfaces" msgstr "Echange de paquets entre interfaces" -#: network.cgi:656 network.cgi:690 boot.cgi:332 settings.cgi:608 -#: settings.cgi:722 +#: network.cgi:662 network.cgi:693 boot.cgi:327 settings.cgi:626 +#: settings.cgi:740 msgid "Change" msgstr "Changer" -#: network.cgi:665 +#: network.cgi:670 hosts.cgi:179 msgid "Hosts" msgstr "Hôtes" -#: network.cgi:682 +#: network.cgi:672 +msgid "%d record in the hosts DB" +msgid_plural "%d records in the hosts DB" +msgstr[0] "" +msgstr[1] "" + +#: network.cgi:679 hosts.cgi:16 +msgid "Use hosts file as Ad blocker" +msgstr "" + +#: network.cgi:686 msgid "Hostname" msgstr "Nom de l'hôte" -#: network.cgi:702 +#: network.cgi:705 #, fuzzy msgid "Output of ifconfig" msgstr "Sortie de la commande ifconfig" -#: network.cgi:708 +#: network.cgi:711 msgid "Routing table" msgstr "Table de routage" -#: network.cgi:715 +#: network.cgi:717 msgid "Domain name resolution" msgstr "Résolution de noms de domaines" -#: network.cgi:730 +#: network.cgi:723 msgid "ARP table" msgstr "Table ARP" -#: network.cgi:750 +#: network.cgi:743 msgid "Proxy" msgstr "Mandataire" -#: network.cgi:751 +#: network.cgi:744 hosts.cgi:200 hosts.cgi:207 msgid "Add" msgstr "Ajouter" -#: network.cgi:764 +#: network.cgi:757 msgid "IP Connections" msgstr "Connexions IP" -#: network.cgi:774 +#: network.cgi:765 msgid "Firewall" msgstr "Pare feu" -#: boot.cgi:16 styles/default/header.html:62 +#: network.cgi:766 +msgid "Port knocker" +msgstr "" + +#: hosts.cgi:107 +msgid "Host \"%s\" added to /etc/hosts." +msgstr "" + +#: hosts.cgi:120 +msgid "%d record disabled" +msgid_plural "%d records disabled" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:130 +msgid "Installing the \"%s\"..." +msgstr "" + +#: hosts.cgi:132 hosts.cgi:142 hosts.cgi:152 +msgid "Done" +msgstr "" + +#: hosts.cgi:140 +msgid "Updating the \"%s\"..." +msgstr "" + +#: hosts.cgi:150 +#, fuzzy +msgid "Removing the \"%s\"..." +msgstr "Création du rapport vers : %s" + +#: hosts.cgi:163 +msgid "%d record used for Ad blocking" +msgid_plural "%d records used for Ad blocking" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:169 +msgid "%d record found for \"%s\"" +msgid_plural "%d records found for \"%s\"" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:173 +msgid " (The list is limited to the first 100 entries.)" +msgstr "" + +#: hosts.cgi:194 +#, fuzzy +msgid "Disable selected" +msgstr "Désactiver" + +#: hosts.cgi:213 +#, fuzzy +msgid "Manage lists" +msgstr "Gérer les utilisateurs" + +#: hosts.cgi:214 +msgid "" +"You can use one or more prepared hosts files to block advertisements, " +"malware and other irritants." +msgstr "" + +#: hosts.cgi:220 +msgid "Details" +msgstr "" + +#: hosts.cgi:221 +msgid "Updates" +msgstr "" + +#: hosts.cgi:222 +#, fuzzy +msgid "Actions" +msgstr "Action" + +#: hosts.cgi:235 +msgid "info" +msgstr "" + +#: hosts.cgi:237 +msgid "Updated monthly" +msgstr "" + +#: hosts.cgi:238 +msgid "Updated regularly" +msgstr "" + +#: hosts.cgi:276 +msgid "Upgrade" +msgstr "" + +#: hosts.cgi:281 +#, fuzzy +msgid "Remove" +msgstr "Enlève un utilisateur" + +#: hosts.cgi:287 +msgid "Install" +msgstr "" + +#: boot.cgi:16 styles/default/header.html:65 msgid "Boot" msgstr "Démarrage" @@ -558,228 +692,228 @@ msgid "Show more..." msgstr "En voir plus..." -#: boot.cgi:40 boot.cgi:45 boot.cgi:486 styles/default/header.html:80 +#: boot.cgi:40 boot.cgi:45 boot.cgi:481 styles/default/header.html:83 msgid "System logs" msgstr "Journaux système" -#: boot.cgi:95 +#: boot.cgi:90 msgid "Boot log files" msgstr "Journaux de démarrage" -#: boot.cgi:100 styles/default/header.html:76 +#: boot.cgi:95 styles/default/header.html:79 msgid "X server" msgstr "Serveur X" -#: boot.cgi:101 styles/default/header.html:77 +#: boot.cgi:96 styles/default/header.html:80 msgid "X session" msgstr "Session X" -#: boot.cgi:120 boot.cgi:487 styles/default/header.html:81 +#: boot.cgi:115 boot.cgi:482 styles/default/header.html:84 msgid "Manage daemons" msgstr "Gérer les démons" -#: boot.cgi:123 +#: boot.cgi:118 msgid "Check, start and stop daemons on SliTaz" msgstr "Vérifier, démarrer et arrêter les démons sur SliTaz" -#: boot.cgi:148 hardware.cgi:177 settings.cgi:434 +#: boot.cgi:143 hardware.cgi:177 settings.cgi:452 msgid "Description" msgstr "Description" -#: boot.cgi:151 +#: boot.cgi:146 msgid "Action" msgstr "Action" -#: boot.cgi:152 +#: boot.cgi:147 msgid "PID" msgstr "PID" -#: boot.cgi:177 +#: boot.cgi:172 msgid "SliTaz Firewall with iptable rules" msgstr "Pare-feu SliTaz avec les règles iptables" -#: boot.cgi:179 +#: boot.cgi:174 msgid "Small and fast web server with CGI support" msgstr "Serveur web léger et rapide avec support de CGI" -#: boot.cgi:182 +#: boot.cgi:177 msgid "Network time protocol daemon" msgstr "Démon Network Time Protocol" -#: boot.cgi:185 +#: boot.cgi:180 msgid "Anonymous FTP server" msgstr "Serveur anonyme FTP" -#: boot.cgi:188 +#: boot.cgi:183 msgid "Busybox DHCP server" msgstr "Serveur DHCP Busybox" -#: boot.cgi:191 +#: boot.cgi:186 msgid "Linux Kernel log daemon" msgstr "Démon Linux Kernel log" -#: boot.cgi:194 +#: boot.cgi:189 msgid "Execute scheduled commands" msgstr "Exécuter des commandes planifiées" -#: boot.cgi:197 +#: boot.cgi:192 msgid "Small static DNS server daemon" msgstr "Démon du petit serveur DNS statique" -#: boot.cgi:200 +#: boot.cgi:195 msgid "Transfer a file on tftp request" msgstr "Transférer un fichier à travers une requête TFTP" -#: boot.cgi:203 +#: boot.cgi:198 #, fuzzy msgid "Printer daemon" msgstr "Gérer les démons" -#: boot.cgi:205 +#: boot.cgi:200 msgid "Listen for network connections and launch programs" msgstr "Écoute des connexions réseau et lancement de programmes" -#: boot.cgi:208 +#: boot.cgi:203 msgid "Manage a ZeroConf IPv4 link-local address" msgstr "Gestion d'une adresse ZeroConf IPv4 link-local" -#: boot.cgi:277 +#: boot.cgi:272 msgid "Started" msgstr "Démarré" -#: boot.cgi:288 +#: boot.cgi:283 msgid "Stopped" msgstr "Arrêté" -#: boot.cgi:314 +#: boot.cgi:309 msgid "GRUB Boot loader" msgstr "Gestionnaire de d'amorçage GRUB" -#: boot.cgi:316 +#: boot.cgi:311 msgid "The first application started when the computer powers on" msgstr "La première application démarrée au lancement du système" -#: boot.cgi:323 +#: boot.cgi:318 msgid "Default entry:" msgstr "Entrée par défaut :" -#: boot.cgi:325 +#: boot.cgi:320 msgid "Timeout:" msgstr "Temps d'attente :" -#: boot.cgi:327 +#: boot.cgi:322 msgid "Splash image:" msgstr "Image à afficher pendant le démarrage :" -#: boot.cgi:339 +#: boot.cgi:334 msgid "View or edit menu.lst" msgstr "Voir ou éditer le fichier menu.lst" -#: boot.cgi:344 +#: boot.cgi:339 msgid "Boot entries" msgstr "Entrées de Grub" -#: boot.cgi:351 +#: boot.cgi:346 msgid "Entry" msgstr "Entrée" -#: boot.cgi:372 +#: boot.cgi:367 msgid "Web boot is available with gPXE" msgstr "Le démarrage réseau est disponible avec gPXE" -#: boot.cgi:386 boot.cgi:490 styles/default/header.html:83 +#: boot.cgi:381 boot.cgi:485 styles/default/header.html:86 msgid "ISO mine" msgstr "Exploiter l'ISO" -#: boot.cgi:388 +#: boot.cgi:383 msgid "Invalid ISO image." msgstr "Image ISO non valide" -#: boot.cgi:410 +#: boot.cgi:403 msgid "ISO image file full path" msgstr "Chemin complet de l'image ISO" -#: boot.cgi:411 +#: boot.cgi:404 msgid "set /dev/cdrom for a physical CD-ROM" msgstr "Mettre /dev/cdrom pour un lecteur de CD-ROM" -#: boot.cgi:414 +#: boot.cgi:407 msgid "Working directory" msgstr "Répertoire de travail" -#: boot.cgi:416 +#: boot.cgi:409 msgid "Target partition" msgstr "Partition cible" -#: boot.cgi:417 +#: boot.cgi:410 msgid "" "For hard disk installation only. Will create /slitaz tree and keep other " "files. No partitioning and no formatting." msgstr "" -"Seulement pour l'installation sur disque. Créera l'arborescence /slitaz " -"et conservera les autres fichiers. Ni repartionnage, ni formatage." +"Seulement pour l'installation sur disque. Créera l'arborescence /slitaz et " +"conservera les autres fichiers. Ni repartionnage, ni formatage." -#: boot.cgi:420 +#: boot.cgi:413 msgid "Choose a partition (optional)" msgstr "Choisissez une partition (optionnel)" -#: boot.cgi:431 +#: boot.cgi:424 msgid "USB key device" msgstr "Clé USB" -#: boot.cgi:432 +#: boot.cgi:425 msgid "For USB boot key only. Will erase the full device." msgstr "Pour démarrer sur USB seulement. Effacera toute la clé USB." -#: boot.cgi:435 +#: boot.cgi:428 msgid "Choose a USB key (optional)" msgstr "Choisissez une clé USB (optionnel)" -#: boot.cgi:454 +#: boot.cgi:449 msgid "Choose an action" msgstr "Choisissez une action" -#: boot.cgi:467 +#: boot.cgi:462 msgid "Mine" msgstr "Effectuer" -#: boot.cgi:480 +#: boot.cgi:475 msgid "Boot & Start services" msgstr "Démarrage & lancement des services" -#: boot.cgi:482 +#: boot.cgi:477 msgid "Everything that happens before user login" msgstr "Tout ce qui se produit avant le login de l'utilisateur" -#: boot.cgi:485 styles/default/header.html:72 +#: boot.cgi:480 styles/default/header.html:75 msgid "Boot logs" msgstr "Journaux de démarrage" -#: boot.cgi:493 styles/default/header.html:68 +#: boot.cgi:488 styles/default/header.html:71 msgid "Boot loader" msgstr "Chargeur d'amorçage" -#: boot.cgi:500 +#: boot.cgi:495 msgid "Configuration files" msgstr "Fichiers de configuration" -#: boot.cgi:503 +#: boot.cgi:498 msgid "Main configuration file:" msgstr "Fichier de configuration principal :" -#: boot.cgi:505 +#: boot.cgi:500 msgid "Login manager settings:" msgstr "Réglages du gestionnaire de session :" -#: boot.cgi:513 +#: boot.cgi:508 msgid "Kernel cmdline" msgstr "Ligne de commande passée au noyau" -#: boot.cgi:520 +#: boot.cgi:515 msgid "Local startup commands" msgstr "Commandes supplémentaires lors du démarrage" -#: hardware.cgi:13 styles/default/header.html:88 +#: hardware.cgi:13 styles/default/header.html:91 msgid "Hardware" msgstr "Matériel" @@ -787,7 +921,7 @@ msgid "Bus" msgstr "" -#: hardware.cgi:55 hardware.cgi:534 +#: hardware.cgi:55 hardware.cgi:527 msgid "Device" msgstr "" @@ -804,7 +938,7 @@ msgid "Detect PCI and USB hardware" msgstr "Détecter le matériel PCI/USB" -#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:91 +#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:94 msgid "Kernel modules" msgstr "Modules du noyau" @@ -837,11 +971,11 @@ msgid "Module" msgstr "Module" -#: hardware.cgi:178 hardware.cgi:536 lib/libtazpanel:297 +#: hardware.cgi:178 hardware.cgi:529 lib/libtazpanel:312 msgid "Size" msgstr "Taille" -#: hardware.cgi:179 hardware.cgi:593 lib/libtazpanel:299 +#: hardware.cgi:179 hardware.cgi:586 lib/libtazpanel:314 msgid "Used" msgstr "Utilisé" @@ -869,7 +1003,7 @@ msgid "Manage your computer hardware" msgstr "Gérer le matériel de l'ordinateur" -#: hardware.cgi:249 styles/default/header.html:92 +#: hardware.cgi:249 styles/default/header.html:95 msgid "Detect PCI/USB" msgstr "Détecter le matériel PCI/USB" @@ -917,75 +1051,75 @@ msgid "Filesystems table" msgstr "Systèmes de fichiers" -#: hardware.cgi:500 lib/libtazpanel:294 +#: hardware.cgi:493 lib/libtazpanel:309 msgid "Disk" msgstr "Disque" -#: hardware.cgi:501 lib/libtazpanel:300 +#: hardware.cgi:494 lib/libtazpanel:315 msgid "Mount point" msgstr "Point de montage" -#: hardware.cgi:502 lib/libtazpanel:296 +#: hardware.cgi:495 lib/libtazpanel:311 msgid "Type" msgstr "Type" -#: hardware.cgi:503 +#: hardware.cgi:496 msgid "Options" msgstr "" -#: hardware.cgi:504 +#: hardware.cgi:497 msgid "Freq" msgstr "" -#: hardware.cgi:505 +#: hardware.cgi:498 msgid "Pass" msgstr "Passe" -#: hardware.cgi:527 +#: hardware.cgi:520 msgid "Loop devices" msgstr "" -#: hardware.cgi:535 +#: hardware.cgi:528 msgid "Backing file" msgstr "Fichier conteneur" -#: hardware.cgi:537 +#: hardware.cgi:530 msgid "Access" msgstr "Accès" -#: hardware.cgi:538 +#: hardware.cgi:531 msgid "Offset" msgstr "" -#: hardware.cgi:547 +#: hardware.cgi:540 msgid "read/write" msgstr "lecture/écriture" -#: hardware.cgi:548 hardware.cgi:573 +#: hardware.cgi:541 hardware.cgi:566 msgid "read only" msgstr "lecture seule" -#: hardware.cgi:570 +#: hardware.cgi:563 msgid "Setup" msgstr "Définir" -#: hardware.cgi:571 +#: hardware.cgi:564 msgid "new backing file:" msgstr "nouveau fichier associé :" -#: hardware.cgi:572 +#: hardware.cgi:565 msgid "offset in bytes:" msgstr "offset en octets :" -#: hardware.cgi:590 +#: hardware.cgi:583 msgid "System memory" msgstr "Mémoire système" -#: hardware.cgi:596 +#: hardware.cgi:589 msgid "Buffers" msgstr "" -#: hardware.cgi:599 +#: hardware.cgi:592 msgid "Free" msgstr "Libre" @@ -993,148 +1127,153 @@ msgid "System settings" msgstr "Réglages système" -#: settings.cgi:82 settings.cgi:621 settings.cgi:648 settings.cgi:653 +#: settings.cgi:100 settings.cgi:639 settings.cgi:666 settings.cgi:671 msgid "Set date" msgstr "Entrer la date" -#: settings.cgi:208 settings.cgi:595 +#: settings.cgi:226 settings.cgi:613 msgid "Manage groups" msgstr "Gestion des groupes" -#: settings.cgi:216 settings.cgi:293 +#: settings.cgi:234 settings.cgi:311 msgid "Selection:" msgstr "Sélection :" -#: settings.cgi:217 +#: settings.cgi:235 msgid "Delete group" msgstr "Efface un groupe" -#: settings.cgi:224 +#: settings.cgi:242 msgid "Group" msgstr "groupe" -#: settings.cgi:225 +#: settings.cgi:243 msgid "Group ID" msgstr "ID du groupe" -#: settings.cgi:226 +#: settings.cgi:244 msgid "Members" msgstr "Membres" -#: settings.cgi:253 +#: settings.cgi:271 msgid "Add a new group" msgstr "Ajoute un nouveau groupe" -#: settings.cgi:256 settings.cgi:268 +#: settings.cgi:274 settings.cgi:286 msgid "Group name:" msgstr "Nom du groupe :" -#: settings.cgi:257 +#: settings.cgi:275 msgid "Create group" msgstr "Crée un groupe" -#: settings.cgi:264 +#: settings.cgi:282 msgid "Manage group membership" msgstr "Gérer les apartenances à un groupe" -#: settings.cgi:269 settings.cgi:356 +#: settings.cgi:287 settings.cgi:374 msgid "User name:" msgstr "Identifiant de l'utilisateur :" -#: settings.cgi:272 +#: settings.cgi:290 msgid "Add user" msgstr "Ajouter un utilisateur" -#: settings.cgi:273 +#: settings.cgi:291 msgid "Remove user" msgstr "Enlève un utilisateur" -#: settings.cgi:286 settings.cgi:594 +#: settings.cgi:304 settings.cgi:612 msgid "Manage users" msgstr "Gérer les utilisateurs" -#: settings.cgi:294 +#: settings.cgi:312 msgid "Delete user" msgstr "Supprimer l'utilisateur" -#: settings.cgi:295 +#: settings.cgi:313 msgid "Lock user" msgstr "Bloquer l'utilisateur" -#: settings.cgi:296 +#: settings.cgi:314 msgid "Unlock user" msgstr "Débloquer l'utilisateur" -#: settings.cgi:302 +#: settings.cgi:320 msgid "Login" msgstr "Identifiant" -#: settings.cgi:303 +#: settings.cgi:321 msgid "User ID" msgstr "Id utilisateur" -#: settings.cgi:304 +#: settings.cgi:322 #, fuzzy msgid "User Name" msgstr "Identifiant de l'utilisateur :" -#: settings.cgi:305 +#: settings.cgi:323 msgid "Home" msgstr "Répertoire personnel" -#: settings.cgi:306 +#: settings.cgi:324 msgid "Shell" msgstr "Shell" -#: settings.cgi:340 +#: settings.cgi:358 msgid "Password:" msgstr "Mot de passe :" -#: settings.cgi:342 +#: settings.cgi:359 +#, fuzzy +msgid "New password" +msgstr "Nouveau mot de passe : " + +#: settings.cgi:360 msgid "Change password" msgstr "Changer le mot de passe" -#: settings.cgi:349 +#: settings.cgi:367 msgid "Add a new user" msgstr "Ajouter un utilisateur" -#: settings.cgi:354 +#: settings.cgi:372 msgid "User login:" msgstr "Identifiant :" -#: settings.cgi:358 +#: settings.cgi:376 msgid "User password:" msgstr "Mot de passe :" -#: settings.cgi:363 +#: settings.cgi:381 msgid "Create user" msgstr "Créer un utilisateur" -#: settings.cgi:373 +#: settings.cgi:391 msgid "Current user sessions" msgstr "Sessions utilisateur courantes" -#: settings.cgi:383 +#: settings.cgi:401 msgid "Last user sessions" msgstr "Dernières sessions utilisateur" -#: settings.cgi:395 +#: settings.cgi:413 msgid "Choose locale" msgstr "Choisissez votre langue" -#: settings.cgi:398 +#: settings.cgi:416 msgid "Please wait..." msgstr "merci de patientier..." -#: settings.cgi:403 +#: settings.cgi:421 msgid "Current locale settings:" msgstr "Locales système courantes :" -#: settings.cgi:410 +#: settings.cgi:428 msgid "Locales that are currently installed on the machine:" msgstr "Ses locales sont actuellement installées sur cette machine :" -#: settings.cgi:420 +#: settings.cgi:438 msgid "" "Can't see your language?
You can install glibc-locale to see a larger list of available locales." @@ -1143,53 +1282,53 @@ "do=Install&glibc-locale'>installer glibc-locale pour avoir une liste de " "langues plus importante." -#: settings.cgi:427 +#: settings.cgi:445 msgid "Available locales:" msgstr "Langues disponibles :" -#: settings.cgi:431 +#: settings.cgi:449 msgid "Code" msgstr "Code" -#: settings.cgi:432 +#: settings.cgi:450 msgid "Language" msgstr "Langue du système" -#: settings.cgi:433 +#: settings.cgi:451 msgid "Territory" msgstr "Territoire" -#: settings.cgi:450 settings.cgi:451 +#: settings.cgi:468 settings.cgi:469 msgid "-d" msgstr "-d" -#: settings.cgi:462 settings.cgi:765 settings.cgi:777 settings.cgi:789 +#: settings.cgi:480 settings.cgi:783 settings.cgi:795 settings.cgi:807 msgid "Activate" msgstr "Activer" -#: settings.cgi:475 settings.cgi:497 +#: settings.cgi:493 settings.cgi:515 msgid "Small quick tweaks for user %s" msgstr "Réglages pour l'utilisateur %s" -#: settings.cgi:500 +#: settings.cgi:518 #, fuzzy msgid "Terminal prompt" msgstr "Terminal" -#: settings.cgi:506 +#: settings.cgi:524 msgid "Monochrome" msgstr "" -#: settings.cgi:515 +#: settings.cgi:533 msgid "Colored" msgstr "Multicolore" -#: settings.cgi:524 settings.cgi:572 +#: settings.cgi:542 settings.cgi:590 #, fuzzy msgid "Manual edit: %s" msgstr "Édition manuelle" -#: settings.cgi:525 +#: settings.cgi:543 msgid "" "To take effect: log out and log in to system or execute command in the " "terminal:" @@ -1197,135 +1336,135 @@ "Pour prendre effet, reconnectez vous ou exécutez cette commande dans le " "terminal :" -#: settings.cgi:533 +#: settings.cgi:551 msgid "Menu button appearance" msgstr "Apparence du bouton Menu" -#: settings.cgi:538 +#: settings.cgi:556 msgid "Icon:" msgstr "Icône :" -#: settings.cgi:541 settings.cgi:562 +#: settings.cgi:559 settings.cgi:580 msgid "Do not show" msgstr "Cacher" -#: settings.cgi:559 +#: settings.cgi:577 msgid "Text:" msgstr "Texte :" -#: settings.cgi:566 +#: settings.cgi:584 msgid "Show text" msgstr "Montrer le texte" -#: settings.cgi:589 +#: settings.cgi:607 msgid "Manage system time, users or language settings" msgstr "Gérer l'horloge, les utilisateurs ou les paramètres de langue" -#: settings.cgi:599 +#: settings.cgi:617 msgid "System time" msgstr "Heure système" -#: settings.cgi:602 +#: settings.cgi:620 msgid "Time zone:" msgstr "Zone horaire :" -#: settings.cgi:611 +#: settings.cgi:629 msgid "System time:" msgstr "Heure système :" -#: settings.cgi:613 +#: settings.cgi:631 msgid "Sync online" msgstr "Synchroniser en ligne" -#: settings.cgi:616 +#: settings.cgi:634 msgid "Hardware clock:" msgstr "Horloge système :" -#: settings.cgi:618 +#: settings.cgi:636 msgid "Set hardware clock" msgstr "Configurer l'horloge système" -#: settings.cgi:704 +#: settings.cgi:722 msgid "System language" msgstr "Langue du système" -#: settings.cgi:717 +#: settings.cgi:735 msgid "" "You must logout and login again to your current session to use %s locale." msgstr "" "Vous devez vous déconnecter et vous reconnecter à votre session courante " "pour utiliser la locale %s" -#: settings.cgi:720 +#: settings.cgi:738 msgid "Current system locale:" msgstr "Locales système actuelles :" -#: settings.cgi:732 +#: settings.cgi:750 msgid "Keyboard layout" msgstr "Type de clavier" -#: settings.cgi:746 +#: settings.cgi:764 msgid "Current console keymap: %s" msgstr "Clavier actif pour la console : %s" -#: settings.cgi:764 +#: settings.cgi:782 msgid "Suggested keymap for Xorg:" msgstr "Type de claviers suggéré pour Xorg :" -#: settings.cgi:773 +#: settings.cgi:791 msgid "Available keymaps:" msgstr "Claviers disponibles :" -#: settings.cgi:784 +#: settings.cgi:802 msgid "Panel configuration" msgstr "Configuration du panneau" -#: settings.cgi:787 +#: settings.cgi:805 msgid "Style:" msgstr "Style :" -#: settings.cgi:793 +#: settings.cgi:811 msgid "Configuration files:" msgstr "Fichiers de configuration :" -#: settings.cgi:794 styles/default/header.html:42 +#: settings.cgi:812 styles/default/header.html:45 msgid "Panel" msgstr "Panneau" -#: settings.cgi:795 +#: settings.cgi:813 msgid "Server" msgstr "Serveur" -#: settings.cgi:798 +#: settings.cgi:816 msgid "TazPanel provides a debugging mode and page:" msgstr "TazPanel fournit un mode et une page de debug :" -#: lib/libtazpanel:153 +#: lib/libtazpanel:156 msgid "connected" msgstr "Connecté" -#: lib/libtazpanel:170 +#: lib/libtazpanel:173 msgid "IP Address" msgstr "Adresse IP" -#: lib/libtazpanel:171 +#: lib/libtazpanel:174 msgid "Scan ports" msgstr "Scan des ports" -#: lib/libtazpanel:243 +#: lib/libtazpanel:249 #, fuzzy msgid "Please wait" msgstr "merci de patientier..." -#: lib/libtazpanel:295 +#: lib/libtazpanel:310 msgid "Label" msgstr "Etiquette" -#: lib/libtazpanel:298 +#: lib/libtazpanel:313 msgid "Available" msgstr "Disponible" -#: lib/libtazpanel:367 +#: lib/libtazpanel:392 msgid "You must be root to show this page." msgstr "Il faut être root pour voir cette page." @@ -1337,60 +1476,60 @@ msgid "Help & Doc" msgstr "Aide & Support" -#: styles/default/header.html:32 +#: styles/default/header.html:35 #, fuzzy msgid "Confirm break" msgstr "Configurer" -#: styles/default/header.html:45 +#: styles/default/header.html:48 msgid "Processes" msgstr "Processus" -#: styles/default/header.html:47 +#: styles/default/header.html:50 msgid "Create Report" msgstr "Créer un rapport" -#: styles/default/header.html:55 +#: styles/default/header.html:58 msgid "Config file" msgstr "Fichier de configuration" -#: styles/default/header.html:56 +#: styles/default/header.html:59 msgid "Ethernet" msgstr "Réseau filaire" -#: styles/default/header.html:57 +#: styles/default/header.html:60 msgid "Wireless" msgstr "Réseau sans fil" -#: styles/default/header.html:101 +#: styles/default/header.html:104 msgid "Users" msgstr "Utilisateurs" -#: styles/default/header.html:102 +#: styles/default/header.html:105 msgid "Groups" msgstr "Groupes" -#: styles/default/header.html:103 +#: styles/default/header.html:106 msgid "Tweaks" msgstr "Réglages" -#: styles/default/header.html:119 +#: styles/default/header.html:122 msgid "Some features are disabled." msgstr "Certaines fonctionnalités sont désactivées" -#: styles/default/header.html:124 +#: styles/default/header.html:127 msgid "You are logged in to the TazPanel as user %s." msgstr "Vous êtes connecté à TazPanel comme utilisateur %s." -#: styles/default/header.html:125 +#: styles/default/header.html:128 msgid "Click to re-login." msgstr "Cliquer pour se reconnecter." -#: styles/default/header.html:135 +#: styles/default/header.html:138 msgid "Copyright" msgstr "Licence d'utilisation" -#: styles/default/header.html:137 +#: styles/default/header.html:140 msgid "BSD License" msgstr " License BSD" @@ -1404,9 +1543,6 @@ #~ msgid "Changing password for TazPanel" #~ msgstr "Changement du mot de passe pour TazPanel" -#~ msgid "New password: " -#~ msgstr "Nouveau mot de passe : " - #~ msgid "Password changed successfully" #~ msgstr "Mot de passe mis à jour" @@ -1447,9 +1583,6 @@ #~ msgid "Activate (DHCP)" #~ msgstr "Activer (Dynamique)" -#~ msgid "Disable" -#~ msgstr "Désactiver" - #~ msgid "Wifi name (ESSID)" #~ msgstr "Nom du réseau (ESSID)" diff -r 4f619f973b88 -r 3d4145137792 po/pl.po --- a/po/pl.po Mon Aug 24 01:05:08 2015 +0300 +++ b/po/pl.po Wed Aug 26 05:51:08 2015 +0300 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: TazPanel 1.4.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-12 12:25+0200\n" +"POT-Creation-Date: 2015-08-26 05:27+0300\n" "PO-Revision-Date: 2013-07-23 12:33+0100\n" "Last-Translator: Paweł Pyrczak \n" "Language-Team: \n" @@ -21,23 +21,23 @@ "X-Poedit-Country: POLAND\n" "X-Poedit-SourceCharset: utf-8\n" -#: tazpanel:52 +#: tazpanel:54 msgid "TazPanel is already running." msgstr "TazPanel jest już uruchomiony." -#: tazpanel:55 +#: tazpanel:57 msgid "Starting TazPanel web server on port %d..." msgstr "Uruchamianie web serwera TazPanel na porcie %d..." -#: tazpanel:57 +#: tazpanel:59 msgid "TazPanel Authentication - Default: root:root" msgstr "Autoryzacja dostępu do TazPanel - domyślnie: root:root" -#: tazpanel:64 +#: tazpanel:66 msgid "TazPanel is not running." msgstr "TazPanel nie jest uruchomiony." -#: tazpanel:67 +#: tazpanel:69 msgid "Stopping TazPanel web server..." msgstr "Zatrzymywanie web serwera TazPanel..." @@ -57,13 +57,12 @@ msgid "Save" msgstr "Zapisz" -#: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670 -#: network.cgi:720 boot.cgi:525 hardware.cgi:492 settings.cgi:766 +#: index.cgi:174 settings.cgi:784 lib/libtazpanel:378 msgid "Edit" msgstr "Edytuj" -#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:630 -#: styles/default/header.html:46 +#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:679 +#: styles/default/header.html:49 msgid "Terminal" msgstr "Terminal" @@ -72,7 +71,7 @@ msgid "History" msgstr "Terytorium" -#: index.cgi:247 lib/libtazpanel:348 +#: index.cgi:247 lib/libtazpanel:361 msgid "Back" msgstr "" @@ -104,7 +103,7 @@ msgid "Please, don't run interactive command \"%s\"" msgstr "" -#: index.cgi:330 styles/default/header.html:98 +#: index.cgi:330 styles/default/header.html:101 msgid "Settings" msgstr "Ustawienia" @@ -130,7 +129,7 @@ msgid "Apply" msgstr "" -#: index.cgi:445 index.cgi:631 +#: index.cgi:445 index.cgi:680 msgid "Process activity" msgstr "Aktywność procesów" @@ -202,99 +201,114 @@ msgid "Getting boot logs..." msgstr "Pobieranie logów uruchamiania..." -#: index.cgi:589 boot.cgi:98 styles/default/header.html:74 +#: index.cgi:589 boot.cgi:93 styles/default/header.html:77 msgid "Kernel messages" msgstr "Komunikaty Jadra Linux (Kernel messages)" -#: index.cgi:592 boot.cgi:99 styles/default/header.html:75 +#: index.cgi:592 boot.cgi:94 styles/default/header.html:78 msgid "Boot scripts" msgstr "Skrypty uruchamiania" #: index.cgi:597 +#, fuzzy +msgid "Getting package list..." +msgstr "Pobieranie informacji o sprzęcie..." + +#: index.cgi:600 +msgid "Packages" +msgstr "" + +#: index.cgi:638 +#, fuzzy +msgid "Getting extra reports..." +msgstr "Pobieranie logów uruchamiania..." + +#: index.cgi:646 msgid "Creating report footer..." msgstr "Tworzenie stopki raportu..." -#: index.cgi:608 index.cgi:704 boot.cgi:504 boot.cgi:506 +#: index.cgi:657 index.cgi:753 boot.cgi:499 boot.cgi:501 msgid "View" msgstr "" -#: index.cgi:613 +#: index.cgi:662 msgid "This report can be attached with a bug report on:" msgstr "Ten raport może być dołączony do zgłoszenia błędu na:" -#: index.cgi:623 +#: index.cgi:672 msgid "SliTaz administration and configuration Panel" msgstr "Panel administracyjny i konfiguracyjny SliTaz" -#: index.cgi:632 +#: index.cgi:681 msgid "Create a report" msgstr "Utwórz raport" -#: index.cgi:636 styles/default/header.html:44 styles/default/header.html:54 -#: styles/default/header.html:64 styles/default/header.html:90 -#: styles/default/header.html:100 +#: index.cgi:685 styles/default/header.html:47 styles/default/header.html:57 +#: styles/default/header.html:67 styles/default/header.html:93 +#: styles/default/header.html:103 msgid "Summary" msgstr "Podsumowanie" -#: index.cgi:638 +#: index.cgi:687 hosts.cgi:203 #, fuzzy msgid "Host:" msgstr "Hosty" -#: index.cgi:639 +#: index.cgi:688 msgid "Uptime:" msgstr "Czas pracy (uptime):" -#: index.cgi:642 +#: index.cgi:691 msgid "Memory in Mb:" msgstr "Pamięć w Mb:" -#: index.cgi:644 +#: index.cgi:693 msgid "Total: %d, Used: %d, Free: %d" msgstr "Całkowita: %d, Użyta: %d, Wolna: %d" -#: index.cgi:648 +#: index.cgi:697 msgid "Linux kernel:" msgstr "Jądro Linux:" -#: index.cgi:657 +#: index.cgi:706 #, fuzzy msgid "Network status" msgstr "Status sieci" -#: index.cgi:659 network.cgi:15 network.cgi:215 styles/default/header.html:52 +#: index.cgi:708 network.cgi:15 network.cgi:216 hosts.cgi:15 +#: styles/default/header.html:55 msgid "Network" msgstr "Sieć" -#: index.cgi:668 hardware.cgi:349 +#: index.cgi:717 hardware.cgi:349 msgid "Filesystem usage statistics" msgstr "Statystyka użycia systemu plików" -#: index.cgi:670 styles/default/header.html:93 +#: index.cgi:719 styles/default/header.html:96 msgid "Disks" msgstr "Dyski" -#: index.cgi:702 +#: index.cgi:751 msgid "Panel Activity" msgstr "Aktywność Panelu" -#: network.cgi:152 +#: network.cgi:153 msgid "Changed hostname: %s" msgstr "Zmieniona nazwa hosta: %s" -#: network.cgi:209 +#: network.cgi:210 msgid "Scanning open ports..." msgstr "Skanowanie otwartych portów..." -#: network.cgi:214 +#: network.cgi:215 msgid "Port scanning for %s" msgstr "Skanowanie portów dla %s" -#: network.cgi:225 +#: network.cgi:226 msgid "Ethernet connection" msgstr "Połączenie przewodowe" -#: network.cgi:243 +#: network.cgi:244 msgid "" "Here you can configure a wired connection using DHCP to automatically get a " "random IP or configure a static/fixed IP" @@ -303,80 +317,80 @@ "automatycznie pobierać losowy adres IP, albo skonfigurować dla połączenia " "statyczny/stały adres IP" -#: network.cgi:247 boot.cgi:149 +#: network.cgi:248 boot.cgi:144 msgid "Configuration" msgstr "Konfiguracja" -#: network.cgi:253 lib/libtazpanel:167 +#: network.cgi:254 lib/libtazpanel:170 msgid "Interface" msgstr "Interfejs" -#: network.cgi:261 +#: network.cgi:262 msgid "Static IP" msgstr "" -#: network.cgi:263 +#: network.cgi:264 msgid "Use static IP" msgstr "" -#: network.cgi:265 +#: network.cgi:266 msgid "IP address" msgstr "Adres IP" -#: network.cgi:268 +#: network.cgi:269 msgid "Netmask" msgstr "Maska sieci" -#: network.cgi:271 +#: network.cgi:272 msgid "Gateway" msgstr "Brama sieci" -#: network.cgi:274 +#: network.cgi:275 msgid "DNS server" msgstr "Serwer DNS" -#: network.cgi:277 network.cgi:297 +#: network.cgi:278 network.cgi:298 msgid "Wake up" msgstr "" -#: network.cgi:279 +#: network.cgi:280 msgid "Wake up machines by network" msgstr "" -#: network.cgi:281 +#: network.cgi:282 msgid "MAC address to wake up" msgstr "" -#: network.cgi:282 network.cgi:287 +#: network.cgi:283 network.cgi:288 msgid "Leave empty for a general wakeup" msgstr "" -#: network.cgi:283 +#: network.cgi:284 msgid "List" msgstr "" -#: network.cgi:286 +#: network.cgi:287 #, fuzzy msgid "MAC/IP address password" msgstr "Zmień hasło" -#: network.cgi:288 +#: network.cgi:289 msgid "Help" msgstr "" -#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:289 +#: network.cgi:296 network.cgi:446 network.cgi:639 boot.cgi:284 msgid "Start" msgstr "Start" -#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:278 +#: network.cgi:297 network.cgi:447 network.cgi:640 boot.cgi:273 msgid "Stop" msgstr "Stop" -#: network.cgi:321 network.cgi:591 +#: network.cgi:322 network.cgi:602 msgid "Configuration file" msgstr "Plik konfiguracyjny" -#: network.cgi:331 +#: network.cgi:327 msgid "" "These values are the ethernet settings in the main /etc/network.conf " "configuration file" @@ -384,103 +398,112 @@ "Poniższe wartości są ustawieniami sieci przewodowej w głównym pliku " "konfiguracyjnym /etc/network.conf" -#: network.cgi:343 +#: network.cgi:339 msgid "(hidden)" msgstr "" -#: network.cgi:349 boot.cgi:147 hardware.cgi:57 lib/libtazpanel:168 +#: network.cgi:345 hosts.cgi:219 boot.cgi:142 hardware.cgi:57 +#: lib/libtazpanel:171 msgid "Name" msgstr "Nazwa" -#: network.cgi:350 +#: network.cgi:346 msgid "Signal level" msgstr "" -#: network.cgi:351 +#: network.cgi:347 #, fuzzy msgid "Channel" msgstr "Zmień" -#: network.cgi:352 +#: network.cgi:348 msgid "Encryption" msgstr "Szyfrowanie" -#: network.cgi:353 boot.cgi:150 lib/libtazpanel:169 +#: network.cgi:349 boot.cgi:145 lib/libtazpanel:172 msgid "Status" msgstr "Status" -#: network.cgi:404 network.cgi:486 network.cgi:508 +#: network.cgi:400 network.cgi:482 network.cgi:504 msgid "None" msgstr "" -#: network.cgi:410 +#: network.cgi:406 msgid "Connected" msgstr "Połączony" -#: network.cgi:436 +#: network.cgi:432 msgid "Wireless connection" msgstr "Połączenie bezprzewodowe" -#: network.cgi:452 lib/libtazpanel:150 +#: network.cgi:448 lib/libtazpanel:153 msgid "Scan" msgstr "Skanuj" -#: network.cgi:460 +#: network.cgi:456 msgid "Scanning wireless interface..." msgstr "Scanowanie interfejsu sieci bezprzewodowej..." -#: network.cgi:474 +#: network.cgi:470 msgid "Connection" msgstr "Połączenie" -#: network.cgi:480 +#: network.cgi:476 #, fuzzy msgid "Network SSID" msgstr "Sieć" -#: network.cgi:484 +#: network.cgi:480 msgid "Security" msgstr "" -#: network.cgi:495 +#: network.cgi:491 msgid "EAP method" msgstr "" -#: network.cgi:506 +#: network.cgi:502 msgid "Phase 2 authentication" msgstr "" -#: network.cgi:518 +#: network.cgi:514 msgid "CA certificate" msgstr "" -#: network.cgi:523 +#: network.cgi:519 msgid "User certificate" msgstr "" -#: network.cgi:528 +#: network.cgi:524 msgid "Identity" msgstr "" -#: network.cgi:533 +#: network.cgi:529 msgid "Anonymous identity" msgstr "" -#: network.cgi:538 +#: network.cgi:534 #, fuzzy msgid "Password" msgstr "Hasło:" -#: network.cgi:541 +#: network.cgi:537 #, fuzzy msgid "Show password" msgstr "Nowe hasło: " -#: network.cgi:582 +#: network.cgi:549 network.cgi:678 msgid "Configure" msgstr "Konfiguruj" -#: network.cgi:601 +#: network.cgi:550 +msgid "Share" +msgstr "" + +#: network.cgi:591 +msgid "Share Wi-Fi network with your friends" +msgstr "" + +#: network.cgi:607 msgid "" "These values are the wifi settings in the main /etc/network.conf " "configuration file" @@ -488,77 +511,192 @@ "Poniższe wartości są ustawieniami sieci bezprzewodowej w głównym pliku " "konfiguracyjnym /etc/network.conf" -#: network.cgi:607 +#: network.cgi:613 msgid "Output of iwconfig" msgstr "Wyjście iwconfig" -#: network.cgi:616 +#: network.cgi:622 msgid "Manage network connections and services" msgstr "Zarządzanie połączeniami i usługami sieciowymi" -#: network.cgi:635 +#: network.cgi:641 msgid "Restart" msgstr "Restartuj" -#: network.cgi:639 +#: network.cgi:645 msgid "Configuration:" msgstr "Konfiguracja:" -#: network.cgi:647 +#: network.cgi:653 #, fuzzy msgid "Network interfaces" msgstr "Status sieci" -#: network.cgi:654 +#: network.cgi:660 msgid "forward packets between interfaces" msgstr "" -#: network.cgi:656 network.cgi:690 boot.cgi:332 settings.cgi:608 -#: settings.cgi:722 +#: network.cgi:662 network.cgi:693 boot.cgi:327 settings.cgi:626 +#: settings.cgi:740 msgid "Change" msgstr "Zmień" -#: network.cgi:665 +#: network.cgi:670 hosts.cgi:179 msgid "Hosts" msgstr "Hosty" -#: network.cgi:682 +#: network.cgi:672 +msgid "%d record in the hosts DB" +msgid_plural "%d records in the hosts DB" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: network.cgi:679 hosts.cgi:16 +msgid "Use hosts file as Ad blocker" +msgstr "" + +#: network.cgi:686 msgid "Hostname" msgstr "Nazwa hosta" -#: network.cgi:702 +#: network.cgi:705 msgid "Output of ifconfig" msgstr "Wyjście ifconfig" -#: network.cgi:708 +#: network.cgi:711 msgid "Routing table" msgstr "Tablica Routingu" -#: network.cgi:715 +#: network.cgi:717 msgid "Domain name resolution" msgstr "Ustawienia DNS" -#: network.cgi:730 +#: network.cgi:723 msgid "ARP table" msgstr "Tablica ARP" -#: network.cgi:750 +#: network.cgi:743 msgid "Proxy" msgstr "" -#: network.cgi:751 +#: network.cgi:744 hosts.cgi:200 hosts.cgi:207 msgid "Add" msgstr "" -#: network.cgi:764 +#: network.cgi:757 msgid "IP Connections" msgstr "Połączenia IP" -#: network.cgi:774 +#: network.cgi:765 msgid "Firewall" msgstr "" -#: boot.cgi:16 styles/default/header.html:62 +#: network.cgi:766 +msgid "Port knocker" +msgstr "" + +#: hosts.cgi:107 +msgid "Host \"%s\" added to /etc/hosts." +msgstr "" + +#: hosts.cgi:120 +msgid "%d record disabled" +msgid_plural "%d records disabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: hosts.cgi:130 +msgid "Installing the \"%s\"..." +msgstr "" + +#: hosts.cgi:132 hosts.cgi:142 hosts.cgi:152 +msgid "Done" +msgstr "" + +#: hosts.cgi:140 +msgid "Updating the \"%s\"..." +msgstr "" + +#: hosts.cgi:150 +#, fuzzy +msgid "Removing the \"%s\"..." +msgstr "Zapisywanie raportu do: %s" + +#: hosts.cgi:163 +msgid "%d record used for Ad blocking" +msgid_plural "%d records used for Ad blocking" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: hosts.cgi:169 +msgid "%d record found for \"%s\"" +msgid_plural "%d records found for \"%s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: hosts.cgi:173 +msgid " (The list is limited to the first 100 entries.)" +msgstr "" + +#: hosts.cgi:194 +#, fuzzy +msgid "Disable selected" +msgstr "Deaktywuj" + +#: hosts.cgi:213 +#, fuzzy +msgid "Manage lists" +msgstr "Zarządzaj użytkownikami" + +#: hosts.cgi:214 +msgid "" +"You can use one or more prepared hosts files to block advertisements, " +"malware and other irritants." +msgstr "" + +#: hosts.cgi:220 +msgid "Details" +msgstr "" + +#: hosts.cgi:221 +msgid "Updates" +msgstr "" + +#: hosts.cgi:222 +#, fuzzy +msgid "Actions" +msgstr "Akcja" + +#: hosts.cgi:235 +msgid "info" +msgstr "" + +#: hosts.cgi:237 +msgid "Updated monthly" +msgstr "" + +#: hosts.cgi:238 +msgid "Updated regularly" +msgstr "" + +#: hosts.cgi:276 +msgid "Upgrade" +msgstr "" + +#: hosts.cgi:281 +#, fuzzy +msgid "Remove" +msgstr "Usuń użytkownika" + +#: hosts.cgi:287 +msgid "Install" +msgstr "" + +#: boot.cgi:16 styles/default/header.html:65 msgid "Boot" msgstr "Uruchamianie" @@ -566,228 +704,228 @@ msgid "Show more..." msgstr "Pokaż więcej..." -#: boot.cgi:40 boot.cgi:45 boot.cgi:486 styles/default/header.html:80 +#: boot.cgi:40 boot.cgi:45 boot.cgi:481 styles/default/header.html:83 #, fuzzy msgid "System logs" msgstr "Język systemu" -#: boot.cgi:95 +#: boot.cgi:90 msgid "Boot log files" msgstr "Logi uruchamiania" -#: boot.cgi:100 styles/default/header.html:76 +#: boot.cgi:95 styles/default/header.html:79 msgid "X server" msgstr "Serwer X" -#: boot.cgi:101 styles/default/header.html:77 +#: boot.cgi:96 styles/default/header.html:80 msgid "X session" msgstr "" -#: boot.cgi:120 boot.cgi:487 styles/default/header.html:81 +#: boot.cgi:115 boot.cgi:482 styles/default/header.html:84 msgid "Manage daemons" msgstr "Zarządzaj usługami (daemons)" -#: boot.cgi:123 +#: boot.cgi:118 msgid "Check, start and stop daemons on SliTaz" msgstr "Sprawdź, uruchom i wyłącz usługi (daemons) w SliTaz" -#: boot.cgi:148 hardware.cgi:177 settings.cgi:434 +#: boot.cgi:143 hardware.cgi:177 settings.cgi:452 msgid "Description" msgstr "Opis" -#: boot.cgi:151 +#: boot.cgi:146 msgid "Action" msgstr "Akcja" -#: boot.cgi:152 +#: boot.cgi:147 msgid "PID" msgstr "PID" -#: boot.cgi:177 +#: boot.cgi:172 msgid "SliTaz Firewall with iptable rules" msgstr "Firewall i ustawienia iptables w SliTaz" -#: boot.cgi:179 +#: boot.cgi:174 msgid "Small and fast web server with CGI support" msgstr "Niewielki i szybki serwer web z obsługą CGI" -#: boot.cgi:182 +#: boot.cgi:177 msgid "Network time protocol daemon" msgstr "Usługa protokołu czasu sieciowego (NTP)" -#: boot.cgi:185 +#: boot.cgi:180 msgid "Anonymous FTP server" msgstr "Annimowy serwer FTP" -#: boot.cgi:188 +#: boot.cgi:183 msgid "Busybox DHCP server" msgstr "Serwer DHCP Busybox" -#: boot.cgi:191 +#: boot.cgi:186 msgid "Linux Kernel log daemon" msgstr "Usługa logów Jadra Linux" -#: boot.cgi:194 +#: boot.cgi:189 msgid "Execute scheduled commands" msgstr "Wykonuje zaplanowane polecenia" -#: boot.cgi:197 +#: boot.cgi:192 msgid "Small static DNS server daemon" msgstr "Usługa statycznego, niewielkiego serwera DNS" -#: boot.cgi:200 +#: boot.cgi:195 msgid "Transfer a file on tftp request" msgstr "Przesyła pliki przy pomocy protokołu TFTP (np web boot)" -#: boot.cgi:203 +#: boot.cgi:198 #, fuzzy msgid "Printer daemon" msgstr "Zarządzaj usługami (daemons)" -#: boot.cgi:205 +#: boot.cgi:200 msgid "Listen for network connections and launch programs" msgstr "Nasłuchuje połączeń sieciowych i uruchamia odpowiednie usługi" -#: boot.cgi:208 +#: boot.cgi:203 msgid "Manage a ZeroConf IPv4 link-local address" msgstr "Zarządzaj ZeroConf IPv4 link-local address" -#: boot.cgi:277 +#: boot.cgi:272 msgid "Started" msgstr "Uruchomiony" -#: boot.cgi:288 +#: boot.cgi:283 msgid "Stopped" msgstr "Zatrzymany" -#: boot.cgi:314 +#: boot.cgi:309 msgid "GRUB Boot loader" msgstr "Boot loader GRUB" -#: boot.cgi:316 +#: boot.cgi:311 msgid "The first application started when the computer powers on" msgstr "Pierwsza aplikacja uruchamiana tuż po włączeniu komputera" -#: boot.cgi:323 +#: boot.cgi:318 msgid "Default entry:" msgstr "Domyślny wpis:" -#: boot.cgi:325 +#: boot.cgi:320 msgid "Timeout:" msgstr "Timeout:" -#: boot.cgi:327 +#: boot.cgi:322 msgid "Splash image:" msgstr "Obraz powitalny:" -#: boot.cgi:339 +#: boot.cgi:334 msgid "View or edit menu.lst" msgstr "Zobacz albo edytuj menu.lst" -#: boot.cgi:344 +#: boot.cgi:339 msgid "Boot entries" msgstr "Wpisy boot" -#: boot.cgi:351 +#: boot.cgi:346 msgid "Entry" msgstr "Wpis" -#: boot.cgi:372 +#: boot.cgi:367 msgid "Web boot is available with gPXE" msgstr "Uruchamianie przez sieć jest dostępne poprzez gPXE" -#: boot.cgi:386 boot.cgi:490 styles/default/header.html:83 +#: boot.cgi:381 boot.cgi:485 styles/default/header.html:86 msgid "ISO mine" msgstr "" -#: boot.cgi:388 +#: boot.cgi:383 msgid "Invalid ISO image." msgstr "" -#: boot.cgi:410 +#: boot.cgi:403 msgid "ISO image file full path" msgstr "" -#: boot.cgi:411 +#: boot.cgi:404 msgid "set /dev/cdrom for a physical CD-ROM" msgstr "" -#: boot.cgi:414 +#: boot.cgi:407 msgid "Working directory" msgstr "" -#: boot.cgi:416 +#: boot.cgi:409 msgid "Target partition" msgstr "" -#: boot.cgi:417 +#: boot.cgi:410 msgid "" "For hard disk installation only. Will create /slitaz tree and keep other " "files. No partitioning and no formatting." msgstr "" -#: boot.cgi:420 +#: boot.cgi:413 msgid "Choose a partition (optional)" msgstr "" -#: boot.cgi:431 +#: boot.cgi:424 msgid "USB key device" msgstr "" -#: boot.cgi:432 +#: boot.cgi:425 msgid "For USB boot key only. Will erase the full device." msgstr "" -#: boot.cgi:435 +#: boot.cgi:428 msgid "Choose a USB key (optional)" msgstr "" -#: boot.cgi:454 +#: boot.cgi:449 #, fuzzy msgid "Choose an action" msgstr "Połączenie" -#: boot.cgi:467 +#: boot.cgi:462 msgid "Mine" msgstr "" -#: boot.cgi:480 +#: boot.cgi:475 msgid "Boot & Start services" msgstr "Uruchamianie i Start Usług" -#: boot.cgi:482 +#: boot.cgi:477 msgid "Everything that happens before user login" msgstr "Wszystko co się wydarzyło przed zalogowaniem uzytkownika" -#: boot.cgi:485 styles/default/header.html:72 +#: boot.cgi:480 styles/default/header.html:75 msgid "Boot logs" msgstr "Logi uruchamiania (boot)" -#: boot.cgi:493 styles/default/header.html:68 +#: boot.cgi:488 styles/default/header.html:71 msgid "Boot loader" msgstr "Program rozruchowy (boot loader)" -#: boot.cgi:500 +#: boot.cgi:495 msgid "Configuration files" msgstr "Pliki konfiguracyjne" -#: boot.cgi:503 +#: boot.cgi:498 msgid "Main configuration file:" msgstr "Główny plik konfiguracyjny:" -#: boot.cgi:505 +#: boot.cgi:500 msgid "Login manager settings:" msgstr "Ustawienia menadżera logowania:" -#: boot.cgi:513 +#: boot.cgi:508 msgid "Kernel cmdline" msgstr "Wiersz poleceń jądra" -#: boot.cgi:520 +#: boot.cgi:515 msgid "Local startup commands" msgstr "Lokalne polecenia podczas uruchamiania" -#: hardware.cgi:13 styles/default/header.html:88 +#: hardware.cgi:13 styles/default/header.html:91 msgid "Hardware" msgstr "Sprzęt" @@ -795,7 +933,7 @@ msgid "Bus" msgstr "" -#: hardware.cgi:55 hardware.cgi:534 +#: hardware.cgi:55 hardware.cgi:527 msgid "Device" msgstr "" @@ -812,7 +950,7 @@ msgid "Detect PCI and USB hardware" msgstr "Wykryj urządzenia PCI i USB" -#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:91 +#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:94 msgid "Kernel modules" msgstr "Moduły jądra Linux" @@ -844,11 +982,11 @@ msgid "Module" msgstr "Moduł" -#: hardware.cgi:178 hardware.cgi:536 lib/libtazpanel:297 +#: hardware.cgi:178 hardware.cgi:529 lib/libtazpanel:312 msgid "Size" msgstr "Rozmiar" -#: hardware.cgi:179 hardware.cgi:593 lib/libtazpanel:299 +#: hardware.cgi:179 hardware.cgi:586 lib/libtazpanel:314 msgid "Used" msgstr "Używany" @@ -876,7 +1014,7 @@ msgid "Manage your computer hardware" msgstr "Zarządzanie sprzętem i podłączonymi urządzeniami" -#: hardware.cgi:249 styles/default/header.html:92 +#: hardware.cgi:249 styles/default/header.html:95 msgid "Detect PCI/USB" msgstr "Wykryj urządzenia PCI/USB" @@ -926,79 +1064,79 @@ msgid "Filesystems table" msgstr "Tabela systemów plików" -#: hardware.cgi:500 lib/libtazpanel:294 +#: hardware.cgi:493 lib/libtazpanel:309 msgid "Disk" msgstr "Dysk" -#: hardware.cgi:501 lib/libtazpanel:300 +#: hardware.cgi:494 lib/libtazpanel:315 msgid "Mount point" msgstr "Punkt montowania" -#: hardware.cgi:502 lib/libtazpanel:296 +#: hardware.cgi:495 lib/libtazpanel:311 msgid "Type" msgstr "Typ" -#: hardware.cgi:503 +#: hardware.cgi:496 #, fuzzy msgid "Options" msgstr "Akcja" -#: hardware.cgi:504 +#: hardware.cgi:497 msgid "Freq" msgstr "" -#: hardware.cgi:505 +#: hardware.cgi:498 #, fuzzy msgid "Pass" msgstr "Hasło:" -#: hardware.cgi:527 +#: hardware.cgi:520 msgid "Loop devices" msgstr "" -#: hardware.cgi:535 +#: hardware.cgi:528 #, fuzzy msgid "Backing file" msgstr "Plik konfiguracyjny" -#: hardware.cgi:537 +#: hardware.cgi:530 #, fuzzy msgid "Access" msgstr "Punkt dostępowy" -#: hardware.cgi:538 +#: hardware.cgi:531 msgid "Offset" msgstr "" -#: hardware.cgi:547 +#: hardware.cgi:540 msgid "read/write" msgstr "" -#: hardware.cgi:548 hardware.cgi:573 +#: hardware.cgi:541 hardware.cgi:566 msgid "read only" msgstr "" -#: hardware.cgi:570 +#: hardware.cgi:563 msgid "Setup" msgstr "" -#: hardware.cgi:571 +#: hardware.cgi:564 msgid "new backing file:" msgstr "" -#: hardware.cgi:572 +#: hardware.cgi:565 msgid "offset in bytes:" msgstr "" -#: hardware.cgi:590 +#: hardware.cgi:583 msgid "System memory" msgstr "Pamięć systemowa" -#: hardware.cgi:596 +#: hardware.cgi:589 msgid "Buffers" msgstr "" -#: hardware.cgi:599 +#: hardware.cgi:592 msgid "Free" msgstr "" @@ -1006,148 +1144,153 @@ msgid "System settings" msgstr "Ustawienia Systemu" -#: settings.cgi:82 settings.cgi:621 settings.cgi:648 settings.cgi:653 +#: settings.cgi:100 settings.cgi:639 settings.cgi:666 settings.cgi:671 msgid "Set date" msgstr "Ustaw datę" -#: settings.cgi:208 settings.cgi:595 +#: settings.cgi:226 settings.cgi:613 msgid "Manage groups" msgstr "Zarządzaj grupami" -#: settings.cgi:216 settings.cgi:293 +#: settings.cgi:234 settings.cgi:311 msgid "Selection:" msgstr "Zaznaczone:" -#: settings.cgi:217 +#: settings.cgi:235 msgid "Delete group" msgstr "Usuń grupę" -#: settings.cgi:224 +#: settings.cgi:242 msgid "Group" msgstr "Grupa" -#: settings.cgi:225 +#: settings.cgi:243 msgid "Group ID" msgstr "ID Grupy" -#: settings.cgi:226 +#: settings.cgi:244 msgid "Members" msgstr "Członkowie" -#: settings.cgi:253 +#: settings.cgi:271 msgid "Add a new group" msgstr "Dodaj nową grupę" -#: settings.cgi:256 settings.cgi:268 +#: settings.cgi:274 settings.cgi:286 msgid "Group name:" msgstr "Nazwa Grupy:" -#: settings.cgi:257 +#: settings.cgi:275 msgid "Create group" msgstr "Utwórz grupę użytkowników" -#: settings.cgi:264 +#: settings.cgi:282 msgid "Manage group membership" msgstr "Zarządzaj grupą użytkowników" -#: settings.cgi:269 settings.cgi:356 +#: settings.cgi:287 settings.cgi:374 msgid "User name:" msgstr "Nazwa użytkownika:" -#: settings.cgi:272 +#: settings.cgi:290 msgid "Add user" msgstr "Dodaj użytkownika" -#: settings.cgi:273 +#: settings.cgi:291 msgid "Remove user" msgstr "Usuń użytkownika" -#: settings.cgi:286 settings.cgi:594 +#: settings.cgi:304 settings.cgi:612 msgid "Manage users" msgstr "Zarządzaj użytkownikami" -#: settings.cgi:294 +#: settings.cgi:312 msgid "Delete user" msgstr "Usuń uzytkownika" -#: settings.cgi:295 +#: settings.cgi:313 msgid "Lock user" msgstr "Zablokuj uzytkownika" -#: settings.cgi:296 +#: settings.cgi:314 msgid "Unlock user" msgstr "Odblokuj użytkownika" -#: settings.cgi:302 +#: settings.cgi:320 msgid "Login" msgstr "Login" -#: settings.cgi:303 +#: settings.cgi:321 msgid "User ID" msgstr "ID użytkownika" -#: settings.cgi:304 +#: settings.cgi:322 #, fuzzy msgid "User Name" msgstr "Nazwa użytkownika:" -#: settings.cgi:305 +#: settings.cgi:323 msgid "Home" msgstr "Katalog domowy" -#: settings.cgi:306 +#: settings.cgi:324 msgid "Shell" msgstr "Powłoka" -#: settings.cgi:340 +#: settings.cgi:358 msgid "Password:" msgstr "Hasło:" -#: settings.cgi:342 +#: settings.cgi:359 +#, fuzzy +msgid "New password" +msgstr "Nowe hasło: " + +#: settings.cgi:360 msgid "Change password" msgstr "Zmień hasło" -#: settings.cgi:349 +#: settings.cgi:367 msgid "Add a new user" msgstr "Dodaj nowego użytkownika" -#: settings.cgi:354 +#: settings.cgi:372 msgid "User login:" msgstr "Login użytkownika:" -#: settings.cgi:358 +#: settings.cgi:376 msgid "User password:" msgstr "Hasło użytkownika:" -#: settings.cgi:363 +#: settings.cgi:381 msgid "Create user" msgstr "Utwórz konto użytkownika" -#: settings.cgi:373 +#: settings.cgi:391 msgid "Current user sessions" msgstr "Aktualne sesje użytkowników" -#: settings.cgi:383 +#: settings.cgi:401 msgid "Last user sessions" msgstr "Ostatnie sesje użytkowników" -#: settings.cgi:395 +#: settings.cgi:413 msgid "Choose locale" msgstr "Wybierz lokalizację" -#: settings.cgi:398 +#: settings.cgi:416 msgid "Please wait..." msgstr "Proszę czekać..." -#: settings.cgi:403 +#: settings.cgi:421 msgid "Current locale settings:" msgstr "Aktualne ustawienia lokalizacji:" -#: settings.cgi:410 +#: settings.cgi:428 msgid "Locales that are currently installed on the machine:" msgstr "Lokalizacje aktualnie zainstalowane na komputerze:" -#: settings.cgi:420 +#: settings.cgi:438 #, fuzzy msgid "" "Can't see your language?
You can zainstalować glibc-locale aby zobaczyć obszerniejszą listę " "dostępnych lokalizacji." -#: settings.cgi:427 +#: settings.cgi:445 msgid "Available locales:" msgstr "Dostępne lokalizacje:" -#: settings.cgi:431 +#: settings.cgi:449 msgid "Code" msgstr "Kod" -#: settings.cgi:432 +#: settings.cgi:450 msgid "Language" msgstr "Język" -#: settings.cgi:433 +#: settings.cgi:451 msgid "Territory" msgstr "Terytorium" -#: settings.cgi:450 settings.cgi:451 +#: settings.cgi:468 settings.cgi:469 msgid "-d" msgstr "-d" -#: settings.cgi:462 settings.cgi:765 settings.cgi:777 settings.cgi:789 +#: settings.cgi:480 settings.cgi:783 settings.cgi:795 settings.cgi:807 msgid "Activate" msgstr "Aktywuj" -#: settings.cgi:475 settings.cgi:497 +#: settings.cgi:493 settings.cgi:515 msgid "Small quick tweaks for user %s" msgstr "" -#: settings.cgi:500 +#: settings.cgi:518 #, fuzzy msgid "Terminal prompt" msgstr "Terminal" -#: settings.cgi:506 +#: settings.cgi:524 msgid "Monochrome" msgstr "" -#: settings.cgi:515 +#: settings.cgi:533 msgid "Colored" msgstr "" -#: settings.cgi:524 settings.cgi:572 +#: settings.cgi:542 settings.cgi:590 #, fuzzy msgid "Manual edit: %s" msgstr "Ręczna Edycja" -#: settings.cgi:525 +#: settings.cgi:543 msgid "" "To take effect: log out and log in to system or execute command in the " "terminal:" msgstr "" -#: settings.cgi:533 +#: settings.cgi:551 msgid "Menu button appearance" msgstr "" -#: settings.cgi:538 +#: settings.cgi:556 msgid "Icon:" msgstr "" -#: settings.cgi:541 settings.cgi:562 +#: settings.cgi:559 settings.cgi:580 msgid "Do not show" msgstr "" -#: settings.cgi:559 +#: settings.cgi:577 msgid "Text:" msgstr "" -#: settings.cgi:566 +#: settings.cgi:584 msgid "Show text" msgstr "" -#: settings.cgi:589 +#: settings.cgi:607 msgid "Manage system time, users or language settings" msgstr "" "Zarządzaj czasem systemowym, użytkownikami albo ustawieniami językowymi" -#: settings.cgi:599 +#: settings.cgi:617 msgid "System time" msgstr "Czas systemowy" -#: settings.cgi:602 +#: settings.cgi:620 msgid "Time zone:" msgstr "Strefa czasowa:" -#: settings.cgi:611 +#: settings.cgi:629 msgid "System time:" msgstr "Czas systemowy:" -#: settings.cgi:613 +#: settings.cgi:631 msgid "Sync online" msgstr "Synchronizuj online" -#: settings.cgi:616 +#: settings.cgi:634 msgid "Hardware clock:" msgstr "Zegar sprzętowy RTC:" -#: settings.cgi:618 +#: settings.cgi:636 msgid "Set hardware clock" msgstr "Ustaw zegar sprzętowy RTC" -#: settings.cgi:704 +#: settings.cgi:722 msgid "System language" msgstr "Język systemu" -#: settings.cgi:717 +#: settings.cgi:735 msgid "" "You must logout and login again to your current session to use %s locale." msgstr "" "Należy się wylogować i zalogować ponownie aby używać ustawień regionalnych " "%s." -#: settings.cgi:720 +#: settings.cgi:738 msgid "Current system locale:" msgstr "Aktualne ustawienia regionalne systemu:" -#: settings.cgi:732 +#: settings.cgi:750 msgid "Keyboard layout" msgstr "" -#: settings.cgi:746 +#: settings.cgi:764 msgid "Current console keymap: %s" msgstr "Aktualny układ klawiatury dla konsoli: %s" -#: settings.cgi:764 +#: settings.cgi:782 msgid "Suggested keymap for Xorg:" msgstr "Sugerowany układ klawiatury dla Xorg:" -#: settings.cgi:773 +#: settings.cgi:791 msgid "Available keymaps:" msgstr "Dostępne układy klawiatury:" -#: settings.cgi:784 +#: settings.cgi:802 msgid "Panel configuration" msgstr "Konfiguracja Panelu" -#: settings.cgi:787 +#: settings.cgi:805 msgid "Style:" msgstr "Styl:" -#: settings.cgi:793 +#: settings.cgi:811 msgid "Configuration files:" msgstr "Pliki konfiguracyjne:" -#: settings.cgi:794 styles/default/header.html:42 +#: settings.cgi:812 styles/default/header.html:45 msgid "Panel" msgstr "Panel" -#: settings.cgi:795 +#: settings.cgi:813 msgid "Server" msgstr "Serwer" -#: settings.cgi:798 +#: settings.cgi:816 #, fuzzy msgid "TazPanel provides a debugging mode and page:" msgstr "TazPanel udostępnia tryb debugowania i stronę:" -#: lib/libtazpanel:153 +#: lib/libtazpanel:156 msgid "connected" msgstr "połączony" -#: lib/libtazpanel:170 +#: lib/libtazpanel:173 msgid "IP Address" msgstr "Adres IP" -#: lib/libtazpanel:171 +#: lib/libtazpanel:174 msgid "Scan ports" msgstr "Skanuj porty" -#: lib/libtazpanel:243 +#: lib/libtazpanel:249 #, fuzzy msgid "Please wait" msgstr "Proszę czekać..." -#: lib/libtazpanel:295 +#: lib/libtazpanel:310 msgid "Label" msgstr "Etykieta" -#: lib/libtazpanel:298 +#: lib/libtazpanel:313 msgid "Available" msgstr "Dostepny" -#: lib/libtazpanel:367 +#: lib/libtazpanel:392 msgid "You must be root to show this page." msgstr "" @@ -1351,60 +1494,60 @@ msgid "Help & Doc" msgstr "Pomoc i Dokumentacja" -#: styles/default/header.html:32 +#: styles/default/header.html:35 #, fuzzy msgid "Confirm break" msgstr "Konfiguruj" -#: styles/default/header.html:45 +#: styles/default/header.html:48 msgid "Processes" msgstr "Uruchomione procesy" -#: styles/default/header.html:47 +#: styles/default/header.html:50 msgid "Create Report" msgstr "Utwórz raport" -#: styles/default/header.html:55 +#: styles/default/header.html:58 msgid "Config file" msgstr "Plik konfiguracyjny" -#: styles/default/header.html:56 +#: styles/default/header.html:59 msgid "Ethernet" msgstr "Sieć przewodowa" -#: styles/default/header.html:57 +#: styles/default/header.html:60 msgid "Wireless" msgstr "Sieć bezprzewodowa" -#: styles/default/header.html:101 +#: styles/default/header.html:104 msgid "Users" msgstr "Użytkownicy" -#: styles/default/header.html:102 +#: styles/default/header.html:105 msgid "Groups" msgstr "Grupy" -#: styles/default/header.html:103 +#: styles/default/header.html:106 msgid "Tweaks" msgstr "" -#: styles/default/header.html:119 +#: styles/default/header.html:122 msgid "Some features are disabled." msgstr "" -#: styles/default/header.html:124 +#: styles/default/header.html:127 msgid "You are logged in to the TazPanel as user %s." msgstr "" -#: styles/default/header.html:125 +#: styles/default/header.html:128 msgid "Click to re-login." msgstr "" -#: styles/default/header.html:135 +#: styles/default/header.html:138 msgid "Copyright" msgstr "Copyright" -#: styles/default/header.html:137 +#: styles/default/header.html:140 msgid "BSD License" msgstr "Licencja BSD" @@ -1418,9 +1561,6 @@ #~ msgid "Changing password for TazPanel" #~ msgstr "Zmienianie hasła do TazPanelu" -#~ msgid "New password: " -#~ msgstr "Nowe hasło: " - #~ msgid "Password changed successfully" #~ msgstr "Hasło zmienione pomyślnie" @@ -1460,9 +1600,6 @@ #~ msgid "Activate (DHCP)" #~ msgstr "Aktywuj (DHCP)" -#~ msgid "Disable" -#~ msgstr "Deaktywuj" - #~ msgid "Wifi name (ESSID)" #~ msgstr "Nazwa Wifi (ESSID)" diff -r 4f619f973b88 -r 3d4145137792 po/pt_BR.po --- a/po/pt_BR.po Mon Aug 24 01:05:08 2015 +0300 +++ b/po/pt_BR.po Wed Aug 26 05:51:08 2015 +0300 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: TazPanel 1.5.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-12 12:25+0200\n" +"POT-Creation-Date: 2015-08-26 05:27+0300\n" "PO-Revision-Date: 2014-03-06 22:24-0300\n" "Last-Translator: Claudinei Pereira , 2014\n" "Language-Team: Portuguese \n" @@ -17,23 +17,23 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: tazpanel:52 +#: tazpanel:54 msgid "TazPanel is already running." msgstr "TazPanel já está sendo executado." -#: tazpanel:55 +#: tazpanel:57 msgid "Starting TazPanel web server on port %d..." msgstr "Parando o servidor web do TazPanel na porta %d..." -#: tazpanel:57 +#: tazpanel:59 msgid "TazPanel Authentication - Default: root:root" msgstr "Autenticação do TazPanel - Padrão: root:root" -#: tazpanel:64 +#: tazpanel:66 msgid "TazPanel is not running." msgstr "TazPanel não está sendo executado." -#: tazpanel:67 +#: tazpanel:69 msgid "Stopping TazPanel web server..." msgstr "Parando o servidor web do TazPanel..." @@ -53,13 +53,12 @@ msgid "Save" msgstr "Salvar" -#: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670 -#: network.cgi:720 boot.cgi:525 hardware.cgi:492 settings.cgi:766 +#: index.cgi:174 settings.cgi:784 lib/libtazpanel:378 msgid "Edit" msgstr "Editar" -#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:630 -#: styles/default/header.html:46 +#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:679 +#: styles/default/header.html:49 msgid "Terminal" msgstr "Terminal" @@ -68,7 +67,7 @@ msgid "History" msgstr "Território" -#: index.cgi:247 lib/libtazpanel:348 +#: index.cgi:247 lib/libtazpanel:361 msgid "Back" msgstr "" @@ -100,7 +99,7 @@ msgid "Please, don't run interactive command \"%s\"" msgstr "" -#: index.cgi:330 styles/default/header.html:98 +#: index.cgi:330 styles/default/header.html:101 msgid "Settings" msgstr "Configurações" @@ -126,7 +125,7 @@ msgid "Apply" msgstr "" -#: index.cgi:445 index.cgi:631 +#: index.cgi:445 index.cgi:680 msgid "Process activity" msgstr "Atividade de processos" @@ -198,99 +197,114 @@ msgid "Getting boot logs..." msgstr "Gerando logs de boot..." -#: index.cgi:589 boot.cgi:98 styles/default/header.html:74 +#: index.cgi:589 boot.cgi:93 styles/default/header.html:77 msgid "Kernel messages" msgstr "Mensagens do kernel" -#: index.cgi:592 boot.cgi:99 styles/default/header.html:75 +#: index.cgi:592 boot.cgi:94 styles/default/header.html:78 msgid "Boot scripts" msgstr "Scripts de boot" #: index.cgi:597 +#, fuzzy +msgid "Getting package list..." +msgstr "Obtendo informação do sistema..." + +#: index.cgi:600 +msgid "Packages" +msgstr "" + +#: index.cgi:638 +#, fuzzy +msgid "Getting extra reports..." +msgstr "Gerando logs de boot..." + +#: index.cgi:646 msgid "Creating report footer..." msgstr "Criando rodapé do relatório..." -#: index.cgi:608 index.cgi:704 boot.cgi:504 boot.cgi:506 +#: index.cgi:657 index.cgi:753 boot.cgi:499 boot.cgi:501 msgid "View" msgstr "" -#: index.cgi:613 +#: index.cgi:662 msgid "This report can be attached with a bug report on:" msgstr "Este relatório pode ser anexado a um aviso de bug em:" -#: index.cgi:623 +#: index.cgi:672 msgid "SliTaz administration and configuration Panel" msgstr "Painel de configuração e administração do SliTaz" -#: index.cgi:632 +#: index.cgi:681 msgid "Create a report" msgstr "Criar relatório" -#: index.cgi:636 styles/default/header.html:44 styles/default/header.html:54 -#: styles/default/header.html:64 styles/default/header.html:90 -#: styles/default/header.html:100 +#: index.cgi:685 styles/default/header.html:47 styles/default/header.html:57 +#: styles/default/header.html:67 styles/default/header.html:93 +#: styles/default/header.html:103 msgid "Summary" msgstr "Sumário" -#: index.cgi:638 +#: index.cgi:687 hosts.cgi:203 #, fuzzy msgid "Host:" msgstr "Hosts" -#: index.cgi:639 +#: index.cgi:688 msgid "Uptime:" msgstr "Uptime:" -#: index.cgi:642 +#: index.cgi:691 msgid "Memory in Mb:" msgstr "Memória em MB:" -#: index.cgi:644 +#: index.cgi:693 msgid "Total: %d, Used: %d, Free: %d" msgstr "Total: %d, Usada: %d, Livre: %d" -#: index.cgi:648 +#: index.cgi:697 msgid "Linux kernel:" msgstr "Kernel Linux:" -#: index.cgi:657 +#: index.cgi:706 #, fuzzy msgid "Network status" msgstr "Status da Rede" -#: index.cgi:659 network.cgi:15 network.cgi:215 styles/default/header.html:52 +#: index.cgi:708 network.cgi:15 network.cgi:216 hosts.cgi:15 +#: styles/default/header.html:55 msgid "Network" msgstr "Rede" -#: index.cgi:668 hardware.cgi:349 +#: index.cgi:717 hardware.cgi:349 msgid "Filesystem usage statistics" msgstr "Estatísticas de utilização do sistema de arquivos" -#: index.cgi:670 styles/default/header.html:93 +#: index.cgi:719 styles/default/header.html:96 msgid "Disks" msgstr "Discos" -#: index.cgi:702 +#: index.cgi:751 msgid "Panel Activity" msgstr "Atividade do painel" -#: network.cgi:152 +#: network.cgi:153 msgid "Changed hostname: %s" msgstr "Nome de host alterado: %s" -#: network.cgi:209 +#: network.cgi:210 msgid "Scanning open ports..." msgstr "Procurando portas abertas..." -#: network.cgi:214 +#: network.cgi:215 msgid "Port scanning for %s" msgstr "Procura de portas para %s" -#: network.cgi:225 +#: network.cgi:226 msgid "Ethernet connection" msgstr "Conexão ethernet" -#: network.cgi:243 +#: network.cgi:244 msgid "" "Here you can configure a wired connection using DHCP to automatically get a " "random IP or configure a static/fixed IP" @@ -298,80 +312,80 @@ "Aqui você pode configurar conexões cabeadas usando DHCP para obter " "automaticamente um IP aleatório ou configurar um IP fixo" -#: network.cgi:247 boot.cgi:149 +#: network.cgi:248 boot.cgi:144 msgid "Configuration" msgstr "Configuração" -#: network.cgi:253 lib/libtazpanel:167 +#: network.cgi:254 lib/libtazpanel:170 msgid "Interface" msgstr "Interface" -#: network.cgi:261 +#: network.cgi:262 msgid "Static IP" msgstr "" -#: network.cgi:263 +#: network.cgi:264 msgid "Use static IP" msgstr "" -#: network.cgi:265 +#: network.cgi:266 msgid "IP address" msgstr "Endereço IP" -#: network.cgi:268 +#: network.cgi:269 msgid "Netmask" msgstr "Máscara de Rede" -#: network.cgi:271 +#: network.cgi:272 msgid "Gateway" msgstr "Gateway" -#: network.cgi:274 +#: network.cgi:275 msgid "DNS server" msgstr "Servidor DNS" -#: network.cgi:277 network.cgi:297 +#: network.cgi:278 network.cgi:298 msgid "Wake up" msgstr "" -#: network.cgi:279 +#: network.cgi:280 msgid "Wake up machines by network" msgstr "" -#: network.cgi:281 +#: network.cgi:282 msgid "MAC address to wake up" msgstr "" -#: network.cgi:282 network.cgi:287 +#: network.cgi:283 network.cgi:288 msgid "Leave empty for a general wakeup" msgstr "" -#: network.cgi:283 +#: network.cgi:284 msgid "List" msgstr "" -#: network.cgi:286 +#: network.cgi:287 #, fuzzy msgid "MAC/IP address password" msgstr "Alterar senha" -#: network.cgi:288 +#: network.cgi:289 msgid "Help" msgstr "" -#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:289 +#: network.cgi:296 network.cgi:446 network.cgi:639 boot.cgi:284 msgid "Start" msgstr "Iniciar" -#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:278 +#: network.cgi:297 network.cgi:447 network.cgi:640 boot.cgi:273 msgid "Stop" msgstr "Parar" -#: network.cgi:321 network.cgi:591 +#: network.cgi:322 network.cgi:602 msgid "Configuration file" msgstr "Arquivo de configuração" -#: network.cgi:331 +#: network.cgi:327 msgid "" "These values are the ethernet settings in the main /etc/network.conf " "configuration file" @@ -379,103 +393,112 @@ "Esses valores são as configurações da rede ethernet no arquivo de " "configuração /etc/network.conf" -#: network.cgi:343 +#: network.cgi:339 msgid "(hidden)" msgstr "" -#: network.cgi:349 boot.cgi:147 hardware.cgi:57 lib/libtazpanel:168 +#: network.cgi:345 hosts.cgi:219 boot.cgi:142 hardware.cgi:57 +#: lib/libtazpanel:171 msgid "Name" msgstr "Nome" -#: network.cgi:350 +#: network.cgi:346 msgid "Signal level" msgstr "" -#: network.cgi:351 +#: network.cgi:347 #, fuzzy msgid "Channel" msgstr "Alterar" -#: network.cgi:352 +#: network.cgi:348 msgid "Encryption" msgstr "Encriptação" -#: network.cgi:353 boot.cgi:150 lib/libtazpanel:169 +#: network.cgi:349 boot.cgi:145 lib/libtazpanel:172 msgid "Status" msgstr "Status" -#: network.cgi:404 network.cgi:486 network.cgi:508 +#: network.cgi:400 network.cgi:482 network.cgi:504 msgid "None" msgstr "" -#: network.cgi:410 +#: network.cgi:406 msgid "Connected" msgstr "Conectado" -#: network.cgi:436 +#: network.cgi:432 msgid "Wireless connection" msgstr "Conexões sem fio" -#: network.cgi:452 lib/libtazpanel:150 +#: network.cgi:448 lib/libtazpanel:153 msgid "Scan" msgstr "Procurar" -#: network.cgi:460 +#: network.cgi:456 msgid "Scanning wireless interface..." msgstr "Procurando interface sem fio..." -#: network.cgi:474 +#: network.cgi:470 msgid "Connection" msgstr "Conexão" -#: network.cgi:480 +#: network.cgi:476 #, fuzzy msgid "Network SSID" msgstr "Rede" -#: network.cgi:484 +#: network.cgi:480 msgid "Security" msgstr "" -#: network.cgi:495 +#: network.cgi:491 msgid "EAP method" msgstr "" -#: network.cgi:506 +#: network.cgi:502 msgid "Phase 2 authentication" msgstr "" -#: network.cgi:518 +#: network.cgi:514 msgid "CA certificate" msgstr "" -#: network.cgi:523 +#: network.cgi:519 msgid "User certificate" msgstr "" -#: network.cgi:528 +#: network.cgi:524 msgid "Identity" msgstr "" -#: network.cgi:533 +#: network.cgi:529 msgid "Anonymous identity" msgstr "" -#: network.cgi:538 +#: network.cgi:534 #, fuzzy msgid "Password" msgstr "Senha:" -#: network.cgi:541 +#: network.cgi:537 #, fuzzy msgid "Show password" msgstr "Nova senha: " -#: network.cgi:582 +#: network.cgi:549 network.cgi:678 msgid "Configure" msgstr "Configuração" -#: network.cgi:601 +#: network.cgi:550 +msgid "Share" +msgstr "" + +#: network.cgi:591 +msgid "Share Wi-Fi network with your friends" +msgstr "" + +#: network.cgi:607 msgid "" "These values are the wifi settings in the main /etc/network.conf " "configuration file" @@ -483,77 +506,188 @@ "Esses valores são as configurações da rede sem fio no arquivo de " "configuração /etc/network.conf" -#: network.cgi:607 +#: network.cgi:613 msgid "Output of iwconfig" msgstr "Saída do iwconfig" -#: network.cgi:616 +#: network.cgi:622 msgid "Manage network connections and services" msgstr "Gerenciar serviços e conexões de rede" -#: network.cgi:635 +#: network.cgi:641 msgid "Restart" msgstr "Reiniciar" -#: network.cgi:639 +#: network.cgi:645 msgid "Configuration:" msgstr "Configuração:" -#: network.cgi:647 +#: network.cgi:653 #, fuzzy msgid "Network interfaces" msgstr "Status da Rede" -#: network.cgi:654 +#: network.cgi:660 msgid "forward packets between interfaces" msgstr "" -#: network.cgi:656 network.cgi:690 boot.cgi:332 settings.cgi:608 -#: settings.cgi:722 +#: network.cgi:662 network.cgi:693 boot.cgi:327 settings.cgi:626 +#: settings.cgi:740 msgid "Change" msgstr "Alterar" -#: network.cgi:665 +#: network.cgi:670 hosts.cgi:179 msgid "Hosts" msgstr "Hosts" -#: network.cgi:682 +#: network.cgi:672 +msgid "%d record in the hosts DB" +msgid_plural "%d records in the hosts DB" +msgstr[0] "" +msgstr[1] "" + +#: network.cgi:679 hosts.cgi:16 +msgid "Use hosts file as Ad blocker" +msgstr "" + +#: network.cgi:686 msgid "Hostname" msgstr "Nome do host" -#: network.cgi:702 +#: network.cgi:705 msgid "Output of ifconfig" msgstr "Saída do ifconfig" -#: network.cgi:708 +#: network.cgi:711 msgid "Routing table" msgstr "Tabela de roteamento" -#: network.cgi:715 +#: network.cgi:717 msgid "Domain name resolution" msgstr "Resolução de nome de domínio" -#: network.cgi:730 +#: network.cgi:723 msgid "ARP table" msgstr "Tabela ARP" -#: network.cgi:750 +#: network.cgi:743 msgid "Proxy" msgstr "" -#: network.cgi:751 +#: network.cgi:744 hosts.cgi:200 hosts.cgi:207 msgid "Add" msgstr "" -#: network.cgi:764 +#: network.cgi:757 msgid "IP Connections" msgstr "Conexões IP" -#: network.cgi:774 +#: network.cgi:765 msgid "Firewall" msgstr "" -#: boot.cgi:16 styles/default/header.html:62 +#: network.cgi:766 +msgid "Port knocker" +msgstr "" + +#: hosts.cgi:107 +msgid "Host \"%s\" added to /etc/hosts." +msgstr "" + +#: hosts.cgi:120 +msgid "%d record disabled" +msgid_plural "%d records disabled" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:130 +msgid "Installing the \"%s\"..." +msgstr "" + +#: hosts.cgi:132 hosts.cgi:142 hosts.cgi:152 +msgid "Done" +msgstr "" + +#: hosts.cgi:140 +msgid "Updating the \"%s\"..." +msgstr "" + +#: hosts.cgi:150 +#, fuzzy +msgid "Removing the \"%s\"..." +msgstr "Reportando a: %s" + +#: hosts.cgi:163 +msgid "%d record used for Ad blocking" +msgid_plural "%d records used for Ad blocking" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:169 +msgid "%d record found for \"%s\"" +msgid_plural "%d records found for \"%s\"" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:173 +msgid " (The list is limited to the first 100 entries.)" +msgstr "" + +#: hosts.cgi:194 +#, fuzzy +msgid "Disable selected" +msgstr "Desabilitar" + +#: hosts.cgi:213 +#, fuzzy +msgid "Manage lists" +msgstr "Gerenciar usuários" + +#: hosts.cgi:214 +msgid "" +"You can use one or more prepared hosts files to block advertisements, " +"malware and other irritants." +msgstr "" + +#: hosts.cgi:220 +msgid "Details" +msgstr "" + +#: hosts.cgi:221 +msgid "Updates" +msgstr "" + +#: hosts.cgi:222 +#, fuzzy +msgid "Actions" +msgstr "Ação" + +#: hosts.cgi:235 +msgid "info" +msgstr "" + +#: hosts.cgi:237 +msgid "Updated monthly" +msgstr "" + +#: hosts.cgi:238 +msgid "Updated regularly" +msgstr "" + +#: hosts.cgi:276 +msgid "Upgrade" +msgstr "" + +#: hosts.cgi:281 +#, fuzzy +msgid "Remove" +msgstr "Remover usuário" + +#: hosts.cgi:287 +msgid "Install" +msgstr "" + +#: boot.cgi:16 styles/default/header.html:65 msgid "Boot" msgstr "Boot" @@ -561,228 +695,228 @@ msgid "Show more..." msgstr "Mostrar mais..." -#: boot.cgi:40 boot.cgi:45 boot.cgi:486 styles/default/header.html:80 +#: boot.cgi:40 boot.cgi:45 boot.cgi:481 styles/default/header.html:83 #, fuzzy msgid "System logs" msgstr "Linguagem do sistema" -#: boot.cgi:95 +#: boot.cgi:90 msgid "Boot log files" msgstr "Arquivos de log de boot" -#: boot.cgi:100 styles/default/header.html:76 +#: boot.cgi:95 styles/default/header.html:79 msgid "X server" msgstr "Servidor X" -#: boot.cgi:101 styles/default/header.html:77 +#: boot.cgi:96 styles/default/header.html:80 msgid "X session" msgstr "" -#: boot.cgi:120 boot.cgi:487 styles/default/header.html:81 +#: boot.cgi:115 boot.cgi:482 styles/default/header.html:84 msgid "Manage daemons" msgstr "Gerenciar daemons" -#: boot.cgi:123 +#: boot.cgi:118 msgid "Check, start and stop daemons on SliTaz" msgstr "Checar, iniciar e parar daemons no SliTaz" -#: boot.cgi:148 hardware.cgi:177 settings.cgi:434 +#: boot.cgi:143 hardware.cgi:177 settings.cgi:452 msgid "Description" msgstr "Descrição" -#: boot.cgi:151 +#: boot.cgi:146 msgid "Action" msgstr "Ação" -#: boot.cgi:152 +#: boot.cgi:147 msgid "PID" msgstr "PID" -#: boot.cgi:177 +#: boot.cgi:172 msgid "SliTaz Firewall with iptable rules" msgstr "Firewall do SliTaz com regras do iptables" -#: boot.cgi:179 +#: boot.cgi:174 msgid "Small and fast web server with CGI support" msgstr "Pequeno e rápido servidor web com suporte a CGI" -#: boot.cgi:182 +#: boot.cgi:177 msgid "Network time protocol daemon" msgstr "Daemon do protocolo de tempo de rede" -#: boot.cgi:185 +#: boot.cgi:180 msgid "Anonymous FTP server" msgstr "Servidor FTP anônimo" -#: boot.cgi:188 +#: boot.cgi:183 msgid "Busybox DHCP server" msgstr "Servidor DHCP do busybox" -#: boot.cgi:191 +#: boot.cgi:186 msgid "Linux Kernel log daemon" msgstr "Daemon de log do kernel Linux" -#: boot.cgi:194 +#: boot.cgi:189 msgid "Execute scheduled commands" msgstr "Executar comandos agendados" -#: boot.cgi:197 +#: boot.cgi:192 msgid "Small static DNS server daemon" msgstr "Daemon do pequeno servidor estático de DNS" -#: boot.cgi:200 +#: boot.cgi:195 msgid "Transfer a file on tftp request" msgstr "Transferir um arquivo por requisição tftp" -#: boot.cgi:203 +#: boot.cgi:198 #, fuzzy msgid "Printer daemon" msgstr "Gerenciar daemons" -#: boot.cgi:205 +#: boot.cgi:200 msgid "Listen for network connections and launch programs" msgstr "Esperar por uma conexão de rede e executa programas" -#: boot.cgi:208 +#: boot.cgi:203 msgid "Manage a ZeroConf IPv4 link-local address" msgstr "Gerencia um endereço IPv4 pelo ZeroConf" -#: boot.cgi:277 +#: boot.cgi:272 msgid "Started" msgstr "Iniciado" -#: boot.cgi:288 +#: boot.cgi:283 msgid "Stopped" msgstr "Parado" -#: boot.cgi:314 +#: boot.cgi:309 msgid "GRUB Boot loader" msgstr "Gerenciador de boot GRUB" -#: boot.cgi:316 +#: boot.cgi:311 msgid "The first application started when the computer powers on" msgstr "O primeiro aplicativo iniciado quando o computador é ligado" -#: boot.cgi:323 +#: boot.cgi:318 msgid "Default entry:" msgstr "Entrada padrão:" -#: boot.cgi:325 +#: boot.cgi:320 msgid "Timeout:" msgstr "Timeout:" -#: boot.cgi:327 +#: boot.cgi:322 msgid "Splash image:" msgstr "Splash image:" -#: boot.cgi:339 +#: boot.cgi:334 msgid "View or edit menu.lst" msgstr "Ver ou alterar o menu.lst" -#: boot.cgi:344 +#: boot.cgi:339 msgid "Boot entries" msgstr "Entradas de boot" -#: boot.cgi:351 +#: boot.cgi:346 msgid "Entry" msgstr "Entrada" -#: boot.cgi:372 +#: boot.cgi:367 msgid "Web boot is available with gPXE" msgstr "Boot via web está disponível pelo gPXE" -#: boot.cgi:386 boot.cgi:490 styles/default/header.html:83 +#: boot.cgi:381 boot.cgi:485 styles/default/header.html:86 msgid "ISO mine" msgstr "" -#: boot.cgi:388 +#: boot.cgi:383 msgid "Invalid ISO image." msgstr "" -#: boot.cgi:410 +#: boot.cgi:403 msgid "ISO image file full path" msgstr "" -#: boot.cgi:411 +#: boot.cgi:404 msgid "set /dev/cdrom for a physical CD-ROM" msgstr "" -#: boot.cgi:414 +#: boot.cgi:407 msgid "Working directory" msgstr "" -#: boot.cgi:416 +#: boot.cgi:409 msgid "Target partition" msgstr "" -#: boot.cgi:417 +#: boot.cgi:410 msgid "" "For hard disk installation only. Will create /slitaz tree and keep other " "files. No partitioning and no formatting." msgstr "" -#: boot.cgi:420 +#: boot.cgi:413 msgid "Choose a partition (optional)" msgstr "" -#: boot.cgi:431 +#: boot.cgi:424 msgid "USB key device" msgstr "" -#: boot.cgi:432 +#: boot.cgi:425 msgid "For USB boot key only. Will erase the full device." msgstr "" -#: boot.cgi:435 +#: boot.cgi:428 msgid "Choose a USB key (optional)" msgstr "" -#: boot.cgi:454 +#: boot.cgi:449 #, fuzzy msgid "Choose an action" msgstr "Conexão" -#: boot.cgi:467 +#: boot.cgi:462 msgid "Mine" msgstr "" -#: boot.cgi:480 +#: boot.cgi:475 msgid "Boot & Start services" msgstr "Serviços de Boot & inicialização" -#: boot.cgi:482 +#: boot.cgi:477 msgid "Everything that happens before user login" msgstr "Tudo o que ocorre antes do login de usuário" -#: boot.cgi:485 styles/default/header.html:72 +#: boot.cgi:480 styles/default/header.html:75 msgid "Boot logs" msgstr "Logs de boot" -#: boot.cgi:493 styles/default/header.html:68 +#: boot.cgi:488 styles/default/header.html:71 msgid "Boot loader" msgstr "Gerenciador de boot" -#: boot.cgi:500 +#: boot.cgi:495 msgid "Configuration files" msgstr "Arquivos de configuração" -#: boot.cgi:503 +#: boot.cgi:498 msgid "Main configuration file:" msgstr "Arquivo de configuração principal:" -#: boot.cgi:505 +#: boot.cgi:500 msgid "Login manager settings:" msgstr "Configurações do gerenciador de login:" -#: boot.cgi:513 +#: boot.cgi:508 msgid "Kernel cmdline" msgstr "Opções de linha de comando do kernel" -#: boot.cgi:520 +#: boot.cgi:515 msgid "Local startup commands" msgstr "Comandos de inicialização locais" -#: hardware.cgi:13 styles/default/header.html:88 +#: hardware.cgi:13 styles/default/header.html:91 msgid "Hardware" msgstr "Hardware" @@ -790,7 +924,7 @@ msgid "Bus" msgstr "" -#: hardware.cgi:55 hardware.cgi:534 +#: hardware.cgi:55 hardware.cgi:527 msgid "Device" msgstr "" @@ -807,7 +941,7 @@ msgid "Detect PCI and USB hardware" msgstr "Detectar hardware PCI e USB" -#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:91 +#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:94 msgid "Kernel modules" msgstr "Módulos de kernel" @@ -839,11 +973,11 @@ msgid "Module" msgstr "Módulo" -#: hardware.cgi:178 hardware.cgi:536 lib/libtazpanel:297 +#: hardware.cgi:178 hardware.cgi:529 lib/libtazpanel:312 msgid "Size" msgstr "Tamanho" -#: hardware.cgi:179 hardware.cgi:593 lib/libtazpanel:299 +#: hardware.cgi:179 hardware.cgi:586 lib/libtazpanel:314 msgid "Used" msgstr "Usado" @@ -871,7 +1005,7 @@ msgid "Manage your computer hardware" msgstr "Gerencie o hardware de seu computador" -#: hardware.cgi:249 styles/default/header.html:92 +#: hardware.cgi:249 styles/default/header.html:95 msgid "Detect PCI/USB" msgstr "Detectar PCI/USB" @@ -921,77 +1055,77 @@ msgid "Filesystems table" msgstr "Tabela do sistema de arquivos" -#: hardware.cgi:500 lib/libtazpanel:294 +#: hardware.cgi:493 lib/libtazpanel:309 msgid "Disk" msgstr "Disco" -#: hardware.cgi:501 lib/libtazpanel:300 +#: hardware.cgi:494 lib/libtazpanel:315 msgid "Mount point" msgstr "Ponto de montagem" -#: hardware.cgi:502 lib/libtazpanel:296 +#: hardware.cgi:495 lib/libtazpanel:311 msgid "Type" msgstr "Tipo" -#: hardware.cgi:503 +#: hardware.cgi:496 msgid "Options" msgstr "Opções" -#: hardware.cgi:504 +#: hardware.cgi:497 msgid "Freq" msgstr "Freq" -#: hardware.cgi:505 +#: hardware.cgi:498 msgid "Pass" msgstr "Senha" -#: hardware.cgi:527 +#: hardware.cgi:520 msgid "Loop devices" msgstr "Dispositivos em loop" -#: hardware.cgi:535 +#: hardware.cgi:528 #, fuzzy msgid "Backing file" msgstr "Arquivo de configuração" -#: hardware.cgi:537 +#: hardware.cgi:530 #, fuzzy msgid "Access" msgstr "Ponto de acesso" -#: hardware.cgi:538 +#: hardware.cgi:531 msgid "Offset" msgstr "" -#: hardware.cgi:547 +#: hardware.cgi:540 msgid "read/write" msgstr "" -#: hardware.cgi:548 hardware.cgi:573 +#: hardware.cgi:541 hardware.cgi:566 msgid "read only" msgstr "" -#: hardware.cgi:570 +#: hardware.cgi:563 msgid "Setup" msgstr "" -#: hardware.cgi:571 +#: hardware.cgi:564 msgid "new backing file:" msgstr "" -#: hardware.cgi:572 +#: hardware.cgi:565 msgid "offset in bytes:" msgstr "" -#: hardware.cgi:590 +#: hardware.cgi:583 msgid "System memory" msgstr "Memória do sistema" -#: hardware.cgi:596 +#: hardware.cgi:589 msgid "Buffers" msgstr "" -#: hardware.cgi:599 +#: hardware.cgi:592 msgid "Free" msgstr "" @@ -999,148 +1133,153 @@ msgid "System settings" msgstr "Configurações do sistema" -#: settings.cgi:82 settings.cgi:621 settings.cgi:648 settings.cgi:653 +#: settings.cgi:100 settings.cgi:639 settings.cgi:666 settings.cgi:671 msgid "Set date" msgstr "Configurar data" -#: settings.cgi:208 settings.cgi:595 +#: settings.cgi:226 settings.cgi:613 msgid "Manage groups" msgstr "Gerenciar grupos" -#: settings.cgi:216 settings.cgi:293 +#: settings.cgi:234 settings.cgi:311 msgid "Selection:" msgstr "Seleção:" -#: settings.cgi:217 +#: settings.cgi:235 msgid "Delete group" msgstr "Deletar grupo" -#: settings.cgi:224 +#: settings.cgi:242 msgid "Group" msgstr "Grupo" -#: settings.cgi:225 +#: settings.cgi:243 msgid "Group ID" msgstr "ID do Grupo" -#: settings.cgi:226 +#: settings.cgi:244 msgid "Members" msgstr "Membros" -#: settings.cgi:253 +#: settings.cgi:271 msgid "Add a new group" msgstr "Adicionar um novo grupo" -#: settings.cgi:256 settings.cgi:268 +#: settings.cgi:274 settings.cgi:286 msgid "Group name:" msgstr "Nome do grupo:" -#: settings.cgi:257 +#: settings.cgi:275 msgid "Create group" msgstr "Criar grupo" -#: settings.cgi:264 +#: settings.cgi:282 msgid "Manage group membership" msgstr "Gerenciar membros do grupo" -#: settings.cgi:269 settings.cgi:356 +#: settings.cgi:287 settings.cgi:374 msgid "User name:" msgstr "Nome de usuário:" -#: settings.cgi:272 +#: settings.cgi:290 msgid "Add user" msgstr "Adicionar usuário" -#: settings.cgi:273 +#: settings.cgi:291 msgid "Remove user" msgstr "Remover usuário" -#: settings.cgi:286 settings.cgi:594 +#: settings.cgi:304 settings.cgi:612 msgid "Manage users" msgstr "Gerenciar usuários" -#: settings.cgi:294 +#: settings.cgi:312 msgid "Delete user" msgstr "Deletar usuário" -#: settings.cgi:295 +#: settings.cgi:313 msgid "Lock user" msgstr "Bloquear usuário" -#: settings.cgi:296 +#: settings.cgi:314 msgid "Unlock user" msgstr "Desbloquear usuário" -#: settings.cgi:302 +#: settings.cgi:320 msgid "Login" msgstr "Login" -#: settings.cgi:303 +#: settings.cgi:321 msgid "User ID" msgstr "ID de usuário" -#: settings.cgi:304 +#: settings.cgi:322 #, fuzzy msgid "User Name" msgstr "Nome de usuário:" -#: settings.cgi:305 +#: settings.cgi:323 msgid "Home" msgstr "Diretório Home" -#: settings.cgi:306 +#: settings.cgi:324 msgid "Shell" msgstr "Shell" -#: settings.cgi:340 +#: settings.cgi:358 msgid "Password:" msgstr "Senha:" -#: settings.cgi:342 +#: settings.cgi:359 +#, fuzzy +msgid "New password" +msgstr "Nova senha: " + +#: settings.cgi:360 msgid "Change password" msgstr "Alterar senha" -#: settings.cgi:349 +#: settings.cgi:367 msgid "Add a new user" msgstr "Adicionar um novo usuário" -#: settings.cgi:354 +#: settings.cgi:372 msgid "User login:" msgstr "Login do usuário:" -#: settings.cgi:358 +#: settings.cgi:376 msgid "User password:" msgstr "Senha do usuário:" -#: settings.cgi:363 +#: settings.cgi:381 msgid "Create user" msgstr "Criar usuário" -#: settings.cgi:373 +#: settings.cgi:391 msgid "Current user sessions" msgstr "Sessões do usuário atual" -#: settings.cgi:383 +#: settings.cgi:401 msgid "Last user sessions" msgstr "Sessões do último usuário" -#: settings.cgi:395 +#: settings.cgi:413 msgid "Choose locale" msgstr "Escolher locale" -#: settings.cgi:398 +#: settings.cgi:416 msgid "Please wait..." msgstr "Favor aguardar..." -#: settings.cgi:403 +#: settings.cgi:421 msgid "Current locale settings:" msgstr "Configuração atual de locale:" -#: settings.cgi:410 +#: settings.cgi:428 msgid "Locales that are currently installed on the machine:" msgstr "Locales instalados na máquina:" -#: settings.cgi:420 +#: settings.cgi:438 #, fuzzy msgid "" "Can't see your language?
You can glibc-locale para obter uma listagem maior de " "locales." -#: settings.cgi:427 +#: settings.cgi:445 msgid "Available locales:" msgstr "Locales disponíveis:" -#: settings.cgi:431 +#: settings.cgi:449 msgid "Code" msgstr "Código" -#: settings.cgi:432 +#: settings.cgi:450 msgid "Language" msgstr "Linguagem" -#: settings.cgi:433 +#: settings.cgi:451 msgid "Territory" msgstr "Território" -#: settings.cgi:450 settings.cgi:451 +#: settings.cgi:468 settings.cgi:469 msgid "-d" msgstr "-d" -#: settings.cgi:462 settings.cgi:765 settings.cgi:777 settings.cgi:789 +#: settings.cgi:480 settings.cgi:783 settings.cgi:795 settings.cgi:807 msgid "Activate" msgstr "Ativar" -#: settings.cgi:475 settings.cgi:497 +#: settings.cgi:493 settings.cgi:515 msgid "Small quick tweaks for user %s" msgstr "" -#: settings.cgi:500 +#: settings.cgi:518 #, fuzzy msgid "Terminal prompt" msgstr "Terminal" -#: settings.cgi:506 +#: settings.cgi:524 msgid "Monochrome" msgstr "" -#: settings.cgi:515 +#: settings.cgi:533 msgid "Colored" msgstr "" -#: settings.cgi:524 settings.cgi:572 +#: settings.cgi:542 settings.cgi:590 #, fuzzy msgid "Manual edit: %s" msgstr "Edição manual" -#: settings.cgi:525 +#: settings.cgi:543 msgid "" "To take effect: log out and log in to system or execute command in the " "terminal:" msgstr "" -#: settings.cgi:533 +#: settings.cgi:551 msgid "Menu button appearance" msgstr "" -#: settings.cgi:538 +#: settings.cgi:556 msgid "Icon:" msgstr "" -#: settings.cgi:541 settings.cgi:562 +#: settings.cgi:559 settings.cgi:580 msgid "Do not show" msgstr "" -#: settings.cgi:559 +#: settings.cgi:577 msgid "Text:" msgstr "" -#: settings.cgi:566 +#: settings.cgi:584 msgid "Show text" msgstr "" -#: settings.cgi:589 +#: settings.cgi:607 msgid "Manage system time, users or language settings" msgstr "Gerencie configurações do tempo do sistema, usuários e linguagem" -#: settings.cgi:599 +#: settings.cgi:617 msgid "System time" msgstr "Tempo do sistema" -#: settings.cgi:602 +#: settings.cgi:620 msgid "Time zone:" msgstr "Zona horária:" -#: settings.cgi:611 +#: settings.cgi:629 msgid "System time:" msgstr "Tempo do sistema:" -#: settings.cgi:613 +#: settings.cgi:631 msgid "Sync online" msgstr "Sincronização online" -#: settings.cgi:616 +#: settings.cgi:634 msgid "Hardware clock:" msgstr "Relógio de hardware:" -#: settings.cgi:618 +#: settings.cgi:636 msgid "Set hardware clock" msgstr "Configurar relógio do hardware" -#: settings.cgi:704 +#: settings.cgi:722 msgid "System language" msgstr "Linguagem do sistema" -#: settings.cgi:717 +#: settings.cgi:735 msgid "" "You must logout and login again to your current session to use %s locale." msgstr "Você deve sair e fazer login novamente para usar o novo locale %s." -#: settings.cgi:720 +#: settings.cgi:738 msgid "Current system locale:" msgstr "Locale da sessão atual:" -#: settings.cgi:732 +#: settings.cgi:750 msgid "Keyboard layout" msgstr "" -#: settings.cgi:746 +#: settings.cgi:764 msgid "Current console keymap: %s" msgstr "Mapa de teclado do console atual: %s" -#: settings.cgi:764 +#: settings.cgi:782 msgid "Suggested keymap for Xorg:" msgstr "Mapa de teclado sugerido para o Xorg:" -#: settings.cgi:773 +#: settings.cgi:791 msgid "Available keymaps:" msgstr "Mapa de teclado disponíveis:" -#: settings.cgi:784 +#: settings.cgi:802 msgid "Panel configuration" msgstr "Configuração do Painel" -#: settings.cgi:787 +#: settings.cgi:805 msgid "Style:" msgstr "Estilo:" -#: settings.cgi:793 +#: settings.cgi:811 msgid "Configuration files:" msgstr "Arquivos de configuração:" -#: settings.cgi:794 styles/default/header.html:42 +#: settings.cgi:812 styles/default/header.html:45 msgid "Panel" msgstr "Painel" -#: settings.cgi:795 +#: settings.cgi:813 msgid "Server" msgstr "Servidor" -#: settings.cgi:798 +#: settings.cgi:816 msgid "TazPanel provides a debugging mode and page:" msgstr "O TazPanel oferece um modo de debug e uma página dedicada:" -#: lib/libtazpanel:153 +#: lib/libtazpanel:156 msgid "connected" msgstr "Conectado" -#: lib/libtazpanel:170 +#: lib/libtazpanel:173 msgid "IP Address" msgstr "Endereço IP" -#: lib/libtazpanel:171 +#: lib/libtazpanel:174 msgid "Scan ports" msgstr "Buscar portas" -#: lib/libtazpanel:243 +#: lib/libtazpanel:249 #, fuzzy msgid "Please wait" msgstr "Favor aguardar..." -#: lib/libtazpanel:295 +#: lib/libtazpanel:310 msgid "Label" msgstr "Rótulo" -#: lib/libtazpanel:298 +#: lib/libtazpanel:313 msgid "Available" msgstr "Disponível" -#: lib/libtazpanel:367 +#: lib/libtazpanel:392 msgid "You must be root to show this page." msgstr "" @@ -1340,60 +1479,60 @@ msgid "Help & Doc" msgstr "Ajuda & Doc" -#: styles/default/header.html:32 +#: styles/default/header.html:35 #, fuzzy msgid "Confirm break" msgstr "Configuração" -#: styles/default/header.html:45 +#: styles/default/header.html:48 msgid "Processes" msgstr "Processos" -#: styles/default/header.html:47 +#: styles/default/header.html:50 msgid "Create Report" msgstr "Criar relatório" -#: styles/default/header.html:55 +#: styles/default/header.html:58 msgid "Config file" msgstr "Arquivo de configuração" -#: styles/default/header.html:56 +#: styles/default/header.html:59 msgid "Ethernet" msgstr "Ethernet" -#: styles/default/header.html:57 +#: styles/default/header.html:60 msgid "Wireless" msgstr "Redes sem fio" -#: styles/default/header.html:101 +#: styles/default/header.html:104 msgid "Users" msgstr "Usuários" -#: styles/default/header.html:102 +#: styles/default/header.html:105 msgid "Groups" msgstr "Grupos" -#: styles/default/header.html:103 +#: styles/default/header.html:106 msgid "Tweaks" msgstr "" -#: styles/default/header.html:119 +#: styles/default/header.html:122 msgid "Some features are disabled." msgstr "" -#: styles/default/header.html:124 +#: styles/default/header.html:127 msgid "You are logged in to the TazPanel as user %s." msgstr "" -#: styles/default/header.html:125 +#: styles/default/header.html:128 msgid "Click to re-login." msgstr "" -#: styles/default/header.html:135 +#: styles/default/header.html:138 msgid "Copyright" msgstr "Copyright" -#: styles/default/header.html:137 +#: styles/default/header.html:140 msgid "BSD License" msgstr "BSD License" @@ -1407,9 +1546,6 @@ #~ msgid "Changing password for TazPanel" #~ msgstr "Mudando a senha para o TazPanel" -#~ msgid "New password: " -#~ msgstr "Nova senha: " - #~ msgid "Password changed successfully" #~ msgstr "Senha mudada com sucesso" @@ -1449,9 +1585,6 @@ #~ msgid "Activate (DHCP)" #~ msgstr "Ativar (DHCP)" -#~ msgid "Disable" -#~ msgstr "Desabilitar" - #~ msgid "Wifi name (ESSID)" #~ msgstr "ESSID da rede sem fio" diff -r 4f619f973b88 -r 3d4145137792 po/ru.po --- a/po/ru.po Mon Aug 24 01:05:08 2015 +0300 +++ b/po/ru.po Wed Aug 26 05:51:08 2015 +0300 @@ -7,40 +7,42 @@ msgstr "" "Project-Id-Version: TazPanel 1.5.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-12 12:25+0200\n" -"PO-Revision-Date: 2015-06-05 19:00+0300\n" +"POT-Creation-Date: 2015-08-26 05:38+0300\n" +"PO-Revision-Date: 2015-08-26 05:44+0300\n" "Last-Translator: Aleksej Bobylev \n" "Language-Team: \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Poedit-Language: Russian\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: ../\n" "X-Poedit-SearchPath-0: .\n" -#: tazpanel:52 +#: tazpanel:54 msgid "TazPanel is already running." msgstr "TazPanel уже запущена." -#: tazpanel:55 +#: tazpanel:57 msgid "Starting TazPanel web server on port %d..." msgstr "Веб-сервер TazPanel запускается на порту %d…" -#: tazpanel:57 +#: tazpanel:59 msgid "TazPanel Authentication - Default: root:root" msgstr "Аутентификация TazPanel (по умолчанию root:root)" -#: tazpanel:64 +#: tazpanel:66 msgid "TazPanel is not running." msgstr "TazPanel не была запущена." -#: tazpanel:67 +#: tazpanel:69 msgid "Stopping TazPanel web server..." msgstr "Остановка веб-сервера TazPanel…" -#: index.cgi:37 index.cgi:120 +#: index.cgi:37 +#: index.cgi:120 msgid "Differences" msgstr "Различия" @@ -52,25 +54,33 @@ msgid "File" msgstr "Файл" -#: index.cgi:119 index.cgi:138 index.cgi:176 +#: index.cgi:119 +#: index.cgi:138 +#: index.cgi:176 msgid "Save" msgstr "Сохранить" -#: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670 -#: network.cgi:720 boot.cgi:525 hardware.cgi:492 settings.cgi:766 +#: index.cgi:174 +#: settings.cgi:784 +#: lib/libtazpanel:378 msgid "Edit" msgstr "Правка" -#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:630 -#: styles/default/header.html:46 +#: index.cgi:225 +#: index.cgi:379 +#: index.cgi:402 +#: index.cgi:679 +#: styles/default/header.html:49 msgid "Terminal" msgstr "Терминал" -#: index.cgi:246 index.cgi:331 +#: index.cgi:246 +#: index.cgi:331 msgid "History" msgstr "Журнал" -#: index.cgi:247 lib/libtazpanel:348 +#: index.cgi:247 +#: lib/libtazpanel:361 msgid "Back" msgstr "Назад" @@ -88,9 +98,7 @@ #: index.cgi:295 msgid "Run any command at your own risk, avoid interactive commands (%s)" -msgstr "" -"Выполняйте любые команды на свой страх и риск, избегайте интерактивных " -"команд (%s)" +msgstr "Выполняйте любые команды на свой страх и риск, избегайте интерактивных команд (%s)" #: index.cgi:300 msgid "Downloading to: %s" @@ -104,7 +112,8 @@ msgid "Please, don't run interactive command \"%s\"" msgstr "Пожалуйста, не выполняйте интерактивную команду «%s»" -#: index.cgi:330 styles/default/header.html:98 +#: index.cgi:330 +#: styles/default/header.html:101 msgid "Settings" msgstr "Параметры" @@ -128,7 +137,8 @@ msgid "Apply" msgstr "Применить" -#: index.cgi:445 index.cgi:631 +#: index.cgi:445 +#: index.cgi:680 msgid "Process activity" msgstr "Процессы" @@ -172,7 +182,8 @@ msgid "Creating report header..." msgstr "Создание заголовка отчёта…" -#: index.cgi:505 index.cgi:522 +#: index.cgi:505 +#: index.cgi:522 msgid "SliTaz system report" msgstr "Системный отчёт SliTaz" @@ -200,355 +211,518 @@ msgid "Getting boot logs..." msgstr "Получение журналов загрузки…" -#: index.cgi:589 boot.cgi:98 styles/default/header.html:74 +#: index.cgi:589 +#: boot.cgi:93 +#: styles/default/header.html:77 msgid "Kernel messages" msgstr "Сообщения ядра" -#: index.cgi:592 boot.cgi:99 styles/default/header.html:75 +#: index.cgi:592 +#: boot.cgi:94 +#: styles/default/header.html:78 msgid "Boot scripts" msgstr "Загрузочные скрипты" #: index.cgi:597 +msgid "Getting package list..." +msgstr "Получение информации о пакетах…" + +#: index.cgi:600 +msgid "Packages" +msgstr "Пакеты" + +#: index.cgi:638 +msgid "Getting extra reports..." +msgstr "Получение дополнительных отчётов…" + +#: index.cgi:646 msgid "Creating report footer..." msgstr "Завершение создание отчёта…" -#: index.cgi:608 index.cgi:704 boot.cgi:504 boot.cgi:506 +#: index.cgi:657 +#: index.cgi:753 +#: boot.cgi:499 +#: boot.cgi:501 msgid "View" msgstr "Смотреть" -#: index.cgi:613 +#: index.cgi:662 msgid "This report can be attached with a bug report on:" msgstr "Этот отчёт можно прикрепить к баг-репорту здесь:" -#: index.cgi:623 +#: index.cgi:672 msgid "SliTaz administration and configuration Panel" msgstr "Панель администрирования и настройки SliTaz" -#: index.cgi:632 +#: index.cgi:681 msgid "Create a report" msgstr "Создать отчёт" -#: index.cgi:636 styles/default/header.html:44 styles/default/header.html:54 -#: styles/default/header.html:64 styles/default/header.html:90 -#: styles/default/header.html:100 +#: index.cgi:685 +#: styles/default/header.html:47 +#: styles/default/header.html:57 +#: styles/default/header.html:67 +#: styles/default/header.html:93 +#: styles/default/header.html:103 msgid "Summary" msgstr "Сводка" -#: index.cgi:638 +#: index.cgi:687 +#: hosts.cgi:203 msgid "Host:" msgstr "Хост:" -#: index.cgi:639 +#: index.cgi:688 msgid "Uptime:" msgstr "Время работы:" -#: index.cgi:642 +#: index.cgi:691 msgid "Memory in Mb:" msgstr "Память в МБ:" -#: index.cgi:644 +#: index.cgi:693 msgid "Total: %d, Used: %d, Free: %d" msgstr "Всего: %d, занято: %d, свободно: %d" -#: index.cgi:648 +#: index.cgi:697 msgid "Linux kernel:" msgstr "Ядро Linux:" -#: index.cgi:657 +#: index.cgi:706 msgid "Network status" msgstr "Состояние сети" -#: index.cgi:659 network.cgi:15 network.cgi:215 styles/default/header.html:52 +#: index.cgi:708 +#: network.cgi:15 +#: network.cgi:216 +#: hosts.cgi:15 +#: styles/default/header.html:55 msgid "Network" msgstr "Сети" -#: index.cgi:668 hardware.cgi:349 +#: index.cgi:717 +#: hardware.cgi:349 msgid "Filesystem usage statistics" msgstr "Статистика использования файловых систем" -#: index.cgi:670 styles/default/header.html:93 +#: index.cgi:719 +#: styles/default/header.html:96 msgid "Disks" msgstr "Диски" -#: index.cgi:702 +#: index.cgi:751 msgid "Panel Activity" msgstr "Действия панели" -#: network.cgi:152 +#: network.cgi:153 msgid "Changed hostname: %s" msgstr "Изменённое название хоста: %s" -#: network.cgi:209 +#: network.cgi:210 msgid "Scanning open ports..." msgstr "Сканирование открытых портов…" -#: network.cgi:214 +#: network.cgi:215 msgid "Port scanning for %s" msgstr "Сканирование портов адреса %s" -#: network.cgi:225 +#: network.cgi:226 msgid "Ethernet connection" msgstr "Соединение Ethernet" -#: network.cgi:243 -msgid "" -"Here you can configure a wired connection using DHCP to automatically get a " -"random IP or configure a static/fixed IP" -msgstr "" -"Здесь вы можете настроить проводное соединение, использующее DHCP для " -"автоматического получения случайного IP, или указать статический " -"(фиксированный) IP" +#: network.cgi:244 +msgid "Here you can configure a wired connection using DHCP to automatically get a random IP or configure a static/fixed IP" +msgstr "Здесь вы можете настроить проводное соединение, использующее DHCP для автоматического получения случайного IP, или указать статический (фиксированный) IP" -#: network.cgi:247 boot.cgi:149 +#: network.cgi:248 +#: boot.cgi:144 msgid "Configuration" msgstr "Настройки" -#: network.cgi:253 lib/libtazpanel:167 +#: network.cgi:254 +#: lib/libtazpanel:170 msgid "Interface" msgstr "Интерфейс" -#: network.cgi:261 +#: network.cgi:262 msgid "Static IP" msgstr "Статический IP" -#: network.cgi:263 +#: network.cgi:264 msgid "Use static IP" msgstr "Использовать статический IP" -#: network.cgi:265 +#: network.cgi:266 msgid "IP address" msgstr "Адрес IP" -#: network.cgi:268 +#: network.cgi:269 msgid "Netmask" msgstr "Маска сети" -#: network.cgi:271 +#: network.cgi:272 msgid "Gateway" msgstr "Шлюз" -#: network.cgi:274 +#: network.cgi:275 msgid "DNS server" msgstr "Сервер DNS" -#: network.cgi:277 network.cgi:297 +#: network.cgi:278 +#: network.cgi:298 msgid "Wake up" msgstr "«Разбудить»" -#: network.cgi:279 +#: network.cgi:280 msgid "Wake up machines by network" msgstr "«Разбудить» компьютер по сети" -#: network.cgi:281 +#: network.cgi:282 msgid "MAC address to wake up" msgstr "MAC-адрес пробуждаемого компьютера" -#: network.cgi:282 network.cgi:287 +#: network.cgi:283 +#: network.cgi:288 msgid "Leave empty for a general wakeup" msgstr "Оставьте пустым, чтобы «разбудить» всех" -#: network.cgi:283 +#: network.cgi:284 msgid "List" msgstr "Список" -#: network.cgi:286 +#: network.cgi:287 msgid "MAC/IP address password" msgstr "MAC/IP-адрес пароль" -#: network.cgi:288 +#: network.cgi:289 msgid "Help" msgstr "Справка" -#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:289 +#: network.cgi:296 +#: network.cgi:446 +#: network.cgi:639 +#: boot.cgi:284 msgid "Start" msgstr "Запустить" -#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:278 +#: network.cgi:297 +#: network.cgi:447 +#: network.cgi:640 +#: boot.cgi:273 msgid "Stop" msgstr "Остановить" -#: network.cgi:321 network.cgi:591 +#: network.cgi:322 +#: network.cgi:602 msgid "Configuration file" msgstr "Файл настроек" -#: network.cgi:331 -msgid "" -"These values are the ethernet settings in the main /etc/network.conf " -"configuration file" -msgstr "" -"Эти значения — параметры Ethernet из основного конфигурационного файла /etc/" -"network.conf" +#: network.cgi:327 +msgid "These values are the ethernet settings in the main /etc/network.conf configuration file" +msgstr "Эти значения — параметры Ethernet из основного конфигурационного файла /etc/network.conf" -#: network.cgi:343 +#: network.cgi:339 msgid "(hidden)" msgstr "(скрыто)" -#: network.cgi:349 boot.cgi:147 hardware.cgi:57 lib/libtazpanel:168 +#: network.cgi:345 +#: hosts.cgi:219 +#: boot.cgi:142 +#: hardware.cgi:57 +#: lib/libtazpanel:171 msgid "Name" msgstr "Название" -#: network.cgi:350 +#: network.cgi:346 msgid "Signal level" msgstr "Уровень сигнала" -#: network.cgi:351 +#: network.cgi:347 msgid "Channel" msgstr "Канал" -#: network.cgi:352 +#: network.cgi:348 msgid "Encryption" msgstr "Шифрование" -#: network.cgi:353 boot.cgi:150 lib/libtazpanel:169 +#: network.cgi:349 +#: boot.cgi:145 +#: lib/libtazpanel:172 msgid "Status" msgstr "Состояние" -#: network.cgi:404 network.cgi:486 network.cgi:508 +#: network.cgi:400 +#: network.cgi:482 +#: network.cgi:504 msgid "None" msgstr "Нет" -#: network.cgi:410 +#: network.cgi:406 msgid "Connected" msgstr "Соединено" -#: network.cgi:436 +#: network.cgi:432 msgid "Wireless connection" msgstr "Беспроводное соединение" -#: network.cgi:452 lib/libtazpanel:150 +#: network.cgi:448 +#: lib/libtazpanel:153 msgid "Scan" msgstr "Сканировать" -#: network.cgi:460 +#: network.cgi:456 msgid "Scanning wireless interface..." msgstr "Сканирование беспроводного интерфейса…" -#: network.cgi:474 +#: network.cgi:470 msgid "Connection" msgstr "Соединение" -#: network.cgi:480 +#: network.cgi:476 msgid "Network SSID" msgstr "Имя сети (SSID)" -#: network.cgi:484 +#: network.cgi:480 msgid "Security" msgstr "Безопасность" -#: network.cgi:495 +#: network.cgi:491 msgid "EAP method" msgstr "Метод EAP" -#: network.cgi:506 +#: network.cgi:502 msgid "Phase 2 authentication" msgstr "2-й этап аутентификации" -#: network.cgi:518 +#: network.cgi:514 msgid "CA certificate" msgstr "Сертификат центра сертификации" -#: network.cgi:523 +#: network.cgi:519 msgid "User certificate" msgstr "Сертификат пользователя" -#: network.cgi:528 +#: network.cgi:524 msgid "Identity" msgstr "Пользователь" -#: network.cgi:533 +#: network.cgi:529 msgid "Anonymous identity" msgstr "Неизвестный" -#: network.cgi:538 +#: network.cgi:534 msgid "Password" msgstr "Пароль" -#: network.cgi:541 +#: network.cgi:537 msgid "Show password" msgstr "Показать пароль" -#: network.cgi:582 +#: network.cgi:549 +#: network.cgi:678 msgid "Configure" msgstr "Настроить" -#: network.cgi:601 -msgid "" -"These values are the wifi settings in the main /etc/network.conf " -"configuration file" -msgstr "" -"Эти значения — параметры Wi-Fi из основного конфигурационного файла /etc/" -"network.conf" +#: network.cgi:550 +msgid "Share" +msgstr "Поделиться" + +#: network.cgi:591 +msgid "Share Wi-Fi network with your friends" +msgstr "Поделитесь этой сетью Wi-Fi со своими друзьями" #: network.cgi:607 +msgid "These values are the wifi settings in the main /etc/network.conf configuration file" +msgstr "Эти значения — параметры Wi-Fi из основного конфигурационного файла /etc/network.conf" + +#: network.cgi:613 msgid "Output of iwconfig" msgstr "Вывод команды iwconfig" -#: network.cgi:616 +#: network.cgi:622 msgid "Manage network connections and services" msgstr "Управление сетевыми соединениями и службами" -#: network.cgi:635 +#: network.cgi:641 msgid "Restart" msgstr "Перезапуск" -#: network.cgi:639 +#: network.cgi:645 msgid "Configuration:" msgstr "Настройки:" -#: network.cgi:647 +#: network.cgi:653 msgid "Network interfaces" msgstr "Сетевые интерфейсы" -#: network.cgi:654 +#: network.cgi:660 msgid "forward packets between interfaces" msgstr "включить форвардинг пакетов между интерфейсами" -#: network.cgi:656 network.cgi:690 boot.cgi:332 settings.cgi:608 -#: settings.cgi:722 +#: network.cgi:662 +#: network.cgi:693 +#: boot.cgi:327 +#: settings.cgi:626 +#: settings.cgi:740 msgid "Change" msgstr "Изменить" -#: network.cgi:665 +#: network.cgi:670 +#: hosts.cgi:179 msgid "Hosts" msgstr "Хосты" -#: network.cgi:682 +#: network.cgi:672 +msgid "%d record in the hosts DB" +msgid_plural "%d records in the hosts DB" +msgstr[0] "%d запись в базе данных hosts" +msgstr[1] "%d записи в базе данных hosts" +msgstr[2] "%d записей в базе данных hosts" + +#: network.cgi:679 +#: hosts.cgi:16 +msgid "Use hosts file as Ad blocker" +msgstr "Блокирование рекламы при помощи файла hosts" + +#: network.cgi:686 msgid "Hostname" msgstr "Имя хоста" -#: network.cgi:702 +#: network.cgi:705 msgid "Output of ifconfig" msgstr "Вывод команды ifconfig" -#: network.cgi:708 +#: network.cgi:711 msgid "Routing table" msgstr "Таблица маршрутизации" -#: network.cgi:715 +#: network.cgi:717 msgid "Domain name resolution" msgstr "Разрешение доменных имён" -#: network.cgi:730 +#: network.cgi:723 msgid "ARP table" msgstr "Таблица ARP" -#: network.cgi:750 +#: network.cgi:743 msgid "Proxy" msgstr "Прокси" -#: network.cgi:751 +#: network.cgi:744 +#: hosts.cgi:200 +#: hosts.cgi:207 msgid "Add" msgstr "Добавить" -#: network.cgi:764 +#: network.cgi:757 msgid "IP Connections" msgstr "Соединения IP" -#: network.cgi:774 +#: network.cgi:765 msgid "Firewall" msgstr "Брандмауэр" -#: boot.cgi:16 styles/default/header.html:62 +#: network.cgi:766 +msgid "Port knocker" +msgstr "«Port knocking»" + +#: hosts.cgi:107 +msgid "Host \"%s\" added to /etc/hosts." +msgstr "Хост «%s» добавлен в /etc/hosts." + +#: hosts.cgi:120 +msgid "%d record disabled" +msgid_plural "%d records disabled" +msgstr[0] "%d запись отключена" +msgstr[1] "%d записи отключены" +msgstr[2] "%d записей отключены" + +#: hosts.cgi:130 +msgid "Installing the \"%s\"..." +msgstr "Установка «%s»…" + +#: hosts.cgi:132 +#: hosts.cgi:142 +#: hosts.cgi:152 +msgid "Done" +msgstr "Готово" + +#: hosts.cgi:140 +msgid "Updating the \"%s\"..." +msgstr "Обновление «%s»…" + +#: hosts.cgi:150 +msgid "Removing the \"%s\"..." +msgstr "Удаление «%s»…" + +#: hosts.cgi:163 +msgid "%d record used for Ad blocking" +msgid_plural "%d records used for Ad blocking" +msgstr[0] "%d запись используется для блокирования рекламы" +msgstr[1] "%d записи используются для блокирования рекламы" +msgstr[2] "%d записей используются для блокирования рекламы" + +#: hosts.cgi:169 +msgid "%d record found for \"%s\"" +msgid_plural "%d records found for \"%s\"" +msgstr[0] "%d запись найдена по запросу «%s»" +msgstr[1] "%d записи найдены по запросу «%s»" +msgstr[2] "%d записей найдены по запросу «%s»" + +#: hosts.cgi:173 +msgid " (The list is limited to the first 100 entries.)" +msgstr " (Список ограничен первыми 100 записями)" + +#: hosts.cgi:194 +msgid "Disable selected" +msgstr "Отключить выбранное" + +#: hosts.cgi:213 +msgid "Manage lists" +msgstr "Управление списками" + +#: hosts.cgi:214 +msgid "You can use one or more prepared hosts files to block advertisements, malware and other irritants." +msgstr "Вы можете использовать один или несколько готовых файлов hosts, чтобы блокировать рекламу, вредоносные сайты и прочие назойливые вещи." + +#: hosts.cgi:220 +msgid "Details" +msgstr "Подробности" + +#: hosts.cgi:221 +msgid "Updates" +msgstr "Обновления" + +#: hosts.cgi:222 +msgid "Actions" +msgstr "Действия" + +#: hosts.cgi:235 +msgid "info" +msgstr "информация" + +#: hosts.cgi:237 +msgid "Updated monthly" +msgstr "Обновляется ежемесячно" + +#: hosts.cgi:238 +msgid "Updated regularly" +msgstr "Обновляется регулярно" + +#: hosts.cgi:276 +msgid "Upgrade" +msgstr "Обновить" + +#: hosts.cgi:281 +msgid "Remove" +msgstr "Удалить" + +#: hosts.cgi:287 +msgid "Install" +msgstr "Установить" + +#: boot.cgi:16 +#: styles/default/header.html:65 msgid "Boot" msgstr "Загрузка" @@ -556,226 +730,237 @@ msgid "Show more..." msgstr "Показать больше…" -#: boot.cgi:40 boot.cgi:45 boot.cgi:486 styles/default/header.html:80 +#: boot.cgi:40 +#: boot.cgi:45 +#: boot.cgi:481 +#: styles/default/header.html:83 msgid "System logs" msgstr "Системные журналы" -#: boot.cgi:95 +#: boot.cgi:90 msgid "Boot log files" msgstr "Журналы загрузки" -#: boot.cgi:100 styles/default/header.html:76 +#: boot.cgi:95 +#: styles/default/header.html:79 msgid "X server" msgstr "X-сервер" -#: boot.cgi:101 styles/default/header.html:77 +#: boot.cgi:96 +#: styles/default/header.html:80 msgid "X session" msgstr "Сеанс X" -#: boot.cgi:120 boot.cgi:487 styles/default/header.html:81 +#: boot.cgi:115 +#: boot.cgi:482 +#: styles/default/header.html:84 msgid "Manage daemons" msgstr "Управление службами" -#: boot.cgi:123 +#: boot.cgi:118 msgid "Check, start and stop daemons on SliTaz" msgstr "Проверка, запуск и остановка служб SliTaz" -#: boot.cgi:148 hardware.cgi:177 settings.cgi:434 +#: boot.cgi:143 +#: hardware.cgi:177 +#: settings.cgi:452 msgid "Description" msgstr "Описание" -#: boot.cgi:151 +#: boot.cgi:146 msgid "Action" msgstr "Действие" -#: boot.cgi:152 +#: boot.cgi:147 msgid "PID" msgstr "PID" -#: boot.cgi:177 +#: boot.cgi:172 msgid "SliTaz Firewall with iptable rules" msgstr "Брандмауэр SliTaz с правилами iptable" -#: boot.cgi:179 +#: boot.cgi:174 msgid "Small and fast web server with CGI support" msgstr "Маленький и быстрый веб-сервер с поддержкой CGI" -#: boot.cgi:182 +#: boot.cgi:177 msgid "Network time protocol daemon" msgstr "Служба протокола сетевого времени" -#: boot.cgi:185 +#: boot.cgi:180 msgid "Anonymous FTP server" msgstr "Анонимный сервер FTP" -#: boot.cgi:188 +#: boot.cgi:183 msgid "Busybox DHCP server" msgstr "Сервер DHCP из Busybox" -#: boot.cgi:191 +#: boot.cgi:186 msgid "Linux Kernel log daemon" msgstr "Служба журнала ядра Linux" -#: boot.cgi:194 +#: boot.cgi:189 msgid "Execute scheduled commands" msgstr "Выполнение запланированных команд" -#: boot.cgi:197 +#: boot.cgi:192 msgid "Small static DNS server daemon" msgstr "Служба маленького статического сервера DNS" -#: boot.cgi:200 +#: boot.cgi:195 msgid "Transfer a file on tftp request" msgstr "Передача файлов по запросу TFTP" -#: boot.cgi:203 +#: boot.cgi:198 msgid "Printer daemon" msgstr "Служба печати" -#: boot.cgi:205 +#: boot.cgi:200 msgid "Listen for network connections and launch programs" msgstr "Прослушивание сетевых соединений и запуск программ" -#: boot.cgi:208 +#: boot.cgi:203 msgid "Manage a ZeroConf IPv4 link-local address" msgstr "Управление присоединенным-локальным адресом ZeroConf IPv4" -#: boot.cgi:277 +#: boot.cgi:272 msgid "Started" msgstr "Запущен" -#: boot.cgi:288 +#: boot.cgi:283 msgid "Stopped" msgstr "Остановлен" -#: boot.cgi:314 +#: boot.cgi:309 msgid "GRUB Boot loader" msgstr "Загрузчик GRUB" -#: boot.cgi:316 +#: boot.cgi:311 msgid "The first application started when the computer powers on" msgstr "Первое приложение, запускаемое при включении питания" -#: boot.cgi:323 +#: boot.cgi:318 msgid "Default entry:" msgstr "Пункт по умолчанию:" -#: boot.cgi:325 +#: boot.cgi:320 msgid "Timeout:" msgstr "Таймаут:" -#: boot.cgi:327 +#: boot.cgi:322 msgid "Splash image:" msgstr "Загрузочная картинка:" -#: boot.cgi:339 +#: boot.cgi:334 msgid "View or edit menu.lst" msgstr "Просмотр и правка menu.lst" -#: boot.cgi:344 +#: boot.cgi:339 msgid "Boot entries" msgstr "Загрузочные пункты" -#: boot.cgi:351 +#: boot.cgi:346 msgid "Entry" msgstr "Пункт" -#: boot.cgi:372 +#: boot.cgi:367 msgid "Web boot is available with gPXE" msgstr "Доступна веб-загрузка с gPXE" -#: boot.cgi:386 boot.cgi:490 styles/default/header.html:83 +#: boot.cgi:381 +#: boot.cgi:485 +#: styles/default/header.html:86 msgid "ISO mine" msgstr "Создание ISO-образов" -#: boot.cgi:388 +#: boot.cgi:383 msgid "Invalid ISO image." -msgstr "" +msgstr "Недопустимый образ ISO." + +#: boot.cgi:403 +msgid "ISO image file full path" +msgstr "Полный путь к файлу образа ISO" + +#: boot.cgi:404 +msgid "set /dev/cdrom for a physical CD-ROM" +msgstr "выберите /dev/cdrom для физического CD-ROM" + +#: boot.cgi:407 +msgid "Working directory" +msgstr "Рабочая папка" + +#: boot.cgi:409 +msgid "Target partition" +msgstr "Целевой раздел" #: boot.cgi:410 -msgid "ISO image file full path" -msgstr "" +msgid "For hard disk installation only. Will create /slitaz tree and keep other files. No partitioning and no formatting." +msgstr "Только для установки на жесткий диск. Будет создано дерево файлов в /slitaz и сохранены прочие файлы. Изменение разделов и форматирование не производятся." -#: boot.cgi:411 -msgid "set /dev/cdrom for a physical CD-ROM" -msgstr "" +#: boot.cgi:413 +msgid "Choose a partition (optional)" +msgstr "Выберите раздел (необязательный)" -#: boot.cgi:414 -msgid "Working directory" -msgstr "" +#: boot.cgi:424 +msgid "USB key device" +msgstr "USB-накопитель" -#: boot.cgi:416 -msgid "Target partition" -msgstr "" +#: boot.cgi:425 +msgid "For USB boot key only. Will erase the full device." +msgstr "Только для загрузочных USB-накопителей. Устройство будет полностью очищено." -#: boot.cgi:417 -msgid "" -"For hard disk installation only. Will create /slitaz tree and keep other " -"files. No partitioning and no formatting." -msgstr "" +#: boot.cgi:428 +msgid "Choose a USB key (optional)" +msgstr "Выберите USB-накопитель (необязательный)" -#: boot.cgi:420 -msgid "Choose a partition (optional)" -msgstr "" +#: boot.cgi:449 +msgid "Choose an action" +msgstr "Выберите действие" -#: boot.cgi:431 -msgid "USB key device" -msgstr "" +#: boot.cgi:462 +msgid "Mine" +msgstr "Производство" -#: boot.cgi:432 -msgid "For USB boot key only. Will erase the full device." -msgstr "" - -#: boot.cgi:435 -msgid "Choose a USB key (optional)" -msgstr "" - -#: boot.cgi:454 -#, fuzzy -msgid "Choose an action" -msgstr "Соединение" - -#: boot.cgi:467 -msgid "Mine" -msgstr "" - -#: boot.cgi:480 +#: boot.cgi:475 msgid "Boot & Start services" msgstr "Загрузка и запуск служб" -#: boot.cgi:482 +#: boot.cgi:477 msgid "Everything that happens before user login" msgstr "Всё, что происходит перед входом пользователя в систему" -#: boot.cgi:485 styles/default/header.html:72 +#: boot.cgi:480 +#: styles/default/header.html:75 msgid "Boot logs" msgstr "Журналы загрузки" -#: boot.cgi:493 styles/default/header.html:68 +#: boot.cgi:488 +#: styles/default/header.html:71 msgid "Boot loader" msgstr "Загрузчик" -#: boot.cgi:500 +#: boot.cgi:495 msgid "Configuration files" msgstr "Файлы настроек" -#: boot.cgi:503 +#: boot.cgi:498 msgid "Main configuration file:" msgstr "Главный файл настроек:" -#: boot.cgi:505 +#: boot.cgi:500 msgid "Login manager settings:" msgstr "Настройки менеджера входа в систему:" -#: boot.cgi:513 +#: boot.cgi:508 msgid "Kernel cmdline" msgstr "Командная строка ядра" -#: boot.cgi:520 +#: boot.cgi:515 msgid "Local startup commands" msgstr "Локальные команды запуска" -#: hardware.cgi:13 styles/default/header.html:88 +#: hardware.cgi:13 +#: styles/default/header.html:91 msgid "Hardware" msgstr "Оборудование" @@ -783,7 +968,8 @@ msgid "Bus" msgstr "Шина" -#: hardware.cgi:55 hardware.cgi:534 +#: hardware.cgi:55 +#: hardware.cgi:527 msgid "Device" msgstr "Устройство" @@ -799,7 +985,9 @@ msgid "Detect PCI and USB hardware" msgstr "Определение оборудования PCI и USB" -#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:91 +#: hardware.cgi:118 +#: hardware.cgi:248 +#: styles/default/header.html:94 msgid "Kernel modules" msgstr "Модули ядра" @@ -813,7 +1001,7 @@ #: hardware.cgi:127 msgid "Search" -msgstr "" +msgstr "Искать" #: hardware.cgi:135 msgid "Detailed information for module: %s" @@ -831,11 +1019,15 @@ msgid "Module" msgstr "Модуль" -#: hardware.cgi:178 hardware.cgi:536 lib/libtazpanel:297 +#: hardware.cgi:178 +#: hardware.cgi:529 +#: lib/libtazpanel:312 msgid "Size" msgstr "Размер" -#: hardware.cgi:179 hardware.cgi:593 lib/libtazpanel:299 +#: hardware.cgi:179 +#: hardware.cgi:586 +#: lib/libtazpanel:314 msgid "Used" msgstr "Используется" @@ -847,7 +1039,8 @@ msgid "Information for USB Device %s" msgstr "Информация о USB-устройстве %s" -#: hardware.cgi:206 hardware.cgi:224 +#: hardware.cgi:206 +#: hardware.cgi:224 msgid "Detailed information about specified device." msgstr "Подробная информация о выбранном устройстве." @@ -863,7 +1056,8 @@ msgid "Manage your computer hardware" msgstr "Управление вашим компьютерным оборудованием" -#: hardware.cgi:249 styles/default/header.html:92 +#: hardware.cgi:249 +#: styles/default/header.html:95 msgid "Detect PCI/USB" msgstr "Определить PCI/USB" @@ -871,7 +1065,8 @@ msgid "Auto-install Xorg video driver" msgstr "Авто-установка видео-драйвера Xorg" -#: hardware.cgi:260 hardware.cgi:277 +#: hardware.cgi:260 +#: hardware.cgi:277 msgid "Battery" msgstr "Батарея" @@ -911,75 +1106,79 @@ msgid "Filesystems table" msgstr "Таблица файловых систем" -#: hardware.cgi:500 lib/libtazpanel:294 +#: hardware.cgi:493 +#: lib/libtazpanel:309 msgid "Disk" msgstr "Диск" -#: hardware.cgi:501 lib/libtazpanel:300 +#: hardware.cgi:494 +#: lib/libtazpanel:315 msgid "Mount point" msgstr "Точка монтирования" -#: hardware.cgi:502 lib/libtazpanel:296 +#: hardware.cgi:495 +#: lib/libtazpanel:311 msgid "Type" msgstr "Тип" -#: hardware.cgi:503 +#: hardware.cgi:496 msgid "Options" msgstr "Параметры" -#: hardware.cgi:504 +#: hardware.cgi:497 msgid "Freq" msgstr "Резерв." -#: hardware.cgi:505 +#: hardware.cgi:498 msgid "Pass" msgstr "Проверка" -#: hardware.cgi:527 +#: hardware.cgi:520 msgid "Loop devices" msgstr "Устройства loop" -#: hardware.cgi:535 +#: hardware.cgi:528 msgid "Backing file" msgstr "Файл образа" -#: hardware.cgi:537 +#: hardware.cgi:530 msgid "Access" msgstr "Доступ" -#: hardware.cgi:538 +#: hardware.cgi:531 msgid "Offset" msgstr "Смещение" -#: hardware.cgi:547 +#: hardware.cgi:540 msgid "read/write" msgstr "чтение/запись" -#: hardware.cgi:548 hardware.cgi:573 +#: hardware.cgi:541 +#: hardware.cgi:566 msgid "read only" msgstr "только чтение" -#: hardware.cgi:570 +#: hardware.cgi:563 msgid "Setup" msgstr "Установить" -#: hardware.cgi:571 +#: hardware.cgi:564 msgid "new backing file:" msgstr "новый файл образа:" -#: hardware.cgi:572 +#: hardware.cgi:565 msgid "offset in bytes:" msgstr "смещение в байтах:" -#: hardware.cgi:590 +#: hardware.cgi:583 msgid "System memory" msgstr "Системная память" -#: hardware.cgi:596 +#: hardware.cgi:589 msgid "Buffers" msgstr "Буферы" -#: hardware.cgi:599 +#: hardware.cgi:592 msgid "Free" msgstr "Свободно" @@ -987,335 +1186,343 @@ msgid "System settings" msgstr "Параметры системы" -#: settings.cgi:82 settings.cgi:621 settings.cgi:648 settings.cgi:653 +#: settings.cgi:100 +#: settings.cgi:639 +#: settings.cgi:666 +#: settings.cgi:671 msgid "Set date" msgstr "Установить дату" -#: settings.cgi:208 settings.cgi:595 +#: settings.cgi:226 +#: settings.cgi:613 msgid "Manage groups" msgstr "Управление группами" -#: settings.cgi:216 settings.cgi:293 +#: settings.cgi:234 +#: settings.cgi:311 msgid "Selection:" msgstr "Отмеченное:" -#: settings.cgi:217 +#: settings.cgi:235 msgid "Delete group" msgstr "Удалить группу" -#: settings.cgi:224 +#: settings.cgi:242 msgid "Group" msgstr "Группа" -#: settings.cgi:225 +#: settings.cgi:243 msgid "Group ID" msgstr "ID группы" -#: settings.cgi:226 +#: settings.cgi:244 msgid "Members" msgstr "Участники" -#: settings.cgi:253 +#: settings.cgi:271 msgid "Add a new group" msgstr "Добавить новую группу" -#: settings.cgi:256 settings.cgi:268 +#: settings.cgi:274 +#: settings.cgi:286 msgid "Group name:" msgstr "Название группы:" -#: settings.cgi:257 +#: settings.cgi:275 msgid "Create group" msgstr "Создать группу" -#: settings.cgi:264 +#: settings.cgi:282 msgid "Manage group membership" msgstr "Участие в группах" -#: settings.cgi:269 settings.cgi:356 +#: settings.cgi:287 +#: settings.cgi:374 msgid "User name:" msgstr "Имя пользователя:" -#: settings.cgi:272 +#: settings.cgi:290 msgid "Add user" msgstr "Добавить пользователя" -#: settings.cgi:273 +#: settings.cgi:291 msgid "Remove user" msgstr "Удалить пользователя" -#: settings.cgi:286 settings.cgi:594 +#: settings.cgi:304 +#: settings.cgi:612 msgid "Manage users" msgstr "Управление пользователями" -#: settings.cgi:294 +#: settings.cgi:312 msgid "Delete user" msgstr "Удалить пользователя" -#: settings.cgi:295 +#: settings.cgi:313 msgid "Lock user" msgstr "Заблокировать пользователя" -#: settings.cgi:296 +#: settings.cgi:314 msgid "Unlock user" msgstr "Разблокировать пользователя" -#: settings.cgi:302 +#: settings.cgi:320 msgid "Login" msgstr "Логин" -#: settings.cgi:303 +#: settings.cgi:321 msgid "User ID" msgstr "ID пользователя" -#: settings.cgi:304 +#: settings.cgi:322 msgid "User Name" msgstr "Имя пользователя" -#: settings.cgi:305 +#: settings.cgi:323 msgid "Home" msgstr "Домашняя папка" -#: settings.cgi:306 +#: settings.cgi:324 msgid "Shell" msgstr "Оболочка" -#: settings.cgi:340 +#: settings.cgi:358 msgid "Password:" msgstr "Пароль:" -#: settings.cgi:342 +#: settings.cgi:359 +msgid "New password" +msgstr "Новый пароль" + +#: settings.cgi:360 msgid "Change password" msgstr "Изменить пароль" -#: settings.cgi:349 +#: settings.cgi:367 msgid "Add a new user" msgstr "Добавить нового пользователя" -#: settings.cgi:354 +#: settings.cgi:372 msgid "User login:" msgstr "Логин пользователя:" -#: settings.cgi:358 +#: settings.cgi:376 msgid "User password:" msgstr "Пароль пользователя:" -#: settings.cgi:363 +#: settings.cgi:381 msgid "Create user" msgstr "Создать пользователя" -#: settings.cgi:373 +#: settings.cgi:391 msgid "Current user sessions" msgstr "Текущие сессии пользователя" -#: settings.cgi:383 +#: settings.cgi:401 msgid "Last user sessions" msgstr "Последние сессии пользователя" -#: settings.cgi:395 +#: settings.cgi:413 msgid "Choose locale" msgstr "Выбор локали" -#: settings.cgi:398 +#: settings.cgi:416 msgid "Please wait..." msgstr "Пожалуйста, подождите…" -#: settings.cgi:403 +#: settings.cgi:421 msgid "Current locale settings:" msgstr "Текущие параметры локали:" -#: settings.cgi:410 +#: settings.cgi:428 msgid "Locales that are currently installed on the machine:" msgstr "Локали, уже установленные в системе:" -#: settings.cgi:420 -msgid "" -"Can't see your language?
You can install glibc-locale to see a larger list of available locales." -msgstr "" -"Не видите вашего языка?
Вы можете установить glibc-locale для того, чтобы получить большой список " -"доступных локалей." +#: settings.cgi:438 +msgid "Can't see your language?
You can install glibc-locale to see a larger list of available locales." +msgstr "Не видите вашего языка?
Вы можете установить glibc-locale для того, чтобы получить большой список доступных локалей." -#: settings.cgi:427 +#: settings.cgi:445 msgid "Available locales:" msgstr "Доступные локали:" -#: settings.cgi:431 +#: settings.cgi:449 msgid "Code" msgstr "Код" -#: settings.cgi:432 +#: settings.cgi:450 msgid "Language" msgstr "Язык" -#: settings.cgi:433 +#: settings.cgi:451 msgid "Territory" msgstr "Территория" -#: settings.cgi:450 settings.cgi:451 +#: settings.cgi:468 +#: settings.cgi:469 msgid "-d" msgstr "-d" -#: settings.cgi:462 settings.cgi:765 settings.cgi:777 settings.cgi:789 +#: settings.cgi:480 +#: settings.cgi:783 +#: settings.cgi:795 +#: settings.cgi:807 msgid "Activate" msgstr "Активировать" -#: settings.cgi:475 settings.cgi:497 +#: settings.cgi:493 +#: settings.cgi:515 msgid "Small quick tweaks for user %s" msgstr "Быстрые настройки для пользователя %s" -#: settings.cgi:500 +#: settings.cgi:518 msgid "Terminal prompt" msgstr "Приглашение терминала" -#: settings.cgi:506 +#: settings.cgi:524 msgid "Monochrome" msgstr "Монохромное" -#: settings.cgi:515 +#: settings.cgi:533 msgid "Colored" msgstr "Цветное" -#: settings.cgi:524 settings.cgi:572 +#: settings.cgi:542 +#: settings.cgi:590 msgid "Manual edit: %s" msgstr "Ручная правка: %s" -#: settings.cgi:525 -msgid "" -"To take effect: log out and log in to system or execute command in the " -"terminal:" -msgstr "" -"Чтобы применить изменения, выйдите из системы и повторно войдите, либо " -"выполните команду в терминале:" +#: settings.cgi:543 +msgid "To take effect: log out and log in to system or execute command in the terminal:" +msgstr "Чтобы применить изменения, выйдите из системы и повторно войдите, либо выполните команду в терминале:" -#: settings.cgi:533 +#: settings.cgi:551 msgid "Menu button appearance" msgstr "Внешний вид кнопки меню" -#: settings.cgi:538 +#: settings.cgi:556 msgid "Icon:" msgstr "Значок:" -#: settings.cgi:541 settings.cgi:562 +#: settings.cgi:559 +#: settings.cgi:580 msgid "Do not show" msgstr "Не показывать" -#: settings.cgi:559 +#: settings.cgi:577 msgid "Text:" msgstr "Текст:" -#: settings.cgi:566 +#: settings.cgi:584 msgid "Show text" msgstr "Показывать текст" -#: settings.cgi:589 +#: settings.cgi:607 msgid "Manage system time, users or language settings" msgstr "Управление системным временем, пользователями и языками" -#: settings.cgi:599 +#: settings.cgi:617 msgid "System time" msgstr "Системное время" -#: settings.cgi:602 +#: settings.cgi:620 msgid "Time zone:" msgstr "Часовой пояс:" -#: settings.cgi:611 +#: settings.cgi:629 msgid "System time:" msgstr "Системное время:" -#: settings.cgi:613 +#: settings.cgi:631 msgid "Sync online" msgstr "Синхронизировать онлайн" -#: settings.cgi:616 +#: settings.cgi:634 msgid "Hardware clock:" msgstr "Часы оборудования:" -#: settings.cgi:618 +#: settings.cgi:636 msgid "Set hardware clock" msgstr "Установить часы оборудования" -#: settings.cgi:704 +#: settings.cgi:722 msgid "System language" msgstr "Язык системы" -#: settings.cgi:717 -msgid "" -"You must logout and login again to your current session to use %s locale." -msgstr "" -"Вам необходимо выйти из системы и войти повторно, чтобы использовать локаль " -"«%s»." +#: settings.cgi:735 +msgid "You must logout and login again to your current session to use %s locale." +msgstr "Вам необходимо выйти из системы и войти повторно, чтобы использовать локаль «%s»." -#: settings.cgi:720 +#: settings.cgi:738 msgid "Current system locale:" msgstr "Текущая локаль системы:" -#: settings.cgi:732 +#: settings.cgi:750 msgid "Keyboard layout" msgstr "Раскладка клавиатуры" -#: settings.cgi:746 +#: settings.cgi:764 msgid "Current console keymap: %s" msgstr "Текущая консольная раскладка: %s" -#: settings.cgi:764 +#: settings.cgi:782 msgid "Suggested keymap for Xorg:" msgstr "Предлагаемая раскладка клавиатуры для Xorg:" -#: settings.cgi:773 +#: settings.cgi:791 msgid "Available keymaps:" msgstr "Доступные раскладки:" -#: settings.cgi:784 +#: settings.cgi:802 msgid "Panel configuration" msgstr "Настройка панели" -#: settings.cgi:787 +#: settings.cgi:805 msgid "Style:" msgstr "Стиль:" -#: settings.cgi:793 +#: settings.cgi:811 msgid "Configuration files:" msgstr "Файлы настроек:" -#: settings.cgi:794 styles/default/header.html:42 +#: settings.cgi:812 +#: styles/default/header.html:45 msgid "Panel" msgstr "Панель" -#: settings.cgi:795 +#: settings.cgi:813 msgid "Server" msgstr "Сервер" -#: settings.cgi:798 +#: settings.cgi:816 msgid "TazPanel provides a debugging mode and page:" msgstr "TazPanel поддерживает отладочный режим и страницу:" -#: lib/libtazpanel:153 +#: lib/libtazpanel:156 msgid "connected" msgstr "соединён" -#: lib/libtazpanel:170 +#: lib/libtazpanel:173 msgid "IP Address" msgstr "Адрес IP" -#: lib/libtazpanel:171 +#: lib/libtazpanel:174 msgid "Scan ports" msgstr "Сканировать порты" -#: lib/libtazpanel:243 +#: lib/libtazpanel:249 msgid "Please wait" msgstr "Пожалуйста, подождите" -#: lib/libtazpanel:295 +#: lib/libtazpanel:310 msgid "Label" msgstr "Метка" -#: lib/libtazpanel:298 +#: lib/libtazpanel:313 msgid "Available" msgstr "Доступно" -#: lib/libtazpanel:367 +#: lib/libtazpanel:392 msgid "You must be root to show this page." msgstr "Вы должны обладать правами root для просмотра этой страницы." @@ -1327,59 +1534,59 @@ msgid "Help & Doc" msgstr "Справка и документация" -#: styles/default/header.html:32 +#: styles/default/header.html:35 msgid "Confirm break" msgstr "Прервать процесс?" -#: styles/default/header.html:45 +#: styles/default/header.html:48 msgid "Processes" msgstr "Процессы" -#: styles/default/header.html:47 +#: styles/default/header.html:50 msgid "Create Report" msgstr "Создать отчёт" -#: styles/default/header.html:55 +#: styles/default/header.html:58 msgid "Config file" msgstr "Файл настроек" -#: styles/default/header.html:56 +#: styles/default/header.html:59 msgid "Ethernet" msgstr "Ethernet" -#: styles/default/header.html:57 +#: styles/default/header.html:60 msgid "Wireless" msgstr "Беспроводные" -#: styles/default/header.html:101 +#: styles/default/header.html:104 msgid "Users" msgstr "Пользователи" -#: styles/default/header.html:102 +#: styles/default/header.html:105 msgid "Groups" msgstr "Группы" -#: styles/default/header.html:103 +#: styles/default/header.html:106 msgid "Tweaks" msgstr "Маленькие настройки" -#: styles/default/header.html:119 +#: styles/default/header.html:122 msgid "Some features are disabled." msgstr "Некоторые возможности отключены." -#: styles/default/header.html:124 +#: styles/default/header.html:127 msgid "You are logged in to the TazPanel as user %s." msgstr "TazPanel открыта под учетной записью пользователя %s." -#: styles/default/header.html:125 +#: styles/default/header.html:128 msgid "Click to re-login." msgstr "Нажмите для повторного входа." -#: styles/default/header.html:135 +#: styles/default/header.html:138 msgid "Copyright" msgstr "Авторское право" -#: styles/default/header.html:137 +#: styles/default/header.html:140 msgid "BSD License" msgstr "Лицензия BSD" diff -r 4f619f973b88 -r 3d4145137792 po/sv.po --- a/po/sv.po Mon Aug 24 01:05:08 2015 +0300 +++ b/po/sv.po Wed Aug 26 05:51:08 2015 +0300 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: TazPanel 1.4.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-12 12:25+0200\n" +"POT-Creation-Date: 2015-08-26 05:27+0300\n" "PO-Revision-Date: 2012-07-11 11:33-0000\n" "Last-Translator: Emil Eklund \n" "Language-Team: Swedish \n" @@ -17,23 +17,23 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: tazpanel:52 +#: tazpanel:54 msgid "TazPanel is already running." msgstr "" -#: tazpanel:55 +#: tazpanel:57 msgid "Starting TazPanel web server on port %d..." msgstr "Startar TazPanel web server på port %d..." -#: tazpanel:57 +#: tazpanel:59 msgid "TazPanel Authentication - Default: root:root" msgstr "TazPanel Autensiering - Standard: root:root" -#: tazpanel:64 +#: tazpanel:66 msgid "TazPanel is not running." msgstr "" -#: tazpanel:67 +#: tazpanel:69 msgid "Stopping TazPanel web server..." msgstr "Stoppar TazPanel web server..." @@ -53,13 +53,12 @@ msgid "Save" msgstr "Spara" -#: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670 -#: network.cgi:720 boot.cgi:525 hardware.cgi:492 settings.cgi:766 +#: index.cgi:174 settings.cgi:784 lib/libtazpanel:378 msgid "Edit" msgstr "Ändra" -#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:630 -#: styles/default/header.html:46 +#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:679 +#: styles/default/header.html:49 msgid "Terminal" msgstr "Terminal" @@ -68,7 +67,7 @@ msgid "History" msgstr "Territorium" -#: index.cgi:247 lib/libtazpanel:348 +#: index.cgi:247 lib/libtazpanel:361 msgid "Back" msgstr "" @@ -100,7 +99,7 @@ msgid "Please, don't run interactive command \"%s\"" msgstr "" -#: index.cgi:330 styles/default/header.html:98 +#: index.cgi:330 styles/default/header.html:101 msgid "Settings" msgstr "Inställningar" @@ -126,7 +125,7 @@ msgid "Apply" msgstr "" -#: index.cgi:445 index.cgi:631 +#: index.cgi:445 index.cgi:680 msgid "Process activity" msgstr "Process aktivitet" @@ -198,99 +197,114 @@ msgid "Getting boot logs..." msgstr "Skaffar start loggar..." -#: index.cgi:589 boot.cgi:98 styles/default/header.html:74 +#: index.cgi:589 boot.cgi:93 styles/default/header.html:77 msgid "Kernel messages" msgstr "Meddelanden från kärnan" -#: index.cgi:592 boot.cgi:99 styles/default/header.html:75 +#: index.cgi:592 boot.cgi:94 styles/default/header.html:78 msgid "Boot scripts" msgstr "Start skript" #: index.cgi:597 +#, fuzzy +msgid "Getting package list..." +msgstr "Skaffar hårdvaruinformation..." + +#: index.cgi:600 +msgid "Packages" +msgstr "" + +#: index.cgi:638 +#, fuzzy +msgid "Getting extra reports..." +msgstr "Skaffar start loggar..." + +#: index.cgi:646 msgid "Creating report footer..." msgstr "Skapar rapport fot..." -#: index.cgi:608 index.cgi:704 boot.cgi:504 boot.cgi:506 +#: index.cgi:657 index.cgi:753 boot.cgi:499 boot.cgi:501 msgid "View" msgstr "" -#: index.cgi:613 +#: index.cgi:662 msgid "This report can be attached with a bug report on:" msgstr "Den här rapporten kan bifogas med en bug rapport på:" -#: index.cgi:623 +#: index.cgi:672 msgid "SliTaz administration and configuration Panel" msgstr "SliTaz administration och konfigurations panel" -#: index.cgi:632 +#: index.cgi:681 msgid "Create a report" msgstr "Skapa en rapport" -#: index.cgi:636 styles/default/header.html:44 styles/default/header.html:54 -#: styles/default/header.html:64 styles/default/header.html:90 -#: styles/default/header.html:100 +#: index.cgi:685 styles/default/header.html:47 styles/default/header.html:57 +#: styles/default/header.html:67 styles/default/header.html:93 +#: styles/default/header.html:103 msgid "Summary" msgstr "Summering" -#: index.cgi:638 +#: index.cgi:687 hosts.cgi:203 #, fuzzy msgid "Host:" msgstr "Värdar" -#: index.cgi:639 +#: index.cgi:688 msgid "Uptime:" msgstr "Har varit igång i:" -#: index.cgi:642 +#: index.cgi:691 msgid "Memory in Mb:" msgstr "Minne i Mb:" -#: index.cgi:644 +#: index.cgi:693 msgid "Total: %d, Used: %d, Free: %d" msgstr "Totalt: %d, Använt: %d, Ledigt: %d" -#: index.cgi:648 +#: index.cgi:697 msgid "Linux kernel:" msgstr "Linux kärna:" -#: index.cgi:657 +#: index.cgi:706 #, fuzzy msgid "Network status" msgstr "Nätverks status" -#: index.cgi:659 network.cgi:15 network.cgi:215 styles/default/header.html:52 +#: index.cgi:708 network.cgi:15 network.cgi:216 hosts.cgi:15 +#: styles/default/header.html:55 msgid "Network" msgstr "Nätverk" -#: index.cgi:668 hardware.cgi:349 +#: index.cgi:717 hardware.cgi:349 msgid "Filesystem usage statistics" msgstr "Filsystemsanvändning" -#: index.cgi:670 styles/default/header.html:93 +#: index.cgi:719 styles/default/header.html:96 msgid "Disks" msgstr "" -#: index.cgi:702 +#: index.cgi:751 msgid "Panel Activity" msgstr "Panel Aktivitet" -#: network.cgi:152 +#: network.cgi:153 msgid "Changed hostname: %s" msgstr "Ändrat värdnamn: %s" -#: network.cgi:209 +#: network.cgi:210 msgid "Scanning open ports..." msgstr "Skannar öppna portar..." -#: network.cgi:214 +#: network.cgi:215 msgid "Port scanning for %s" msgstr "Port skanning för %s" -#: network.cgi:225 +#: network.cgi:226 msgid "Ethernet connection" msgstr "Ethernet Anslutning" -#: network.cgi:243 +#: network.cgi:244 msgid "" "Here you can configure a wired connection using DHCP to automatically get a " "random IP or configure a static/fixed IP" @@ -298,80 +312,80 @@ "Här kan du konfigurera en trådbunden anslutning med DHCP för att automatiskt " "få en slumpmässig IP eller konfigurera en statisk/fast IP" -#: network.cgi:247 boot.cgi:149 +#: network.cgi:248 boot.cgi:144 msgid "Configuration" msgstr "Konfiguration" -#: network.cgi:253 lib/libtazpanel:167 +#: network.cgi:254 lib/libtazpanel:170 msgid "Interface" msgstr "Enhet" -#: network.cgi:261 +#: network.cgi:262 msgid "Static IP" msgstr "" -#: network.cgi:263 +#: network.cgi:264 msgid "Use static IP" msgstr "" -#: network.cgi:265 +#: network.cgi:266 msgid "IP address" msgstr "IP adress" -#: network.cgi:268 +#: network.cgi:269 msgid "Netmask" msgstr "Netmask" -#: network.cgi:271 +#: network.cgi:272 msgid "Gateway" msgstr "Gateway" -#: network.cgi:274 +#: network.cgi:275 msgid "DNS server" msgstr "DNS server" -#: network.cgi:277 network.cgi:297 +#: network.cgi:278 network.cgi:298 msgid "Wake up" msgstr "" -#: network.cgi:279 +#: network.cgi:280 msgid "Wake up machines by network" msgstr "" -#: network.cgi:281 +#: network.cgi:282 msgid "MAC address to wake up" msgstr "" -#: network.cgi:282 network.cgi:287 +#: network.cgi:283 network.cgi:288 msgid "Leave empty for a general wakeup" msgstr "" -#: network.cgi:283 +#: network.cgi:284 msgid "List" msgstr "" -#: network.cgi:286 +#: network.cgi:287 #, fuzzy msgid "MAC/IP address password" msgstr "Byt lösenord" -#: network.cgi:288 +#: network.cgi:289 msgid "Help" msgstr "" -#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:289 +#: network.cgi:296 network.cgi:446 network.cgi:639 boot.cgi:284 msgid "Start" msgstr "Start" -#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:278 +#: network.cgi:297 network.cgi:447 network.cgi:640 boot.cgi:273 msgid "Stop" msgstr "Stop" -#: network.cgi:321 network.cgi:591 +#: network.cgi:322 network.cgi:602 msgid "Configuration file" msgstr "Konfigurations fil" -#: network.cgi:331 +#: network.cgi:327 msgid "" "These values are the ethernet settings in the main /etc/network.conf " "configuration file" @@ -379,180 +393,299 @@ "Dessa värden är ethernet inställningarna för \"/etc/network.conf\" " "konfigurations filen" -#: network.cgi:343 +#: network.cgi:339 msgid "(hidden)" msgstr "" -#: network.cgi:349 boot.cgi:147 hardware.cgi:57 lib/libtazpanel:168 +#: network.cgi:345 hosts.cgi:219 boot.cgi:142 hardware.cgi:57 +#: lib/libtazpanel:171 msgid "Name" msgstr "Namn" -#: network.cgi:350 +#: network.cgi:346 msgid "Signal level" msgstr "" -#: network.cgi:351 +#: network.cgi:347 #, fuzzy msgid "Channel" msgstr "Ändra" -#: network.cgi:352 +#: network.cgi:348 msgid "Encryption" msgstr "Kryptering" -#: network.cgi:353 boot.cgi:150 lib/libtazpanel:169 +#: network.cgi:349 boot.cgi:145 lib/libtazpanel:172 msgid "Status" msgstr "Status" -#: network.cgi:404 network.cgi:486 network.cgi:508 +#: network.cgi:400 network.cgi:482 network.cgi:504 msgid "None" msgstr "" -#: network.cgi:410 +#: network.cgi:406 msgid "Connected" msgstr "Ansluten" -#: network.cgi:436 +#: network.cgi:432 msgid "Wireless connection" msgstr "Trådlös Anslutning" -#: network.cgi:452 lib/libtazpanel:150 +#: network.cgi:448 lib/libtazpanel:153 msgid "Scan" msgstr "Skanna" -#: network.cgi:460 +#: network.cgi:456 msgid "Scanning wireless interface..." msgstr "Skannar trådlös anslutning..." -#: network.cgi:474 +#: network.cgi:470 msgid "Connection" msgstr "Anslutning" -#: network.cgi:480 +#: network.cgi:476 #, fuzzy msgid "Network SSID" msgstr "Nätverk" -#: network.cgi:484 +#: network.cgi:480 msgid "Security" msgstr "" -#: network.cgi:495 +#: network.cgi:491 msgid "EAP method" msgstr "" -#: network.cgi:506 +#: network.cgi:502 msgid "Phase 2 authentication" msgstr "" -#: network.cgi:518 +#: network.cgi:514 msgid "CA certificate" msgstr "" -#: network.cgi:523 +#: network.cgi:519 msgid "User certificate" msgstr "" -#: network.cgi:528 +#: network.cgi:524 msgid "Identity" msgstr "" -#: network.cgi:533 +#: network.cgi:529 msgid "Anonymous identity" msgstr "" -#: network.cgi:538 +#: network.cgi:534 #, fuzzy msgid "Password" msgstr "Lösenord:" -#: network.cgi:541 +#: network.cgi:537 #, fuzzy msgid "Show password" msgstr "Nytt lösenord: " -#: network.cgi:582 +#: network.cgi:549 network.cgi:678 msgid "Configure" msgstr "Konfigurera" -#: network.cgi:601 +#: network.cgi:550 +msgid "Share" +msgstr "" + +#: network.cgi:591 +msgid "Share Wi-Fi network with your friends" +msgstr "" + +#: network.cgi:607 msgid "" "These values are the wifi settings in the main /etc/network.conf " "configuration file" msgstr "" "Dessa värden är WIFI inställningarna i /etc/network.conf konfigurerings filen" -#: network.cgi:607 +#: network.cgi:613 msgid "Output of iwconfig" msgstr "Svar från iwconfig" -#: network.cgi:616 +#: network.cgi:622 msgid "Manage network connections and services" msgstr "Hantera nätverksanslutningar och tjänster" -#: network.cgi:635 +#: network.cgi:641 msgid "Restart" msgstr "Starta om" -#: network.cgi:639 +#: network.cgi:645 msgid "Configuration:" msgstr "Konfiguration:" -#: network.cgi:647 +#: network.cgi:653 #, fuzzy msgid "Network interfaces" msgstr "Nätverks status" -#: network.cgi:654 +#: network.cgi:660 msgid "forward packets between interfaces" msgstr "" -#: network.cgi:656 network.cgi:690 boot.cgi:332 settings.cgi:608 -#: settings.cgi:722 +#: network.cgi:662 network.cgi:693 boot.cgi:327 settings.cgi:626 +#: settings.cgi:740 msgid "Change" msgstr "Ändra" -#: network.cgi:665 +#: network.cgi:670 hosts.cgi:179 msgid "Hosts" msgstr "Värdar" -#: network.cgi:682 +#: network.cgi:672 +msgid "%d record in the hosts DB" +msgid_plural "%d records in the hosts DB" +msgstr[0] "" +msgstr[1] "" + +#: network.cgi:679 hosts.cgi:16 +msgid "Use hosts file as Ad blocker" +msgstr "" + +#: network.cgi:686 msgid "Hostname" msgstr "Värdnamn" -#: network.cgi:702 +#: network.cgi:705 msgid "Output of ifconfig" msgstr "Svar av ifconfig" -#: network.cgi:708 +#: network.cgi:711 msgid "Routing table" msgstr "dirigeringsbord" -#: network.cgi:715 +#: network.cgi:717 msgid "Domain name resolution" msgstr "Domän namns upplösning" -#: network.cgi:730 +#: network.cgi:723 msgid "ARP table" msgstr "ARP bord" -#: network.cgi:750 +#: network.cgi:743 msgid "Proxy" msgstr "" -#: network.cgi:751 +#: network.cgi:744 hosts.cgi:200 hosts.cgi:207 msgid "Add" msgstr "" -#: network.cgi:764 +#: network.cgi:757 msgid "IP Connections" msgstr "IP Anslutningar" -#: network.cgi:774 +#: network.cgi:765 msgid "Firewall" msgstr "" -#: boot.cgi:16 styles/default/header.html:62 +#: network.cgi:766 +msgid "Port knocker" +msgstr "" + +#: hosts.cgi:107 +msgid "Host \"%s\" added to /etc/hosts." +msgstr "" + +#: hosts.cgi:120 +msgid "%d record disabled" +msgid_plural "%d records disabled" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:130 +msgid "Installing the \"%s\"..." +msgstr "" + +#: hosts.cgi:132 hosts.cgi:142 hosts.cgi:152 +msgid "Done" +msgstr "" + +#: hosts.cgi:140 +msgid "Updating the \"%s\"..." +msgstr "" + +#: hosts.cgi:150 +#, fuzzy +msgid "Removing the \"%s\"..." +msgstr "Rapporterar till: %s" + +#: hosts.cgi:163 +msgid "%d record used for Ad blocking" +msgid_plural "%d records used for Ad blocking" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:169 +msgid "%d record found for \"%s\"" +msgid_plural "%d records found for \"%s\"" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:173 +msgid " (The list is limited to the first 100 entries.)" +msgstr "" + +#: hosts.cgi:194 +#, fuzzy +msgid "Disable selected" +msgstr "Inaktivera" + +#: hosts.cgi:213 +#, fuzzy +msgid "Manage lists" +msgstr "Hantera användare" + +#: hosts.cgi:214 +msgid "" +"You can use one or more prepared hosts files to block advertisements, " +"malware and other irritants." +msgstr "" + +#: hosts.cgi:220 +msgid "Details" +msgstr "" + +#: hosts.cgi:221 +msgid "Updates" +msgstr "" + +#: hosts.cgi:222 +#, fuzzy +msgid "Actions" +msgstr "Handling" + +#: hosts.cgi:235 +msgid "info" +msgstr "" + +#: hosts.cgi:237 +msgid "Updated monthly" +msgstr "" + +#: hosts.cgi:238 +msgid "Updated regularly" +msgstr "" + +#: hosts.cgi:276 +msgid "Upgrade" +msgstr "" + +#: hosts.cgi:281 +msgid "Remove" +msgstr "" + +#: hosts.cgi:287 +msgid "Install" +msgstr "" + +#: boot.cgi:16 styles/default/header.html:65 msgid "Boot" msgstr "Boot" @@ -560,228 +693,228 @@ msgid "Show more..." msgstr "Visa mer..." -#: boot.cgi:40 boot.cgi:45 boot.cgi:486 styles/default/header.html:80 +#: boot.cgi:40 boot.cgi:45 boot.cgi:481 styles/default/header.html:83 #, fuzzy msgid "System logs" msgstr "System språk" -#: boot.cgi:95 +#: boot.cgi:90 msgid "Boot log files" msgstr "Start log filer" -#: boot.cgi:100 styles/default/header.html:76 +#: boot.cgi:95 styles/default/header.html:79 msgid "X server" msgstr "X server" -#: boot.cgi:101 styles/default/header.html:77 +#: boot.cgi:96 styles/default/header.html:80 msgid "X session" msgstr "" -#: boot.cgi:120 boot.cgi:487 styles/default/header.html:81 +#: boot.cgi:115 boot.cgi:482 styles/default/header.html:84 msgid "Manage daemons" msgstr "Hantera daemoner" -#: boot.cgi:123 +#: boot.cgi:118 msgid "Check, start and stop daemons on SliTaz" msgstr "Konstrollera, starta och stopa daemoner i SliTaz" -#: boot.cgi:148 hardware.cgi:177 settings.cgi:434 +#: boot.cgi:143 hardware.cgi:177 settings.cgi:452 msgid "Description" msgstr "Beskrivning" -#: boot.cgi:151 +#: boot.cgi:146 msgid "Action" msgstr "Handling" -#: boot.cgi:152 +#: boot.cgi:147 msgid "PID" msgstr "PID" -#: boot.cgi:177 +#: boot.cgi:172 msgid "SliTaz Firewall with iptable rules" msgstr "Slitaz Brandvägg med iptable regler" -#: boot.cgi:179 +#: boot.cgi:174 msgid "Small and fast web server with CGI support" msgstr "Liten och snabb webbserver med CGI stöd" -#: boot.cgi:182 +#: boot.cgi:177 msgid "Network time protocol daemon" msgstr "Nätverkstids protokoll daemon" -#: boot.cgi:185 +#: boot.cgi:180 msgid "Anonymous FTP server" msgstr "Anonymous FTP server" -#: boot.cgi:188 +#: boot.cgi:183 msgid "Busybox DHCP server" msgstr "Busybox DHCP server" -#: boot.cgi:191 +#: boot.cgi:186 msgid "Linux Kernel log daemon" msgstr "Linux Kärna log daemon" -#: boot.cgi:194 +#: boot.cgi:189 msgid "Execute scheduled commands" msgstr "Utför schemalagda kommandon" -#: boot.cgi:197 +#: boot.cgi:192 msgid "Small static DNS server daemon" msgstr "Liten statisk DNS server daemon" -#: boot.cgi:200 +#: boot.cgi:195 msgid "Transfer a file on tftp request" msgstr "Överför en fil via tftp begäran" -#: boot.cgi:203 +#: boot.cgi:198 #, fuzzy msgid "Printer daemon" msgstr "Hantera daemoner" -#: boot.cgi:205 +#: boot.cgi:200 msgid "Listen for network connections and launch programs" msgstr "Lysnna efter nätverksanslutningar och starta pogram" -#: boot.cgi:208 +#: boot.cgi:203 msgid "Manage a ZeroConf IPv4 link-local address" msgstr "Hantera en ZeroConf IPv4 link-lokal adress" -#: boot.cgi:277 +#: boot.cgi:272 msgid "Started" msgstr "Startade" -#: boot.cgi:288 +#: boot.cgi:283 msgid "Stopped" msgstr "Stannade" -#: boot.cgi:314 +#: boot.cgi:309 msgid "GRUB Boot loader" msgstr "GRUB Boot loader" -#: boot.cgi:316 +#: boot.cgi:311 msgid "The first application started when the computer powers on" msgstr "Den första applikationen startade när datorn startar" -#: boot.cgi:323 +#: boot.cgi:318 msgid "Default entry:" msgstr "Standard svar:" -#: boot.cgi:325 +#: boot.cgi:320 msgid "Timeout:" msgstr "Timeout:" -#: boot.cgi:327 +#: boot.cgi:322 msgid "Splash image:" msgstr "Splash image:" -#: boot.cgi:339 +#: boot.cgi:334 msgid "View or edit menu.lst" msgstr "Visa eller ändra menu.lst" -#: boot.cgi:344 +#: boot.cgi:339 msgid "Boot entries" msgstr "Start up bidrag" -#: boot.cgi:351 +#: boot.cgi:346 msgid "Entry" msgstr "Bidrag" -#: boot.cgi:372 +#: boot.cgi:367 msgid "Web boot is available with gPXE" msgstr "Nät start är tillgänglig med gPXE" -#: boot.cgi:386 boot.cgi:490 styles/default/header.html:83 +#: boot.cgi:381 boot.cgi:485 styles/default/header.html:86 msgid "ISO mine" msgstr "" -#: boot.cgi:388 +#: boot.cgi:383 msgid "Invalid ISO image." msgstr "" -#: boot.cgi:410 +#: boot.cgi:403 msgid "ISO image file full path" msgstr "" -#: boot.cgi:411 +#: boot.cgi:404 msgid "set /dev/cdrom for a physical CD-ROM" msgstr "" -#: boot.cgi:414 +#: boot.cgi:407 msgid "Working directory" msgstr "" -#: boot.cgi:416 +#: boot.cgi:409 msgid "Target partition" msgstr "" -#: boot.cgi:417 +#: boot.cgi:410 msgid "" "For hard disk installation only. Will create /slitaz tree and keep other " "files. No partitioning and no formatting." msgstr "" -#: boot.cgi:420 +#: boot.cgi:413 msgid "Choose a partition (optional)" msgstr "" -#: boot.cgi:431 +#: boot.cgi:424 msgid "USB key device" msgstr "" -#: boot.cgi:432 +#: boot.cgi:425 msgid "For USB boot key only. Will erase the full device." msgstr "" -#: boot.cgi:435 +#: boot.cgi:428 msgid "Choose a USB key (optional)" msgstr "" -#: boot.cgi:454 +#: boot.cgi:449 #, fuzzy msgid "Choose an action" msgstr "Anslutning" -#: boot.cgi:467 +#: boot.cgi:462 msgid "Mine" msgstr "" -#: boot.cgi:480 +#: boot.cgi:475 msgid "Boot & Start services" msgstr "Starta & Starta tjänster" -#: boot.cgi:482 +#: boot.cgi:477 msgid "Everything that happens before user login" msgstr "Allting som händer innan användaren loggar in" -#: boot.cgi:485 styles/default/header.html:72 +#: boot.cgi:480 styles/default/header.html:75 msgid "Boot logs" msgstr "Start uo loggar" -#: boot.cgi:493 styles/default/header.html:68 +#: boot.cgi:488 styles/default/header.html:71 msgid "Boot loader" msgstr "Start laddare" -#: boot.cgi:500 +#: boot.cgi:495 msgid "Configuration files" msgstr "Configurations filer" -#: boot.cgi:503 +#: boot.cgi:498 msgid "Main configuration file:" msgstr "Huvud konfigureringsfil:" -#: boot.cgi:505 +#: boot.cgi:500 msgid "Login manager settings:" msgstr "Login hanterar inställningar:" -#: boot.cgi:513 +#: boot.cgi:508 msgid "Kernel cmdline" msgstr "Kärn kommando linje" -#: boot.cgi:520 +#: boot.cgi:515 msgid "Local startup commands" msgstr "Lokala start kommandon" -#: hardware.cgi:13 styles/default/header.html:88 +#: hardware.cgi:13 styles/default/header.html:91 msgid "Hardware" msgstr "Hårdava" @@ -789,7 +922,7 @@ msgid "Bus" msgstr "" -#: hardware.cgi:55 hardware.cgi:534 +#: hardware.cgi:55 hardware.cgi:527 msgid "Device" msgstr "" @@ -806,7 +939,7 @@ msgid "Detect PCI and USB hardware" msgstr "Upptäck PCI och USB hårdvara" -#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:91 +#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:94 msgid "Kernel modules" msgstr "Kärn moduler" @@ -838,11 +971,11 @@ msgid "Module" msgstr "Modul" -#: hardware.cgi:178 hardware.cgi:536 lib/libtazpanel:297 +#: hardware.cgi:178 hardware.cgi:529 lib/libtazpanel:312 msgid "Size" msgstr "Storlek" -#: hardware.cgi:179 hardware.cgi:593 lib/libtazpanel:299 +#: hardware.cgi:179 hardware.cgi:586 lib/libtazpanel:314 msgid "Used" msgstr "Använd" @@ -870,7 +1003,7 @@ msgid "Manage your computer hardware" msgstr "Hantera din dators hårdvara" -#: hardware.cgi:249 styles/default/header.html:92 +#: hardware.cgi:249 styles/default/header.html:95 msgid "Detect PCI/USB" msgstr "Upptäckt PCI/USB" @@ -920,79 +1053,79 @@ msgid "Filesystems table" msgstr "" -#: hardware.cgi:500 lib/libtazpanel:294 +#: hardware.cgi:493 lib/libtazpanel:309 msgid "Disk" msgstr "Disk" -#: hardware.cgi:501 lib/libtazpanel:300 +#: hardware.cgi:494 lib/libtazpanel:315 msgid "Mount point" msgstr "Monteringspunkt" -#: hardware.cgi:502 lib/libtazpanel:296 +#: hardware.cgi:495 lib/libtazpanel:311 msgid "Type" msgstr "Sort" -#: hardware.cgi:503 +#: hardware.cgi:496 #, fuzzy msgid "Options" msgstr "Handling" -#: hardware.cgi:504 +#: hardware.cgi:497 msgid "Freq" msgstr "" -#: hardware.cgi:505 +#: hardware.cgi:498 #, fuzzy msgid "Pass" msgstr "Lösenord:" -#: hardware.cgi:527 +#: hardware.cgi:520 msgid "Loop devices" msgstr "" -#: hardware.cgi:535 +#: hardware.cgi:528 #, fuzzy msgid "Backing file" msgstr "Konfigurerings fil" -#: hardware.cgi:537 +#: hardware.cgi:530 #, fuzzy msgid "Access" msgstr "Åtkomst punkt" -#: hardware.cgi:538 +#: hardware.cgi:531 msgid "Offset" msgstr "" -#: hardware.cgi:547 +#: hardware.cgi:540 msgid "read/write" msgstr "" -#: hardware.cgi:548 hardware.cgi:573 +#: hardware.cgi:541 hardware.cgi:566 msgid "read only" msgstr "" -#: hardware.cgi:570 +#: hardware.cgi:563 msgid "Setup" msgstr "" -#: hardware.cgi:571 +#: hardware.cgi:564 msgid "new backing file:" msgstr "" -#: hardware.cgi:572 +#: hardware.cgi:565 msgid "offset in bytes:" msgstr "" -#: hardware.cgi:590 +#: hardware.cgi:583 msgid "System memory" msgstr "System minne" -#: hardware.cgi:596 +#: hardware.cgi:589 msgid "Buffers" msgstr "" -#: hardware.cgi:599 +#: hardware.cgi:592 msgid "Free" msgstr "" @@ -1000,148 +1133,153 @@ msgid "System settings" msgstr "System inställningar" -#: settings.cgi:82 settings.cgi:621 settings.cgi:648 settings.cgi:653 +#: settings.cgi:100 settings.cgi:639 settings.cgi:666 settings.cgi:671 msgid "Set date" msgstr "" -#: settings.cgi:208 settings.cgi:595 +#: settings.cgi:226 settings.cgi:613 msgid "Manage groups" msgstr "" -#: settings.cgi:216 settings.cgi:293 +#: settings.cgi:234 settings.cgi:311 msgid "Selection:" msgstr "Val:" -#: settings.cgi:217 +#: settings.cgi:235 msgid "Delete group" msgstr "" -#: settings.cgi:224 +#: settings.cgi:242 msgid "Group" msgstr "" -#: settings.cgi:225 +#: settings.cgi:243 msgid "Group ID" msgstr "" -#: settings.cgi:226 +#: settings.cgi:244 msgid "Members" msgstr "" -#: settings.cgi:253 +#: settings.cgi:271 msgid "Add a new group" msgstr "" -#: settings.cgi:256 settings.cgi:268 +#: settings.cgi:274 settings.cgi:286 msgid "Group name:" msgstr "" -#: settings.cgi:257 +#: settings.cgi:275 msgid "Create group" msgstr "" -#: settings.cgi:264 +#: settings.cgi:282 msgid "Manage group membership" msgstr "" -#: settings.cgi:269 settings.cgi:356 +#: settings.cgi:287 settings.cgi:374 msgid "User name:" msgstr "" -#: settings.cgi:272 +#: settings.cgi:290 msgid "Add user" msgstr "" -#: settings.cgi:273 +#: settings.cgi:291 msgid "Remove user" msgstr "" -#: settings.cgi:286 settings.cgi:594 +#: settings.cgi:304 settings.cgi:612 msgid "Manage users" msgstr "Hantera användare" -#: settings.cgi:294 +#: settings.cgi:312 msgid "Delete user" msgstr "Ta bort användare" -#: settings.cgi:295 +#: settings.cgi:313 msgid "Lock user" msgstr "Lås användare" -#: settings.cgi:296 +#: settings.cgi:314 msgid "Unlock user" msgstr "Lås upp användare" -#: settings.cgi:302 +#: settings.cgi:320 msgid "Login" msgstr "Logga in" -#: settings.cgi:303 +#: settings.cgi:321 msgid "User ID" msgstr "Användar ID" -#: settings.cgi:304 +#: settings.cgi:322 #, fuzzy msgid "User Name" msgstr "Användar ID" -#: settings.cgi:305 +#: settings.cgi:323 msgid "Home" msgstr "Hem" -#: settings.cgi:306 +#: settings.cgi:324 msgid "Shell" msgstr "Shell" -#: settings.cgi:340 +#: settings.cgi:358 msgid "Password:" msgstr "Lösenord:" -#: settings.cgi:342 +#: settings.cgi:359 +#, fuzzy +msgid "New password" +msgstr "Nytt lösenord: " + +#: settings.cgi:360 msgid "Change password" msgstr "Byt lösenord" -#: settings.cgi:349 +#: settings.cgi:367 msgid "Add a new user" msgstr "Lägg till ny användare" -#: settings.cgi:354 +#: settings.cgi:372 msgid "User login:" msgstr "Användar inloggning:" -#: settings.cgi:358 +#: settings.cgi:376 msgid "User password:" msgstr "Användar lösenord:" -#: settings.cgi:363 +#: settings.cgi:381 msgid "Create user" msgstr "Skapa användare" -#: settings.cgi:373 +#: settings.cgi:391 msgid "Current user sessions" msgstr "Nuvarande användarsessioner" -#: settings.cgi:383 +#: settings.cgi:401 msgid "Last user sessions" msgstr "Senaste användar sessioner" -#: settings.cgi:395 +#: settings.cgi:413 msgid "Choose locale" msgstr "Välj språk" -#: settings.cgi:398 +#: settings.cgi:416 msgid "Please wait..." msgstr "Var god vänta..." -#: settings.cgi:403 +#: settings.cgi:421 msgid "Current locale settings:" msgstr "Nuvarande språkinställningar:" -#: settings.cgi:410 +#: settings.cgi:428 msgid "Locales that are currently installed on the machine:" msgstr "Språk som är nuvarande installerade på maskinen:" -#: settings.cgi:420 +#: settings.cgi:438 #, fuzzy msgid "" "Can't see your language?
You can installera glibc-locale för att se en större lista av " "tillgängliga språk." -#: settings.cgi:427 +#: settings.cgi:445 msgid "Available locales:" msgstr "Tillgängliga språk:" -#: settings.cgi:431 +#: settings.cgi:449 msgid "Code" msgstr "Kod" -#: settings.cgi:432 +#: settings.cgi:450 msgid "Language" msgstr "Språk" -#: settings.cgi:433 +#: settings.cgi:451 msgid "Territory" msgstr "Territorium" -#: settings.cgi:450 settings.cgi:451 +#: settings.cgi:468 settings.cgi:469 msgid "-d" msgstr "-d" -#: settings.cgi:462 settings.cgi:765 settings.cgi:777 settings.cgi:789 +#: settings.cgi:480 settings.cgi:783 settings.cgi:795 settings.cgi:807 msgid "Activate" msgstr "Aktivera" -#: settings.cgi:475 settings.cgi:497 +#: settings.cgi:493 settings.cgi:515 msgid "Small quick tweaks for user %s" msgstr "" -#: settings.cgi:500 +#: settings.cgi:518 #, fuzzy msgid "Terminal prompt" msgstr "Terminal" -#: settings.cgi:506 +#: settings.cgi:524 msgid "Monochrome" msgstr "" -#: settings.cgi:515 +#: settings.cgi:533 msgid "Colored" msgstr "" -#: settings.cgi:524 settings.cgi:572 +#: settings.cgi:542 settings.cgi:590 #, fuzzy msgid "Manual edit: %s" msgstr "Manuell Ändring" -#: settings.cgi:525 +#: settings.cgi:543 msgid "" "To take effect: log out and log in to system or execute command in the " "terminal:" msgstr "" -#: settings.cgi:533 +#: settings.cgi:551 msgid "Menu button appearance" msgstr "" -#: settings.cgi:538 +#: settings.cgi:556 msgid "Icon:" msgstr "" -#: settings.cgi:541 settings.cgi:562 +#: settings.cgi:559 settings.cgi:580 msgid "Do not show" msgstr "" -#: settings.cgi:559 +#: settings.cgi:577 msgid "Text:" msgstr "" -#: settings.cgi:566 +#: settings.cgi:584 msgid "Show text" msgstr "" -#: settings.cgi:589 +#: settings.cgi:607 msgid "Manage system time, users or language settings" msgstr "Hantera system tid, användare eller språk inställningar" -#: settings.cgi:599 +#: settings.cgi:617 msgid "System time" msgstr "System tid" -#: settings.cgi:602 +#: settings.cgi:620 msgid "Time zone:" msgstr "Tid zon:" -#: settings.cgi:611 +#: settings.cgi:629 msgid "System time:" msgstr "System tid:" -#: settings.cgi:613 +#: settings.cgi:631 msgid "Sync online" msgstr "Synkronisera online" -#: settings.cgi:616 +#: settings.cgi:634 msgid "Hardware clock:" msgstr "Hårdvaru klocka:" -#: settings.cgi:618 +#: settings.cgi:636 msgid "Set hardware clock" msgstr "Ställ in hårdvaru klocka" -#: settings.cgi:704 +#: settings.cgi:722 msgid "System language" msgstr "System språk" -#: settings.cgi:717 +#: settings.cgi:735 msgid "" "You must logout and login again to your current session to use %s locale." msgstr "" "Du måste logga ut och logga in till din nuvarande session för att använda %s " "språk." -#: settings.cgi:720 +#: settings.cgi:738 msgid "Current system locale:" msgstr "Nuvarande system språk:" -#: settings.cgi:732 +#: settings.cgi:750 msgid "Keyboard layout" msgstr "" -#: settings.cgi:746 +#: settings.cgi:764 msgid "Current console keymap: %s" msgstr "Nuvarande tangentbordsspråk: %s" -#: settings.cgi:764 +#: settings.cgi:782 msgid "Suggested keymap for Xorg:" msgstr "Föreslaget tangentbordsspråk för Xorg:" -#: settings.cgi:773 +#: settings.cgi:791 msgid "Available keymaps:" msgstr "Tillgängliga tangentbordsspråk:" -#: settings.cgi:784 +#: settings.cgi:802 msgid "Panel configuration" msgstr "Panel konfiguration" -#: settings.cgi:787 +#: settings.cgi:805 msgid "Style:" msgstr "Stil:" -#: settings.cgi:793 +#: settings.cgi:811 msgid "Configuration files:" msgstr "Konfigurations filer:" -#: settings.cgi:794 styles/default/header.html:42 +#: settings.cgi:812 styles/default/header.html:45 msgid "Panel" msgstr "Panel" -#: settings.cgi:795 +#: settings.cgi:813 msgid "Server" msgstr "Server" -#: settings.cgi:798 +#: settings.cgi:816 #, fuzzy msgid "TazPanel provides a debugging mode and page:" msgstr "TazPanel förser ett debugging läge och sida:" -#: lib/libtazpanel:153 +#: lib/libtazpanel:156 msgid "connected" msgstr "ansluten" -#: lib/libtazpanel:170 +#: lib/libtazpanel:173 msgid "IP Address" msgstr "IP adress" -#: lib/libtazpanel:171 +#: lib/libtazpanel:174 msgid "Scan ports" msgstr "Skanna portar" -#: lib/libtazpanel:243 +#: lib/libtazpanel:249 #, fuzzy msgid "Please wait" msgstr "Var god vänta..." -#: lib/libtazpanel:295 +#: lib/libtazpanel:310 msgid "Label" msgstr "Etikett" -#: lib/libtazpanel:298 +#: lib/libtazpanel:313 msgid "Available" msgstr "Tillgängligt" -#: lib/libtazpanel:367 +#: lib/libtazpanel:392 msgid "You must be root to show this page." msgstr "" @@ -1344,60 +1482,60 @@ msgid "Help & Doc" msgstr "Hjälp & Dokument" -#: styles/default/header.html:32 +#: styles/default/header.html:35 #, fuzzy msgid "Confirm break" msgstr "Konfigurera" -#: styles/default/header.html:45 +#: styles/default/header.html:48 msgid "Processes" msgstr "Processer" -#: styles/default/header.html:47 +#: styles/default/header.html:50 msgid "Create Report" msgstr "Skapa Rapport" -#: styles/default/header.html:55 +#: styles/default/header.html:58 msgid "Config file" msgstr "Konfigurerings fil" -#: styles/default/header.html:56 +#: styles/default/header.html:59 msgid "Ethernet" msgstr "Ethernet" -#: styles/default/header.html:57 +#: styles/default/header.html:60 msgid "Wireless" msgstr "Trådlöst" -#: styles/default/header.html:101 +#: styles/default/header.html:104 msgid "Users" msgstr "Användare" -#: styles/default/header.html:102 +#: styles/default/header.html:105 msgid "Groups" msgstr "" -#: styles/default/header.html:103 +#: styles/default/header.html:106 msgid "Tweaks" msgstr "" -#: styles/default/header.html:119 +#: styles/default/header.html:122 msgid "Some features are disabled." msgstr "" -#: styles/default/header.html:124 +#: styles/default/header.html:127 msgid "You are logged in to the TazPanel as user %s." msgstr "" -#: styles/default/header.html:125 +#: styles/default/header.html:128 msgid "Click to re-login." msgstr "" -#: styles/default/header.html:135 +#: styles/default/header.html:138 msgid "Copyright" msgstr "Copyright" -#: styles/default/header.html:137 +#: styles/default/header.html:140 msgid "BSD License" msgstr "BSD License" @@ -1407,9 +1545,6 @@ #~ msgid "Changing password for TazPanel" #~ msgstr "Byter lösenord för TazPanel" -#~ msgid "New password: " -#~ msgstr "Nytt lösenord: " - #~ msgid "Password changed successfully" #~ msgstr "Lösenordet byttes" @@ -1449,9 +1584,6 @@ #~ msgid "Activate (DHCP)" #~ msgstr "Aktivera (DHCP)" -#~ msgid "Disable" -#~ msgstr "Inaktivera" - #~ msgid "Wifi name (ESSID)" #~ msgstr "WIFI namn (ESSID)" diff -r 4f619f973b88 -r 3d4145137792 po/tazpanel.pot --- a/po/tazpanel.pot Mon Aug 24 01:05:08 2015 +0300 +++ b/po/tazpanel.pot Wed Aug 26 05:51:08 2015 +0300 @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: TazPanel 1.8.2\n" +"Project-Id-Version: TazPanel 522\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-12 12:25+0200\n" +"POT-Creation-Date: 2015-08-26 05:38+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,24 +16,25 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: tazpanel:52 +#: tazpanel:54 msgid "TazPanel is already running." msgstr "" -#: tazpanel:55 +#: tazpanel:57 msgid "Starting TazPanel web server on port %d..." msgstr "" -#: tazpanel:57 +#: tazpanel:59 msgid "TazPanel Authentication - Default: root:root" msgstr "" -#: tazpanel:64 +#: tazpanel:66 msgid "TazPanel is not running." msgstr "" -#: tazpanel:67 +#: tazpanel:69 msgid "Stopping TazPanel web server..." msgstr "" @@ -53,13 +54,12 @@ msgid "Save" msgstr "" -#: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670 -#: network.cgi:720 boot.cgi:525 hardware.cgi:492 settings.cgi:766 +#: index.cgi:174 settings.cgi:784 lib/libtazpanel:378 msgid "Edit" msgstr "" -#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:630 -#: styles/default/header.html:46 +#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:679 +#: styles/default/header.html:49 msgid "Terminal" msgstr "" @@ -67,7 +67,7 @@ msgid "History" msgstr "" -#: index.cgi:247 lib/libtazpanel:348 +#: index.cgi:247 lib/libtazpanel:361 msgid "Back" msgstr "" @@ -99,7 +99,7 @@ msgid "Please, don't run interactive command \"%s\"" msgstr "" -#: index.cgi:330 styles/default/header.html:98 +#: index.cgi:330 styles/default/header.html:101 msgid "Settings" msgstr "" @@ -123,7 +123,7 @@ msgid "Apply" msgstr "" -#: index.cgi:445 index.cgi:631 +#: index.cgi:445 index.cgi:680 msgid "Process activity" msgstr "" @@ -195,348 +195,476 @@ msgid "Getting boot logs..." msgstr "" -#: index.cgi:589 boot.cgi:98 styles/default/header.html:74 +#: index.cgi:589 boot.cgi:93 styles/default/header.html:77 msgid "Kernel messages" msgstr "" -#: index.cgi:592 boot.cgi:99 styles/default/header.html:75 +#: index.cgi:592 boot.cgi:94 styles/default/header.html:78 msgid "Boot scripts" msgstr "" #: index.cgi:597 +msgid "Getting package list..." +msgstr "" + +#: index.cgi:600 +msgid "Packages" +msgstr "" + +#: index.cgi:638 +msgid "Getting extra reports..." +msgstr "" + +#: index.cgi:646 msgid "Creating report footer..." msgstr "" -#: index.cgi:608 index.cgi:704 boot.cgi:504 boot.cgi:506 +#: index.cgi:657 index.cgi:753 boot.cgi:499 boot.cgi:501 msgid "View" msgstr "" -#: index.cgi:613 +#: index.cgi:662 msgid "This report can be attached with a bug report on:" msgstr "" -#: index.cgi:623 +#: index.cgi:672 msgid "SliTaz administration and configuration Panel" msgstr "" -#: index.cgi:632 +#: index.cgi:681 msgid "Create a report" msgstr "" -#: index.cgi:636 styles/default/header.html:44 styles/default/header.html:54 -#: styles/default/header.html:64 styles/default/header.html:90 -#: styles/default/header.html:100 +#: index.cgi:685 styles/default/header.html:47 styles/default/header.html:57 +#: styles/default/header.html:67 styles/default/header.html:93 +#: styles/default/header.html:103 msgid "Summary" msgstr "" -#: index.cgi:638 +#: index.cgi:687 hosts.cgi:203 msgid "Host:" msgstr "" -#: index.cgi:639 +#: index.cgi:688 msgid "Uptime:" msgstr "" -#: index.cgi:642 +#: index.cgi:691 msgid "Memory in Mb:" msgstr "" -#: index.cgi:644 +#: index.cgi:693 msgid "Total: %d, Used: %d, Free: %d" msgstr "" -#: index.cgi:648 +#: index.cgi:697 msgid "Linux kernel:" msgstr "" -#: index.cgi:657 +#: index.cgi:706 msgid "Network status" msgstr "" -#: index.cgi:659 network.cgi:15 network.cgi:215 styles/default/header.html:52 +#: index.cgi:708 network.cgi:15 network.cgi:216 hosts.cgi:15 +#: styles/default/header.html:55 msgid "Network" msgstr "" -#: index.cgi:668 hardware.cgi:349 +#: index.cgi:717 hardware.cgi:349 msgid "Filesystem usage statistics" msgstr "" -#: index.cgi:670 styles/default/header.html:93 +#: index.cgi:719 styles/default/header.html:96 msgid "Disks" msgstr "" -#: index.cgi:702 +#: index.cgi:751 msgid "Panel Activity" msgstr "" -#: network.cgi:152 +#: network.cgi:153 msgid "Changed hostname: %s" msgstr "" -#: network.cgi:209 +#: network.cgi:210 msgid "Scanning open ports..." msgstr "" -#: network.cgi:214 +#: network.cgi:215 msgid "Port scanning for %s" msgstr "" -#: network.cgi:225 +#: network.cgi:226 msgid "Ethernet connection" msgstr "" -#: network.cgi:243 +#: network.cgi:244 msgid "" "Here you can configure a wired connection using DHCP to automatically get a " "random IP or configure a static/fixed IP" msgstr "" -#: network.cgi:247 boot.cgi:149 +#: network.cgi:248 boot.cgi:144 msgid "Configuration" msgstr "" -#: network.cgi:253 lib/libtazpanel:167 +#: network.cgi:254 lib/libtazpanel:170 msgid "Interface" msgstr "" -#: network.cgi:261 +#: network.cgi:262 msgid "Static IP" msgstr "" -#: network.cgi:263 +#: network.cgi:264 msgid "Use static IP" msgstr "" -#: network.cgi:265 +#: network.cgi:266 msgid "IP address" msgstr "" -#: network.cgi:268 +#: network.cgi:269 msgid "Netmask" msgstr "" -#: network.cgi:271 +#: network.cgi:272 msgid "Gateway" msgstr "" -#: network.cgi:274 +#: network.cgi:275 msgid "DNS server" msgstr "" -#: network.cgi:277 network.cgi:297 +#: network.cgi:278 network.cgi:298 msgid "Wake up" msgstr "" -#: network.cgi:279 +#: network.cgi:280 msgid "Wake up machines by network" msgstr "" -#: network.cgi:281 +#: network.cgi:282 msgid "MAC address to wake up" msgstr "" -#: network.cgi:282 network.cgi:287 +#: network.cgi:283 network.cgi:288 msgid "Leave empty for a general wakeup" msgstr "" -#: network.cgi:283 +#: network.cgi:284 msgid "List" msgstr "" -#: network.cgi:286 +#: network.cgi:287 msgid "MAC/IP address password" msgstr "" -#: network.cgi:288 +#: network.cgi:289 msgid "Help" msgstr "" -#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:289 +#: network.cgi:296 network.cgi:446 network.cgi:639 boot.cgi:284 msgid "Start" msgstr "" -#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:278 +#: network.cgi:297 network.cgi:447 network.cgi:640 boot.cgi:273 msgid "Stop" msgstr "" -#: network.cgi:321 network.cgi:591 +#: network.cgi:322 network.cgi:602 msgid "Configuration file" msgstr "" -#: network.cgi:331 +#: network.cgi:327 msgid "" "These values are the ethernet settings in the main /etc/network.conf " "configuration file" msgstr "" -#: network.cgi:343 +#: network.cgi:339 msgid "(hidden)" msgstr "" -#: network.cgi:349 boot.cgi:147 hardware.cgi:57 lib/libtazpanel:168 +#: network.cgi:345 hosts.cgi:219 boot.cgi:142 hardware.cgi:57 +#: lib/libtazpanel:171 msgid "Name" msgstr "" -#: network.cgi:350 +#: network.cgi:346 msgid "Signal level" msgstr "" -#: network.cgi:351 +#: network.cgi:347 msgid "Channel" msgstr "" -#: network.cgi:352 +#: network.cgi:348 msgid "Encryption" msgstr "" -#: network.cgi:353 boot.cgi:150 lib/libtazpanel:169 +#: network.cgi:349 boot.cgi:145 lib/libtazpanel:172 msgid "Status" msgstr "" -#: network.cgi:404 network.cgi:486 network.cgi:508 +#: network.cgi:400 network.cgi:482 network.cgi:504 msgid "None" msgstr "" -#: network.cgi:410 +#: network.cgi:406 msgid "Connected" msgstr "" -#: network.cgi:436 +#: network.cgi:432 msgid "Wireless connection" msgstr "" -#: network.cgi:452 lib/libtazpanel:150 +#: network.cgi:448 lib/libtazpanel:153 msgid "Scan" msgstr "" -#: network.cgi:460 +#: network.cgi:456 msgid "Scanning wireless interface..." msgstr "" -#: network.cgi:474 +#: network.cgi:470 msgid "Connection" msgstr "" -#: network.cgi:480 +#: network.cgi:476 msgid "Network SSID" msgstr "" -#: network.cgi:484 +#: network.cgi:480 msgid "Security" msgstr "" -#: network.cgi:495 +#: network.cgi:491 msgid "EAP method" msgstr "" -#: network.cgi:506 +#: network.cgi:502 msgid "Phase 2 authentication" msgstr "" -#: network.cgi:518 +#: network.cgi:514 msgid "CA certificate" msgstr "" -#: network.cgi:523 +#: network.cgi:519 msgid "User certificate" msgstr "" -#: network.cgi:528 +#: network.cgi:524 msgid "Identity" msgstr "" -#: network.cgi:533 +#: network.cgi:529 msgid "Anonymous identity" msgstr "" -#: network.cgi:538 +#: network.cgi:534 msgid "Password" msgstr "" -#: network.cgi:541 +#: network.cgi:537 msgid "Show password" msgstr "" -#: network.cgi:582 +#: network.cgi:549 network.cgi:678 msgid "Configure" msgstr "" -#: network.cgi:601 +#: network.cgi:550 +msgid "Share" +msgstr "" + +#: network.cgi:591 +msgid "Share Wi-Fi network with your friends" +msgstr "" + +#: network.cgi:607 msgid "" "These values are the wifi settings in the main /etc/network.conf " "configuration file" msgstr "" -#: network.cgi:607 +#: network.cgi:613 msgid "Output of iwconfig" msgstr "" -#: network.cgi:616 +#: network.cgi:622 msgid "Manage network connections and services" msgstr "" -#: network.cgi:635 +#: network.cgi:641 msgid "Restart" msgstr "" -#: network.cgi:639 +#: network.cgi:645 msgid "Configuration:" msgstr "" -#: network.cgi:647 +#: network.cgi:653 msgid "Network interfaces" msgstr "" -#: network.cgi:654 +#: network.cgi:660 msgid "forward packets between interfaces" msgstr "" -#: network.cgi:656 network.cgi:690 boot.cgi:332 settings.cgi:608 -#: settings.cgi:722 +#: network.cgi:662 network.cgi:693 boot.cgi:327 settings.cgi:626 +#: settings.cgi:740 msgid "Change" msgstr "" -#: network.cgi:665 +#: network.cgi:670 hosts.cgi:179 msgid "Hosts" msgstr "" -#: network.cgi:682 +#: network.cgi:672 +msgid "%d record in the hosts DB" +msgid_plural "%d records in the hosts DB" +msgstr[0] "" +msgstr[1] "" + +#: network.cgi:679 hosts.cgi:16 +msgid "Use hosts file as Ad blocker" +msgstr "" + +#: network.cgi:686 msgid "Hostname" msgstr "" -#: network.cgi:702 +#: network.cgi:705 msgid "Output of ifconfig" msgstr "" -#: network.cgi:708 +#: network.cgi:711 msgid "Routing table" msgstr "" -#: network.cgi:715 +#: network.cgi:717 msgid "Domain name resolution" msgstr "" -#: network.cgi:730 +#: network.cgi:723 msgid "ARP table" msgstr "" -#: network.cgi:750 +#: network.cgi:743 msgid "Proxy" msgstr "" -#: network.cgi:751 +#: network.cgi:744 hosts.cgi:200 hosts.cgi:207 msgid "Add" msgstr "" -#: network.cgi:764 +#: network.cgi:757 msgid "IP Connections" msgstr "" -#: network.cgi:774 +#: network.cgi:765 msgid "Firewall" msgstr "" -#: boot.cgi:16 styles/default/header.html:62 +#: network.cgi:766 +msgid "Port knocker" +msgstr "" + +#: hosts.cgi:107 +msgid "Host \"%s\" added to /etc/hosts." +msgstr "" + +#: hosts.cgi:120 +msgid "%d record disabled" +msgid_plural "%d records disabled" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:130 +msgid "Installing the \"%s\"..." +msgstr "" + +#: hosts.cgi:132 hosts.cgi:142 hosts.cgi:152 +msgid "Done" +msgstr "" + +#: hosts.cgi:140 +msgid "Updating the \"%s\"..." +msgstr "" + +#: hosts.cgi:150 +msgid "Removing the \"%s\"..." +msgstr "" + +#: hosts.cgi:163 +msgid "%d record used for Ad blocking" +msgid_plural "%d records used for Ad blocking" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:169 +msgid "%d record found for \"%s\"" +msgid_plural "%d records found for \"%s\"" +msgstr[0] "" +msgstr[1] "" + +#: hosts.cgi:173 +msgid " (The list is limited to the first 100 entries.)" +msgstr "" + +#: hosts.cgi:194 +msgid "Disable selected" +msgstr "" + +#: hosts.cgi:213 +msgid "Manage lists" +msgstr "" + +#: hosts.cgi:214 +msgid "" +"You can use one or more prepared hosts files to block advertisements, " +"malware and other irritants." +msgstr "" + +#: hosts.cgi:220 +msgid "Details" +msgstr "" + +#: hosts.cgi:221 +msgid "Updates" +msgstr "" + +#: hosts.cgi:222 +msgid "Actions" +msgstr "" + +#: hosts.cgi:235 +msgid "info" +msgstr "" + +#: hosts.cgi:237 +msgid "Updated monthly" +msgstr "" + +#: hosts.cgi:238 +msgid "Updated regularly" +msgstr "" + +#: hosts.cgi:276 +msgid "Upgrade" +msgstr "" + +#: hosts.cgi:281 +msgid "Remove" +msgstr "" + +#: hosts.cgi:287 +msgid "Install" +msgstr "" + +#: boot.cgi:16 styles/default/header.html:65 msgid "Boot" msgstr "" @@ -544,225 +672,225 @@ msgid "Show more..." msgstr "" -#: boot.cgi:40 boot.cgi:45 boot.cgi:486 styles/default/header.html:80 +#: boot.cgi:40 boot.cgi:45 boot.cgi:481 styles/default/header.html:83 msgid "System logs" msgstr "" -#: boot.cgi:95 +#: boot.cgi:90 msgid "Boot log files" msgstr "" -#: boot.cgi:100 styles/default/header.html:76 +#: boot.cgi:95 styles/default/header.html:79 msgid "X server" msgstr "" -#: boot.cgi:101 styles/default/header.html:77 +#: boot.cgi:96 styles/default/header.html:80 msgid "X session" msgstr "" -#: boot.cgi:120 boot.cgi:487 styles/default/header.html:81 +#: boot.cgi:115 boot.cgi:482 styles/default/header.html:84 msgid "Manage daemons" msgstr "" -#: boot.cgi:123 +#: boot.cgi:118 msgid "Check, start and stop daemons on SliTaz" msgstr "" -#: boot.cgi:148 hardware.cgi:177 settings.cgi:434 +#: boot.cgi:143 hardware.cgi:177 settings.cgi:452 msgid "Description" msgstr "" -#: boot.cgi:151 +#: boot.cgi:146 msgid "Action" msgstr "" -#: boot.cgi:152 +#: boot.cgi:147 msgid "PID" msgstr "" -#: boot.cgi:177 +#: boot.cgi:172 msgid "SliTaz Firewall with iptable rules" msgstr "" -#: boot.cgi:179 +#: boot.cgi:174 msgid "Small and fast web server with CGI support" msgstr "" -#: boot.cgi:182 +#: boot.cgi:177 msgid "Network time protocol daemon" msgstr "" -#: boot.cgi:185 +#: boot.cgi:180 msgid "Anonymous FTP server" msgstr "" -#: boot.cgi:188 +#: boot.cgi:183 msgid "Busybox DHCP server" msgstr "" -#: boot.cgi:191 +#: boot.cgi:186 msgid "Linux Kernel log daemon" msgstr "" -#: boot.cgi:194 +#: boot.cgi:189 msgid "Execute scheduled commands" msgstr "" -#: boot.cgi:197 +#: boot.cgi:192 msgid "Small static DNS server daemon" msgstr "" -#: boot.cgi:200 +#: boot.cgi:195 msgid "Transfer a file on tftp request" msgstr "" -#: boot.cgi:203 +#: boot.cgi:198 msgid "Printer daemon" msgstr "" -#: boot.cgi:205 +#: boot.cgi:200 msgid "Listen for network connections and launch programs" msgstr "" -#: boot.cgi:208 +#: boot.cgi:203 msgid "Manage a ZeroConf IPv4 link-local address" msgstr "" -#: boot.cgi:277 +#: boot.cgi:272 msgid "Started" msgstr "" -#: boot.cgi:288 +#: boot.cgi:283 msgid "Stopped" msgstr "" -#: boot.cgi:314 +#: boot.cgi:309 msgid "GRUB Boot loader" msgstr "" -#: boot.cgi:316 +#: boot.cgi:311 msgid "The first application started when the computer powers on" msgstr "" -#: boot.cgi:323 +#: boot.cgi:318 msgid "Default entry:" msgstr "" -#: boot.cgi:325 +#: boot.cgi:320 msgid "Timeout:" msgstr "" -#: boot.cgi:327 +#: boot.cgi:322 msgid "Splash image:" msgstr "" -#: boot.cgi:339 +#: boot.cgi:334 msgid "View or edit menu.lst" msgstr "" -#: boot.cgi:344 +#: boot.cgi:339 msgid "Boot entries" msgstr "" -#: boot.cgi:351 +#: boot.cgi:346 msgid "Entry" msgstr "" -#: boot.cgi:372 +#: boot.cgi:367 msgid "Web boot is available with gPXE" msgstr "" -#: boot.cgi:386 boot.cgi:490 styles/default/header.html:83 +#: boot.cgi:381 boot.cgi:485 styles/default/header.html:86 msgid "ISO mine" msgstr "" -#: boot.cgi:388 +#: boot.cgi:383 msgid "Invalid ISO image." msgstr "" -#: boot.cgi:410 +#: boot.cgi:403 msgid "ISO image file full path" msgstr "" -#: boot.cgi:411 +#: boot.cgi:404 msgid "set /dev/cdrom for a physical CD-ROM" msgstr "" -#: boot.cgi:414 +#: boot.cgi:407 msgid "Working directory" msgstr "" -#: boot.cgi:416 +#: boot.cgi:409 msgid "Target partition" msgstr "" -#: boot.cgi:417 +#: boot.cgi:410 msgid "" "For hard disk installation only. Will create /slitaz tree and keep other " "files. No partitioning and no formatting." msgstr "" -#: boot.cgi:420 +#: boot.cgi:413 msgid "Choose a partition (optional)" msgstr "" -#: boot.cgi:431 +#: boot.cgi:424 msgid "USB key device" msgstr "" -#: boot.cgi:432 +#: boot.cgi:425 msgid "For USB boot key only. Will erase the full device." msgstr "" -#: boot.cgi:435 +#: boot.cgi:428 msgid "Choose a USB key (optional)" msgstr "" -#: boot.cgi:454 +#: boot.cgi:449 msgid "Choose an action" msgstr "" -#: boot.cgi:467 +#: boot.cgi:462 msgid "Mine" msgstr "" -#: boot.cgi:480 +#: boot.cgi:475 msgid "Boot & Start services" msgstr "" -#: boot.cgi:482 +#: boot.cgi:477 msgid "Everything that happens before user login" msgstr "" -#: boot.cgi:485 styles/default/header.html:72 +#: boot.cgi:480 styles/default/header.html:75 msgid "Boot logs" msgstr "" -#: boot.cgi:493 styles/default/header.html:68 +#: boot.cgi:488 styles/default/header.html:71 msgid "Boot loader" msgstr "" -#: boot.cgi:500 +#: boot.cgi:495 msgid "Configuration files" msgstr "" -#: boot.cgi:503 +#: boot.cgi:498 msgid "Main configuration file:" msgstr "" -#: boot.cgi:505 +#: boot.cgi:500 msgid "Login manager settings:" msgstr "" -#: boot.cgi:513 +#: boot.cgi:508 msgid "Kernel cmdline" msgstr "" -#: boot.cgi:520 +#: boot.cgi:515 msgid "Local startup commands" msgstr "" -#: hardware.cgi:13 styles/default/header.html:88 +#: hardware.cgi:13 styles/default/header.html:91 msgid "Hardware" msgstr "" @@ -770,7 +898,7 @@ msgid "Bus" msgstr "" -#: hardware.cgi:55 hardware.cgi:534 +#: hardware.cgi:55 hardware.cgi:527 msgid "Device" msgstr "" @@ -786,7 +914,7 @@ msgid "Detect PCI and USB hardware" msgstr "" -#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:91 +#: hardware.cgi:118 hardware.cgi:248 styles/default/header.html:94 msgid "Kernel modules" msgstr "" @@ -818,11 +946,11 @@ msgid "Module" msgstr "" -#: hardware.cgi:178 hardware.cgi:536 lib/libtazpanel:297 +#: hardware.cgi:178 hardware.cgi:529 lib/libtazpanel:312 msgid "Size" msgstr "" -#: hardware.cgi:179 hardware.cgi:593 lib/libtazpanel:299 +#: hardware.cgi:179 hardware.cgi:586 lib/libtazpanel:314 msgid "Used" msgstr "" @@ -850,7 +978,7 @@ msgid "Manage your computer hardware" msgstr "" -#: hardware.cgi:249 styles/default/header.html:92 +#: hardware.cgi:249 styles/default/header.html:95 msgid "Detect PCI/USB" msgstr "" @@ -898,75 +1026,75 @@ msgid "Filesystems table" msgstr "" -#: hardware.cgi:500 lib/libtazpanel:294 +#: hardware.cgi:493 lib/libtazpanel:309 msgid "Disk" msgstr "" -#: hardware.cgi:501 lib/libtazpanel:300 +#: hardware.cgi:494 lib/libtazpanel:315 msgid "Mount point" msgstr "" -#: hardware.cgi:502 lib/libtazpanel:296 +#: hardware.cgi:495 lib/libtazpanel:311 msgid "Type" msgstr "" -#: hardware.cgi:503 +#: hardware.cgi:496 msgid "Options" msgstr "" -#: hardware.cgi:504 +#: hardware.cgi:497 msgid "Freq" msgstr "" -#: hardware.cgi:505 +#: hardware.cgi:498 msgid "Pass" msgstr "" -#: hardware.cgi:527 +#: hardware.cgi:520 msgid "Loop devices" msgstr "" -#: hardware.cgi:535 +#: hardware.cgi:528 msgid "Backing file" msgstr "" -#: hardware.cgi:537 +#: hardware.cgi:530 msgid "Access" msgstr "" -#: hardware.cgi:538 +#: hardware.cgi:531 msgid "Offset" msgstr "" -#: hardware.cgi:547 +#: hardware.cgi:540 msgid "read/write" msgstr "" -#: hardware.cgi:548 hardware.cgi:573 +#: hardware.cgi:541 hardware.cgi:566 msgid "read only" msgstr "" -#: hardware.cgi:570 +#: hardware.cgi:563 msgid "Setup" msgstr "" -#: hardware.cgi:571 +#: hardware.cgi:564 msgid "new backing file:" msgstr "" -#: hardware.cgi:572 +#: hardware.cgi:565 msgid "offset in bytes:" msgstr "" -#: hardware.cgi:590 +#: hardware.cgi:583 msgid "System memory" msgstr "" -#: hardware.cgi:596 +#: hardware.cgi:589 msgid "Buffers" msgstr "" -#: hardware.cgi:599 +#: hardware.cgi:592 msgid "Free" msgstr "" @@ -974,328 +1102,332 @@ msgid "System settings" msgstr "" -#: settings.cgi:82 settings.cgi:621 settings.cgi:648 settings.cgi:653 +#: settings.cgi:100 settings.cgi:639 settings.cgi:666 settings.cgi:671 msgid "Set date" msgstr "" -#: settings.cgi:208 settings.cgi:595 +#: settings.cgi:226 settings.cgi:613 msgid "Manage groups" msgstr "" -#: settings.cgi:216 settings.cgi:293 +#: settings.cgi:234 settings.cgi:311 msgid "Selection:" msgstr "" -#: settings.cgi:217 +#: settings.cgi:235 msgid "Delete group" msgstr "" -#: settings.cgi:224 +#: settings.cgi:242 msgid "Group" msgstr "" -#: settings.cgi:225 +#: settings.cgi:243 msgid "Group ID" msgstr "" -#: settings.cgi:226 +#: settings.cgi:244 msgid "Members" msgstr "" -#: settings.cgi:253 +#: settings.cgi:271 msgid "Add a new group" msgstr "" -#: settings.cgi:256 settings.cgi:268 +#: settings.cgi:274 settings.cgi:286 msgid "Group name:" msgstr "" -#: settings.cgi:257 +#: settings.cgi:275 msgid "Create group" msgstr "" -#: settings.cgi:264 +#: settings.cgi:282 msgid "Manage group membership" msgstr "" -#: settings.cgi:269 settings.cgi:356 +#: settings.cgi:287 settings.cgi:374 msgid "User name:" msgstr "" -#: settings.cgi:272 +#: settings.cgi:290 msgid "Add user" msgstr "" -#: settings.cgi:273 +#: settings.cgi:291 msgid "Remove user" msgstr "" -#: settings.cgi:286 settings.cgi:594 +#: settings.cgi:304 settings.cgi:612 msgid "Manage users" msgstr "" -#: settings.cgi:294 +#: settings.cgi:312 msgid "Delete user" msgstr "" -#: settings.cgi:295 +#: settings.cgi:313 msgid "Lock user" msgstr "" -#: settings.cgi:296 +#: settings.cgi:314 msgid "Unlock user" msgstr "" -#: settings.cgi:302 +#: settings.cgi:320 msgid "Login" msgstr "" -#: settings.cgi:303 +#: settings.cgi:321 msgid "User ID" msgstr "" -#: settings.cgi:304 +#: settings.cgi:322 msgid "User Name" msgstr "" -#: settings.cgi:305 +#: settings.cgi:323 msgid "Home" msgstr "" -#: settings.cgi:306 +#: settings.cgi:324 msgid "Shell" msgstr "" -#: settings.cgi:340 +#: settings.cgi:358 msgid "Password:" msgstr "" -#: settings.cgi:342 +#: settings.cgi:359 +msgid "New password" +msgstr "" + +#: settings.cgi:360 msgid "Change password" msgstr "" -#: settings.cgi:349 +#: settings.cgi:367 msgid "Add a new user" msgstr "" -#: settings.cgi:354 +#: settings.cgi:372 msgid "User login:" msgstr "" -#: settings.cgi:358 +#: settings.cgi:376 msgid "User password:" msgstr "" -#: settings.cgi:363 +#: settings.cgi:381 msgid "Create user" msgstr "" -#: settings.cgi:373 +#: settings.cgi:391 msgid "Current user sessions" msgstr "" -#: settings.cgi:383 +#: settings.cgi:401 msgid "Last user sessions" msgstr "" -#: settings.cgi:395 +#: settings.cgi:413 msgid "Choose locale" msgstr "" -#: settings.cgi:398 +#: settings.cgi:416 msgid "Please wait..." msgstr "" -#: settings.cgi:403 +#: settings.cgi:421 msgid "Current locale settings:" msgstr "" -#: settings.cgi:410 +#: settings.cgi:428 msgid "Locales that are currently installed on the machine:" msgstr "" -#: settings.cgi:420 +#: settings.cgi:438 msgid "" "Can't see your language?
You can install glibc-locale to see a larger list of available locales." msgstr "" -#: settings.cgi:427 +#: settings.cgi:445 msgid "Available locales:" msgstr "" -#: settings.cgi:431 +#: settings.cgi:449 msgid "Code" msgstr "" -#: settings.cgi:432 +#: settings.cgi:450 msgid "Language" msgstr "" -#: settings.cgi:433 +#: settings.cgi:451 msgid "Territory" msgstr "" -#: settings.cgi:450 settings.cgi:451 +#: settings.cgi:468 settings.cgi:469 msgid "-d" msgstr "" -#: settings.cgi:462 settings.cgi:765 settings.cgi:777 settings.cgi:789 +#: settings.cgi:480 settings.cgi:783 settings.cgi:795 settings.cgi:807 msgid "Activate" msgstr "" -#: settings.cgi:475 settings.cgi:497 +#: settings.cgi:493 settings.cgi:515 msgid "Small quick tweaks for user %s" msgstr "" -#: settings.cgi:500 +#: settings.cgi:518 msgid "Terminal prompt" msgstr "" -#: settings.cgi:506 +#: settings.cgi:524 msgid "Monochrome" msgstr "" -#: settings.cgi:515 +#: settings.cgi:533 msgid "Colored" msgstr "" -#: settings.cgi:524 settings.cgi:572 +#: settings.cgi:542 settings.cgi:590 msgid "Manual edit: %s" msgstr "" -#: settings.cgi:525 +#: settings.cgi:543 msgid "" "To take effect: log out and log in to system or execute command in the " "terminal:" msgstr "" -#: settings.cgi:533 +#: settings.cgi:551 msgid "Menu button appearance" msgstr "" -#: settings.cgi:538 +#: settings.cgi:556 msgid "Icon:" msgstr "" -#: settings.cgi:541 settings.cgi:562 +#: settings.cgi:559 settings.cgi:580 msgid "Do not show" msgstr "" -#: settings.cgi:559 +#: settings.cgi:577 msgid "Text:" msgstr "" -#: settings.cgi:566 +#: settings.cgi:584 msgid "Show text" msgstr "" -#: settings.cgi:589 +#: settings.cgi:607 msgid "Manage system time, users or language settings" msgstr "" -#: settings.cgi:599 +#: settings.cgi:617 msgid "System time" msgstr "" -#: settings.cgi:602 +#: settings.cgi:620 msgid "Time zone:" msgstr "" -#: settings.cgi:611 +#: settings.cgi:629 msgid "System time:" msgstr "" -#: settings.cgi:613 +#: settings.cgi:631 msgid "Sync online" msgstr "" -#: settings.cgi:616 +#: settings.cgi:634 msgid "Hardware clock:" msgstr "" -#: settings.cgi:618 +#: settings.cgi:636 msgid "Set hardware clock" msgstr "" -#: settings.cgi:704 +#: settings.cgi:722 msgid "System language" msgstr "" -#: settings.cgi:717 +#: settings.cgi:735 msgid "" "You must logout and login again to your current session to use %s locale." msgstr "" -#: settings.cgi:720 +#: settings.cgi:738 msgid "Current system locale:" msgstr "" -#: settings.cgi:732 +#: settings.cgi:750 msgid "Keyboard layout" msgstr "" -#: settings.cgi:746 +#: settings.cgi:764 msgid "Current console keymap: %s" msgstr "" -#: settings.cgi:764 +#: settings.cgi:782 msgid "Suggested keymap for Xorg:" msgstr "" -#: settings.cgi:773 +#: settings.cgi:791 msgid "Available keymaps:" msgstr "" -#: settings.cgi:784 +#: settings.cgi:802 msgid "Panel configuration" msgstr "" -#: settings.cgi:787 +#: settings.cgi:805 msgid "Style:" msgstr "" -#: settings.cgi:793 +#: settings.cgi:811 msgid "Configuration files:" msgstr "" -#: settings.cgi:794 styles/default/header.html:42 +#: settings.cgi:812 styles/default/header.html:45 msgid "Panel" msgstr "" -#: settings.cgi:795 +#: settings.cgi:813 msgid "Server" msgstr "" -#: settings.cgi:798 +#: settings.cgi:816 msgid "TazPanel provides a debugging mode and page:" msgstr "" -#: lib/libtazpanel:153 +#: lib/libtazpanel:156 msgid "connected" msgstr "" -#: lib/libtazpanel:170 +#: lib/libtazpanel:173 msgid "IP Address" msgstr "" -#: lib/libtazpanel:171 +#: lib/libtazpanel:174 msgid "Scan ports" msgstr "" -#: lib/libtazpanel:243 +#: lib/libtazpanel:249 msgid "Please wait" msgstr "" -#: lib/libtazpanel:295 +#: lib/libtazpanel:310 msgid "Label" msgstr "" -#: lib/libtazpanel:298 +#: lib/libtazpanel:313 msgid "Available" msgstr "" -#: lib/libtazpanel:367 +#: lib/libtazpanel:392 msgid "You must be root to show this page." msgstr "" @@ -1307,58 +1439,58 @@ msgid "Help & Doc" msgstr "" -#: styles/default/header.html:32 +#: styles/default/header.html:35 msgid "Confirm break" msgstr "" -#: styles/default/header.html:45 +#: styles/default/header.html:48 msgid "Processes" msgstr "" -#: styles/default/header.html:47 +#: styles/default/header.html:50 msgid "Create Report" msgstr "" -#: styles/default/header.html:55 +#: styles/default/header.html:58 msgid "Config file" msgstr "" -#: styles/default/header.html:56 +#: styles/default/header.html:59 msgid "Ethernet" msgstr "" -#: styles/default/header.html:57 +#: styles/default/header.html:60 msgid "Wireless" msgstr "" -#: styles/default/header.html:101 +#: styles/default/header.html:104 msgid "Users" msgstr "" -#: styles/default/header.html:102 +#: styles/default/header.html:105 msgid "Groups" msgstr "" -#: styles/default/header.html:103 +#: styles/default/header.html:106 msgid "Tweaks" msgstr "" -#: styles/default/header.html:119 +#: styles/default/header.html:122 msgid "Some features are disabled." msgstr "" -#: styles/default/header.html:124 +#: styles/default/header.html:127 msgid "You are logged in to the TazPanel as user %s." msgstr "" -#: styles/default/header.html:125 +#: styles/default/header.html:128 msgid "Click to re-login." msgstr "" -#: styles/default/header.html:135 +#: styles/default/header.html:138 msgid "Copyright" msgstr "" -#: styles/default/header.html:137 +#: styles/default/header.html:140 msgid "BSD License" msgstr ""