# HG changeset patch # User Aleksej Bobylev # Date 1433727139 -10800 # Node ID 3117717c007d2569b2a8620208b6e3857313f285 # Parent f8ff472846c2cc3cdef6da9777e887fe98a7b4c9 *.cgi: Implement TazPanel title and sub-title; hardware.cgi: fix and improve modules search; index.cgi: complex code using awk was prevented 'make pot' to collect all messages, fix terminal history removing; tazpanel.js: disable buttons when no packages selected (pkgs.cgi: up / search / category lists); network.cgi: complex comment was prevented 'make pot' to collect all messages; powersaving.cgi: starting development; *.po: rebuild; tazpanel.ttf: add messages icons, so remove all the style/png images and change libtazpanel; *.css: title and sub-title, messages icons; test.cgi: add new icons. diff -r f8ff472846c2 -r 3117717c007d Makefile --- a/Makefile Sat Jun 06 12:38:24 2015 +0200 +++ b/Makefile Mon Jun 08 04:32:19 2015 +0300 @@ -14,6 +14,7 @@ pot: xgettext -o po/tazpanel.pot -L Shell -k_ -k_n -k_p:1,2 \ + --from-code="UTF-8" \ --package-name="TazPanel" \ --package-version="$(VERSION)" \ ./tazpanel ./index.cgi ./network.cgi ./boot.cgi \ diff -r f8ff472846c2 -r 3117717c007d boot.cgi --- a/boot.cgi Sat Jun 06 12:38:24 2015 +0200 +++ b/boot.cgi Mon Jun 08 04:32:19 2015 +0300 @@ -13,7 +13,7 @@ get_config header -TITLE=$(_ 'TazPanel - Boot') +TITLE=$(_ 'Boot') # Print last 40 lines of given file with "more" link @@ -36,8 +36,8 @@ case " $(GET) " in *\ syslog\ *) logtype="$(GET syslog)" - [ "${logtype:-syslog}" == "syslog" ] && logtype=messages - xhtml_header + [ "${logtype:-syslog}" == 'syslog' ] && logtype='messages' + xhtml_header "$(_ 'System logs')" cat < @@ -91,10 +91,9 @@ actkernel=' class="active"' output="$(syntax_highlighter kernel < /var/log/dmesg.log | loghead /var/log/dmesg.log)" ;; esac - xhtml_header + + xhtml_header "$(_ 'Boot log files')" cat <$(_ 'Boot log files') -
    $(_ 'Kernel messages') $(_ 'Boot scripts' ) @@ -118,11 +117,9 @@ # Start and stop a daemon. # (I think we don't need a 'restart' since 2 clicks and you are done) . /etc/rcS.conf - xhtml_header + xhtml_header "$(_ 'Manage daemons')" cat <$(_ 'Manage daemons') -

    $(_ 'Check, start and stop daemons on SliTaz')

    EOT daemon=$(GET daemons) @@ -313,10 +310,9 @@ default=$(cat $GRUBMENU | grep ^default | cut -d' ' -f2) timeout=$(cat $GRUBMENU | grep ^timeout | cut -d' ' -f2) splash=$(cat $GRUBMENU | grep ^splashimage | cut -d' ' -f2) - xhtml_header + + xhtml_header "$(_ 'GRUB Boot loader')" cat <$(_ 'GRUB Boot loader') -

    $(_ 'The first application started when the computer powers on')

    @@ -481,10 +477,8 @@ # Default content with summary # . /etc/rcS.conf - xhtml_header + xhtml_header "$(_ 'Boot & Start services')" cat <$(_ 'Boot & Start services') -

    $(_ 'Everything that happens before user login')

    diff -r f8ff472846c2 -r 3117717c007d hardware.cgi --- a/hardware.cgi Sat Jun 06 12:38:24 2015 +0200 +++ b/hardware.cgi Mon Jun 08 04:32:19 2015 +0300 @@ -10,7 +10,7 @@ get_config header -TITLE=$(_ 'TazPanel - Hardware') +TITLE=$(_ 'Hardware') # Call an optional module lib() { @@ -105,28 +105,26 @@ *\ detect\ *) # Front end for Tazhw # TODO: Add button to detect webcam, etc. Like in tazhw box. - xhtml_header + xhtml_header "$(_ 'Detect hardware')" cat <$(_ 'Detect hardware')

    $(_ 'Detect PCI and USB hardware')

    - -
    -
    $(tazhw detect-pci | sed 's|^>|\>|g')
    -
    $(tazhw detect-usb | sed 's|^>|\>|g')
    -
    EOT + tazhw detect-pci | sed 's|^>|\>|g' + tazhw detect-usb | sed 's|^>|\>|g' ;; *\ modules\ *|*\ modinfo\ *) - xhtml_header + xhtml_header "$(_ 'Kernel modules')" + + search="$(GET search)" cat <$(_ 'Kernel modules')

    $(_ 'Manage, search or get information about the Linux kernel modules')

    - + - + + EOT # Request may be modinfo output that we want in the page itself @@ -135,6 +133,7 @@ cat <
    $(_ 'Detailed information for module: %s' $get_modinfo)
    +
    EOT modinfo $get_modinfo | awk 'BEGIN{print ""} @@ -142,7 +141,7 @@ printf("", $1) $1=""; printf("", $0) } - END{print "
    %s%s
    "}' + END{print "
    "}' fi if [ -n "$(GET modprobe)" ]; then @@ -152,18 +151,23 @@ echo "Removing" rmmod -w $(GET rmmod) fi - get_search="$(GET search)" - if [ -n "$get_search" ]; then - _ 'Matching result(s) for: %s' $get_search - echo '
    '
    -			modprobe -l | grep "$(GET search)" | while read line
    +
    +		# Module search
    +		if [ -n "$search" ]; then
    +			cat <
    +	
    $(_ 'Matching result(s) for: %s' $search)
    +
    +EOT
    +			busybox modprobe -l | grep "$search" | while read line
     			do
     				name=$(basename $line)
    -				mod=${name%.ko.gz}
    -				echo "$(_ 'Module:') $mod"
    +				mod=${name%.ko.xz}
    +				echo "$(_ 'Module:') $mod"
     			done
    -			echo '
    ' + echo '
    ' fi + cat < @@ -236,9 +240,8 @@ # # Default to summary with mounted filesystem, loaded modules # - xhtml_header + xhtml_header "$(_ 'Drivers & Devices')" cat <$(_ 'Drivers & Devices')

    $(_ 'Manage your computer hardware')

    diff -r f8ff472846c2 -r 3117717c007d po/el.po --- a/po/el.po Sat Jun 06 12:38:24 2015 +0200 +++ b/po/el.po Mon Jun 08 04:32:19 2015 +0300 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: TazPanel 1.5.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-09 22:58+0200\n" +"POT-Creation-Date: 2015-06-05 20:42+0300\n" "PO-Revision-Date: 2012-06-10 17:15+0200\n" "Last-Translator: Douros Dimitris \n" "Language-Team: \n" @@ -18,105 +18,281 @@ "X-Poedit-Language: Greek\n" "X-Poedit-Country: GREECE\n" -#: tazpanel:53 +#: tazpanel:52 msgid "TazPanel is already running." msgstr "" -#: tazpanel:56 +#: tazpanel:55 msgid "Starting TazPanel web server on port %d..." msgstr "Εκκίνηση εξυπηρετητή ιστού TazPanel στη θύρα %d..." -#: tazpanel:58 +#: tazpanel:57 msgid "TazPanel Authentication - Default: root:root" msgstr "Πιστοποίηση TazPanel - Προεπιλογή: root:root" -#: tazpanel:65 +#: tazpanel:64 msgid "TazPanel is not running." msgstr "" -#: tazpanel:68 +#: tazpanel:67 msgid "Stopping TazPanel web server..." msgstr "Σταμάτημα εξυπηρετητή ιστού TazPanel..." -#: tazpanel:76 -msgid "Changing password for TazPanel" -msgstr "Αλλαγή κωδικού για TazPanel" - -#: tazpanel:77 -msgid "New password: " -msgstr "Νέος κωδικός: " - -#: tazpanel:79 -msgid "Password changed successfully" -msgstr "Ο κωδικός άλλαξε επιτυχώς" - -#: index.cgi:37 index.cgi:131 +#: index.cgi:37 index.cgi:120 msgid "Differences" msgstr "Διαφορές" -#: index.cgi:88 -msgid "TazPanel - exec" +#: index.cgi:76 +msgid "exec" msgstr "" -#: index.cgi:120 -msgid "TazPanel - File" -msgstr "TazPanel - Αρχείο" +#: index.cgi:109 +msgid "File" +msgstr "Αρχείο" -#: index.cgi:130 index.cgi:149 +#: index.cgi:119 index.cgi:138 index.cgi:176 msgid "Save" msgstr "Αποθήκευση" -#: index.cgi:184 network.cgi:262 network.cgi:553 network.cgi:621 boot.cgi:382 -#: hardware.cgi:467 settings.cgi:667 +#: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670 +#: network.cgi:720 boot.cgi:531 hardware.cgi:483 settings.cgi:766 msgid "Edit" msgstr "Επεξεργασία" -#: index.cgi:228 -msgid "TazPanel - Terminal" -msgstr "TazPanel - Τερματικό" +#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:630 +#: styles/default/header.html:46 +msgid "Terminal" +msgstr "Τερματικό" -#: index.cgi:249 +#: index.cgi:246 index.cgi:331 #, fuzzy msgid "History" msgstr "Περιοχή" -#: index.cgi:250 lib/libtazpanel:334 +#: index.cgi:247 lib/libtazpanel:348 msgid "Back" msgstr "" -#: index.cgi:256 +#: index.cgi:254 msgid "run" msgstr "" -#: index.cgi:271 +#: index.cgi:270 msgid "Clear" msgstr "" -#: network.cgi:15 -msgid "TazPanel - Network" -msgstr "TazPanel - Δίκτυο" +#: index.cgi:294 +msgid "Small non-interactive terminal emulator." +msgstr "" -#: network.cgi:141 +#: index.cgi:295 +msgid "Run any command at your own risk, avoid interactive commands (%s)" +msgstr "" + +#: index.cgi:300 +msgid "Downloading to: %s" +msgstr "Κατέβασμα στο: %s" + +#: index.cgi:309 +msgid "%s needs an argument" +msgstr "%s χρειάζεται όρισμα" + +#: index.cgi:312 +msgid "Please, don't run interactive command \"%s\"" +msgstr "" + +#: index.cgi:330 styles/default/header.html:98 +msgid "Settings" +msgstr "Ρυθμίσεις" + +#: index.cgi:400 +#, fuzzy +msgid "Terminal settings" +msgstr "Ρυθμίσεις συστήματος" + +#: index.cgi:421 +msgid "Font:" +msgstr "" + +#: index.cgi:423 +#, fuzzy +msgid "Default" +msgstr "Προεπιλεγμένη καταχώρηση:" + +#: index.cgi:429 +msgid "Palette:" +msgstr "" + +#: index.cgi:435 +msgid "Apply" +msgstr "" + +#: index.cgi:445 index.cgi:631 +msgid "Process activity" +msgstr "Δραστηριότητα διεργασιών" + +#: index.cgi:450 +msgid "Refresh:" +msgstr "Ανανέωση:" + +#: index.cgi:453 +msgid "1s" +msgstr "1 δευτ." + +#: index.cgi:455 +msgid "5s" +msgstr "5 δευτ." + +#: index.cgi:457 +msgid "10s" +msgstr "10 δευτ." + +#: index.cgi:459 +msgid "none" +msgstr "Ποτέ" + +#: index.cgi:473 +msgid "Debug" +msgstr "Αποσφαλμάτωση" + +#: index.cgi:476 +msgid "HTTP Environment" +msgstr "Περιβάλλον HTTP" + +#: index.cgi:488 +msgid "System report" +msgstr "Αναφορά συστήματος" + +#: index.cgi:495 +msgid "Reporting to: %s" +msgstr "Αναφορά σε: %s" + +#: index.cgi:498 +msgid "Creating report header..." +msgstr "Δημιουργία κεφαλίδας αναφοράς..." + +#: index.cgi:505 index.cgi:522 +msgid "SliTaz system report" +msgstr "Αναφορά συστήματος SliTaz" + +#: index.cgi:519 +msgid "Creating system summary..." +msgstr "Δημιουργία συνοψης του συστήματος..." + +#: index.cgi:523 +msgid "Date:" +msgstr "Ημερομηνία:" + +#: index.cgi:534 +msgid "Getting hardware info..." +msgstr "Συγκέντρωση πληροφοριών υλικού..." + +#: index.cgi:552 +msgid "Getting networking info..." +msgstr "Συγκέντρωση πληροφοριών δικτύου..." + +#: index.cgi:566 +msgid "Getting filesystems info..." +msgstr "Συγκέντρωση πληροφοριών συστημάτων αρχείων..." + +#: index.cgi:586 +msgid "Getting boot logs..." +msgstr "Συγκέντρωση καταγραφών εκκίνησης..." + +#: index.cgi:589 boot.cgi:99 styles/default/header.html:74 +msgid "Kernel messages" +msgstr "Μυνήματα πυρήνα" + +#: index.cgi:592 boot.cgi:100 styles/default/header.html:75 +msgid "Boot scripts" +msgstr "Δέσμες ενεργειών εκκίνησης" + +#: index.cgi:597 +msgid "Creating report footer..." +msgstr "Δημιουργία υποσέλιδου αναφοράς..." + +#: index.cgi:608 index.cgi:704 boot.cgi:510 boot.cgi:512 +msgid "View" +msgstr "" + +#: index.cgi:613 +msgid "This report can be attached with a bug report on:" +msgstr "" +"Αυτή η αναφορά μπορεί να επισυναφθεί μαζί με μια αναφορά σφάλματος στο:" + +#: index.cgi:623 +msgid "SliTaz administration and configuration Panel" +msgstr "Πίνακας διαχείρισης και ρύθμισης παραμέτρων SliTaz" + +#: index.cgi:632 +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 +msgid "Summary" +msgstr "Σύνοψη" + +#: index.cgi:638 +#, fuzzy +msgid "Host:" +msgstr "Τοπικός υπολογιστής (Host): %s" + +#: index.cgi:639 +msgid "Uptime:" +msgstr "Χρόνος απρόσκοπτης λειτουργίας:" + +#: index.cgi:642 +msgid "Memory in Mb:" +msgstr "Μνήμη σε Mb:" + +#: index.cgi:644 +msgid "Total: %d, Used: %d, Free: %d" +msgstr "Σύνολο: %d, Σε χρήση: %d, Ελεύθερα: %d" + +#: index.cgi:648 +msgid "Linux kernel:" +msgstr "Πυρήνας Linux:" + +#: index.cgi:657 +#, fuzzy +msgid "Network status" +msgstr "Κατάσταση δικτύου" + +#: index.cgi:659 network.cgi:15 network.cgi:215 styles/default/header.html:52 +msgid "Network" +msgstr "Δίκτυο" + +#: index.cgi:668 hardware.cgi:340 +msgid "Filesystem usage statistics" +msgstr "Στατιστικά χρήσης συστήματος αρχείων" + +#: index.cgi:670 styles/default/header.html:93 +msgid "Disks" +msgstr "" + +#: index.cgi:702 +msgid "Panel Activity" +msgstr "Δραστηριότητα Πίνακα" + +#: network.cgi:152 msgid "Changed hostname: %s" msgstr "Αλλαγμένο όνομα υπολογιστή: %s" -#: network.cgi:164 +#: network.cgi:209 msgid "Scanning open ports..." msgstr "Σάρωση ανοιχτών θυρών..." -#: network.cgi:169 +#: network.cgi:214 msgid "Port scanning for %s" msgstr "Σάρωση θύρας για %s" -#: network.cgi:170 styles/default/header.html:33 -msgid "Network" -msgstr "Δίκτυο" - -#: network.cgi:197 +#: network.cgi:225 msgid "Ethernet connection" msgstr "Ενσύρματη σύνδεση" -#: network.cgi:200 +#: 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" @@ -124,51 +300,80 @@ "Εδώ μπορείτε να διαμορφώσετε μια ενσύρματη σύνδεση με χρήση του DHCP για να " "πάρει αυτόματα μια τυχαία IP ή να ρυθμίσετε μια στατική/σταθερή IP" -#: network.cgi:204 boot.cgi:112 +#: network.cgi:247 boot.cgi:152 msgid "Configuration" msgstr "Διαμόρφωση" -#: network.cgi:209 lib/libtazpanel:154 +#: network.cgi:253 lib/libtazpanel:165 msgid "Interface" msgstr "Διεπαφή" -#: network.cgi:217 +#: network.cgi:261 msgid "Static IP" msgstr "" -#: network.cgi:219 +#: network.cgi:263 msgid "Use static IP" msgstr "" -#: network.cgi:221 +#: network.cgi:265 msgid "IP address" msgstr "Διεύθυνση IP" -#: network.cgi:224 +#: network.cgi:268 msgid "Netmask" msgstr "Μάσκα δικτύου" -#: network.cgi:227 +#: network.cgi:271 msgid "Gateway" msgstr "Πύλη" -#: network.cgi:230 +#: network.cgi:274 msgid "DNS server" msgstr "Εξυπηρετητής DNS" -#: network.cgi:237 network.cgi:396 network.cgi:594 boot.cgi:244 +#: network.cgi:277 network.cgi:297 +msgid "Wake up" +msgstr "" + +#: network.cgi:279 +msgid "Wake up machines by network" +msgstr "" + +#: network.cgi:281 +msgid "MAC address to wake up" +msgstr "" + +#: network.cgi:282 network.cgi:287 +msgid "Leave empty for a general wakeup" +msgstr "" + +#: network.cgi:283 +msgid "List" +msgstr "" + +#: network.cgi:286 +#, fuzzy +msgid "MAC/IP address password" +msgstr "Αλλαγή κωδικού" + +#: network.cgi:288 +msgid "Help" +msgstr "" + +#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:292 msgid "Start" msgstr "Εκκίνηση" -#: network.cgi:238 network.cgi:397 network.cgi:595 boot.cgi:233 +#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:281 msgid "Stop" msgstr "Σταμάτημα" -#: network.cgi:257 network.cgi:548 +#: network.cgi:321 network.cgi:591 msgid "Configuration file" msgstr "Αρχείο διαμόρφωσης" -#: network.cgi:267 +#: network.cgi:331 msgid "" "These values are the ethernet settings in the main /etc/network.conf " "configuration file" @@ -176,108 +381,103 @@ "Οι τιμές αυτές είναι οι ρυθμίσεις του ethernet στο κύριο αρχείο διαμόρφωσης /" "etc/network.conf" -#: network.cgi:279 +#: network.cgi:343 msgid "(hidden)" msgstr "" -#: network.cgi:285 boot.cgi:110 hardware.cgi:38 settings.cgi:375 -#: lib/libtazpanel:155 +#: network.cgi:349 boot.cgi:150 hardware.cgi:57 lib/libtazpanel:166 msgid "Name" msgstr "Όνομα" -#: network.cgi:286 +#: network.cgi:350 msgid "Signal level" msgstr "" -#: network.cgi:287 +#: network.cgi:351 #, fuzzy msgid "Channel" msgstr "Αλλαγή" -#: network.cgi:288 +#: network.cgi:352 msgid "Encryption" msgstr "Κρυπτογράφιση" -#: network.cgi:289 boot.cgi:113 lib/libtazpanel:156 +#: network.cgi:353 boot.cgi:153 lib/libtazpanel:167 msgid "Status" msgstr "Κατάσταση" -#: network.cgi:340 network.cgi:436 network.cgi:458 +#: network.cgi:404 network.cgi:486 network.cgi:508 msgid "None" msgstr "" -#: network.cgi:353 +#: network.cgi:410 msgid "Connected" msgstr "Συνδεδεμένο" -#: network.cgi:383 +#: network.cgi:436 msgid "Wireless connection" msgstr "Ασύρματη σύνδεση" -#: network.cgi:398 lib/libtazpanel:139 +#: network.cgi:452 lib/libtazpanel:150 msgid "Scan" msgstr "Σάρωση" -#: network.cgi:406 +#: network.cgi:460 msgid "Scanning wireless interface..." msgstr "Σάρωση ασύρματης διεπαφής..." -#: network.cgi:424 +#: network.cgi:474 msgid "Connection" msgstr "Σύνδεση" -#: network.cgi:430 +#: network.cgi:480 #, fuzzy msgid "Network SSID" msgstr "Δίκτυο" -#: network.cgi:434 +#: network.cgi:484 msgid "Security" msgstr "" -#: network.cgi:445 +#: network.cgi:495 msgid "EAP method" msgstr "" -#: network.cgi:456 +#: network.cgi:506 msgid "Phase 2 authentication" msgstr "" -#: network.cgi:468 +#: network.cgi:518 msgid "CA certificate" msgstr "" -#: network.cgi:473 +#: network.cgi:523 msgid "User certificate" msgstr "" -#: network.cgi:478 +#: network.cgi:528 msgid "Identity" msgstr "" -#: network.cgi:483 +#: network.cgi:533 msgid "Anonymous identity" msgstr "" -#: network.cgi:488 +#: network.cgi:538 #, fuzzy msgid "Password" msgstr "Κωδικός:" -#: network.cgi:491 +#: network.cgi:541 #, fuzzy msgid "Show password" msgstr "Νέος κωδικός: " -#: network.cgi:501 -msgid "Access point" -msgstr "" - -#: network.cgi:539 +#: network.cgi:582 msgid "Configure" msgstr "Διαμόρφωση" -#: network.cgi:558 +#: network.cgi:601 msgid "" "These values are the wifi settings in the main /etc/network.conf " "configuration file" @@ -285,726 +485,798 @@ "Αυτές οι τιμές είναι οι ρυθμίσεις του wifi στο κύριο αρχείο ρυθμίσεων /etc/" "network.conf" -#: network.cgi:564 +#: network.cgi:607 msgid "Output of iwconfig" msgstr "Έξοδος του iwconfig" -#: network.cgi:587 -msgid "Networking" -msgstr "Δικτύωση" - -#: network.cgi:589 +#: network.cgi:616 msgid "Manage network connections and services" msgstr "Διαχείριση συνδέσεων δυκτίου και υπηρεσιών" -#: network.cgi:596 +#: network.cgi:635 msgid "Restart" msgstr "Επανεκκίνηση" -#: network.cgi:600 +#: network.cgi:639 msgid "Configuration:" msgstr "Διαμόρφωση:" -#: network.cgi:608 +#: network.cgi:647 #, fuzzy msgid "Network interfaces" msgstr "Κατάσταση δικτύου" -#: network.cgi:614 +#: network.cgi:654 +msgid "forward packets between interfaces" +msgstr "" + +#: network.cgi:656 network.cgi:690 boot.cgi:336 settings.cgi:608 +#: settings.cgi:722 +msgid "Change" +msgstr "Αλλαγή" + +#: network.cgi:665 msgid "Hosts" msgstr "" -#: network.cgi:630 +#: network.cgi:682 msgid "Hostname" msgstr "Όνομα υπολογιστή (Hostname)" -#: boot.cgi:16 -msgid "TazPanel - Boot" -msgstr "TazPanel - Εκκίνηση" +#: network.cgi:702 +msgid "Output of ifconfig" +msgstr "Έξοδος του ifconfig" + +#: network.cgi:708 +msgid "Routing table" +msgstr "Πίνακας δρομολόγησης" + +#: network.cgi:715 +msgid "Domain name resolution" +msgstr "Επίλυση ονομάτων τομέα" + +#: network.cgi:730 +msgid "ARP table" +msgstr "Πίνακας ARP" + +#: network.cgi:750 +msgid "Proxy" +msgstr "" + +#: network.cgi:751 +msgid "Add" +msgstr "" + +#: network.cgi:764 +msgid "IP Connections" +msgstr "Συνδέσεις IP" + +#: network.cgi:774 +msgid "Firewall" +msgstr "" + +#: boot.cgi:16 styles/default/header.html:62 +msgid "Boot" +msgstr "Εκκίνηση" #: boot.cgi:27 msgid "Show more..." msgstr "Εμφάνισε περισσότερα..." -#: boot.cgi:56 +#: boot.cgi:45 boot.cgi:492 styles/default/header.html:80 +#, fuzzy +msgid "System logs" +msgstr "Γλώσσα συστήματος" + +#: boot.cgi:96 msgid "Boot log files" msgstr "Αρχεία καταγραφών εκκίνησης" -#: boot.cgi:59 styles/default/header.html:53 -msgid "Kernel messages" -msgstr "Μυνήματα πυρήνα" - -#: boot.cgi:60 styles/default/header.html:54 -msgid "Boot scripts" -msgstr "Δέσμες ενεργειών εκκίνησης" - -#: boot.cgi:61 styles/default/header.html:55 +#: boot.cgi:101 styles/default/header.html:76 msgid "X server" msgstr "Εξυπηρετητής Χ" -#: boot.cgi:62 styles/default/header.html:56 +#: boot.cgi:102 styles/default/header.html:77 msgid "X session" msgstr "" -#: boot.cgi:84 boot.cgi:347 styles/default/header.html:59 +#: boot.cgi:124 boot.cgi:493 styles/default/header.html:81 msgid "Manage daemons" msgstr "Διαχείριση δαιμόνων (daemons)" -#: boot.cgi:86 +#: boot.cgi:126 msgid "Check, start and stop daemons on SliTaz" msgstr "Έλεγχος, εκκίνηση και σταμάτημα δαιμόνων στο SliTaz" -#: boot.cgi:111 hardware.cgi:153 settings.cgi:496 +#: boot.cgi:151 hardware.cgi:168 settings.cgi:434 msgid "Description" msgstr "Περιγραφή" -#: boot.cgi:114 +#: boot.cgi:154 msgid "Action" msgstr "Ενέργεια" -#: boot.cgi:115 +#: boot.cgi:155 msgid "PID" msgstr "" -#: boot.cgi:138 +#: boot.cgi:180 msgid "SliTaz Firewall with iptable rules" msgstr "Τοίχος προστασίας SliTaz με κανόνες πίνακα IP" -#: boot.cgi:140 +#: boot.cgi:182 msgid "Small and fast web server with CGI support" msgstr "Μικρός και γρήγορος εξυπηρετητής ιστού με υποστήριξη CGI" -#: boot.cgi:142 +#: boot.cgi:185 msgid "Network time protocol daemon" msgstr "Δαίμονας πρωτοκόλλου ώρας δικτύου" -#: boot.cgi:145 +#: boot.cgi:188 msgid "Anonymous FTP server" msgstr "Ανώνυμος εξυπηρετητής FTP" -#: boot.cgi:147 +#: boot.cgi:191 msgid "Busybox DHCP server" msgstr "Εξυπηρετητής DHCP Busybox" -#: boot.cgi:149 +#: boot.cgi:194 msgid "Linux Kernel log daemon" msgstr "Δαίμονας καταγραφής πυρήνα Linux" -#: boot.cgi:152 +#: boot.cgi:197 msgid "Execute scheduled commands" msgstr "Εκτέλεση προγραμματισμένων εντολών" -#: boot.cgi:155 +#: boot.cgi:200 msgid "Small static DNS server daemon" msgstr "Δαίμονας μικρού στατικού DNS εξυπηρετητή" -#: boot.cgi:158 +#: boot.cgi:203 msgid "Transfer a file on tftp request" msgstr "Μεταφορά ενός αρχείου κατόπιν αιτήματος tftp" -#: boot.cgi:160 +#: boot.cgi:206 +#, fuzzy +msgid "Printer daemon" +msgstr "Διαχείριση δαιμόνων (daemons)" + +#: boot.cgi:208 msgid "Listen for network connections and launch programs" msgstr "Αναμονή για συνδέσεις δικτύου και έναρξη προγραμμάτων" -#: boot.cgi:163 +#: boot.cgi:211 msgid "Manage a ZeroConf IPv4 link-local address" msgstr "Διαχείριση μίας ZeroConf IPv4 link-local διεύθυνσης" -#: boot.cgi:232 +#: boot.cgi:280 msgid "Started" msgstr "Ξεκίνησε" -#: boot.cgi:243 +#: boot.cgi:291 msgid "Stopped" msgstr "Σταμάτησε" -#: boot.cgi:270 +#: boot.cgi:318 msgid "GRUB Boot loader" msgstr "Φορτωτής εκκίνησης GRUB" -#: boot.cgi:272 +#: boot.cgi:320 msgid "The first application started when the computer powers on" msgstr "Η πρώτη εφαρμογή που ξεκινά όταν ο υπολογιστής ανοίγει" -#: boot.cgi:279 +#: boot.cgi:327 msgid "Default entry:" msgstr "Προεπιλεγμένη καταχώρηση:" -#: boot.cgi:281 +#: boot.cgi:329 msgid "Timeout:" msgstr "Χρονικό όριο:" -#: boot.cgi:283 +#: boot.cgi:331 msgid "Splash image:" msgstr "Εικόνα εκκίνησης (splash):" -#: boot.cgi:288 settings.cgi:557 settings.cgi:623 settings.cgi:694 -msgid "Change" -msgstr "Αλλαγή" - -#: boot.cgi:295 +#: boot.cgi:343 msgid "View or edit menu.lst" msgstr "Προβολή ή επεξεργασία menu.lst" -#: boot.cgi:300 +#: boot.cgi:348 msgid "Boot entries" msgstr "Καταχωρήσεις εκκίνησης" -#: boot.cgi:307 +#: boot.cgi:355 msgid "Entry" msgstr "Καταχώρηση" -#: boot.cgi:328 +#: boot.cgi:376 msgid "Web boot is available with gPXE" msgstr "Η εκκίνηση μέσω δικτύου είναι διαθέσιμη με gPXE" -#: boot.cgi:341 +#: boot.cgi:390 boot.cgi:496 styles/default/header.html:83 +msgid "ISO mine" +msgstr "" + +#: boot.cgi:486 msgid "Boot & Start services" msgstr "Εκκίνηση & Έναρξη υπηρεσιών" -#: boot.cgi:343 +#: boot.cgi:488 msgid "Everything that happens before user login" msgstr "Όλα όσα συμβαίνουν πρίν τη σύνδεση του χρήστη" -#: boot.cgi:346 styles/default/header.html:51 +#: boot.cgi:491 styles/default/header.html:72 msgid "Boot logs" msgstr "Καταγραφές εκκίνησης" -#: boot.cgi:350 styles/default/header.html:48 +#: boot.cgi:499 styles/default/header.html:68 msgid "Boot loader" msgstr "Φορτωτής εκκίνησης (boot loader)" -#: boot.cgi:357 +#: boot.cgi:506 msgid "Configuration files" msgstr "Αρχεία διαμόρφωσης" -#: boot.cgi:360 +#: boot.cgi:509 msgid "Main configuration file:" msgstr "Κύριο αρχείο διαμόρφωσης:" -#: boot.cgi:361 boot.cgi:363 -msgid "View" -msgstr "" - -#: boot.cgi:362 +#: boot.cgi:511 msgid "Login manager settings:" msgstr "Ρυθμίσεις διαχειριστή εισόδου:" -#: boot.cgi:370 +#: boot.cgi:519 msgid "Kernel cmdline" msgstr "Γραμμή εντολών Πυρήνα" -#: boot.cgi:377 +#: boot.cgi:526 msgid "Local startup commands" msgstr "Τοπικές εντολές κατά την εκκίνηση" -#: hardware.cgi:13 -msgid "TazPanel - Hardware" -msgstr "TazPanel - Υλικό" +#: hardware.cgi:13 styles/default/header.html:88 +msgid "Hardware" +msgstr "Υλικό" -#: hardware.cgi:35 +#: hardware.cgi:54 msgid "Bus" msgstr "" -#: hardware.cgi:36 hardware.cgi:509 +#: hardware.cgi:55 hardware.cgi:525 msgid "Device" msgstr "" -#: hardware.cgi:37 +#: hardware.cgi:56 msgid "ID" msgstr "" -#: hardware.cgi:90 +#: hardware.cgi:108 msgid "Detect hardware" msgstr "Ανίχνευση υλικού" -#: hardware.cgi:91 +#: hardware.cgi:110 msgid "Detect PCI and USB hardware" msgstr "Ανίχνευση υλικού PCI και USB" -#: hardware.cgi:104 hardware.cgi:225 styles/default/header.html:67 +#: hardware.cgi:118 hardware.cgi:239 styles/default/header.html:91 msgid "Kernel modules" msgstr "Αρθρώματα (modules) πυρήνα" -#: hardware.cgi:105 +#: hardware.cgi:120 msgid "Manage, search or get information about the Linux kernel modules" msgstr "" "Διαχείριση, αναζήτηση ή συλλογή πληροφοριών σχετικά με τα αρθρώματα του " "πυρήνα Linux" -#: hardware.cgi:109 +#: hardware.cgi:124 msgid "Modules search" msgstr "Αναζήτηση αρθρωμάτων" -#: hardware.cgi:117 +#: hardware.cgi:132 msgid "Detailed information for module: %s" msgstr "Λεπτομερείς πληροφορίες για το άρθρωμα: %s" -#: hardware.cgi:137 +#: hardware.cgi:152 msgid "Matching result(s) for: %s" msgstr "Ταίριασμα αποτελέσματος(-ατων) για: %s" -#: hardware.cgi:143 +#: hardware.cgi:158 msgid "Module:" msgstr "Άρθρωμα:" -#: hardware.cgi:152 +#: hardware.cgi:167 msgid "Module" msgstr "Άρθρωμα" -#: hardware.cgi:154 lib/libtazpanel:285 +#: hardware.cgi:169 hardware.cgi:527 lib/libtazpanel:295 msgid "Size" msgstr "Μέγεθος" -#: hardware.cgi:155 hardware.cgi:563 lib/libtazpanel:287 +#: hardware.cgi:170 hardware.cgi:584 lib/libtazpanel:297 msgid "Used" msgstr "Σε χρήση" -#: hardware.cgi:156 +#: hardware.cgi:171 msgid "by" msgstr "από" -#: hardware.cgi:180 +#: hardware.cgi:195 msgid "Information for USB Device %s" msgstr "" -#: hardware.cgi:182 hardware.cgi:200 +#: hardware.cgi:197 hardware.cgi:215 msgid "Detailed information about specified device." msgstr "" -#: hardware.cgi:198 +#: hardware.cgi:213 msgid "Information for PCI Device %s" msgstr "" -#: hardware.cgi:221 +#: hardware.cgi:234 msgid "Drivers & Devices" msgstr "Οδηγοί & Συσκευές" -#: hardware.cgi:222 +#: hardware.cgi:236 msgid "Manage your computer hardware" msgstr "Διαχείριση του υλικού του υπολογιστή σας" -#: hardware.cgi:226 styles/default/header.html:68 +#: hardware.cgi:240 styles/default/header.html:92 msgid "Detect PCI/USB" msgstr "Ανίχνευση PCI/USB" -#: hardware.cgi:227 +#: hardware.cgi:241 msgid "Auto-install Xorg video driver" msgstr "" -#: hardware.cgi:237 hardware.cgi:254 +#: hardware.cgi:251 hardware.cgi:268 msgid "Battery" msgstr "Μπαταρία" -#: hardware.cgi:257 +#: hardware.cgi:271 msgid "health" msgstr "Υγεία" -#: hardware.cgi:266 +#: hardware.cgi:280 msgid "Discharging %d%% - %s" msgstr "Αποφορτίζεται %d%% - %s" -#: hardware.cgi:270 -#, sh-format +#: hardware.cgi:284 msgid "Charging %d%% - %s" msgstr "Φορτίζεται %d%% - %s" -#: hardware.cgi:272 +#: hardware.cgi:286 #, fuzzy msgid "Charged 100%%" msgstr "Φορτίστηκε 100%%" -#: hardware.cgi:291 +#: hardware.cgi:305 msgid "Temperature:" msgstr "Θερμοκρασία:" -#: hardware.cgi:306 +#: hardware.cgi:320 msgid "Brightness" msgstr "Φωτεινότητα" -#: hardware.cgi:326 -msgid "Filesystem usage statistics" -msgstr "Στατιστικά χρήσης συστήματος αρχείων" - -#: hardware.cgi:446 +#: hardware.cgi:462 #, fuzzy msgid "new mount point:" msgstr "Σημείο προσάρτησης" -#: hardware.cgi:447 +#: hardware.cgi:463 msgid "read-only" msgstr "" -#: hardware.cgi:462 +#: hardware.cgi:478 msgid "Filesystems table" msgstr "" -#: hardware.cgi:475 lib/libtazpanel:282 +#: hardware.cgi:491 lib/libtazpanel:292 msgid "Disk" msgstr "Δίσκος" -#: hardware.cgi:476 lib/libtazpanel:288 +#: hardware.cgi:492 lib/libtazpanel:298 msgid "Mount point" msgstr "Σημείο προσάρτησης" -#: hardware.cgi:477 lib/libtazpanel:284 +#: hardware.cgi:493 lib/libtazpanel:294 msgid "Type" msgstr "Τύπος" -#: hardware.cgi:478 +#: hardware.cgi:494 #, fuzzy msgid "Options" msgstr "Ενέργεια" -#: hardware.cgi:479 +#: hardware.cgi:495 msgid "Freq" msgstr "" -#: hardware.cgi:480 +#: hardware.cgi:496 #, fuzzy msgid "Pass" msgstr "Κωδικός:" -#: hardware.cgi:502 +#: hardware.cgi:518 msgid "Loop devices" msgstr "" -#: hardware.cgi:510 +#: hardware.cgi:526 #, fuzzy msgid "Backing file" msgstr "Αρχείο ρυθμίσεων" -#: hardware.cgi:511 +#: hardware.cgi:528 msgid "Access" msgstr "" -#: hardware.cgi:512 +#: hardware.cgi:529 msgid "Offset" msgstr "" -#: hardware.cgi:520 +#: hardware.cgi:538 msgid "read/write" msgstr "" -#: hardware.cgi:521 hardware.cgi:543 +#: hardware.cgi:539 hardware.cgi:564 msgid "read only" msgstr "" -#: hardware.cgi:540 +#: hardware.cgi:561 msgid "Setup" msgstr "" -#: hardware.cgi:541 +#: hardware.cgi:562 msgid "new backing file:" msgstr "" -#: hardware.cgi:542 +#: hardware.cgi:563 msgid "offset in bytes:" msgstr "" -#: hardware.cgi:560 +#: hardware.cgi:581 msgid "System memory" msgstr "Μνήμη συστήματος" -#: hardware.cgi:566 +#: hardware.cgi:587 msgid "Buffers" msgstr "" -#: hardware.cgi:569 +#: hardware.cgi:590 msgid "Free" msgstr "" -#: settings.cgi:17 -msgid "TazPanel - Settings" -msgstr "TazPanel - Ρυθμίσεις" +#: settings.cgi:16 +msgid "System settings" +msgstr "Ρυθμίσεις συστήματος" -#: settings.cgi:83 -msgid "US" +#: settings.cgi:82 settings.cgi:621 settings.cgi:648 settings.cgi:653 +msgid "Set date" msgstr "" -#: settings.cgi:85 -msgid "metric" -msgstr "" - -#: settings.cgi:266 settings.cgi:544 +#: settings.cgi:208 settings.cgi:595 msgid "Manage groups" msgstr "" -#: settings.cgi:273 settings.cgi:364 +#: settings.cgi:216 settings.cgi:293 msgid "Selection:" msgstr "Επιλογή:" -#: settings.cgi:274 +#: settings.cgi:217 msgid "Delete group" msgstr "" -#: settings.cgi:281 +#: settings.cgi:224 msgid "Group" msgstr "" -#: settings.cgi:282 +#: settings.cgi:225 msgid "Group ID" msgstr "" -#: settings.cgi:283 +#: settings.cgi:226 msgid "Members" msgstr "" -#: settings.cgi:312 +#: settings.cgi:253 msgid "Add a new group" msgstr "" -#: settings.cgi:316 settings.cgi:333 +#: settings.cgi:256 settings.cgi:268 msgid "Group name:" msgstr "" -#: settings.cgi:320 +#: settings.cgi:257 msgid "Create group" msgstr "" -#: settings.cgi:328 +#: settings.cgi:264 msgid "Manage group membership" msgstr "" -#: settings.cgi:335 settings.cgi:427 +#: settings.cgi:269 settings.cgi:356 msgid "User name:" msgstr "" -#: settings.cgi:340 +#: settings.cgi:272 msgid "Add user" msgstr "" -#: settings.cgi:343 +#: settings.cgi:273 msgid "Remove user" msgstr "" -#: settings.cgi:359 settings.cgi:543 +#: settings.cgi:286 settings.cgi:594 msgid "Manage users" msgstr "Διαχείριση χρηστών" -#: settings.cgi:365 +#: settings.cgi:294 msgid "Delete user" msgstr "Διαγραφή χρήστη" -#: settings.cgi:366 +#: settings.cgi:295 msgid "Lock user" msgstr "Κλείδωμα χρήστη" -#: settings.cgi:367 +#: settings.cgi:296 msgid "Unlock user" msgstr "Ξεκλείδωμα χρήστη" -#: settings.cgi:373 +#: settings.cgi:302 msgid "Login" msgstr "Είσοδος" -#: settings.cgi:374 +#: settings.cgi:303 msgid "User ID" msgstr "ID χρήστη" -#: settings.cgi:376 +#: settings.cgi:304 +#, fuzzy +msgid "User Name" +msgstr "ID χρήστη" + +#: settings.cgi:305 msgid "Home" msgstr "Σπίτι" -#: settings.cgi:377 +#: settings.cgi:306 msgid "Shell" msgstr "Κέλυφος" -#: settings.cgi:410 +#: settings.cgi:340 msgid "Password:" msgstr "Κωδικός:" -#: settings.cgi:412 +#: settings.cgi:342 msgid "Change password" msgstr "Αλλαγή κωδικού" -#: settings.cgi:420 +#: settings.cgi:349 msgid "Add a new user" msgstr "Προσθήκη νέου χρήστη" -#: settings.cgi:425 +#: settings.cgi:354 msgid "User login:" msgstr "Όνομα χρήστη:" -#: settings.cgi:429 +#: settings.cgi:358 msgid "User password:" msgstr "Κωδικός χρήστη:" -#: settings.cgi:434 +#: settings.cgi:363 msgid "Create user" msgstr "Δημιουργία χρήστη" -#: settings.cgi:441 +#: settings.cgi:373 msgid "Current user sessions" msgstr "Συνεδρίες τρέχοντος χρήστη" -#: settings.cgi:447 +#: settings.cgi:383 msgid "Last user sessions" msgstr "Συνεδρίες προηγούμενου χρήστη" -#: settings.cgi:458 +#: settings.cgi:395 +msgid "Choose locale" +msgstr "Επιλογή εντοπιότητας" + +#: settings.cgi:398 msgid "Please wait..." msgstr "Παρακαλώ περιμένετε..." -#: settings.cgi:462 -msgid "Choose locale" -msgstr "Επιλογή εντοπιότητας" - -#: settings.cgi:465 +#: settings.cgi:403 msgid "Current locale settings:" msgstr "Τρέχουσες ρυθμίσεις εντοπιότητας:" -#: settings.cgi:472 +#: settings.cgi:410 msgid "Locales that are currently installed on the machine:" msgstr "Ρυθμίσεις εντοπιότητας που είναι εγκατεστημένες στο σύστημα:" -#: settings.cgi:482 +#: settings.cgi:420 msgid "" "Can't see your language?
    You can install glibc-locale to see a larger list of available locales." msgstr "" -#: settings.cgi:489 +#: settings.cgi:427 msgid "Available locales:" msgstr "Διαθέσιμες ρυθμίσες εντοπιότητας:" -#: settings.cgi:493 +#: settings.cgi:431 msgid "Code" msgstr "Κωδικός" -#: settings.cgi:494 +#: settings.cgi:432 msgid "Language" msgstr "Γλώσσα" -#: settings.cgi:495 +#: settings.cgi:433 msgid "Territory" msgstr "Περιοχή" -#: settings.cgi:512 settings.cgi:513 +#: settings.cgi:450 settings.cgi:451 msgid "-d" msgstr "-d" -#: settings.cgi:524 settings.cgi:666 settings.cgi:677 settings.cgi:689 +#: settings.cgi:462 settings.cgi:765 settings.cgi:776 settings.cgi:788 msgid "Activate" msgstr "Ενεργοποίηση" +#: settings.cgi:474 settings.cgi:497 +msgid "Small quick tweaks for user %s" +msgstr "" + +#: settings.cgi:500 +#, fuzzy +msgid "Terminal prompt" +msgstr "Τερματικό" + +#: settings.cgi:506 +msgid "Monochrome" +msgstr "" + +#: settings.cgi:515 +msgid "Colored" +msgstr "" + +#: settings.cgi:524 settings.cgi:572 +#, fuzzy +msgid "Manual edit: %s" +msgstr "Χειροκίνητη επεξεργασία" + +#: settings.cgi:525 +msgid "" +"To take effect: log out and log in to system or execute command in the " +"terminal:" +msgstr "" + +#: settings.cgi:533 +msgid "Menu button appearance" +msgstr "" + #: settings.cgi:538 -msgid "System settings" -msgstr "Ρυθμίσεις συστήματος" +msgid "Icon:" +msgstr "" -#: settings.cgi:540 +#: settings.cgi:541 settings.cgi:562 +msgid "Do not show" +msgstr "" + +#: settings.cgi:559 +msgid "Text:" +msgstr "" + +#: settings.cgi:566 +msgid "Show text" +msgstr "" + +#: settings.cgi:589 msgid "Manage system time, users or language settings" msgstr "Διαχείριση ώρας συστήματος, χρηστών και γλωσσικών ρυθμίσεων" -#: settings.cgi:548 +#: settings.cgi:599 msgid "System time" msgstr "Ώρα συστήματος" -#: settings.cgi:551 +#: settings.cgi:602 msgid "Time zone:" msgstr "Ζώνη ώρας:" -#: settings.cgi:560 +#: settings.cgi:611 msgid "System time:" msgstr "Ώρα συστήματος:" -#: settings.cgi:562 +#: settings.cgi:613 msgid "Sync online" msgstr "Συγχρονισμός μέσω δικτύου" -#: settings.cgi:565 +#: settings.cgi:616 msgid "Hardware clock:" msgstr "Ρολόι υπολογιστή:" -#: settings.cgi:567 +#: settings.cgi:618 msgid "Set hardware clock" msgstr "Ορισμός ρολογιού υπολογιστή" -#: settings.cgi:570 settings.cgi:582 -msgid "Set date" -msgstr "" - -#: settings.cgi:605 +#: settings.cgi:704 msgid "System language" msgstr "Γλώσσα συστήματος" -#: settings.cgi:618 +#: settings.cgi:717 msgid "" "You must logout and login again to your current session to use %s locale." msgstr "" "Πρέπει να αποσυνδεθείτε και να συνδεθείτε πάλι στην τρέχουσα συνεδρία σας " "για να χρησιμοποιήσετε τα %s locale." -#: settings.cgi:621 +#: settings.cgi:720 msgid "Current system locale:" msgstr "Τρέχουσα εντοπιότητα συστήματος:" -#: settings.cgi:633 +#: settings.cgi:732 msgid "Keyboard layout" msgstr "" -#: settings.cgi:647 +#: settings.cgi:746 msgid "Current console keymap: %s" msgstr "Τρέχουσα διάταξη πληκτρολογίου κονσόλας: %s" -#: settings.cgi:665 +#: settings.cgi:764 msgid "Suggested keymap for Xorg:" msgstr "Προτεινόμενη διάταξη πληκτρολογίου για το Xorg:" -#: settings.cgi:673 +#: settings.cgi:772 msgid "Available keymaps:" msgstr "Διαθέσιμες διατάξεις πληκτρολογίου:" -#: settings.cgi:684 +#: settings.cgi:783 msgid "Panel configuration" msgstr "Διαμόρφωση πίνακα" -#: settings.cgi:687 +#: settings.cgi:786 msgid "Style:" msgstr "Στύλ:" -#: settings.cgi:692 -msgid "Panel password:" -msgstr "Κωδικός πίνακα:" - -#: settings.cgi:698 +#: settings.cgi:792 msgid "Configuration files:" msgstr "Αρχεία διαμόρφωσης:" -#: settings.cgi:699 styles/default/header.html:23 +#: settings.cgi:793 styles/default/header.html:42 msgid "Panel" msgstr "Πίνακας" -#: settings.cgi:700 +#: settings.cgi:794 msgid "Server" msgstr "Εξυπηρετητής" -#: settings.cgi:703 +#: settings.cgi:797 #, fuzzy msgid "TazPanel provides a debugging mode and page:" msgstr "Το TazPanel παρέχει κατάσταση αποσφαλμάτωσης και σελίδα:" -#: lib/libtazpanel:137 +#: lib/libtazpanel:153 msgid "connected" msgstr "συνδεδεμένο" -#: lib/libtazpanel:157 +#: lib/libtazpanel:168 msgid "IP Address" msgstr "Διεύθυνση IP" -#: lib/libtazpanel:158 +#: lib/libtazpanel:169 msgid "Scan ports" msgstr "Σάρωση θυρών" -#: lib/libtazpanel:283 +#: lib/libtazpanel:241 +#, fuzzy +msgid "Please wait" +msgstr "Παρακαλώ περιμένετε..." + +#: lib/libtazpanel:293 msgid "Label" msgstr "Ετικέτα" -#: lib/libtazpanel:286 +#: lib/libtazpanel:296 msgid "Available" msgstr "Διαθέσιμο" -#: lib/libtazpanel:353 +#: lib/libtazpanel:367 msgid "You must be root to show this page." msgstr "" @@ -1013,83 +1285,81 @@ msgstr "Εγχειρίδιο χρήσης" #: help.cgi:28 -msgid "TazPanel - Help & Doc" -msgstr "TazPanel - Βοήθεια & Doc" +msgid "Help & Doc" +msgstr "Βοήθεια & Doc" -#: styles/default/header.html:25 styles/default/header.html:35 -#: styles/default/header.html:45 styles/default/header.html:66 -#: styles/default/header.html:76 -msgid "Summary" -msgstr "Σύνοψη" +#: styles/default/header.html:32 +#, fuzzy +msgid "Confirm break" +msgstr "Διαμόρφωση" -#: styles/default/header.html:26 +#: styles/default/header.html:45 msgid "Processes" msgstr "Διεργασίες" -#: styles/default/header.html:27 -msgid "Terminal" -msgstr "Τερματικό" - -#: styles/default/header.html:28 +#: styles/default/header.html:47 msgid "Create Report" msgstr "Δημιουργία αναφοράς" -#: styles/default/header.html:36 +#: styles/default/header.html:55 msgid "Config file" msgstr "Αρχείο ρυθμίσεων" -#: styles/default/header.html:37 +#: styles/default/header.html:56 msgid "Ethernet" msgstr "Ενσύρματη σύνδεση" -#: styles/default/header.html:38 +#: styles/default/header.html:57 msgid "Wireless" msgstr "Ασύρματη σύνδεση" -#: styles/default/header.html:43 -msgid "Boot" -msgstr "Εκκίνηση (Boot)" - -#: styles/default/header.html:64 -msgid "Hardware" -msgstr "Υλικό" - -#: styles/default/header.html:69 -msgid "Disks" -msgstr "" - -#: styles/default/header.html:74 -msgid "Settings" -msgstr "Ρυθμίσεις" - -#: styles/default/header.html:77 +#: styles/default/header.html:101 msgid "Users" msgstr "Χρήστες" -#: styles/default/header.html:78 +#: styles/default/header.html:102 msgid "Groups" msgstr "" -#: styles/default/header.html:93 +#: styles/default/header.html:103 +msgid "Tweaks" +msgstr "" + +#: styles/default/header.html:119 msgid "Some features are disabled." msgstr "" -#: styles/default/header.html:98 +#: styles/default/header.html:124 msgid "You are logged in to the TazPanel as user %s." msgstr "" -#: styles/default/header.html:99 +#: styles/default/header.html:125 msgid "Click to re-login." msgstr "" -#: styles/default/footer.html:7 +#: styles/default/header.html:135 msgid "Copyright" msgstr "Πνευματικά Δικαιώματα (Copyright)" -#: styles/default/footer.html:9 +#: styles/default/header.html:137 msgid "BSD License" msgstr "Άδεια BSD" +#~ msgid "Networking" +#~ msgstr "Δικτύωση" + +#~ msgid "Changing password for TazPanel" +#~ msgstr "Αλλαγή κωδικού για TazPanel" + +#~ msgid "New password: " +#~ msgstr "Νέος κωδικός: " + +#~ msgid "Password changed successfully" +#~ msgstr "Ο κωδικός άλλαξε επιτυχώς" + +#~ msgid "Panel password:" +#~ msgstr "Κωδικός πίνακα:" + #, fuzzy #~ msgid "Usage: tazpanel [start|stop|passwd|app]" #~ msgstr "Χρήση: tazpanel [start|stop|passwd|app]" @@ -1100,106 +1370,12 @@ #~ msgid "Commands: %s" #~ msgstr "Εντολές: %s" -#~ msgid "Downloading to: %s" -#~ msgstr "Κατέβασμα στο: %s" - -#~ msgid "%s needs an argument" -#~ msgstr "%s χρειάζεται όρισμα" - #~ msgid "Unknown command: %s" #~ msgstr "Άγνωστη εντολή: %s" -#~ msgid "TazPanel - Process activity" -#~ msgstr "TazPanel - Δραστηριότητα διεργασιών" - -#~ msgid "Refresh:" -#~ msgstr "Ανανέωση:" - -#~ msgid "1s" -#~ msgstr "1 δευτ." - -#~ msgid "5s" -#~ msgstr "5 δευτ." - -#~ msgid "10s" -#~ msgstr "10 δευτ." - -#~ msgid "none" -#~ msgstr "Ποτέ" - -#~ msgid "TazPanel - Debug" -#~ msgstr "TazPanel - Αποσφαλμάτωση" - -#~ msgid "HTTP Environment" -#~ msgstr "Περιβάλλον HTTP" - -#~ msgid "TazPanel - System report" -#~ msgstr "TazPanel - Αναφορά συστήματος" - -#~ msgid "Reporting to: %s" -#~ msgstr "Αναφορά σε: %s" - -#~ msgid "Creating report header..." -#~ msgstr "Δημιουργία κεφαλίδας αναφοράς..." - -#~ msgid "SliTaz system report" -#~ msgstr "Αναφορά συστήματος SliTaz" - -#~ msgid "Creating system summary..." -#~ msgstr "Δημιουργία συνοψης του συστήματος..." - -#~ msgid "Date:" -#~ msgstr "Ημερομηνία:" - -#~ msgid "Getting hardware info..." -#~ msgstr "Συγκέντρωση πληροφοριών υλικού..." - -#~ msgid "Getting networking info..." -#~ msgstr "Συγκέντρωση πληροφοριών δικτύου..." - -#~ msgid "Getting filesystems info..." -#~ msgstr "Συγκέντρωση πληροφοριών συστημάτων αρχείων..." - -#~ msgid "Getting boot logs..." -#~ msgstr "Συγκέντρωση καταγραφών εκκίνησης..." - -#~ msgid "Creating report footer..." -#~ msgstr "Δημιουργία υποσέλιδου αναφοράς..." - #~ msgid "View report" #~ msgstr "Προβολή αναφοράς" -#~ msgid "This report can be attached with a bug report on:" -#~ msgstr "" -#~ "Αυτή η αναφορά μπορεί να επισυναφθεί μαζί με μια αναφορά σφάλματος στο:" - -#~ msgid "Host: %s" -#~ msgstr "Τοπικός υπολογιστής (Host): %s" - -#~ msgid "SliTaz administration and configuration Panel" -#~ msgstr "Πίνακας διαχείρισης και ρύθμισης παραμέτρων SliTaz" - -#~ msgid "Process activity" -#~ msgstr "Δραστηριότητα διεργασιών" - -#~ msgid "Create a report" -#~ msgstr "Δημιουργία μιας αναφοράς" - -#~ msgid "Uptime:" -#~ msgstr "Χρόνος απρόσκοπτης λειτουργίας:" - -#~ msgid "Memory in Mb:" -#~ msgstr "Μνήμη σε Mb:" - -#~ msgid "Total: %d, Used: %d, Free: %d" -#~ msgstr "Σύνολο: %d, Σε χρήση: %d, Ελεύθερα: %d" - -#~ msgid "Linux kernel:" -#~ msgstr "Πυρήνας Linux:" - -#~ msgid "Panel Activity" -#~ msgstr "Δραστηριότητα Πίνακα" - #~ msgid "Quality" #~ msgstr "Ποιότητα" @@ -1218,9 +1394,6 @@ #~ msgid "Disable" #~ msgstr "Απενεργοποίηση" -#~ msgid "Manual Edit" -#~ msgstr "Χειροκίνητη επεξεργασία" - #~ msgid "Wifi name (ESSID)" #~ msgstr "Όνομα wifi (ESSID)" @@ -1236,21 +1409,6 @@ #~ msgid "Change hostname" #~ msgstr "Αλλαγή ονόματος υπολογιστή (Hostname)" -#~ msgid "Output of ifconfig" -#~ msgstr "Έξοδος του ifconfig" - -#~ msgid "Routing table" -#~ msgstr "Πίνακας δρομολόγησης" - -#~ msgid "Domain name resolution" -#~ msgstr "Επίλυση ονομάτων τομέα" - -#~ msgid "ARP table" -#~ msgstr "Πίνακας ARP" - -#~ msgid "IP Connections" -#~ msgstr "Συνδέσεις IP" - #~ msgid "Edit script" #~ msgstr "Επεξεργασία δέσμης ενεργειών" diff -r f8ff472846c2 -r 3117717c007d po/es.po --- a/po/es.po Sat Jun 06 12:38:24 2015 +0200 +++ b/po/es.po Mon Jun 08 04:32:19 2015 +0300 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: TazPanel 1.5.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-09 22:58+0200\n" +"POT-Creation-Date: 2015-06-05 20:42+0300\n" "PO-Revision-Date: 2012-06-11 03:13-0000\n" "Last-Translator: kevin fabian quintero \n" "Language-Team: \n" @@ -16,105 +16,280 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: tazpanel:53 +#: tazpanel:52 msgid "TazPanel is already running." msgstr "" -#: tazpanel:56 +#: tazpanel:55 msgid "Starting TazPanel web server on port %d..." msgstr "Iniciar Tazpanel web server en el puerto %d..." -#: tazpanel:58 +#: tazpanel:57 msgid "TazPanel Authentication - Default: root:root" msgstr "Autenticación TazPanel - Por defecto: root:root" -#: tazpanel:65 +#: tazpanel:64 msgid "TazPanel is not running." msgstr "" -#: tazpanel:68 +#: tazpanel:67 msgid "Stopping TazPanel web server..." msgstr "Parar el servidor web TazPanel..." -#: tazpanel:76 -msgid "Changing password for TazPanel" -msgstr "Cambiando contraseña para TazPanel" - -#: tazpanel:77 -msgid "New password: " -msgstr "Nueva contraseña: " - -#: tazpanel:79 -msgid "Password changed successfully" -msgstr "Contraseña cambiada exitosamente" - -#: index.cgi:37 index.cgi:131 +#: index.cgi:37 index.cgi:120 msgid "Differences" msgstr "Diferencias" -#: index.cgi:88 -msgid "TazPanel - exec" +#: index.cgi:76 +msgid "exec" msgstr "" -#: index.cgi:120 -msgid "TazPanel - File" -msgstr "TazPanel - Archivo" +#: index.cgi:109 +msgid "File" +msgstr "Archivo" -#: index.cgi:130 index.cgi:149 +#: index.cgi:119 index.cgi:138 index.cgi:176 msgid "Save" msgstr "Guardar" -#: index.cgi:184 network.cgi:262 network.cgi:553 network.cgi:621 boot.cgi:382 -#: hardware.cgi:467 settings.cgi:667 +#: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670 +#: network.cgi:720 boot.cgi:531 hardware.cgi:483 settings.cgi:766 msgid "Edit" msgstr "Editar" -#: index.cgi:228 -msgid "TazPanel - Terminal" -msgstr "TazPanel - Terminal" +#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:630 +#: styles/default/header.html:46 +msgid "Terminal" +msgstr "Terminal" -#: index.cgi:249 +#: index.cgi:246 index.cgi:331 #, fuzzy msgid "History" msgstr "Territorio" -#: index.cgi:250 lib/libtazpanel:334 +#: index.cgi:247 lib/libtazpanel:348 msgid "Back" msgstr "" -#: index.cgi:256 +#: index.cgi:254 msgid "run" msgstr "" -#: index.cgi:271 +#: index.cgi:270 msgid "Clear" msgstr "" -#: network.cgi:15 -msgid "TazPanel - Network" -msgstr "TazPanel - Red" +#: index.cgi:294 +msgid "Small non-interactive terminal emulator." +msgstr "" -#: network.cgi:141 +#: index.cgi:295 +msgid "Run any command at your own risk, avoid interactive commands (%s)" +msgstr "" + +#: index.cgi:300 +msgid "Downloading to: %s" +msgstr "Descargando a: %s" + +#: index.cgi:309 +msgid "%s needs an argument" +msgstr "%s necesita un argumento" + +#: index.cgi:312 +msgid "Please, don't run interactive command \"%s\"" +msgstr "" + +#: index.cgi:330 styles/default/header.html:98 +msgid "Settings" +msgstr "Configuracion" + +#: index.cgi:400 +#, fuzzy +msgid "Terminal settings" +msgstr "Configuraciónes del sistema" + +#: index.cgi:421 +msgid "Font:" +msgstr "" + +#: index.cgi:423 +#, fuzzy +msgid "Default" +msgstr "Entrada por defecto:" + +#: index.cgi:429 +msgid "Palette:" +msgstr "" + +#: index.cgi:435 +msgid "Apply" +msgstr "" + +#: index.cgi:445 index.cgi:631 +msgid "Process activity" +msgstr "Actividad de los procesos" + +#: index.cgi:450 +msgid "Refresh:" +msgstr "Actualizar:" + +#: index.cgi:453 +msgid "1s" +msgstr "1s" + +#: index.cgi:455 +msgid "5s" +msgstr "5s" + +#: index.cgi:457 +msgid "10s" +msgstr "10s" + +#: index.cgi:459 +msgid "none" +msgstr "No actualizar" + +#: index.cgi:473 +msgid "Debug" +msgstr "Debug" + +#: index.cgi:476 +msgid "HTTP Environment" +msgstr "Entorno HTTP" + +#: index.cgi:488 +msgid "System report" +msgstr "Reportar sistema" + +#: index.cgi:495 +msgid "Reporting to: %s" +msgstr "Reportando a: %s" + +#: index.cgi:498 +msgid "Creating report header..." +msgstr "Creando el paquete..." + +#: index.cgi:505 index.cgi:522 +msgid "SliTaz system report" +msgstr "Reportar sistema" + +#: index.cgi:519 +msgid "Creating system summary..." +msgstr "Creando el paquete..." + +#: index.cgi:523 +msgid "Date:" +msgstr "Fecha:" + +#: index.cgi:534 +msgid "Getting hardware info..." +msgstr "Obteniendo información del paquete..." + +#: index.cgi:552 +msgid "Getting networking info..." +msgstr "Obteniendo información del paquete..." + +#: index.cgi:566 +msgid "Getting filesystems info..." +msgstr "Obtención de información de los sistemas de ficheros ..." + +#: index.cgi:586 +msgid "Getting boot logs..." +msgstr "Obteniendo información del paquete..." + +#: index.cgi:589 boot.cgi:99 styles/default/header.html:74 +msgid "Kernel messages" +msgstr "Mensajes del núcleo" + +#: index.cgi:592 boot.cgi:100 styles/default/header.html:75 +msgid "Boot scripts" +msgstr "Scripts del boot" + +#: index.cgi:597 +msgid "Creating report footer..." +msgstr "Creando el paquete..." + +#: index.cgi:608 index.cgi:704 boot.cgi:510 boot.cgi:512 +msgid "View" +msgstr "" + +#: index.cgi:613 +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 +msgid "SliTaz administration and configuration Panel" +msgstr "SliTaz Administración y configuración del Panel" + +#: index.cgi:632 +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 +msgid "Summary" +msgstr "Sumario" + +#: index.cgi:638 +#, fuzzy +msgid "Host:" +msgstr "Hosts" + +#: index.cgi:639 +msgid "Uptime:" +msgstr "Tiempo encendido:" + +#: index.cgi:642 +msgid "Memory in Mb:" +msgstr "Memoria en Mb:" + +#: index.cgi:644 +msgid "Total: %d, Used: %d, Free: %d" +msgstr "Total: %d, Usad: %d, Libre: %d" + +#: index.cgi:648 +msgid "Linux kernel:" +msgstr "Kernel Linux:" + +#: index.cgi:657 +#, fuzzy +msgid "Network status" +msgstr "Estado de red" + +#: index.cgi:659 network.cgi:15 network.cgi:215 styles/default/header.html:52 +msgid "Network" +msgstr "Red" + +#: index.cgi:668 hardware.cgi:340 +msgid "Filesystem usage statistics" +msgstr "Archivo de estadísticas de uso del sistema" + +#: index.cgi:670 styles/default/header.html:93 +msgid "Disks" +msgstr "" + +#: index.cgi:702 +msgid "Panel Activity" +msgstr "Panel Actividad" + +#: network.cgi:152 msgid "Changed hostname: %s" msgstr "Cambiado el nombre de host: %s" -#: network.cgi:164 +#: network.cgi:209 msgid "Scanning open ports..." msgstr "Escaneando puertos abiertos..." -#: network.cgi:169 +#: network.cgi:214 msgid "Port scanning for %s" msgstr "Escaneo de puertos %s" -#: network.cgi:170 styles/default/header.html:33 -msgid "Network" -msgstr "Red" - -#: network.cgi:197 +#: network.cgi:225 msgid "Ethernet connection" msgstr "Conexión Ethernet" -#: network.cgi:200 +#: 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" @@ -123,51 +298,80 @@ "obtener automáticamente una dirección IP al azar o configurar una dirección " "IP estática / fija" -#: network.cgi:204 boot.cgi:112 +#: network.cgi:247 boot.cgi:152 msgid "Configuration" msgstr "Configuración" -#: network.cgi:209 lib/libtazpanel:154 +#: network.cgi:253 lib/libtazpanel:165 msgid "Interface" msgstr "Interface" -#: network.cgi:217 +#: network.cgi:261 msgid "Static IP" msgstr "" -#: network.cgi:219 +#: network.cgi:263 msgid "Use static IP" msgstr "" -#: network.cgi:221 +#: network.cgi:265 msgid "IP address" msgstr "Dirección IP" -#: network.cgi:224 +#: network.cgi:268 msgid "Netmask" msgstr "Máscara de red" -#: network.cgi:227 +#: network.cgi:271 msgid "Gateway" msgstr "Puerta de enlace" -#: network.cgi:230 +#: network.cgi:274 msgid "DNS server" msgstr "Servidor DNS" -#: network.cgi:237 network.cgi:396 network.cgi:594 boot.cgi:244 +#: network.cgi:277 network.cgi:297 +msgid "Wake up" +msgstr "" + +#: network.cgi:279 +msgid "Wake up machines by network" +msgstr "" + +#: network.cgi:281 +msgid "MAC address to wake up" +msgstr "" + +#: network.cgi:282 network.cgi:287 +msgid "Leave empty for a general wakeup" +msgstr "" + +#: network.cgi:283 +msgid "List" +msgstr "" + +#: network.cgi:286 +#, fuzzy +msgid "MAC/IP address password" +msgstr "Cambiar contraseña" + +#: network.cgi:288 +msgid "Help" +msgstr "" + +#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:292 msgid "Start" msgstr "Comenzar" -#: network.cgi:238 network.cgi:397 network.cgi:595 boot.cgi:233 +#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:281 msgid "Stop" msgstr "Parar" -#: network.cgi:257 network.cgi:548 +#: network.cgi:321 network.cgi:591 msgid "Configuration file" msgstr "Fila de configuración" -#: network.cgi:267 +#: network.cgi:331 msgid "" "These values are the ethernet settings in the main /etc/network.conf " "configuration file" @@ -175,108 +379,103 @@ "Estos valores son los valores de Ethernet en el archivo principal de /etc/" "network.conf de configuración" -#: network.cgi:279 +#: network.cgi:343 msgid "(hidden)" msgstr "" -#: network.cgi:285 boot.cgi:110 hardware.cgi:38 settings.cgi:375 -#: lib/libtazpanel:155 +#: network.cgi:349 boot.cgi:150 hardware.cgi:57 lib/libtazpanel:166 msgid "Name" msgstr "Nombre" -#: network.cgi:286 +#: network.cgi:350 msgid "Signal level" msgstr "" -#: network.cgi:287 +#: network.cgi:351 #, fuzzy msgid "Channel" msgstr "Cambiar" -#: network.cgi:288 +#: network.cgi:352 msgid "Encryption" msgstr "Encriptación" -#: network.cgi:289 boot.cgi:113 lib/libtazpanel:156 +#: network.cgi:353 boot.cgi:153 lib/libtazpanel:167 msgid "Status" msgstr "Estado" -#: network.cgi:340 network.cgi:436 network.cgi:458 +#: network.cgi:404 network.cgi:486 network.cgi:508 msgid "None" msgstr "" -#: network.cgi:353 +#: network.cgi:410 msgid "Connected" msgstr "Conectado" -#: network.cgi:383 +#: network.cgi:436 msgid "Wireless connection" msgstr "Conexión inalambrica" -#: network.cgi:398 lib/libtazpanel:139 +#: network.cgi:452 lib/libtazpanel:150 msgid "Scan" msgstr "Escanear" -#: network.cgi:406 +#: network.cgi:460 msgid "Scanning wireless interface..." msgstr "Escaneando interfaz inalámbrica..." -#: network.cgi:424 +#: network.cgi:474 msgid "Connection" msgstr "Conexión" -#: network.cgi:430 +#: network.cgi:480 #, fuzzy msgid "Network SSID" msgstr "Red" -#: network.cgi:434 +#: network.cgi:484 msgid "Security" msgstr "" -#: network.cgi:445 +#: network.cgi:495 msgid "EAP method" msgstr "" -#: network.cgi:456 +#: network.cgi:506 msgid "Phase 2 authentication" msgstr "" -#: network.cgi:468 +#: network.cgi:518 msgid "CA certificate" msgstr "" -#: network.cgi:473 +#: network.cgi:523 msgid "User certificate" msgstr "" -#: network.cgi:478 +#: network.cgi:528 msgid "Identity" msgstr "" -#: network.cgi:483 +#: network.cgi:533 msgid "Anonymous identity" msgstr "" -#: network.cgi:488 +#: network.cgi:538 #, fuzzy msgid "Password" msgstr "Contraseña:" -#: network.cgi:491 +#: network.cgi:541 #, fuzzy msgid "Show password" msgstr "Nueva contraseña: " -#: network.cgi:501 -msgid "Access point" -msgstr "" - -#: network.cgi:539 +#: network.cgi:582 msgid "Configure" msgstr "Configuración" -#: network.cgi:558 +#: network.cgi:601 msgid "" "These values are the wifi settings in the main /etc/network.conf " "configuration file" @@ -284,725 +483,798 @@ "Estos valores son los valores de wifi en el archivo de configuración /etc/" "network.conf" -#: network.cgi:564 +#: network.cgi:607 msgid "Output of iwconfig" msgstr "Salida de iwconfig" -#: network.cgi:587 -msgid "Networking" -msgstr "Redes" - -#: network.cgi:589 +#: network.cgi:616 msgid "Manage network connections and services" msgstr "Administrar conexiones de red y servicios" -#: network.cgi:596 +#: network.cgi:635 msgid "Restart" msgstr "Comenzar" -#: network.cgi:600 +#: network.cgi:639 msgid "Configuration:" msgstr "Configuración:" -#: network.cgi:608 +#: network.cgi:647 #, fuzzy msgid "Network interfaces" msgstr "Estado de red" -#: network.cgi:614 +#: network.cgi:654 +msgid "forward packets between interfaces" +msgstr "" + +#: network.cgi:656 network.cgi:690 boot.cgi:336 settings.cgi:608 +#: settings.cgi:722 +msgid "Change" +msgstr "Cambiar" + +#: network.cgi:665 msgid "Hosts" msgstr "Hosts" -#: network.cgi:630 +#: network.cgi:682 msgid "Hostname" msgstr "Nombre de la máquina" -#: boot.cgi:16 -msgid "TazPanel - Boot" -msgstr "TazPanel - Arranque" +#: network.cgi:702 +msgid "Output of ifconfig" +msgstr "Salida de ifconfig" + +#: network.cgi:708 +msgid "Routing table" +msgstr "Tabla de enrutamiento" + +#: network.cgi:715 +msgid "Domain name resolution" +msgstr "Resolución de nombres de dominio" + +#: network.cgi:730 +msgid "ARP table" +msgstr "Tabla ARP" + +#: network.cgi:750 +msgid "Proxy" +msgstr "" + +#: network.cgi:751 +msgid "Add" +msgstr "" + +#: network.cgi:764 +msgid "IP Connections" +msgstr "Conexiónes IP" + +#: network.cgi:774 +msgid "Firewall" +msgstr "" + +#: boot.cgi:16 styles/default/header.html:62 +msgid "Boot" +msgstr "Arranque" #: boot.cgi:27 msgid "Show more..." msgstr "Mostrar mas..." -#: boot.cgi:56 +#: boot.cgi:45 boot.cgi:492 styles/default/header.html:80 +#, fuzzy +msgid "System logs" +msgstr "Lenguaje del sistema" + +#: boot.cgi:96 msgid "Boot log files" msgstr "Registro de archivos de boot" -#: boot.cgi:59 styles/default/header.html:53 -msgid "Kernel messages" -msgstr "Mensajes del núcleo" - -#: boot.cgi:60 styles/default/header.html:54 -msgid "Boot scripts" -msgstr "Scripts del boot" - -#: boot.cgi:61 styles/default/header.html:55 +#: boot.cgi:101 styles/default/header.html:76 msgid "X server" msgstr "Servidor X" -#: boot.cgi:62 styles/default/header.html:56 +#: boot.cgi:102 styles/default/header.html:77 msgid "X session" msgstr "" -#: boot.cgi:84 boot.cgi:347 styles/default/header.html:59 +#: boot.cgi:124 boot.cgi:493 styles/default/header.html:81 msgid "Manage daemons" msgstr "Manejar demonios" -#: boot.cgi:86 +#: boot.cgi:126 msgid "Check, start and stop daemons on SliTaz" msgstr "Comprueba, comienza y finaliza demonios en SliTaz" -#: boot.cgi:111 hardware.cgi:153 settings.cgi:496 +#: boot.cgi:151 hardware.cgi:168 settings.cgi:434 msgid "Description" msgstr "Descripción" -#: boot.cgi:114 +#: boot.cgi:154 msgid "Action" msgstr "Acción" -#: boot.cgi:115 +#: boot.cgi:155 msgid "PID" msgstr "PID" -#: boot.cgi:138 +#: boot.cgi:180 msgid "SliTaz Firewall with iptable rules" msgstr "Slitaz firewall con reglas iptable" -#: boot.cgi:140 +#: boot.cgi:182 msgid "Small and fast web server with CGI support" msgstr "Pequeño y rápido servidor web con soporte CGI" -#: boot.cgi:142 +#: boot.cgi:185 msgid "Network time protocol daemon" msgstr "Demonio de protocolo de horario de red" -#: boot.cgi:145 +#: boot.cgi:188 msgid "Anonymous FTP server" msgstr "Servidor ftp anonimo" -#: boot.cgi:147 +#: boot.cgi:191 msgid "Busybox DHCP server" msgstr "Servidor DHCP Busybox" -#: boot.cgi:149 +#: boot.cgi:194 msgid "Linux Kernel log daemon" msgstr "Registro de demonios de Kernel Linux" -#: boot.cgi:152 +#: boot.cgi:197 msgid "Execute scheduled commands" msgstr "Ejecuta comando programados" -#: boot.cgi:155 +#: boot.cgi:200 msgid "Small static DNS server daemon" msgstr "Pequeño demonio estatico de servidor DNS" -#: boot.cgi:158 +#: boot.cgi:203 msgid "Transfer a file on tftp request" msgstr "Transferir un archivo en modo tftp" -#: boot.cgi:160 +#: boot.cgi:206 +#, fuzzy +msgid "Printer daemon" +msgstr "Manejar demonios" + +#: boot.cgi:208 msgid "Listen for network connections and launch programs" msgstr "Monitor de conexiones de red y programas lanzadas" -#: boot.cgi:163 +#: boot.cgi:211 msgid "Manage a ZeroConf IPv4 link-local address" msgstr "Administrar una ZeroConf IPv4 dirección local de vínculo" -#: boot.cgi:232 +#: boot.cgi:280 msgid "Started" msgstr "Iniciado" -#: boot.cgi:243 +#: boot.cgi:291 msgid "Stopped" msgstr "Detenido" -#: boot.cgi:270 +#: boot.cgi:318 msgid "GRUB Boot loader" msgstr "Gestor de inicio GRUB" -#: boot.cgi:272 +#: boot.cgi:320 msgid "The first application started when the computer powers on" msgstr "La primera aplicación cuando se enciende el computador" -#: boot.cgi:279 +#: boot.cgi:327 msgid "Default entry:" msgstr "Entrada por defecto:" -#: boot.cgi:281 +#: boot.cgi:329 msgid "Timeout:" msgstr "Tiempo de espera:" -#: boot.cgi:283 +#: boot.cgi:331 msgid "Splash image:" msgstr "Imagen Splash:" -#: boot.cgi:288 settings.cgi:557 settings.cgi:623 settings.cgi:694 -msgid "Change" -msgstr "Cambiar" - -#: boot.cgi:295 +#: boot.cgi:343 msgid "View or edit menu.lst" msgstr "Ver o editar menu.lst" -#: boot.cgi:300 +#: boot.cgi:348 msgid "Boot entries" msgstr "Entradas de arranque" -#: boot.cgi:307 +#: boot.cgi:355 msgid "Entry" msgstr "Entrada" -#: boot.cgi:328 +#: boot.cgi:376 msgid "Web boot is available with gPXE" msgstr "Boot web es disponible con gPXE" -#: boot.cgi:341 +#: boot.cgi:390 boot.cgi:496 styles/default/header.html:83 +msgid "ISO mine" +msgstr "" + +#: boot.cgi:486 msgid "Boot & Start services" msgstr "Servicios que inician al arranque" -#: boot.cgi:343 +#: boot.cgi:488 msgid "Everything that happens before user login" msgstr "Todo lo que sucede antes de iniciar sesión" -#: boot.cgi:346 styles/default/header.html:51 +#: boot.cgi:491 styles/default/header.html:72 msgid "Boot logs" msgstr "Logs del boot" -#: boot.cgi:350 styles/default/header.html:48 +#: boot.cgi:499 styles/default/header.html:68 msgid "Boot loader" msgstr "Cargador boot" -#: boot.cgi:357 +#: boot.cgi:506 msgid "Configuration files" msgstr "Filas de configuración" -#: boot.cgi:360 +#: boot.cgi:509 msgid "Main configuration file:" msgstr "Archivo de configuración principal:" -#: boot.cgi:361 boot.cgi:363 -msgid "View" -msgstr "" - -#: boot.cgi:362 +#: boot.cgi:511 msgid "Login manager settings:" msgstr "Configuración del administrador de Inicio de sesion:" -#: boot.cgi:370 +#: boot.cgi:519 msgid "Kernel cmdline" msgstr "Líneas de comando del núcleo" -#: boot.cgi:377 +#: boot.cgi:526 msgid "Local startup commands" msgstr "Comandos de inicio" -#: hardware.cgi:13 -msgid "TazPanel - Hardware" -msgstr "TazPanel - Hardware" +#: hardware.cgi:13 styles/default/header.html:88 +msgid "Hardware" +msgstr "Hardware" -#: hardware.cgi:35 +#: hardware.cgi:54 msgid "Bus" msgstr "" -#: hardware.cgi:36 hardware.cgi:509 +#: hardware.cgi:55 hardware.cgi:525 msgid "Device" msgstr "" -#: hardware.cgi:37 +#: hardware.cgi:56 #, fuzzy msgid "ID" msgstr "PID" -#: hardware.cgi:90 +#: hardware.cgi:108 msgid "Detect hardware" msgstr "Detectar hardware" -#: hardware.cgi:91 +#: hardware.cgi:110 msgid "Detect PCI and USB hardware" msgstr "Detectar hardware PCI y USB" -#: hardware.cgi:104 hardware.cgi:225 styles/default/header.html:67 +#: hardware.cgi:118 hardware.cgi:239 styles/default/header.html:91 msgid "Kernel modules" msgstr "Módulos del núcleo" -#: hardware.cgi:105 +#: hardware.cgi:120 msgid "Manage, search or get information about the Linux kernel modules" msgstr "" "Gestionar, buscar u obtener información sobre los módulos del kernel de Linux" -#: hardware.cgi:109 +#: hardware.cgi:124 msgid "Modules search" msgstr "Buscar módulos" -#: hardware.cgi:117 +#: hardware.cgi:132 msgid "Detailed information for module: %s" msgstr "Informacion detallada del módulo: %s" -#: hardware.cgi:137 +#: hardware.cgi:152 msgid "Matching result(s) for: %s" msgstr "Resultado(s) para: %s" -#: hardware.cgi:143 +#: hardware.cgi:158 msgid "Module:" msgstr "Módulo:" -#: hardware.cgi:152 +#: hardware.cgi:167 msgid "Module" msgstr "Módulo" -#: hardware.cgi:154 lib/libtazpanel:285 +#: hardware.cgi:169 hardware.cgi:527 lib/libtazpanel:295 msgid "Size" msgstr "Tamaño" -#: hardware.cgi:155 hardware.cgi:563 lib/libtazpanel:287 +#: hardware.cgi:170 hardware.cgi:584 lib/libtazpanel:297 msgid "Used" msgstr "Usado" -#: hardware.cgi:156 +#: hardware.cgi:171 msgid "by" msgstr "por" -#: hardware.cgi:180 +#: hardware.cgi:195 msgid "Information for USB Device %s" msgstr "" -#: hardware.cgi:182 hardware.cgi:200 +#: hardware.cgi:197 hardware.cgi:215 msgid "Detailed information about specified device." msgstr "" -#: hardware.cgi:198 +#: hardware.cgi:213 msgid "Information for PCI Device %s" msgstr "" -#: hardware.cgi:221 +#: hardware.cgi:234 msgid "Drivers & Devices" msgstr "Controladores & Dispositivos" -#: hardware.cgi:222 +#: hardware.cgi:236 msgid "Manage your computer hardware" msgstr "Maneja tu hardware" -#: hardware.cgi:226 styles/default/header.html:68 +#: hardware.cgi:240 styles/default/header.html:92 msgid "Detect PCI/USB" msgstr "Detectar PCI/USB" -#: hardware.cgi:227 +#: hardware.cgi:241 msgid "Auto-install Xorg video driver" msgstr "" -#: hardware.cgi:237 hardware.cgi:254 +#: hardware.cgi:251 hardware.cgi:268 msgid "Battery" msgstr "Bateria" -#: hardware.cgi:257 +#: hardware.cgi:271 msgid "health" msgstr "Estado" -#: hardware.cgi:266 +#: hardware.cgi:280 msgid "Discharging %d%% - %s" msgstr "Descargando %d%% - %s" -#: hardware.cgi:270 -#, fuzzy, sh-format +#: hardware.cgi:284 +#, fuzzy msgid "Charging %d%% - %s" msgstr "Cargando %s%% - %s" -#: hardware.cgi:272 +#: hardware.cgi:286 #, fuzzy msgid "Charged 100%%" msgstr "Cargado 100%%" -#: hardware.cgi:291 +#: hardware.cgi:305 msgid "Temperature:" msgstr "Temperatura:" -#: hardware.cgi:306 +#: hardware.cgi:320 msgid "Brightness" msgstr "Brillo" -#: hardware.cgi:326 -msgid "Filesystem usage statistics" -msgstr "Archivo de estadísticas de uso del sistema" - -#: hardware.cgi:446 +#: hardware.cgi:462 #, fuzzy msgid "new mount point:" msgstr "Punto de montaje" -#: hardware.cgi:447 +#: hardware.cgi:463 msgid "read-only" msgstr "" -#: hardware.cgi:462 +#: hardware.cgi:478 msgid "Filesystems table" msgstr "" -#: hardware.cgi:475 lib/libtazpanel:282 +#: hardware.cgi:491 lib/libtazpanel:292 msgid "Disk" msgstr "Disco" -#: hardware.cgi:476 lib/libtazpanel:288 +#: hardware.cgi:492 lib/libtazpanel:298 msgid "Mount point" msgstr "Punto de montaje" -#: hardware.cgi:477 lib/libtazpanel:284 +#: hardware.cgi:493 lib/libtazpanel:294 msgid "Type" msgstr "Tipo" -#: hardware.cgi:478 +#: hardware.cgi:494 #, fuzzy msgid "Options" msgstr "Acción" -#: hardware.cgi:479 +#: hardware.cgi:495 msgid "Freq" msgstr "" -#: hardware.cgi:480 +#: hardware.cgi:496 #, fuzzy msgid "Pass" msgstr "Contraseña:" -#: hardware.cgi:502 +#: hardware.cgi:518 msgid "Loop devices" msgstr "" -#: hardware.cgi:510 +#: hardware.cgi:526 #, fuzzy msgid "Backing file" msgstr "Archivo de configuración" -#: hardware.cgi:511 +#: hardware.cgi:528 msgid "Access" msgstr "" -#: hardware.cgi:512 +#: hardware.cgi:529 msgid "Offset" msgstr "" -#: hardware.cgi:520 +#: hardware.cgi:538 msgid "read/write" msgstr "" -#: hardware.cgi:521 hardware.cgi:543 +#: hardware.cgi:539 hardware.cgi:564 msgid "read only" msgstr "" -#: hardware.cgi:540 +#: hardware.cgi:561 msgid "Setup" msgstr "" -#: hardware.cgi:541 +#: hardware.cgi:562 msgid "new backing file:" msgstr "" -#: hardware.cgi:542 +#: hardware.cgi:563 msgid "offset in bytes:" msgstr "" -#: hardware.cgi:560 +#: hardware.cgi:581 msgid "System memory" msgstr "Memoria del sistema" -#: hardware.cgi:566 +#: hardware.cgi:587 msgid "Buffers" msgstr "" -#: hardware.cgi:569 +#: hardware.cgi:590 msgid "Free" msgstr "" -#: settings.cgi:17 -msgid "TazPanel - Settings" -msgstr "Tazpanel - Configuracion" +#: settings.cgi:16 +msgid "System settings" +msgstr "Configuraciónes del sistema" -#: settings.cgi:83 -msgid "US" +#: settings.cgi:82 settings.cgi:621 settings.cgi:648 settings.cgi:653 +msgid "Set date" msgstr "" -#: settings.cgi:85 -msgid "metric" -msgstr "" - -#: settings.cgi:266 settings.cgi:544 +#: settings.cgi:208 settings.cgi:595 msgid "Manage groups" msgstr "" -#: settings.cgi:273 settings.cgi:364 +#: settings.cgi:216 settings.cgi:293 msgid "Selection:" msgstr "Selección:" -#: settings.cgi:274 +#: settings.cgi:217 msgid "Delete group" msgstr "" -#: settings.cgi:281 +#: settings.cgi:224 msgid "Group" msgstr "" -#: settings.cgi:282 +#: settings.cgi:225 msgid "Group ID" msgstr "" -#: settings.cgi:283 +#: settings.cgi:226 msgid "Members" msgstr "" -#: settings.cgi:312 +#: settings.cgi:253 msgid "Add a new group" msgstr "" -#: settings.cgi:316 settings.cgi:333 +#: settings.cgi:256 settings.cgi:268 msgid "Group name:" msgstr "" -#: settings.cgi:320 +#: settings.cgi:257 msgid "Create group" msgstr "" -#: settings.cgi:328 +#: settings.cgi:264 msgid "Manage group membership" msgstr "" -#: settings.cgi:335 settings.cgi:427 +#: settings.cgi:269 settings.cgi:356 msgid "User name:" msgstr "" -#: settings.cgi:340 +#: settings.cgi:272 msgid "Add user" msgstr "" -#: settings.cgi:343 +#: settings.cgi:273 msgid "Remove user" msgstr "" -#: settings.cgi:359 settings.cgi:543 +#: settings.cgi:286 settings.cgi:594 msgid "Manage users" msgstr "Manejar usuarios" -#: settings.cgi:365 +#: settings.cgi:294 msgid "Delete user" msgstr "Borrar usuario" -#: settings.cgi:366 +#: settings.cgi:295 msgid "Lock user" msgstr "Bloquear usuario" -#: settings.cgi:367 +#: settings.cgi:296 msgid "Unlock user" msgstr "Desbloquear usuario" -#: settings.cgi:373 +#: settings.cgi:302 msgid "Login" msgstr "Inicio de sesion" -#: settings.cgi:374 +#: settings.cgi:303 msgid "User ID" msgstr "ID del usuario" -#: settings.cgi:376 +#: settings.cgi:304 +#, fuzzy +msgid "User Name" +msgstr "ID del usuario" + +#: settings.cgi:305 msgid "Home" msgstr "Home" -#: settings.cgi:377 +#: settings.cgi:306 msgid "Shell" msgstr "Shell" -#: settings.cgi:410 +#: settings.cgi:340 msgid "Password:" msgstr "Contraseña:" -#: settings.cgi:412 +#: settings.cgi:342 msgid "Change password" msgstr "Cambiar contraseña" -#: settings.cgi:420 +#: settings.cgi:349 msgid "Add a new user" msgstr "Agregar un nuevo usuario" -#: settings.cgi:425 +#: settings.cgi:354 msgid "User login:" msgstr "Usuario Inicio de sesion:" -#: settings.cgi:429 +#: settings.cgi:358 msgid "User password:" msgstr "Contraseña de usuario:" -#: settings.cgi:434 +#: settings.cgi:363 msgid "Create user" msgstr "Crear usuario" -#: settings.cgi:441 +#: settings.cgi:373 msgid "Current user sessions" msgstr "Sesiones actuales del usuario" -#: settings.cgi:447 +#: settings.cgi:383 msgid "Last user sessions" msgstr "Últimas sesiones de usuarios" -#: settings.cgi:458 +#: settings.cgi:395 +msgid "Choose locale" +msgstr "Elija region" + +#: settings.cgi:398 msgid "Please wait..." msgstr "Por favor espere..." -#: settings.cgi:462 -msgid "Choose locale" -msgstr "Elija region" - -#: settings.cgi:465 +#: settings.cgi:403 msgid "Current locale settings:" msgstr "La configuración regional actual:" -#: settings.cgi:472 +#: settings.cgi:410 msgid "Locales that are currently installed on the machine:" msgstr "Regiones instaladas actualmente en la maquina:" -#: settings.cgi:482 +#: settings.cgi:420 msgid "" "Can't see your language?
    You can install glibc-locale to see a larger list of available locales." msgstr "" -#: settings.cgi:489 +#: settings.cgi:427 msgid "Available locales:" msgstr "Regiones disponibles:" -#: settings.cgi:493 +#: settings.cgi:431 msgid "Code" msgstr "Codigo" -#: settings.cgi:494 +#: settings.cgi:432 msgid "Language" msgstr "Lenguaje" -#: settings.cgi:495 +#: settings.cgi:433 msgid "Territory" msgstr "Territorio" -#: settings.cgi:512 settings.cgi:513 +#: settings.cgi:450 settings.cgi:451 msgid "-d" msgstr "-d" -#: settings.cgi:524 settings.cgi:666 settings.cgi:677 settings.cgi:689 +#: settings.cgi:462 settings.cgi:765 settings.cgi:776 settings.cgi:788 msgid "Activate" msgstr "Activado" +#: settings.cgi:474 settings.cgi:497 +msgid "Small quick tweaks for user %s" +msgstr "" + +#: settings.cgi:500 +#, fuzzy +msgid "Terminal prompt" +msgstr "Terminal" + +#: settings.cgi:506 +msgid "Monochrome" +msgstr "" + +#: settings.cgi:515 +msgid "Colored" +msgstr "" + +#: settings.cgi:524 settings.cgi:572 +#, fuzzy +msgid "Manual edit: %s" +msgstr "Editar manualmente" + +#: settings.cgi:525 +msgid "" +"To take effect: log out and log in to system or execute command in the " +"terminal:" +msgstr "" + +#: settings.cgi:533 +msgid "Menu button appearance" +msgstr "" + #: settings.cgi:538 -msgid "System settings" -msgstr "Configuraciónes del sistema" +msgid "Icon:" +msgstr "" -#: settings.cgi:540 +#: settings.cgi:541 settings.cgi:562 +msgid "Do not show" +msgstr "" + +#: settings.cgi:559 +msgid "Text:" +msgstr "" + +#: settings.cgi:566 +msgid "Show text" +msgstr "" + +#: settings.cgi:589 msgid "Manage system time, users or language settings" msgstr "" "Administrar el tiempo del sistema, los usuarios o la configuración de idioma" -#: settings.cgi:548 +#: settings.cgi:599 msgid "System time" msgstr "Hora del sistema" -#: settings.cgi:551 +#: settings.cgi:602 msgid "Time zone:" msgstr "Zona Horaria:" -#: settings.cgi:560 +#: settings.cgi:611 msgid "System time:" msgstr "Hora del sistema:" -#: settings.cgi:562 +#: settings.cgi:613 msgid "Sync online" msgstr "Sincronizar en línea" -#: settings.cgi:565 +#: settings.cgi:616 msgid "Hardware clock:" msgstr "Reloj hardware:" -#: settings.cgi:567 +#: settings.cgi:618 msgid "Set hardware clock" msgstr "Configurar el reloj hardware" -#: settings.cgi:570 settings.cgi:582 -msgid "Set date" -msgstr "" - -#: settings.cgi:605 +#: settings.cgi:704 msgid "System language" msgstr "Lenguaje del sistema" -#: settings.cgi:618 +#: settings.cgi:717 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:621 +#: settings.cgi:720 msgid "Current system locale:" msgstr "Configuración regional del sistema actual:" -#: settings.cgi:633 +#: settings.cgi:732 msgid "Keyboard layout" msgstr "" -#: settings.cgi:647 +#: settings.cgi:746 msgid "Current console keymap: %s" msgstr "Actual mapa de teclado de la consola: %s" -#: settings.cgi:665 +#: settings.cgi:764 msgid "Suggested keymap for Xorg:" msgstr "Mapa de teclado sugerido para Xorg:" -#: settings.cgi:673 +#: settings.cgi:772 msgid "Available keymaps:" msgstr "Mapas de teclado disponibles:" -#: settings.cgi:684 +#: settings.cgi:783 msgid "Panel configuration" msgstr "Configuración del panel" -#: settings.cgi:687 +#: settings.cgi:786 msgid "Style:" msgstr "Estilo:" -#: settings.cgi:692 -msgid "Panel password:" -msgstr "Contraseña del Panel:" - -#: settings.cgi:698 +#: settings.cgi:792 msgid "Configuration files:" msgstr "Archivos de configuración:" -#: settings.cgi:699 styles/default/header.html:23 +#: settings.cgi:793 styles/default/header.html:42 msgid "Panel" msgstr "Panel" -#: settings.cgi:700 +#: settings.cgi:794 msgid "Server" msgstr "Servidor" -#: settings.cgi:703 +#: settings.cgi:797 #, fuzzy msgid "TazPanel provides a debugging mode and page:" msgstr "TazPanel proporciona un modo de depuración y una página:" -#: lib/libtazpanel:137 +#: lib/libtazpanel:153 msgid "connected" msgstr "conectado" -#: lib/libtazpanel:157 +#: lib/libtazpanel:168 msgid "IP Address" msgstr "Dirección IP" -#: lib/libtazpanel:158 +#: lib/libtazpanel:169 msgid "Scan ports" msgstr "Escanear puertos" -#: lib/libtazpanel:283 +#: lib/libtazpanel:241 +#, fuzzy +msgid "Please wait" +msgstr "Por favor espere..." + +#: lib/libtazpanel:293 msgid "Label" msgstr "Etiqueta" -#: lib/libtazpanel:286 +#: lib/libtazpanel:296 msgid "Available" msgstr "Disponible" -#: lib/libtazpanel:353 +#: lib/libtazpanel:367 msgid "You must be root to show this page." msgstr "" @@ -1011,83 +1283,81 @@ msgstr "Manual" #: help.cgi:28 -msgid "TazPanel - Help & Doc" -msgstr "TazPanel - Ayuda & Documentacion" +msgid "Help & Doc" +msgstr "Ayuda & Documentacion" -#: styles/default/header.html:25 styles/default/header.html:35 -#: styles/default/header.html:45 styles/default/header.html:66 -#: styles/default/header.html:76 -msgid "Summary" -msgstr "Sumario" +#: styles/default/header.html:32 +#, fuzzy +msgid "Confirm break" +msgstr "Configuración" -#: styles/default/header.html:26 +#: styles/default/header.html:45 msgid "Processes" msgstr "Procesos" -#: styles/default/header.html:27 -msgid "Terminal" -msgstr "Terminal" - -#: styles/default/header.html:28 +#: styles/default/header.html:47 msgid "Create Report" msgstr "Crear un Reporte" -#: styles/default/header.html:36 +#: styles/default/header.html:55 msgid "Config file" msgstr "Archivo de configuración" -#: styles/default/header.html:37 +#: styles/default/header.html:56 msgid "Ethernet" msgstr "Ethernet" -#: styles/default/header.html:38 +#: styles/default/header.html:57 msgid "Wireless" msgstr "Inalámbrica" -#: styles/default/header.html:43 -msgid "Boot" -msgstr "Arranque" - -#: styles/default/header.html:64 -msgid "Hardware" -msgstr "Hardware" - -#: styles/default/header.html:69 -msgid "Disks" -msgstr "" - -#: styles/default/header.html:74 -msgid "Settings" -msgstr "Configuraciónes" - -#: styles/default/header.html:77 +#: styles/default/header.html:101 msgid "Users" msgstr "Usuarios" -#: styles/default/header.html:78 +#: styles/default/header.html:102 msgid "Groups" msgstr "" -#: styles/default/header.html:93 +#: styles/default/header.html:103 +msgid "Tweaks" +msgstr "" + +#: styles/default/header.html:119 msgid "Some features are disabled." msgstr "" -#: styles/default/header.html:98 +#: styles/default/header.html:124 msgid "You are logged in to the TazPanel as user %s." msgstr "" -#: styles/default/header.html:99 +#: styles/default/header.html:125 msgid "Click to re-login." msgstr "" -#: styles/default/footer.html:7 +#: styles/default/header.html:135 msgid "Copyright" msgstr "Derechos de autor" -#: styles/default/footer.html:9 +#: styles/default/header.html:137 msgid "BSD License" msgstr "Licencia BSD" +#~ msgid "Networking" +#~ msgstr "Redes" + +#~ 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" + +#~ msgid "Panel password:" +#~ msgstr "Contraseña del Panel:" + #~ msgid "Small terminal emulator, commands options are supported." #~ msgstr "" #~ "Pequeño emulador del terminal, opciónes de comandos están soportadas." @@ -1095,105 +1365,15 @@ #~ msgid "Commands: %s" #~ msgstr "Comandos: %s" -#~ msgid "Downloading to: %s" -#~ msgstr "Descargando a: %s" - -#~ msgid "%s needs an argument" -#~ msgstr "%s necesita un argumento" - #~ msgid "Unknown command: %s" #~ msgstr "Comando desconocido: %s" -#~ msgid "TazPanel - Process activity" -#~ msgstr "TazPanel - Actividad de los procesos" - -#~ msgid "Refresh:" -#~ msgstr "Actualizar:" - -#~ msgid "1s" -#~ msgstr "1s" - -#~ msgid "5s" -#~ msgstr "5s" - -#~ msgid "10s" -#~ msgstr "10s" - -#~ msgid "none" -#~ msgstr "No actualizar" - -#~ msgid "TazPanel - Debug" -#~ msgstr "TazPanel - Debug" - -#~ msgid "HTTP Environment" -#~ msgstr "Entorno HTTP" - -#~ msgid "TazPanel - System report" -#~ msgstr "TazPanel - Reportar sistema" - -#~ msgid "Reporting to: %s" -#~ msgstr "Reportando a: %s" - -#~ msgid "Creating report header..." -#~ msgstr "Creando el paquete..." - -#~ msgid "SliTaz system report" -#~ msgstr "Reportar sistema" - -#~ msgid "Creating system summary..." -#~ msgstr "Creando el paquete..." - -#~ msgid "Date:" -#~ msgstr "Fecha:" - -#~ msgid "Getting hardware info..." -#~ msgstr "Obteniendo información del paquete..." - -#~ msgid "Getting networking info..." -#~ msgstr "Obteniendo información del paquete..." - -#~ msgid "Getting filesystems info..." -#~ msgstr "Obtención de información de los sistemas de ficheros ..." - -#~ msgid "Getting boot logs..." -#~ msgstr "Obteniendo información del paquete..." - -#~ msgid "Creating report footer..." -#~ msgstr "Creando el paquete..." - #~ msgid "View report" #~ msgstr "Ver reporte" -#~ msgid "This report can be attached with a bug report on:" -#~ msgstr "Este reporte puede ser agregado con uno de bugs en:" - #~ msgid "Host: %s" #~ msgstr "Cambiar nombre del %s" -#~ msgid "SliTaz administration and configuration Panel" -#~ msgstr "SliTaz Administración y configuración del Panel" - -#~ msgid "Process activity" -#~ msgstr "Actividad de los procesos" - -#~ msgid "Create a report" -#~ msgstr "Crear un reporte" - -#~ msgid "Uptime:" -#~ msgstr "Tiempo encendido:" - -#~ msgid "Memory in Mb:" -#~ msgstr "Memoria en Mb:" - -#~ msgid "Total: %d, Used: %d, Free: %d" -#~ msgstr "Total: %d, Usad: %d, Libre: %d" - -#~ msgid "Linux kernel:" -#~ msgstr "Kernel Linux:" - -#~ msgid "Panel Activity" -#~ msgstr "Panel Actividad" - #~ msgid "Quality" #~ msgstr "Calidad" @@ -1212,9 +1392,6 @@ #~ msgid "Disable" #~ msgstr "Desactivado" -#~ msgid "Manual Edit" -#~ msgstr "Editar manualmente" - #~ msgid "Wifi name (ESSID)" #~ msgstr "Red Wifi (ESSID)" @@ -1230,21 +1407,6 @@ #~ msgid "Change hostname" #~ msgstr "Cambiar nombre del" -#~ msgid "Output of ifconfig" -#~ msgstr "Salida de ifconfig" - -#~ msgid "Routing table" -#~ msgstr "Tabla de enrutamiento" - -#~ msgid "Domain name resolution" -#~ msgstr "Resolución de nombres de dominio" - -#~ msgid "ARP table" -#~ msgstr "Tabla ARP" - -#~ msgid "IP Connections" -#~ msgstr "Conexiónes IP" - #~ msgid "Edit script" #~ msgstr "Editar scripts" diff -r f8ff472846c2 -r 3117717c007d po/fr.po --- a/po/fr.po Sat Jun 06 12:38:24 2015 +0200 +++ b/po/fr.po Mon Jun 08 04:32:19 2015 +0300 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: TazPanel 1.5.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-09 22:58+0200\n" +"POT-Creation-Date: 2015-06-05 20:42+0300\n" "PO-Revision-Date: 2012-12-20 10:15+0100\n" "Last-Translator: Stanislas Leduc \n" "Language-Team: French\n" @@ -18,104 +18,279 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: tazpanel:53 +#: tazpanel:52 msgid "TazPanel is already running." msgstr "TazPanel est déjà actif." -#: tazpanel:56 +#: tazpanel:55 msgid "Starting TazPanel web server on port %d..." msgstr "Lancement du serveur TazPanel sur le port %d..." -#: tazpanel:58 +#: tazpanel:57 msgid "TazPanel Authentication - Default: root:root" msgstr "TazPanel Authentification - Defaut : root:root" -#: tazpanel:65 +#: tazpanel:64 msgid "TazPanel is not running." msgstr "TazPanel n'est pas actif." -#: tazpanel:68 +#: tazpanel:67 msgid "Stopping TazPanel web server..." msgstr "Arrêt du serveur web TazPanel..." -#: tazpanel:76 -msgid "Changing password for TazPanel" -msgstr "Changement du mot de passe pour TazPanel" - -#: tazpanel:77 -msgid "New password: " -msgstr "Nouveau mot de passe : " - -#: tazpanel:79 -msgid "Password changed successfully" -msgstr "Mot de passe mis à jour" - -#: index.cgi:37 index.cgi:131 +#: index.cgi:37 index.cgi:120 msgid "Differences" msgstr "Différences" -#: index.cgi:88 -msgid "TazPanel - exec" +#: index.cgi:76 +msgid "exec" msgstr "" -#: index.cgi:120 -msgid "TazPanel - File" -msgstr "TazPanel - Fichier" +#: index.cgi:109 +msgid "File" +msgstr "Fichier" -#: index.cgi:130 index.cgi:149 +#: index.cgi:119 index.cgi:138 index.cgi:176 msgid "Save" msgstr "Enregistrer" -#: index.cgi:184 network.cgi:262 network.cgi:553 network.cgi:621 boot.cgi:382 -#: hardware.cgi:467 settings.cgi:667 +#: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670 +#: network.cgi:720 boot.cgi:531 hardware.cgi:483 settings.cgi:766 msgid "Edit" msgstr "Éditer" -#: index.cgi:228 -msgid "TazPanel - Terminal" -msgstr "TazPanel - Terminal" +#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:630 +#: styles/default/header.html:46 +msgid "Terminal" +msgstr "Terminal" -#: index.cgi:249 +#: index.cgi:246 index.cgi:331 msgid "History" msgstr "Historique" -#: index.cgi:250 lib/libtazpanel:334 +#: index.cgi:247 lib/libtazpanel:348 msgid "Back" msgstr "Retour" -#: index.cgi:256 +#: index.cgi:254 msgid "run" msgstr "" -#: index.cgi:271 +#: index.cgi:270 msgid "Clear" msgstr "" -#: network.cgi:15 -msgid "TazPanel - Network" -msgstr "TazPanel - Réseau" +#: index.cgi:294 +msgid "Small non-interactive terminal emulator." +msgstr "" -#: network.cgi:141 +#: index.cgi:295 +msgid "Run any command at your own risk, avoid interactive commands (%s)" +msgstr "" + +#: index.cgi:300 +msgid "Downloading to: %s" +msgstr "Téléchargement dans : %s" + +#: index.cgi:309 +msgid "%s needs an argument" +msgstr "La commande %s nécéssite un argument" + +#: index.cgi:312 +msgid "Please, don't run interactive command \"%s\"" +msgstr "" + +#: index.cgi:330 styles/default/header.html:98 +msgid "Settings" +msgstr "Paramètres" + +#: index.cgi:400 +#, fuzzy +msgid "Terminal settings" +msgstr "Réglages système" + +#: index.cgi:421 +msgid "Font:" +msgstr "" + +#: index.cgi:423 +#, fuzzy +msgid "Default" +msgstr "Entrée par défaut :" + +#: index.cgi:429 +msgid "Palette:" +msgstr "" + +#: index.cgi:435 +msgid "Apply" +msgstr "" + +#: index.cgi:445 index.cgi:631 +msgid "Process activity" +msgstr "Activité des processus" + +#: index.cgi:450 +msgid "Refresh:" +msgstr "Rafraîchir :" + +#: index.cgi:453 +msgid "1s" +msgstr "1s" + +#: index.cgi:455 +msgid "5s" +msgstr "5s" + +#: index.cgi:457 +msgid "10s" +msgstr "10s" + +#: index.cgi:459 +msgid "none" +msgstr "aucun" + +#: index.cgi:473 +msgid "Debug" +msgstr "Debugage" + +#: index.cgi:476 +msgid "HTTP Environment" +msgstr "Environnement HTTP" + +#: index.cgi:488 +msgid "System report" +msgstr "Rapport système" + +#: index.cgi:495 +msgid "Reporting to: %s" +msgstr "Création du rapport vers : %s" + +#: index.cgi:498 +msgid "Creating report header..." +msgstr "Création de l'en-tête du rapport..." + +#: index.cgi:505 index.cgi:522 +msgid "SliTaz system report" +msgstr "Rapport système" + +#: index.cgi:519 +msgid "Creating system summary..." +msgstr "Création du résumé du système..." + +#: index.cgi:523 +msgid "Date:" +msgstr "Date :" + +#: index.cgi:534 +msgid "Getting hardware info..." +msgstr "Collecte d'informations sur le matériel..." + +#: index.cgi:552 +msgid "Getting networking info..." +msgstr "Collecte d'informations sur le réseau..." + +#: index.cgi:566 +msgid "Getting filesystems info..." +msgstr "Collecte d'informations sur les systèmes de fichiers..." + +#: index.cgi:586 +msgid "Getting boot logs..." +msgstr "Collecte des journaux de démarrage..." + +#: index.cgi:589 boot.cgi:99 styles/default/header.html:74 +msgid "Kernel messages" +msgstr "Messages du noyau" + +#: index.cgi:592 boot.cgi:100 styles/default/header.html:75 +msgid "Boot scripts" +msgstr "Scripts de démarrage" + +#: index.cgi:597 +msgid "Creating report footer..." +msgstr "Création du pied de page du rapport..." + +#: index.cgi:608 index.cgi:704 boot.cgi:510 boot.cgi:512 +msgid "View" +msgstr "" + +#: index.cgi:613 +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 +msgid "SliTaz administration and configuration Panel" +msgstr "Panneau de Configuration et d'Administration de SliTaz" + +#: index.cgi:632 +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 +msgid "Summary" +msgstr "Résumé" + +#: index.cgi:638 +#, fuzzy +msgid "Host:" +msgstr "Hôtes" + +#: index.cgi:639 +msgid "Uptime:" +msgstr "Allumé depuis :" + +#: index.cgi:642 +msgid "Memory in Mb:" +msgstr "Mémoire en Mb :" + +#: index.cgi:644 +msgid "Total: %d, Used: %d, Free: %d" +msgstr "Total : %d, Utilisé : %d, Disponible : %d" + +#: index.cgi:648 +msgid "Linux kernel:" +msgstr "Noyau Linux :" + +#: index.cgi:657 +#, fuzzy +msgid "Network status" +msgstr "Interfaces réseau" + +#: index.cgi:659 network.cgi:15 network.cgi:215 styles/default/header.html:52 +msgid "Network" +msgstr "Réseau" + +#: index.cgi:668 hardware.cgi:340 +msgid "Filesystem usage statistics" +msgstr "Utilisation des systèmes de fichiers" + +#: index.cgi:670 styles/default/header.html:93 +msgid "Disks" +msgstr "Disques" + +#: index.cgi:702 +msgid "Panel Activity" +msgstr "Dernières actions" + +#: network.cgi:152 msgid "Changed hostname: %s" msgstr "Nouveau hostname: %s" -#: network.cgi:164 +#: network.cgi:209 msgid "Scanning open ports..." msgstr "Balayage des ports ouverts..." -#: network.cgi:169 +#: network.cgi:214 msgid "Port scanning for %s" msgstr "Scanning du port %s" -#: network.cgi:170 styles/default/header.html:33 -msgid "Network" -msgstr "Réseau" - -#: network.cgi:197 +#: network.cgi:225 msgid "Ethernet connection" msgstr "Connexion réseau" -#: network.cgi:200 +#: 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" @@ -124,51 +299,80 @@ "DHCP pour obtenir automatiquement une adresse IP aléatoire ou configurer une " "adresse IP statique / fixe" -#: network.cgi:204 boot.cgi:112 +#: network.cgi:247 boot.cgi:152 msgid "Configuration" msgstr "Configuration" -#: network.cgi:209 lib/libtazpanel:154 +#: network.cgi:253 lib/libtazpanel:165 msgid "Interface" msgstr "Interface" -#: network.cgi:217 +#: network.cgi:261 msgid "Static IP" msgstr "" -#: network.cgi:219 +#: network.cgi:263 msgid "Use static IP" msgstr "" -#: network.cgi:221 +#: network.cgi:265 msgid "IP address" msgstr "Adresse IP" -#: network.cgi:224 +#: network.cgi:268 msgid "Netmask" msgstr "Masque de sous-réseau" -#: network.cgi:227 +#: network.cgi:271 msgid "Gateway" msgstr "Passerelle" -#: network.cgi:230 +#: network.cgi:274 msgid "DNS server" msgstr "Serveur DNS" -#: network.cgi:237 network.cgi:396 network.cgi:594 boot.cgi:244 +#: network.cgi:277 network.cgi:297 +msgid "Wake up" +msgstr "" + +#: network.cgi:279 +msgid "Wake up machines by network" +msgstr "" + +#: network.cgi:281 +msgid "MAC address to wake up" +msgstr "" + +#: network.cgi:282 network.cgi:287 +msgid "Leave empty for a general wakeup" +msgstr "" + +#: network.cgi:283 +msgid "List" +msgstr "" + +#: network.cgi:286 +#, fuzzy +msgid "MAC/IP address password" +msgstr "Changer le mot de passe" + +#: network.cgi:288 +msgid "Help" +msgstr "" + +#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:292 msgid "Start" msgstr "Démarrer" -#: network.cgi:238 network.cgi:397 network.cgi:595 boot.cgi:233 +#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:281 msgid "Stop" msgstr "Arrêter" -#: network.cgi:257 network.cgi:548 +#: network.cgi:321 network.cgi:591 msgid "Configuration file" msgstr "Fichier de configuration" -#: network.cgi:267 +#: network.cgi:331 msgid "" "These values are the ethernet settings in the main /etc/network.conf " "configuration file" @@ -176,104 +380,99 @@ "Ces valeurs sont celles des paramètres Ethernet dans le fichier de " "configuration principal /etc/network.conf" -#: network.cgi:279 +#: network.cgi:343 msgid "(hidden)" msgstr "" -#: network.cgi:285 boot.cgi:110 hardware.cgi:38 settings.cgi:375 -#: lib/libtazpanel:155 +#: network.cgi:349 boot.cgi:150 hardware.cgi:57 lib/libtazpanel:166 msgid "Name" msgstr "Nom" -#: network.cgi:286 +#: network.cgi:350 msgid "Signal level" msgstr "" -#: network.cgi:287 +#: network.cgi:351 msgid "Channel" msgstr "Canal" -#: network.cgi:288 +#: network.cgi:352 msgid "Encryption" msgstr "Chiffrement" -#: network.cgi:289 boot.cgi:113 lib/libtazpanel:156 +#: network.cgi:353 boot.cgi:153 lib/libtazpanel:167 msgid "Status" msgstr "État" -#: network.cgi:340 network.cgi:436 network.cgi:458 +#: network.cgi:404 network.cgi:486 network.cgi:508 msgid "None" msgstr "" -#: network.cgi:353 +#: network.cgi:410 msgid "Connected" msgstr "Connecté" -#: network.cgi:383 +#: network.cgi:436 msgid "Wireless connection" msgstr "Connection sans fil" -#: network.cgi:398 lib/libtazpanel:139 +#: network.cgi:452 lib/libtazpanel:150 msgid "Scan" msgstr "Scanner" -#: network.cgi:406 +#: network.cgi:460 msgid "Scanning wireless interface..." msgstr "Scan des interfaces sans-fil..." -#: network.cgi:424 +#: network.cgi:474 msgid "Connection" msgstr "Connexion" -#: network.cgi:430 +#: network.cgi:480 msgid "Network SSID" msgstr "" -#: network.cgi:434 +#: network.cgi:484 msgid "Security" msgstr "" -#: network.cgi:445 +#: network.cgi:495 msgid "EAP method" msgstr "" -#: network.cgi:456 +#: network.cgi:506 msgid "Phase 2 authentication" msgstr "" -#: network.cgi:468 +#: network.cgi:518 msgid "CA certificate" msgstr "" -#: network.cgi:473 +#: network.cgi:523 msgid "User certificate" msgstr "" -#: network.cgi:478 +#: network.cgi:528 msgid "Identity" msgstr "" -#: network.cgi:483 +#: network.cgi:533 msgid "Anonymous identity" msgstr "" -#: network.cgi:488 +#: network.cgi:538 msgid "Password" msgstr "Mot de passe" -#: network.cgi:491 +#: network.cgi:541 msgid "Show password" msgstr "Affiche le mot de passe" -#: network.cgi:501 -msgid "Access point" -msgstr "Point d'accès" - -#: network.cgi:539 +#: network.cgi:582 msgid "Configure" msgstr "Configurer" -#: network.cgi:558 +#: network.cgi:601 msgid "" "These values are the wifi settings in the main /etc/network.conf " "configuration file" @@ -281,577 +480,605 @@ "Ces valeurs sont celles des paramètres wifi dans le fichier de configuration " "principal /etc/network.conf" -#: network.cgi:564 +#: network.cgi:607 msgid "Output of iwconfig" msgstr "Sortie de la commande iwconfig" -#: network.cgi:587 -msgid "Networking" -msgstr "Gestion du réseau" - -#: network.cgi:589 +#: network.cgi:616 msgid "Manage network connections and services" msgstr "Gérer les connexions réseau et les services" -#: network.cgi:596 +#: network.cgi:635 msgid "Restart" msgstr "Redémarrer" -#: network.cgi:600 +#: network.cgi:639 msgid "Configuration:" msgstr "Configuration :" -#: network.cgi:608 +#: network.cgi:647 msgid "Network interfaces" msgstr "Interfaces réseau" -#: network.cgi:614 +#: network.cgi:654 +msgid "forward packets between interfaces" +msgstr "" + +#: network.cgi:656 network.cgi:690 boot.cgi:336 settings.cgi:608 +#: settings.cgi:722 +msgid "Change" +msgstr "Changer" + +#: network.cgi:665 msgid "Hosts" msgstr "Hôtes" -#: network.cgi:630 +#: network.cgi:682 msgid "Hostname" msgstr "Nom de l'hôte" -#: boot.cgi:16 -msgid "TazPanel - Boot" -msgstr "TazPanel - Démarrage" +#: network.cgi:702 +#, fuzzy +msgid "Output of ifconfig" +msgstr "Sortie de la commande ifconfig" + +#: network.cgi:708 +msgid "Routing table" +msgstr "Table de routage" + +#: network.cgi:715 +msgid "Domain name resolution" +msgstr "Résolution de noms de domaines" + +#: network.cgi:730 +msgid "ARP table" +msgstr "Table ARP" + +#: network.cgi:750 +msgid "Proxy" +msgstr "" + +#: network.cgi:751 +msgid "Add" +msgstr "" + +#: network.cgi:764 +msgid "IP Connections" +msgstr "Connexions IP" + +#: network.cgi:774 +msgid "Firewall" +msgstr "" + +#: boot.cgi:16 styles/default/header.html:62 +msgid "Boot" +msgstr "Démarrage" #: boot.cgi:27 msgid "Show more..." msgstr "En voir plus..." -#: boot.cgi:56 +#: boot.cgi:45 boot.cgi:492 styles/default/header.html:80 +msgid "System logs" +msgstr "Journaux système" + +#: boot.cgi:96 msgid "Boot log files" msgstr "Journaux de démarrage" -msgid "System logs" -msgstr "Journaux système" - -#: boot.cgi:59 styles/default/header.html:53 -msgid "Kernel messages" -msgstr "Messages du noyau" - -#: boot.cgi:60 styles/default/header.html:54 -msgid "Boot scripts" -msgstr "Scripts de démarrage" - -#: boot.cgi:61 styles/default/header.html:55 +#: boot.cgi:101 styles/default/header.html:76 msgid "X server" msgstr "Serveur X" -#: boot.cgi:62 styles/default/header.html:56 +#: boot.cgi:102 styles/default/header.html:77 msgid "X session" msgstr "Session X" -#: boot.cgi:84 boot.cgi:347 styles/default/header.html:59 +#: boot.cgi:124 boot.cgi:493 styles/default/header.html:81 msgid "Manage daemons" msgstr "Gérer les démons" -#: boot.cgi:86 +#: boot.cgi:126 msgid "Check, start and stop daemons on SliTaz" msgstr "Vérifier, démarrer et arrêter les démons sur SliTaz" -#: boot.cgi:111 hardware.cgi:153 settings.cgi:496 +#: boot.cgi:151 hardware.cgi:168 settings.cgi:434 msgid "Description" msgstr "Description" -#: boot.cgi:114 +#: boot.cgi:154 msgid "Action" msgstr "Action" -#: boot.cgi:115 +#: boot.cgi:155 msgid "PID" msgstr "PID" -#: boot.cgi:138 +#: boot.cgi:180 msgid "SliTaz Firewall with iptable rules" msgstr "Pare-feu SliTaz avec les règles iptables" -#: boot.cgi:140 +#: boot.cgi:182 msgid "Small and fast web server with CGI support" msgstr "Serveur web léger et rapide avec support de CGI" -#: boot.cgi:142 +#: boot.cgi:185 msgid "Network time protocol daemon" msgstr "Démon Network Time Protocol" -#: boot.cgi:145 +#: boot.cgi:188 msgid "Anonymous FTP server" msgstr "Serveur anonyme FTP" -#: boot.cgi:147 +#: boot.cgi:191 msgid "Busybox DHCP server" msgstr "Serveur DHCP Busybox" -#: boot.cgi:149 +#: boot.cgi:194 msgid "Linux Kernel log daemon" msgstr "Démon Linux Kernel log" -#: boot.cgi:152 +#: boot.cgi:197 msgid "Execute scheduled commands" msgstr "Exécuter des commandes planifiées" -#: boot.cgi:155 +#: boot.cgi:200 msgid "Small static DNS server daemon" msgstr "Démon du petit serveur DNS statique" -#: boot.cgi:158 +#: boot.cgi:203 msgid "Transfer a file on tftp request" msgstr "Transférer un fichier à travers une requête TFTP" -#: boot.cgi:160 +#: boot.cgi:206 +#, fuzzy +msgid "Printer daemon" +msgstr "Gérer les démons" + +#: boot.cgi:208 msgid "Listen for network connections and launch programs" msgstr "Écoute des connexions réseau et lancement de programmes" -#: boot.cgi:163 +#: boot.cgi:211 msgid "Manage a ZeroConf IPv4 link-local address" msgstr "Gestion d'une adresse ZeroConf IPv4 link-local" -#: boot.cgi:232 +#: boot.cgi:280 msgid "Started" msgstr "Démarré" -#: boot.cgi:243 +#: boot.cgi:291 msgid "Stopped" msgstr "Arrêté" -#: boot.cgi:270 +#: boot.cgi:318 msgid "GRUB Boot loader" msgstr "Gestionnaire de d'amorçage GRUB" -#: boot.cgi:272 +#: boot.cgi:320 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:279 +#: boot.cgi:327 msgid "Default entry:" msgstr "Entrée par défaut :" -#: boot.cgi:281 +#: boot.cgi:329 msgid "Timeout:" msgstr "Temps d'attente :" -#: boot.cgi:283 +#: boot.cgi:331 msgid "Splash image:" msgstr "Image à afficher pendant le démarrage :" -#: boot.cgi:288 settings.cgi:557 settings.cgi:623 settings.cgi:694 -msgid "Change" -msgstr "Changer" - -#: boot.cgi:295 +#: boot.cgi:343 msgid "View or edit menu.lst" msgstr "Voir ou éditer le fichier menu.lst" -#: boot.cgi:300 +#: boot.cgi:348 msgid "Boot entries" msgstr "Entrées de Grub" -#: boot.cgi:307 +#: boot.cgi:355 msgid "Entry" msgstr "Entrée" -#: boot.cgi:328 +#: boot.cgi:376 msgid "Web boot is available with gPXE" msgstr "Le démarrage réseau est disponible avec gPXE" -#: boot.cgi:341 +#: boot.cgi:390 boot.cgi:496 styles/default/header.html:83 +msgid "ISO mine" +msgstr "" + +#: boot.cgi:486 msgid "Boot & Start services" msgstr "Démarrage & lancement des services" -#: boot.cgi:343 +#: boot.cgi:488 msgid "Everything that happens before user login" msgstr "Tout ce qui se produit avant le login de l'utilisateur" -#: boot.cgi:346 styles/default/header.html:51 +#: boot.cgi:491 styles/default/header.html:72 msgid "Boot logs" msgstr "Journaux de démarrage" -#: boot.cgi:350 styles/default/header.html:48 +#: boot.cgi:499 styles/default/header.html:68 msgid "Boot loader" msgstr "Chargeur d'amorçage" -#: boot.cgi:357 +#: boot.cgi:506 msgid "Configuration files" msgstr "Fichiers de configuration" -#: boot.cgi:360 +#: boot.cgi:509 msgid "Main configuration file:" msgstr "Fichier de configuration principal :" -#: boot.cgi:361 boot.cgi:363 -msgid "View" -msgstr "" - -#: boot.cgi:362 +#: boot.cgi:511 msgid "Login manager settings:" msgstr "Réglages du gestionnaire de session :" -#: boot.cgi:370 +#: boot.cgi:519 msgid "Kernel cmdline" msgstr "Ligne de commande passée au noyau" -#: boot.cgi:377 +#: boot.cgi:526 msgid "Local startup commands" msgstr "Commandes supplémentaires lors du démarrage" -#: hardware.cgi:13 -msgid "TazPanel - Hardware" -msgstr "TazPanel - Matériel" +#: hardware.cgi:13 styles/default/header.html:88 +msgid "Hardware" +msgstr "Matériel" -#: hardware.cgi:35 +#: hardware.cgi:54 msgid "Bus" msgstr "" -#: hardware.cgi:36 hardware.cgi:509 +#: hardware.cgi:55 hardware.cgi:525 msgid "Device" msgstr "" -#: hardware.cgi:37 +#: hardware.cgi:56 #, fuzzy msgid "ID" msgstr "PID" -#: hardware.cgi:90 +#: hardware.cgi:108 msgid "Detect hardware" msgstr "Detecter le matériel" -#: hardware.cgi:91 +#: hardware.cgi:110 msgid "Detect PCI and USB hardware" msgstr "Détecter le matériel PCI/USB" -#: hardware.cgi:104 hardware.cgi:225 styles/default/header.html:67 +#: hardware.cgi:118 hardware.cgi:239 styles/default/header.html:91 msgid "Kernel modules" msgstr "Modules du noyau" -#: hardware.cgi:105 +#: hardware.cgi:120 msgid "Manage, search or get information about the Linux kernel modules" msgstr "" "Gérer, rechercher ou obtenir des informations sur les modules du noyau Linux" -#: hardware.cgi:109 +#: hardware.cgi:124 msgid "Modules search" msgstr "Recherche de modules" -#: hardware.cgi:117 +#: hardware.cgi:132 msgid "Detailed information for module: %s" msgstr "Les informations détaillées pour le module : %s" -#: hardware.cgi:137 +#: hardware.cgi:152 msgid "Matching result(s) for: %s" msgstr "Résultats correspondants pour : %s" -#: hardware.cgi:143 +#: hardware.cgi:158 msgid "Module:" msgstr "Module :" -#: hardware.cgi:152 +#: hardware.cgi:167 msgid "Module" msgstr "Module" -#: hardware.cgi:154 lib/libtazpanel:285 +#: hardware.cgi:169 hardware.cgi:527 lib/libtazpanel:295 msgid "Size" msgstr "Taille" -#: hardware.cgi:155 hardware.cgi:563 lib/libtazpanel:287 +#: hardware.cgi:170 hardware.cgi:584 lib/libtazpanel:297 msgid "Used" msgstr "Utilisé" -#: hardware.cgi:156 +#: hardware.cgi:171 msgid "by" msgstr "par" -#: hardware.cgi:180 +#: hardware.cgi:195 msgid "Information for USB Device %s" msgstr "Détails du périphérique USB %s" -#: hardware.cgi:182 hardware.cgi:200 +#: hardware.cgi:197 hardware.cgi:215 msgid "Detailed information about specified device." msgstr "Détails sur un périphérique." -#: hardware.cgi:198 +#: hardware.cgi:213 msgid "Information for PCI Device %s" msgstr "Détails du périphérique PCI %s" -#: hardware.cgi:221 +#: hardware.cgi:234 msgid "Drivers & Devices" msgstr "Pilotes & périphériques" -#: hardware.cgi:222 +#: hardware.cgi:236 msgid "Manage your computer hardware" msgstr "Gérer le matériel de l'ordinateur" -#: hardware.cgi:226 styles/default/header.html:68 +#: hardware.cgi:240 styles/default/header.html:92 msgid "Detect PCI/USB" msgstr "Détecter le matériel PCI/USB" -#: hardware.cgi:227 +#: hardware.cgi:241 msgid "Auto-install Xorg video driver" msgstr "Installation du driver vidéo Xorg" -#: hardware.cgi:237 hardware.cgi:254 +#: hardware.cgi:251 hardware.cgi:268 msgid "Battery" msgstr "Batterie" -#: hardware.cgi:257 +#: hardware.cgi:271 msgid "health" msgstr "santé" -#: hardware.cgi:266 +#: hardware.cgi:280 msgid "Discharging %d%% - %s" msgstr "Déchargement %d%% - %s" -#: hardware.cgi:270 -#, sh-format +#: hardware.cgi:284 msgid "Charging %d%% - %s" msgstr "Chargement %d%% - %s" -#: hardware.cgi:272 +#: hardware.cgi:286 msgid "Charged 100%%" msgstr "Chargée à 100%%" -#: hardware.cgi:291 +#: hardware.cgi:305 msgid "Temperature:" msgstr "Température :" -#: hardware.cgi:306 +#: hardware.cgi:320 msgid "Brightness" msgstr "Luminosité d'écran" -#: hardware.cgi:326 -msgid "Filesystem usage statistics" -msgstr "Utilisation des systèmes de fichiers" - -#: hardware.cgi:446 +#: hardware.cgi:462 msgid "new mount point:" msgstr "Point de montage" -#: hardware.cgi:447 +#: hardware.cgi:463 msgid "read-only" msgstr "" -#: hardware.cgi:462 +#: hardware.cgi:478 msgid "Filesystems table" msgstr "Systèmes de fichiers" -#: hardware.cgi:475 lib/libtazpanel:282 +#: hardware.cgi:491 lib/libtazpanel:292 msgid "Disk" msgstr "Disque" -#: hardware.cgi:476 lib/libtazpanel:288 +#: hardware.cgi:492 lib/libtazpanel:298 msgid "Mount point" msgstr "Point de montage" -#: hardware.cgi:477 lib/libtazpanel:284 +#: hardware.cgi:493 lib/libtazpanel:294 msgid "Type" msgstr "Type" -#: hardware.cgi:478 +#: hardware.cgi:494 msgid "Options" msgstr "" -#: hardware.cgi:479 +#: hardware.cgi:495 msgid "Freq" msgstr "" -#: hardware.cgi:480 +#: hardware.cgi:496 msgid "Pass" msgstr "Passe" -#: hardware.cgi:502 +#: hardware.cgi:518 msgid "Loop devices" msgstr "" -#: hardware.cgi:510 +#: hardware.cgi:526 msgid "Backing file" msgstr "Fichier conteneur" -#: hardware.cgi:511 +#: hardware.cgi:528 msgid "Access" msgstr "Accès" -#: hardware.cgi:512 +#: hardware.cgi:529 msgid "Offset" msgstr "" -#: hardware.cgi:520 +#: hardware.cgi:538 msgid "read/write" msgstr "" -#: hardware.cgi:521 hardware.cgi:543 +#: hardware.cgi:539 hardware.cgi:564 msgid "read only" msgstr "" -#: hardware.cgi:540 +#: hardware.cgi:561 msgid "Setup" msgstr "" -#: hardware.cgi:541 +#: hardware.cgi:562 msgid "new backing file:" msgstr "" -#: hardware.cgi:542 +#: hardware.cgi:563 msgid "offset in bytes:" msgstr "" -#: hardware.cgi:560 +#: hardware.cgi:581 msgid "System memory" msgstr "Mémoire système" -#: hardware.cgi:566 +#: hardware.cgi:587 msgid "Buffers" msgstr "" -#: hardware.cgi:569 +#: hardware.cgi:590 msgid "Free" msgstr "" -#: settings.cgi:17 -msgid "TazPanel - Settings" -msgstr "TazPanel - Paramètres" +#: settings.cgi:16 +msgid "System settings" +msgstr "Réglages système" -#: settings.cgi:83 -msgid "US" -msgstr "" +#: settings.cgi:82 settings.cgi:621 settings.cgi:648 settings.cgi:653 +msgid "Set date" +msgstr "Entrer la date" -#: settings.cgi:85 -msgid "metric" -msgstr "" - -#: settings.cgi:266 settings.cgi:544 +#: settings.cgi:208 settings.cgi:595 msgid "Manage groups" msgstr "Gestion des groupes" -#: settings.cgi:273 settings.cgi:364 +#: settings.cgi:216 settings.cgi:293 msgid "Selection:" msgstr "Sélection :" -#: settings.cgi:274 +#: settings.cgi:217 msgid "Delete group" msgstr "Efface un groupe" -#: settings.cgi:281 +#: settings.cgi:224 msgid "Group" msgstr "groupe" -#: settings.cgi:282 +#: settings.cgi:225 msgid "Group ID" msgstr "ID du groupe" -#: settings.cgi:283 +#: settings.cgi:226 msgid "Members" msgstr "Membres" -#: settings.cgi:312 +#: settings.cgi:253 msgid "Add a new group" msgstr "Ajoute un nouveau groupe" -#: settings.cgi:316 settings.cgi:333 +#: settings.cgi:256 settings.cgi:268 msgid "Group name:" msgstr "Nom du groupe :" -#: settings.cgi:320 +#: settings.cgi:257 msgid "Create group" msgstr "Crée un groupe" -#: settings.cgi:328 +#: settings.cgi:264 msgid "Manage group membership" msgstr "Gérer les apartenances à un groupe" -#: settings.cgi:335 settings.cgi:427 +#: settings.cgi:269 settings.cgi:356 msgid "User name:" msgstr "Identifiant de l'utilisateur :" -#: settings.cgi:340 +#: settings.cgi:272 msgid "Add user" msgstr "Ajouter un utilisateur" -#: settings.cgi:343 +#: settings.cgi:273 msgid "Remove user" msgstr "Enléve un utilisateur" -#: settings.cgi:359 settings.cgi:543 +#: settings.cgi:286 settings.cgi:594 msgid "Manage users" msgstr "Gérer les utilisateurs" -#: settings.cgi:365 +#: settings.cgi:294 msgid "Delete user" msgstr "Supprimer l'utilisateur" -#: settings.cgi:366 +#: settings.cgi:295 msgid "Lock user" msgstr "Bloquer l'utilisateur" -#: settings.cgi:367 +#: settings.cgi:296 msgid "Unlock user" msgstr "Débloquer l'utilisateur" -#: settings.cgi:373 +#: settings.cgi:302 msgid "Login" msgstr "Identifiant" -#: settings.cgi:374 +#: settings.cgi:303 msgid "User ID" msgstr "Id utilisateur" -#: settings.cgi:376 +#: settings.cgi:304 +#, fuzzy +msgid "User Name" +msgstr "Identifiant de l'utilisateur :" + +#: settings.cgi:305 msgid "Home" msgstr "Répertoire personnel" -#: settings.cgi:377 +#: settings.cgi:306 msgid "Shell" msgstr "Shell" -#: settings.cgi:410 +#: settings.cgi:340 msgid "Password:" msgstr "Mot de passe :" -#: settings.cgi:412 +#: settings.cgi:342 msgid "Change password" msgstr "Changer le mot de passe" -#: settings.cgi:420 +#: settings.cgi:349 msgid "Add a new user" msgstr "Ajouter un utilisateur" -#: settings.cgi:425 +#: settings.cgi:354 msgid "User login:" msgstr "Identifiant :" -#: settings.cgi:429 +#: settings.cgi:358 msgid "User password:" msgstr "Mot de passe :" -#: settings.cgi:434 +#: settings.cgi:363 msgid "Create user" msgstr "Créer un utilisateur" -#: settings.cgi:441 +#: settings.cgi:373 msgid "Current user sessions" msgstr "Sessions utilisateur courantes" -#: settings.cgi:447 +#: settings.cgi:383 msgid "Last user sessions" msgstr "Dernières sessions utilisateur" -#: settings.cgi:458 +#: settings.cgi:395 +msgid "Choose locale" +msgstr "Choisissez votre langue" + +#: settings.cgi:398 msgid "Please wait..." msgstr "merci de patientier..." -#: settings.cgi:462 -msgid "Choose locale" -msgstr "Choisissez votre langue" - -#: settings.cgi:465 +#: settings.cgi:403 msgid "Current locale settings:" msgstr "Locales système courantes :" -#: settings.cgi:472 +#: settings.cgi:410 msgid "Locales that are currently installed on the machine:" msgstr "Ses locales sont actuellement installées sur cette machine :" -#: settings.cgi:482 +#: settings.cgi:420 msgid "" "Can't see your language?
    You can install glibc-locale to see a larger list of available locales." @@ -860,146 +1087,187 @@ "do=Install&glibc-locale'>installer glibc-locale pour avoir une liste de " "langues plus importante." -#: settings.cgi:489 +#: settings.cgi:427 msgid "Available locales:" msgstr "Langues disponibles :" -#: settings.cgi:493 +#: settings.cgi:431 msgid "Code" msgstr "Code" -#: settings.cgi:494 +#: settings.cgi:432 msgid "Language" msgstr "Langue du système" -#: settings.cgi:495 +#: settings.cgi:433 msgid "Territory" msgstr "Territoire" -#: settings.cgi:512 settings.cgi:513 +#: settings.cgi:450 settings.cgi:451 msgid "-d" msgstr "-d" -#: settings.cgi:524 settings.cgi:666 settings.cgi:677 settings.cgi:689 +#: settings.cgi:462 settings.cgi:765 settings.cgi:776 settings.cgi:788 msgid "Activate" msgstr "Activer" +#: settings.cgi:474 settings.cgi:497 +msgid "Small quick tweaks for user %s" +msgstr "" + +#: settings.cgi:500 +#, fuzzy +msgid "Terminal prompt" +msgstr "Terminal" + +#: settings.cgi:506 +msgid "Monochrome" +msgstr "" + +#: settings.cgi:515 +msgid "Colored" +msgstr "" + +#: settings.cgi:524 settings.cgi:572 +#, fuzzy +msgid "Manual edit: %s" +msgstr "Édition manuelle" + +#: settings.cgi:525 +msgid "" +"To take effect: log out and log in to system or execute command in the " +"terminal:" +msgstr "" + +#: settings.cgi:533 +msgid "Menu button appearance" +msgstr "" + #: settings.cgi:538 -msgid "System settings" -msgstr "Réglages système" +msgid "Icon:" +msgstr "" -#: settings.cgi:540 +#: settings.cgi:541 settings.cgi:562 +msgid "Do not show" +msgstr "" + +#: settings.cgi:559 +msgid "Text:" +msgstr "" + +#: settings.cgi:566 +msgid "Show text" +msgstr "" + +#: settings.cgi:589 msgid "Manage system time, users or language settings" msgstr "Gérer l'horloge, les utilisateurs ou les paramètres de langue" -#: settings.cgi:548 +#: settings.cgi:599 msgid "System time" msgstr "Heure système" -#: settings.cgi:551 +#: settings.cgi:602 msgid "Time zone:" msgstr "Zone horaire :" -#: settings.cgi:560 +#: settings.cgi:611 msgid "System time:" msgstr "Heure système :" -#: settings.cgi:562 +#: settings.cgi:613 msgid "Sync online" msgstr "Synchroniser en ligne" -#: settings.cgi:565 +#: settings.cgi:616 msgid "Hardware clock:" msgstr "Horloge système :" -#: settings.cgi:567 +#: settings.cgi:618 msgid "Set hardware clock" msgstr "Configurer l'horloge système" -#: settings.cgi:570 settings.cgi:582 -msgid "Set date" -msgstr "Entrer la date" - -#: settings.cgi:605 +#: settings.cgi:704 msgid "System language" msgstr "Langue du système" -#: settings.cgi:618 +#: settings.cgi:717 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:621 +#: settings.cgi:720 msgid "Current system locale:" msgstr "Locales système actuelles :" -#: settings.cgi:633 +#: settings.cgi:732 msgid "Keyboard layout" msgstr "" -#: settings.cgi:647 +#: settings.cgi:746 msgid "Current console keymap: %s" msgstr "Clavier actif pour la console : %s" -#: settings.cgi:665 +#: settings.cgi:764 msgid "Suggested keymap for Xorg:" msgstr "Type de claviers suggéré pour Xorg :" -#: settings.cgi:673 +#: settings.cgi:772 msgid "Available keymaps:" msgstr "Claviers disponibles :" -#: settings.cgi:684 +#: settings.cgi:783 msgid "Panel configuration" msgstr "Configuration du panneau" -#: settings.cgi:687 +#: settings.cgi:786 msgid "Style:" msgstr "Style :" -#: settings.cgi:692 -msgid "Panel password:" -msgstr "Mot de passe :" - -#: settings.cgi:698 +#: settings.cgi:792 msgid "Configuration files:" msgstr "Fichiers de configuration :" -#: settings.cgi:699 styles/default/header.html:23 +#: settings.cgi:793 styles/default/header.html:42 msgid "Panel" msgstr "Panneau" -#: settings.cgi:700 +#: settings.cgi:794 msgid "Server" msgstr "Serveur" -#: settings.cgi:703 +#: settings.cgi:797 msgid "TazPanel provides a debugging mode and page:" msgstr "TazPanel fournit un mode et une page de debug :" -#: lib/libtazpanel:137 +#: lib/libtazpanel:153 msgid "connected" msgstr "Connecté" -#: lib/libtazpanel:157 +#: lib/libtazpanel:168 msgid "IP Address" msgstr "Adresse IP" -#: lib/libtazpanel:158 +#: lib/libtazpanel:169 msgid "Scan ports" msgstr "Scan des ports" -#: lib/libtazpanel:283 +#: lib/libtazpanel:241 +#, fuzzy +msgid "Please wait" +msgstr "merci de patientier..." + +#: lib/libtazpanel:293 msgid "Label" msgstr "Etiquette" -#: lib/libtazpanel:286 +#: lib/libtazpanel:296 msgid "Available" msgstr "Disponible" -#: lib/libtazpanel:353 +#: lib/libtazpanel:367 msgid "You must be root to show this page." msgstr "" @@ -1008,83 +1276,88 @@ msgstr "Manuel utilisateur" #: help.cgi:28 -msgid "TazPanel - Help & Doc" -msgstr "TazPanel - Aide & Support" +msgid "Help & Doc" +msgstr "Aide & Support" -#: styles/default/header.html:25 styles/default/header.html:35 -#: styles/default/header.html:45 styles/default/header.html:66 -#: styles/default/header.html:76 -msgid "Summary" -msgstr "Résumé" +#: styles/default/header.html:32 +#, fuzzy +msgid "Confirm break" +msgstr "Configurer" -#: styles/default/header.html:26 +#: styles/default/header.html:45 msgid "Processes" msgstr "Processus" -#: styles/default/header.html:27 -msgid "Terminal" -msgstr "Terminal" - -#: styles/default/header.html:28 +#: styles/default/header.html:47 msgid "Create Report" msgstr "Créer un rapport" -#: styles/default/header.html:36 +#: styles/default/header.html:55 msgid "Config file" msgstr "Fichier de configuration" -#: styles/default/header.html:37 +#: styles/default/header.html:56 msgid "Ethernet" msgstr "Réseau filaire" -#: styles/default/header.html:38 +#: styles/default/header.html:57 msgid "Wireless" msgstr "Réseau sans fil" -#: styles/default/header.html:43 -msgid "Boot" -msgstr "Démarrage" - -#: styles/default/header.html:64 -msgid "Hardware" -msgstr "Matériel" - -#: styles/default/header.html:69 -msgid "Disks" -msgstr "Disques" - -#: styles/default/header.html:74 -msgid "Settings" -msgstr "Réglages" - -#: styles/default/header.html:77 +#: styles/default/header.html:101 msgid "Users" msgstr "Utilisateurs" -#: styles/default/header.html:78 +#: styles/default/header.html:102 msgid "Groups" msgstr "Groupes" -#: styles/default/header.html:93 +#: styles/default/header.html:103 +msgid "Tweaks" +msgstr "Réglages" + +#: styles/default/header.html:119 msgid "Some features are disabled." msgstr "" -#: styles/default/header.html:98 +#: styles/default/header.html:124 msgid "You are logged in to the TazPanel as user %s." msgstr "" -#: styles/default/header.html:99 +#: styles/default/header.html:125 msgid "Click to re-login." msgstr "" -#: styles/default/footer.html:7 +#: styles/default/header.html:135 msgid "Copyright" msgstr "Licence d'utilisation" -#: styles/default/footer.html:9 +#: styles/default/header.html:137 msgid "BSD License" msgstr " License BSD" +#, fuzzy +#~ msgid "Groups management" +#~ msgstr "Nom du groupe :" + +#~ msgid "Networking" +#~ msgstr "Gestion du réseau" + +#~ 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" + +#~ msgid "Access point" +#~ msgstr "Point d'accès" + +#~ msgid "Panel password:" +#~ msgstr "Mot de passe :" + #~ msgid "Small terminal emulator, commands options are supported." #~ msgstr "" #~ "Petit émulateur de terminal, les options des commandes sont supportées." @@ -1092,105 +1365,15 @@ #~ msgid "Commands: %s" #~ msgstr "Commandes : %s" -#~ msgid "Downloading to: %s" -#~ msgstr "Téléchargement dans : %s" - -#~ msgid "%s needs an argument" -#~ msgstr "La commande %s nécéssite un argument" - #~ msgid "Unknown command: %s" #~ msgstr "Commande inconnue : %s" -#~ msgid "TazPanel - Process activity" -#~ msgstr "TazPanel - Activité des processus" - -#~ msgid "Refresh:" -#~ msgstr "Rafraîchir :" - -#~ msgid "1s" -#~ msgstr "1s" - -#~ msgid "5s" -#~ msgstr "5s" - -#~ msgid "10s" -#~ msgstr "10s" - -#~ msgid "none" -#~ msgstr "aucun" - -#~ msgid "TazPanel - Debug" -#~ msgstr "TazPanel - Debugage" - -#~ msgid "HTTP Environment" -#~ msgstr "Environnement HTTP" - -#~ msgid "TazPanel - System report" -#~ msgstr "TazPanel - Rapport système" - -#~ msgid "Reporting to: %s" -#~ msgstr "Création du rapport vers : %s" - -#~ msgid "Creating report header..." -#~ msgstr "Création de l'en-tête du rapport..." - -#~ msgid "SliTaz system report" -#~ msgstr "Rapport système" - -#~ msgid "Creating system summary..." -#~ msgstr "Création du résumé du système..." - -#~ msgid "Date:" -#~ msgstr "Date :" - -#~ msgid "Getting hardware info..." -#~ msgstr "Collecte d'informations sur le matériel..." - -#~ msgid "Getting networking info..." -#~ msgstr "Collecte d'informations sur le réseau..." - -#~ msgid "Getting filesystems info..." -#~ msgstr "Collecte d'informations sur les systèmes de fichiers..." - -#~ msgid "Getting boot logs..." -#~ msgstr "Collecte des journaux de démarrage..." - -#~ msgid "Creating report footer..." -#~ msgstr "Création du pied de page du rapport..." - #~ msgid "View report" #~ msgstr "Voir le rapport" -#~ msgid "This report can be attached with a bug report on:" -#~ msgstr "Ce rapport peut être attaché avec un rapport de bogue sur :" - #~ msgid "Host: %s" #~ msgstr "Nom d'hôte : %s" -#~ msgid "SliTaz administration and configuration Panel" -#~ msgstr "Panneau de Configuration et d'Administration de SliTaz" - -#~ msgid "Process activity" -#~ msgstr "Activité des processus" - -#~ msgid "Create a report" -#~ msgstr "Créer un rapport" - -#~ msgid "Uptime:" -#~ msgstr "Allumé depuis :" - -#~ msgid "Memory in Mb:" -#~ msgstr "Mémoire en Mb :" - -#~ msgid "Total: %d, Used: %d, Free: %d" -#~ msgstr "Total : %d, Utilisé : %d, Disponible : %d" - -#~ msgid "Linux kernel:" -#~ msgstr "Noyau Linux :" - -#~ msgid "Panel Activity" -#~ msgstr "Dernières actions" - #~ msgid "Quality" #~ msgstr "Qualité" @@ -1209,9 +1392,6 @@ #~ msgid "Disable" #~ msgstr "Désactiver" -#~ msgid "Manual Edit" -#~ msgstr "Édition manuelle" - #~ msgid "Wifi name (ESSID)" #~ msgstr "Nom du réseau (ESSID)" @@ -1227,27 +1407,8 @@ #~ msgid "Change hostname" #~ msgstr "Changer le nom de l'hôte" -#, fuzzy -#~ msgid "Output of ifconfig" -#~ msgstr "Sortie de la commande ifconfig" - -#~ msgid "Routing table" -#~ msgstr "Table de routage" - -#~ msgid "Domain name resolution" -#~ msgstr "Résolution de noms de domaines" - -#~ msgid "ARP table" -#~ msgstr "Table ARP" - -#~ msgid "IP Connections" -#~ msgstr "Connexions IP" - #~ msgid "Edit script" #~ msgstr "Éditer le script" #~ msgid "Console keymap" #~ msgstr "Type de clavier de la console" - -msgid "Tweaks" -msgstr "Réglages" diff -r f8ff472846c2 -r 3117717c007d po/pl.po --- a/po/pl.po Sat Jun 06 12:38:24 2015 +0200 +++ b/po/pl.po Mon Jun 08 04:32:19 2015 +0300 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: TazPanel 1.4.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-09 22:58+0200\n" +"POT-Creation-Date: 2015-06-05 20:42+0300\n" "PO-Revision-Date: 2013-07-23 12:33+0100\n" "Last-Translator: Paweł Pyrczak \n" "Language-Team: \n" @@ -21,105 +21,280 @@ "X-Poedit-Country: POLAND\n" "X-Poedit-SourceCharset: utf-8\n" -#: tazpanel:53 +#: tazpanel:52 msgid "TazPanel is already running." msgstr "TazPanel jest już uruchomiony." -#: tazpanel:56 +#: tazpanel:55 msgid "Starting TazPanel web server on port %d..." msgstr "Uruchamianie web serwera TazPanel na porcie %d..." -#: tazpanel:58 +#: tazpanel:57 msgid "TazPanel Authentication - Default: root:root" msgstr "Autoryzacja dostępu do TazPanel - domyślnie: root:root" -#: tazpanel:65 +#: tazpanel:64 msgid "TazPanel is not running." msgstr "TazPanel nie jest uruchomiony." -#: tazpanel:68 +#: tazpanel:67 msgid "Stopping TazPanel web server..." msgstr "Zatrzymywanie web serwera TazPanel..." -#: tazpanel:76 -msgid "Changing password for TazPanel" -msgstr "Zmienianie hasła do TazPanelu" - -#: tazpanel:77 -msgid "New password: " -msgstr "Nowe hasło: " - -#: tazpanel:79 -msgid "Password changed successfully" -msgstr "Hasło zmienione pomyślnie" - -#: index.cgi:37 index.cgi:131 +#: index.cgi:37 index.cgi:120 msgid "Differences" msgstr "Różnice/Zmiany" -#: index.cgi:88 -msgid "TazPanel - exec" -msgstr "TazPanel - exec" +#: index.cgi:76 +msgid "exec" +msgstr "exec" -#: index.cgi:120 -msgid "TazPanel - File" -msgstr "TazPanel - Plik" +#: index.cgi:109 +msgid "File" +msgstr "Plik" -#: index.cgi:130 index.cgi:149 +#: index.cgi:119 index.cgi:138 index.cgi:176 msgid "Save" msgstr "Zapisz" -#: index.cgi:184 network.cgi:262 network.cgi:553 network.cgi:621 boot.cgi:382 -#: hardware.cgi:467 settings.cgi:667 +#: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670 +#: network.cgi:720 boot.cgi:531 hardware.cgi:483 settings.cgi:766 msgid "Edit" msgstr "Edytuj" -#: index.cgi:228 -msgid "TazPanel - Terminal" -msgstr "TazPanel - Terminal" +#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:630 +#: styles/default/header.html:46 +msgid "Terminal" +msgstr "Terminal" -#: index.cgi:249 +#: index.cgi:246 index.cgi:331 #, fuzzy msgid "History" msgstr "Terytorium" -#: index.cgi:250 lib/libtazpanel:334 +#: index.cgi:247 lib/libtazpanel:348 msgid "Back" msgstr "" -#: index.cgi:256 +#: index.cgi:254 msgid "run" msgstr "" -#: index.cgi:271 +#: index.cgi:270 msgid "Clear" msgstr "" -#: network.cgi:15 -msgid "TazPanel - Network" -msgstr "TazPanel - Sieć" +#: index.cgi:294 +msgid "Small non-interactive terminal emulator." +msgstr "" -#: network.cgi:141 +#: index.cgi:295 +msgid "Run any command at your own risk, avoid interactive commands (%s)" +msgstr "" + +#: index.cgi:300 +msgid "Downloading to: %s" +msgstr "Pobieranie do: %s" + +#: index.cgi:309 +msgid "%s needs an argument" +msgstr "%s wymaga podania argumentu" + +#: index.cgi:312 +msgid "Please, don't run interactive command \"%s\"" +msgstr "" + +#: index.cgi:330 styles/default/header.html:98 +msgid "Settings" +msgstr "Ustawienia" + +#: index.cgi:400 +#, fuzzy +msgid "Terminal settings" +msgstr "Ustawienia Systemu" + +#: index.cgi:421 +msgid "Font:" +msgstr "" + +#: index.cgi:423 +#, fuzzy +msgid "Default" +msgstr "Domyślny wpis:" + +#: index.cgi:429 +msgid "Palette:" +msgstr "" + +#: index.cgi:435 +msgid "Apply" +msgstr "" + +#: index.cgi:445 index.cgi:631 +msgid "Process activity" +msgstr "Aktywność procesów" + +#: index.cgi:450 +msgid "Refresh:" +msgstr "Odświeżanie:" + +#: index.cgi:453 +msgid "1s" +msgstr "1s" + +#: index.cgi:455 +msgid "5s" +msgstr "5s" + +#: index.cgi:457 +msgid "10s" +msgstr "10s" + +#: index.cgi:459 +msgid "none" +msgstr "brak" + +#: index.cgi:473 +msgid "Debug" +msgstr "Debugowanie" + +#: index.cgi:476 +msgid "HTTP Environment" +msgstr "Środowisko HTTP" + +#: index.cgi:488 +msgid "System report" +msgstr "Raport systemu" + +#: index.cgi:495 +msgid "Reporting to: %s" +msgstr "Zapisywanie raportu do: %s" + +#: index.cgi:498 +msgid "Creating report header..." +msgstr "Tworzenie nagłówka raportu..." + +#: index.cgi:505 index.cgi:522 +msgid "SliTaz system report" +msgstr "SliTaz raport systemu" + +#: index.cgi:519 +msgid "Creating system summary..." +msgstr "Tworzenie podsumowania systemu..." + +#: index.cgi:523 +msgid "Date:" +msgstr "Data:" + +#: index.cgi:534 +msgid "Getting hardware info..." +msgstr "Pobieranie informacji o sprzęcie..." + +#: index.cgi:552 +msgid "Getting networking info..." +msgstr "Pobieranie informacji o sieciach..." + +#: index.cgi:566 +msgid "Getting filesystems info..." +msgstr "Pobieranie informacji o systemie plików..." + +#: index.cgi:586 +msgid "Getting boot logs..." +msgstr "Pobieranie logów uruchamiania..." + +#: index.cgi:589 boot.cgi:99 styles/default/header.html:74 +msgid "Kernel messages" +msgstr "Komunikaty Jadra Linux (Kernel messages)" + +#: index.cgi:592 boot.cgi:100 styles/default/header.html:75 +msgid "Boot scripts" +msgstr "Skrypty uruchamiania" + +#: index.cgi:597 +msgid "Creating report footer..." +msgstr "Tworzenie stopki raportu..." + +#: index.cgi:608 index.cgi:704 boot.cgi:510 boot.cgi:512 +msgid "View" +msgstr "" + +#: index.cgi:613 +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 +msgid "SliTaz administration and configuration Panel" +msgstr "Panel administracyjny i konfiguracyjny SliTaz" + +#: index.cgi:632 +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 +msgid "Summary" +msgstr "Podsumowanie" + +#: index.cgi:638 +#, fuzzy +msgid "Host:" +msgstr "Hosty" + +#: index.cgi:639 +msgid "Uptime:" +msgstr "Czas pracy (uptime):" + +#: index.cgi:642 +msgid "Memory in Mb:" +msgstr "Pamięć w Mb:" + +#: index.cgi:644 +msgid "Total: %d, Used: %d, Free: %d" +msgstr "Całkowita: %d, Użyta: %d, Wolna: %d" + +#: index.cgi:648 +msgid "Linux kernel:" +msgstr "Jądro Linux:" + +#: index.cgi:657 +#, fuzzy +msgid "Network status" +msgstr "Status sieci" + +#: index.cgi:659 network.cgi:15 network.cgi:215 styles/default/header.html:52 +msgid "Network" +msgstr "Sieć" + +#: index.cgi:668 hardware.cgi:340 +msgid "Filesystem usage statistics" +msgstr "Statystyka użycia systemu plików" + +#: index.cgi:670 styles/default/header.html:93 +msgid "Disks" +msgstr "Dyski" + +#: index.cgi:702 +msgid "Panel Activity" +msgstr "Aktywność Panelu" + +#: network.cgi:152 msgid "Changed hostname: %s" msgstr "Zmieniona nazwa hosta: %s" -#: network.cgi:164 +#: network.cgi:209 msgid "Scanning open ports..." msgstr "Skanowanie otwartych portów..." -#: network.cgi:169 +#: network.cgi:214 msgid "Port scanning for %s" msgstr "Skanowanie portów dla %s" -#: network.cgi:170 styles/default/header.html:33 -msgid "Network" -msgstr "Sieć" - -#: network.cgi:197 +#: network.cgi:225 msgid "Ethernet connection" msgstr "Połączenie przewodowe" -#: network.cgi:200 +#: 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" @@ -128,51 +303,80 @@ "automatycznie pobierać losowy adres IP, albo skonfigurować dla połączenia " "statyczny/stały adres IP" -#: network.cgi:204 boot.cgi:112 +#: network.cgi:247 boot.cgi:152 msgid "Configuration" msgstr "Konfiguracja" -#: network.cgi:209 lib/libtazpanel:154 +#: network.cgi:253 lib/libtazpanel:165 msgid "Interface" msgstr "Interfejs" -#: network.cgi:217 +#: network.cgi:261 msgid "Static IP" msgstr "" -#: network.cgi:219 +#: network.cgi:263 msgid "Use static IP" msgstr "" -#: network.cgi:221 +#: network.cgi:265 msgid "IP address" msgstr "Adres IP" -#: network.cgi:224 +#: network.cgi:268 msgid "Netmask" msgstr "Maska sieci" -#: network.cgi:227 +#: network.cgi:271 msgid "Gateway" msgstr "Brama sieci" -#: network.cgi:230 +#: network.cgi:274 msgid "DNS server" msgstr "Serwer DNS" -#: network.cgi:237 network.cgi:396 network.cgi:594 boot.cgi:244 +#: network.cgi:277 network.cgi:297 +msgid "Wake up" +msgstr "" + +#: network.cgi:279 +msgid "Wake up machines by network" +msgstr "" + +#: network.cgi:281 +msgid "MAC address to wake up" +msgstr "" + +#: network.cgi:282 network.cgi:287 +msgid "Leave empty for a general wakeup" +msgstr "" + +#: network.cgi:283 +msgid "List" +msgstr "" + +#: network.cgi:286 +#, fuzzy +msgid "MAC/IP address password" +msgstr "Zmień hasło" + +#: network.cgi:288 +msgid "Help" +msgstr "" + +#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:292 msgid "Start" msgstr "Start" -#: network.cgi:238 network.cgi:397 network.cgi:595 boot.cgi:233 +#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:281 msgid "Stop" msgstr "Stop" -#: network.cgi:257 network.cgi:548 +#: network.cgi:321 network.cgi:591 msgid "Configuration file" msgstr "Plik konfiguracyjny" -#: network.cgi:267 +#: network.cgi:331 msgid "" "These values are the ethernet settings in the main /etc/network.conf " "configuration file" @@ -180,108 +384,103 @@ "Poniższe wartości są ustawieniami sieci przewodowej w głównym pliku " "konfiguracyjnym /etc/network.conf" -#: network.cgi:279 +#: network.cgi:343 msgid "(hidden)" msgstr "" -#: network.cgi:285 boot.cgi:110 hardware.cgi:38 settings.cgi:375 -#: lib/libtazpanel:155 +#: network.cgi:349 boot.cgi:150 hardware.cgi:57 lib/libtazpanel:166 msgid "Name" msgstr "Nazwa" -#: network.cgi:286 +#: network.cgi:350 msgid "Signal level" msgstr "" -#: network.cgi:287 +#: network.cgi:351 #, fuzzy msgid "Channel" msgstr "Zmień" -#: network.cgi:288 +#: network.cgi:352 msgid "Encryption" msgstr "Szyfrowanie" -#: network.cgi:289 boot.cgi:113 lib/libtazpanel:156 +#: network.cgi:353 boot.cgi:153 lib/libtazpanel:167 msgid "Status" msgstr "Status" -#: network.cgi:340 network.cgi:436 network.cgi:458 +#: network.cgi:404 network.cgi:486 network.cgi:508 msgid "None" msgstr "" -#: network.cgi:353 +#: network.cgi:410 msgid "Connected" msgstr "Połączony" -#: network.cgi:383 +#: network.cgi:436 msgid "Wireless connection" msgstr "Połączenie bezprzewodowe" -#: network.cgi:398 lib/libtazpanel:139 +#: network.cgi:452 lib/libtazpanel:150 msgid "Scan" msgstr "Skanuj" -#: network.cgi:406 +#: network.cgi:460 msgid "Scanning wireless interface..." msgstr "Scanowanie interfejsu sieci bezprzewodowej..." -#: network.cgi:424 +#: network.cgi:474 msgid "Connection" msgstr "Połączenie" -#: network.cgi:430 +#: network.cgi:480 #, fuzzy msgid "Network SSID" msgstr "Sieć" -#: network.cgi:434 +#: network.cgi:484 msgid "Security" msgstr "" -#: network.cgi:445 +#: network.cgi:495 msgid "EAP method" msgstr "" -#: network.cgi:456 +#: network.cgi:506 msgid "Phase 2 authentication" msgstr "" -#: network.cgi:468 +#: network.cgi:518 msgid "CA certificate" msgstr "" -#: network.cgi:473 +#: network.cgi:523 msgid "User certificate" msgstr "" -#: network.cgi:478 +#: network.cgi:528 msgid "Identity" msgstr "" -#: network.cgi:483 +#: network.cgi:533 msgid "Anonymous identity" msgstr "" -#: network.cgi:488 +#: network.cgi:538 #, fuzzy msgid "Password" msgstr "Hasło:" -#: network.cgi:491 +#: network.cgi:541 #, fuzzy msgid "Show password" msgstr "Nowe hasło: " -#: network.cgi:501 -msgid "Access point" -msgstr "Punkt dostępowy" - -#: network.cgi:539 +#: network.cgi:582 msgid "Configure" msgstr "Konfiguruj" -#: network.cgi:558 +#: network.cgi:601 msgid "" "These values are the wifi settings in the main /etc/network.conf " "configuration file" @@ -289,580 +488,611 @@ "Poniższe wartości są ustawieniami sieci bezprzewodowej w głównym pliku " "konfiguracyjnym /etc/network.conf" -#: network.cgi:564 +#: network.cgi:607 msgid "Output of iwconfig" msgstr "Wyjście iwconfig" -#: network.cgi:587 -msgid "Networking" -msgstr "Sieć i połączenia sieciowe" - -#: network.cgi:589 +#: network.cgi:616 msgid "Manage network connections and services" msgstr "Zarządzanie połączeniami i usługami sieciowymi" -#: network.cgi:596 +#: network.cgi:635 msgid "Restart" msgstr "Restartuj" -#: network.cgi:600 +#: network.cgi:639 msgid "Configuration:" msgstr "Konfiguracja:" -#: network.cgi:608 +#: network.cgi:647 #, fuzzy msgid "Network interfaces" msgstr "Status sieci" -#: network.cgi:614 +#: network.cgi:654 +msgid "forward packets between interfaces" +msgstr "" + +#: network.cgi:656 network.cgi:690 boot.cgi:336 settings.cgi:608 +#: settings.cgi:722 +msgid "Change" +msgstr "Zmień" + +#: network.cgi:665 msgid "Hosts" msgstr "Hosty" -#: network.cgi:630 +#: network.cgi:682 msgid "Hostname" msgstr "Nazwa hosta" -#: boot.cgi:16 -msgid "TazPanel - Boot" -msgstr "TazPanel - Uruchamianie" +#: network.cgi:702 +msgid "Output of ifconfig" +msgstr "Wyjście ifconfig" + +#: network.cgi:708 +msgid "Routing table" +msgstr "Tablica Routingu" + +#: network.cgi:715 +msgid "Domain name resolution" +msgstr "Ustawienia DNS" + +#: network.cgi:730 +msgid "ARP table" +msgstr "Tablica ARP" + +#: network.cgi:750 +msgid "Proxy" +msgstr "" + +#: network.cgi:751 +msgid "Add" +msgstr "" + +#: network.cgi:764 +msgid "IP Connections" +msgstr "Połączenia IP" + +#: network.cgi:774 +msgid "Firewall" +msgstr "" + +#: boot.cgi:16 styles/default/header.html:62 +msgid "Boot" +msgstr "Uruchamianie" #: boot.cgi:27 msgid "Show more..." msgstr "Pokaż więcej..." -#: boot.cgi:56 +#: boot.cgi:45 boot.cgi:492 styles/default/header.html:80 +#, fuzzy +msgid "System logs" +msgstr "Język systemu" + +#: boot.cgi:96 msgid "Boot log files" msgstr "Logi uruchamiania" -#: boot.cgi:59 styles/default/header.html:53 -msgid "Kernel messages" -msgstr "Komunikaty Jadra Linux (Kernel messages)" - -#: boot.cgi:60 styles/default/header.html:54 -msgid "Boot scripts" -msgstr "Skrypty uruchamiania" - -#: boot.cgi:61 styles/default/header.html:55 +#: boot.cgi:101 styles/default/header.html:76 msgid "X server" msgstr "Serwer X" -#: boot.cgi:62 styles/default/header.html:56 +#: boot.cgi:102 styles/default/header.html:77 msgid "X session" msgstr "" -#: boot.cgi:84 boot.cgi:347 styles/default/header.html:59 +#: boot.cgi:124 boot.cgi:493 styles/default/header.html:81 msgid "Manage daemons" msgstr "Zarządzaj usługami (daemons)" -#: boot.cgi:86 +#: boot.cgi:126 msgid "Check, start and stop daemons on SliTaz" msgstr "Sprawdź, uruchom i wyłącz usługi (daemons) w SliTaz" -#: boot.cgi:111 hardware.cgi:153 settings.cgi:496 +#: boot.cgi:151 hardware.cgi:168 settings.cgi:434 msgid "Description" msgstr "Opis" -#: boot.cgi:114 +#: boot.cgi:154 msgid "Action" msgstr "Akcja" -#: boot.cgi:115 +#: boot.cgi:155 msgid "PID" msgstr "PID" -#: boot.cgi:138 +#: boot.cgi:180 msgid "SliTaz Firewall with iptable rules" msgstr "Firewall i ustawienia iptables w SliTaz" -#: boot.cgi:140 +#: boot.cgi:182 msgid "Small and fast web server with CGI support" msgstr "Niewielki i szybki serwer web z obsługą CGI" -#: boot.cgi:142 +#: boot.cgi:185 msgid "Network time protocol daemon" msgstr "Usługa protokołu czasu sieciowego (NTP)" -#: boot.cgi:145 +#: boot.cgi:188 msgid "Anonymous FTP server" msgstr "Annimowy serwer FTP" -#: boot.cgi:147 +#: boot.cgi:191 msgid "Busybox DHCP server" msgstr "Serwer DHCP Busybox" -#: boot.cgi:149 +#: boot.cgi:194 msgid "Linux Kernel log daemon" msgstr "Usługa logów Jadra Linux" -#: boot.cgi:152 +#: boot.cgi:197 msgid "Execute scheduled commands" msgstr "Wykonuje zaplanowane polecenia" -#: boot.cgi:155 +#: boot.cgi:200 msgid "Small static DNS server daemon" msgstr "Usługa statycznego, niewielkiego serwera DNS" -#: boot.cgi:158 +#: boot.cgi:203 msgid "Transfer a file on tftp request" msgstr "Przesyła pliki przy pomocy protokołu TFTP (np web boot)" -#: boot.cgi:160 +#: boot.cgi:206 +#, fuzzy +msgid "Printer daemon" +msgstr "Zarządzaj usługami (daemons)" + +#: boot.cgi:208 msgid "Listen for network connections and launch programs" msgstr "Nasłuchuje połączeń sieciowych i uruchamia odpowiednie usługi" -#: boot.cgi:163 +#: boot.cgi:211 msgid "Manage a ZeroConf IPv4 link-local address" msgstr "Zarządzaj ZeroConf IPv4 link-local address" -#: boot.cgi:232 +#: boot.cgi:280 msgid "Started" msgstr "Uruchomiony" -#: boot.cgi:243 +#: boot.cgi:291 msgid "Stopped" msgstr "Zatrzymany" -#: boot.cgi:270 +#: boot.cgi:318 msgid "GRUB Boot loader" msgstr "Boot loader GRUB" -#: boot.cgi:272 +#: boot.cgi:320 msgid "The first application started when the computer powers on" msgstr "Pierwsza aplikacja uruchamiana tuż po włączeniu komputera" -#: boot.cgi:279 +#: boot.cgi:327 msgid "Default entry:" msgstr "Domyślny wpis:" -#: boot.cgi:281 +#: boot.cgi:329 msgid "Timeout:" msgstr "Timeout:" -#: boot.cgi:283 +#: boot.cgi:331 msgid "Splash image:" msgstr "Obraz powitalny:" -#: boot.cgi:288 settings.cgi:557 settings.cgi:623 settings.cgi:694 -msgid "Change" -msgstr "Zmień" - -#: boot.cgi:295 +#: boot.cgi:343 msgid "View or edit menu.lst" msgstr "Zobacz albo edytuj menu.lst" -#: boot.cgi:300 +#: boot.cgi:348 msgid "Boot entries" msgstr "Wpisy boot" -#: boot.cgi:307 +#: boot.cgi:355 msgid "Entry" msgstr "Wpis" -#: boot.cgi:328 +#: boot.cgi:376 msgid "Web boot is available with gPXE" msgstr "Uruchamianie przez sieć jest dostępne poprzez gPXE" -#: boot.cgi:341 +#: boot.cgi:390 boot.cgi:496 styles/default/header.html:83 +msgid "ISO mine" +msgstr "" + +#: boot.cgi:486 msgid "Boot & Start services" msgstr "Uruchamianie i Start Usług" -#: boot.cgi:343 +#: boot.cgi:488 msgid "Everything that happens before user login" msgstr "Wszystko co się wydarzyło przed zalogowaniem uzytkownika" -#: boot.cgi:346 styles/default/header.html:51 +#: boot.cgi:491 styles/default/header.html:72 msgid "Boot logs" msgstr "Logi uruchamiania (boot)" -#: boot.cgi:350 styles/default/header.html:48 +#: boot.cgi:499 styles/default/header.html:68 msgid "Boot loader" msgstr "Program rozruchowy (boot loader)" -#: boot.cgi:357 +#: boot.cgi:506 msgid "Configuration files" msgstr "Pliki konfiguracyjne" -#: boot.cgi:360 +#: boot.cgi:509 msgid "Main configuration file:" msgstr "Główny plik konfiguracyjny:" -#: boot.cgi:361 boot.cgi:363 -msgid "View" -msgstr "" - -#: boot.cgi:362 +#: boot.cgi:511 msgid "Login manager settings:" msgstr "Ustawienia menadżera logowania:" -#: boot.cgi:370 +#: boot.cgi:519 msgid "Kernel cmdline" msgstr "Wiersz poleceń jądra" -#: boot.cgi:377 +#: boot.cgi:526 msgid "Local startup commands" msgstr "Lokalne polecenia podczas uruchamiania" -#: hardware.cgi:13 -msgid "TazPanel - Hardware" -msgstr "TazPanel - Sprzęt" +#: hardware.cgi:13 styles/default/header.html:88 +msgid "Hardware" +msgstr "Sprzęt" -#: hardware.cgi:35 +#: hardware.cgi:54 msgid "Bus" msgstr "" -#: hardware.cgi:36 hardware.cgi:509 +#: hardware.cgi:55 hardware.cgi:525 msgid "Device" msgstr "" -#: hardware.cgi:37 +#: hardware.cgi:56 #, fuzzy msgid "ID" msgstr "PID" -#: hardware.cgi:90 +#: hardware.cgi:108 msgid "Detect hardware" msgstr "Wykryj urządzenia" -#: hardware.cgi:91 +#: hardware.cgi:110 msgid "Detect PCI and USB hardware" msgstr "Wykryj urządzenia PCI i USB" -#: hardware.cgi:104 hardware.cgi:225 styles/default/header.html:67 +#: hardware.cgi:118 hardware.cgi:239 styles/default/header.html:91 msgid "Kernel modules" msgstr "Moduły jądra Linux" -#: hardware.cgi:105 +#: hardware.cgi:120 msgid "Manage, search or get information about the Linux kernel modules" msgstr "Zarządzaj, szukaj albo pobierz informacje na temat modułów jądra Linux" -#: hardware.cgi:109 +#: hardware.cgi:124 msgid "Modules search" msgstr "Szukaj moduły" -#: hardware.cgi:117 +#: hardware.cgi:132 msgid "Detailed information for module: %s" msgstr "Szczegółowe informacje dla modułu: %s" -#: hardware.cgi:137 +#: hardware.cgi:152 msgid "Matching result(s) for: %s" msgstr "Pasujące rezultat(y) dla: %s" -#: hardware.cgi:143 +#: hardware.cgi:158 msgid "Module:" msgstr "Moduł:" -#: hardware.cgi:152 +#: hardware.cgi:167 msgid "Module" msgstr "Moduł" -#: hardware.cgi:154 lib/libtazpanel:285 +#: hardware.cgi:169 hardware.cgi:527 lib/libtazpanel:295 msgid "Size" msgstr "Rozmiar" -#: hardware.cgi:155 hardware.cgi:563 lib/libtazpanel:287 +#: hardware.cgi:170 hardware.cgi:584 lib/libtazpanel:297 msgid "Used" msgstr "Używany" -#: hardware.cgi:156 +#: hardware.cgi:171 msgid "by" msgstr "przez" -#: hardware.cgi:180 +#: hardware.cgi:195 msgid "Information for USB Device %s" msgstr "Informacje i urządzeniu USB %s" -#: hardware.cgi:182 hardware.cgi:200 +#: hardware.cgi:197 hardware.cgi:215 msgid "Detailed information about specified device." msgstr "Szczegółowe informacje o wybranym urządzeniu." -#: hardware.cgi:198 +#: hardware.cgi:213 msgid "Information for PCI Device %s" msgstr "Informacje o urządzeniu PCI %s" -#: hardware.cgi:221 +#: hardware.cgi:234 msgid "Drivers & Devices" msgstr "Sterowniki i Urządzenia" -#: hardware.cgi:222 +#: hardware.cgi:236 msgid "Manage your computer hardware" msgstr "Zarządzanie sprzętem i podłączonymi urządzeniami" -#: hardware.cgi:226 styles/default/header.html:68 +#: hardware.cgi:240 styles/default/header.html:92 msgid "Detect PCI/USB" msgstr "Wykryj urządzenia PCI/USB" -#: hardware.cgi:227 +#: hardware.cgi:241 msgid "Auto-install Xorg video driver" msgstr "" -#: hardware.cgi:237 hardware.cgi:254 +#: hardware.cgi:251 hardware.cgi:268 msgid "Battery" msgstr "Bateria" -#: hardware.cgi:257 +#: hardware.cgi:271 msgid "health" msgstr "zużycie" -#: hardware.cgi:266 +#: hardware.cgi:280 msgid "Discharging %d%% - %s" msgstr "Rozładowywanie %d%% - %s" -#: hardware.cgi:270 -#, sh-format +#: hardware.cgi:284 msgid "Charging %d%% - %s" msgstr "Ładowanie %d%% - %s" -#: hardware.cgi:272 +#: hardware.cgi:286 #, fuzzy msgid "Charged 100%%" msgstr "Naładowana w 100%%" -#: hardware.cgi:291 +#: hardware.cgi:305 msgid "Temperature:" msgstr "Temperatura:" -#: hardware.cgi:306 +#: hardware.cgi:320 msgid "Brightness" msgstr "Jasność ekranu" -#: hardware.cgi:326 -msgid "Filesystem usage statistics" -msgstr "Statystyka użycia systemu plików" - -#: hardware.cgi:446 +#: hardware.cgi:462 #, fuzzy msgid "new mount point:" msgstr "Punkt montowania" -#: hardware.cgi:447 +#: hardware.cgi:463 msgid "read-only" msgstr "" -#: hardware.cgi:462 +#: hardware.cgi:478 msgid "Filesystems table" msgstr "Tabela systemów plików" -#: hardware.cgi:475 lib/libtazpanel:282 +#: hardware.cgi:491 lib/libtazpanel:292 msgid "Disk" msgstr "Dysk" -#: hardware.cgi:476 lib/libtazpanel:288 +#: hardware.cgi:492 lib/libtazpanel:298 msgid "Mount point" msgstr "Punkt montowania" -#: hardware.cgi:477 lib/libtazpanel:284 +#: hardware.cgi:493 lib/libtazpanel:294 msgid "Type" msgstr "Typ" -#: hardware.cgi:478 +#: hardware.cgi:494 #, fuzzy msgid "Options" msgstr "Akcja" -#: hardware.cgi:479 +#: hardware.cgi:495 msgid "Freq" msgstr "" -#: hardware.cgi:480 +#: hardware.cgi:496 #, fuzzy msgid "Pass" msgstr "Hasło:" -#: hardware.cgi:502 +#: hardware.cgi:518 msgid "Loop devices" msgstr "" -#: hardware.cgi:510 +#: hardware.cgi:526 #, fuzzy msgid "Backing file" msgstr "Plik konfiguracyjny" -#: hardware.cgi:511 +#: hardware.cgi:528 #, fuzzy msgid "Access" msgstr "Punkt dostępowy" -#: hardware.cgi:512 +#: hardware.cgi:529 msgid "Offset" msgstr "" -#: hardware.cgi:520 +#: hardware.cgi:538 msgid "read/write" msgstr "" -#: hardware.cgi:521 hardware.cgi:543 +#: hardware.cgi:539 hardware.cgi:564 msgid "read only" msgstr "" -#: hardware.cgi:540 +#: hardware.cgi:561 msgid "Setup" msgstr "" -#: hardware.cgi:541 +#: hardware.cgi:562 msgid "new backing file:" msgstr "" -#: hardware.cgi:542 +#: hardware.cgi:563 msgid "offset in bytes:" msgstr "" -#: hardware.cgi:560 +#: hardware.cgi:581 msgid "System memory" msgstr "Pamięć systemowa" -#: hardware.cgi:566 +#: hardware.cgi:587 msgid "Buffers" msgstr "" -#: hardware.cgi:569 +#: hardware.cgi:590 msgid "Free" msgstr "" -#: settings.cgi:17 -msgid "TazPanel - Settings" -msgstr "TazPanel - Ustawienia" +#: settings.cgi:16 +msgid "System settings" +msgstr "Ustawienia Systemu" -#: settings.cgi:83 -msgid "US" -msgstr "" +#: settings.cgi:82 settings.cgi:621 settings.cgi:648 settings.cgi:653 +msgid "Set date" +msgstr "Ustaw datę" -#: settings.cgi:85 -msgid "metric" -msgstr "" - -#: settings.cgi:266 settings.cgi:544 +#: settings.cgi:208 settings.cgi:595 msgid "Manage groups" msgstr "Zarządzaj grupami" -#: settings.cgi:273 settings.cgi:364 +#: settings.cgi:216 settings.cgi:293 msgid "Selection:" msgstr "Zaznaczone:" -#: settings.cgi:274 +#: settings.cgi:217 msgid "Delete group" msgstr "Usuń grupę" -#: settings.cgi:281 +#: settings.cgi:224 msgid "Group" msgstr "Grupa" -#: settings.cgi:282 +#: settings.cgi:225 msgid "Group ID" msgstr "ID Grupy" -#: settings.cgi:283 +#: settings.cgi:226 msgid "Members" msgstr "Członkowie" -#: settings.cgi:312 +#: settings.cgi:253 msgid "Add a new group" msgstr "Dodaj nową grupę" -#: settings.cgi:316 settings.cgi:333 +#: settings.cgi:256 settings.cgi:268 msgid "Group name:" msgstr "Nazwa Grupy:" -#: settings.cgi:320 +#: settings.cgi:257 msgid "Create group" msgstr "Utwórz grupę użytkowników" -#: settings.cgi:328 +#: settings.cgi:264 msgid "Manage group membership" msgstr "Zarządzaj grupą użytkowników" -#: settings.cgi:335 settings.cgi:427 +#: settings.cgi:269 settings.cgi:356 msgid "User name:" msgstr "Nazwa użytkownika:" -#: settings.cgi:340 +#: settings.cgi:272 msgid "Add user" msgstr "Dodaj użytkownika" -#: settings.cgi:343 +#: settings.cgi:273 msgid "Remove user" msgstr "Usuń użytkownika" -#: settings.cgi:359 settings.cgi:543 +#: settings.cgi:286 settings.cgi:594 msgid "Manage users" msgstr "Zarządzaj użytkownikami" -#: settings.cgi:365 +#: settings.cgi:294 msgid "Delete user" msgstr "Usuń uzytkownika" -#: settings.cgi:366 +#: settings.cgi:295 msgid "Lock user" msgstr "Zablokuj uzytkownika" -#: settings.cgi:367 +#: settings.cgi:296 msgid "Unlock user" msgstr "Odblokuj użytkownika" -#: settings.cgi:373 +#: settings.cgi:302 msgid "Login" msgstr "Login" -#: settings.cgi:374 +#: settings.cgi:303 msgid "User ID" msgstr "ID użytkownika" -#: settings.cgi:376 +#: settings.cgi:304 +#, fuzzy +msgid "User Name" +msgstr "Nazwa użytkownika:" + +#: settings.cgi:305 msgid "Home" msgstr "Katalog domowy" -#: settings.cgi:377 +#: settings.cgi:306 msgid "Shell" msgstr "Powłoka" -#: settings.cgi:410 +#: settings.cgi:340 msgid "Password:" msgstr "Hasło:" -#: settings.cgi:412 +#: settings.cgi:342 msgid "Change password" msgstr "Zmień hasło" -#: settings.cgi:420 +#: settings.cgi:349 msgid "Add a new user" msgstr "Dodaj nowego użytkownika" -#: settings.cgi:425 +#: settings.cgi:354 msgid "User login:" msgstr "Login użytkownika:" -#: settings.cgi:429 +#: settings.cgi:358 msgid "User password:" msgstr "Hasło użytkownika:" -#: settings.cgi:434 +#: settings.cgi:363 msgid "Create user" msgstr "Utwórz konto użytkownika" -#: settings.cgi:441 +#: settings.cgi:373 msgid "Current user sessions" msgstr "Aktualne sesje użytkowników" -#: settings.cgi:447 +#: settings.cgi:383 msgid "Last user sessions" msgstr "Ostatnie sesje użytkowników" -#: settings.cgi:458 +#: settings.cgi:395 +msgid "Choose locale" +msgstr "Wybierz lokalizację" + +#: settings.cgi:398 msgid "Please wait..." msgstr "Proszę czekać..." -#: settings.cgi:462 -msgid "Choose locale" -msgstr "Wybierz lokalizację" - -#: settings.cgi:465 +#: settings.cgi:403 msgid "Current locale settings:" msgstr "Aktualne ustawienia lokalizacji:" -#: settings.cgi:472 +#: settings.cgi:410 msgid "Locales that are currently installed on the machine:" msgstr "Lokalizacje aktualnie zainstalowane na komputerze:" -#: settings.cgi:482 +#: settings.cgi:420 #, fuzzy msgid "" "Can't see your language?
    You can zainstalować glibc-locale aby zobaczyć obszerniejszą listę " "dostępnych lokalizacji." -#: settings.cgi:489 +#: settings.cgi:427 msgid "Available locales:" msgstr "Dostępne lokalizacje:" -#: settings.cgi:493 +#: settings.cgi:431 msgid "Code" msgstr "Kod" -#: settings.cgi:494 +#: settings.cgi:432 msgid "Language" msgstr "Język" -#: settings.cgi:495 +#: settings.cgi:433 msgid "Territory" msgstr "Terytorium" -#: settings.cgi:512 settings.cgi:513 +#: settings.cgi:450 settings.cgi:451 msgid "-d" msgstr "-d" -#: settings.cgi:524 settings.cgi:666 settings.cgi:677 settings.cgi:689 +#: settings.cgi:462 settings.cgi:765 settings.cgi:776 settings.cgi:788 msgid "Activate" msgstr "Aktywuj" +#: settings.cgi:474 settings.cgi:497 +msgid "Small quick tweaks for user %s" +msgstr "" + +#: settings.cgi:500 +#, fuzzy +msgid "Terminal prompt" +msgstr "Terminal" + +#: settings.cgi:506 +msgid "Monochrome" +msgstr "" + +#: settings.cgi:515 +msgid "Colored" +msgstr "" + +#: settings.cgi:524 settings.cgi:572 +#, fuzzy +msgid "Manual edit: %s" +msgstr "Ręczna Edycja" + +#: settings.cgi:525 +msgid "" +"To take effect: log out and log in to system or execute command in the " +"terminal:" +msgstr "" + +#: settings.cgi:533 +msgid "Menu button appearance" +msgstr "" + #: settings.cgi:538 -msgid "System settings" -msgstr "Ustawienia Systemu" +msgid "Icon:" +msgstr "" -#: settings.cgi:540 +#: settings.cgi:541 settings.cgi:562 +msgid "Do not show" +msgstr "" + +#: settings.cgi:559 +msgid "Text:" +msgstr "" + +#: settings.cgi:566 +msgid "Show text" +msgstr "" + +#: settings.cgi:589 msgid "Manage system time, users or language settings" msgstr "" "Zarządzaj czasem systemowym, użytkownikami albo ustawieniami językowymi" -#: settings.cgi:548 +#: settings.cgi:599 msgid "System time" msgstr "Czas systemowy" -#: settings.cgi:551 +#: settings.cgi:602 msgid "Time zone:" msgstr "Strefa czasowa:" -#: settings.cgi:560 +#: settings.cgi:611 msgid "System time:" msgstr "Czas systemowy:" -#: settings.cgi:562 +#: settings.cgi:613 msgid "Sync online" msgstr "Synchronizuj online" -#: settings.cgi:565 +#: settings.cgi:616 msgid "Hardware clock:" msgstr "Zegar sprzętowy RTC:" -#: settings.cgi:567 +#: settings.cgi:618 msgid "Set hardware clock" msgstr "Ustaw zegar sprzętowy RTC" -#: settings.cgi:570 settings.cgi:582 -msgid "Set date" -msgstr "Ustaw datę" - -#: settings.cgi:605 +#: settings.cgi:704 msgid "System language" msgstr "Język systemu" -#: settings.cgi:618 +#: settings.cgi:717 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:621 +#: settings.cgi:720 msgid "Current system locale:" msgstr "Aktualne ustawienia regionalne systemu:" -#: settings.cgi:633 +#: settings.cgi:732 msgid "Keyboard layout" msgstr "" -#: settings.cgi:647 +#: settings.cgi:746 msgid "Current console keymap: %s" msgstr "Aktualny układ klawiatury dla konsoli: %s" -#: settings.cgi:665 +#: settings.cgi:764 msgid "Suggested keymap for Xorg:" msgstr "Sugerowany układ klawiatury dla Xorg:" -#: settings.cgi:673 +#: settings.cgi:772 msgid "Available keymaps:" msgstr "Dostępne układy klawiatury:" -#: settings.cgi:684 +#: settings.cgi:783 msgid "Panel configuration" msgstr "Konfiguracja Panelu" -#: settings.cgi:687 +#: settings.cgi:786 msgid "Style:" msgstr "Styl:" -#: settings.cgi:692 -msgid "Panel password:" -msgstr "Hasło do Panelu:" - -#: settings.cgi:698 +#: settings.cgi:792 msgid "Configuration files:" msgstr "Pliki konfiguracyjne:" -#: settings.cgi:699 styles/default/header.html:23 +#: settings.cgi:793 styles/default/header.html:42 msgid "Panel" msgstr "Panel" -#: settings.cgi:700 +#: settings.cgi:794 msgid "Server" msgstr "Serwer" -#: settings.cgi:703 +#: settings.cgi:797 #, fuzzy msgid "TazPanel provides a debugging mode and page:" msgstr "TazPanel udostępnia tryb debugowania i stronę:" -#: lib/libtazpanel:137 +#: lib/libtazpanel:153 msgid "connected" msgstr "połączony" -#: lib/libtazpanel:157 +#: lib/libtazpanel:168 msgid "IP Address" msgstr "Adres IP" -#: lib/libtazpanel:158 +#: lib/libtazpanel:169 msgid "Scan ports" msgstr "Skanuj porty" -#: lib/libtazpanel:283 +#: lib/libtazpanel:241 +#, fuzzy +msgid "Please wait" +msgstr "Proszę czekać..." + +#: lib/libtazpanel:293 msgid "Label" msgstr "Etykieta" -#: lib/libtazpanel:286 +#: lib/libtazpanel:296 msgid "Available" msgstr "Dostepny" -#: lib/libtazpanel:353 +#: lib/libtazpanel:367 msgid "You must be root to show this page." msgstr "" @@ -1022,188 +1293,103 @@ msgstr "Instrukcja" #: help.cgi:28 -msgid "TazPanel - Help & Doc" -msgstr "TazPanel - Pomoc i Dokumentacja" +msgid "Help & Doc" +msgstr "Pomoc i Dokumentacja" -#: styles/default/header.html:25 styles/default/header.html:35 -#: styles/default/header.html:45 styles/default/header.html:66 -#: styles/default/header.html:76 -msgid "Summary" -msgstr "Podsumowanie" +#: styles/default/header.html:32 +#, fuzzy +msgid "Confirm break" +msgstr "Konfiguruj" -#: styles/default/header.html:26 +#: styles/default/header.html:45 msgid "Processes" msgstr "Uruchomione procesy" -#: styles/default/header.html:27 -msgid "Terminal" -msgstr "Terminal" - -#: styles/default/header.html:28 +#: styles/default/header.html:47 msgid "Create Report" msgstr "Utwórz raport" -#: styles/default/header.html:36 +#: styles/default/header.html:55 msgid "Config file" msgstr "Plik konfiguracyjny" -#: styles/default/header.html:37 +#: styles/default/header.html:56 msgid "Ethernet" msgstr "Sieć przewodowa" -#: styles/default/header.html:38 +#: styles/default/header.html:57 msgid "Wireless" msgstr "Sieć bezprzewodowa" -#: styles/default/header.html:43 -msgid "Boot" -msgstr "Uruchamianie" - -#: styles/default/header.html:64 -msgid "Hardware" -msgstr "Sprzęt" - -#: styles/default/header.html:69 -msgid "Disks" -msgstr "Dyski" - -#: styles/default/header.html:74 -msgid "Settings" -msgstr "Ustawienia" - -#: styles/default/header.html:77 +#: styles/default/header.html:101 msgid "Users" msgstr "Użytkownicy" -#: styles/default/header.html:78 +#: styles/default/header.html:102 msgid "Groups" msgstr "Grupy" -#: styles/default/header.html:93 +#: styles/default/header.html:103 +msgid "Tweaks" +msgstr "" + +#: styles/default/header.html:119 msgid "Some features are disabled." msgstr "" -#: styles/default/header.html:98 +#: styles/default/header.html:124 msgid "You are logged in to the TazPanel as user %s." msgstr "" -#: styles/default/header.html:99 +#: styles/default/header.html:125 msgid "Click to re-login." msgstr "" -#: styles/default/footer.html:7 +#: styles/default/header.html:135 msgid "Copyright" msgstr "Copyright" -#: styles/default/footer.html:9 +#: styles/default/header.html:137 msgid "BSD License" msgstr "Licencja BSD" +#, fuzzy +#~ msgid "Groups management" +#~ msgstr "Nazwa Grupy:" + +#~ msgid "Networking" +#~ msgstr "Sieć i połączenia sieciowe" + +#~ 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" + +#~ msgid "Access point" +#~ msgstr "Punkt dostępowy" + +#~ msgid "Panel password:" +#~ msgstr "Hasło do Panelu:" + #~ msgid "Small terminal emulator, commands options are supported." #~ msgstr "Niewielki emulator terminala, opcje poleceń są obsługiwane." #~ msgid "Commands: %s" #~ msgstr "Polecenia: %s" -#~ msgid "Downloading to: %s" -#~ msgstr "Pobieranie do: %s" - -#~ msgid "%s needs an argument" -#~ msgstr "%s wymaga podania argumentu" - #~ msgid "Unknown command: %s" #~ msgstr "Nieznane polecenie: %s" -#~ msgid "TazPanel - Process activity" -#~ msgstr "TazPanel - Aktywność procesów" - -#~ msgid "Refresh:" -#~ msgstr "Odświeżanie:" - -#~ msgid "1s" -#~ msgstr "1s" - -#~ msgid "5s" -#~ msgstr "5s" - -#~ msgid "10s" -#~ msgstr "10s" - -#~ msgid "none" -#~ msgstr "brak" - -#~ msgid "TazPanel - Debug" -#~ msgstr "TazPanel - Debugowanie" - -#~ msgid "HTTP Environment" -#~ msgstr "Środowisko HTTP" - -#~ msgid "TazPanel - System report" -#~ msgstr "TazPanel - Raport systemu" - -#~ msgid "Reporting to: %s" -#~ msgstr "Zapisywanie raportu do: %s" - -#~ msgid "Creating report header..." -#~ msgstr "Tworzenie nagłówka raportu..." - -#~ msgid "SliTaz system report" -#~ msgstr "SliTaz raport systemu" - -#~ msgid "Creating system summary..." -#~ msgstr "Tworzenie podsumowania systemu..." - -#~ msgid "Date:" -#~ msgstr "Data:" - -#~ msgid "Getting hardware info..." -#~ msgstr "Pobieranie informacji o sprzęcie..." - -#~ msgid "Getting networking info..." -#~ msgstr "Pobieranie informacji o sieciach..." - -#~ msgid "Getting filesystems info..." -#~ msgstr "Pobieranie informacji o systemie plików..." - -#~ msgid "Getting boot logs..." -#~ msgstr "Pobieranie logów uruchamiania..." - -#~ msgid "Creating report footer..." -#~ msgstr "Tworzenie stopki raportu..." - #~ msgid "View report" #~ msgstr "Zobacz raport" -#~ 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:" - #~ msgid "Host: %s" #~ msgstr "Host: %s" -#~ msgid "SliTaz administration and configuration Panel" -#~ msgstr "Panel administracyjny i konfiguracyjny SliTaz" - -#~ msgid "Process activity" -#~ msgstr "Aktywność procesów" - -#~ msgid "Create a report" -#~ msgstr "Utwórz raport" - -#~ msgid "Uptime:" -#~ msgstr "Czas pracy (uptime):" - -#~ msgid "Memory in Mb:" -#~ msgstr "Pamięć w Mb:" - -#~ msgid "Total: %d, Used: %d, Free: %d" -#~ msgstr "Całkowita: %d, Użyta: %d, Wolna: %d" - -#~ msgid "Linux kernel:" -#~ msgstr "Jądro Linux:" - -#~ msgid "Panel Activity" -#~ msgstr "Aktywność Panelu" - #~ msgid "Quality" #~ msgstr "Jakość" @@ -1222,9 +1408,6 @@ #~ msgid "Disable" #~ msgstr "Deaktywuj" -#~ msgid "Manual Edit" -#~ msgstr "Ręczna Edycja" - #~ msgid "Wifi name (ESSID)" #~ msgstr "Nazwa Wifi (ESSID)" @@ -1240,21 +1423,6 @@ #~ msgid "Change hostname" #~ msgstr "Zmień nazwę hosta" -#~ msgid "Output of ifconfig" -#~ msgstr "Wyjście ifconfig" - -#~ msgid "Routing table" -#~ msgstr "Tablica Routingu" - -#~ msgid "Domain name resolution" -#~ msgstr "Ustawienia DNS" - -#~ msgid "ARP table" -#~ msgstr "Tablica ARP" - -#~ msgid "IP Connections" -#~ msgstr "Połączenia IP" - #~ msgid "Edit script" #~ msgstr "Edytuj skrypt" diff -r f8ff472846c2 -r 3117717c007d po/pt_BR.po --- a/po/pt_BR.po Sat Jun 06 12:38:24 2015 +0200 +++ b/po/pt_BR.po Mon Jun 08 04:32:19 2015 +0300 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: TazPanel 1.5.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-09 22:58+0200\n" +"POT-Creation-Date: 2015-06-05 20:42+0300\n" "PO-Revision-Date: 2014-03-06 22:24-0300\n" "Last-Translator: Claudinei Pereira , 2014\n" "Language-Team: Portuguese \n" @@ -17,105 +17,280 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: tazpanel:53 +#: tazpanel:52 msgid "TazPanel is already running." msgstr "TazPanel já está sendo executado." -#: tazpanel:56 +#: tazpanel:55 msgid "Starting TazPanel web server on port %d..." msgstr "Parando o servidor web do TazPanel na porta %d..." -#: tazpanel:58 +#: tazpanel:57 msgid "TazPanel Authentication - Default: root:root" msgstr "Autenticação do TazPanel - Padrão: root:root" -#: tazpanel:65 +#: tazpanel:64 msgid "TazPanel is not running." msgstr "TazPanel não está sendo executado." -#: tazpanel:68 +#: tazpanel:67 msgid "Stopping TazPanel web server..." msgstr "Parando o servidor web do TazPanel..." -#: tazpanel:76 -msgid "Changing password for TazPanel" -msgstr "Mudando a senha para o TazPanel" - -#: tazpanel:77 -msgid "New password: " -msgstr "Nova senha: " - -#: tazpanel:79 -msgid "Password changed successfully" -msgstr "Senha mudada com sucesso" - -#: index.cgi:37 index.cgi:131 +#: index.cgi:37 index.cgi:120 msgid "Differences" msgstr "Diferenças" -#: index.cgi:88 -msgid "TazPanel - exec" -msgstr "TazPanel - exec" +#: index.cgi:76 +msgid "exec" +msgstr "exec" -#: index.cgi:120 -msgid "TazPanel - File" -msgstr "TazPanel - Arquivo" +#: index.cgi:109 +msgid "File" +msgstr "Arquivo" -#: index.cgi:130 index.cgi:149 +#: index.cgi:119 index.cgi:138 index.cgi:176 msgid "Save" msgstr "Salvar" -#: index.cgi:184 network.cgi:262 network.cgi:553 network.cgi:621 boot.cgi:382 -#: hardware.cgi:467 settings.cgi:667 +#: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670 +#: network.cgi:720 boot.cgi:531 hardware.cgi:483 settings.cgi:766 msgid "Edit" msgstr "Editar" -#: index.cgi:228 -msgid "TazPanel - Terminal" -msgstr "TazPanel - Terminal" +#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:630 +#: styles/default/header.html:46 +msgid "Terminal" +msgstr "Terminal" -#: index.cgi:249 +#: index.cgi:246 index.cgi:331 #, fuzzy msgid "History" msgstr "Território" -#: index.cgi:250 lib/libtazpanel:334 +#: index.cgi:247 lib/libtazpanel:348 msgid "Back" msgstr "" -#: index.cgi:256 +#: index.cgi:254 msgid "run" msgstr "" -#: index.cgi:271 +#: index.cgi:270 msgid "Clear" msgstr "" -#: network.cgi:15 -msgid "TazPanel - Network" -msgstr "TazPanel - Rede" +#: index.cgi:294 +msgid "Small non-interactive terminal emulator." +msgstr "" -#: network.cgi:141 +#: index.cgi:295 +msgid "Run any command at your own risk, avoid interactive commands (%s)" +msgstr "" + +#: index.cgi:300 +msgid "Downloading to: %s" +msgstr "Baixando para: %s" + +#: index.cgi:309 +msgid "%s needs an argument" +msgstr "%s necessida de um argumento" + +#: index.cgi:312 +msgid "Please, don't run interactive command \"%s\"" +msgstr "" + +#: index.cgi:330 styles/default/header.html:98 +msgid "Settings" +msgstr "Configurações" + +#: index.cgi:400 +#, fuzzy +msgid "Terminal settings" +msgstr "Configurações do sistema" + +#: index.cgi:421 +msgid "Font:" +msgstr "" + +#: index.cgi:423 +#, fuzzy +msgid "Default" +msgstr "Entrada padrão:" + +#: index.cgi:429 +msgid "Palette:" +msgstr "" + +#: index.cgi:435 +msgid "Apply" +msgstr "" + +#: index.cgi:445 index.cgi:631 +msgid "Process activity" +msgstr "Atividade de processos" + +#: index.cgi:450 +msgid "Refresh:" +msgstr "Recarregar:" + +#: index.cgi:453 +msgid "1s" +msgstr "1s" + +#: index.cgi:455 +msgid "5s" +msgstr "5s" + +#: index.cgi:457 +msgid "10s" +msgstr "10s" + +#: index.cgi:459 +msgid "none" +msgstr "nenhum" + +#: index.cgi:473 +msgid "Debug" +msgstr "Debug" + +#: index.cgi:476 +msgid "HTTP Environment" +msgstr "Ambiente HTTP" + +#: index.cgi:488 +msgid "System report" +msgstr "Relatório do sistema" + +#: index.cgi:495 +msgid "Reporting to: %s" +msgstr "Reportando a: %s" + +#: index.cgi:498 +msgid "Creating report header..." +msgstr "Criando cabeçalho do relatório..." + +#: index.cgi:505 index.cgi:522 +msgid "SliTaz system report" +msgstr "Relatório do sistema" + +#: index.cgi:519 +msgid "Creating system summary..." +msgstr "Criando resumo do sistema..." + +#: index.cgi:523 +msgid "Date:" +msgstr "Data:" + +#: index.cgi:534 +msgid "Getting hardware info..." +msgstr "Obtendo informação do sistema..." + +#: index.cgi:552 +msgid "Getting networking info..." +msgstr "Obtendo informação da rede..." + +#: index.cgi:566 +msgid "Getting filesystems info..." +msgstr "Obtendo informação do sistema de arquivos..." + +#: index.cgi:586 +msgid "Getting boot logs..." +msgstr "Gerando logs de boot..." + +#: index.cgi:589 boot.cgi:99 styles/default/header.html:74 +msgid "Kernel messages" +msgstr "Mensagens do kernel" + +#: index.cgi:592 boot.cgi:100 styles/default/header.html:75 +msgid "Boot scripts" +msgstr "Scripts de boot" + +#: index.cgi:597 +msgid "Creating report footer..." +msgstr "Criando rodapé do relatório..." + +#: index.cgi:608 index.cgi:704 boot.cgi:510 boot.cgi:512 +msgid "View" +msgstr "" + +#: index.cgi:613 +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 +msgid "SliTaz administration and configuration Panel" +msgstr "Painel de configuração e administração do SliTaz" + +#: index.cgi:632 +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 +msgid "Summary" +msgstr "Sumário" + +#: index.cgi:638 +#, fuzzy +msgid "Host:" +msgstr "Hosts" + +#: index.cgi:639 +msgid "Uptime:" +msgstr "Uptime:" + +#: index.cgi:642 +msgid "Memory in Mb:" +msgstr "Memória em MB:" + +#: index.cgi:644 +msgid "Total: %d, Used: %d, Free: %d" +msgstr "Total: %d, Usada: %d, Livre: %d" + +#: index.cgi:648 +msgid "Linux kernel:" +msgstr "Kernel Linux:" + +#: index.cgi:657 +#, fuzzy +msgid "Network status" +msgstr "Status da Rede" + +#: index.cgi:659 network.cgi:15 network.cgi:215 styles/default/header.html:52 +msgid "Network" +msgstr "Rede" + +#: index.cgi:668 hardware.cgi:340 +msgid "Filesystem usage statistics" +msgstr "Estatísticas de utilização do sistema de arquivos" + +#: index.cgi:670 styles/default/header.html:93 +msgid "Disks" +msgstr "Discos" + +#: index.cgi:702 +msgid "Panel Activity" +msgstr "Atividade do painel" + +#: network.cgi:152 msgid "Changed hostname: %s" msgstr "Nome de host alterado: %s" -#: network.cgi:164 +#: network.cgi:209 msgid "Scanning open ports..." msgstr "Procurando portas abertas..." -#: network.cgi:169 +#: network.cgi:214 msgid "Port scanning for %s" msgstr "Procura de portas para %s" -#: network.cgi:170 styles/default/header.html:33 -msgid "Network" -msgstr "Rede" - -#: network.cgi:197 +#: network.cgi:225 msgid "Ethernet connection" msgstr "Conexão ethernet" -#: network.cgi:200 +#: 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" @@ -123,51 +298,80 @@ "Aqui você pode configurar conexões cabeadas usando DHCP para obter " "automaticamente um IP aleatório ou configurar um IP fixo" -#: network.cgi:204 boot.cgi:112 +#: network.cgi:247 boot.cgi:152 msgid "Configuration" msgstr "Configuração" -#: network.cgi:209 lib/libtazpanel:154 +#: network.cgi:253 lib/libtazpanel:165 msgid "Interface" msgstr "Interface" -#: network.cgi:217 +#: network.cgi:261 msgid "Static IP" msgstr "" -#: network.cgi:219 +#: network.cgi:263 msgid "Use static IP" msgstr "" -#: network.cgi:221 +#: network.cgi:265 msgid "IP address" msgstr "Endereço IP" -#: network.cgi:224 +#: network.cgi:268 msgid "Netmask" msgstr "Máscara de Rede" -#: network.cgi:227 +#: network.cgi:271 msgid "Gateway" msgstr "Gateway" -#: network.cgi:230 +#: network.cgi:274 msgid "DNS server" msgstr "Servidor DNS" -#: network.cgi:237 network.cgi:396 network.cgi:594 boot.cgi:244 +#: network.cgi:277 network.cgi:297 +msgid "Wake up" +msgstr "" + +#: network.cgi:279 +msgid "Wake up machines by network" +msgstr "" + +#: network.cgi:281 +msgid "MAC address to wake up" +msgstr "" + +#: network.cgi:282 network.cgi:287 +msgid "Leave empty for a general wakeup" +msgstr "" + +#: network.cgi:283 +msgid "List" +msgstr "" + +#: network.cgi:286 +#, fuzzy +msgid "MAC/IP address password" +msgstr "Alterar senha" + +#: network.cgi:288 +msgid "Help" +msgstr "" + +#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:292 msgid "Start" msgstr "Iniciar" -#: network.cgi:238 network.cgi:397 network.cgi:595 boot.cgi:233 +#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:281 msgid "Stop" msgstr "Parar" -#: network.cgi:257 network.cgi:548 +#: network.cgi:321 network.cgi:591 msgid "Configuration file" msgstr "Arquivo de configuração" -#: network.cgi:267 +#: network.cgi:331 msgid "" "These values are the ethernet settings in the main /etc/network.conf " "configuration file" @@ -175,108 +379,103 @@ "Esses valores são as configurações da rede ethernet no arquivo de " "configuração /etc/network.conf" -#: network.cgi:279 +#: network.cgi:343 msgid "(hidden)" msgstr "" -#: network.cgi:285 boot.cgi:110 hardware.cgi:38 settings.cgi:375 -#: lib/libtazpanel:155 +#: network.cgi:349 boot.cgi:150 hardware.cgi:57 lib/libtazpanel:166 msgid "Name" msgstr "Nome" -#: network.cgi:286 +#: network.cgi:350 msgid "Signal level" msgstr "" -#: network.cgi:287 +#: network.cgi:351 #, fuzzy msgid "Channel" msgstr "Alterar" -#: network.cgi:288 +#: network.cgi:352 msgid "Encryption" msgstr "Encriptação" -#: network.cgi:289 boot.cgi:113 lib/libtazpanel:156 +#: network.cgi:353 boot.cgi:153 lib/libtazpanel:167 msgid "Status" msgstr "Status" -#: network.cgi:340 network.cgi:436 network.cgi:458 +#: network.cgi:404 network.cgi:486 network.cgi:508 msgid "None" msgstr "" -#: network.cgi:353 +#: network.cgi:410 msgid "Connected" msgstr "Conectado" -#: network.cgi:383 +#: network.cgi:436 msgid "Wireless connection" msgstr "Conexões sem fio" -#: network.cgi:398 lib/libtazpanel:139 +#: network.cgi:452 lib/libtazpanel:150 msgid "Scan" msgstr "Procurar" -#: network.cgi:406 +#: network.cgi:460 msgid "Scanning wireless interface..." msgstr "Procurando interface sem fio..." -#: network.cgi:424 +#: network.cgi:474 msgid "Connection" msgstr "Conexão" -#: network.cgi:430 +#: network.cgi:480 #, fuzzy msgid "Network SSID" msgstr "Rede" -#: network.cgi:434 +#: network.cgi:484 msgid "Security" msgstr "" -#: network.cgi:445 +#: network.cgi:495 msgid "EAP method" msgstr "" -#: network.cgi:456 +#: network.cgi:506 msgid "Phase 2 authentication" msgstr "" -#: network.cgi:468 +#: network.cgi:518 msgid "CA certificate" msgstr "" -#: network.cgi:473 +#: network.cgi:523 msgid "User certificate" msgstr "" -#: network.cgi:478 +#: network.cgi:528 msgid "Identity" msgstr "" -#: network.cgi:483 +#: network.cgi:533 msgid "Anonymous identity" msgstr "" -#: network.cgi:488 +#: network.cgi:538 #, fuzzy msgid "Password" msgstr "Senha:" -#: network.cgi:491 +#: network.cgi:541 #, fuzzy msgid "Show password" msgstr "Nova senha: " -#: network.cgi:501 -msgid "Access point" -msgstr "Ponto de acesso" - -#: network.cgi:539 +#: network.cgi:582 msgid "Configure" msgstr "Configuração" -#: network.cgi:558 +#: network.cgi:601 msgid "" "These values are the wifi settings in the main /etc/network.conf " "configuration file" @@ -284,578 +483,609 @@ "Esses valores são as configurações da rede sem fio no arquivo de " "configuração /etc/network.conf" -#: network.cgi:564 +#: network.cgi:607 msgid "Output of iwconfig" msgstr "Saída do iwconfig" -#: network.cgi:587 -msgid "Networking" -msgstr "Rede" - -#: network.cgi:589 +#: network.cgi:616 msgid "Manage network connections and services" msgstr "Gerenciar serviços e conexões de rede" -#: network.cgi:596 +#: network.cgi:635 msgid "Restart" msgstr "Reiniciar" -#: network.cgi:600 +#: network.cgi:639 msgid "Configuration:" msgstr "Configuração:" -#: network.cgi:608 +#: network.cgi:647 #, fuzzy msgid "Network interfaces" msgstr "Status da Rede" -#: network.cgi:614 +#: network.cgi:654 +msgid "forward packets between interfaces" +msgstr "" + +#: network.cgi:656 network.cgi:690 boot.cgi:336 settings.cgi:608 +#: settings.cgi:722 +msgid "Change" +msgstr "Alterar" + +#: network.cgi:665 msgid "Hosts" msgstr "Hosts" -#: network.cgi:630 +#: network.cgi:682 msgid "Hostname" msgstr "Nome do host" -#: boot.cgi:16 -msgid "TazPanel - Boot" -msgstr "TazPanel - Boot" +#: network.cgi:702 +msgid "Output of ifconfig" +msgstr "Saída do ifconfig" + +#: network.cgi:708 +msgid "Routing table" +msgstr "Tabela de roteamento" + +#: network.cgi:715 +msgid "Domain name resolution" +msgstr "Resolução de nome de domínio" + +#: network.cgi:730 +msgid "ARP table" +msgstr "Tabela ARP" + +#: network.cgi:750 +msgid "Proxy" +msgstr "" + +#: network.cgi:751 +msgid "Add" +msgstr "" + +#: network.cgi:764 +msgid "IP Connections" +msgstr "Conexões IP" + +#: network.cgi:774 +msgid "Firewall" +msgstr "" + +#: boot.cgi:16 styles/default/header.html:62 +msgid "Boot" +msgstr "Boot" #: boot.cgi:27 msgid "Show more..." msgstr "Mostrar mais..." -#: boot.cgi:56 +#: boot.cgi:45 boot.cgi:492 styles/default/header.html:80 +#, fuzzy +msgid "System logs" +msgstr "Linguagem do sistema" + +#: boot.cgi:96 msgid "Boot log files" msgstr "Arquivos de log de boot" -#: boot.cgi:59 styles/default/header.html:53 -msgid "Kernel messages" -msgstr "Mensagens do kernel" - -#: boot.cgi:60 styles/default/header.html:54 -msgid "Boot scripts" -msgstr "Scripts de boot" - -#: boot.cgi:61 styles/default/header.html:55 +#: boot.cgi:101 styles/default/header.html:76 msgid "X server" msgstr "Servidor X" -#: boot.cgi:62 styles/default/header.html:56 +#: boot.cgi:102 styles/default/header.html:77 msgid "X session" msgstr "" -#: boot.cgi:84 boot.cgi:347 styles/default/header.html:59 +#: boot.cgi:124 boot.cgi:493 styles/default/header.html:81 msgid "Manage daemons" msgstr "Gerenciar daemons" -#: boot.cgi:86 +#: boot.cgi:126 msgid "Check, start and stop daemons on SliTaz" msgstr "Checar, iniciar e parar daemons no SliTaz" -#: boot.cgi:111 hardware.cgi:153 settings.cgi:496 +#: boot.cgi:151 hardware.cgi:168 settings.cgi:434 msgid "Description" msgstr "Descrição" -#: boot.cgi:114 +#: boot.cgi:154 msgid "Action" msgstr "Ação" -#: boot.cgi:115 +#: boot.cgi:155 msgid "PID" msgstr "PID" -#: boot.cgi:138 +#: boot.cgi:180 msgid "SliTaz Firewall with iptable rules" msgstr "Firewall do SliTaz com regras do iptables" -#: boot.cgi:140 +#: boot.cgi:182 msgid "Small and fast web server with CGI support" msgstr "Pequeno e rápido servidor web com suporte a CGI" -#: boot.cgi:142 +#: boot.cgi:185 msgid "Network time protocol daemon" msgstr "Daemon do protocolo de tempo de rede" -#: boot.cgi:145 +#: boot.cgi:188 msgid "Anonymous FTP server" msgstr "Servidor FTP anônimo" -#: boot.cgi:147 +#: boot.cgi:191 msgid "Busybox DHCP server" msgstr "Servidor DHCP do busybox" -#: boot.cgi:149 +#: boot.cgi:194 msgid "Linux Kernel log daemon" msgstr "Daemon de log do kernel Linux" -#: boot.cgi:152 +#: boot.cgi:197 msgid "Execute scheduled commands" msgstr "Executar comandos agendados" -#: boot.cgi:155 +#: boot.cgi:200 msgid "Small static DNS server daemon" msgstr "Daemon do pequeno servidor estático de DNS" -#: boot.cgi:158 +#: boot.cgi:203 msgid "Transfer a file on tftp request" msgstr "Transferir um arquivo por requisição tftp" -#: boot.cgi:160 +#: boot.cgi:206 +#, fuzzy +msgid "Printer daemon" +msgstr "Gerenciar daemons" + +#: boot.cgi:208 msgid "Listen for network connections and launch programs" msgstr "Esperar por uma conexão de rede e executa programas" -#: boot.cgi:163 +#: boot.cgi:211 msgid "Manage a ZeroConf IPv4 link-local address" msgstr "Gerencia um endereço IPv4 pelo ZeroConf" -#: boot.cgi:232 +#: boot.cgi:280 msgid "Started" msgstr "Iniciado" -#: boot.cgi:243 +#: boot.cgi:291 msgid "Stopped" msgstr "Parado" -#: boot.cgi:270 +#: boot.cgi:318 msgid "GRUB Boot loader" msgstr "Gerenciador de boot GRUB" -#: boot.cgi:272 +#: boot.cgi:320 msgid "The first application started when the computer powers on" msgstr "O primeiro aplicativo iniciado quando o computador é ligado" -#: boot.cgi:279 +#: boot.cgi:327 msgid "Default entry:" msgstr "Entrada padrão:" -#: boot.cgi:281 +#: boot.cgi:329 msgid "Timeout:" msgstr "Timeout:" -#: boot.cgi:283 +#: boot.cgi:331 msgid "Splash image:" msgstr "Splash image:" -#: boot.cgi:288 settings.cgi:557 settings.cgi:623 settings.cgi:694 -msgid "Change" -msgstr "Alterar" - -#: boot.cgi:295 +#: boot.cgi:343 msgid "View or edit menu.lst" msgstr "Ver ou alterar o menu.lst" -#: boot.cgi:300 +#: boot.cgi:348 msgid "Boot entries" msgstr "Entradas de boot" -#: boot.cgi:307 +#: boot.cgi:355 msgid "Entry" msgstr "Entrada" -#: boot.cgi:328 +#: boot.cgi:376 msgid "Web boot is available with gPXE" msgstr "Boot via web está disponível pelo gPXE" -#: boot.cgi:341 +#: boot.cgi:390 boot.cgi:496 styles/default/header.html:83 +msgid "ISO mine" +msgstr "" + +#: boot.cgi:486 msgid "Boot & Start services" msgstr "Serviços de Boot & inicialização" -#: boot.cgi:343 +#: boot.cgi:488 msgid "Everything that happens before user login" msgstr "Tudo o que ocorre antes do login de usuário" -#: boot.cgi:346 styles/default/header.html:51 +#: boot.cgi:491 styles/default/header.html:72 msgid "Boot logs" msgstr "Logs de boot" -#: boot.cgi:350 styles/default/header.html:48 +#: boot.cgi:499 styles/default/header.html:68 msgid "Boot loader" msgstr "Gerenciador de boot" -#: boot.cgi:357 +#: boot.cgi:506 msgid "Configuration files" msgstr "Arquivos de configuração" -#: boot.cgi:360 +#: boot.cgi:509 msgid "Main configuration file:" msgstr "Arquivo de configuração principal:" -#: boot.cgi:361 boot.cgi:363 -msgid "View" -msgstr "" - -#: boot.cgi:362 +#: boot.cgi:511 msgid "Login manager settings:" msgstr "Configurações do gerenciador de login:" -#: boot.cgi:370 +#: boot.cgi:519 msgid "Kernel cmdline" msgstr "Opções de linha de comando do kernel" -#: boot.cgi:377 +#: boot.cgi:526 msgid "Local startup commands" msgstr "Comandos de inicialização locais" -#: hardware.cgi:13 -msgid "TazPanel - Hardware" -msgstr "TazPanel - Hardware" +#: hardware.cgi:13 styles/default/header.html:88 +msgid "Hardware" +msgstr "Hardware" -#: hardware.cgi:35 +#: hardware.cgi:54 msgid "Bus" msgstr "" -#: hardware.cgi:36 hardware.cgi:509 +#: hardware.cgi:55 hardware.cgi:525 msgid "Device" msgstr "" -#: hardware.cgi:37 +#: hardware.cgi:56 #, fuzzy msgid "ID" msgstr "PID" -#: hardware.cgi:90 +#: hardware.cgi:108 msgid "Detect hardware" msgstr "Detectar hardware" -#: hardware.cgi:91 +#: hardware.cgi:110 msgid "Detect PCI and USB hardware" msgstr "Detectar hardware PCI e USB" -#: hardware.cgi:104 hardware.cgi:225 styles/default/header.html:67 +#: hardware.cgi:118 hardware.cgi:239 styles/default/header.html:91 msgid "Kernel modules" msgstr "Módulos de kernel" -#: hardware.cgi:105 +#: hardware.cgi:120 msgid "Manage, search or get information about the Linux kernel modules" msgstr "Gerenciar, buscar e obter informações sobre módulos do kernel linux" -#: hardware.cgi:109 +#: hardware.cgi:124 msgid "Modules search" msgstr "Busca de módulos" -#: hardware.cgi:117 +#: hardware.cgi:132 msgid "Detailed information for module: %s" msgstr "Informações detalhadas de módulo: %s" -#: hardware.cgi:137 +#: hardware.cgi:152 msgid "Matching result(s) for: %s" msgstr "Resultado(s) encontrado(s) para: %s" -#: hardware.cgi:143 +#: hardware.cgi:158 msgid "Module:" msgstr "Módulo:" -#: hardware.cgi:152 +#: hardware.cgi:167 msgid "Module" msgstr "Módulo" -#: hardware.cgi:154 lib/libtazpanel:285 +#: hardware.cgi:169 hardware.cgi:527 lib/libtazpanel:295 msgid "Size" msgstr "Tamanho" -#: hardware.cgi:155 hardware.cgi:563 lib/libtazpanel:287 +#: hardware.cgi:170 hardware.cgi:584 lib/libtazpanel:297 msgid "Used" msgstr "Usado" -#: hardware.cgi:156 +#: hardware.cgi:171 msgid "by" msgstr "por" -#: hardware.cgi:180 +#: hardware.cgi:195 msgid "Information for USB Device %s" msgstr "Informação sobre o dispositivo USB %s" -#: hardware.cgi:182 hardware.cgi:200 +#: hardware.cgi:197 hardware.cgi:215 msgid "Detailed information about specified device." msgstr "Informação detalhada sobre um dispositivo específico." -#: hardware.cgi:198 +#: hardware.cgi:213 msgid "Information for PCI Device %s" msgstr "Informação sobre o dispositivo PCI %s" -#: hardware.cgi:221 +#: hardware.cgi:234 msgid "Drivers & Devices" msgstr "Drivers & dispositivos" -#: hardware.cgi:222 +#: hardware.cgi:236 msgid "Manage your computer hardware" msgstr "Gerencie o hardware de seu computador" -#: hardware.cgi:226 styles/default/header.html:68 +#: hardware.cgi:240 styles/default/header.html:92 msgid "Detect PCI/USB" msgstr "Detectar PCI/USB" -#: hardware.cgi:227 +#: hardware.cgi:241 msgid "Auto-install Xorg video driver" msgstr "" -#: hardware.cgi:237 hardware.cgi:254 +#: hardware.cgi:251 hardware.cgi:268 msgid "Battery" msgstr "Bateria" -#: hardware.cgi:257 +#: hardware.cgi:271 msgid "health" msgstr "estado" -#: hardware.cgi:266 +#: hardware.cgi:280 msgid "Discharging %d%% - %s" msgstr "Descarregando %d%% - %s" -#: hardware.cgi:270 -#, sh-format +#: hardware.cgi:284 msgid "Charging %d%% - %s" msgstr "Carregando %d%% - %s" -#: hardware.cgi:272 +#: hardware.cgi:286 #, fuzzy msgid "Charged 100%%" msgstr "Carregada 100%%" -#: hardware.cgi:291 +#: hardware.cgi:305 msgid "Temperature:" msgstr "Temperatura:" -#: hardware.cgi:306 +#: hardware.cgi:320 msgid "Brightness" msgstr "Brilho" -#: hardware.cgi:326 -msgid "Filesystem usage statistics" -msgstr "Estatísticas de utilização do sistema de arquivos" - -#: hardware.cgi:446 +#: hardware.cgi:462 #, fuzzy msgid "new mount point:" msgstr "Ponto de montagem" -#: hardware.cgi:447 +#: hardware.cgi:463 msgid "read-only" msgstr "" -#: hardware.cgi:462 +#: hardware.cgi:478 msgid "Filesystems table" msgstr "Tabela do sistema de arquivos" -#: hardware.cgi:475 lib/libtazpanel:282 +#: hardware.cgi:491 lib/libtazpanel:292 msgid "Disk" msgstr "Disco" -#: hardware.cgi:476 lib/libtazpanel:288 +#: hardware.cgi:492 lib/libtazpanel:298 msgid "Mount point" msgstr "Ponto de montagem" -#: hardware.cgi:477 lib/libtazpanel:284 +#: hardware.cgi:493 lib/libtazpanel:294 msgid "Type" msgstr "Tipo" -#: hardware.cgi:478 +#: hardware.cgi:494 msgid "Options" msgstr "Opções" -#: hardware.cgi:479 +#: hardware.cgi:495 msgid "Freq" msgstr "Freq" -#: hardware.cgi:480 +#: hardware.cgi:496 msgid "Pass" msgstr "Senha" -#: hardware.cgi:502 +#: hardware.cgi:518 msgid "Loop devices" msgstr "Dispositivos em loop" -#: hardware.cgi:510 +#: hardware.cgi:526 #, fuzzy msgid "Backing file" msgstr "Arquivo de configuração" -#: hardware.cgi:511 +#: hardware.cgi:528 #, fuzzy msgid "Access" msgstr "Ponto de acesso" -#: hardware.cgi:512 +#: hardware.cgi:529 msgid "Offset" msgstr "" -#: hardware.cgi:520 +#: hardware.cgi:538 msgid "read/write" msgstr "" -#: hardware.cgi:521 hardware.cgi:543 +#: hardware.cgi:539 hardware.cgi:564 msgid "read only" msgstr "" -#: hardware.cgi:540 +#: hardware.cgi:561 msgid "Setup" msgstr "" -#: hardware.cgi:541 +#: hardware.cgi:562 msgid "new backing file:" msgstr "" -#: hardware.cgi:542 +#: hardware.cgi:563 msgid "offset in bytes:" msgstr "" -#: hardware.cgi:560 +#: hardware.cgi:581 msgid "System memory" msgstr "Memória do sistema" -#: hardware.cgi:566 +#: hardware.cgi:587 msgid "Buffers" msgstr "" -#: hardware.cgi:569 +#: hardware.cgi:590 msgid "Free" msgstr "" -#: settings.cgi:17 -msgid "TazPanel - Settings" -msgstr "TazPanel - Configurações" +#: settings.cgi:16 +msgid "System settings" +msgstr "Configurações do sistema" -#: settings.cgi:83 -msgid "US" -msgstr "" +#: settings.cgi:82 settings.cgi:621 settings.cgi:648 settings.cgi:653 +msgid "Set date" +msgstr "Configurar data" -#: settings.cgi:85 -msgid "metric" -msgstr "" - -#: settings.cgi:266 settings.cgi:544 +#: settings.cgi:208 settings.cgi:595 msgid "Manage groups" msgstr "Gerenciar grupos" -#: settings.cgi:273 settings.cgi:364 +#: settings.cgi:216 settings.cgi:293 msgid "Selection:" msgstr "Seleção:" -#: settings.cgi:274 +#: settings.cgi:217 msgid "Delete group" msgstr "Deletar grupo" -#: settings.cgi:281 +#: settings.cgi:224 msgid "Group" msgstr "Grupo" -#: settings.cgi:282 +#: settings.cgi:225 msgid "Group ID" msgstr "ID do Grupo" -#: settings.cgi:283 +#: settings.cgi:226 msgid "Members" msgstr "Membros" -#: settings.cgi:312 +#: settings.cgi:253 msgid "Add a new group" msgstr "Adicionar um novo grupo" -#: settings.cgi:316 settings.cgi:333 +#: settings.cgi:256 settings.cgi:268 msgid "Group name:" msgstr "Nome do grupo:" -#: settings.cgi:320 +#: settings.cgi:257 msgid "Create group" msgstr "Criar grupo" -#: settings.cgi:328 +#: settings.cgi:264 msgid "Manage group membership" msgstr "Gerenciar membros do grupo" -#: settings.cgi:335 settings.cgi:427 +#: settings.cgi:269 settings.cgi:356 msgid "User name:" msgstr "Nome de usuário:" -#: settings.cgi:340 +#: settings.cgi:272 msgid "Add user" msgstr "Adicionar usuário" -#: settings.cgi:343 +#: settings.cgi:273 msgid "Remove user" msgstr "Remover usuário" -#: settings.cgi:359 settings.cgi:543 +#: settings.cgi:286 settings.cgi:594 msgid "Manage users" msgstr "Gerenciar usuários" -#: settings.cgi:365 +#: settings.cgi:294 msgid "Delete user" msgstr "Deletar usuário" -#: settings.cgi:366 +#: settings.cgi:295 msgid "Lock user" msgstr "Bloquear usuário" -#: settings.cgi:367 +#: settings.cgi:296 msgid "Unlock user" msgstr "Desbloquear usuário" -#: settings.cgi:373 +#: settings.cgi:302 msgid "Login" msgstr "Login" -#: settings.cgi:374 +#: settings.cgi:303 msgid "User ID" msgstr "ID de usuário" -#: settings.cgi:376 +#: settings.cgi:304 +#, fuzzy +msgid "User Name" +msgstr "Nome de usuário:" + +#: settings.cgi:305 msgid "Home" msgstr "Diretório Home" -#: settings.cgi:377 +#: settings.cgi:306 msgid "Shell" msgstr "Shell" -#: settings.cgi:410 +#: settings.cgi:340 msgid "Password:" msgstr "Senha:" -#: settings.cgi:412 +#: settings.cgi:342 msgid "Change password" msgstr "Alterar senha" -#: settings.cgi:420 +#: settings.cgi:349 msgid "Add a new user" msgstr "Adicionar um novo usuário" -#: settings.cgi:425 +#: settings.cgi:354 msgid "User login:" msgstr "Login do usuário:" -#: settings.cgi:429 +#: settings.cgi:358 msgid "User password:" msgstr "Senha do usuário:" -#: settings.cgi:434 +#: settings.cgi:363 msgid "Create user" msgstr "Criar usuário" -#: settings.cgi:441 +#: settings.cgi:373 msgid "Current user sessions" msgstr "Sessões do usuário atual" -#: settings.cgi:447 +#: settings.cgi:383 msgid "Last user sessions" msgstr "Sessões do último usuário" -#: settings.cgi:458 +#: settings.cgi:395 +msgid "Choose locale" +msgstr "Escolher locale" + +#: settings.cgi:398 msgid "Please wait..." msgstr "Favor aguardar..." -#: settings.cgi:462 -msgid "Choose locale" -msgstr "Escolher locale" - -#: settings.cgi:465 +#: settings.cgi:403 msgid "Current locale settings:" msgstr "Configuração atual de locale:" -#: settings.cgi:472 +#: settings.cgi:410 msgid "Locales that are currently installed on the machine:" msgstr "Locales instalados na máquina:" -#: settings.cgi:482 +#: settings.cgi:420 #, fuzzy msgid "" "Can't see your language?
    You can glibc-locale para obter uma listagem maior de " "locales." -#: settings.cgi:489 +#: settings.cgi:427 msgid "Available locales:" msgstr "Locales disponíveis:" -#: settings.cgi:493 +#: settings.cgi:431 msgid "Code" msgstr "Código" -#: settings.cgi:494 +#: settings.cgi:432 msgid "Language" msgstr "Linguagem" -#: settings.cgi:495 +#: settings.cgi:433 msgid "Territory" msgstr "Território" -#: settings.cgi:512 settings.cgi:513 +#: settings.cgi:450 settings.cgi:451 msgid "-d" msgstr "-d" -#: settings.cgi:524 settings.cgi:666 settings.cgi:677 settings.cgi:689 +#: settings.cgi:462 settings.cgi:765 settings.cgi:776 settings.cgi:788 msgid "Activate" msgstr "Ativar" +#: settings.cgi:474 settings.cgi:497 +msgid "Small quick tweaks for user %s" +msgstr "" + +#: settings.cgi:500 +#, fuzzy +msgid "Terminal prompt" +msgstr "Terminal" + +#: settings.cgi:506 +msgid "Monochrome" +msgstr "" + +#: settings.cgi:515 +msgid "Colored" +msgstr "" + +#: settings.cgi:524 settings.cgi:572 +#, fuzzy +msgid "Manual edit: %s" +msgstr "Edição manual" + +#: settings.cgi:525 +msgid "" +"To take effect: log out and log in to system or execute command in the " +"terminal:" +msgstr "" + +#: settings.cgi:533 +msgid "Menu button appearance" +msgstr "" + #: settings.cgi:538 -msgid "System settings" -msgstr "Configurações do sistema" +msgid "Icon:" +msgstr "" -#: settings.cgi:540 +#: settings.cgi:541 settings.cgi:562 +msgid "Do not show" +msgstr "" + +#: settings.cgi:559 +msgid "Text:" +msgstr "" + +#: settings.cgi:566 +msgid "Show text" +msgstr "" + +#: settings.cgi:589 msgid "Manage system time, users or language settings" msgstr "Gerencie configurações do tempo do sistema, usuários e linguagem" -#: settings.cgi:548 +#: settings.cgi:599 msgid "System time" msgstr "Tempo do sistema" -#: settings.cgi:551 +#: settings.cgi:602 msgid "Time zone:" msgstr "Zona horária:" -#: settings.cgi:560 +#: settings.cgi:611 msgid "System time:" msgstr "Tempo do sistema:" -#: settings.cgi:562 +#: settings.cgi:613 msgid "Sync online" msgstr "Sincronização online" -#: settings.cgi:565 +#: settings.cgi:616 msgid "Hardware clock:" msgstr "Relógio de hardware:" -#: settings.cgi:567 +#: settings.cgi:618 msgid "Set hardware clock" msgstr "Configurar relógio do hardware" -#: settings.cgi:570 settings.cgi:582 -msgid "Set date" -msgstr "Configurar data" - -#: settings.cgi:605 +#: settings.cgi:704 msgid "System language" msgstr "Linguagem do sistema" -#: settings.cgi:618 +#: settings.cgi:717 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:621 +#: settings.cgi:720 msgid "Current system locale:" msgstr "Locale da sessão atual:" -#: settings.cgi:633 +#: settings.cgi:732 msgid "Keyboard layout" msgstr "" -#: settings.cgi:647 +#: settings.cgi:746 msgid "Current console keymap: %s" msgstr "Mapa de teclado do console atual: %s" -#: settings.cgi:665 +#: settings.cgi:764 msgid "Suggested keymap for Xorg:" msgstr "Mapa de teclado sugerido para o Xorg:" -#: settings.cgi:673 +#: settings.cgi:772 msgid "Available keymaps:" msgstr "Mapa de teclado disponíveis:" -#: settings.cgi:684 +#: settings.cgi:783 msgid "Panel configuration" msgstr "Configuração do Painel" -#: settings.cgi:687 +#: settings.cgi:786 msgid "Style:" msgstr "Estilo:" -#: settings.cgi:692 -msgid "Panel password:" -msgstr "Senha do painel:" - -#: settings.cgi:698 +#: settings.cgi:792 msgid "Configuration files:" msgstr "Arquivos de configuração:" -#: settings.cgi:699 styles/default/header.html:23 +#: settings.cgi:793 styles/default/header.html:42 msgid "Panel" msgstr "Painel" -#: settings.cgi:700 +#: settings.cgi:794 msgid "Server" msgstr "Servidor" -#: settings.cgi:703 +#: settings.cgi:797 msgid "TazPanel provides a debugging mode and page:" msgstr "O TazPanel oferece um modo de debug e uma página dedicada:" -#: lib/libtazpanel:137 +#: lib/libtazpanel:153 msgid "connected" msgstr "Conectado" -#: lib/libtazpanel:157 +#: lib/libtazpanel:168 msgid "IP Address" msgstr "Endereço IP" -#: lib/libtazpanel:158 +#: lib/libtazpanel:169 msgid "Scan ports" msgstr "Buscar portas" -#: lib/libtazpanel:283 +#: lib/libtazpanel:241 +#, fuzzy +msgid "Please wait" +msgstr "Favor aguardar..." + +#: lib/libtazpanel:293 msgid "Label" msgstr "Rótulo" -#: lib/libtazpanel:286 +#: lib/libtazpanel:296 msgid "Available" msgstr "Disponível" -#: lib/libtazpanel:353 +#: lib/libtazpanel:367 msgid "You must be root to show this page." msgstr "" @@ -1011,188 +1282,103 @@ msgstr "Manual" #: help.cgi:28 -msgid "TazPanel - Help & Doc" -msgstr "TazPanel - Ajuda & Doc" +msgid "Help & Doc" +msgstr "Ajuda & Doc" -#: styles/default/header.html:25 styles/default/header.html:35 -#: styles/default/header.html:45 styles/default/header.html:66 -#: styles/default/header.html:76 -msgid "Summary" -msgstr "Sumário" +#: styles/default/header.html:32 +#, fuzzy +msgid "Confirm break" +msgstr "Configuração" -#: styles/default/header.html:26 +#: styles/default/header.html:45 msgid "Processes" msgstr "Processos" -#: styles/default/header.html:27 -msgid "Terminal" -msgstr "Terminal" - -#: styles/default/header.html:28 +#: styles/default/header.html:47 msgid "Create Report" msgstr "Criar relatório" -#: styles/default/header.html:36 +#: styles/default/header.html:55 msgid "Config file" msgstr "Arquivo de configuração" -#: styles/default/header.html:37 +#: styles/default/header.html:56 msgid "Ethernet" msgstr "Ethernet" -#: styles/default/header.html:38 +#: styles/default/header.html:57 msgid "Wireless" msgstr "Redes sem fio" -#: styles/default/header.html:43 -msgid "Boot" -msgstr "Boot" - -#: styles/default/header.html:64 -msgid "Hardware" -msgstr "Hardware" - -#: styles/default/header.html:69 -msgid "Disks" -msgstr "Discos" - -#: styles/default/header.html:74 -msgid "Settings" -msgstr "Configurações" - -#: styles/default/header.html:77 +#: styles/default/header.html:101 msgid "Users" msgstr "Usuários" -#: styles/default/header.html:78 +#: styles/default/header.html:102 msgid "Groups" msgstr "Grupos" -#: styles/default/header.html:93 +#: styles/default/header.html:103 +msgid "Tweaks" +msgstr "" + +#: styles/default/header.html:119 msgid "Some features are disabled." msgstr "" -#: styles/default/header.html:98 +#: styles/default/header.html:124 msgid "You are logged in to the TazPanel as user %s." msgstr "" -#: styles/default/header.html:99 +#: styles/default/header.html:125 msgid "Click to re-login." msgstr "" -#: styles/default/footer.html:7 +#: styles/default/header.html:135 msgid "Copyright" msgstr "Copyright" -#: styles/default/footer.html:9 +#: styles/default/header.html:137 msgid "BSD License" msgstr "BSD License" +#, fuzzy +#~ msgid "Groups management" +#~ msgstr "Nome do grupo:" + +#~ msgid "Networking" +#~ msgstr "Rede" + +#~ 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" + +#~ msgid "Access point" +#~ msgstr "Ponto de acesso" + +#~ msgid "Panel password:" +#~ msgstr "Senha do painel:" + #~ msgid "Small terminal emulator, commands options are supported." #~ msgstr "Pequeno emulador de terminal, opções de comandos são suportadas." #~ msgid "Commands: %s" #~ msgstr "Comandos: %s" -#~ msgid "Downloading to: %s" -#~ msgstr "Baixando para: %s" - -#~ msgid "%s needs an argument" -#~ msgstr "%s necessida de um argumento" - #~ msgid "Unknown command: %s" #~ msgstr "Comando desconhecido: %s" -#~ msgid "TazPanel - Process activity" -#~ msgstr "TazPanel - Atividade de processos" - -#~ msgid "Refresh:" -#~ msgstr "Recarregar:" - -#~ msgid "1s" -#~ msgstr "1s" - -#~ msgid "5s" -#~ msgstr "5s" - -#~ msgid "10s" -#~ msgstr "10s" - -#~ msgid "none" -#~ msgstr "nenhum" - -#~ msgid "TazPanel - Debug" -#~ msgstr "TazPanel - Debug" - -#~ msgid "HTTP Environment" -#~ msgstr "Ambiente HTTP" - -#~ msgid "TazPanel - System report" -#~ msgstr "TazPanel - Relatório do sistema" - -#~ msgid "Reporting to: %s" -#~ msgstr "Reportando a: %s" - -#~ msgid "Creating report header..." -#~ msgstr "Criando cabeçalho do relatório..." - -#~ msgid "SliTaz system report" -#~ msgstr "Relatório do sistema" - -#~ msgid "Creating system summary..." -#~ msgstr "Criando resumo do sistema..." - -#~ msgid "Date:" -#~ msgstr "Data:" - -#~ msgid "Getting hardware info..." -#~ msgstr "Obtendo informação do sistema..." - -#~ msgid "Getting networking info..." -#~ msgstr "Obtendo informação da rede..." - -#~ msgid "Getting filesystems info..." -#~ msgstr "Obtendo informação do sistema de arquivos..." - -#~ msgid "Getting boot logs..." -#~ msgstr "Gerando logs de boot..." - -#~ msgid "Creating report footer..." -#~ msgstr "Criando rodapé do relatório..." - #~ msgid "View report" #~ msgstr "Ver relatório" -#~ msgid "This report can be attached with a bug report on:" -#~ msgstr "Este relatório pode ser anexado a um aviso de bug em:" - #~ msgid "Host: %s" #~ msgstr "Nome do host: %s" -#~ msgid "SliTaz administration and configuration Panel" -#~ msgstr "Painel de configuração e administração do SliTaz" - -#~ msgid "Process activity" -#~ msgstr "Atividade de processos" - -#~ msgid "Create a report" -#~ msgstr "Criar relatório" - -#~ msgid "Uptime:" -#~ msgstr "Uptime:" - -#~ msgid "Memory in Mb:" -#~ msgstr "Memória em MB:" - -#~ msgid "Total: %d, Used: %d, Free: %d" -#~ msgstr "Total: %d, Usada: %d, Livre: %d" - -#~ msgid "Linux kernel:" -#~ msgstr "Kernel Linux:" - -#~ msgid "Panel Activity" -#~ msgstr "Atividade do painel" - #~ msgid "Quality" #~ msgstr "Qualidade" @@ -1211,9 +1397,6 @@ #~ msgid "Disable" #~ msgstr "Desabilitar" -#~ msgid "Manual Edit" -#~ msgstr "Edição manual" - #~ msgid "Wifi name (ESSID)" #~ msgstr "ESSID da rede sem fio" @@ -1229,21 +1412,6 @@ #~ msgid "Change hostname" #~ msgstr "Mudar nome do host" -#~ msgid "Output of ifconfig" -#~ msgstr "Saída do ifconfig" - -#~ msgid "Routing table" -#~ msgstr "Tabela de roteamento" - -#~ msgid "Domain name resolution" -#~ msgstr "Resolução de nome de domínio" - -#~ msgid "ARP table" -#~ msgstr "Tabela ARP" - -#~ msgid "IP Connections" -#~ msgstr "Conexões IP" - #~ msgid "Edit script" #~ msgstr "Editar script" diff -r f8ff472846c2 -r 3117717c007d po/ru.po --- a/po/ru.po Sat Jun 06 12:38:24 2015 +0200 +++ b/po/ru.po Mon Jun 08 04:32:19 2015 +0300 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: TazPanel 1.5.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-09 22:58+0200\n" -"PO-Revision-Date: 2015-04-10 01:27+0300\n" +"POT-Creation-Date: 2015-06-05 20:42+0300\n" +"PO-Revision-Date: 2015-06-05 19:00+0300\n" "Last-Translator: Aleksej Bobylev \n" "Language-Team: \n" "Language: ru\n" @@ -20,1026 +20,1247 @@ "X-Poedit-Basepath: ../\n" "X-Poedit-SearchPath-0: .\n" -#: tazpanel:53 +#: tazpanel:52 msgid "TazPanel is already running." msgstr "TazPanel уже запущена." -#: tazpanel:56 +#: tazpanel:55 msgid "Starting TazPanel web server on port %d..." -msgstr "Веб-сервер TazPanel запускается на порту %d..." +msgstr "Веб-сервер TazPanel запускается на порту %d…" -#: tazpanel:58 +#: tazpanel:57 msgid "TazPanel Authentication - Default: root:root" msgstr "Аутентификация TazPanel (по умолчанию root:root)" -#: tazpanel:65 +#: tazpanel:64 msgid "TazPanel is not running." msgstr "TazPanel не была запущена." -#: tazpanel:68 +#: tazpanel:67 msgid "Stopping TazPanel web server..." msgstr "Остановка веб-сервера TazPanel…" -#: tazpanel:76 -msgid "Changing password for TazPanel" -msgstr "Изменение пароля TazPanel" - -#: tazpanel:77 -msgid "New password: " -msgstr "Новый пароль: " - -#: tazpanel:79 -msgid "Password changed successfully" -msgstr "Пароль успешно изменён" - -#: index.cgi:37 -#: index.cgi:131 +#: index.cgi:37 index.cgi:120 msgid "Differences" msgstr "Различия" -#: index.cgi:88 -msgid "TazPanel - exec" -msgstr "Команда | TazPanel" +#: index.cgi:76 +msgid "exec" +msgstr "Команда" -#: index.cgi:120 -msgid "TazPanel - File" -msgstr "Файл | TazPanel" +#: index.cgi:109 +msgid "File" +msgstr "Файл" -#: index.cgi:130 -#: index.cgi:149 +#: index.cgi:119 index.cgi:138 index.cgi:176 msgid "Save" msgstr "Сохранить" -#: index.cgi:184 -#: network.cgi:262 -#: network.cgi:553 -#: network.cgi:621 -#: boot.cgi:382 -#: hardware.cgi:467 -#: settings.cgi:667 +#: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670 +#: network.cgi:720 boot.cgi:531 hardware.cgi:483 settings.cgi:766 msgid "Edit" msgstr "Правка" -#: index.cgi:228 -msgid "TazPanel - Terminal" -msgstr "Терминал | TazPanel" +#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:630 +#: styles/default/header.html:46 +msgid "Terminal" +msgstr "Терминал" -#: index.cgi:249 +#: index.cgi:246 index.cgi:331 msgid "History" msgstr "Журнал" -#: index.cgi:250 -#: lib/libtazpanel:334 +#: index.cgi:247 lib/libtazpanel:348 msgid "Back" msgstr "Назад" -#: index.cgi:256 +#: index.cgi:254 msgid "run" msgstr "запустить" -#: index.cgi:271 +#: index.cgi:270 msgid "Clear" msgstr "Очистить" -#: network.cgi:15 -msgid "TazPanel - Network" -msgstr "Сети | TazPanel" +#: index.cgi:294 +msgid "Small non-interactive terminal emulator." +msgstr "Маленький неинтерактивный эмулятор терминала." -#: network.cgi:141 +#: index.cgi:295 +msgid "Run any command at your own risk, avoid interactive commands (%s)" +msgstr "" +"Выполняйте любые команды на свой страх и риск, избегайте интерактивных " +"команд (%s)" + +#: index.cgi:300 +msgid "Downloading to: %s" +msgstr "Загрузка в: %s" + +#: index.cgi:309 +msgid "%s needs an argument" +msgstr "Команда %s требует аргумент" + +#: index.cgi:312 +msgid "Please, don't run interactive command \"%s\"" +msgstr "Пожалуйста, не выполняйте интерактивную команду «%s»" + +#: index.cgi:330 styles/default/header.html:98 +msgid "Settings" +msgstr "Параметры" + +#: index.cgi:400 +msgid "Terminal settings" +msgstr "Параметры терминала" + +#: index.cgi:421 +msgid "Font:" +msgstr "Шрифт:" + +#: index.cgi:423 +msgid "Default" +msgstr "По умолчанию" + +#: index.cgi:429 +msgid "Palette:" +msgstr "Палитра:" + +#: index.cgi:435 +msgid "Apply" +msgstr "Применить" + +#: index.cgi:445 index.cgi:631 +msgid "Process activity" +msgstr "Процессы" + +#: index.cgi:450 +msgid "Refresh:" +msgstr "Обновление:" + +#: index.cgi:453 +msgid "1s" +msgstr "1 с" + +#: index.cgi:455 +msgid "5s" +msgstr "5 с" + +#: index.cgi:457 +msgid "10s" +msgstr "10 с" + +#: index.cgi:459 +msgid "none" +msgstr "нет" + +#: index.cgi:473 +msgid "Debug" +msgstr "Отладка" + +#: index.cgi:476 +msgid "HTTP Environment" +msgstr "Переменные окружения HTTP" + +#: index.cgi:488 +msgid "System report" +msgstr "Системный отчёт" + +#: index.cgi:495 +msgid "Reporting to: %s" +msgstr "Файл отчёта: %s" + +#: index.cgi:498 +msgid "Creating report header..." +msgstr "Создание заголовка отчёта…" + +#: index.cgi:505 index.cgi:522 +msgid "SliTaz system report" +msgstr "Системный отчёт SliTaz" + +#: index.cgi:519 +msgid "Creating system summary..." +msgstr "Получение сводки о системе…" + +#: index.cgi:523 +msgid "Date:" +msgstr "Дата:" + +#: index.cgi:534 +msgid "Getting hardware info..." +msgstr "Получение информации об оборудовании…" + +#: index.cgi:552 +msgid "Getting networking info..." +msgstr "Получение информации о сетях…" + +#: index.cgi:566 +msgid "Getting filesystems info..." +msgstr "Получение информации о файловых системах…" + +#: index.cgi:586 +msgid "Getting boot logs..." +msgstr "Получение журналов загрузки…" + +#: index.cgi:589 boot.cgi:99 styles/default/header.html:74 +msgid "Kernel messages" +msgstr "Сообщения ядра" + +#: index.cgi:592 boot.cgi:100 styles/default/header.html:75 +msgid "Boot scripts" +msgstr "Загрузочные скрипты" + +#: index.cgi:597 +msgid "Creating report footer..." +msgstr "Завершение создание отчёта…" + +#: index.cgi:608 index.cgi:704 boot.cgi:510 boot.cgi:512 +msgid "View" +msgstr "Смотреть" + +#: index.cgi:613 +msgid "This report can be attached with a bug report on:" +msgstr "Этот отчёт можно прикрепить к баг-репорту здесь:" + +#: index.cgi:623 +msgid "SliTaz administration and configuration Panel" +msgstr "Панель администрирования и настройки SliTaz" + +#: index.cgi:632 +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 +msgid "Summary" +msgstr "Сводка" + +#: index.cgi:638 +msgid "Host:" +msgstr "Хост:" + +#: index.cgi:639 +msgid "Uptime:" +msgstr "Время работы:" + +#: index.cgi:642 +msgid "Memory in Mb:" +msgstr "Память в МБ:" + +#: index.cgi:644 +msgid "Total: %d, Used: %d, Free: %d" +msgstr "Всего: %d, занято: %d, свободно: %d" + +#: index.cgi:648 +msgid "Linux kernel:" +msgstr "Ядро Linux:" + +#: index.cgi:657 +msgid "Network status" +msgstr "Состояние сети" + +#: index.cgi:659 network.cgi:15 network.cgi:215 styles/default/header.html:52 +msgid "Network" +msgstr "Сети" + +#: index.cgi:668 hardware.cgi:340 +msgid "Filesystem usage statistics" +msgstr "Статистика использования файловых систем" + +#: index.cgi:670 styles/default/header.html:93 +msgid "Disks" +msgstr "Диски" + +#: index.cgi:702 +msgid "Panel Activity" +msgstr "Действия панели" + +#: network.cgi:152 msgid "Changed hostname: %s" msgstr "Изменённое название хоста: %s" -#: network.cgi:164 +#: network.cgi:209 msgid "Scanning open ports..." msgstr "Сканирование открытых портов…" -#: network.cgi:169 +#: network.cgi:214 msgid "Port scanning for %s" msgstr "Сканирование портов адреса %s" -#: network.cgi:170 -#: styles/default/header.html:33 -msgid "Network" -msgstr "Сети" - -#: network.cgi:197 +#: network.cgi:225 msgid "Ethernet connection" msgstr "Соединение Ethernet" -#: network.cgi:200 -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: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:204 -#: boot.cgi:112 +#: network.cgi:247 boot.cgi:152 msgid "Configuration" msgstr "Настройки" -#: network.cgi:209 -#: lib/libtazpanel:154 +#: network.cgi:253 lib/libtazpanel:165 msgid "Interface" msgstr "Интерфейс" -#: network.cgi:217 +#: network.cgi:261 msgid "Static IP" msgstr "Статический IP" -#: network.cgi:219 +#: network.cgi:263 msgid "Use static IP" msgstr "Использовать статический IP" -#: network.cgi:221 +#: network.cgi:265 msgid "IP address" msgstr "Адрес IP" -#: network.cgi:224 +#: network.cgi:268 msgid "Netmask" msgstr "Маска сети" -#: network.cgi:227 +#: network.cgi:271 msgid "Gateway" msgstr "Шлюз" -#: network.cgi:230 +#: network.cgi:274 msgid "DNS server" msgstr "Сервер DNS" -#: network.cgi:237 -#: network.cgi:396 -#: network.cgi:594 -#: boot.cgi:244 +#: network.cgi:277 network.cgi:297 +msgid "Wake up" +msgstr "«Разбудить»" + +#: network.cgi:279 +msgid "Wake up machines by network" +msgstr "«Разбудить» компьютер по сети" + +#: network.cgi:281 +msgid "MAC address to wake up" +msgstr "MAC-адрес пробуждаемого компьютера" + +#: network.cgi:282 network.cgi:287 +msgid "Leave empty for a general wakeup" +msgstr "Оставьте пустым, чтобы «разбудить» всех" + +#: network.cgi:283 +msgid "List" +msgstr "Список" + +#: network.cgi:286 +msgid "MAC/IP address password" +msgstr "MAC/IP-адрес пароль" + +#: network.cgi:288 +msgid "Help" +msgstr "Справка" + +#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:292 msgid "Start" msgstr "Запустить" -#: network.cgi:238 -#: network.cgi:397 -#: network.cgi:595 -#: boot.cgi:233 +#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:281 msgid "Stop" msgstr "Остановить" -#: network.cgi:257 -#: network.cgi:548 +#: network.cgi:321 network.cgi:591 msgid "Configuration file" msgstr "Файл настроек" -#: network.cgi:267 -msgid "These values are the ethernet settings in the main /etc/network.conf configuration file" -msgstr "Эти значения — параметры Ethernet из основного конфигурационного файла /etc/network.conf" +#: 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:279 +#: network.cgi:343 msgid "(hidden)" msgstr "(скрыто)" -#: network.cgi:285 -#: boot.cgi:110 -#: hardware.cgi:38 -#: settings.cgi:375 -#: lib/libtazpanel:155 +#: network.cgi:349 boot.cgi:150 hardware.cgi:57 lib/libtazpanel:166 msgid "Name" msgstr "Название" -#: network.cgi:286 +#: network.cgi:350 msgid "Signal level" msgstr "Уровень сигнала" -#: network.cgi:287 +#: network.cgi:351 msgid "Channel" msgstr "Канал" -#: network.cgi:288 +#: network.cgi:352 msgid "Encryption" msgstr "Шифрование" -#: network.cgi:289 -#: boot.cgi:113 -#: lib/libtazpanel:156 +#: network.cgi:353 boot.cgi:153 lib/libtazpanel:167 msgid "Status" msgstr "Состояние" -#: network.cgi:340 -#: network.cgi:436 -#: network.cgi:458 +#: network.cgi:404 network.cgi:486 network.cgi:508 msgid "None" msgstr "Нет" -#: network.cgi:353 +#: network.cgi:410 msgid "Connected" msgstr "Соединено" -#: network.cgi:383 +#: network.cgi:436 msgid "Wireless connection" msgstr "Беспроводное соединение" -#: network.cgi:398 -#: lib/libtazpanel:139 +#: network.cgi:452 lib/libtazpanel:150 msgid "Scan" msgstr "Сканировать" -#: network.cgi:406 +#: network.cgi:460 msgid "Scanning wireless interface..." msgstr "Сканирование беспроводного интерфейса…" -#: network.cgi:424 +#: network.cgi:474 msgid "Connection" msgstr "Соединение" -#: network.cgi:430 +#: network.cgi:480 msgid "Network SSID" msgstr "Имя сети (SSID)" -#: network.cgi:434 +#: network.cgi:484 msgid "Security" msgstr "Безопасность" -#: network.cgi:445 +#: network.cgi:495 msgid "EAP method" msgstr "Метод EAP" -#: network.cgi:456 +#: network.cgi:506 msgid "Phase 2 authentication" msgstr "2-й этап аутентификации" -#: network.cgi:468 +#: network.cgi:518 msgid "CA certificate" msgstr "Сертификат центра сертификации" -#: network.cgi:473 +#: network.cgi:523 msgid "User certificate" msgstr "Сертификат пользователя" -#: network.cgi:478 +#: network.cgi:528 msgid "Identity" msgstr "Пользователь" -#: network.cgi:483 +#: network.cgi:533 msgid "Anonymous identity" msgstr "Неизвестный" -#: network.cgi:488 +#: network.cgi:538 msgid "Password" msgstr "Пароль" -#: network.cgi:491 +#: network.cgi:541 msgid "Show password" msgstr "Показать пароль" -#: network.cgi:501 -msgid "Access point" -msgstr "Точка доступа" - -#: network.cgi:539 +#: network.cgi:582 msgid "Configure" msgstr "Настроить" -#: network.cgi:558 -msgid "These values are the wifi settings in the main /etc/network.conf configuration file" -msgstr "Эти значения — параметры Wi-Fi из основного конфигурационного файла /etc/network.conf" +#: 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:564 +#: network.cgi:607 msgid "Output of iwconfig" msgstr "Вывод команды iwconfig" -#: network.cgi:587 -msgid "Networking" -msgstr "Сети" - -#: network.cgi:589 +#: network.cgi:616 msgid "Manage network connections and services" msgstr "Управление сетевыми соединениями и службами" -#: network.cgi:596 +#: network.cgi:635 msgid "Restart" msgstr "Перезапуск" -#: network.cgi:600 +#: network.cgi:639 msgid "Configuration:" msgstr "Настройки:" -#: network.cgi:608 +#: network.cgi:647 msgid "Network interfaces" msgstr "Сетевые интерфейсы" -#: network.cgi:614 +#: network.cgi:654 +msgid "forward packets between interfaces" +msgstr "включить форвардинг пакетов между интерфейсами" + +#: network.cgi:656 network.cgi:690 boot.cgi:336 settings.cgi:608 +#: settings.cgi:722 +msgid "Change" +msgstr "Изменить" + +#: network.cgi:665 msgid "Hosts" msgstr "Хосты" -#: network.cgi:630 +#: network.cgi:682 msgid "Hostname" msgstr "Имя хоста" -#: boot.cgi:16 -msgid "TazPanel - Boot" -msgstr "Загрузка | TazPanel" +#: network.cgi:702 +msgid "Output of ifconfig" +msgstr "Вывод команды ifconfig" + +#: network.cgi:708 +msgid "Routing table" +msgstr "Таблица маршрутизации" + +#: network.cgi:715 +msgid "Domain name resolution" +msgstr "Разрешение доменных имён" + +#: network.cgi:730 +msgid "ARP table" +msgstr "Таблица ARP" + +#: network.cgi:750 +msgid "Proxy" +msgstr "Прокси" + +#: network.cgi:751 +msgid "Add" +msgstr "Добавить" + +#: network.cgi:764 +msgid "IP Connections" +msgstr "Соединения IP" + +#: network.cgi:774 +msgid "Firewall" +msgstr "Брандмауэр" + +#: boot.cgi:16 styles/default/header.html:62 +msgid "Boot" +msgstr "Загрузка" #: boot.cgi:27 msgid "Show more..." msgstr "Показать больше…" -#: boot.cgi:56 +#: boot.cgi:45 boot.cgi:492 styles/default/header.html:80 +msgid "System logs" +msgstr "Системные журналы" + +#: boot.cgi:96 msgid "Boot log files" msgstr "Журналы загрузки" -#: boot.cgi:59 -#: styles/default/header.html:53 -msgid "Kernel messages" -msgstr "Сообщения ядра" - -#: boot.cgi:60 -#: styles/default/header.html:54 -msgid "Boot scripts" -msgstr "Загрузочные скрипты" - -#: boot.cgi:61 -#: styles/default/header.html:55 +#: boot.cgi:101 styles/default/header.html:76 msgid "X server" msgstr "X-сервер" -#: boot.cgi:62 -#: styles/default/header.html:56 +#: boot.cgi:102 styles/default/header.html:77 msgid "X session" msgstr "Сеанс X" -#: boot.cgi:84 -#: boot.cgi:347 -#: styles/default/header.html:59 +#: boot.cgi:124 boot.cgi:493 styles/default/header.html:81 msgid "Manage daemons" msgstr "Управление службами" -#: boot.cgi:86 +#: boot.cgi:126 msgid "Check, start and stop daemons on SliTaz" msgstr "Проверка, запуск и остановка служб SliTaz" -#: boot.cgi:111 -#: hardware.cgi:153 -#: settings.cgi:496 +#: boot.cgi:151 hardware.cgi:168 settings.cgi:434 msgid "Description" msgstr "Описание" -#: boot.cgi:114 +#: boot.cgi:154 msgid "Action" msgstr "Действие" -#: boot.cgi:115 +#: boot.cgi:155 msgid "PID" msgstr "PID" -#: boot.cgi:138 +#: boot.cgi:180 msgid "SliTaz Firewall with iptable rules" msgstr "Брандмауэр SliTaz с правилами iptable" -#: boot.cgi:140 +#: boot.cgi:182 msgid "Small and fast web server with CGI support" msgstr "Маленький и быстрый веб-сервер с поддержкой CGI" -#: boot.cgi:142 +#: boot.cgi:185 msgid "Network time protocol daemon" msgstr "Служба протокола сетевого времени" -#: boot.cgi:145 +#: boot.cgi:188 msgid "Anonymous FTP server" msgstr "Анонимный сервер FTP" -#: boot.cgi:147 +#: boot.cgi:191 msgid "Busybox DHCP server" msgstr "Сервер DHCP из Busybox" -#: boot.cgi:149 +#: boot.cgi:194 msgid "Linux Kernel log daemon" msgstr "Служба журнала ядра Linux" -#: boot.cgi:152 +#: boot.cgi:197 msgid "Execute scheduled commands" msgstr "Выполнение запланированных команд" -#: boot.cgi:155 +#: boot.cgi:200 msgid "Small static DNS server daemon" msgstr "Служба маленького статического сервера DNS" -#: boot.cgi:158 +#: boot.cgi:203 msgid "Transfer a file on tftp request" msgstr "Передача файлов по запросу TFTP" -#: boot.cgi:160 +#: boot.cgi:206 +msgid "Printer daemon" +msgstr "Служба печати" + +#: boot.cgi:208 msgid "Listen for network connections and launch programs" msgstr "Прослушивание сетевых соединений и запуск программ" -#: boot.cgi:163 +#: boot.cgi:211 msgid "Manage a ZeroConf IPv4 link-local address" msgstr "Управление присоединенным-локальным адресом ZeroConf IPv4" -#: boot.cgi:232 +#: boot.cgi:280 msgid "Started" msgstr "Запущен" -#: boot.cgi:243 +#: boot.cgi:291 msgid "Stopped" msgstr "Остановлен" -#: boot.cgi:270 +#: boot.cgi:318 msgid "GRUB Boot loader" msgstr "Загрузчик GRUB" -#: boot.cgi:272 +#: boot.cgi:320 msgid "The first application started when the computer powers on" msgstr "Первое приложение, запускаемое при включении питания" -#: boot.cgi:279 +#: boot.cgi:327 msgid "Default entry:" msgstr "Пункт по умолчанию:" -#: boot.cgi:281 +#: boot.cgi:329 msgid "Timeout:" msgstr "Таймаут:" -#: boot.cgi:283 +#: boot.cgi:331 msgid "Splash image:" msgstr "Загрузочная картинка:" -#: boot.cgi:288 -#: settings.cgi:557 -#: settings.cgi:623 -#: settings.cgi:694 -msgid "Change" -msgstr "Изменить" - -#: boot.cgi:295 +#: boot.cgi:343 msgid "View or edit menu.lst" msgstr "Просмотр и правка menu.lst" -#: boot.cgi:300 +#: boot.cgi:348 msgid "Boot entries" msgstr "Загрузочные пункты" -#: boot.cgi:307 +#: boot.cgi:355 msgid "Entry" msgstr "Пункт" -#: boot.cgi:328 +#: boot.cgi:376 msgid "Web boot is available with gPXE" msgstr "Доступна веб-загрузка с gPXE" -#: boot.cgi:341 +#: boot.cgi:390 boot.cgi:496 styles/default/header.html:83 +msgid "ISO mine" +msgstr "Создание ISO-образов" + +#: boot.cgi:486 msgid "Boot & Start services" msgstr "Загрузка и запуск служб" -#: boot.cgi:343 +#: boot.cgi:488 msgid "Everything that happens before user login" msgstr "Всё, что происходит перед входом пользователя в систему" -#: boot.cgi:346 -#: styles/default/header.html:51 +#: boot.cgi:491 styles/default/header.html:72 msgid "Boot logs" msgstr "Журналы загрузки" -#: boot.cgi:350 -#: styles/default/header.html:48 +#: boot.cgi:499 styles/default/header.html:68 msgid "Boot loader" msgstr "Загрузчик" -#: boot.cgi:357 +#: boot.cgi:506 msgid "Configuration files" msgstr "Файлы настроек" -#: boot.cgi:360 +#: boot.cgi:509 msgid "Main configuration file:" msgstr "Главный файл настроек:" -#: boot.cgi:361 -#: boot.cgi:363 -msgid "View" -msgstr "Смотреть" - -#: boot.cgi:362 +#: boot.cgi:511 msgid "Login manager settings:" msgstr "Настройки менеджера входа в систему:" -#: boot.cgi:370 +#: boot.cgi:519 msgid "Kernel cmdline" msgstr "Командная строка ядра" -#: boot.cgi:377 +#: boot.cgi:526 msgid "Local startup commands" msgstr "Локальные команды запуска" -#: hardware.cgi:13 -msgid "TazPanel - Hardware" -msgstr "Оборудование | TazPanel" +#: hardware.cgi:13 styles/default/header.html:88 +msgid "Hardware" +msgstr "Оборудование" -#: hardware.cgi:35 +#: hardware.cgi:54 msgid "Bus" msgstr "Шина" -#: hardware.cgi:36 -#: hardware.cgi:509 +#: hardware.cgi:55 hardware.cgi:525 msgid "Device" msgstr "Устройство" -#: hardware.cgi:37 +#: hardware.cgi:56 msgid "ID" msgstr "ID" -#: hardware.cgi:90 +#: hardware.cgi:108 msgid "Detect hardware" msgstr "Поиск оборудования" -#: hardware.cgi:91 +#: hardware.cgi:110 msgid "Detect PCI and USB hardware" msgstr "Определение оборудования PCI и USB" -#: hardware.cgi:104 -#: hardware.cgi:225 -#: styles/default/header.html:67 +#: hardware.cgi:118 hardware.cgi:239 styles/default/header.html:91 msgid "Kernel modules" msgstr "Модули ядра" -#: hardware.cgi:105 +#: hardware.cgi:120 msgid "Manage, search or get information about the Linux kernel modules" msgstr "Управление, поиск и сведения о модулях ядра Linux" -#: hardware.cgi:109 +#: hardware.cgi:124 msgid "Modules search" msgstr "Поиск модулей" -#: hardware.cgi:117 +#: hardware.cgi:132 msgid "Detailed information for module: %s" msgstr "Подробности о модуле %s" -#: hardware.cgi:137 +#: hardware.cgi:152 msgid "Matching result(s) for: %s" msgstr "Результаты поиска %s" -#: hardware.cgi:143 +#: hardware.cgi:158 msgid "Module:" msgstr "Модуль:" -#: hardware.cgi:152 +#: hardware.cgi:167 msgid "Module" msgstr "Модуль" -#: hardware.cgi:154 -#: lib/libtazpanel:285 +#: hardware.cgi:169 hardware.cgi:527 lib/libtazpanel:295 msgid "Size" msgstr "Размер" -#: hardware.cgi:155 -#: hardware.cgi:563 -#: lib/libtazpanel:287 +#: hardware.cgi:170 hardware.cgi:584 lib/libtazpanel:297 msgid "Used" msgstr "Используется" -#: hardware.cgi:156 +#: hardware.cgi:171 msgid "by" msgstr "кем" -#: hardware.cgi:180 +#: hardware.cgi:195 msgid "Information for USB Device %s" msgstr "Информация о USB-устройстве %s" -#: hardware.cgi:182 -#: hardware.cgi:200 +#: hardware.cgi:197 hardware.cgi:215 msgid "Detailed information about specified device." msgstr "Подробная информация о выбранном устройстве." -#: hardware.cgi:198 +#: hardware.cgi:213 msgid "Information for PCI Device %s" msgstr "Информация о PCI-устройстве %s" -#: hardware.cgi:221 +#: hardware.cgi:234 msgid "Drivers & Devices" msgstr "Драйверы и устройства" -#: hardware.cgi:222 +#: hardware.cgi:236 msgid "Manage your computer hardware" msgstr "Управление вашим компьютерным оборудованием" -#: hardware.cgi:226 -#: styles/default/header.html:68 +#: hardware.cgi:240 styles/default/header.html:92 msgid "Detect PCI/USB" msgstr "Определить PCI/USB" -#: hardware.cgi:227 +#: hardware.cgi:241 msgid "Auto-install Xorg video driver" msgstr "Авто-установка видео-драйвера Xorg" -#: hardware.cgi:237 -#: hardware.cgi:254 +#: hardware.cgi:251 hardware.cgi:268 msgid "Battery" msgstr "Батарея" -#: hardware.cgi:257 +#: hardware.cgi:271 msgid "health" msgstr "здоровье" -#: hardware.cgi:266 +#: hardware.cgi:280 msgid "Discharging %d%% - %s" msgstr "Разряжается: %d %% — осталось %s" -#: hardware.cgi:270 -#, sh-format +#: hardware.cgi:284 msgid "Charging %d%% - %s" msgstr "Заряжается: %d %% — осталось %s" -#: hardware.cgi:272 +#: hardware.cgi:286 msgid "Charged 100%%" msgstr "Полностью заряжена" -#: hardware.cgi:291 +#: hardware.cgi:305 msgid "Temperature:" msgstr "Температура:" -#: hardware.cgi:306 +#: hardware.cgi:320 msgid "Brightness" msgstr "Яркость" -#: hardware.cgi:326 -msgid "Filesystem usage statistics" -msgstr "Статистика использования файловых систем" - -#: hardware.cgi:446 +#: hardware.cgi:462 msgid "new mount point:" msgstr "новая точка монтирования:" -#: hardware.cgi:447 +#: hardware.cgi:463 msgid "read-only" msgstr "только-чтение" -#: hardware.cgi:462 +#: hardware.cgi:478 msgid "Filesystems table" msgstr "Таблица файловых систем" -#: hardware.cgi:475 -#: lib/libtazpanel:282 +#: hardware.cgi:491 lib/libtazpanel:292 msgid "Disk" msgstr "Диск" -#: hardware.cgi:476 -#: lib/libtazpanel:288 +#: hardware.cgi:492 lib/libtazpanel:298 msgid "Mount point" msgstr "Точка монтирования" -#: hardware.cgi:477 -#: lib/libtazpanel:284 +#: hardware.cgi:493 lib/libtazpanel:294 msgid "Type" msgstr "Тип" -#: hardware.cgi:478 +#: hardware.cgi:494 msgid "Options" msgstr "Параметры" -#: hardware.cgi:479 +#: hardware.cgi:495 msgid "Freq" msgstr "Резерв." -#: hardware.cgi:480 +#: hardware.cgi:496 msgid "Pass" msgstr "Проверка" -#: hardware.cgi:502 +#: hardware.cgi:518 msgid "Loop devices" msgstr "Устройства loop" -#: hardware.cgi:510 +#: hardware.cgi:526 msgid "Backing file" msgstr "Файл образа" -#: hardware.cgi:511 +#: hardware.cgi:528 msgid "Access" msgstr "Доступ" -#: hardware.cgi:512 +#: hardware.cgi:529 msgid "Offset" msgstr "Смещение" -#: hardware.cgi:520 +#: hardware.cgi:538 msgid "read/write" msgstr "чтение/запись" -#: hardware.cgi:521 -#: hardware.cgi:543 +#: hardware.cgi:539 hardware.cgi:564 msgid "read only" msgstr "только чтение" -#: hardware.cgi:540 +#: hardware.cgi:561 msgid "Setup" msgstr "Установить" -#: hardware.cgi:541 +#: hardware.cgi:562 msgid "new backing file:" msgstr "новый файл образа:" -#: hardware.cgi:542 +#: hardware.cgi:563 msgid "offset in bytes:" msgstr "смещение в байтах:" -#: hardware.cgi:560 +#: hardware.cgi:581 msgid "System memory" msgstr "Системная память" -#: hardware.cgi:566 +#: hardware.cgi:587 msgid "Buffers" msgstr "Буферы" -#: hardware.cgi:569 +#: hardware.cgi:590 msgid "Free" msgstr "Свободно" -#: settings.cgi:17 -msgid "TazPanel - Settings" -msgstr "Параметры | TazPanel" +#: settings.cgi:16 +msgid "System settings" +msgstr "Параметры системы" -#: settings.cgi:83 -msgid "US" -msgstr "США" +#: settings.cgi:82 settings.cgi:621 settings.cgi:648 settings.cgi:653 +msgid "Set date" +msgstr "Установить дату" -#: settings.cgi:85 -msgid "metric" -msgstr "метрическая" - -#: settings.cgi:266 -#: settings.cgi:544 +#: settings.cgi:208 settings.cgi:595 msgid "Manage groups" msgstr "Управление группами" -#: settings.cgi:273 -#: settings.cgi:364 +#: settings.cgi:216 settings.cgi:293 msgid "Selection:" msgstr "Отмеченное:" -#: settings.cgi:274 +#: settings.cgi:217 msgid "Delete group" msgstr "Удалить группу" -#: settings.cgi:281 +#: settings.cgi:224 msgid "Group" msgstr "Группа" -#: settings.cgi:282 +#: settings.cgi:225 msgid "Group ID" msgstr "ID группы" -#: settings.cgi:283 +#: settings.cgi:226 msgid "Members" msgstr "Участники" -#: settings.cgi:312 +#: settings.cgi:253 msgid "Add a new group" msgstr "Добавить новую группу" -#: settings.cgi:316 -#: settings.cgi:333 +#: settings.cgi:256 settings.cgi:268 msgid "Group name:" msgstr "Название группы:" -#: settings.cgi:320 +#: settings.cgi:257 msgid "Create group" msgstr "Создать группу" -#: settings.cgi:328 +#: settings.cgi:264 msgid "Manage group membership" msgstr "Участие в группах" -#: settings.cgi:335 -#: settings.cgi:427 +#: settings.cgi:269 settings.cgi:356 msgid "User name:" msgstr "Имя пользователя:" -#: settings.cgi:340 +#: settings.cgi:272 msgid "Add user" msgstr "Добавить пользователя" -#: settings.cgi:343 +#: settings.cgi:273 msgid "Remove user" msgstr "Удалить пользователя" -#: settings.cgi:359 -#: settings.cgi:543 +#: settings.cgi:286 settings.cgi:594 msgid "Manage users" msgstr "Управление пользователями" -#: settings.cgi:365 +#: settings.cgi:294 msgid "Delete user" msgstr "Удалить пользователя" -#: settings.cgi:366 +#: settings.cgi:295 msgid "Lock user" msgstr "Заблокировать пользователя" -#: settings.cgi:367 +#: settings.cgi:296 msgid "Unlock user" msgstr "Разблокировать пользователя" -#: settings.cgi:373 +#: settings.cgi:302 msgid "Login" msgstr "Логин" -#: settings.cgi:374 +#: settings.cgi:303 msgid "User ID" msgstr "ID пользователя" -#: settings.cgi:376 +#: settings.cgi:304 +msgid "User Name" +msgstr "Имя пользователя" + +#: settings.cgi:305 msgid "Home" msgstr "Домашняя папка" -#: settings.cgi:377 +#: settings.cgi:306 msgid "Shell" msgstr "Оболочка" -#: settings.cgi:410 +#: settings.cgi:340 msgid "Password:" msgstr "Пароль:" -#: settings.cgi:412 +#: settings.cgi:342 msgid "Change password" msgstr "Изменить пароль" -#: settings.cgi:420 +#: settings.cgi:349 msgid "Add a new user" msgstr "Добавить нового пользователя" -#: settings.cgi:425 +#: settings.cgi:354 msgid "User login:" msgstr "Логин пользователя:" -#: settings.cgi:429 +#: settings.cgi:358 msgid "User password:" msgstr "Пароль пользователя:" -#: settings.cgi:434 +#: settings.cgi:363 msgid "Create user" msgstr "Создать пользователя" -#: settings.cgi:441 +#: settings.cgi:373 msgid "Current user sessions" msgstr "Текущие сессии пользователя" -#: settings.cgi:447 +#: settings.cgi:383 msgid "Last user sessions" msgstr "Последние сессии пользователя" -#: settings.cgi:458 +#: settings.cgi:395 +msgid "Choose locale" +msgstr "Выбор локали" + +#: settings.cgi:398 msgid "Please wait..." msgstr "Пожалуйста, подождите…" -#: settings.cgi:462 -msgid "Choose locale" -msgstr "Выбор локали" - -#: settings.cgi:465 +#: settings.cgi:403 msgid "Current locale settings:" msgstr "Текущие параметры локали:" -#: settings.cgi:472 +#: settings.cgi:410 msgid "Locales that are currently installed on the machine:" msgstr "Локали, уже установленные в системе:" -#: settings.cgi:482 -msgid "Can't see your language?
    You can install glibc-locale to see a larger list of available locales." -msgstr "Не видите вашего языка?
    Вы можете установить glibc-locale для того, чтобы получить большой список доступных локалей." +#: 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:489 +#: settings.cgi:427 msgid "Available locales:" msgstr "Доступные локали:" -#: settings.cgi:493 +#: settings.cgi:431 msgid "Code" msgstr "Код" -#: settings.cgi:494 +#: settings.cgi:432 msgid "Language" msgstr "Язык" -#: settings.cgi:495 +#: settings.cgi:433 msgid "Territory" msgstr "Территория" -#: settings.cgi:512 -#: settings.cgi:513 +#: settings.cgi:450 settings.cgi:451 msgid "-d" msgstr "-d" -#: settings.cgi:524 -#: settings.cgi:666 -#: settings.cgi:677 -#: settings.cgi:689 +#: settings.cgi:462 settings.cgi:765 settings.cgi:776 settings.cgi:788 msgid "Activate" msgstr "Активировать" +#: settings.cgi:474 settings.cgi:497 +msgid "Small quick tweaks for user %s" +msgstr "Быстрые настройки для пользователя %s" + +#: settings.cgi:500 +msgid "Terminal prompt" +msgstr "Приглашение терминала" + +#: settings.cgi:506 +msgid "Monochrome" +msgstr "Монохромное" + +#: settings.cgi:515 +msgid "Colored" +msgstr "Цветное" + +#: settings.cgi:524 settings.cgi:572 +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:533 +msgid "Menu button appearance" +msgstr "Внешний вид кнопки меню" + #: settings.cgi:538 -msgid "System settings" -msgstr "Параметры системы" +msgid "Icon:" +msgstr "Значок:" -#: settings.cgi:540 +#: settings.cgi:541 settings.cgi:562 +msgid "Do not show" +msgstr "Не показывать" + +#: settings.cgi:559 +msgid "Text:" +msgstr "Текст:" + +#: settings.cgi:566 +msgid "Show text" +msgstr "Показывать текст" + +#: settings.cgi:589 msgid "Manage system time, users or language settings" msgstr "Управление системным временем, пользователями и языками" -#: settings.cgi:548 +#: settings.cgi:599 msgid "System time" msgstr "Системное время" -#: settings.cgi:551 +#: settings.cgi:602 msgid "Time zone:" msgstr "Часовой пояс:" -#: settings.cgi:560 +#: settings.cgi:611 msgid "System time:" msgstr "Системное время:" -#: settings.cgi:562 +#: settings.cgi:613 msgid "Sync online" msgstr "Синхронизировать онлайн" -#: settings.cgi:565 +#: settings.cgi:616 msgid "Hardware clock:" msgstr "Часы оборудования:" -#: settings.cgi:567 +#: settings.cgi:618 msgid "Set hardware clock" msgstr "Установить часы оборудования" -#: settings.cgi:570 -#: settings.cgi:582 -msgid "Set date" -msgstr "Установить дату" - -#: settings.cgi:605 +#: settings.cgi:704 msgid "System language" msgstr "Язык системы" -#: settings.cgi:618 -msgid "You must logout and login again to your current session to use %s locale." -msgstr "Вам необходимо выйти из системы и войти повторно, чтобы использовать локаль «%s»." +#: settings.cgi:717 +msgid "" +"You must logout and login again to your current session to use %s locale." +msgstr "" +"Вам необходимо выйти из системы и войти повторно, чтобы использовать локаль " +"«%s»." -#: settings.cgi:621 +#: settings.cgi:720 msgid "Current system locale:" msgstr "Текущая локаль системы:" -#: settings.cgi:633 +#: settings.cgi:732 msgid "Keyboard layout" msgstr "Раскладка клавиатуры" -#: settings.cgi:647 +#: settings.cgi:746 msgid "Current console keymap: %s" msgstr "Текущая консольная раскладка: %s" -#: settings.cgi:665 +#: settings.cgi:764 msgid "Suggested keymap for Xorg:" -msgstr "Предлагаемая раскладка клавиатуры для XOrg:" +msgstr "Предлагаемая раскладка клавиатуры для Xorg:" -#: settings.cgi:673 +#: settings.cgi:772 msgid "Available keymaps:" msgstr "Доступные раскладки:" -#: settings.cgi:684 +#: settings.cgi:783 msgid "Panel configuration" msgstr "Настройка панели" -#: settings.cgi:687 +#: settings.cgi:786 msgid "Style:" msgstr "Стиль:" -#: settings.cgi:692 -msgid "Panel password:" -msgstr "Пароль панели:" - -#: settings.cgi:698 +#: settings.cgi:792 msgid "Configuration files:" msgstr "Файлы настроек:" -#: settings.cgi:699 -#: styles/default/header.html:23 +#: settings.cgi:793 styles/default/header.html:42 msgid "Panel" msgstr "Панель" -#: settings.cgi:700 +#: settings.cgi:794 msgid "Server" msgstr "Сервер" -#: settings.cgi:703 +#: settings.cgi:797 msgid "TazPanel provides a debugging mode and page:" msgstr "TazPanel поддерживает отладочный режим и страницу:" -#: lib/libtazpanel:137 +#: lib/libtazpanel:153 msgid "connected" msgstr "соединён" -#: lib/libtazpanel:157 +#: lib/libtazpanel:168 msgid "IP Address" msgstr "Адрес IP" -#: lib/libtazpanel:158 +#: lib/libtazpanel:169 msgid "Scan ports" msgstr "Сканировать порты" -#: lib/libtazpanel:283 +#: lib/libtazpanel:241 +msgid "Please wait" +msgstr "Пожалуйста, подождите" + +#: lib/libtazpanel:293 msgid "Label" msgstr "Метка" -#: lib/libtazpanel:286 +#: lib/libtazpanel:296 msgid "Available" msgstr "Доступно" -#: lib/libtazpanel:353 +#: lib/libtazpanel:367 msgid "You must be root to show this page." msgstr "Вы должны обладать правами root для просмотра этой страницы." @@ -1048,189 +1269,79 @@ msgstr "Руководство" #: help.cgi:28 -msgid "TazPanel - Help & Doc" -msgstr "Справка и документация | TazPanel" +msgid "Help & Doc" +msgstr "Справка и документация" -#: styles/default/header.html:25 -#: styles/default/header.html:35 +#: styles/default/header.html:32 +msgid "Confirm break" +msgstr "Прервать процесс?" + #: styles/default/header.html:45 -#: styles/default/header.html:66 -#: styles/default/header.html:76 -msgid "Summary" -msgstr "Сводка" - -#: styles/default/header.html:26 msgid "Processes" msgstr "Процессы" -#: styles/default/header.html:27 -msgid "Terminal" -msgstr "Терминал" - -#: styles/default/header.html:28 +#: styles/default/header.html:47 msgid "Create Report" msgstr "Создать отчёт" -#: styles/default/header.html:36 +#: styles/default/header.html:55 msgid "Config file" msgstr "Файл настроек" -#: styles/default/header.html:37 +#: styles/default/header.html:56 msgid "Ethernet" msgstr "Ethernet" -#: styles/default/header.html:38 +#: styles/default/header.html:57 msgid "Wireless" msgstr "Беспроводные" -#: styles/default/header.html:43 -msgid "Boot" -msgstr "Загрузка" - -#: styles/default/header.html:64 -msgid "Hardware" -msgstr "Оборудование" - -#: styles/default/header.html:69 -msgid "Disks" -msgstr "Диски" - -#: styles/default/header.html:74 -msgid "Settings" -msgstr "Настройки" - -#: styles/default/header.html:77 +#: styles/default/header.html:101 msgid "Users" msgstr "Пользователи" -#: styles/default/header.html:78 +#: styles/default/header.html:102 msgid "Groups" msgstr "Группы" -#: styles/default/header.html:93 +#: styles/default/header.html:103 +msgid "Tweaks" +msgstr "Маленькие настройки" + +#: styles/default/header.html:119 msgid "Some features are disabled." msgstr "Некоторые возможности отключены." -#: styles/default/header.html:98 +#: styles/default/header.html:124 msgid "You are logged in to the TazPanel as user %s." msgstr "TazPanel открыта под учетной записью пользователя %s." -#: styles/default/header.html:99 +#: styles/default/header.html:125 msgid "Click to re-login." msgstr "Нажмите для повторного входа." -#: styles/default/footer.html:7 +#: styles/default/header.html:135 msgid "Copyright" msgstr "Авторское право" -#: styles/default/footer.html:9 +#: styles/default/header.html:137 msgid "BSD License" msgstr "Лицензия BSD" -#~ msgid "Small terminal emulator, commands options are supported." -#~ msgstr "Маленький эмулятор терминала; поддерживаются параметры команд." +#~ msgid "Groups management" +#~ msgstr "Управление группами" -#~ msgid "Commands: %s" -#~ msgstr "Команды: %s" +#~ msgid "Networking" +#~ msgstr "Сети" -#~ msgid "Downloading to: %s" -#~ msgstr "Загрузка в: %s" +#~ msgid "Access point" +#~ msgstr "Точка доступа" -#~ msgid "%s needs an argument" -#~ msgstr "Команда %s требует аргумент" +#~ msgid "US" +#~ msgstr "США" -#~ msgid "Unknown command: %s" -#~ msgstr "Неизвестная команда: %s" - -#~ msgid "TazPanel - Process activity" -#~ msgstr "Процессы | TazPanel" - -#~ msgid "Refresh:" -#~ msgstr "Обновить:" - -#~ msgid "1s" -#~ msgstr "1 с" - -#~ msgid "5s" -#~ msgstr "5 с" - -#~ msgid "10s" -#~ msgstr "10 с" - -#~ msgid "none" -#~ msgstr "нет" - -#~ msgid "TazPanel - Debug" -#~ msgstr "Отладка | TazPanel" - -#~ msgid "HTTP Environment" -#~ msgstr "Переменные окружения HTTP" - -#~ msgid "TazPanel - System report" -#~ msgstr "Системный отчёт | TazPanel" - -#~ msgid "Reporting to: %s" -#~ msgstr "Файл отчёта: %s" - -#~ msgid "Creating report header..." -#~ msgstr "Создание заголовка отчёта…" - -#~ msgid "SliTaz system report" -#~ msgstr "Системный отчёт SliTaz" - -#~ msgid "Creating system summary..." -#~ msgstr "Получение сводки о системе…" - -#~ msgid "Date:" -#~ msgstr "Дата:" - -#~ msgid "Getting hardware info..." -#~ msgstr "Получение информации об оборудовании…" - -#~ msgid "Getting networking info..." -#~ msgstr "Получение информации о сетях…" - -#~ msgid "Getting filesystems info..." -#~ msgstr "Получение информации о файловых системах…" - -#~ msgid "Getting boot logs..." -#~ msgstr "Получение журналов загрузки…" - -#~ msgid "Creating report footer..." -#~ msgstr "Завершение создание отчёта…" - -#~ msgid "View report" -#~ msgstr "Просмотреть отчёт" - -#~ msgid "This report can be attached with a bug report on:" -#~ msgstr "Этот отчёт можно прикрепить к баг-репорту здесь:" - -#~ msgid "Host: %s" -#~ msgstr "Хост: %s" - -#~ msgid "SliTaz administration and configuration Panel" -#~ msgstr "Панель администрирования и настройки SliTaz" - -#~ msgid "Process activity" -#~ msgstr "Процессы" - -#~ msgid "Create a report" -#~ msgstr "Создать отчёт" - -#~ msgid "Uptime:" -#~ msgstr "Время работы:" - -#~ msgid "Memory in Mb:" -#~ msgstr "Память в МБ:" - -#~ msgid "Total: %d, Used: %d, Free: %d" -#~ msgstr "Всего: %d, занято: %d, свободно: %d" - -#~ msgid "Linux kernel:" -#~ msgstr "Ядро Linux:" - -#~ msgid "Panel Activity" -#~ msgstr "Действия панели" +#~ msgid "metric" +#~ msgstr "метрическая" #~ msgid "Quality" #~ msgstr "Уровень сигнала" @@ -1241,18 +1352,9 @@ #~ msgid "Value" #~ msgstr "Значение" -#~ msgid "Activate (static)" -#~ msgstr "Запустить (статический IP)" - -#~ msgid "Activate (DHCP)" -#~ msgstr "Запустить (DHCP)" - #~ msgid "Disable" #~ msgstr "Остановить" -#~ msgid "Manual Edit" -#~ msgstr "Ручная правка" - #~ msgid "Wifi name (ESSID)" #~ msgstr "Название Wi-Fi (ESSID)" @@ -1268,21 +1370,6 @@ #~ msgid "Change hostname" #~ msgstr "Изменить имя хоста" -#~ msgid "Output of ifconfig" -#~ msgstr "Вывод команды ifconfig" - -#~ msgid "Routing table" -#~ msgstr "Таблица маршрутизации" - -#~ msgid "Domain name resolution" -#~ msgstr "Разрешение доменных имён" - -#~ msgid "ARP table" -#~ msgstr "Таблица ARP" - -#~ msgid "IP Connections" -#~ msgstr "Соединения IP" - #~ msgid "Edit script" #~ msgstr "Править скрипт" diff -r f8ff472846c2 -r 3117717c007d po/sv.po --- a/po/sv.po Sat Jun 06 12:38:24 2015 +0200 +++ b/po/sv.po Mon Jun 08 04:32:19 2015 +0300 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: TazPanel 1.4.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-09 22:58+0200\n" +"POT-Creation-Date: 2015-06-05 20:42+0300\n" "PO-Revision-Date: 2012-07-11 11:33-0000\n" "Last-Translator: Emil Eklund \n" "Language-Team: Swedish \n" @@ -17,105 +17,280 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: tazpanel:53 +#: tazpanel:52 msgid "TazPanel is already running." msgstr "" -#: tazpanel:56 +#: tazpanel:55 msgid "Starting TazPanel web server on port %d..." msgstr "Startar TazPanel web server på port %d..." -#: tazpanel:58 +#: tazpanel:57 msgid "TazPanel Authentication - Default: root:root" msgstr "TazPanel Autensiering - Standard: root:root" -#: tazpanel:65 +#: tazpanel:64 msgid "TazPanel is not running." msgstr "" -#: tazpanel:68 +#: tazpanel:67 msgid "Stopping TazPanel web server..." msgstr "Stoppar TazPanel web server..." -#: tazpanel:76 -msgid "Changing password for TazPanel" -msgstr "Byter lösenord för TazPanel" - -#: tazpanel:77 -msgid "New password: " -msgstr "Nytt lösenord: " - -#: tazpanel:79 -msgid "Password changed successfully" -msgstr "Lösenordet byttes" - -#: index.cgi:37 index.cgi:131 +#: index.cgi:37 index.cgi:120 msgid "Differences" msgstr "Skillnader" -#: index.cgi:88 -msgid "TazPanel - exec" +#: index.cgi:76 +msgid "exec" msgstr "" -#: index.cgi:120 -msgid "TazPanel - File" -msgstr "TazPanel - Fil" +#: index.cgi:109 +msgid "File" +msgstr "Fil" -#: index.cgi:130 index.cgi:149 +#: index.cgi:119 index.cgi:138 index.cgi:176 msgid "Save" msgstr "Spara" -#: index.cgi:184 network.cgi:262 network.cgi:553 network.cgi:621 boot.cgi:382 -#: hardware.cgi:467 settings.cgi:667 +#: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670 +#: network.cgi:720 boot.cgi:531 hardware.cgi:483 settings.cgi:766 msgid "Edit" msgstr "Ändra" -#: index.cgi:228 -msgid "TazPanel - Terminal" -msgstr "TazPanel - Terminal" +#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:630 +#: styles/default/header.html:46 +msgid "Terminal" +msgstr "Terminal" -#: index.cgi:249 +#: index.cgi:246 index.cgi:331 #, fuzzy msgid "History" msgstr "Territorium" -#: index.cgi:250 lib/libtazpanel:334 +#: index.cgi:247 lib/libtazpanel:348 msgid "Back" msgstr "" -#: index.cgi:256 +#: index.cgi:254 msgid "run" msgstr "" -#: index.cgi:271 +#: index.cgi:270 msgid "Clear" msgstr "" -#: network.cgi:15 -msgid "TazPanel - Network" -msgstr "TazPanel - Nätverk" +#: index.cgi:294 +msgid "Small non-interactive terminal emulator." +msgstr "" -#: network.cgi:141 +#: index.cgi:295 +msgid "Run any command at your own risk, avoid interactive commands (%s)" +msgstr "" + +#: index.cgi:300 +msgid "Downloading to: %s" +msgstr "Laddar ner till: %s" + +#: index.cgi:309 +msgid "%s needs an argument" +msgstr "%s behöver ett argument" + +#: index.cgi:312 +msgid "Please, don't run interactive command \"%s\"" +msgstr "" + +#: index.cgi:330 styles/default/header.html:98 +msgid "Settings" +msgstr "Inställningar" + +#: index.cgi:400 +#, fuzzy +msgid "Terminal settings" +msgstr "System inställningar" + +#: index.cgi:421 +msgid "Font:" +msgstr "" + +#: index.cgi:423 +#, fuzzy +msgid "Default" +msgstr "Standard svar:" + +#: index.cgi:429 +msgid "Palette:" +msgstr "" + +#: index.cgi:435 +msgid "Apply" +msgstr "" + +#: index.cgi:445 index.cgi:631 +msgid "Process activity" +msgstr "Process aktivitet" + +#: index.cgi:450 +msgid "Refresh:" +msgstr "Ladda om:" + +#: index.cgi:453 +msgid "1s" +msgstr "1s" + +#: index.cgi:455 +msgid "5s" +msgstr "5s" + +#: index.cgi:457 +msgid "10s" +msgstr "10s" + +#: index.cgi:459 +msgid "none" +msgstr "ingen" + +#: index.cgi:473 +msgid "Debug" +msgstr "Debug" + +#: index.cgi:476 +msgid "HTTP Environment" +msgstr "HTTP Environment" + +#: index.cgi:488 +msgid "System report" +msgstr "System rapport" + +#: index.cgi:495 +msgid "Reporting to: %s" +msgstr "Rapporterar till: %s" + +#: index.cgi:498 +msgid "Creating report header..." +msgstr "Skapar rapport titel..." + +#: index.cgi:505 index.cgi:522 +msgid "SliTaz system report" +msgstr "SliTaz system rapport" + +#: index.cgi:519 +msgid "Creating system summary..." +msgstr "Skapar system sammanfattning..." + +#: index.cgi:523 +msgid "Date:" +msgstr "Datum:" + +#: index.cgi:534 +msgid "Getting hardware info..." +msgstr "Skaffar hårdvaruinformation..." + +#: index.cgi:552 +msgid "Getting networking info..." +msgstr "Skaffar nätverksinformation" + +#: index.cgi:566 +msgid "Getting filesystems info..." +msgstr "Skaffar filsystemsinformation..." + +#: index.cgi:586 +msgid "Getting boot logs..." +msgstr "Skaffar start loggar..." + +#: index.cgi:589 boot.cgi:99 styles/default/header.html:74 +msgid "Kernel messages" +msgstr "Meddelanden från kärnan" + +#: index.cgi:592 boot.cgi:100 styles/default/header.html:75 +msgid "Boot scripts" +msgstr "Start skript" + +#: index.cgi:597 +msgid "Creating report footer..." +msgstr "Skapar rapport fot..." + +#: index.cgi:608 index.cgi:704 boot.cgi:510 boot.cgi:512 +msgid "View" +msgstr "" + +#: index.cgi:613 +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 +msgid "SliTaz administration and configuration Panel" +msgstr "SliTaz administration och konfigurations panel" + +#: index.cgi:632 +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 +msgid "Summary" +msgstr "Summering" + +#: index.cgi:638 +#, fuzzy +msgid "Host:" +msgstr "Värdar" + +#: index.cgi:639 +msgid "Uptime:" +msgstr "Har varit igång i:" + +#: index.cgi:642 +msgid "Memory in Mb:" +msgstr "Minne i Mb:" + +#: index.cgi:644 +msgid "Total: %d, Used: %d, Free: %d" +msgstr "Totalt: %d, Använt: %d, Ledigt: %d" + +#: index.cgi:648 +msgid "Linux kernel:" +msgstr "Linux kärna:" + +#: index.cgi:657 +#, fuzzy +msgid "Network status" +msgstr "Nätverks status" + +#: index.cgi:659 network.cgi:15 network.cgi:215 styles/default/header.html:52 +msgid "Network" +msgstr "Nätverk" + +#: index.cgi:668 hardware.cgi:340 +msgid "Filesystem usage statistics" +msgstr "Filsystemsanvändning" + +#: index.cgi:670 styles/default/header.html:93 +msgid "Disks" +msgstr "" + +#: index.cgi:702 +msgid "Panel Activity" +msgstr "Panel Aktivitet" + +#: network.cgi:152 msgid "Changed hostname: %s" msgstr "Ändrat värdnamn: %s" -#: network.cgi:164 +#: network.cgi:209 msgid "Scanning open ports..." msgstr "Skannar öppna portar..." -#: network.cgi:169 +#: network.cgi:214 msgid "Port scanning for %s" msgstr "Port skanning för %s" -#: network.cgi:170 styles/default/header.html:33 -msgid "Network" -msgstr "Nätverk" - -#: network.cgi:197 +#: network.cgi:225 msgid "Ethernet connection" msgstr "Ethernet Anslutning" -#: network.cgi:200 +#: 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" @@ -123,51 +298,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:204 boot.cgi:112 +#: network.cgi:247 boot.cgi:152 msgid "Configuration" msgstr "Konfiguration" -#: network.cgi:209 lib/libtazpanel:154 +#: network.cgi:253 lib/libtazpanel:165 msgid "Interface" msgstr "Enhet" -#: network.cgi:217 +#: network.cgi:261 msgid "Static IP" msgstr "" -#: network.cgi:219 +#: network.cgi:263 msgid "Use static IP" msgstr "" -#: network.cgi:221 +#: network.cgi:265 msgid "IP address" msgstr "IP adress" -#: network.cgi:224 +#: network.cgi:268 msgid "Netmask" msgstr "Netmask" -#: network.cgi:227 +#: network.cgi:271 msgid "Gateway" msgstr "Gateway" -#: network.cgi:230 +#: network.cgi:274 msgid "DNS server" msgstr "DNS server" -#: network.cgi:237 network.cgi:396 network.cgi:594 boot.cgi:244 +#: network.cgi:277 network.cgi:297 +msgid "Wake up" +msgstr "" + +#: network.cgi:279 +msgid "Wake up machines by network" +msgstr "" + +#: network.cgi:281 +msgid "MAC address to wake up" +msgstr "" + +#: network.cgi:282 network.cgi:287 +msgid "Leave empty for a general wakeup" +msgstr "" + +#: network.cgi:283 +msgid "List" +msgstr "" + +#: network.cgi:286 +#, fuzzy +msgid "MAC/IP address password" +msgstr "Byt lösenord" + +#: network.cgi:288 +msgid "Help" +msgstr "" + +#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:292 msgid "Start" msgstr "Start" -#: network.cgi:238 network.cgi:397 network.cgi:595 boot.cgi:233 +#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:281 msgid "Stop" msgstr "Stop" -#: network.cgi:257 network.cgi:548 +#: network.cgi:321 network.cgi:591 msgid "Configuration file" msgstr "Konfigurations fil" -#: network.cgi:267 +#: network.cgi:331 msgid "" "These values are the ethernet settings in the main /etc/network.conf " "configuration file" @@ -175,688 +379,714 @@ "Dessa värden är ethernet inställningarna för \"/etc/network.conf\" " "konfigurations filen" -#: network.cgi:279 +#: network.cgi:343 msgid "(hidden)" msgstr "" -#: network.cgi:285 boot.cgi:110 hardware.cgi:38 settings.cgi:375 -#: lib/libtazpanel:155 +#: network.cgi:349 boot.cgi:150 hardware.cgi:57 lib/libtazpanel:166 msgid "Name" msgstr "Namn" -#: network.cgi:286 +#: network.cgi:350 msgid "Signal level" msgstr "" -#: network.cgi:287 +#: network.cgi:351 #, fuzzy msgid "Channel" msgstr "Ändra" -#: network.cgi:288 +#: network.cgi:352 msgid "Encryption" msgstr "Kryptering" -#: network.cgi:289 boot.cgi:113 lib/libtazpanel:156 +#: network.cgi:353 boot.cgi:153 lib/libtazpanel:167 msgid "Status" msgstr "Status" -#: network.cgi:340 network.cgi:436 network.cgi:458 +#: network.cgi:404 network.cgi:486 network.cgi:508 msgid "None" msgstr "" -#: network.cgi:353 +#: network.cgi:410 msgid "Connected" msgstr "Ansluten" -#: network.cgi:383 +#: network.cgi:436 msgid "Wireless connection" msgstr "Trådlös Anslutning" -#: network.cgi:398 lib/libtazpanel:139 +#: network.cgi:452 lib/libtazpanel:150 msgid "Scan" msgstr "Skanna" -#: network.cgi:406 +#: network.cgi:460 msgid "Scanning wireless interface..." msgstr "Skannar trådlös anslutning..." -#: network.cgi:424 +#: network.cgi:474 msgid "Connection" msgstr "Anslutning" -#: network.cgi:430 +#: network.cgi:480 #, fuzzy msgid "Network SSID" msgstr "Nätverk" -#: network.cgi:434 +#: network.cgi:484 msgid "Security" msgstr "" -#: network.cgi:445 +#: network.cgi:495 msgid "EAP method" msgstr "" -#: network.cgi:456 +#: network.cgi:506 msgid "Phase 2 authentication" msgstr "" -#: network.cgi:468 +#: network.cgi:518 msgid "CA certificate" msgstr "" -#: network.cgi:473 +#: network.cgi:523 msgid "User certificate" msgstr "" -#: network.cgi:478 +#: network.cgi:528 msgid "Identity" msgstr "" -#: network.cgi:483 +#: network.cgi:533 msgid "Anonymous identity" msgstr "" -#: network.cgi:488 +#: network.cgi:538 #, fuzzy msgid "Password" msgstr "Lösenord:" -#: network.cgi:491 +#: network.cgi:541 #, fuzzy msgid "Show password" msgstr "Nytt lösenord: " -#: network.cgi:501 -msgid "Access point" -msgstr "Åtkomst punkt" - -#: network.cgi:539 +#: network.cgi:582 msgid "Configure" msgstr "Konfigurera" -#: network.cgi:558 +#: network.cgi:601 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:564 +#: network.cgi:607 msgid "Output of iwconfig" msgstr "Svar från iwconfig" -#: network.cgi:587 -msgid "Networking" -msgstr "Nätverk" - -#: network.cgi:589 +#: network.cgi:616 msgid "Manage network connections and services" msgstr "Hantera nätverksanslutningar och tjänster" -#: network.cgi:596 +#: network.cgi:635 msgid "Restart" msgstr "Starta om" -#: network.cgi:600 +#: network.cgi:639 msgid "Configuration:" msgstr "Konfiguration:" -#: network.cgi:608 +#: network.cgi:647 #, fuzzy msgid "Network interfaces" msgstr "Nätverks status" -#: network.cgi:614 +#: network.cgi:654 +msgid "forward packets between interfaces" +msgstr "" + +#: network.cgi:656 network.cgi:690 boot.cgi:336 settings.cgi:608 +#: settings.cgi:722 +msgid "Change" +msgstr "Ändra" + +#: network.cgi:665 msgid "Hosts" msgstr "Värdar" -#: network.cgi:630 +#: network.cgi:682 msgid "Hostname" msgstr "Värdnamn" -#: boot.cgi:16 -msgid "TazPanel - Boot" -msgstr "TazPanel - Boot" +#: network.cgi:702 +msgid "Output of ifconfig" +msgstr "Svar av ifconfig" + +#: network.cgi:708 +msgid "Routing table" +msgstr "dirigeringsbord" + +#: network.cgi:715 +msgid "Domain name resolution" +msgstr "Domän namns upplösning" + +#: network.cgi:730 +msgid "ARP table" +msgstr "ARP bord" + +#: network.cgi:750 +msgid "Proxy" +msgstr "" + +#: network.cgi:751 +msgid "Add" +msgstr "" + +#: network.cgi:764 +msgid "IP Connections" +msgstr "IP Anslutningar" + +#: network.cgi:774 +msgid "Firewall" +msgstr "" + +#: boot.cgi:16 styles/default/header.html:62 +msgid "Boot" +msgstr "Boot" #: boot.cgi:27 msgid "Show more..." msgstr "Visa mer..." -#: boot.cgi:56 +#: boot.cgi:45 boot.cgi:492 styles/default/header.html:80 +#, fuzzy +msgid "System logs" +msgstr "System språk" + +#: boot.cgi:96 msgid "Boot log files" msgstr "Start log filer" -#: boot.cgi:59 styles/default/header.html:53 -msgid "Kernel messages" -msgstr "Meddelanden från kärnan" - -#: boot.cgi:60 styles/default/header.html:54 -msgid "Boot scripts" -msgstr "Start skript" - -#: boot.cgi:61 styles/default/header.html:55 +#: boot.cgi:101 styles/default/header.html:76 msgid "X server" msgstr "X server" -#: boot.cgi:62 styles/default/header.html:56 +#: boot.cgi:102 styles/default/header.html:77 msgid "X session" msgstr "" -#: boot.cgi:84 boot.cgi:347 styles/default/header.html:59 +#: boot.cgi:124 boot.cgi:493 styles/default/header.html:81 msgid "Manage daemons" msgstr "Hantera daemoner" -#: boot.cgi:86 +#: boot.cgi:126 msgid "Check, start and stop daemons on SliTaz" msgstr "Konstrollera, starta och stopa daemoner i SliTaz" -#: boot.cgi:111 hardware.cgi:153 settings.cgi:496 +#: boot.cgi:151 hardware.cgi:168 settings.cgi:434 msgid "Description" msgstr "Beskrivning" -#: boot.cgi:114 +#: boot.cgi:154 msgid "Action" msgstr "Handling" -#: boot.cgi:115 +#: boot.cgi:155 msgid "PID" msgstr "PID" -#: boot.cgi:138 +#: boot.cgi:180 msgid "SliTaz Firewall with iptable rules" msgstr "Slitaz Brandvägg med iptable regler" -#: boot.cgi:140 +#: boot.cgi:182 msgid "Small and fast web server with CGI support" msgstr "Liten och snabb webbserver med CGI stöd" -#: boot.cgi:142 +#: boot.cgi:185 msgid "Network time protocol daemon" msgstr "Nätverkstids protokoll daemon" -#: boot.cgi:145 +#: boot.cgi:188 msgid "Anonymous FTP server" msgstr "Anonymous FTP server" -#: boot.cgi:147 +#: boot.cgi:191 msgid "Busybox DHCP server" msgstr "Busybox DHCP server" -#: boot.cgi:149 +#: boot.cgi:194 msgid "Linux Kernel log daemon" msgstr "Linux Kärna log daemon" -#: boot.cgi:152 +#: boot.cgi:197 msgid "Execute scheduled commands" msgstr "Utför schemalagda kommandon" -#: boot.cgi:155 +#: boot.cgi:200 msgid "Small static DNS server daemon" msgstr "Liten statisk DNS server daemon" -#: boot.cgi:158 +#: boot.cgi:203 msgid "Transfer a file on tftp request" msgstr "Överför en fil via tftp begäran" -#: boot.cgi:160 +#: boot.cgi:206 +#, fuzzy +msgid "Printer daemon" +msgstr "Hantera daemoner" + +#: boot.cgi:208 msgid "Listen for network connections and launch programs" msgstr "Lysnna efter nätverksanslutningar och starta pogram" -#: boot.cgi:163 +#: boot.cgi:211 msgid "Manage a ZeroConf IPv4 link-local address" msgstr "Hantera en ZeroConf IPv4 link-lokal adress" -#: boot.cgi:232 +#: boot.cgi:280 msgid "Started" msgstr "Startade" -#: boot.cgi:243 +#: boot.cgi:291 msgid "Stopped" msgstr "Stannade" -#: boot.cgi:270 +#: boot.cgi:318 msgid "GRUB Boot loader" msgstr "GRUB Boot loader" -#: boot.cgi:272 +#: boot.cgi:320 msgid "The first application started when the computer powers on" msgstr "Den första applikationen startade när datorn startar" -#: boot.cgi:279 +#: boot.cgi:327 msgid "Default entry:" msgstr "Standard svar:" -#: boot.cgi:281 +#: boot.cgi:329 msgid "Timeout:" msgstr "Timeout:" -#: boot.cgi:283 +#: boot.cgi:331 msgid "Splash image:" msgstr "Splash image:" -#: boot.cgi:288 settings.cgi:557 settings.cgi:623 settings.cgi:694 -msgid "Change" -msgstr "Ändra" - -#: boot.cgi:295 +#: boot.cgi:343 msgid "View or edit menu.lst" msgstr "Visa eller ändra menu.lst" -#: boot.cgi:300 +#: boot.cgi:348 msgid "Boot entries" msgstr "Start up bidrag" -#: boot.cgi:307 +#: boot.cgi:355 msgid "Entry" msgstr "Bidrag" -#: boot.cgi:328 +#: boot.cgi:376 msgid "Web boot is available with gPXE" msgstr "Nät start är tillgänglig med gPXE" -#: boot.cgi:341 +#: boot.cgi:390 boot.cgi:496 styles/default/header.html:83 +msgid "ISO mine" +msgstr "" + +#: boot.cgi:486 msgid "Boot & Start services" msgstr "Starta & Starta tjänster" -#: boot.cgi:343 +#: boot.cgi:488 msgid "Everything that happens before user login" msgstr "Allting som händer innan användaren loggar in" -#: boot.cgi:346 styles/default/header.html:51 +#: boot.cgi:491 styles/default/header.html:72 msgid "Boot logs" msgstr "Start uo loggar" -#: boot.cgi:350 styles/default/header.html:48 +#: boot.cgi:499 styles/default/header.html:68 msgid "Boot loader" msgstr "Start laddare" -#: boot.cgi:357 +#: boot.cgi:506 msgid "Configuration files" msgstr "Configurations filer" -#: boot.cgi:360 +#: boot.cgi:509 msgid "Main configuration file:" msgstr "Huvud konfigureringsfil:" -#: boot.cgi:361 boot.cgi:363 -msgid "View" -msgstr "" - -#: boot.cgi:362 +#: boot.cgi:511 msgid "Login manager settings:" msgstr "Login hanterar inställningar:" -#: boot.cgi:370 +#: boot.cgi:519 msgid "Kernel cmdline" msgstr "Kärn kommando linje" -#: boot.cgi:377 +#: boot.cgi:526 msgid "Local startup commands" msgstr "Lokala start kommandon" -#: hardware.cgi:13 -msgid "TazPanel - Hardware" -msgstr "TazPanel - Hårdava" +#: hardware.cgi:13 styles/default/header.html:88 +msgid "Hardware" +msgstr "Hårdava" -#: hardware.cgi:35 +#: hardware.cgi:54 msgid "Bus" msgstr "" -#: hardware.cgi:36 hardware.cgi:509 +#: hardware.cgi:55 hardware.cgi:525 msgid "Device" msgstr "" -#: hardware.cgi:37 +#: hardware.cgi:56 #, fuzzy msgid "ID" msgstr "PID" -#: hardware.cgi:90 +#: hardware.cgi:108 msgid "Detect hardware" msgstr "Upptäck hårdvara" -#: hardware.cgi:91 +#: hardware.cgi:110 msgid "Detect PCI and USB hardware" msgstr "Upptäck PCI och USB hårdvara" -#: hardware.cgi:104 hardware.cgi:225 styles/default/header.html:67 +#: hardware.cgi:118 hardware.cgi:239 styles/default/header.html:91 msgid "Kernel modules" msgstr "Kärn moduler" -#: hardware.cgi:105 +#: hardware.cgi:120 msgid "Manage, search or get information about the Linux kernel modules" msgstr "Hantera, sök eller samla information om Linux kärnmoduler" -#: hardware.cgi:109 +#: hardware.cgi:124 msgid "Modules search" msgstr "Moduler sökning" -#: hardware.cgi:117 +#: hardware.cgi:132 msgid "Detailed information for module: %s" msgstr "Detaljerad information för modul: %s" -#: hardware.cgi:137 +#: hardware.cgi:152 msgid "Matching result(s) for: %s" msgstr "Matchande resultat för: %s" -#: hardware.cgi:143 +#: hardware.cgi:158 msgid "Module:" msgstr "Modul:" -#: hardware.cgi:152 +#: hardware.cgi:167 msgid "Module" msgstr "Modul" -#: hardware.cgi:154 lib/libtazpanel:285 +#: hardware.cgi:169 hardware.cgi:527 lib/libtazpanel:295 msgid "Size" msgstr "Storlek" -#: hardware.cgi:155 hardware.cgi:563 lib/libtazpanel:287 +#: hardware.cgi:170 hardware.cgi:584 lib/libtazpanel:297 msgid "Used" msgstr "Använd" -#: hardware.cgi:156 +#: hardware.cgi:171 msgid "by" msgstr "av" -#: hardware.cgi:180 +#: hardware.cgi:195 msgid "Information for USB Device %s" msgstr "" -#: hardware.cgi:182 hardware.cgi:200 +#: hardware.cgi:197 hardware.cgi:215 msgid "Detailed information about specified device." msgstr "" -#: hardware.cgi:198 +#: hardware.cgi:213 msgid "Information for PCI Device %s" msgstr "" -#: hardware.cgi:221 +#: hardware.cgi:234 msgid "Drivers & Devices" msgstr "Drivrutiner & Enheter" -#: hardware.cgi:222 +#: hardware.cgi:236 msgid "Manage your computer hardware" msgstr "Hantera din dators hårdvara" -#: hardware.cgi:226 styles/default/header.html:68 +#: hardware.cgi:240 styles/default/header.html:92 msgid "Detect PCI/USB" msgstr "Upptäckt PCI/USB" -#: hardware.cgi:227 +#: hardware.cgi:241 msgid "Auto-install Xorg video driver" msgstr "" -#: hardware.cgi:237 hardware.cgi:254 +#: hardware.cgi:251 hardware.cgi:268 msgid "Battery" msgstr "Batteri" -#: hardware.cgi:257 +#: hardware.cgi:271 msgid "health" msgstr "hälsa" -#: hardware.cgi:266 +#: hardware.cgi:280 msgid "Discharging %d%% - %s" msgstr "Laddar ur %d%% - %s" -#: hardware.cgi:270 -#, sh-format +#: hardware.cgi:284 msgid "Charging %d%% - %s" msgstr "Laddar %d%% - %s" -#: hardware.cgi:272 +#: hardware.cgi:286 #, fuzzy msgid "Charged 100%%" msgstr "Laddad 100%%" -#: hardware.cgi:291 +#: hardware.cgi:305 msgid "Temperature:" msgstr "Temperatur:" -#: hardware.cgi:306 +#: hardware.cgi:320 msgid "Brightness" msgstr "Ljusstyrka" -#: hardware.cgi:326 -msgid "Filesystem usage statistics" -msgstr "Filsystemsanvändning" - -#: hardware.cgi:446 +#: hardware.cgi:462 #, fuzzy msgid "new mount point:" msgstr "Monteringspunkt" -#: hardware.cgi:447 +#: hardware.cgi:463 msgid "read-only" msgstr "" -#: hardware.cgi:462 +#: hardware.cgi:478 msgid "Filesystems table" msgstr "" -#: hardware.cgi:475 lib/libtazpanel:282 +#: hardware.cgi:491 lib/libtazpanel:292 msgid "Disk" msgstr "Disk" -#: hardware.cgi:476 lib/libtazpanel:288 +#: hardware.cgi:492 lib/libtazpanel:298 msgid "Mount point" msgstr "Monteringspunkt" -#: hardware.cgi:477 lib/libtazpanel:284 +#: hardware.cgi:493 lib/libtazpanel:294 msgid "Type" msgstr "Sort" -#: hardware.cgi:478 +#: hardware.cgi:494 #, fuzzy msgid "Options" msgstr "Handling" -#: hardware.cgi:479 +#: hardware.cgi:495 msgid "Freq" msgstr "" -#: hardware.cgi:480 +#: hardware.cgi:496 #, fuzzy msgid "Pass" msgstr "Lösenord:" -#: hardware.cgi:502 +#: hardware.cgi:518 msgid "Loop devices" msgstr "" -#: hardware.cgi:510 +#: hardware.cgi:526 #, fuzzy msgid "Backing file" msgstr "Konfigurerings fil" -#: hardware.cgi:511 +#: hardware.cgi:528 #, fuzzy msgid "Access" msgstr "Åtkomst punkt" -#: hardware.cgi:512 +#: hardware.cgi:529 msgid "Offset" msgstr "" -#: hardware.cgi:520 +#: hardware.cgi:538 msgid "read/write" msgstr "" -#: hardware.cgi:521 hardware.cgi:543 +#: hardware.cgi:539 hardware.cgi:564 msgid "read only" msgstr "" -#: hardware.cgi:540 +#: hardware.cgi:561 msgid "Setup" msgstr "" -#: hardware.cgi:541 +#: hardware.cgi:562 msgid "new backing file:" msgstr "" -#: hardware.cgi:542 +#: hardware.cgi:563 msgid "offset in bytes:" msgstr "" -#: hardware.cgi:560 +#: hardware.cgi:581 msgid "System memory" msgstr "System minne" -#: hardware.cgi:566 +#: hardware.cgi:587 msgid "Buffers" msgstr "" -#: hardware.cgi:569 +#: hardware.cgi:590 msgid "Free" msgstr "" -#: settings.cgi:17 -msgid "TazPanel - Settings" -msgstr "TazPanel - Inställningar" +#: settings.cgi:16 +msgid "System settings" +msgstr "System inställningar" -#: settings.cgi:83 -msgid "US" +#: settings.cgi:82 settings.cgi:621 settings.cgi:648 settings.cgi:653 +msgid "Set date" msgstr "" -#: settings.cgi:85 -msgid "metric" -msgstr "" - -#: settings.cgi:266 settings.cgi:544 +#: settings.cgi:208 settings.cgi:595 msgid "Manage groups" msgstr "" -#: settings.cgi:273 settings.cgi:364 +#: settings.cgi:216 settings.cgi:293 msgid "Selection:" msgstr "Val:" -#: settings.cgi:274 +#: settings.cgi:217 msgid "Delete group" msgstr "" -#: settings.cgi:281 +#: settings.cgi:224 msgid "Group" msgstr "" -#: settings.cgi:282 +#: settings.cgi:225 msgid "Group ID" msgstr "" -#: settings.cgi:283 +#: settings.cgi:226 msgid "Members" msgstr "" -#: settings.cgi:312 +#: settings.cgi:253 msgid "Add a new group" msgstr "" -#: settings.cgi:316 settings.cgi:333 +#: settings.cgi:256 settings.cgi:268 msgid "Group name:" msgstr "" -#: settings.cgi:320 +#: settings.cgi:257 msgid "Create group" msgstr "" -#: settings.cgi:328 +#: settings.cgi:264 msgid "Manage group membership" msgstr "" -#: settings.cgi:335 settings.cgi:427 +#: settings.cgi:269 settings.cgi:356 msgid "User name:" msgstr "" -#: settings.cgi:340 +#: settings.cgi:272 msgid "Add user" msgstr "" -#: settings.cgi:343 +#: settings.cgi:273 msgid "Remove user" msgstr "" -#: settings.cgi:359 settings.cgi:543 +#: settings.cgi:286 settings.cgi:594 msgid "Manage users" msgstr "Hantera användare" -#: settings.cgi:365 +#: settings.cgi:294 msgid "Delete user" msgstr "Ta bort användare" -#: settings.cgi:366 +#: settings.cgi:295 msgid "Lock user" msgstr "Lås användare" -#: settings.cgi:367 +#: settings.cgi:296 msgid "Unlock user" msgstr "Lås upp användare" -#: settings.cgi:373 +#: settings.cgi:302 msgid "Login" msgstr "Logga in" -#: settings.cgi:374 +#: settings.cgi:303 msgid "User ID" msgstr "Användar ID" -#: settings.cgi:376 +#: settings.cgi:304 +#, fuzzy +msgid "User Name" +msgstr "Användar ID" + +#: settings.cgi:305 msgid "Home" msgstr "Hem" -#: settings.cgi:377 +#: settings.cgi:306 msgid "Shell" msgstr "Shell" -#: settings.cgi:410 +#: settings.cgi:340 msgid "Password:" msgstr "Lösenord:" -#: settings.cgi:412 +#: settings.cgi:342 msgid "Change password" msgstr "Byt lösenord" -#: settings.cgi:420 +#: settings.cgi:349 msgid "Add a new user" msgstr "Lägg till ny användare" -#: settings.cgi:425 +#: settings.cgi:354 msgid "User login:" msgstr "Användar inloggning:" -#: settings.cgi:429 +#: settings.cgi:358 msgid "User password:" msgstr "Användar lösenord:" -#: settings.cgi:434 +#: settings.cgi:363 msgid "Create user" msgstr "Skapa användare" -#: settings.cgi:441 +#: settings.cgi:373 msgid "Current user sessions" msgstr "Nuvarande användarsessioner" -#: settings.cgi:447 +#: settings.cgi:383 msgid "Last user sessions" msgstr "Senaste användar sessioner" -#: settings.cgi:458 +#: settings.cgi:395 +msgid "Choose locale" +msgstr "Välj språk" + +#: settings.cgi:398 msgid "Please wait..." msgstr "Var god vänta..." -#: settings.cgi:462 -msgid "Choose locale" -msgstr "Välj språk" - -#: settings.cgi:465 +#: settings.cgi:403 msgid "Current locale settings:" msgstr "Nuvarande språkinställningar:" -#: settings.cgi:472 +#: settings.cgi:410 msgid "Locales that are currently installed on the machine:" msgstr "Språk som är nuvarande installerade på maskinen:" -#: settings.cgi:482 +#: settings.cgi:420 #, 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:489 +#: settings.cgi:427 msgid "Available locales:" msgstr "Tillgängliga språk:" -#: settings.cgi:493 +#: settings.cgi:431 msgid "Code" msgstr "Kod" -#: settings.cgi:494 +#: settings.cgi:432 msgid "Language" msgstr "Språk" -#: settings.cgi:495 +#: settings.cgi:433 msgid "Territory" msgstr "Territorium" -#: settings.cgi:512 settings.cgi:513 +#: settings.cgi:450 settings.cgi:451 msgid "-d" msgstr "-d" -#: settings.cgi:524 settings.cgi:666 settings.cgi:677 settings.cgi:689 +#: settings.cgi:462 settings.cgi:765 settings.cgi:776 settings.cgi:788 msgid "Activate" msgstr "Aktivera" +#: settings.cgi:474 settings.cgi:497 +msgid "Small quick tweaks for user %s" +msgstr "" + +#: settings.cgi:500 +#, fuzzy +msgid "Terminal prompt" +msgstr "Terminal" + +#: settings.cgi:506 +msgid "Monochrome" +msgstr "" + +#: settings.cgi:515 +msgid "Colored" +msgstr "" + +#: settings.cgi:524 settings.cgi:572 +#, fuzzy +msgid "Manual edit: %s" +msgstr "Manuell Ändring" + +#: settings.cgi:525 +msgid "" +"To take effect: log out and log in to system or execute command in the " +"terminal:" +msgstr "" + +#: settings.cgi:533 +msgid "Menu button appearance" +msgstr "" + #: settings.cgi:538 -msgid "System settings" -msgstr "System inställningar" +msgid "Icon:" +msgstr "" -#: settings.cgi:540 +#: settings.cgi:541 settings.cgi:562 +msgid "Do not show" +msgstr "" + +#: settings.cgi:559 +msgid "Text:" +msgstr "" + +#: settings.cgi:566 +msgid "Show text" +msgstr "" + +#: settings.cgi:589 msgid "Manage system time, users or language settings" msgstr "Hantera system tid, användare eller språk inställningar" -#: settings.cgi:548 +#: settings.cgi:599 msgid "System time" msgstr "System tid" -#: settings.cgi:551 +#: settings.cgi:602 msgid "Time zone:" msgstr "Tid zon:" -#: settings.cgi:560 +#: settings.cgi:611 msgid "System time:" msgstr "System tid:" -#: settings.cgi:562 +#: settings.cgi:613 msgid "Sync online" msgstr "Synkronisera online" -#: settings.cgi:565 +#: settings.cgi:616 msgid "Hardware clock:" msgstr "Hårdvaru klocka:" -#: settings.cgi:567 +#: settings.cgi:618 msgid "Set hardware clock" msgstr "Ställ in hårdvaru klocka" -#: settings.cgi:570 settings.cgi:582 -msgid "Set date" -msgstr "" - -#: settings.cgi:605 +#: settings.cgi:704 msgid "System language" msgstr "System språk" -#: settings.cgi:618 +#: settings.cgi:717 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:621 +#: settings.cgi:720 msgid "Current system locale:" msgstr "Nuvarande system språk:" -#: settings.cgi:633 +#: settings.cgi:732 msgid "Keyboard layout" msgstr "" -#: settings.cgi:647 +#: settings.cgi:746 msgid "Current console keymap: %s" msgstr "Nuvarande tangentbordsspråk: %s" -#: settings.cgi:665 +#: settings.cgi:764 msgid "Suggested keymap for Xorg:" msgstr "Föreslaget tangentbordsspråk för Xorg:" -#: settings.cgi:673 +#: settings.cgi:772 msgid "Available keymaps:" msgstr "Tillgängliga tangentbordsspråk:" -#: settings.cgi:684 +#: settings.cgi:783 msgid "Panel configuration" msgstr "Panel konfiguration" -#: settings.cgi:687 +#: settings.cgi:786 msgid "Style:" msgstr "Stil:" -#: settings.cgi:692 -msgid "Panel password:" -msgstr "Panel lösenord:" - -#: settings.cgi:698 +#: settings.cgi:792 msgid "Configuration files:" msgstr "Konfigurations filer:" -#: settings.cgi:699 styles/default/header.html:23 +#: settings.cgi:793 styles/default/header.html:42 msgid "Panel" msgstr "Panel" -#: settings.cgi:700 +#: settings.cgi:794 msgid "Server" msgstr "Server" -#: settings.cgi:703 +#: settings.cgi:797 #, fuzzy msgid "TazPanel provides a debugging mode and page:" msgstr "TazPanel förser ett debugging läge och sida:" -#: lib/libtazpanel:137 +#: lib/libtazpanel:153 msgid "connected" msgstr "ansluten" -#: lib/libtazpanel:157 +#: lib/libtazpanel:168 msgid "IP Address" msgstr "IP adress" -#: lib/libtazpanel:158 +#: lib/libtazpanel:169 msgid "Scan ports" msgstr "Skanna portar" -#: lib/libtazpanel:283 +#: lib/libtazpanel:241 +#, fuzzy +msgid "Please wait" +msgstr "Var god vänta..." + +#: lib/libtazpanel:293 msgid "Label" msgstr "Etikett" -#: lib/libtazpanel:286 +#: lib/libtazpanel:296 msgid "Available" msgstr "Tillgängligt" -#: lib/libtazpanel:353 +#: lib/libtazpanel:367 msgid "You must be root to show this page." msgstr "" @@ -1015,188 +1286,99 @@ msgstr "Manual" #: help.cgi:28 -msgid "TazPanel - Help & Doc" -msgstr "TazPanel - Hjälp & Dokument" +msgid "Help & Doc" +msgstr "Hjälp & Dokument" -#: styles/default/header.html:25 styles/default/header.html:35 -#: styles/default/header.html:45 styles/default/header.html:66 -#: styles/default/header.html:76 -msgid "Summary" -msgstr "Summering" +#: styles/default/header.html:32 +#, fuzzy +msgid "Confirm break" +msgstr "Konfigurera" -#: styles/default/header.html:26 +#: styles/default/header.html:45 msgid "Processes" msgstr "Processer" -#: styles/default/header.html:27 -msgid "Terminal" -msgstr "Terminal" - -#: styles/default/header.html:28 +#: styles/default/header.html:47 msgid "Create Report" msgstr "Skapa Rapport" -#: styles/default/header.html:36 +#: styles/default/header.html:55 msgid "Config file" msgstr "Konfigurerings fil" -#: styles/default/header.html:37 +#: styles/default/header.html:56 msgid "Ethernet" msgstr "Ethernet" -#: styles/default/header.html:38 +#: styles/default/header.html:57 msgid "Wireless" msgstr "Trådlöst" -#: styles/default/header.html:43 -msgid "Boot" -msgstr "Start" - -#: styles/default/header.html:64 -msgid "Hardware" -msgstr "Hårdvara" - -#: styles/default/header.html:69 -msgid "Disks" -msgstr "" - -#: styles/default/header.html:74 -msgid "Settings" -msgstr "Inställningar" - -#: styles/default/header.html:77 +#: styles/default/header.html:101 msgid "Users" msgstr "Användare" -#: styles/default/header.html:78 +#: styles/default/header.html:102 msgid "Groups" msgstr "" -#: styles/default/header.html:93 +#: styles/default/header.html:103 +msgid "Tweaks" +msgstr "" + +#: styles/default/header.html:119 msgid "Some features are disabled." msgstr "" -#: styles/default/header.html:98 +#: styles/default/header.html:124 msgid "You are logged in to the TazPanel as user %s." msgstr "" -#: styles/default/header.html:99 +#: styles/default/header.html:125 msgid "Click to re-login." msgstr "" -#: styles/default/footer.html:7 +#: styles/default/header.html:135 msgid "Copyright" msgstr "Copyright" -#: styles/default/footer.html:9 +#: styles/default/header.html:137 msgid "BSD License" msgstr "BSD License" +#~ msgid "Networking" +#~ msgstr "Nätverk" + +#~ 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" + +#~ msgid "Access point" +#~ msgstr "Åtkomst punkt" + +#~ msgid "Panel password:" +#~ msgstr "Panel lösenord:" + #~ msgid "Small terminal emulator, commands options are supported." #~ msgstr "Liten terminalemulator, kommando val är stödda." #~ msgid "Commands: %s" #~ msgstr "Kommandon: %s" -#~ msgid "Downloading to: %s" -#~ msgstr "Laddar ner till: %s" - -#~ msgid "%s needs an argument" -#~ msgstr "%s behöver ett argument" - #~ msgid "Unknown command: %s" #~ msgstr "Okänt kommando: %s" -#~ msgid "TazPanel - Process activity" -#~ msgstr "TazPanel - Process aktivitet" - -#~ msgid "Refresh:" -#~ msgstr "Ladda om:" - -#~ msgid "1s" -#~ msgstr "1s" - -#~ msgid "5s" -#~ msgstr "5s" - -#~ msgid "10s" -#~ msgstr "10s" - -#~ msgid "none" -#~ msgstr "ingen" - -#~ msgid "TazPanel - Debug" -#~ msgstr "TazPanel - Debug" - -#~ msgid "HTTP Environment" -#~ msgstr "HTTP Environment" - -#~ msgid "TazPanel - System report" -#~ msgstr "TazPanel - System rapport" - -#~ msgid "Reporting to: %s" -#~ msgstr "Rapporterar till: %s" - -#~ msgid "Creating report header..." -#~ msgstr "Skapar rapport titel..." - -#~ msgid "SliTaz system report" -#~ msgstr "SliTaz system rapport" - -#~ msgid "Creating system summary..." -#~ msgstr "Skapar system sammanfattning..." - -#~ msgid "Date:" -#~ msgstr "Datum:" - -#~ msgid "Getting hardware info..." -#~ msgstr "Skaffar hårdvaruinformation..." - -#~ msgid "Getting networking info..." -#~ msgstr "Skaffar nätverksinformation" - -#~ msgid "Getting filesystems info..." -#~ msgstr "Skaffar filsystemsinformation..." - -#~ msgid "Getting boot logs..." -#~ msgstr "Skaffar start loggar..." - -#~ msgid "Creating report footer..." -#~ msgstr "Skapar rapport fot..." - #~ msgid "View report" #~ msgstr "Visa rapport" -#~ msgid "This report can be attached with a bug report on:" -#~ msgstr "Den här rapporten kan bifogas med en bug rapport på:" - #~ msgid "Host: %s" #~ msgstr "Host: %s" -#~ msgid "SliTaz administration and configuration Panel" -#~ msgstr "SliTaz administration och konfigurations panel" - -#~ msgid "Process activity" -#~ msgstr "Process aktivitet" - -#~ msgid "Create a report" -#~ msgstr "Skapa en rapport" - -#~ msgid "Uptime:" -#~ msgstr "Har varit igång i:" - -#~ msgid "Memory in Mb:" -#~ msgstr "Minne i Mb:" - -#~ msgid "Total: %d, Used: %d, Free: %d" -#~ msgstr "Totalt: %d, Använt: %d, Ledigt: %d" - -#~ msgid "Linux kernel:" -#~ msgstr "Linux kärna:" - -#~ msgid "Panel Activity" -#~ msgstr "Panel Aktivitet" - #~ msgid "Quality" #~ msgstr "Kvalité" @@ -1215,9 +1397,6 @@ #~ msgid "Disable" #~ msgstr "Inaktivera" -#~ msgid "Manual Edit" -#~ msgstr "Manuell Ändring" - #~ msgid "Wifi name (ESSID)" #~ msgstr "WIFI namn (ESSID)" @@ -1233,21 +1412,6 @@ #~ msgid "Change hostname" #~ msgstr "Ändra värdnamn" -#~ msgid "Output of ifconfig" -#~ msgstr "Svar av ifconfig" - -#~ msgid "Routing table" -#~ msgstr "dirigeringsbord" - -#~ msgid "Domain name resolution" -#~ msgstr "Domän namns upplösning" - -#~ msgid "ARP table" -#~ msgstr "ARP bord" - -#~ msgid "IP Connections" -#~ msgstr "IP Anslutningar" - #~ msgid "Edit script" #~ msgstr "Ändra skript" diff -r f8ff472846c2 -r 3117717c007d po/tazpanel.pot --- a/po/tazpanel.pot Sat Jun 06 12:38:24 2015 +0200 +++ b/po/tazpanel.pot Mon Jun 08 04:32:19 2015 +0300 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: TazPanel 1.8.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-09 22:58+0200\n" +"POT-Creation-Date: 2015-06-05 20:42+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,971 +17,1231 @@ "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: tazpanel:53 +#: tazpanel:52 msgid "TazPanel is already running." msgstr "" -#: tazpanel:56 +#: tazpanel:55 msgid "Starting TazPanel web server on port %d..." msgstr "" -#: tazpanel:58 +#: tazpanel:57 msgid "TazPanel Authentication - Default: root:root" msgstr "" -#: tazpanel:65 +#: tazpanel:64 msgid "TazPanel is not running." msgstr "" -#: tazpanel:68 +#: tazpanel:67 msgid "Stopping TazPanel web server..." msgstr "" -#: tazpanel:76 -msgid "Changing password for TazPanel" -msgstr "" - -#: tazpanel:77 -msgid "New password: " -msgstr "" - -#: tazpanel:79 -msgid "Password changed successfully" -msgstr "" - -#: index.cgi:37 index.cgi:131 +#: index.cgi:37 index.cgi:120 msgid "Differences" msgstr "" -#: index.cgi:88 -msgid "TazPanel - exec" +#: index.cgi:76 +msgid "exec" msgstr "" -#: index.cgi:120 -msgid "TazPanel - File" +#: index.cgi:109 +msgid "File" msgstr "" -#: index.cgi:130 index.cgi:149 +#: index.cgi:119 index.cgi:138 index.cgi:176 msgid "Save" msgstr "" -#: index.cgi:184 network.cgi:262 network.cgi:553 network.cgi:621 boot.cgi:382 -#: hardware.cgi:467 settings.cgi:667 +#: index.cgi:174 network.cgi:326 network.cgi:596 network.cgi:670 +#: network.cgi:720 boot.cgi:531 hardware.cgi:483 settings.cgi:766 msgid "Edit" msgstr "" -#: index.cgi:228 -msgid "TazPanel - Terminal" +#: index.cgi:225 index.cgi:379 index.cgi:402 index.cgi:630 +#: styles/default/header.html:46 +msgid "Terminal" msgstr "" -#: index.cgi:249 +#: index.cgi:246 index.cgi:331 msgid "History" msgstr "" -#: index.cgi:250 lib/libtazpanel:334 +#: index.cgi:247 lib/libtazpanel:348 msgid "Back" msgstr "" -#: index.cgi:256 +#: index.cgi:254 msgid "run" msgstr "" -#: index.cgi:271 +#: index.cgi:270 msgid "Clear" msgstr "" -#: network.cgi:15 -msgid "TazPanel - Network" +#: index.cgi:294 +msgid "Small non-interactive terminal emulator." msgstr "" -#: network.cgi:141 +#: index.cgi:295 +msgid "Run any command at your own risk, avoid interactive commands (%s)" +msgstr "" + +#: index.cgi:300 +msgid "Downloading to: %s" +msgstr "" + +#: index.cgi:309 +msgid "%s needs an argument" +msgstr "" + +#: index.cgi:312 +msgid "Please, don't run interactive command \"%s\"" +msgstr "" + +#: index.cgi:330 styles/default/header.html:98 +msgid "Settings" +msgstr "" + +#: index.cgi:400 +msgid "Terminal settings" +msgstr "" + +#: index.cgi:421 +msgid "Font:" +msgstr "" + +#: index.cgi:423 +msgid "Default" +msgstr "" + +#: index.cgi:429 +msgid "Palette:" +msgstr "" + +#: index.cgi:435 +msgid "Apply" +msgstr "" + +#: index.cgi:445 index.cgi:631 +msgid "Process activity" +msgstr "" + +#: index.cgi:450 +msgid "Refresh:" +msgstr "" + +#: index.cgi:453 +msgid "1s" +msgstr "" + +#: index.cgi:455 +msgid "5s" +msgstr "" + +#: index.cgi:457 +msgid "10s" +msgstr "" + +#: index.cgi:459 +msgid "none" +msgstr "" + +#: index.cgi:473 +msgid "Debug" +msgstr "" + +#: index.cgi:476 +msgid "HTTP Environment" +msgstr "" + +#: index.cgi:488 +msgid "System report" +msgstr "" + +#: index.cgi:495 +msgid "Reporting to: %s" +msgstr "" + +#: index.cgi:498 +msgid "Creating report header..." +msgstr "" + +#: index.cgi:505 index.cgi:522 +msgid "SliTaz system report" +msgstr "" + +#: index.cgi:519 +msgid "Creating system summary..." +msgstr "" + +#: index.cgi:523 +msgid "Date:" +msgstr "" + +#: index.cgi:534 +msgid "Getting hardware info..." +msgstr "" + +#: index.cgi:552 +msgid "Getting networking info..." +msgstr "" + +#: index.cgi:566 +msgid "Getting filesystems info..." +msgstr "" + +#: index.cgi:586 +msgid "Getting boot logs..." +msgstr "" + +#: index.cgi:589 boot.cgi:99 styles/default/header.html:74 +msgid "Kernel messages" +msgstr "" + +#: index.cgi:592 boot.cgi:100 styles/default/header.html:75 +msgid "Boot scripts" +msgstr "" + +#: index.cgi:597 +msgid "Creating report footer..." +msgstr "" + +#: index.cgi:608 index.cgi:704 boot.cgi:510 boot.cgi:512 +msgid "View" +msgstr "" + +#: index.cgi:613 +msgid "This report can be attached with a bug report on:" +msgstr "" + +#: index.cgi:623 +msgid "SliTaz administration and configuration Panel" +msgstr "" + +#: index.cgi:632 +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 +msgid "Summary" +msgstr "" + +#: index.cgi:638 +msgid "Host:" +msgstr "" + +#: index.cgi:639 +msgid "Uptime:" +msgstr "" + +#: index.cgi:642 +msgid "Memory in Mb:" +msgstr "" + +#: index.cgi:644 +msgid "Total: %d, Used: %d, Free: %d" +msgstr "" + +#: index.cgi:648 +msgid "Linux kernel:" +msgstr "" + +#: index.cgi:657 +msgid "Network status" +msgstr "" + +#: index.cgi:659 network.cgi:15 network.cgi:215 styles/default/header.html:52 +msgid "Network" +msgstr "" + +#: index.cgi:668 hardware.cgi:340 +msgid "Filesystem usage statistics" +msgstr "" + +#: index.cgi:670 styles/default/header.html:93 +msgid "Disks" +msgstr "" + +#: index.cgi:702 +msgid "Panel Activity" +msgstr "" + +#: network.cgi:152 msgid "Changed hostname: %s" msgstr "" -#: network.cgi:164 +#: network.cgi:209 msgid "Scanning open ports..." msgstr "" -#: network.cgi:169 +#: network.cgi:214 msgid "Port scanning for %s" msgstr "" -#: network.cgi:170 styles/default/header.html:33 -msgid "Network" -msgstr "" - -#: network.cgi:197 +#: network.cgi:225 msgid "Ethernet connection" msgstr "" -#: network.cgi:200 +#: 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 "" -#: network.cgi:204 boot.cgi:112 +#: network.cgi:247 boot.cgi:152 msgid "Configuration" msgstr "" -#: network.cgi:209 lib/libtazpanel:154 +#: network.cgi:253 lib/libtazpanel:165 msgid "Interface" msgstr "" -#: network.cgi:217 +#: network.cgi:261 msgid "Static IP" msgstr "" -#: network.cgi:219 +#: network.cgi:263 msgid "Use static IP" msgstr "" -#: network.cgi:221 +#: network.cgi:265 msgid "IP address" msgstr "" -#: network.cgi:224 +#: network.cgi:268 msgid "Netmask" msgstr "" -#: network.cgi:227 +#: network.cgi:271 msgid "Gateway" msgstr "" -#: network.cgi:230 +#: network.cgi:274 msgid "DNS server" msgstr "" -#: network.cgi:237 network.cgi:396 network.cgi:594 boot.cgi:244 +#: network.cgi:277 network.cgi:297 +msgid "Wake up" +msgstr "" + +#: network.cgi:279 +msgid "Wake up machines by network" +msgstr "" + +#: network.cgi:281 +msgid "MAC address to wake up" +msgstr "" + +#: network.cgi:282 network.cgi:287 +msgid "Leave empty for a general wakeup" +msgstr "" + +#: network.cgi:283 +msgid "List" +msgstr "" + +#: network.cgi:286 +msgid "MAC/IP address password" +msgstr "" + +#: network.cgi:288 +msgid "Help" +msgstr "" + +#: network.cgi:295 network.cgi:450 network.cgi:633 boot.cgi:292 msgid "Start" msgstr "" -#: network.cgi:238 network.cgi:397 network.cgi:595 boot.cgi:233 +#: network.cgi:296 network.cgi:451 network.cgi:634 boot.cgi:281 msgid "Stop" msgstr "" -#: network.cgi:257 network.cgi:548 +#: network.cgi:321 network.cgi:591 msgid "Configuration file" msgstr "" -#: network.cgi:267 +#: network.cgi:331 msgid "" "These values are the ethernet settings in the main /etc/network.conf " "configuration file" msgstr "" -#: network.cgi:279 +#: network.cgi:343 msgid "(hidden)" msgstr "" -#: network.cgi:285 boot.cgi:110 hardware.cgi:38 settings.cgi:375 -#: lib/libtazpanel:155 +#: network.cgi:349 boot.cgi:150 hardware.cgi:57 lib/libtazpanel:166 msgid "Name" msgstr "" -#: network.cgi:286 +#: network.cgi:350 msgid "Signal level" msgstr "" -#: network.cgi:287 +#: network.cgi:351 msgid "Channel" msgstr "" -#: network.cgi:288 +#: network.cgi:352 msgid "Encryption" msgstr "" -#: network.cgi:289 boot.cgi:113 lib/libtazpanel:156 +#: network.cgi:353 boot.cgi:153 lib/libtazpanel:167 msgid "Status" msgstr "" -#: network.cgi:340 network.cgi:436 network.cgi:458 +#: network.cgi:404 network.cgi:486 network.cgi:508 msgid "None" msgstr "" -#: network.cgi:353 +#: network.cgi:410 msgid "Connected" msgstr "" -#: network.cgi:383 +#: network.cgi:436 msgid "Wireless connection" msgstr "" -#: network.cgi:398 lib/libtazpanel:139 +#: network.cgi:452 lib/libtazpanel:150 msgid "Scan" msgstr "" -#: network.cgi:406 +#: network.cgi:460 msgid "Scanning wireless interface..." msgstr "" -#: network.cgi:424 +#: network.cgi:474 msgid "Connection" msgstr "" -#: network.cgi:430 +#: network.cgi:480 msgid "Network SSID" msgstr "" -#: network.cgi:434 +#: network.cgi:484 msgid "Security" msgstr "" -#: network.cgi:445 +#: network.cgi:495 msgid "EAP method" msgstr "" -#: network.cgi:456 +#: network.cgi:506 msgid "Phase 2 authentication" msgstr "" -#: network.cgi:468 +#: network.cgi:518 msgid "CA certificate" msgstr "" -#: network.cgi:473 +#: network.cgi:523 msgid "User certificate" msgstr "" -#: network.cgi:478 +#: network.cgi:528 msgid "Identity" msgstr "" -#: network.cgi:483 +#: network.cgi:533 msgid "Anonymous identity" msgstr "" -#: network.cgi:488 +#: network.cgi:538 msgid "Password" msgstr "" -#: network.cgi:491 +#: network.cgi:541 msgid "Show password" msgstr "" -#: network.cgi:501 -msgid "Access point" -msgstr "" - -#: network.cgi:539 +#: network.cgi:582 msgid "Configure" msgstr "" -#: network.cgi:558 +#: network.cgi:601 msgid "" "These values are the wifi settings in the main /etc/network.conf " "configuration file" msgstr "" -#: network.cgi:564 +#: network.cgi:607 msgid "Output of iwconfig" msgstr "" -#: network.cgi:587 -msgid "Networking" -msgstr "" - -#: network.cgi:589 +#: network.cgi:616 msgid "Manage network connections and services" msgstr "" -#: network.cgi:596 +#: network.cgi:635 msgid "Restart" msgstr "" -#: network.cgi:600 +#: network.cgi:639 msgid "Configuration:" msgstr "" -#: network.cgi:608 +#: network.cgi:647 msgid "Network interfaces" msgstr "" -#: network.cgi:614 +#: network.cgi:654 +msgid "forward packets between interfaces" +msgstr "" + +#: network.cgi:656 network.cgi:690 boot.cgi:336 settings.cgi:608 +#: settings.cgi:722 +msgid "Change" +msgstr "" + +#: network.cgi:665 msgid "Hosts" msgstr "" -#: network.cgi:630 +#: network.cgi:682 msgid "Hostname" msgstr "" -#: boot.cgi:16 -msgid "TazPanel - Boot" +#: network.cgi:702 +msgid "Output of ifconfig" +msgstr "" + +#: network.cgi:708 +msgid "Routing table" +msgstr "" + +#: network.cgi:715 +msgid "Domain name resolution" +msgstr "" + +#: network.cgi:730 +msgid "ARP table" +msgstr "" + +#: network.cgi:750 +msgid "Proxy" +msgstr "" + +#: network.cgi:751 +msgid "Add" +msgstr "" + +#: network.cgi:764 +msgid "IP Connections" +msgstr "" + +#: network.cgi:774 +msgid "Firewall" +msgstr "" + +#: boot.cgi:16 styles/default/header.html:62 +msgid "Boot" msgstr "" #: boot.cgi:27 msgid "Show more..." msgstr "" -#: boot.cgi:56 +#: boot.cgi:45 boot.cgi:492 styles/default/header.html:80 +msgid "System logs" +msgstr "" + +#: boot.cgi:96 msgid "Boot log files" msgstr "" -#: boot.cgi:59 styles/default/header.html:53 -msgid "Kernel messages" -msgstr "" - -#: boot.cgi:60 styles/default/header.html:54 -msgid "Boot scripts" -msgstr "" - -#: boot.cgi:61 styles/default/header.html:55 +#: boot.cgi:101 styles/default/header.html:76 msgid "X server" msgstr "" -#: boot.cgi:62 styles/default/header.html:56 +#: boot.cgi:102 styles/default/header.html:77 msgid "X session" msgstr "" -#: boot.cgi:84 boot.cgi:347 styles/default/header.html:59 +#: boot.cgi:124 boot.cgi:493 styles/default/header.html:81 msgid "Manage daemons" msgstr "" -#: boot.cgi:86 +#: boot.cgi:126 msgid "Check, start and stop daemons on SliTaz" msgstr "" -#: boot.cgi:111 hardware.cgi:153 settings.cgi:496 +#: boot.cgi:151 hardware.cgi:168 settings.cgi:434 msgid "Description" msgstr "" -#: boot.cgi:114 +#: boot.cgi:154 msgid "Action" msgstr "" -#: boot.cgi:115 +#: boot.cgi:155 msgid "PID" msgstr "" -#: boot.cgi:138 +#: boot.cgi:180 msgid "SliTaz Firewall with iptable rules" msgstr "" -#: boot.cgi:140 +#: boot.cgi:182 msgid "Small and fast web server with CGI support" msgstr "" -#: boot.cgi:142 +#: boot.cgi:185 msgid "Network time protocol daemon" msgstr "" -#: boot.cgi:145 +#: boot.cgi:188 msgid "Anonymous FTP server" msgstr "" -#: boot.cgi:147 +#: boot.cgi:191 msgid "Busybox DHCP server" msgstr "" -#: boot.cgi:149 +#: boot.cgi:194 msgid "Linux Kernel log daemon" msgstr "" -#: boot.cgi:152 +#: boot.cgi:197 msgid "Execute scheduled commands" msgstr "" -#: boot.cgi:155 +#: boot.cgi:200 msgid "Small static DNS server daemon" msgstr "" -#: boot.cgi:158 +#: boot.cgi:203 msgid "Transfer a file on tftp request" msgstr "" -#: boot.cgi:160 +#: boot.cgi:206 +msgid "Printer daemon" +msgstr "" + +#: boot.cgi:208 msgid "Listen for network connections and launch programs" msgstr "" -#: boot.cgi:163 +#: boot.cgi:211 msgid "Manage a ZeroConf IPv4 link-local address" msgstr "" -#: boot.cgi:232 +#: boot.cgi:280 msgid "Started" msgstr "" -#: boot.cgi:243 +#: boot.cgi:291 msgid "Stopped" msgstr "" -#: boot.cgi:270 +#: boot.cgi:318 msgid "GRUB Boot loader" msgstr "" -#: boot.cgi:272 +#: boot.cgi:320 msgid "The first application started when the computer powers on" msgstr "" -#: boot.cgi:279 +#: boot.cgi:327 msgid "Default entry:" msgstr "" -#: boot.cgi:281 +#: boot.cgi:329 msgid "Timeout:" msgstr "" -#: boot.cgi:283 +#: boot.cgi:331 msgid "Splash image:" msgstr "" -#: boot.cgi:288 settings.cgi:557 settings.cgi:623 settings.cgi:694 -msgid "Change" -msgstr "" - -#: boot.cgi:295 +#: boot.cgi:343 msgid "View or edit menu.lst" msgstr "" -#: boot.cgi:300 +#: boot.cgi:348 msgid "Boot entries" msgstr "" -#: boot.cgi:307 +#: boot.cgi:355 msgid "Entry" msgstr "" -#: boot.cgi:328 +#: boot.cgi:376 msgid "Web boot is available with gPXE" msgstr "" -#: boot.cgi:341 +#: boot.cgi:390 boot.cgi:496 styles/default/header.html:83 +msgid "ISO mine" +msgstr "" + +#: boot.cgi:486 msgid "Boot & Start services" msgstr "" -#: boot.cgi:343 +#: boot.cgi:488 msgid "Everything that happens before user login" msgstr "" -#: boot.cgi:346 styles/default/header.html:51 +#: boot.cgi:491 styles/default/header.html:72 msgid "Boot logs" msgstr "" -#: boot.cgi:350 styles/default/header.html:48 +#: boot.cgi:499 styles/default/header.html:68 msgid "Boot loader" msgstr "" -#: boot.cgi:357 +#: boot.cgi:506 msgid "Configuration files" msgstr "" -#: boot.cgi:360 +#: boot.cgi:509 msgid "Main configuration file:" msgstr "" -#: boot.cgi:361 boot.cgi:363 -msgid "View" -msgstr "" - -#: boot.cgi:362 +#: boot.cgi:511 msgid "Login manager settings:" msgstr "" -#: boot.cgi:370 +#: boot.cgi:519 msgid "Kernel cmdline" msgstr "" -#: boot.cgi:377 +#: boot.cgi:526 msgid "Local startup commands" msgstr "" -#: hardware.cgi:13 -msgid "TazPanel - Hardware" +#: hardware.cgi:13 styles/default/header.html:88 +msgid "Hardware" msgstr "" -#: hardware.cgi:35 +#: hardware.cgi:54 msgid "Bus" msgstr "" -#: hardware.cgi:36 hardware.cgi:509 +#: hardware.cgi:55 hardware.cgi:525 msgid "Device" msgstr "" -#: hardware.cgi:37 +#: hardware.cgi:56 msgid "ID" msgstr "" -#: hardware.cgi:90 +#: hardware.cgi:108 msgid "Detect hardware" msgstr "" -#: hardware.cgi:91 +#: hardware.cgi:110 msgid "Detect PCI and USB hardware" msgstr "" -#: hardware.cgi:104 hardware.cgi:225 styles/default/header.html:67 +#: hardware.cgi:118 hardware.cgi:239 styles/default/header.html:91 msgid "Kernel modules" msgstr "" -#: hardware.cgi:105 +#: hardware.cgi:120 msgid "Manage, search or get information about the Linux kernel modules" msgstr "" -#: hardware.cgi:109 +#: hardware.cgi:124 msgid "Modules search" msgstr "" -#: hardware.cgi:117 +#: hardware.cgi:132 msgid "Detailed information for module: %s" msgstr "" -#: hardware.cgi:137 +#: hardware.cgi:152 msgid "Matching result(s) for: %s" msgstr "" -#: hardware.cgi:143 +#: hardware.cgi:158 msgid "Module:" msgstr "" -#: hardware.cgi:152 +#: hardware.cgi:167 msgid "Module" msgstr "" -#: hardware.cgi:154 lib/libtazpanel:285 +#: hardware.cgi:169 hardware.cgi:527 lib/libtazpanel:295 msgid "Size" msgstr "" -#: hardware.cgi:155 hardware.cgi:563 lib/libtazpanel:287 +#: hardware.cgi:170 hardware.cgi:584 lib/libtazpanel:297 msgid "Used" msgstr "" -#: hardware.cgi:156 +#: hardware.cgi:171 msgid "by" msgstr "" -#: hardware.cgi:180 +#: hardware.cgi:195 msgid "Information for USB Device %s" msgstr "" -#: hardware.cgi:182 hardware.cgi:200 +#: hardware.cgi:197 hardware.cgi:215 msgid "Detailed information about specified device." msgstr "" -#: hardware.cgi:198 +#: hardware.cgi:213 msgid "Information for PCI Device %s" msgstr "" -#: hardware.cgi:221 +#: hardware.cgi:234 msgid "Drivers & Devices" msgstr "" -#: hardware.cgi:222 +#: hardware.cgi:236 msgid "Manage your computer hardware" msgstr "" -#: hardware.cgi:226 styles/default/header.html:68 +#: hardware.cgi:240 styles/default/header.html:92 msgid "Detect PCI/USB" msgstr "" -#: hardware.cgi:227 +#: hardware.cgi:241 msgid "Auto-install Xorg video driver" msgstr "" -#: hardware.cgi:237 hardware.cgi:254 +#: hardware.cgi:251 hardware.cgi:268 msgid "Battery" msgstr "" -#: hardware.cgi:257 +#: hardware.cgi:271 msgid "health" msgstr "" -#: hardware.cgi:266 +#: hardware.cgi:280 msgid "Discharging %d%% - %s" msgstr "" -#: hardware.cgi:270 -#, sh-format +#: hardware.cgi:284 msgid "Charging %d%% - %s" msgstr "" -#: hardware.cgi:272 +#: hardware.cgi:286 msgid "Charged 100%%" msgstr "" -#: hardware.cgi:291 +#: hardware.cgi:305 msgid "Temperature:" msgstr "" -#: hardware.cgi:306 +#: hardware.cgi:320 msgid "Brightness" msgstr "" -#: hardware.cgi:326 -msgid "Filesystem usage statistics" -msgstr "" - -#: hardware.cgi:446 +#: hardware.cgi:462 msgid "new mount point:" msgstr "" -#: hardware.cgi:447 +#: hardware.cgi:463 msgid "read-only" msgstr "" -#: hardware.cgi:462 +#: hardware.cgi:478 msgid "Filesystems table" msgstr "" -#: hardware.cgi:475 lib/libtazpanel:282 +#: hardware.cgi:491 lib/libtazpanel:292 msgid "Disk" msgstr "" -#: hardware.cgi:476 lib/libtazpanel:288 +#: hardware.cgi:492 lib/libtazpanel:298 msgid "Mount point" msgstr "" -#: hardware.cgi:477 lib/libtazpanel:284 +#: hardware.cgi:493 lib/libtazpanel:294 msgid "Type" msgstr "" -#: hardware.cgi:478 +#: hardware.cgi:494 msgid "Options" msgstr "" -#: hardware.cgi:479 +#: hardware.cgi:495 msgid "Freq" msgstr "" -#: hardware.cgi:480 +#: hardware.cgi:496 msgid "Pass" msgstr "" -#: hardware.cgi:502 +#: hardware.cgi:518 msgid "Loop devices" msgstr "" -#: hardware.cgi:510 +#: hardware.cgi:526 msgid "Backing file" msgstr "" -#: hardware.cgi:511 +#: hardware.cgi:528 msgid "Access" msgstr "" -#: hardware.cgi:512 +#: hardware.cgi:529 msgid "Offset" msgstr "" -#: hardware.cgi:520 +#: hardware.cgi:538 msgid "read/write" msgstr "" -#: hardware.cgi:521 hardware.cgi:543 +#: hardware.cgi:539 hardware.cgi:564 msgid "read only" msgstr "" -#: hardware.cgi:540 +#: hardware.cgi:561 msgid "Setup" msgstr "" -#: hardware.cgi:541 +#: hardware.cgi:562 msgid "new backing file:" msgstr "" -#: hardware.cgi:542 +#: hardware.cgi:563 msgid "offset in bytes:" msgstr "" -#: hardware.cgi:560 +#: hardware.cgi:581 msgid "System memory" msgstr "" -#: hardware.cgi:566 +#: hardware.cgi:587 msgid "Buffers" msgstr "" -#: hardware.cgi:569 +#: hardware.cgi:590 msgid "Free" msgstr "" -#: settings.cgi:17 -msgid "TazPanel - Settings" +#: settings.cgi:16 +msgid "System settings" msgstr "" -#: settings.cgi:83 -msgid "US" +#: settings.cgi:82 settings.cgi:621 settings.cgi:648 settings.cgi:653 +msgid "Set date" msgstr "" -#: settings.cgi:85 -msgid "metric" -msgstr "" - -#: settings.cgi:266 settings.cgi:544 +#: settings.cgi:208 settings.cgi:595 msgid "Manage groups" msgstr "" -#: settings.cgi:273 settings.cgi:364 +#: settings.cgi:216 settings.cgi:293 msgid "Selection:" msgstr "" -#: settings.cgi:274 +#: settings.cgi:217 msgid "Delete group" msgstr "" -#: settings.cgi:281 +#: settings.cgi:224 msgid "Group" msgstr "" -#: settings.cgi:282 +#: settings.cgi:225 msgid "Group ID" msgstr "" -#: settings.cgi:283 +#: settings.cgi:226 msgid "Members" msgstr "" -#: settings.cgi:312 +#: settings.cgi:253 msgid "Add a new group" msgstr "" -#: settings.cgi:316 settings.cgi:333 +#: settings.cgi:256 settings.cgi:268 msgid "Group name:" msgstr "" -#: settings.cgi:320 +#: settings.cgi:257 msgid "Create group" msgstr "" -#: settings.cgi:328 +#: settings.cgi:264 msgid "Manage group membership" msgstr "" -#: settings.cgi:335 settings.cgi:427 +#: settings.cgi:269 settings.cgi:356 msgid "User name:" msgstr "" -#: settings.cgi:340 +#: settings.cgi:272 msgid "Add user" msgstr "" -#: settings.cgi:343 +#: settings.cgi:273 msgid "Remove user" msgstr "" -#: settings.cgi:359 settings.cgi:543 +#: settings.cgi:286 settings.cgi:594 msgid "Manage users" msgstr "" -#: settings.cgi:365 +#: settings.cgi:294 msgid "Delete user" msgstr "" -#: settings.cgi:366 +#: settings.cgi:295 msgid "Lock user" msgstr "" -#: settings.cgi:367 +#: settings.cgi:296 msgid "Unlock user" msgstr "" -#: settings.cgi:373 +#: settings.cgi:302 msgid "Login" msgstr "" -#: settings.cgi:374 +#: settings.cgi:303 msgid "User ID" msgstr "" -#: settings.cgi:376 +#: settings.cgi:304 +msgid "User Name" +msgstr "" + +#: settings.cgi:305 msgid "Home" msgstr "" -#: settings.cgi:377 +#: settings.cgi:306 msgid "Shell" msgstr "" -#: settings.cgi:410 +#: settings.cgi:340 msgid "Password:" msgstr "" -#: settings.cgi:412 +#: settings.cgi:342 msgid "Change password" msgstr "" -#: settings.cgi:420 +#: settings.cgi:349 msgid "Add a new user" msgstr "" -#: settings.cgi:425 +#: settings.cgi:354 msgid "User login:" msgstr "" -#: settings.cgi:429 +#: settings.cgi:358 msgid "User password:" msgstr "" -#: settings.cgi:434 +#: settings.cgi:363 msgid "Create user" msgstr "" -#: settings.cgi:441 +#: settings.cgi:373 msgid "Current user sessions" msgstr "" -#: settings.cgi:447 +#: settings.cgi:383 msgid "Last user sessions" msgstr "" -#: settings.cgi:458 +#: settings.cgi:395 +msgid "Choose locale" +msgstr "" + +#: settings.cgi:398 msgid "Please wait..." msgstr "" -#: settings.cgi:462 -msgid "Choose locale" -msgstr "" - -#: settings.cgi:465 +#: settings.cgi:403 msgid "Current locale settings:" msgstr "" -#: settings.cgi:472 +#: settings.cgi:410 msgid "Locales that are currently installed on the machine:" msgstr "" -#: settings.cgi:482 +#: settings.cgi:420 msgid "" "Can't see your language?
    You can install glibc-locale to see a larger list of available locales." msgstr "" -#: settings.cgi:489 +#: settings.cgi:427 msgid "Available locales:" msgstr "" -#: settings.cgi:493 +#: settings.cgi:431 msgid "Code" msgstr "" -#: settings.cgi:494 +#: settings.cgi:432 msgid "Language" msgstr "" -#: settings.cgi:495 +#: settings.cgi:433 msgid "Territory" msgstr "" -#: settings.cgi:512 settings.cgi:513 +#: settings.cgi:450 settings.cgi:451 msgid "-d" msgstr "" -#: settings.cgi:524 settings.cgi:666 settings.cgi:677 settings.cgi:689 +#: settings.cgi:462 settings.cgi:765 settings.cgi:776 settings.cgi:788 msgid "Activate" msgstr "" -#: settings.cgi:538 -msgid "System settings" +#: settings.cgi:474 settings.cgi:497 +msgid "Small quick tweaks for user %s" msgstr "" -#: settings.cgi:540 +#: settings.cgi:500 +msgid "Terminal prompt" +msgstr "" + +#: settings.cgi:506 +msgid "Monochrome" +msgstr "" + +#: settings.cgi:515 +msgid "Colored" +msgstr "" + +#: settings.cgi:524 settings.cgi:572 +msgid "Manual edit: %s" +msgstr "" + +#: settings.cgi:525 +msgid "" +"To take effect: log out and log in to system or execute command in the " +"terminal:" +msgstr "" + +#: settings.cgi:533 +msgid "Menu button appearance" +msgstr "" + +#: settings.cgi:538 +msgid "Icon:" +msgstr "" + +#: settings.cgi:541 settings.cgi:562 +msgid "Do not show" +msgstr "" + +#: settings.cgi:559 +msgid "Text:" +msgstr "" + +#: settings.cgi:566 +msgid "Show text" +msgstr "" + +#: settings.cgi:589 msgid "Manage system time, users or language settings" msgstr "" -#: settings.cgi:548 +#: settings.cgi:599 msgid "System time" msgstr "" -#: settings.cgi:551 +#: settings.cgi:602 msgid "Time zone:" msgstr "" -#: settings.cgi:560 +#: settings.cgi:611 msgid "System time:" msgstr "" -#: settings.cgi:562 +#: settings.cgi:613 msgid "Sync online" msgstr "" -#: settings.cgi:565 +#: settings.cgi:616 msgid "Hardware clock:" msgstr "" -#: settings.cgi:567 +#: settings.cgi:618 msgid "Set hardware clock" msgstr "" -#: settings.cgi:570 settings.cgi:582 -msgid "Set date" -msgstr "" - -#: settings.cgi:605 +#: settings.cgi:704 msgid "System language" msgstr "" -#: settings.cgi:618 +#: settings.cgi:717 msgid "" "You must logout and login again to your current session to use %s locale." msgstr "" -#: settings.cgi:621 +#: settings.cgi:720 msgid "Current system locale:" msgstr "" -#: settings.cgi:633 +#: settings.cgi:732 msgid "Keyboard layout" msgstr "" -#: settings.cgi:647 +#: settings.cgi:746 msgid "Current console keymap: %s" msgstr "" -#: settings.cgi:665 +#: settings.cgi:764 msgid "Suggested keymap for Xorg:" msgstr "" -#: settings.cgi:673 +#: settings.cgi:772 msgid "Available keymaps:" msgstr "" -#: settings.cgi:684 +#: settings.cgi:783 msgid "Panel configuration" msgstr "" -#: settings.cgi:687 +#: settings.cgi:786 msgid "Style:" msgstr "" -#: settings.cgi:692 -msgid "Panel password:" -msgstr "" - -#: settings.cgi:698 +#: settings.cgi:792 msgid "Configuration files:" msgstr "" -#: settings.cgi:699 styles/default/header.html:23 +#: settings.cgi:793 styles/default/header.html:42 msgid "Panel" msgstr "" -#: settings.cgi:700 +#: settings.cgi:794 msgid "Server" msgstr "" -#: settings.cgi:703 +#: settings.cgi:797 msgid "TazPanel provides a debugging mode and page:" msgstr "" -#: lib/libtazpanel:137 +#: lib/libtazpanel:153 msgid "connected" msgstr "" -#: lib/libtazpanel:157 +#: lib/libtazpanel:168 msgid "IP Address" msgstr "" -#: lib/libtazpanel:158 +#: lib/libtazpanel:169 msgid "Scan ports" msgstr "" -#: lib/libtazpanel:283 +#: lib/libtazpanel:241 +msgid "Please wait" +msgstr "" + +#: lib/libtazpanel:293 msgid "Label" msgstr "" -#: lib/libtazpanel:286 +#: lib/libtazpanel:296 msgid "Available" msgstr "" -#: lib/libtazpanel:353 +#: lib/libtazpanel:367 msgid "You must be root to show this page." msgstr "" @@ -990,79 +1250,61 @@ msgstr "" #: help.cgi:28 -msgid "TazPanel - Help & Doc" +msgid "Help & Doc" msgstr "" -#: styles/default/header.html:25 styles/default/header.html:35 -#: styles/default/header.html:45 styles/default/header.html:66 -#: styles/default/header.html:76 -msgid "Summary" +#: styles/default/header.html:32 +msgid "Confirm break" msgstr "" -#: styles/default/header.html:26 +#: styles/default/header.html:45 msgid "Processes" msgstr "" -#: styles/default/header.html:27 -msgid "Terminal" -msgstr "" - -#: styles/default/header.html:28 +#: styles/default/header.html:47 msgid "Create Report" msgstr "" -#: styles/default/header.html:36 +#: styles/default/header.html:55 msgid "Config file" msgstr "" -#: styles/default/header.html:37 +#: styles/default/header.html:56 msgid "Ethernet" msgstr "" -#: styles/default/header.html:38 +#: styles/default/header.html:57 msgid "Wireless" msgstr "" -#: styles/default/header.html:43 -msgid "Boot" -msgstr "" - -#: styles/default/header.html:64 -msgid "Hardware" -msgstr "" - -#: styles/default/header.html:69 -msgid "Disks" -msgstr "" - -#: styles/default/header.html:74 -msgid "Settings" -msgstr "" - -#: styles/default/header.html:77 +#: styles/default/header.html:101 msgid "Users" msgstr "" -#: styles/default/header.html:78 +#: styles/default/header.html:102 msgid "Groups" msgstr "" -#: styles/default/header.html:93 +#: styles/default/header.html:103 +msgid "Tweaks" +msgstr "" + +#: styles/default/header.html:119 msgid "Some features are disabled." msgstr "" -#: styles/default/header.html:98 +#: styles/default/header.html:124 msgid "You are logged in to the TazPanel as user %s." msgstr "" -#: styles/default/header.html:99 +#: styles/default/header.html:125 msgid "Click to re-login." msgstr "" -#: styles/default/footer.html:7 +#: styles/default/header.html:135 msgid "Copyright" msgstr "" -#: styles/default/footer.html:9 +#: styles/default/header.html:137 msgid "BSD License" msgstr "" diff -r f8ff472846c2 -r 3117717c007d po/zh_CN.po --- a/po/zh_CN.po Sat Jun 06 12:38:24 2015 +0200 +++ b/po/zh_CN.po Mon Jun 08 04:32:19 2015 +0300 @@ -54,12 +54,12 @@ msgstr "差异" #: index.cgi:66 -msgid "TazPanel - exec" -msgstr "TazPanel - 执行" +msgid "exec" +msgstr "执行" #: index.cgi:84 -msgid "TazPanel - File" -msgstr "TazPanel - 文件" +msgid "File" +msgstr "文件" #: index.cgi:93 index.cgi:108 msgid "Save" @@ -70,8 +70,8 @@ msgstr "编辑" #: index.cgi:156 -msgid "TazPanel - Terminal" -msgstr "TazPanel - 终端" +msgid "Terminal" +msgstr "终端" #: index.cgi:170 msgid "Small terminal emulator, commands options are supported." @@ -94,8 +94,8 @@ msgstr "未知的命令:%s" #: index.cgi:196 -msgid "TazPanel - Process activity" -msgstr "TazPanel - 活动过程(Process activity)" +msgid "Process activity" +msgstr "活动过程(Process activity)" #: index.cgi:198 msgid "Refresh:" @@ -118,16 +118,16 @@ msgstr "无" #: index.cgi:223 -msgid "TazPanel - Debug" -msgstr "TazPanel - 调试" +msgid "Debug" +msgstr "调试" #: index.cgi:226 msgid "HTTP Environment" msgstr "HTTP环境" #: index.cgi:234 -msgid "TazPanel - System report" -msgstr "TazPanel - 系统报告" +msgid "System report" +msgstr "系统报告" #: index.cgi:239 msgid "Reporting to: %s" @@ -238,8 +238,8 @@ msgstr "活动过程(Process activity)" #: network.cgi:13 -msgid "TazPanel - Network" -msgstr "TazPanel - 网络" +msgid "Network" +msgstr "网络" #: network.cgi:23 network.cgi:160 network.cgi:256 boot.cgi:85 settings.cgi:221 #: lib/libtazpanel:108 @@ -450,8 +450,8 @@ msgstr "IP连接" #: boot.cgi:14 -msgid "TazPanel - Boot" -msgstr "TazPanel - 启动" +msgid "Boot" +msgstr "启动" #: boot.cgi:25 msgid "Boot log files" @@ -618,8 +618,8 @@ msgstr "编辑脚本" #: hardware.cgi:13 -msgid "TazPanel - Hardware" -msgstr "TazPanel - 硬件" +msgid "Hardware" +msgstr "硬件" #: hardware.cgi:66 msgid "Detect hardware" @@ -758,8 +758,8 @@ msgstr "系统内存" #: settings.cgi:15 -msgid "TazPanel - Settings" -msgstr "TazPanel - 设置" +msgid "Settings" +msgstr "设置" #: settings.cgi:120 settings.cgi:383 msgid "Manage groups" @@ -1044,8 +1044,8 @@ msgstr "手册" #: help.cgi:28 -msgid "TazPanel - Help & Doc" -msgstr "TazPanel - 帮助 & 文档" +msgid "Help & Doc" +msgstr "帮助 & 文档" #: styles/default/header.html:40 msgid "Processes" diff -r f8ff472846c2 -r 3117717c007d powersaving.cgi --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/powersaving.cgi Mon Jun 08 04:32:19 2015 +0300 @@ -0,0 +1,168 @@ +#!/bin/sh +# +# Hardware / power saving +# +# Copyright (C) 2011-2015 SliTaz GNU/Linux - BSD License +# + +# Common functions from libtazpanel +. lib/libtazpanel +get_config +header + +TITLE=$(_ 'Hardware') + +xhtml_header "$(_ 'Power saving')" + +## DPMS ## +cat < +
    + DPMS (Display Power Management Signaling) +
    + +
    $(_ "DPMS enables power saving behaviour of monitors when the computer is not in use.")
    +
    + +EOT + +monitor_conf='/etc/X11/xorg.conf.d/50-Monitor.conf' +if [ ! -s "$monitor_conf" ]; then + # Config is absent, so create it + cat > "$monitor_conf" < +
    + + + + + + +EOT + +awk -F\" '{ + if ($1 ~ /^Section/) { I = V = M = D = ""; } + if ($1 ~ /Identifier/) { I = $2; } + if ($1 ~ /VendorName/) { V = $2; } + if ($1 ~ /ModelName/) { M = $2; } + if ($1 ~ /Option/ && $2 ~ /DPMS/) { D = $4; } + if ($1 ~ /EndSection/) { + if (D == "false") { D = ""; } else { D = "checked"; } + printf "\n"; + } +}' $monitor_conf + +layout_conf='/etc/X11/xorg.conf.d/10-ServerLayout.conf' + +cat < + + +
    $(_ 'Identifier')$(_ 'Vendor name')$(_ 'Model name')$(_ 'DPMS enabled')
    %s%s%s", I, V, M; + printf "", I, D; + printf "
    + + + +
    +
    + $(_ 'DPMS times (in minutes):') + + + + + + + +
    Standby Time
    Suspend Time
    Off Time
    +
    +
    +
    + $(_ 'Manual edit') + $(basename $monitor_conf)
    + $(basename $layout_conf) +
    +
    $(for i in $(POST); do echo "$i: " $(POST $i); done)
    +
    +
    + +
    + + +EOT + + +## CPU ## + +cpu=$(awk -F: '$1 ~ "model name" { + gsub(/\(TM\)/,"™",$2); gsub(/\(R\)/,"®",$2); + split($2,c,"@"); + print "" c[1] ""; +}' /proc/cpuinfo) +multiplier=$(echo "$cpu" | wc -l) +[ "$multiplier" -ne 1 ] && cpu="$multiplier × $(echo "$cpu" | head -n1)" + +freq=$(awk -F: 'BEGIN{N=0}$1~"MHz"{printf "%d:%sMHz ",N,$2; N++}' /proc/cpuinfo) + +cat < +
    $(_ 'CPU')
    + +
    $(_ "CPU frequency scaling enables the operating system to scale the \ +CPU frequency up or down in order to save power. CPU frequencies can be scaled \ +automatically depending on the system load, in responce to ACPI events, or \ +manually by userspace programs.")
    + + + + +
    $(_ 'Model name')$cpu
    $(_ 'Current frequency')$freq
    $(_ 'Current driver')$(cat '/sys/devices/system/cpu/cpu0/cpufreq/scaling_driver') +
    $(_ 'Current governor')$(cat '/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor') +
    + +EOT + +# As of Kernel 3.4, the native CPU module is loaded automatically. +if [ -d "/lib/modules/$(uname -r)/kernel/drivers/cpufreq" ]; then + cd /lib/modules/$(uname -r)/kernel/drivers/cpufreq + cat < +
    $(_ 'Kernel modules')
    + + + + + + +EOT + lsmod="$(lsmod | awk '{printf "%s " $1}') " + + for module in $(ls | grep -v 'mperf\|speedstep-lib'); do + module="${module%.ko.xz}"; module="${module//-/_}" + if echo $lsmod | grep -q " $module "; then icon='ok'; else icon='cancel'; fi + echo "" + done + cat < + +EOT +fi + +xhtml_footer +exit 0 diff -r f8ff472846c2 -r 3117717c007d settings.cgi --- a/settings.cgi Sat Jun 06 12:38:24 2015 +0200 +++ b/settings.cgi Mon Jun 08 04:32:19 2015 +0300 @@ -13,7 +13,7 @@ . lib/libtazpanel get_config -TITLE=$(_ 'TazPanel - Settings') +TITLE=$(_ 'System settings') # Get system database. LDAP compatible. @@ -199,20 +199,17 @@ # header -xhtml_header case " $(GET) " in *\ group*) # # Groups management # + xhtml_header "$(_ 'Manage groups')" check_root_tazpanel cat <$(_ 'Manage groups') - - -
    +
    @@ -286,12 +283,11 @@ # # Users management # + xhtml_header "$(_ 'Manage users')" check_root_tazpanel cat <$(_ 'Manage users') - -
    +
    @@ -396,17 +392,14 @@ # # Choose locale # + xhtml_header "$(_ 'Choose locale')" check_root_tazpanel loading_msg "$(_ 'Please wait...')" cur_loc=$(locale | grep LANG | cut -d= -f2) cat <$(_ 'Choose locale') - -
    +
    $(_ 'Current locale settings:')
    $(locale)
    @@ -478,8 +471,9 @@ # # Small tweaks for user # + user="$REMOTE_USER"; host="$(hostname)" + xhtml_header "$(_ 'Small quick tweaks for user %s' "$user")" - user="$REMOTE_USER"; host="$(hostname)" HOME="$(awk -F: -vu=$user '$1==u{print $6}' /etc/passwd)" font="${TERM_FONT:-monospace}"; palette=$(echo $TERM_PALETTE | tr A-Z a-z) case $user in @@ -592,13 +586,10 @@ # # Default system settings page # + xhtml_header "$(_ 'Manage system time, users or language settings')" check_root_tazpanel cat <$(_ 'System settings') - -

    $(_ 'Manage system time, users or language settings')

    - diff -r f8ff472846c2 -r 3117717c007d styles/default/base.css --- a/styles/default/base.css Sat Jun 06 12:38:24 2015 +0200 +++ b/styles/default/base.css Mon Jun 08 04:32:19 2015 +0300 @@ -16,15 +16,24 @@ body > header { position: fixed; top: 0; left: 0; - width: 100%; + width: 100%; height: 40px; background-color: #222; } body > header h1 { margin: 0; - color: #fff; - font-size: 18px; line-height: 40px; /* center vertical */ - font-style: italic; + color: #CCC; + font-size: 18px; line-height: 21px; + font-weight: 300; + white-space: nowrap; overflow: hidden; + vertical-align: middle; +} + +body > header div { + position: absolute; left: 40px; top: 21px; + color: #FFF; background: transparent; + font-size: 14px; line-height: 19px; + font-weight: 300; white-space: nowrap; overflow: hidden; vertical-align: middle; } @@ -258,7 +267,7 @@ padding: 1em; width: 50%; margin: 0.5em auto; } -.box img { float: left; } +.box span { display: inline-block; margin-right: 0.5rem; float: left; } .box ul { list-style-type: none; padding: 0; } @@ -551,20 +560,16 @@ [data-icon="tazpanel"]::before { display: inline-block; content: '\f151'; - color: #EBEBEB; - border: 1pt solid hsl(5, 85%, 35%); border-radius: 0.2rem; + border: 1pt solid; border-radius: 0.2rem; font-size: 32px; line-height: 32px; height: 32px; width: 32px; margin: 0.2rem; padding: 0; vertical-align: top; - background-image: -webkit-linear-gradient(top, hsl(10, 100%, 40%), hsl(0, 70%, 30%)); -} -.light [data-icon="tazpanel"]::before { - text-shadow: 0 1pt 2pt hsla(0, 0%, 0%, 0.9), 0 0 2pt hsla(0, 0%, 0%, 0.6); } +[data-icon^=msg]::before { height: 32px; width: 32px; font-size: 32px; line-height: 32px; } /******************* @@ -770,3 +775,5 @@ .bigScrollable { position: absolute; top: 0; bottom: 0; left: 0; right: 0; overflow: auto; } #fileContent.bigScrollable { margin: 0.2rem; top: 2.5rem; } + +section section { margin: 0.2rem; } diff -r f8ff472846c2 -r 3117717c007d styles/default/header.html --- a/styles/default/header.html Sat Jun 06 12:38:24 2015 +0200 +++ b/styles/default/header.html Mon Jun 08 04:32:19 2015 +0300 @@ -33,6 +33,7 @@

    $TITLE 

    +
    $SUBTITLE
    @@ -96,6 +100,48 @@

    + +
    +
    Status icons
    +
    +lvl0 lvl1 lvl2 +lvl3 lvl4, lvl5 +online offline +sechi secmi seclo +pkg pkgi pkgib +
    +
    +msg msgerr +msgwarn msgup +msgtip +
    +
    + + +
    +
    Font components
    +
    +#f200 #f201 +#f202 #f203 +#f204 #f205 +#f206 #f207 +#f208 #f209 +#f20a #f20b +#f20c #f20d +
    +
    + + +
    +
    Message boxes
    + $(msg msg "Lorem ipsum dolor sit amet, consectetur adipiscing elit.") + $(msg tip "Fusce volutpat est a euismod malesuada.") + $(msg warn "Aenean elementum augue et nisl sollicitudin, ut pellentesque leo rutrum.") + $(msg err "Etiam nisi elit, fringilla sit amet consectetur quis, efficitur eu ligula.") + $(msg up "Sed pharetra ex ligula, nec commodo erat suscipit eu.") +
    + +
    User input elements
    @@ -147,7 +193,6 @@
    $(_ 'Module')$(_ 'Description')
    $module" + modinfo $module | awk -F: '$1=="description"{ + gsub(/\(TM\)/,"™",$2); gsub(/\(R\)/,"®",$2); + gsub(/VIA|C7|Cyrix|MediaGX|NatSemi|Geode|Transmeta|Crusoe|Efficeon|Pentium™ 4|Xeon™|AMD|K6-2\+|K6-3\+|K7|Athlon 64|Opteron|Intel/,"&",$2); + print $2}' + echo "
    - EOT xhtml_footer exit 0